* config/rl78/rl78.c (rl78_asm_file_start): Specify alternate
[official-gcc.git] / gcc / gimple-pretty-print.c
blob01a1ab566806671d6ca90166ea3f6d6d1178b175
1 /* Pretty formatting of GIMPLE statements and expressions.
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 Contributed by Aldy Hernandez <aldyh@redhat.com> and
4 Diego Novillo <dnovillo@google.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
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.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "diagnostic.h"
28 #include "gimple-pretty-print.h"
29 #include "hashtab.h"
30 #include "tree-ssa.h"
31 #include "dumpfile.h" /* for dump_flags */
32 #include "gimple.h"
33 #include "value-prof.h"
34 #include "trans-mem.h"
36 #define INDENT(SPACE) \
37 do { int i; for (i = 0; i < SPACE; i++) pp_space (buffer); } while (0)
39 #define GIMPLE_NIY do_niy (buffer,gs)
41 /* Try to print on BUFFER a default message for the unrecognized
42 gimple statement GS. */
44 static void
45 do_niy (pretty_printer *buffer, gimple gs)
47 pp_printf (buffer, "<<< Unknown GIMPLE statement: %s >>>\n",
48 gimple_code_name[(int) gimple_code (gs)]);
52 /* Emit a newline and SPC indentation spaces to BUFFER. */
54 static void
55 newline_and_indent (pretty_printer *buffer, int spc)
57 pp_newline (buffer);
58 INDENT (spc);
62 /* Print the GIMPLE statement GS on stderr. */
64 DEBUG_FUNCTION void
65 debug_gimple_stmt (gimple gs)
67 print_gimple_stmt (stderr, gs, 0, TDF_VOPS|TDF_MEMSYMS);
71 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
72 FLAGS as in pp_gimple_stmt_1. */
74 void
75 print_gimple_stmt (FILE *file, gimple g, int spc, int flags)
77 pretty_printer buffer;
78 pp_needs_newline (&buffer) = true;
79 buffer.buffer->stream = file;
80 pp_gimple_stmt_1 (&buffer, g, spc, flags);
81 pp_newline_and_flush (&buffer);
84 DEBUG_FUNCTION void
85 debug (gimple_statement_d &ref)
87 print_gimple_stmt (stderr, &ref, 0, 0);
90 DEBUG_FUNCTION void
91 debug (gimple_statement_d *ptr)
93 if (ptr)
94 debug (*ptr);
95 else
96 fprintf (stderr, "<nil>\n");
100 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
101 FLAGS as in pp_gimple_stmt_1. Print only the right-hand side
102 of the statement. */
104 void
105 print_gimple_expr (FILE *file, gimple g, int spc, int flags)
107 flags |= TDF_RHS_ONLY;
108 pretty_printer buffer;
109 pp_needs_newline (&buffer) = true;
110 buffer.buffer->stream = file;
111 pp_gimple_stmt_1 (&buffer, g, spc, flags);
112 pp_flush (&buffer);
116 /* Print the GIMPLE sequence SEQ on BUFFER using SPC indentation
117 spaces and FLAGS as in pp_gimple_stmt_1.
118 The caller is responsible for calling pp_flush on BUFFER to finalize
119 the pretty printer. */
121 static void
122 dump_gimple_seq (pretty_printer *buffer, gimple_seq seq, int spc, int flags)
124 gimple_stmt_iterator i;
126 for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
128 gimple gs = gsi_stmt (i);
129 INDENT (spc);
130 pp_gimple_stmt_1 (buffer, gs, spc, flags);
131 if (!gsi_one_before_end_p (i))
132 pp_newline (buffer);
137 /* Print GIMPLE sequence SEQ to FILE using SPC indentation spaces and
138 FLAGS as in pp_gimple_stmt_1. */
140 void
141 print_gimple_seq (FILE *file, gimple_seq seq, int spc, int flags)
143 pretty_printer buffer;
144 pp_needs_newline (&buffer) = true;
145 buffer.buffer->stream = file;
146 dump_gimple_seq (&buffer, seq, spc, flags);
147 pp_newline_and_flush (&buffer);
151 /* Print the GIMPLE sequence SEQ on stderr. */
153 DEBUG_FUNCTION void
154 debug_gimple_seq (gimple_seq seq)
156 print_gimple_seq (stderr, seq, 0, TDF_VOPS|TDF_MEMSYMS);
160 /* A simple helper to pretty-print some of the gimple tuples in the printf
161 style. The format modifiers are preceded by '%' and are:
162 'G' - outputs a string corresponding to the code of the given gimple,
163 'S' - outputs a gimple_seq with indent of spc + 2,
164 'T' - outputs the tree t,
165 'd' - outputs an int as a decimal,
166 's' - outputs a string,
167 'n' - outputs a newline,
168 'x' - outputs an int as hexadecimal,
169 '+' - increases indent by 2 then outputs a newline,
170 '-' - decreases indent by 2 then outputs a newline. */
172 static void
173 dump_gimple_fmt (pretty_printer *buffer, int spc, int flags,
174 const char *fmt, ...)
176 va_list args;
177 const char *c;
178 const char *tmp;
180 va_start (args, fmt);
181 for (c = fmt; *c; c++)
183 if (*c == '%')
185 gimple_seq seq;
186 tree t;
187 gimple g;
188 switch (*++c)
190 case 'G':
191 g = va_arg (args, gimple);
192 tmp = gimple_code_name[gimple_code (g)];
193 pp_string (buffer, tmp);
194 break;
196 case 'S':
197 seq = va_arg (args, gimple_seq);
198 pp_newline (buffer);
199 dump_gimple_seq (buffer, seq, spc + 2, flags);
200 newline_and_indent (buffer, spc);
201 break;
203 case 'T':
204 t = va_arg (args, tree);
205 if (t == NULL_TREE)
206 pp_string (buffer, "NULL");
207 else
208 dump_generic_node (buffer, t, spc, flags, false);
209 break;
211 case 'd':
212 pp_decimal_int (buffer, va_arg (args, int));
213 break;
215 case 's':
216 pp_string (buffer, va_arg (args, char *));
217 break;
219 case 'n':
220 newline_and_indent (buffer, spc);
221 break;
223 case 'x':
224 pp_scalar (buffer, "%x", va_arg (args, int));
225 break;
227 case '+':
228 spc += 2;
229 newline_and_indent (buffer, spc);
230 break;
232 case '-':
233 spc -= 2;
234 newline_and_indent (buffer, spc);
235 break;
237 default:
238 gcc_unreachable ();
241 else
242 pp_character (buffer, *c);
244 va_end (args);
248 /* Helper for dump_gimple_assign. Print the unary RHS of the
249 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
251 static void
252 dump_unary_rhs (pretty_printer *buffer, gimple gs, int spc, int flags)
254 enum tree_code rhs_code = gimple_assign_rhs_code (gs);
255 tree lhs = gimple_assign_lhs (gs);
256 tree rhs = gimple_assign_rhs1 (gs);
258 switch (rhs_code)
260 case VIEW_CONVERT_EXPR:
261 case ASSERT_EXPR:
262 dump_generic_node (buffer, rhs, spc, flags, false);
263 break;
265 case FIXED_CONVERT_EXPR:
266 case ADDR_SPACE_CONVERT_EXPR:
267 case FIX_TRUNC_EXPR:
268 case FLOAT_EXPR:
269 CASE_CONVERT:
270 pp_left_paren (buffer);
271 dump_generic_node (buffer, TREE_TYPE (lhs), spc, flags, false);
272 pp_string (buffer, ") ");
273 if (op_prio (rhs) < op_code_prio (rhs_code))
275 pp_left_paren (buffer);
276 dump_generic_node (buffer, rhs, spc, flags, false);
277 pp_right_paren (buffer);
279 else
280 dump_generic_node (buffer, rhs, spc, flags, false);
281 break;
283 case PAREN_EXPR:
284 pp_string (buffer, "((");
285 dump_generic_node (buffer, rhs, spc, flags, false);
286 pp_string (buffer, "))");
287 break;
289 case ABS_EXPR:
290 pp_string (buffer, "ABS_EXPR <");
291 dump_generic_node (buffer, rhs, spc, flags, false);
292 pp_greater (buffer);
293 break;
295 default:
296 if (TREE_CODE_CLASS (rhs_code) == tcc_declaration
297 || TREE_CODE_CLASS (rhs_code) == tcc_constant
298 || TREE_CODE_CLASS (rhs_code) == tcc_reference
299 || rhs_code == SSA_NAME
300 || rhs_code == ADDR_EXPR
301 || rhs_code == CONSTRUCTOR)
303 dump_generic_node (buffer, rhs, spc, flags, false);
304 break;
306 else if (rhs_code == BIT_NOT_EXPR)
307 pp_complement (buffer);
308 else if (rhs_code == TRUTH_NOT_EXPR)
309 pp_exclamation (buffer);
310 else if (rhs_code == NEGATE_EXPR)
311 pp_minus (buffer);
312 else
314 pp_left_bracket (buffer);
315 pp_string (buffer, tree_code_name [rhs_code]);
316 pp_string (buffer, "] ");
319 if (op_prio (rhs) < op_code_prio (rhs_code))
321 pp_left_paren (buffer);
322 dump_generic_node (buffer, rhs, spc, flags, false);
323 pp_right_paren (buffer);
325 else
326 dump_generic_node (buffer, rhs, spc, flags, false);
327 break;
332 /* Helper for dump_gimple_assign. Print the binary RHS of the
333 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
335 static void
336 dump_binary_rhs (pretty_printer *buffer, gimple gs, int spc, int flags)
338 const char *p;
339 enum tree_code code = gimple_assign_rhs_code (gs);
340 switch (code)
342 case COMPLEX_EXPR:
343 case MIN_EXPR:
344 case MAX_EXPR:
345 case VEC_WIDEN_MULT_HI_EXPR:
346 case VEC_WIDEN_MULT_LO_EXPR:
347 case VEC_WIDEN_MULT_EVEN_EXPR:
348 case VEC_WIDEN_MULT_ODD_EXPR:
349 case VEC_PACK_TRUNC_EXPR:
350 case VEC_PACK_SAT_EXPR:
351 case VEC_PACK_FIX_TRUNC_EXPR:
352 case VEC_WIDEN_LSHIFT_HI_EXPR:
353 case VEC_WIDEN_LSHIFT_LO_EXPR:
354 for (p = tree_code_name [(int) code]; *p; p++)
355 pp_character (buffer, TOUPPER (*p));
356 pp_string (buffer, " <");
357 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
358 pp_string (buffer, ", ");
359 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
360 pp_greater (buffer);
361 break;
363 default:
364 if (op_prio (gimple_assign_rhs1 (gs)) <= op_code_prio (code))
366 pp_left_paren (buffer);
367 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags,
368 false);
369 pp_right_paren (buffer);
371 else
372 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
373 pp_space (buffer);
374 pp_string (buffer, op_symbol_code (gimple_assign_rhs_code (gs)));
375 pp_space (buffer);
376 if (op_prio (gimple_assign_rhs2 (gs)) <= op_code_prio (code))
378 pp_left_paren (buffer);
379 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags,
380 false);
381 pp_right_paren (buffer);
383 else
384 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
388 /* Helper for dump_gimple_assign. Print the ternary RHS of the
389 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
391 static void
392 dump_ternary_rhs (pretty_printer *buffer, gimple gs, int spc, int flags)
394 const char *p;
395 enum tree_code code = gimple_assign_rhs_code (gs);
396 switch (code)
398 case WIDEN_MULT_PLUS_EXPR:
399 case WIDEN_MULT_MINUS_EXPR:
400 for (p = tree_code_name [(int) code]; *p; p++)
401 pp_character (buffer, TOUPPER (*p));
402 pp_string (buffer, " <");
403 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
404 pp_string (buffer, ", ");
405 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
406 pp_string (buffer, ", ");
407 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
408 pp_greater (buffer);
409 break;
411 case FMA_EXPR:
412 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
413 pp_string (buffer, " * ");
414 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
415 pp_string (buffer, " + ");
416 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
417 break;
419 case DOT_PROD_EXPR:
420 pp_string (buffer, "DOT_PROD_EXPR <");
421 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
422 pp_string (buffer, ", ");
423 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
424 pp_string (buffer, ", ");
425 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
426 pp_greater (buffer);
427 break;
429 case VEC_PERM_EXPR:
430 pp_string (buffer, "VEC_PERM_EXPR <");
431 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
432 pp_string (buffer, ", ");
433 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
434 pp_string (buffer, ", ");
435 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
436 pp_greater (buffer);
437 break;
439 case REALIGN_LOAD_EXPR:
440 pp_string (buffer, "REALIGN_LOAD <");
441 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
442 pp_string (buffer, ", ");
443 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
444 pp_string (buffer, ", ");
445 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
446 pp_greater (buffer);
447 break;
449 case COND_EXPR:
450 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
451 pp_string (buffer, " ? ");
452 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
453 pp_string (buffer, " : ");
454 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
455 break;
457 case VEC_COND_EXPR:
458 pp_string (buffer, "VEC_COND_EXPR <");
459 dump_generic_node (buffer, gimple_assign_rhs1 (gs), spc, flags, false);
460 pp_string (buffer, ", ");
461 dump_generic_node (buffer, gimple_assign_rhs2 (gs), spc, flags, false);
462 pp_string (buffer, ", ");
463 dump_generic_node (buffer, gimple_assign_rhs3 (gs), spc, flags, false);
464 pp_greater (buffer);
465 break;
467 default:
468 gcc_unreachable ();
473 /* Dump the gimple assignment GS. BUFFER, SPC and FLAGS are as in
474 pp_gimple_stmt_1. */
476 static void
477 dump_gimple_assign (pretty_printer *buffer, gimple gs, int spc, int flags)
479 if (flags & TDF_RAW)
481 tree arg1 = NULL;
482 tree arg2 = NULL;
483 tree arg3 = NULL;
484 switch (gimple_num_ops (gs))
486 case 4:
487 arg3 = gimple_assign_rhs3 (gs);
488 case 3:
489 arg2 = gimple_assign_rhs2 (gs);
490 case 2:
491 arg1 = gimple_assign_rhs1 (gs);
492 break;
493 default:
494 gcc_unreachable ();
497 dump_gimple_fmt (buffer, spc, flags, "%G <%s, %T, %T, %T, %T>", gs,
498 tree_code_name[gimple_assign_rhs_code (gs)],
499 gimple_assign_lhs (gs), arg1, arg2, arg3);
501 else
503 if (!(flags & TDF_RHS_ONLY))
505 dump_generic_node (buffer, gimple_assign_lhs (gs), spc, flags, false);
506 pp_space (buffer);
507 pp_equal (buffer);
509 if (gimple_assign_nontemporal_move_p (gs))
510 pp_string (buffer, "{nt}");
512 if (gimple_has_volatile_ops (gs))
513 pp_string (buffer, "{v}");
515 pp_space (buffer);
518 if (gimple_num_ops (gs) == 2)
519 dump_unary_rhs (buffer, gs, spc, flags);
520 else if (gimple_num_ops (gs) == 3)
521 dump_binary_rhs (buffer, gs, spc, flags);
522 else if (gimple_num_ops (gs) == 4)
523 dump_ternary_rhs (buffer, gs, spc, flags);
524 else
525 gcc_unreachable ();
526 if (!(flags & TDF_RHS_ONLY))
527 pp_semicolon(buffer);
532 /* Dump the return statement GS. BUFFER, SPC and FLAGS are as in
533 pp_gimple_stmt_1. */
535 static void
536 dump_gimple_return (pretty_printer *buffer, gimple gs, int spc, int flags)
538 tree t;
540 t = gimple_return_retval (gs);
541 if (flags & TDF_RAW)
542 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, t);
543 else
545 pp_string (buffer, "return");
546 if (t)
548 pp_space (buffer);
549 dump_generic_node (buffer, t, spc, flags, false);
551 pp_semicolon (buffer);
556 /* Dump the call arguments for a gimple call. BUFFER, FLAGS are as in
557 dump_gimple_call. */
559 static void
560 dump_gimple_call_args (pretty_printer *buffer, gimple gs, int flags)
562 size_t i;
564 for (i = 0; i < gimple_call_num_args (gs); i++)
566 dump_generic_node (buffer, gimple_call_arg (gs, i), 0, flags, false);
567 if (i < gimple_call_num_args (gs) - 1)
568 pp_string (buffer, ", ");
571 if (gimple_call_va_arg_pack_p (gs))
573 if (gimple_call_num_args (gs) > 0)
575 pp_comma (buffer);
576 pp_space (buffer);
579 pp_string (buffer, "__builtin_va_arg_pack ()");
583 /* Dump the points-to solution *PT to BUFFER. */
585 static void
586 pp_points_to_solution (pretty_printer *buffer, struct pt_solution *pt)
588 if (pt->anything)
590 pp_string (buffer, "anything ");
591 return;
593 if (pt->nonlocal)
594 pp_string (buffer, "nonlocal ");
595 if (pt->escaped)
596 pp_string (buffer, "escaped ");
597 if (pt->ipa_escaped)
598 pp_string (buffer, "unit-escaped ");
599 if (pt->null)
600 pp_string (buffer, "null ");
601 if (pt->vars
602 && !bitmap_empty_p (pt->vars))
604 bitmap_iterator bi;
605 unsigned i;
606 pp_string (buffer, "{ ");
607 EXECUTE_IF_SET_IN_BITMAP (pt->vars, 0, i, bi)
609 pp_string (buffer, "D.");
610 pp_decimal_int (buffer, i);
611 pp_space (buffer);
613 pp_right_brace (buffer);
614 if (pt->vars_contains_global)
615 pp_string (buffer, " (glob)");
619 /* Dump the call statement GS. BUFFER, SPC and FLAGS are as in
620 pp_gimple_stmt_1. */
622 static void
623 dump_gimple_call (pretty_printer *buffer, gimple gs, int spc, int flags)
625 tree lhs = gimple_call_lhs (gs);
626 tree fn = gimple_call_fn (gs);
628 if (flags & TDF_ALIAS)
630 struct pt_solution *pt;
631 pt = gimple_call_use_set (gs);
632 if (!pt_solution_empty_p (pt))
634 pp_string (buffer, "# USE = ");
635 pp_points_to_solution (buffer, pt);
636 newline_and_indent (buffer, spc);
638 pt = gimple_call_clobber_set (gs);
639 if (!pt_solution_empty_p (pt))
641 pp_string (buffer, "# CLB = ");
642 pp_points_to_solution (buffer, pt);
643 newline_and_indent (buffer, spc);
647 if (flags & TDF_RAW)
649 if (gimple_call_internal_p (gs))
650 dump_gimple_fmt (buffer, spc, flags, "%G <%s, %T", gs,
651 internal_fn_name (gimple_call_internal_fn (gs)), lhs);
652 else
653 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T", gs, fn, lhs);
654 if (gimple_call_num_args (gs) > 0)
656 pp_string (buffer, ", ");
657 dump_gimple_call_args (buffer, gs, flags);
659 pp_greater (buffer);
661 else
663 if (lhs && !(flags & TDF_RHS_ONLY))
665 dump_generic_node (buffer, lhs, spc, flags, false);
666 pp_string (buffer, " =");
668 if (gimple_has_volatile_ops (gs))
669 pp_string (buffer, "{v}");
671 pp_space (buffer);
673 if (gimple_call_internal_p (gs))
674 pp_string (buffer, internal_fn_name (gimple_call_internal_fn (gs)));
675 else
676 print_call_name (buffer, fn, flags);
677 pp_string (buffer, " (");
678 dump_gimple_call_args (buffer, gs, flags);
679 pp_right_paren (buffer);
680 if (!(flags & TDF_RHS_ONLY))
681 pp_semicolon (buffer);
684 if (gimple_call_chain (gs))
686 pp_string (buffer, " [static-chain: ");
687 dump_generic_node (buffer, gimple_call_chain (gs), spc, flags, false);
688 pp_right_bracket (buffer);
691 if (gimple_call_return_slot_opt_p (gs))
692 pp_string (buffer, " [return slot optimization]");
693 if (gimple_call_tail_p (gs))
694 pp_string (buffer, " [tail call]");
696 if (fn == NULL)
697 return;
699 /* Dump the arguments of _ITM_beginTransaction sanely. */
700 if (TREE_CODE (fn) == ADDR_EXPR)
701 fn = TREE_OPERAND (fn, 0);
702 if (TREE_CODE (fn) == FUNCTION_DECL && decl_is_tm_clone (fn))
703 pp_string (buffer, " [tm-clone]");
704 if (TREE_CODE (fn) == FUNCTION_DECL
705 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
706 && DECL_FUNCTION_CODE (fn) == BUILT_IN_TM_START
707 && gimple_call_num_args (gs) > 0)
709 tree t = gimple_call_arg (gs, 0);
710 unsigned HOST_WIDE_INT props;
711 gcc_assert (TREE_CODE (t) == INTEGER_CST);
713 pp_string (buffer, " [ ");
715 /* Get the transaction code properties. */
716 props = TREE_INT_CST_LOW (t);
718 if (props & PR_INSTRUMENTEDCODE)
719 pp_string (buffer, "instrumentedCode ");
720 if (props & PR_UNINSTRUMENTEDCODE)
721 pp_string (buffer, "uninstrumentedCode ");
722 if (props & PR_HASNOXMMUPDATE)
723 pp_string (buffer, "hasNoXMMUpdate ");
724 if (props & PR_HASNOABORT)
725 pp_string (buffer, "hasNoAbort ");
726 if (props & PR_HASNOIRREVOCABLE)
727 pp_string (buffer, "hasNoIrrevocable ");
728 if (props & PR_DOESGOIRREVOCABLE)
729 pp_string (buffer, "doesGoIrrevocable ");
730 if (props & PR_HASNOSIMPLEREADS)
731 pp_string (buffer, "hasNoSimpleReads ");
732 if (props & PR_AWBARRIERSOMITTED)
733 pp_string (buffer, "awBarriersOmitted ");
734 if (props & PR_RARBARRIERSOMITTED)
735 pp_string (buffer, "RaRBarriersOmitted ");
736 if (props & PR_UNDOLOGCODE)
737 pp_string (buffer, "undoLogCode ");
738 if (props & PR_PREFERUNINSTRUMENTED)
739 pp_string (buffer, "preferUninstrumented ");
740 if (props & PR_EXCEPTIONBLOCK)
741 pp_string (buffer, "exceptionBlock ");
742 if (props & PR_HASELSE)
743 pp_string (buffer, "hasElse ");
744 if (props & PR_READONLY)
745 pp_string (buffer, "readOnly ");
747 pp_right_bracket (buffer);
752 /* Dump the switch statement GS. BUFFER, SPC and FLAGS are as in
753 pp_gimple_stmt_1. */
755 static void
756 dump_gimple_switch (pretty_printer *buffer, gimple gs, int spc, int flags)
758 unsigned int i;
760 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
761 if (flags & TDF_RAW)
762 dump_gimple_fmt (buffer, spc, flags, "%G <%T, ", gs,
763 gimple_switch_index (gs));
764 else
766 pp_string (buffer, "switch (");
767 dump_generic_node (buffer, gimple_switch_index (gs), spc, flags, true);
768 pp_string (buffer, ") <");
771 for (i = 0; i < gimple_switch_num_labels (gs); i++)
773 tree case_label = gimple_switch_label (gs, i);
774 gcc_checking_assert (case_label != NULL_TREE);
775 dump_generic_node (buffer, case_label, spc, flags, false);
776 pp_space (buffer);
777 dump_generic_node (buffer, CASE_LABEL (case_label), spc, flags, false);
778 if (i < gimple_switch_num_labels (gs) - 1)
779 pp_string (buffer, ", ");
781 pp_greater (buffer);
785 /* Dump the gimple conditional GS. BUFFER, SPC and FLAGS are as in
786 pp_gimple_stmt_1. */
788 static void
789 dump_gimple_cond (pretty_printer *buffer, gimple gs, int spc, int flags)
791 if (flags & TDF_RAW)
792 dump_gimple_fmt (buffer, spc, flags, "%G <%s, %T, %T, %T, %T>", gs,
793 tree_code_name [gimple_cond_code (gs)],
794 gimple_cond_lhs (gs), gimple_cond_rhs (gs),
795 gimple_cond_true_label (gs), gimple_cond_false_label (gs));
796 else
798 if (!(flags & TDF_RHS_ONLY))
799 pp_string (buffer, "if (");
800 dump_generic_node (buffer, gimple_cond_lhs (gs), spc, flags, false);
801 pp_space (buffer);
802 pp_string (buffer, op_symbol_code (gimple_cond_code (gs)));
803 pp_space (buffer);
804 dump_generic_node (buffer, gimple_cond_rhs (gs), spc, flags, false);
805 if (!(flags & TDF_RHS_ONLY))
807 pp_right_paren (buffer);
809 if (gimple_cond_true_label (gs))
811 pp_string (buffer, " goto ");
812 dump_generic_node (buffer, gimple_cond_true_label (gs),
813 spc, flags, false);
814 pp_semicolon (buffer);
816 if (gimple_cond_false_label (gs))
818 pp_string (buffer, " else goto ");
819 dump_generic_node (buffer, gimple_cond_false_label (gs),
820 spc, flags, false);
821 pp_semicolon (buffer);
828 /* Dump a GIMPLE_LABEL tuple on the pretty_printer BUFFER, SPC
829 spaces of indent. FLAGS specifies details to show in the dump (see
830 TDF_* in dumpfils.h). */
832 static void
833 dump_gimple_label (pretty_printer *buffer, gimple gs, int spc, int flags)
835 tree label = gimple_label_label (gs);
836 if (flags & TDF_RAW)
837 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, label);
838 else
840 dump_generic_node (buffer, label, spc, flags, false);
841 pp_colon (buffer);
843 if (DECL_NONLOCAL (label))
844 pp_string (buffer, " [non-local]");
845 if ((flags & TDF_EH) && EH_LANDING_PAD_NR (label))
846 pp_printf (buffer, " [LP %d]", EH_LANDING_PAD_NR (label));
849 /* Dump a GIMPLE_GOTO tuple on the pretty_printer BUFFER, SPC
850 spaces of indent. FLAGS specifies details to show in the dump (see
851 TDF_* in dumpfile.h). */
853 static void
854 dump_gimple_goto (pretty_printer *buffer, gimple gs, int spc, int flags)
856 tree label = gimple_goto_dest (gs);
857 if (flags & TDF_RAW)
858 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs, label);
859 else
860 dump_gimple_fmt (buffer, spc, flags, "goto %T;", label);
864 /* Dump a GIMPLE_BIND tuple on the pretty_printer BUFFER, SPC
865 spaces of indent. FLAGS specifies details to show in the dump (see
866 TDF_* in dumpfile.h). */
868 static void
869 dump_gimple_bind (pretty_printer *buffer, gimple gs, int spc, int flags)
871 if (flags & TDF_RAW)
872 dump_gimple_fmt (buffer, spc, flags, "%G <", gs);
873 else
874 pp_left_brace (buffer);
875 if (!(flags & TDF_SLIM))
877 tree var;
879 for (var = gimple_bind_vars (gs); var; var = DECL_CHAIN (var))
881 newline_and_indent (buffer, 2);
882 print_declaration (buffer, var, spc, flags);
884 if (gimple_bind_vars (gs))
885 pp_newline (buffer);
887 pp_newline (buffer);
888 dump_gimple_seq (buffer, gimple_bind_body (gs), spc + 2, flags);
889 newline_and_indent (buffer, spc);
890 if (flags & TDF_RAW)
891 pp_greater (buffer);
892 else
893 pp_right_brace (buffer);
897 /* Dump a GIMPLE_TRY tuple on the pretty_printer BUFFER, SPC spaces of
898 indent. FLAGS specifies details to show in the dump (see TDF_* in
899 dumpfile.h). */
901 static void
902 dump_gimple_try (pretty_printer *buffer, gimple gs, int spc, int flags)
904 if (flags & TDF_RAW)
906 const char *type;
907 if (gimple_try_kind (gs) == GIMPLE_TRY_CATCH)
908 type = "GIMPLE_TRY_CATCH";
909 else if (gimple_try_kind (gs) == GIMPLE_TRY_FINALLY)
910 type = "GIMPLE_TRY_FINALLY";
911 else
912 type = "UNKNOWN GIMPLE_TRY";
913 dump_gimple_fmt (buffer, spc, flags,
914 "%G <%s,%+EVAL <%S>%nCLEANUP <%S>%->", gs, type,
915 gimple_try_eval (gs), gimple_try_cleanup (gs));
917 else
919 pp_string (buffer, "try");
920 newline_and_indent (buffer, spc + 2);
921 pp_left_brace (buffer);
922 pp_newline (buffer);
924 dump_gimple_seq (buffer, gimple_try_eval (gs), spc + 4, flags);
925 newline_and_indent (buffer, spc + 2);
926 pp_right_brace (buffer);
928 if (gimple_try_kind (gs) == GIMPLE_TRY_CATCH)
930 newline_and_indent (buffer, spc);
931 pp_string (buffer, "catch");
932 newline_and_indent (buffer, spc + 2);
933 pp_left_brace (buffer);
935 else if (gimple_try_kind (gs) == GIMPLE_TRY_FINALLY)
937 newline_and_indent (buffer, spc);
938 pp_string (buffer, "finally");
939 newline_and_indent (buffer, spc + 2);
940 pp_left_brace (buffer);
942 else
943 pp_string (buffer, " <UNKNOWN GIMPLE_TRY> {");
945 pp_newline (buffer);
946 dump_gimple_seq (buffer, gimple_try_cleanup (gs), spc + 4, flags);
947 newline_and_indent (buffer, spc + 2);
948 pp_right_brace (buffer);
953 /* Dump a GIMPLE_CATCH tuple on the pretty_printer BUFFER, SPC spaces of
954 indent. FLAGS specifies details to show in the dump (see TDF_* in
955 dumpfile.h). */
957 static void
958 dump_gimple_catch (pretty_printer *buffer, gimple gs, int spc, int flags)
960 if (flags & TDF_RAW)
961 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %+CATCH <%S>%->", gs,
962 gimple_catch_types (gs), gimple_catch_handler (gs));
963 else
964 dump_gimple_fmt (buffer, spc, flags, "catch (%T)%+{%S}",
965 gimple_catch_types (gs), gimple_catch_handler (gs));
969 /* Dump a GIMPLE_EH_FILTER tuple on the pretty_printer BUFFER, SPC spaces of
970 indent. FLAGS specifies details to show in the dump (see TDF_* in
971 dumpfile.h). */
973 static void
974 dump_gimple_eh_filter (pretty_printer *buffer, gimple gs, int spc, int flags)
976 if (flags & TDF_RAW)
977 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %+FAILURE <%S>%->", gs,
978 gimple_eh_filter_types (gs),
979 gimple_eh_filter_failure (gs));
980 else
981 dump_gimple_fmt (buffer, spc, flags, "<<<eh_filter (%T)>>>%+{%+%S%-}",
982 gimple_eh_filter_types (gs),
983 gimple_eh_filter_failure (gs));
987 /* Dump a GIMPLE_EH_MUST_NOT_THROW tuple. */
989 static void
990 dump_gimple_eh_must_not_throw (pretty_printer *buffer, gimple gs,
991 int spc, int flags)
993 if (flags & TDF_RAW)
994 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs,
995 gimple_eh_must_not_throw_fndecl (gs));
996 else
997 dump_gimple_fmt (buffer, spc, flags, "<<<eh_must_not_throw (%T)>>>",
998 gimple_eh_must_not_throw_fndecl (gs));
1002 /* Dump a GIMPLE_EH_ELSE tuple on the pretty_printer BUFFER, SPC spaces of
1003 indent. FLAGS specifies details to show in the dump (see TDF_* in
1004 dumpfile.h). */
1006 static void
1007 dump_gimple_eh_else (pretty_printer *buffer, gimple gs, int spc, int flags)
1009 if (flags & TDF_RAW)
1010 dump_gimple_fmt (buffer, spc, flags,
1011 "%G <%+N_BODY <%S>%nE_BODY <%S>%->", gs,
1012 gimple_eh_else_n_body (gs), gimple_eh_else_e_body (gs));
1013 else
1014 dump_gimple_fmt (buffer, spc, flags,
1015 "<<<if_normal_exit>>>%+{%S}%-<<<else_eh_exit>>>%+{%S}",
1016 gimple_eh_else_n_body (gs), gimple_eh_else_e_body (gs));
1020 /* Dump a GIMPLE_RESX tuple on the pretty_printer BUFFER, SPC spaces of
1021 indent. FLAGS specifies details to show in the dump (see TDF_* in
1022 dumpfile.h). */
1024 static void
1025 dump_gimple_resx (pretty_printer *buffer, gimple gs, int spc, int flags)
1027 if (flags & TDF_RAW)
1028 dump_gimple_fmt (buffer, spc, flags, "%G <%d>", gs,
1029 gimple_resx_region (gs));
1030 else
1031 dump_gimple_fmt (buffer, spc, flags, "resx %d", gimple_resx_region (gs));
1034 /* Dump a GIMPLE_EH_DISPATCH tuple on the pretty_printer BUFFER. */
1036 static void
1037 dump_gimple_eh_dispatch (pretty_printer *buffer, gimple gs, int spc, int flags)
1039 if (flags & TDF_RAW)
1040 dump_gimple_fmt (buffer, spc, flags, "%G <%d>", gs,
1041 gimple_eh_dispatch_region (gs));
1042 else
1043 dump_gimple_fmt (buffer, spc, flags, "eh_dispatch %d",
1044 gimple_eh_dispatch_region (gs));
1047 /* Dump a GIMPLE_DEBUG tuple on the pretty_printer BUFFER, SPC spaces
1048 of indent. FLAGS specifies details to show in the dump (see TDF_*
1049 in dumpfile.h). */
1051 static void
1052 dump_gimple_debug (pretty_printer *buffer, gimple gs, int spc, int flags)
1054 switch (gs->gsbase.subcode)
1056 case GIMPLE_DEBUG_BIND:
1057 if (flags & TDF_RAW)
1058 dump_gimple_fmt (buffer, spc, flags, "%G BIND <%T, %T>", gs,
1059 gimple_debug_bind_get_var (gs),
1060 gimple_debug_bind_get_value (gs));
1061 else
1062 dump_gimple_fmt (buffer, spc, flags, "# DEBUG %T => %T",
1063 gimple_debug_bind_get_var (gs),
1064 gimple_debug_bind_get_value (gs));
1065 break;
1067 case GIMPLE_DEBUG_SOURCE_BIND:
1068 if (flags & TDF_RAW)
1069 dump_gimple_fmt (buffer, spc, flags, "%G SRCBIND <%T, %T>", gs,
1070 gimple_debug_source_bind_get_var (gs),
1071 gimple_debug_source_bind_get_value (gs));
1072 else
1073 dump_gimple_fmt (buffer, spc, flags, "# DEBUG %T s=> %T",
1074 gimple_debug_source_bind_get_var (gs),
1075 gimple_debug_source_bind_get_value (gs));
1076 break;
1078 default:
1079 gcc_unreachable ();
1083 /* Dump a GIMPLE_OMP_FOR tuple on the pretty_printer BUFFER. */
1084 static void
1085 dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags)
1087 size_t i;
1089 if (flags & TDF_RAW)
1091 const char *kind;
1092 switch (gimple_omp_for_kind (gs))
1094 case GF_OMP_FOR_KIND_FOR:
1095 kind = "";
1096 break;
1097 case GF_OMP_FOR_KIND_SIMD:
1098 kind = " simd";
1099 break;
1100 default:
1101 gcc_unreachable ();
1103 dump_gimple_fmt (buffer, spc, flags, "%G%s <%+BODY <%S>%nCLAUSES <", gs,
1104 kind, gimple_omp_body (gs));
1105 dump_omp_clauses (buffer, gimple_omp_for_clauses (gs), spc, flags);
1106 dump_gimple_fmt (buffer, spc, flags, " >,");
1107 for (i = 0; i < gimple_omp_for_collapse (gs); i++)
1108 dump_gimple_fmt (buffer, spc, flags,
1109 "%+%T, %T, %T, %s, %T,%n",
1110 gimple_omp_for_index (gs, i),
1111 gimple_omp_for_initial (gs, i),
1112 gimple_omp_for_final (gs, i),
1113 tree_code_name[gimple_omp_for_cond (gs, i)],
1114 gimple_omp_for_incr (gs, i));
1115 dump_gimple_fmt (buffer, spc, flags, "PRE_BODY <%S>%->",
1116 gimple_omp_for_pre_body (gs));
1118 else
1120 switch (gimple_omp_for_kind (gs))
1122 case GF_OMP_FOR_KIND_FOR:
1123 pp_string (buffer, "#pragma omp for");
1124 break;
1125 case GF_OMP_FOR_KIND_SIMD:
1126 pp_string (buffer, "#pragma omp simd");
1127 break;
1128 default:
1129 gcc_unreachable ();
1131 dump_omp_clauses (buffer, gimple_omp_for_clauses (gs), spc, flags);
1132 for (i = 0; i < gimple_omp_for_collapse (gs); i++)
1134 if (i)
1135 spc += 2;
1136 newline_and_indent (buffer, spc);
1137 pp_string (buffer, "for (");
1138 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1139 flags, false);
1140 pp_string (buffer, " = ");
1141 dump_generic_node (buffer, gimple_omp_for_initial (gs, i), spc,
1142 flags, false);
1143 pp_string (buffer, "; ");
1145 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1146 flags, false);
1147 pp_space (buffer);
1148 switch (gimple_omp_for_cond (gs, i))
1150 case LT_EXPR:
1151 pp_less (buffer);
1152 break;
1153 case GT_EXPR:
1154 pp_greater (buffer);
1155 break;
1156 case LE_EXPR:
1157 pp_less_equal (buffer);
1158 break;
1159 case GE_EXPR:
1160 pp_greater_equal (buffer);
1161 break;
1162 default:
1163 gcc_unreachable ();
1165 pp_space (buffer);
1166 dump_generic_node (buffer, gimple_omp_for_final (gs, i), spc,
1167 flags, false);
1168 pp_string (buffer, "; ");
1170 dump_generic_node (buffer, gimple_omp_for_index (gs, i), spc,
1171 flags, false);
1172 pp_string (buffer, " = ");
1173 dump_generic_node (buffer, gimple_omp_for_incr (gs, i), spc,
1174 flags, false);
1175 pp_right_paren (buffer);
1178 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1180 newline_and_indent (buffer, spc + 2);
1181 pp_left_brace (buffer);
1182 pp_newline (buffer);
1183 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1184 newline_and_indent (buffer, spc + 2);
1185 pp_right_brace (buffer);
1190 /* Dump a GIMPLE_OMP_CONTINUE tuple on the pretty_printer BUFFER. */
1192 static void
1193 dump_gimple_omp_continue (pretty_printer *buffer, gimple gs, int spc, int flags)
1195 if (flags & TDF_RAW)
1197 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T>", gs,
1198 gimple_omp_continue_control_def (gs),
1199 gimple_omp_continue_control_use (gs));
1201 else
1203 pp_string (buffer, "#pragma omp continue (");
1204 dump_generic_node (buffer, gimple_omp_continue_control_def (gs),
1205 spc, flags, false);
1206 pp_comma (buffer);
1207 pp_space (buffer);
1208 dump_generic_node (buffer, gimple_omp_continue_control_use (gs),
1209 spc, flags, false);
1210 pp_right_paren (buffer);
1214 /* Dump a GIMPLE_OMP_SINGLE tuple on the pretty_printer BUFFER. */
1216 static void
1217 dump_gimple_omp_single (pretty_printer *buffer, gimple gs, int spc, int flags)
1219 if (flags & TDF_RAW)
1221 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1222 gimple_omp_body (gs));
1223 dump_omp_clauses (buffer, gimple_omp_single_clauses (gs), spc, flags);
1224 dump_gimple_fmt (buffer, spc, flags, " >");
1226 else
1228 pp_string (buffer, "#pragma omp single");
1229 dump_omp_clauses (buffer, gimple_omp_single_clauses (gs), spc, flags);
1230 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1232 newline_and_indent (buffer, spc + 2);
1233 pp_left_brace (buffer);
1234 pp_newline (buffer);
1235 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1236 newline_and_indent (buffer, spc + 2);
1237 pp_right_brace (buffer);
1242 /* Dump a GIMPLE_OMP_SECTIONS tuple on the pretty_printer BUFFER. */
1244 static void
1245 dump_gimple_omp_sections (pretty_printer *buffer, gimple gs, int spc,
1246 int flags)
1248 if (flags & TDF_RAW)
1250 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1251 gimple_omp_body (gs));
1252 dump_omp_clauses (buffer, gimple_omp_sections_clauses (gs), spc, flags);
1253 dump_gimple_fmt (buffer, spc, flags, " >");
1255 else
1257 pp_string (buffer, "#pragma omp sections");
1258 if (gimple_omp_sections_control (gs))
1260 pp_string (buffer, " <");
1261 dump_generic_node (buffer, gimple_omp_sections_control (gs), spc,
1262 flags, false);
1263 pp_greater (buffer);
1265 dump_omp_clauses (buffer, gimple_omp_sections_clauses (gs), spc, flags);
1266 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1268 newline_and_indent (buffer, spc + 2);
1269 pp_left_brace (buffer);
1270 pp_newline (buffer);
1271 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1272 newline_and_indent (buffer, spc + 2);
1273 pp_right_brace (buffer);
1278 /* Dump a GIMPLE_OMP_{MASTER,ORDERED,SECTION} tuple on the pretty_printer
1279 BUFFER. */
1281 static void
1282 dump_gimple_omp_block (pretty_printer *buffer, gimple gs, int spc, int flags)
1284 if (flags & TDF_RAW)
1285 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1286 gimple_omp_body (gs));
1287 else
1289 switch (gimple_code (gs))
1291 case GIMPLE_OMP_MASTER:
1292 pp_string (buffer, "#pragma omp master");
1293 break;
1294 case GIMPLE_OMP_ORDERED:
1295 pp_string (buffer, "#pragma omp ordered");
1296 break;
1297 case GIMPLE_OMP_SECTION:
1298 pp_string (buffer, "#pragma omp section");
1299 break;
1300 default:
1301 gcc_unreachable ();
1303 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1305 newline_and_indent (buffer, spc + 2);
1306 pp_left_brace (buffer);
1307 pp_newline (buffer);
1308 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1309 newline_and_indent (buffer, spc + 2);
1310 pp_right_brace (buffer);
1315 /* Dump a GIMPLE_OMP_CRITICAL tuple on the pretty_printer BUFFER. */
1317 static void
1318 dump_gimple_omp_critical (pretty_printer *buffer, gimple gs, int spc,
1319 int flags)
1321 if (flags & TDF_RAW)
1322 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S> >", gs,
1323 gimple_omp_body (gs));
1324 else
1326 pp_string (buffer, "#pragma omp critical");
1327 if (gimple_omp_critical_name (gs))
1329 pp_string (buffer, " (");
1330 dump_generic_node (buffer, gimple_omp_critical_name (gs), spc,
1331 flags, false);
1332 pp_right_paren (buffer);
1334 if (!gimple_seq_empty_p (gimple_omp_body (gs)))
1336 newline_and_indent (buffer, spc + 2);
1337 pp_left_brace (buffer);
1338 pp_newline (buffer);
1339 dump_gimple_seq (buffer, gimple_omp_body (gs), spc + 4, flags);
1340 newline_and_indent (buffer, spc + 2);
1341 pp_right_brace (buffer);
1346 /* Dump a GIMPLE_OMP_RETURN tuple on the pretty_printer BUFFER. */
1348 static void
1349 dump_gimple_omp_return (pretty_printer *buffer, gimple gs, int spc, int flags)
1351 if (flags & TDF_RAW)
1353 dump_gimple_fmt (buffer, spc, flags, "%G <nowait=%d>", gs,
1354 (int) gimple_omp_return_nowait_p (gs));
1356 else
1358 pp_string (buffer, "#pragma omp return");
1359 if (gimple_omp_return_nowait_p (gs))
1360 pp_string (buffer, "(nowait)");
1364 /* Dump a GIMPLE_TRANSACTION tuple on the pretty_printer BUFFER. */
1366 static void
1367 dump_gimple_transaction (pretty_printer *buffer, gimple gs, int spc, int flags)
1369 unsigned subcode = gimple_transaction_subcode (gs);
1371 if (flags & TDF_RAW)
1373 dump_gimple_fmt (buffer, spc, flags,
1374 "%G [SUBCODE=%x,LABEL=%T] <%+BODY <%S> >",
1375 gs, subcode, gimple_transaction_label (gs),
1376 gimple_transaction_body (gs));
1378 else
1380 if (subcode & GTMA_IS_OUTER)
1381 pp_string (buffer, "__transaction_atomic [[outer]]");
1382 else if (subcode & GTMA_IS_RELAXED)
1383 pp_string (buffer, "__transaction_relaxed");
1384 else
1385 pp_string (buffer, "__transaction_atomic");
1386 subcode &= ~GTMA_DECLARATION_MASK;
1388 if (subcode || gimple_transaction_label (gs))
1390 pp_string (buffer, " //");
1391 if (gimple_transaction_label (gs))
1393 pp_string (buffer, " LABEL=");
1394 dump_generic_node (buffer, gimple_transaction_label (gs),
1395 spc, flags, false);
1397 if (subcode)
1399 pp_string (buffer, " SUBCODE=[ ");
1400 if (subcode & GTMA_HAVE_ABORT)
1402 pp_string (buffer, "GTMA_HAVE_ABORT ");
1403 subcode &= ~GTMA_HAVE_ABORT;
1405 if (subcode & GTMA_HAVE_LOAD)
1407 pp_string (buffer, "GTMA_HAVE_LOAD ");
1408 subcode &= ~GTMA_HAVE_LOAD;
1410 if (subcode & GTMA_HAVE_STORE)
1412 pp_string (buffer, "GTMA_HAVE_STORE ");
1413 subcode &= ~GTMA_HAVE_STORE;
1415 if (subcode & GTMA_MAY_ENTER_IRREVOCABLE)
1417 pp_string (buffer, "GTMA_MAY_ENTER_IRREVOCABLE ");
1418 subcode &= ~GTMA_MAY_ENTER_IRREVOCABLE;
1420 if (subcode & GTMA_DOES_GO_IRREVOCABLE)
1422 pp_string (buffer, "GTMA_DOES_GO_IRREVOCABLE ");
1423 subcode &= ~GTMA_DOES_GO_IRREVOCABLE;
1425 if (subcode & GTMA_HAS_NO_INSTRUMENTATION)
1427 pp_string (buffer, "GTMA_HAS_NO_INSTRUMENTATION ");
1428 subcode &= ~GTMA_HAS_NO_INSTRUMENTATION;
1430 if (subcode)
1431 pp_printf (buffer, "0x%x ", subcode);
1432 pp_right_bracket (buffer);
1436 if (!gimple_seq_empty_p (gimple_transaction_body (gs)))
1438 newline_and_indent (buffer, spc + 2);
1439 pp_left_brace (buffer);
1440 pp_newline (buffer);
1441 dump_gimple_seq (buffer, gimple_transaction_body (gs),
1442 spc + 4, flags);
1443 newline_and_indent (buffer, spc + 2);
1444 pp_right_brace (buffer);
1449 /* Dump a GIMPLE_ASM tuple on the pretty_printer BUFFER, SPC spaces of
1450 indent. FLAGS specifies details to show in the dump (see TDF_* in
1451 dumpfile.h). */
1453 static void
1454 dump_gimple_asm (pretty_printer *buffer, gimple gs, int spc, int flags)
1456 unsigned int i, n, f, fields;
1458 if (flags & TDF_RAW)
1460 dump_gimple_fmt (buffer, spc, flags, "%G <%+STRING <%n%s%n>", gs,
1461 gimple_asm_string (gs));
1463 n = gimple_asm_noutputs (gs);
1464 if (n)
1466 newline_and_indent (buffer, spc + 2);
1467 pp_string (buffer, "OUTPUT: ");
1468 for (i = 0; i < n; i++)
1470 dump_generic_node (buffer, gimple_asm_output_op (gs, i),
1471 spc, flags, false);
1472 if (i < n - 1)
1473 pp_string (buffer, ", ");
1477 n = gimple_asm_ninputs (gs);
1478 if (n)
1480 newline_and_indent (buffer, spc + 2);
1481 pp_string (buffer, "INPUT: ");
1482 for (i = 0; i < n; i++)
1484 dump_generic_node (buffer, gimple_asm_input_op (gs, i),
1485 spc, flags, false);
1486 if (i < n - 1)
1487 pp_string (buffer, ", ");
1491 n = gimple_asm_nclobbers (gs);
1492 if (n)
1494 newline_and_indent (buffer, spc + 2);
1495 pp_string (buffer, "CLOBBER: ");
1496 for (i = 0; i < n; i++)
1498 dump_generic_node (buffer, gimple_asm_clobber_op (gs, i),
1499 spc, flags, false);
1500 if (i < n - 1)
1501 pp_string (buffer, ", ");
1505 n = gimple_asm_nlabels (gs);
1506 if (n)
1508 newline_and_indent (buffer, spc + 2);
1509 pp_string (buffer, "LABEL: ");
1510 for (i = 0; i < n; i++)
1512 dump_generic_node (buffer, gimple_asm_label_op (gs, i),
1513 spc, flags, false);
1514 if (i < n - 1)
1515 pp_string (buffer, ", ");
1519 newline_and_indent (buffer, spc);
1520 pp_greater (buffer);
1522 else
1524 pp_string (buffer, "__asm__");
1525 if (gimple_asm_volatile_p (gs))
1526 pp_string (buffer, " __volatile__");
1527 if (gimple_asm_nlabels (gs))
1528 pp_string (buffer, " goto");
1529 pp_string (buffer, "(\"");
1530 pp_string (buffer, gimple_asm_string (gs));
1531 pp_string (buffer, "\"");
1533 if (gimple_asm_nlabels (gs))
1534 fields = 4;
1535 else if (gimple_asm_nclobbers (gs))
1536 fields = 3;
1537 else if (gimple_asm_ninputs (gs))
1538 fields = 2;
1539 else if (gimple_asm_noutputs (gs))
1540 fields = 1;
1541 else
1542 fields = 0;
1544 for (f = 0; f < fields; ++f)
1546 pp_string (buffer, " : ");
1548 switch (f)
1550 case 0:
1551 n = gimple_asm_noutputs (gs);
1552 for (i = 0; i < n; i++)
1554 dump_generic_node (buffer, gimple_asm_output_op (gs, i),
1555 spc, flags, false);
1556 if (i < n - 1)
1557 pp_string (buffer, ", ");
1559 break;
1561 case 1:
1562 n = gimple_asm_ninputs (gs);
1563 for (i = 0; i < n; i++)
1565 dump_generic_node (buffer, gimple_asm_input_op (gs, i),
1566 spc, flags, false);
1567 if (i < n - 1)
1568 pp_string (buffer, ", ");
1570 break;
1572 case 2:
1573 n = gimple_asm_nclobbers (gs);
1574 for (i = 0; i < n; i++)
1576 dump_generic_node (buffer, gimple_asm_clobber_op (gs, i),
1577 spc, flags, false);
1578 if (i < n - 1)
1579 pp_string (buffer, ", ");
1581 break;
1583 case 3:
1584 n = gimple_asm_nlabels (gs);
1585 for (i = 0; i < n; i++)
1587 dump_generic_node (buffer, gimple_asm_label_op (gs, i),
1588 spc, flags, false);
1589 if (i < n - 1)
1590 pp_string (buffer, ", ");
1592 break;
1594 default:
1595 gcc_unreachable ();
1599 pp_string (buffer, ");");
1604 /* Dump a PHI node PHI. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1.
1605 The caller is responsible for calling pp_flush on BUFFER to finalize
1606 pretty printer. */
1608 static void
1609 dump_gimple_phi (pretty_printer *buffer, gimple phi, int spc, int flags)
1611 size_t i;
1612 tree lhs = gimple_phi_result (phi);
1614 if (flags & TDF_ALIAS
1615 && POINTER_TYPE_P (TREE_TYPE (lhs))
1616 && SSA_NAME_PTR_INFO (lhs))
1618 unsigned int align, misalign;
1619 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (lhs);
1620 pp_string (buffer, "PT = ");
1621 pp_points_to_solution (buffer, &pi->pt);
1622 newline_and_indent (buffer, spc);
1623 if (get_ptr_info_alignment (pi, &align, &misalign))
1625 pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", align, misalign);
1626 newline_and_indent (buffer, spc);
1628 pp_string (buffer, "# ");
1631 if (flags & TDF_RAW)
1632 dump_gimple_fmt (buffer, spc, flags, "%G <%T, ", phi,
1633 gimple_phi_result (phi));
1634 else
1636 dump_generic_node (buffer, lhs, spc, flags, false);
1637 pp_string (buffer, " = PHI <");
1639 for (i = 0; i < gimple_phi_num_args (phi); i++)
1641 if ((flags & TDF_LINENO) && gimple_phi_arg_has_location (phi, i))
1643 expanded_location xloc;
1645 xloc = expand_location (gimple_phi_arg_location (phi, i));
1646 pp_left_bracket (buffer);
1647 if (xloc.file)
1649 pp_string (buffer, xloc.file);
1650 pp_string (buffer, " : ");
1652 pp_decimal_int (buffer, xloc.line);
1653 pp_colon (buffer);
1654 pp_decimal_int (buffer, xloc.column);
1655 pp_string (buffer, "] ");
1657 dump_generic_node (buffer, gimple_phi_arg_def (phi, i), spc, flags,
1658 false);
1659 pp_left_paren (buffer);
1660 pp_decimal_int (buffer, gimple_phi_arg_edge (phi, i)->src->index);
1661 pp_right_paren (buffer);
1662 if (i < gimple_phi_num_args (phi) - 1)
1663 pp_string (buffer, ", ");
1665 pp_greater (buffer);
1669 /* Dump a GIMPLE_OMP_PARALLEL tuple on the pretty_printer BUFFER, SPC spaces
1670 of indent. FLAGS specifies details to show in the dump (see TDF_* in
1671 dumpfile.h). */
1673 static void
1674 dump_gimple_omp_parallel (pretty_printer *buffer, gimple gs, int spc,
1675 int flags)
1677 if (flags & TDF_RAW)
1679 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1680 gimple_omp_body (gs));
1681 dump_omp_clauses (buffer, gimple_omp_parallel_clauses (gs), spc, flags);
1682 dump_gimple_fmt (buffer, spc, flags, " >, %T, %T%n>",
1683 gimple_omp_parallel_child_fn (gs),
1684 gimple_omp_parallel_data_arg (gs));
1686 else
1688 gimple_seq body;
1689 pp_string (buffer, "#pragma omp parallel");
1690 dump_omp_clauses (buffer, gimple_omp_parallel_clauses (gs), spc, flags);
1691 if (gimple_omp_parallel_child_fn (gs))
1693 pp_string (buffer, " [child fn: ");
1694 dump_generic_node (buffer, gimple_omp_parallel_child_fn (gs),
1695 spc, flags, false);
1696 pp_string (buffer, " (");
1697 if (gimple_omp_parallel_data_arg (gs))
1698 dump_generic_node (buffer, gimple_omp_parallel_data_arg (gs),
1699 spc, flags, false);
1700 else
1701 pp_string (buffer, "???");
1702 pp_string (buffer, ")]");
1704 body = gimple_omp_body (gs);
1705 if (body && gimple_code (gimple_seq_first_stmt (body)) != GIMPLE_BIND)
1707 newline_and_indent (buffer, spc + 2);
1708 pp_left_brace (buffer);
1709 pp_newline (buffer);
1710 dump_gimple_seq (buffer, body, spc + 4, flags);
1711 newline_and_indent (buffer, spc + 2);
1712 pp_right_brace (buffer);
1714 else if (body)
1716 pp_newline (buffer);
1717 dump_gimple_seq (buffer, body, spc + 2, flags);
1723 /* Dump a GIMPLE_OMP_TASK tuple on the pretty_printer BUFFER, SPC spaces
1724 of indent. FLAGS specifies details to show in the dump (see TDF_* in
1725 dumpfile.h). */
1727 static void
1728 dump_gimple_omp_task (pretty_printer *buffer, gimple gs, int spc,
1729 int flags)
1731 if (flags & TDF_RAW)
1733 dump_gimple_fmt (buffer, spc, flags, "%G <%+BODY <%S>%nCLAUSES <", gs,
1734 gimple_omp_body (gs));
1735 dump_omp_clauses (buffer, gimple_omp_task_clauses (gs), spc, flags);
1736 dump_gimple_fmt (buffer, spc, flags, " >, %T, %T, %T, %T, %T%n>",
1737 gimple_omp_task_child_fn (gs),
1738 gimple_omp_task_data_arg (gs),
1739 gimple_omp_task_copy_fn (gs),
1740 gimple_omp_task_arg_size (gs),
1741 gimple_omp_task_arg_size (gs));
1743 else
1745 gimple_seq body;
1746 pp_string (buffer, "#pragma omp task");
1747 dump_omp_clauses (buffer, gimple_omp_task_clauses (gs), spc, flags);
1748 if (gimple_omp_task_child_fn (gs))
1750 pp_string (buffer, " [child fn: ");
1751 dump_generic_node (buffer, gimple_omp_task_child_fn (gs),
1752 spc, flags, false);
1753 pp_string (buffer, " (");
1754 if (gimple_omp_task_data_arg (gs))
1755 dump_generic_node (buffer, gimple_omp_task_data_arg (gs),
1756 spc, flags, false);
1757 else
1758 pp_string (buffer, "???");
1759 pp_string (buffer, ")]");
1761 body = gimple_omp_body (gs);
1762 if (body && gimple_code (gimple_seq_first_stmt (body)) != GIMPLE_BIND)
1764 newline_and_indent (buffer, spc + 2);
1765 pp_left_brace (buffer);
1766 pp_newline (buffer);
1767 dump_gimple_seq (buffer, body, spc + 4, flags);
1768 newline_and_indent (buffer, spc + 2);
1769 pp_right_brace (buffer);
1771 else if (body)
1773 pp_newline (buffer);
1774 dump_gimple_seq (buffer, body, spc + 2, flags);
1780 /* Dump a GIMPLE_OMP_ATOMIC_LOAD tuple on the pretty_printer BUFFER, SPC
1781 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
1782 in dumpfile.h). */
1784 static void
1785 dump_gimple_omp_atomic_load (pretty_printer *buffer, gimple gs, int spc,
1786 int flags)
1788 if (flags & TDF_RAW)
1790 dump_gimple_fmt (buffer, spc, flags, "%G <%T, %T>", gs,
1791 gimple_omp_atomic_load_lhs (gs),
1792 gimple_omp_atomic_load_rhs (gs));
1794 else
1796 pp_string (buffer, "#pragma omp atomic_load");
1797 if (gimple_omp_atomic_need_value_p (gs))
1798 pp_string (buffer, " [needed]");
1799 newline_and_indent (buffer, spc + 2);
1800 dump_generic_node (buffer, gimple_omp_atomic_load_lhs (gs),
1801 spc, flags, false);
1802 pp_space (buffer);
1803 pp_equal (buffer);
1804 pp_space (buffer);
1805 pp_star (buffer);
1806 dump_generic_node (buffer, gimple_omp_atomic_load_rhs (gs),
1807 spc, flags, false);
1811 /* Dump a GIMPLE_OMP_ATOMIC_STORE tuple on the pretty_printer BUFFER, SPC
1812 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
1813 in dumpfile.h). */
1815 static void
1816 dump_gimple_omp_atomic_store (pretty_printer *buffer, gimple gs, int spc,
1817 int flags)
1819 if (flags & TDF_RAW)
1821 dump_gimple_fmt (buffer, spc, flags, "%G <%T>", gs,
1822 gimple_omp_atomic_store_val (gs));
1824 else
1826 pp_string (buffer, "#pragma omp atomic_store ");
1827 if (gimple_omp_atomic_need_value_p (gs))
1828 pp_string (buffer, "[needed] ");
1829 pp_left_paren (buffer);
1830 dump_generic_node (buffer, gimple_omp_atomic_store_val (gs),
1831 spc, flags, false);
1832 pp_right_paren (buffer);
1837 /* Dump all the memory operands for statement GS. BUFFER, SPC and
1838 FLAGS are as in pp_gimple_stmt_1. */
1840 static void
1841 dump_gimple_mem_ops (pretty_printer *buffer, gimple gs, int spc, int flags)
1843 tree vdef = gimple_vdef (gs);
1844 tree vuse = gimple_vuse (gs);
1846 if (!ssa_operands_active (DECL_STRUCT_FUNCTION (current_function_decl))
1847 || !gimple_references_memory_p (gs))
1848 return;
1850 if (vdef != NULL_TREE)
1852 pp_string (buffer, "# ");
1853 dump_generic_node (buffer, vdef, spc + 2, flags, false);
1854 pp_string (buffer, " = VDEF <");
1855 dump_generic_node (buffer, vuse, spc + 2, flags, false);
1856 pp_greater (buffer);
1857 newline_and_indent (buffer, spc);
1859 else if (vuse != NULL_TREE)
1861 pp_string (buffer, "# VUSE <");
1862 dump_generic_node (buffer, vuse, spc + 2, flags, false);
1863 pp_greater (buffer);
1864 newline_and_indent (buffer, spc);
1869 /* Print the gimple statement GS on the pretty printer BUFFER, SPC
1870 spaces of indent. FLAGS specifies details to show in the dump (see
1871 TDF_* in dumpfile.h). The caller is responsible for calling
1872 pp_flush on BUFFER to finalize the pretty printer. */
1874 void
1875 pp_gimple_stmt_1 (pretty_printer *buffer, gimple gs, int spc, int flags)
1877 if (!gs)
1878 return;
1880 if (flags & TDF_STMTADDR)
1881 pp_printf (buffer, "<&%p> ", (void *) gs);
1883 if ((flags & TDF_LINENO) && gimple_has_location (gs))
1885 expanded_location xloc = expand_location (gimple_location (gs));
1886 pp_left_bracket (buffer);
1887 if (xloc.file)
1889 pp_string (buffer, xloc.file);
1890 pp_string (buffer, " : ");
1892 pp_decimal_int (buffer, xloc.line);
1893 pp_colon (buffer);
1894 pp_decimal_int (buffer, xloc.column);
1895 pp_string (buffer, "] ");
1898 if (flags & TDF_EH)
1900 int lp_nr = lookup_stmt_eh_lp (gs);
1901 if (lp_nr > 0)
1902 pp_printf (buffer, "[LP %d] ", lp_nr);
1903 else if (lp_nr < 0)
1904 pp_printf (buffer, "[MNT %d] ", -lp_nr);
1907 if ((flags & (TDF_VOPS|TDF_MEMSYMS))
1908 && gimple_has_mem_ops (gs))
1909 dump_gimple_mem_ops (buffer, gs, spc, flags);
1911 if ((flags & TDF_ALIAS)
1912 && gimple_has_lhs (gs))
1914 tree lhs = gimple_get_lhs (gs);
1915 if (TREE_CODE (lhs) == SSA_NAME
1916 && POINTER_TYPE_P (TREE_TYPE (lhs))
1917 && SSA_NAME_PTR_INFO (lhs))
1919 unsigned int align, misalign;
1920 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (lhs);
1921 pp_string (buffer, "# PT = ");
1922 pp_points_to_solution (buffer, &pi->pt);
1923 newline_and_indent (buffer, spc);
1924 if (get_ptr_info_alignment (pi, &align, &misalign))
1926 pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u",
1927 align, misalign);
1928 newline_and_indent (buffer, spc);
1933 switch (gimple_code (gs))
1935 case GIMPLE_ASM:
1936 dump_gimple_asm (buffer, gs, spc, flags);
1937 break;
1939 case GIMPLE_ASSIGN:
1940 dump_gimple_assign (buffer, gs, spc, flags);
1941 break;
1943 case GIMPLE_BIND:
1944 dump_gimple_bind (buffer, gs, spc, flags);
1945 break;
1947 case GIMPLE_CALL:
1948 dump_gimple_call (buffer, gs, spc, flags);
1949 break;
1951 case GIMPLE_COND:
1952 dump_gimple_cond (buffer, gs, spc, flags);
1953 break;
1955 case GIMPLE_LABEL:
1956 dump_gimple_label (buffer, gs, spc, flags);
1957 break;
1959 case GIMPLE_GOTO:
1960 dump_gimple_goto (buffer, gs, spc, flags);
1961 break;
1963 case GIMPLE_NOP:
1964 pp_string (buffer, "GIMPLE_NOP");
1965 break;
1967 case GIMPLE_RETURN:
1968 dump_gimple_return (buffer, gs, spc, flags);
1969 break;
1971 case GIMPLE_SWITCH:
1972 dump_gimple_switch (buffer, gs, spc, flags);
1973 break;
1975 case GIMPLE_TRY:
1976 dump_gimple_try (buffer, gs, spc, flags);
1977 break;
1979 case GIMPLE_PHI:
1980 dump_gimple_phi (buffer, gs, spc, flags);
1981 break;
1983 case GIMPLE_OMP_PARALLEL:
1984 dump_gimple_omp_parallel (buffer, gs, spc, flags);
1985 break;
1987 case GIMPLE_OMP_TASK:
1988 dump_gimple_omp_task (buffer, gs, spc, flags);
1989 break;
1991 case GIMPLE_OMP_ATOMIC_LOAD:
1992 dump_gimple_omp_atomic_load (buffer, gs, spc, flags);
1994 break;
1996 case GIMPLE_OMP_ATOMIC_STORE:
1997 dump_gimple_omp_atomic_store (buffer, gs, spc, flags);
1998 break;
2000 case GIMPLE_OMP_FOR:
2001 dump_gimple_omp_for (buffer, gs, spc, flags);
2002 break;
2004 case GIMPLE_OMP_CONTINUE:
2005 dump_gimple_omp_continue (buffer, gs, spc, flags);
2006 break;
2008 case GIMPLE_OMP_SINGLE:
2009 dump_gimple_omp_single (buffer, gs, spc, flags);
2010 break;
2012 case GIMPLE_OMP_RETURN:
2013 dump_gimple_omp_return (buffer, gs, spc, flags);
2014 break;
2016 case GIMPLE_OMP_SECTIONS:
2017 dump_gimple_omp_sections (buffer, gs, spc, flags);
2018 break;
2020 case GIMPLE_OMP_SECTIONS_SWITCH:
2021 pp_string (buffer, "GIMPLE_SECTIONS_SWITCH");
2022 break;
2024 case GIMPLE_OMP_MASTER:
2025 case GIMPLE_OMP_ORDERED:
2026 case GIMPLE_OMP_SECTION:
2027 dump_gimple_omp_block (buffer, gs, spc, flags);
2028 break;
2030 case GIMPLE_OMP_CRITICAL:
2031 dump_gimple_omp_critical (buffer, gs, spc, flags);
2032 break;
2034 case GIMPLE_CATCH:
2035 dump_gimple_catch (buffer, gs, spc, flags);
2036 break;
2038 case GIMPLE_EH_FILTER:
2039 dump_gimple_eh_filter (buffer, gs, spc, flags);
2040 break;
2042 case GIMPLE_EH_MUST_NOT_THROW:
2043 dump_gimple_eh_must_not_throw (buffer, gs, spc, flags);
2044 break;
2046 case GIMPLE_EH_ELSE:
2047 dump_gimple_eh_else (buffer, gs, spc, flags);
2048 break;
2050 case GIMPLE_RESX:
2051 dump_gimple_resx (buffer, gs, spc, flags);
2052 break;
2054 case GIMPLE_EH_DISPATCH:
2055 dump_gimple_eh_dispatch (buffer, gs, spc, flags);
2056 break;
2058 case GIMPLE_DEBUG:
2059 dump_gimple_debug (buffer, gs, spc, flags);
2060 break;
2062 case GIMPLE_PREDICT:
2063 pp_string (buffer, "// predicted ");
2064 if (gimple_predict_outcome (gs))
2065 pp_string (buffer, "likely by ");
2066 else
2067 pp_string (buffer, "unlikely by ");
2068 pp_string (buffer, predictor_name (gimple_predict_predictor (gs)));
2069 pp_string (buffer, " predictor.");
2070 break;
2072 case GIMPLE_TRANSACTION:
2073 dump_gimple_transaction (buffer, gs, spc, flags);
2074 break;
2076 default:
2077 GIMPLE_NIY;
2082 /* Dumps header of basic block BB to OUTF indented by INDENT
2083 spaces and details described by flags. */
2085 static void
2086 dump_gimple_bb_header (FILE *outf, basic_block bb, int indent, int flags)
2088 if (flags & TDF_BLOCKS)
2090 if (flags & TDF_LINENO)
2092 gimple_stmt_iterator gsi;
2094 if (flags & TDF_COMMENT)
2095 fputs (";; ", outf);
2097 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2098 if (!is_gimple_debug (gsi_stmt (gsi))
2099 && get_lineno (gsi_stmt (gsi)) != UNKNOWN_LOCATION)
2101 fprintf (outf, "%*sstarting at line %d",
2102 indent, "", get_lineno (gsi_stmt (gsi)));
2103 break;
2105 if (bb->discriminator)
2106 fprintf (outf, ", discriminator %i", bb->discriminator);
2107 fputc ('\n', outf);
2110 else
2112 gimple stmt = first_stmt (bb);
2113 if (!stmt || gimple_code (stmt) != GIMPLE_LABEL)
2114 fprintf (outf, "%*s<bb %d>:\n", indent, "", bb->index);
2119 /* Dumps end of basic block BB to buffer BUFFER indented by INDENT
2120 spaces. */
2122 static void
2123 dump_gimple_bb_footer (FILE *outf ATTRIBUTE_UNUSED,
2124 basic_block bb ATTRIBUTE_UNUSED,
2125 int indent ATTRIBUTE_UNUSED,
2126 int flags ATTRIBUTE_UNUSED)
2128 /* There is currently no GIMPLE-specific basic block info to dump. */
2129 return;
2133 /* Dump PHI nodes of basic block BB to BUFFER with details described
2134 by FLAGS and indented by INDENT spaces. */
2136 static void
2137 dump_phi_nodes (pretty_printer *buffer, basic_block bb, int indent, int flags)
2139 gimple_stmt_iterator i;
2141 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
2143 gimple phi = gsi_stmt (i);
2144 if (!virtual_operand_p (gimple_phi_result (phi)) || (flags & TDF_VOPS))
2146 INDENT (indent);
2147 pp_string (buffer, "# ");
2148 dump_gimple_phi (buffer, phi, indent, flags);
2149 pp_newline (buffer);
2155 /* Dump jump to basic block BB that is represented implicitly in the cfg
2156 to BUFFER. */
2158 static void
2159 pp_cfg_jump (pretty_printer *buffer, basic_block bb)
2161 gimple stmt;
2163 stmt = first_stmt (bb);
2165 pp_string (buffer, "goto <bb ");
2166 pp_decimal_int (buffer, bb->index);
2167 pp_greater (buffer);
2168 if (stmt && gimple_code (stmt) == GIMPLE_LABEL)
2170 pp_string (buffer, " (");
2171 dump_generic_node (buffer, gimple_label_label (stmt), 0, 0, false);
2172 pp_right_paren (buffer);
2173 pp_semicolon (buffer);
2175 else
2176 pp_semicolon (buffer);
2180 /* Dump edges represented implicitly in basic block BB to BUFFER, indented
2181 by INDENT spaces, with details given by FLAGS. */
2183 static void
2184 dump_implicit_edges (pretty_printer *buffer, basic_block bb, int indent,
2185 int flags)
2187 edge e;
2188 gimple stmt;
2190 stmt = last_stmt (bb);
2192 if (stmt && gimple_code (stmt) == GIMPLE_COND)
2194 edge true_edge, false_edge;
2196 /* When we are emitting the code or changing CFG, it is possible that
2197 the edges are not yet created. When we are using debug_bb in such
2198 a situation, we do not want it to crash. */
2199 if (EDGE_COUNT (bb->succs) != 2)
2200 return;
2201 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2203 INDENT (indent + 2);
2204 pp_cfg_jump (buffer, true_edge->dest);
2205 newline_and_indent (buffer, indent);
2206 pp_string (buffer, "else");
2207 newline_and_indent (buffer, indent + 2);
2208 pp_cfg_jump (buffer, false_edge->dest);
2209 pp_newline (buffer);
2210 return;
2213 /* If there is a fallthru edge, we may need to add an artificial
2214 goto to the dump. */
2215 e = find_fallthru_edge (bb->succs);
2217 if (e && e->dest != bb->next_bb)
2219 INDENT (indent);
2221 if ((flags & TDF_LINENO)
2222 && e->goto_locus != UNKNOWN_LOCATION
2225 expanded_location goto_xloc;
2226 goto_xloc = expand_location (e->goto_locus);
2227 pp_left_bracket (buffer);
2228 if (goto_xloc.file)
2230 pp_string (buffer, goto_xloc.file);
2231 pp_string (buffer, " : ");
2233 pp_decimal_int (buffer, goto_xloc.line);
2234 pp_string (buffer, " : ");
2235 pp_decimal_int (buffer, goto_xloc.column);
2236 pp_string (buffer, "] ");
2239 pp_cfg_jump (buffer, e->dest);
2240 pp_newline (buffer);
2245 /* Dumps basic block BB to buffer BUFFER with details described by FLAGS and
2246 indented by INDENT spaces. */
2248 static void
2249 gimple_dump_bb_buff (pretty_printer *buffer, basic_block bb, int indent,
2250 int flags)
2252 gimple_stmt_iterator gsi;
2253 gimple stmt;
2254 int label_indent = indent - 2;
2256 if (label_indent < 0)
2257 label_indent = 0;
2259 dump_phi_nodes (buffer, bb, indent, flags);
2261 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2263 int curr_indent;
2265 stmt = gsi_stmt (gsi);
2267 curr_indent = gimple_code (stmt) == GIMPLE_LABEL ? label_indent : indent;
2269 INDENT (curr_indent);
2270 pp_gimple_stmt_1 (buffer, stmt, curr_indent, flags);
2271 pp_newline_and_flush (buffer);
2272 gcc_checking_assert (DECL_STRUCT_FUNCTION (current_function_decl));
2273 dump_histograms_for_stmt (DECL_STRUCT_FUNCTION (current_function_decl),
2274 pp_buffer(buffer)->stream, stmt);
2277 dump_implicit_edges (buffer, bb, indent, flags);
2278 pp_flush (buffer);
2282 /* Dumps basic block BB to FILE with details described by FLAGS and
2283 indented by INDENT spaces. */
2285 void
2286 gimple_dump_bb (FILE *file, basic_block bb, int indent, int flags)
2288 dump_gimple_bb_header (file, bb, indent, flags);
2289 if (bb->index >= NUM_FIXED_BLOCKS)
2291 pretty_printer buffer;
2292 pp_needs_newline (&buffer) = true;
2293 buffer.buffer->stream = file;
2294 gimple_dump_bb_buff (&buffer, bb, indent, flags);
2296 dump_gimple_bb_footer (file, bb, indent, flags);
2299 /* Dumps basic block BB to pretty-printer PP with default dump flags and
2300 no indentation, for use as a label of a DOT graph record-node.
2301 ??? Should just use gimple_dump_bb_buff here, except that value profiling
2302 histogram dumping doesn't know about pretty-printers. */
2304 void
2305 gimple_dump_bb_for_graph (pretty_printer *pp, basic_block bb)
2307 gimple_stmt_iterator gsi;
2309 pp_printf (pp, "<bb %d>:\n", bb->index);
2310 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
2312 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2314 gimple phi = gsi_stmt (gsi);
2315 if (!virtual_operand_p (gimple_phi_result (phi))
2316 || (dump_flags & TDF_VOPS))
2318 pp_bar (pp);
2319 pp_write_text_to_stream (pp);
2320 pp_string (pp, "# ");
2321 pp_gimple_stmt_1 (pp, phi, 0, dump_flags);
2322 pp_newline (pp);
2323 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
2327 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2329 gimple stmt = gsi_stmt (gsi);
2330 pp_bar (pp);
2331 pp_write_text_to_stream (pp);
2332 pp_gimple_stmt_1 (pp, stmt, 0, dump_flags);
2333 pp_newline (pp);
2334 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
2336 dump_implicit_edges (pp, bb, 0, dump_flags);
2337 pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);