1 /* Pretty formatting of GIMPLE statements and expressions.
2 Copyright (C) 2001-2014 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
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
27 #include "stringpool.h"
28 #include "diagnostic.h"
29 #include "gimple-pretty-print.h"
32 #include "basic-block.h"
33 #include "tree-ssa-alias.h"
34 #include "internal-fn.h"
36 #include "gimple-expr.h"
39 #include "gimple-iterator.h"
40 #include "gimple-ssa.h"
43 #include "tree-ssanames.h"
44 #include "dumpfile.h" /* for dump_flags */
45 #include "value-prof.h"
46 #include "trans-mem.h"
48 #define INDENT(SPACE) \
49 do { int i; for (i = 0; i < SPACE; i++) pp_space (buffer); } while (0)
51 #define GIMPLE_NIY do_niy (buffer,gs)
53 /* Try to print on BUFFER a default message for the unrecognized
54 gimple statement GS. */
57 do_niy (pretty_printer
*buffer
, gimple gs
)
59 pp_printf (buffer
, "<<< Unknown GIMPLE statement: %s >>>\n",
60 gimple_code_name
[(int) gimple_code (gs
)]);
64 /* Emit a newline and SPC indentation spaces to BUFFER. */
67 newline_and_indent (pretty_printer
*buffer
, int spc
)
74 /* Print the GIMPLE statement GS on stderr. */
77 debug_gimple_stmt (gimple gs
)
79 print_gimple_stmt (stderr
, gs
, 0, TDF_VOPS
|TDF_MEMSYMS
);
83 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
84 FLAGS as in pp_gimple_stmt_1. */
87 print_gimple_stmt (FILE *file
, gimple g
, int spc
, int flags
)
89 pretty_printer buffer
;
90 pp_needs_newline (&buffer
) = true;
91 buffer
.buffer
->stream
= file
;
92 pp_gimple_stmt_1 (&buffer
, g
, spc
, flags
);
93 pp_newline_and_flush (&buffer
);
97 debug (gimple_statement_base
&ref
)
99 print_gimple_stmt (stderr
, &ref
, 0, 0);
103 debug (gimple_statement_base
*ptr
)
108 fprintf (stderr
, "<nil>\n");
112 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
113 FLAGS as in pp_gimple_stmt_1. Print only the right-hand side
117 print_gimple_expr (FILE *file
, gimple g
, int spc
, int flags
)
119 flags
|= TDF_RHS_ONLY
;
120 pretty_printer buffer
;
121 pp_needs_newline (&buffer
) = true;
122 buffer
.buffer
->stream
= file
;
123 pp_gimple_stmt_1 (&buffer
, g
, spc
, flags
);
128 /* Print the GIMPLE sequence SEQ on BUFFER using SPC indentation
129 spaces and FLAGS as in pp_gimple_stmt_1.
130 The caller is responsible for calling pp_flush on BUFFER to finalize
131 the pretty printer. */
134 dump_gimple_seq (pretty_printer
*buffer
, gimple_seq seq
, int spc
, int flags
)
136 gimple_stmt_iterator i
;
138 for (i
= gsi_start (seq
); !gsi_end_p (i
); gsi_next (&i
))
140 gimple gs
= gsi_stmt (i
);
142 pp_gimple_stmt_1 (buffer
, gs
, spc
, flags
);
143 if (!gsi_one_before_end_p (i
))
149 /* Print GIMPLE sequence SEQ to FILE using SPC indentation spaces and
150 FLAGS as in pp_gimple_stmt_1. */
153 print_gimple_seq (FILE *file
, gimple_seq seq
, int spc
, int flags
)
155 pretty_printer buffer
;
156 pp_needs_newline (&buffer
) = true;
157 buffer
.buffer
->stream
= file
;
158 dump_gimple_seq (&buffer
, seq
, spc
, flags
);
159 pp_newline_and_flush (&buffer
);
163 /* Print the GIMPLE sequence SEQ on stderr. */
166 debug_gimple_seq (gimple_seq seq
)
168 print_gimple_seq (stderr
, seq
, 0, TDF_VOPS
|TDF_MEMSYMS
);
172 /* A simple helper to pretty-print some of the gimple tuples in the printf
173 style. The format modifiers are preceded by '%' and are:
174 'G' - outputs a string corresponding to the code of the given gimple,
175 'S' - outputs a gimple_seq with indent of spc + 2,
176 'T' - outputs the tree t,
177 'd' - outputs an int as a decimal,
178 's' - outputs a string,
179 'n' - outputs a newline,
180 'x' - outputs an int as hexadecimal,
181 '+' - increases indent by 2 then outputs a newline,
182 '-' - decreases indent by 2 then outputs a newline. */
185 dump_gimple_fmt (pretty_printer
*buffer
, int spc
, int flags
,
186 const char *fmt
, ...)
192 va_start (args
, fmt
);
193 for (c
= fmt
; *c
; c
++)
203 g
= va_arg (args
, gimple
);
204 tmp
= gimple_code_name
[gimple_code (g
)];
205 pp_string (buffer
, tmp
);
209 seq
= va_arg (args
, gimple_seq
);
211 dump_gimple_seq (buffer
, seq
, spc
+ 2, flags
);
212 newline_and_indent (buffer
, spc
);
216 t
= va_arg (args
, tree
);
218 pp_string (buffer
, "NULL");
220 dump_generic_node (buffer
, t
, spc
, flags
, false);
224 pp_decimal_int (buffer
, va_arg (args
, int));
228 pp_string (buffer
, va_arg (args
, char *));
232 newline_and_indent (buffer
, spc
);
236 pp_scalar (buffer
, "%x", va_arg (args
, int));
241 newline_and_indent (buffer
, spc
);
246 newline_and_indent (buffer
, spc
);
254 pp_character (buffer
, *c
);
260 /* Helper for dump_gimple_assign. Print the unary RHS of the
261 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
264 dump_unary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
, int flags
)
266 enum tree_code rhs_code
= gimple_assign_rhs_code (gs
);
267 tree lhs
= gimple_assign_lhs (gs
);
268 tree rhs
= gimple_assign_rhs1 (gs
);
272 case VIEW_CONVERT_EXPR
:
274 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
277 case FIXED_CONVERT_EXPR
:
278 case ADDR_SPACE_CONVERT_EXPR
:
282 pp_left_paren (buffer
);
283 dump_generic_node (buffer
, TREE_TYPE (lhs
), spc
, flags
, false);
284 pp_string (buffer
, ") ");
285 if (op_prio (rhs
) < op_code_prio (rhs_code
))
287 pp_left_paren (buffer
);
288 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
289 pp_right_paren (buffer
);
292 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
296 pp_string (buffer
, "((");
297 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
298 pp_string (buffer
, "))");
302 pp_string (buffer
, "ABS_EXPR <");
303 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
308 if (TREE_CODE_CLASS (rhs_code
) == tcc_declaration
309 || TREE_CODE_CLASS (rhs_code
) == tcc_constant
310 || TREE_CODE_CLASS (rhs_code
) == tcc_reference
311 || rhs_code
== SSA_NAME
312 || rhs_code
== ADDR_EXPR
313 || rhs_code
== CONSTRUCTOR
)
315 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
318 else if (rhs_code
== BIT_NOT_EXPR
)
319 pp_complement (buffer
);
320 else if (rhs_code
== TRUTH_NOT_EXPR
)
321 pp_exclamation (buffer
);
322 else if (rhs_code
== NEGATE_EXPR
)
326 pp_left_bracket (buffer
);
327 pp_string (buffer
, get_tree_code_name (rhs_code
));
328 pp_string (buffer
, "] ");
331 if (op_prio (rhs
) < op_code_prio (rhs_code
))
333 pp_left_paren (buffer
);
334 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
335 pp_right_paren (buffer
);
338 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
344 /* Helper for dump_gimple_assign. Print the binary RHS of the
345 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
348 dump_binary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
, int flags
)
351 enum tree_code code
= gimple_assign_rhs_code (gs
);
357 case VEC_WIDEN_MULT_HI_EXPR
:
358 case VEC_WIDEN_MULT_LO_EXPR
:
359 case VEC_WIDEN_MULT_EVEN_EXPR
:
360 case VEC_WIDEN_MULT_ODD_EXPR
:
361 case VEC_PACK_TRUNC_EXPR
:
362 case VEC_PACK_SAT_EXPR
:
363 case VEC_PACK_FIX_TRUNC_EXPR
:
364 case VEC_WIDEN_LSHIFT_HI_EXPR
:
365 case VEC_WIDEN_LSHIFT_LO_EXPR
:
366 for (p
= get_tree_code_name (code
); *p
; p
++)
367 pp_character (buffer
, TOUPPER (*p
));
368 pp_string (buffer
, " <");
369 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
370 pp_string (buffer
, ", ");
371 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
376 if (op_prio (gimple_assign_rhs1 (gs
)) <= op_code_prio (code
))
378 pp_left_paren (buffer
);
379 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
,
381 pp_right_paren (buffer
);
384 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
386 pp_string (buffer
, op_symbol_code (gimple_assign_rhs_code (gs
)));
388 if (op_prio (gimple_assign_rhs2 (gs
)) <= op_code_prio (code
))
390 pp_left_paren (buffer
);
391 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
,
393 pp_right_paren (buffer
);
396 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
400 /* Helper for dump_gimple_assign. Print the ternary RHS of the
401 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
404 dump_ternary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
, int flags
)
407 enum tree_code code
= gimple_assign_rhs_code (gs
);
410 case WIDEN_MULT_PLUS_EXPR
:
411 case WIDEN_MULT_MINUS_EXPR
:
412 for (p
= get_tree_code_name (code
); *p
; p
++)
413 pp_character (buffer
, TOUPPER (*p
));
414 pp_string (buffer
, " <");
415 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
416 pp_string (buffer
, ", ");
417 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
418 pp_string (buffer
, ", ");
419 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
424 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
425 pp_string (buffer
, " * ");
426 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
427 pp_string (buffer
, " + ");
428 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
432 pp_string (buffer
, "DOT_PROD_EXPR <");
433 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
434 pp_string (buffer
, ", ");
435 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
436 pp_string (buffer
, ", ");
437 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
442 pp_string (buffer
, "SAD_EXPR <");
443 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
444 pp_string (buffer
, ", ");
445 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
446 pp_string (buffer
, ", ");
447 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
452 pp_string (buffer
, "VEC_PERM_EXPR <");
453 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
454 pp_string (buffer
, ", ");
455 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
456 pp_string (buffer
, ", ");
457 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
461 case REALIGN_LOAD_EXPR
:
462 pp_string (buffer
, "REALIGN_LOAD <");
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_string (buffer
, ", ");
467 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
472 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
473 pp_string (buffer
, " ? ");
474 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
475 pp_string (buffer
, " : ");
476 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
480 pp_string (buffer
, "VEC_COND_EXPR <");
481 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
482 pp_string (buffer
, ", ");
483 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
484 pp_string (buffer
, ", ");
485 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
495 /* Dump the gimple assignment GS. BUFFER, SPC and FLAGS are as in
499 dump_gimple_assign (pretty_printer
*buffer
, gassign
*gs
, int spc
, int flags
)
506 switch (gimple_num_ops (gs
))
509 arg3
= gimple_assign_rhs3 (gs
);
511 arg2
= gimple_assign_rhs2 (gs
);
513 arg1
= gimple_assign_rhs1 (gs
);
519 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%s, %T, %T, %T, %T>", gs
,
520 get_tree_code_name (gimple_assign_rhs_code (gs
)),
521 gimple_assign_lhs (gs
), arg1
, arg2
, arg3
);
525 if (!(flags
& TDF_RHS_ONLY
))
527 dump_generic_node (buffer
, gimple_assign_lhs (gs
), spc
, flags
, false);
531 if (gimple_assign_nontemporal_move_p (gs
))
532 pp_string (buffer
, "{nt}");
534 if (gimple_has_volatile_ops (gs
))
535 pp_string (buffer
, "{v}");
540 if (gimple_num_ops (gs
) == 2)
541 dump_unary_rhs (buffer
, gs
, spc
, flags
);
542 else if (gimple_num_ops (gs
) == 3)
543 dump_binary_rhs (buffer
, gs
, spc
, flags
);
544 else if (gimple_num_ops (gs
) == 4)
545 dump_ternary_rhs (buffer
, gs
, spc
, flags
);
548 if (!(flags
& TDF_RHS_ONLY
))
549 pp_semicolon (buffer
);
554 /* Dump the return statement GS. BUFFER, SPC and FLAGS are as in
558 dump_gimple_return (pretty_printer
*buffer
, greturn
*gs
, int spc
, int flags
)
562 t
= gimple_return_retval (gs
);
564 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, t
);
567 pp_string (buffer
, "return");
571 dump_generic_node (buffer
, t
, spc
, flags
, false);
573 pp_semicolon (buffer
);
578 /* Dump the call arguments for a gimple call. BUFFER, FLAGS are as in
582 dump_gimple_call_args (pretty_printer
*buffer
, gcall
*gs
, int flags
)
586 for (i
= 0; i
< gimple_call_num_args (gs
); i
++)
588 dump_generic_node (buffer
, gimple_call_arg (gs
, i
), 0, flags
, false);
589 if (i
< gimple_call_num_args (gs
) - 1)
590 pp_string (buffer
, ", ");
593 if (gimple_call_va_arg_pack_p (gs
))
595 if (gimple_call_num_args (gs
) > 0)
601 pp_string (buffer
, "__builtin_va_arg_pack ()");
605 /* Dump the points-to solution *PT to BUFFER. */
608 pp_points_to_solution (pretty_printer
*buffer
, struct pt_solution
*pt
)
612 pp_string (buffer
, "anything ");
616 pp_string (buffer
, "nonlocal ");
618 pp_string (buffer
, "escaped ");
620 pp_string (buffer
, "unit-escaped ");
622 pp_string (buffer
, "null ");
624 && !bitmap_empty_p (pt
->vars
))
628 pp_string (buffer
, "{ ");
629 EXECUTE_IF_SET_IN_BITMAP (pt
->vars
, 0, i
, bi
)
631 pp_string (buffer
, "D.");
632 pp_decimal_int (buffer
, i
);
635 pp_right_brace (buffer
);
636 if (pt
->vars_contains_nonlocal
637 && pt
->vars_contains_escaped_heap
)
638 pp_string (buffer
, " (nonlocal, escaped heap)");
639 else if (pt
->vars_contains_nonlocal
640 && pt
->vars_contains_escaped
)
641 pp_string (buffer
, " (nonlocal, escaped)");
642 else if (pt
->vars_contains_nonlocal
)
643 pp_string (buffer
, " (nonlocal)");
644 else if (pt
->vars_contains_escaped_heap
)
645 pp_string (buffer
, " (escaped heap)");
646 else if (pt
->vars_contains_escaped
)
647 pp_string (buffer
, " (escaped)");
651 /* Dump the call statement GS. BUFFER, SPC and FLAGS are as in
655 dump_gimple_call (pretty_printer
*buffer
, gcall
*gs
, int spc
, int flags
)
657 tree lhs
= gimple_call_lhs (gs
);
658 tree fn
= gimple_call_fn (gs
);
660 if (flags
& TDF_ALIAS
)
662 struct pt_solution
*pt
;
663 pt
= gimple_call_use_set (gs
);
664 if (!pt_solution_empty_p (pt
))
666 pp_string (buffer
, "# USE = ");
667 pp_points_to_solution (buffer
, pt
);
668 newline_and_indent (buffer
, spc
);
670 pt
= gimple_call_clobber_set (gs
);
671 if (!pt_solution_empty_p (pt
))
673 pp_string (buffer
, "# CLB = ");
674 pp_points_to_solution (buffer
, pt
);
675 newline_and_indent (buffer
, spc
);
681 if (gimple_call_internal_p (gs
))
682 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%s, %T", gs
,
683 internal_fn_name (gimple_call_internal_fn (gs
)), lhs
);
685 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T", gs
, fn
, lhs
);
686 if (gimple_call_num_args (gs
) > 0)
688 pp_string (buffer
, ", ");
689 dump_gimple_call_args (buffer
, gs
, flags
);
695 if (lhs
&& !(flags
& TDF_RHS_ONLY
))
697 dump_generic_node (buffer
, lhs
, spc
, flags
, false);
698 pp_string (buffer
, " =");
700 if (gimple_has_volatile_ops (gs
))
701 pp_string (buffer
, "{v}");
705 if (gimple_call_internal_p (gs
))
706 pp_string (buffer
, internal_fn_name (gimple_call_internal_fn (gs
)));
708 print_call_name (buffer
, fn
, flags
);
709 pp_string (buffer
, " (");
710 dump_gimple_call_args (buffer
, gs
, flags
);
711 pp_right_paren (buffer
);
712 if (!(flags
& TDF_RHS_ONLY
))
713 pp_semicolon (buffer
);
716 if (gimple_call_chain (gs
))
718 pp_string (buffer
, " [static-chain: ");
719 dump_generic_node (buffer
, gimple_call_chain (gs
), spc
, flags
, false);
720 pp_right_bracket (buffer
);
723 if (gimple_call_return_slot_opt_p (gs
))
724 pp_string (buffer
, " [return slot optimization]");
725 if (gimple_call_tail_p (gs
))
726 pp_string (buffer
, " [tail call]");
731 /* Dump the arguments of _ITM_beginTransaction sanely. */
732 if (TREE_CODE (fn
) == ADDR_EXPR
)
733 fn
= TREE_OPERAND (fn
, 0);
734 if (TREE_CODE (fn
) == FUNCTION_DECL
&& decl_is_tm_clone (fn
))
735 pp_string (buffer
, " [tm-clone]");
736 if (TREE_CODE (fn
) == FUNCTION_DECL
737 && DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_NORMAL
738 && DECL_FUNCTION_CODE (fn
) == BUILT_IN_TM_START
739 && gimple_call_num_args (gs
) > 0)
741 tree t
= gimple_call_arg (gs
, 0);
742 unsigned HOST_WIDE_INT props
;
743 gcc_assert (TREE_CODE (t
) == INTEGER_CST
);
745 pp_string (buffer
, " [ ");
747 /* Get the transaction code properties. */
748 props
= TREE_INT_CST_LOW (t
);
750 if (props
& PR_INSTRUMENTEDCODE
)
751 pp_string (buffer
, "instrumentedCode ");
752 if (props
& PR_UNINSTRUMENTEDCODE
)
753 pp_string (buffer
, "uninstrumentedCode ");
754 if (props
& PR_HASNOXMMUPDATE
)
755 pp_string (buffer
, "hasNoXMMUpdate ");
756 if (props
& PR_HASNOABORT
)
757 pp_string (buffer
, "hasNoAbort ");
758 if (props
& PR_HASNOIRREVOCABLE
)
759 pp_string (buffer
, "hasNoIrrevocable ");
760 if (props
& PR_DOESGOIRREVOCABLE
)
761 pp_string (buffer
, "doesGoIrrevocable ");
762 if (props
& PR_HASNOSIMPLEREADS
)
763 pp_string (buffer
, "hasNoSimpleReads ");
764 if (props
& PR_AWBARRIERSOMITTED
)
765 pp_string (buffer
, "awBarriersOmitted ");
766 if (props
& PR_RARBARRIERSOMITTED
)
767 pp_string (buffer
, "RaRBarriersOmitted ");
768 if (props
& PR_UNDOLOGCODE
)
769 pp_string (buffer
, "undoLogCode ");
770 if (props
& PR_PREFERUNINSTRUMENTED
)
771 pp_string (buffer
, "preferUninstrumented ");
772 if (props
& PR_EXCEPTIONBLOCK
)
773 pp_string (buffer
, "exceptionBlock ");
774 if (props
& PR_HASELSE
)
775 pp_string (buffer
, "hasElse ");
776 if (props
& PR_READONLY
)
777 pp_string (buffer
, "readOnly ");
779 pp_right_bracket (buffer
);
784 /* Dump the switch statement GS. BUFFER, SPC and FLAGS are as in
788 dump_gimple_switch (pretty_printer
*buffer
, gswitch
*gs
, int spc
,
793 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
795 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, ", gs
,
796 gimple_switch_index (gs
));
799 pp_string (buffer
, "switch (");
800 dump_generic_node (buffer
, gimple_switch_index (gs
), spc
, flags
, true);
801 pp_string (buffer
, ") <");
804 for (i
= 0; i
< gimple_switch_num_labels (gs
); i
++)
806 tree case_label
= gimple_switch_label (gs
, i
);
807 gcc_checking_assert (case_label
!= NULL_TREE
);
808 dump_generic_node (buffer
, case_label
, spc
, flags
, false);
810 dump_generic_node (buffer
, CASE_LABEL (case_label
), spc
, flags
, false);
811 if (i
< gimple_switch_num_labels (gs
) - 1)
812 pp_string (buffer
, ", ");
818 /* Dump the gimple conditional GS. BUFFER, SPC and FLAGS are as in
822 dump_gimple_cond (pretty_printer
*buffer
, gcond
*gs
, int spc
, int flags
)
825 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%s, %T, %T, %T, %T>", gs
,
826 get_tree_code_name (gimple_cond_code (gs
)),
827 gimple_cond_lhs (gs
), gimple_cond_rhs (gs
),
828 gimple_cond_true_label (gs
), gimple_cond_false_label (gs
));
831 if (!(flags
& TDF_RHS_ONLY
))
832 pp_string (buffer
, "if (");
833 dump_generic_node (buffer
, gimple_cond_lhs (gs
), spc
, flags
, false);
835 pp_string (buffer
, op_symbol_code (gimple_cond_code (gs
)));
837 dump_generic_node (buffer
, gimple_cond_rhs (gs
), spc
, flags
, false);
838 if (!(flags
& TDF_RHS_ONLY
))
840 pp_right_paren (buffer
);
842 if (gimple_cond_true_label (gs
))
844 pp_string (buffer
, " goto ");
845 dump_generic_node (buffer
, gimple_cond_true_label (gs
),
847 pp_semicolon (buffer
);
849 if (gimple_cond_false_label (gs
))
851 pp_string (buffer
, " else goto ");
852 dump_generic_node (buffer
, gimple_cond_false_label (gs
),
854 pp_semicolon (buffer
);
861 /* Dump a GIMPLE_LABEL tuple on the pretty_printer BUFFER, SPC
862 spaces of indent. FLAGS specifies details to show in the dump (see
863 TDF_* in dumpfils.h). */
866 dump_gimple_label (pretty_printer
*buffer
, glabel
*gs
, int spc
, int flags
)
868 tree label
= gimple_label_label (gs
);
870 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, label
);
873 dump_generic_node (buffer
, label
, spc
, flags
, false);
876 if (DECL_NONLOCAL (label
))
877 pp_string (buffer
, " [non-local]");
878 if ((flags
& TDF_EH
) && EH_LANDING_PAD_NR (label
))
879 pp_printf (buffer
, " [LP %d]", EH_LANDING_PAD_NR (label
));
882 /* Dump a GIMPLE_GOTO tuple on the pretty_printer BUFFER, SPC
883 spaces of indent. FLAGS specifies details to show in the dump (see
884 TDF_* in dumpfile.h). */
887 dump_gimple_goto (pretty_printer
*buffer
, ggoto
*gs
, int spc
, int flags
)
889 tree label
= gimple_goto_dest (gs
);
891 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, label
);
893 dump_gimple_fmt (buffer
, spc
, flags
, "goto %T;", label
);
897 /* Dump a GIMPLE_BIND tuple on the pretty_printer BUFFER, SPC
898 spaces of indent. FLAGS specifies details to show in the dump (see
899 TDF_* in dumpfile.h). */
902 dump_gimple_bind (pretty_printer
*buffer
, gbind
*gs
, int spc
, int flags
)
905 dump_gimple_fmt (buffer
, spc
, flags
, "%G <", gs
);
907 pp_left_brace (buffer
);
908 if (!(flags
& TDF_SLIM
))
912 for (var
= gimple_bind_vars (gs
); var
; var
= DECL_CHAIN (var
))
914 newline_and_indent (buffer
, 2);
915 print_declaration (buffer
, var
, spc
, flags
);
917 if (gimple_bind_vars (gs
))
921 dump_gimple_seq (buffer
, gimple_bind_body (gs
), spc
+ 2, flags
);
922 newline_and_indent (buffer
, spc
);
926 pp_right_brace (buffer
);
930 /* Dump a GIMPLE_TRY tuple on the pretty_printer BUFFER, SPC spaces of
931 indent. FLAGS specifies details to show in the dump (see TDF_* in
935 dump_gimple_try (pretty_printer
*buffer
, gtry
*gs
, int spc
, int flags
)
940 if (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
)
941 type
= "GIMPLE_TRY_CATCH";
942 else if (gimple_try_kind (gs
) == GIMPLE_TRY_FINALLY
)
943 type
= "GIMPLE_TRY_FINALLY";
945 type
= "UNKNOWN GIMPLE_TRY";
946 dump_gimple_fmt (buffer
, spc
, flags
,
947 "%G <%s,%+EVAL <%S>%nCLEANUP <%S>%->", gs
, type
,
948 gimple_try_eval (gs
), gimple_try_cleanup (gs
));
952 pp_string (buffer
, "try");
953 newline_and_indent (buffer
, spc
+ 2);
954 pp_left_brace (buffer
);
957 dump_gimple_seq (buffer
, gimple_try_eval (gs
), spc
+ 4, flags
);
958 newline_and_indent (buffer
, spc
+ 2);
959 pp_right_brace (buffer
);
961 if (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
)
963 newline_and_indent (buffer
, spc
);
964 pp_string (buffer
, "catch");
965 newline_and_indent (buffer
, spc
+ 2);
966 pp_left_brace (buffer
);
968 else if (gimple_try_kind (gs
) == GIMPLE_TRY_FINALLY
)
970 newline_and_indent (buffer
, spc
);
971 pp_string (buffer
, "finally");
972 newline_and_indent (buffer
, spc
+ 2);
973 pp_left_brace (buffer
);
976 pp_string (buffer
, " <UNKNOWN GIMPLE_TRY> {");
979 dump_gimple_seq (buffer
, gimple_try_cleanup (gs
), spc
+ 4, flags
);
980 newline_and_indent (buffer
, spc
+ 2);
981 pp_right_brace (buffer
);
986 /* Dump a GIMPLE_CATCH tuple on the pretty_printer BUFFER, SPC spaces of
987 indent. FLAGS specifies details to show in the dump (see TDF_* in
991 dump_gimple_catch (pretty_printer
*buffer
, gcatch
*gs
, int spc
, int flags
)
994 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %+CATCH <%S>%->", gs
,
995 gimple_catch_types (gs
), gimple_catch_handler (gs
));
997 dump_gimple_fmt (buffer
, spc
, flags
, "catch (%T)%+{%S}",
998 gimple_catch_types (gs
), gimple_catch_handler (gs
));
1002 /* Dump a GIMPLE_EH_FILTER tuple on the pretty_printer BUFFER, SPC spaces of
1003 indent. FLAGS specifies details to show in the dump (see TDF_* in
1007 dump_gimple_eh_filter (pretty_printer
*buffer
, geh_filter
*gs
, int spc
,
1010 if (flags
& TDF_RAW
)
1011 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %+FAILURE <%S>%->", gs
,
1012 gimple_eh_filter_types (gs
),
1013 gimple_eh_filter_failure (gs
));
1015 dump_gimple_fmt (buffer
, spc
, flags
, "<<<eh_filter (%T)>>>%+{%+%S%-}",
1016 gimple_eh_filter_types (gs
),
1017 gimple_eh_filter_failure (gs
));
1021 /* Dump a GIMPLE_EH_MUST_NOT_THROW tuple. */
1024 dump_gimple_eh_must_not_throw (pretty_printer
*buffer
,
1025 geh_mnt
*gs
, int spc
, int flags
)
1027 if (flags
& TDF_RAW
)
1028 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
,
1029 gimple_eh_must_not_throw_fndecl (gs
));
1031 dump_gimple_fmt (buffer
, spc
, flags
, "<<<eh_must_not_throw (%T)>>>",
1032 gimple_eh_must_not_throw_fndecl (gs
));
1036 /* Dump a GIMPLE_EH_ELSE tuple on the pretty_printer BUFFER, SPC spaces of
1037 indent. FLAGS specifies details to show in the dump (see TDF_* in
1041 dump_gimple_eh_else (pretty_printer
*buffer
, geh_else
*gs
, int spc
,
1044 if (flags
& TDF_RAW
)
1045 dump_gimple_fmt (buffer
, spc
, flags
,
1046 "%G <%+N_BODY <%S>%nE_BODY <%S>%->", gs
,
1047 gimple_eh_else_n_body (gs
), gimple_eh_else_e_body (gs
));
1049 dump_gimple_fmt (buffer
, spc
, flags
,
1050 "<<<if_normal_exit>>>%+{%S}%-<<<else_eh_exit>>>%+{%S}",
1051 gimple_eh_else_n_body (gs
), gimple_eh_else_e_body (gs
));
1055 /* Dump a GIMPLE_RESX tuple on the pretty_printer BUFFER, SPC spaces of
1056 indent. FLAGS specifies details to show in the dump (see TDF_* in
1060 dump_gimple_resx (pretty_printer
*buffer
, gresx
*gs
, int spc
, int flags
)
1062 if (flags
& TDF_RAW
)
1063 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%d>", gs
,
1064 gimple_resx_region (gs
));
1066 dump_gimple_fmt (buffer
, spc
, flags
, "resx %d", gimple_resx_region (gs
));
1069 /* Dump a GIMPLE_EH_DISPATCH tuple on the pretty_printer BUFFER. */
1072 dump_gimple_eh_dispatch (pretty_printer
*buffer
, geh_dispatch
*gs
, int spc
, int flags
)
1074 if (flags
& TDF_RAW
)
1075 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%d>", gs
,
1076 gimple_eh_dispatch_region (gs
));
1078 dump_gimple_fmt (buffer
, spc
, flags
, "eh_dispatch %d",
1079 gimple_eh_dispatch_region (gs
));
1082 /* Dump a GIMPLE_DEBUG tuple on the pretty_printer BUFFER, SPC spaces
1083 of indent. FLAGS specifies details to show in the dump (see TDF_*
1087 dump_gimple_debug (pretty_printer
*buffer
, gdebug
*gs
, int spc
, int flags
)
1089 switch (gs
->subcode
)
1091 case GIMPLE_DEBUG_BIND
:
1092 if (flags
& TDF_RAW
)
1093 dump_gimple_fmt (buffer
, spc
, flags
, "%G BIND <%T, %T>", gs
,
1094 gimple_debug_bind_get_var (gs
),
1095 gimple_debug_bind_get_value (gs
));
1097 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG %T => %T",
1098 gimple_debug_bind_get_var (gs
),
1099 gimple_debug_bind_get_value (gs
));
1102 case GIMPLE_DEBUG_SOURCE_BIND
:
1103 if (flags
& TDF_RAW
)
1104 dump_gimple_fmt (buffer
, spc
, flags
, "%G SRCBIND <%T, %T>", gs
,
1105 gimple_debug_source_bind_get_var (gs
),
1106 gimple_debug_source_bind_get_value (gs
));
1108 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG %T s=> %T",
1109 gimple_debug_source_bind_get_var (gs
),
1110 gimple_debug_source_bind_get_value (gs
));
1118 /* Dump a GIMPLE_OMP_FOR tuple on the pretty_printer BUFFER. */
1120 dump_gimple_omp_for (pretty_printer
*buffer
, gomp_for
*gs
, int spc
, int flags
)
1124 if (flags
& TDF_RAW
)
1127 switch (gimple_omp_for_kind (gs
))
1129 case GF_OMP_FOR_KIND_FOR
:
1132 case GF_OMP_FOR_KIND_SIMD
:
1135 case GF_OMP_FOR_KIND_CILKSIMD
:
1138 case GF_OMP_FOR_KIND_DISTRIBUTE
:
1139 kind
= " distribute";
1141 case GF_OMP_FOR_KIND_CILKFOR
:
1142 kind
= " _Cilk_for";
1147 dump_gimple_fmt (buffer
, spc
, flags
, "%G%s <%+BODY <%S>%nCLAUSES <", gs
,
1148 kind
, gimple_omp_body (gs
));
1149 dump_omp_clauses (buffer
, gimple_omp_for_clauses (gs
), spc
, flags
);
1150 dump_gimple_fmt (buffer
, spc
, flags
, " >,");
1151 for (i
= 0; i
< gimple_omp_for_collapse (gs
); i
++)
1152 dump_gimple_fmt (buffer
, spc
, flags
,
1153 "%+%T, %T, %T, %s, %T,%n",
1154 gimple_omp_for_index (gs
, i
),
1155 gimple_omp_for_initial (gs
, i
),
1156 gimple_omp_for_final (gs
, i
),
1157 get_tree_code_name (gimple_omp_for_cond (gs
, i
)),
1158 gimple_omp_for_incr (gs
, i
));
1159 dump_gimple_fmt (buffer
, spc
, flags
, "PRE_BODY <%S>%->",
1160 gimple_omp_for_pre_body (gs
));
1164 switch (gimple_omp_for_kind (gs
))
1166 case GF_OMP_FOR_KIND_FOR
:
1167 pp_string (buffer
, "#pragma omp for");
1169 case GF_OMP_FOR_KIND_SIMD
:
1170 pp_string (buffer
, "#pragma omp simd");
1172 case GF_OMP_FOR_KIND_CILKSIMD
:
1173 pp_string (buffer
, "#pragma simd");
1175 case GF_OMP_FOR_KIND_DISTRIBUTE
:
1176 pp_string (buffer
, "#pragma omp distribute");
1178 case GF_OMP_FOR_KIND_CILKFOR
:
1183 if (gimple_omp_for_kind (gs
) != GF_OMP_FOR_KIND_CILKFOR
)
1184 dump_omp_clauses (buffer
, gimple_omp_for_clauses (gs
), spc
, flags
);
1185 for (i
= 0; i
< gimple_omp_for_collapse (gs
); i
++)
1189 if (gimple_omp_for_kind (gs
) == GF_OMP_FOR_KIND_CILKFOR
)
1190 pp_string (buffer
, "_Cilk_for (");
1193 newline_and_indent (buffer
, spc
);
1194 pp_string (buffer
, "for (");
1196 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1198 pp_string (buffer
, " = ");
1199 dump_generic_node (buffer
, gimple_omp_for_initial (gs
, i
), spc
,
1201 pp_string (buffer
, "; ");
1203 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1206 switch (gimple_omp_for_cond (gs
, i
))
1212 pp_greater (buffer
);
1215 pp_less_equal (buffer
);
1218 pp_greater_equal (buffer
);
1221 pp_string (buffer
, "!=");
1227 dump_generic_node (buffer
, gimple_omp_for_final (gs
, i
), spc
,
1229 pp_string (buffer
, "; ");
1231 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1233 pp_string (buffer
, " = ");
1234 dump_generic_node (buffer
, gimple_omp_for_incr (gs
, i
), spc
,
1236 pp_right_paren (buffer
);
1239 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1241 if (gimple_omp_for_kind (gs
) == GF_OMP_FOR_KIND_CILKFOR
)
1242 dump_omp_clauses (buffer
, gimple_omp_for_clauses (gs
), spc
, flags
);
1243 newline_and_indent (buffer
, spc
+ 2);
1244 pp_left_brace (buffer
);
1245 pp_newline (buffer
);
1246 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1247 newline_and_indent (buffer
, spc
+ 2);
1248 pp_right_brace (buffer
);
1253 /* Dump a GIMPLE_OMP_CONTINUE tuple on the pretty_printer BUFFER. */
1256 dump_gimple_omp_continue (pretty_printer
*buffer
, gomp_continue
*gs
,
1259 if (flags
& TDF_RAW
)
1261 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T>", gs
,
1262 gimple_omp_continue_control_def (gs
),
1263 gimple_omp_continue_control_use (gs
));
1267 pp_string (buffer
, "#pragma omp continue (");
1268 dump_generic_node (buffer
, gimple_omp_continue_control_def (gs
),
1272 dump_generic_node (buffer
, gimple_omp_continue_control_use (gs
),
1274 pp_right_paren (buffer
);
1278 /* Dump a GIMPLE_OMP_SINGLE tuple on the pretty_printer BUFFER. */
1281 dump_gimple_omp_single (pretty_printer
*buffer
, gomp_single
*gs
,
1284 if (flags
& TDF_RAW
)
1286 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1287 gimple_omp_body (gs
));
1288 dump_omp_clauses (buffer
, gimple_omp_single_clauses (gs
), spc
, flags
);
1289 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1293 pp_string (buffer
, "#pragma omp single");
1294 dump_omp_clauses (buffer
, gimple_omp_single_clauses (gs
), spc
, flags
);
1295 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1297 newline_and_indent (buffer
, spc
+ 2);
1298 pp_left_brace (buffer
);
1299 pp_newline (buffer
);
1300 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1301 newline_and_indent (buffer
, spc
+ 2);
1302 pp_right_brace (buffer
);
1307 /* Dump a GIMPLE_OMP_TARGET tuple on the pretty_printer BUFFER. */
1310 dump_gimple_omp_target (pretty_printer
*buffer
, gomp_target
*gs
,
1314 switch (gimple_omp_target_kind (gs
))
1316 case GF_OMP_TARGET_KIND_REGION
:
1319 case GF_OMP_TARGET_KIND_DATA
:
1322 case GF_OMP_TARGET_KIND_UPDATE
:
1328 if (flags
& TDF_RAW
)
1330 dump_gimple_fmt (buffer
, spc
, flags
, "%G%s <%+BODY <%S>%nCLAUSES <", gs
,
1331 kind
, gimple_omp_body (gs
));
1332 dump_omp_clauses (buffer
, gimple_omp_target_clauses (gs
), spc
, flags
);
1333 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1337 pp_string (buffer
, "#pragma omp target");
1338 pp_string (buffer
, kind
);
1339 dump_omp_clauses (buffer
, gimple_omp_target_clauses (gs
), spc
, flags
);
1340 if (gimple_omp_target_child_fn (gs
))
1342 pp_string (buffer
, " [child fn: ");
1343 dump_generic_node (buffer
, gimple_omp_target_child_fn (gs
),
1345 pp_right_bracket (buffer
);
1347 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1349 newline_and_indent (buffer
, spc
+ 2);
1350 pp_character (buffer
, '{');
1351 pp_newline (buffer
);
1352 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1353 newline_and_indent (buffer
, spc
+ 2);
1354 pp_character (buffer
, '}');
1359 /* Dump a GIMPLE_OMP_TEAMS tuple on the pretty_printer BUFFER. */
1362 dump_gimple_omp_teams (pretty_printer
*buffer
, gomp_teams
*gs
, int spc
,
1365 if (flags
& TDF_RAW
)
1367 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1368 gimple_omp_body (gs
));
1369 dump_omp_clauses (buffer
, gimple_omp_teams_clauses (gs
), spc
, flags
);
1370 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1374 pp_string (buffer
, "#pragma omp teams");
1375 dump_omp_clauses (buffer
, gimple_omp_teams_clauses (gs
), spc
, flags
);
1376 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1378 newline_and_indent (buffer
, spc
+ 2);
1379 pp_character (buffer
, '{');
1380 pp_newline (buffer
);
1381 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1382 newline_and_indent (buffer
, spc
+ 2);
1383 pp_character (buffer
, '}');
1388 /* Dump a GIMPLE_OMP_SECTIONS tuple on the pretty_printer BUFFER. */
1391 dump_gimple_omp_sections (pretty_printer
*buffer
, gomp_sections
*gs
,
1394 if (flags
& TDF_RAW
)
1396 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1397 gimple_omp_body (gs
));
1398 dump_omp_clauses (buffer
, gimple_omp_sections_clauses (gs
), spc
, flags
);
1399 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1403 pp_string (buffer
, "#pragma omp sections");
1404 if (gimple_omp_sections_control (gs
))
1406 pp_string (buffer
, " <");
1407 dump_generic_node (buffer
, gimple_omp_sections_control (gs
), spc
,
1409 pp_greater (buffer
);
1411 dump_omp_clauses (buffer
, gimple_omp_sections_clauses (gs
), spc
, flags
);
1412 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1414 newline_and_indent (buffer
, spc
+ 2);
1415 pp_left_brace (buffer
);
1416 pp_newline (buffer
);
1417 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1418 newline_and_indent (buffer
, spc
+ 2);
1419 pp_right_brace (buffer
);
1424 /* Dump a GIMPLE_OMP_{MASTER,TASKGROUP,ORDERED,SECTION} tuple on the
1425 pretty_printer BUFFER. */
1428 dump_gimple_omp_block (pretty_printer
*buffer
, gimple gs
, int spc
, int flags
)
1430 if (flags
& TDF_RAW
)
1431 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1432 gimple_omp_body (gs
));
1435 switch (gimple_code (gs
))
1437 case GIMPLE_OMP_MASTER
:
1438 pp_string (buffer
, "#pragma omp master");
1440 case GIMPLE_OMP_TASKGROUP
:
1441 pp_string (buffer
, "#pragma omp taskgroup");
1443 case GIMPLE_OMP_ORDERED
:
1444 pp_string (buffer
, "#pragma omp ordered");
1446 case GIMPLE_OMP_SECTION
:
1447 pp_string (buffer
, "#pragma omp section");
1452 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1454 newline_and_indent (buffer
, spc
+ 2);
1455 pp_left_brace (buffer
);
1456 pp_newline (buffer
);
1457 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1458 newline_and_indent (buffer
, spc
+ 2);
1459 pp_right_brace (buffer
);
1464 /* Dump a GIMPLE_OMP_CRITICAL tuple on the pretty_printer BUFFER. */
1467 dump_gimple_omp_critical (pretty_printer
*buffer
, gomp_critical
*gs
,
1470 if (flags
& TDF_RAW
)
1471 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1472 gimple_omp_body (gs
));
1475 pp_string (buffer
, "#pragma omp critical");
1476 if (gimple_omp_critical_name (gs
))
1478 pp_string (buffer
, " (");
1479 dump_generic_node (buffer
, gimple_omp_critical_name (gs
), spc
,
1481 pp_right_paren (buffer
);
1483 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1485 newline_and_indent (buffer
, spc
+ 2);
1486 pp_left_brace (buffer
);
1487 pp_newline (buffer
);
1488 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1489 newline_and_indent (buffer
, spc
+ 2);
1490 pp_right_brace (buffer
);
1495 /* Dump a GIMPLE_OMP_RETURN tuple on the pretty_printer BUFFER. */
1498 dump_gimple_omp_return (pretty_printer
*buffer
, gimple gs
, int spc
, int flags
)
1500 if (flags
& TDF_RAW
)
1502 dump_gimple_fmt (buffer
, spc
, flags
, "%G <nowait=%d", gs
,
1503 (int) gimple_omp_return_nowait_p (gs
));
1504 if (gimple_omp_return_lhs (gs
))
1505 dump_gimple_fmt (buffer
, spc
, flags
, ", lhs=%T>",
1506 gimple_omp_return_lhs (gs
));
1508 dump_gimple_fmt (buffer
, spc
, flags
, ">");
1512 pp_string (buffer
, "#pragma omp return");
1513 if (gimple_omp_return_nowait_p (gs
))
1514 pp_string (buffer
, "(nowait)");
1515 if (gimple_omp_return_lhs (gs
))
1517 pp_string (buffer
, " (set ");
1518 dump_generic_node (buffer
, gimple_omp_return_lhs (gs
),
1520 pp_character (buffer
, ')');
1525 /* Dump a GIMPLE_TRANSACTION tuple on the pretty_printer BUFFER. */
1528 dump_gimple_transaction (pretty_printer
*buffer
, gtransaction
*gs
,
1531 unsigned subcode
= gimple_transaction_subcode (gs
);
1533 if (flags
& TDF_RAW
)
1535 dump_gimple_fmt (buffer
, spc
, flags
,
1536 "%G [SUBCODE=%x,LABEL=%T] <%+BODY <%S> >",
1537 gs
, subcode
, gimple_transaction_label (gs
),
1538 gimple_transaction_body (gs
));
1542 if (subcode
& GTMA_IS_OUTER
)
1543 pp_string (buffer
, "__transaction_atomic [[outer]]");
1544 else if (subcode
& GTMA_IS_RELAXED
)
1545 pp_string (buffer
, "__transaction_relaxed");
1547 pp_string (buffer
, "__transaction_atomic");
1548 subcode
&= ~GTMA_DECLARATION_MASK
;
1550 if (subcode
|| gimple_transaction_label (gs
))
1552 pp_string (buffer
, " //");
1553 if (gimple_transaction_label (gs
))
1555 pp_string (buffer
, " LABEL=");
1556 dump_generic_node (buffer
, gimple_transaction_label (gs
),
1561 pp_string (buffer
, " SUBCODE=[ ");
1562 if (subcode
& GTMA_HAVE_ABORT
)
1564 pp_string (buffer
, "GTMA_HAVE_ABORT ");
1565 subcode
&= ~GTMA_HAVE_ABORT
;
1567 if (subcode
& GTMA_HAVE_LOAD
)
1569 pp_string (buffer
, "GTMA_HAVE_LOAD ");
1570 subcode
&= ~GTMA_HAVE_LOAD
;
1572 if (subcode
& GTMA_HAVE_STORE
)
1574 pp_string (buffer
, "GTMA_HAVE_STORE ");
1575 subcode
&= ~GTMA_HAVE_STORE
;
1577 if (subcode
& GTMA_MAY_ENTER_IRREVOCABLE
)
1579 pp_string (buffer
, "GTMA_MAY_ENTER_IRREVOCABLE ");
1580 subcode
&= ~GTMA_MAY_ENTER_IRREVOCABLE
;
1582 if (subcode
& GTMA_DOES_GO_IRREVOCABLE
)
1584 pp_string (buffer
, "GTMA_DOES_GO_IRREVOCABLE ");
1585 subcode
&= ~GTMA_DOES_GO_IRREVOCABLE
;
1587 if (subcode
& GTMA_HAS_NO_INSTRUMENTATION
)
1589 pp_string (buffer
, "GTMA_HAS_NO_INSTRUMENTATION ");
1590 subcode
&= ~GTMA_HAS_NO_INSTRUMENTATION
;
1593 pp_printf (buffer
, "0x%x ", subcode
);
1594 pp_right_bracket (buffer
);
1598 if (!gimple_seq_empty_p (gimple_transaction_body (gs
)))
1600 newline_and_indent (buffer
, spc
+ 2);
1601 pp_left_brace (buffer
);
1602 pp_newline (buffer
);
1603 dump_gimple_seq (buffer
, gimple_transaction_body (gs
),
1605 newline_and_indent (buffer
, spc
+ 2);
1606 pp_right_brace (buffer
);
1611 /* Dump a GIMPLE_ASM tuple on the pretty_printer BUFFER, SPC spaces of
1612 indent. FLAGS specifies details to show in the dump (see TDF_* in
1616 dump_gimple_asm (pretty_printer
*buffer
, gasm
*gs
, int spc
, int flags
)
1618 unsigned int i
, n
, f
, fields
;
1620 if (flags
& TDF_RAW
)
1622 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+STRING <%n%s%n>", gs
,
1623 gimple_asm_string (gs
));
1625 n
= gimple_asm_noutputs (gs
);
1628 newline_and_indent (buffer
, spc
+ 2);
1629 pp_string (buffer
, "OUTPUT: ");
1630 for (i
= 0; i
< n
; i
++)
1632 dump_generic_node (buffer
, gimple_asm_output_op (gs
, i
),
1635 pp_string (buffer
, ", ");
1639 n
= gimple_asm_ninputs (gs
);
1642 newline_and_indent (buffer
, spc
+ 2);
1643 pp_string (buffer
, "INPUT: ");
1644 for (i
= 0; i
< n
; i
++)
1646 dump_generic_node (buffer
, gimple_asm_input_op (gs
, i
),
1649 pp_string (buffer
, ", ");
1653 n
= gimple_asm_nclobbers (gs
);
1656 newline_and_indent (buffer
, spc
+ 2);
1657 pp_string (buffer
, "CLOBBER: ");
1658 for (i
= 0; i
< n
; i
++)
1660 dump_generic_node (buffer
, gimple_asm_clobber_op (gs
, i
),
1663 pp_string (buffer
, ", ");
1667 n
= gimple_asm_nlabels (gs
);
1670 newline_and_indent (buffer
, spc
+ 2);
1671 pp_string (buffer
, "LABEL: ");
1672 for (i
= 0; i
< n
; i
++)
1674 dump_generic_node (buffer
, gimple_asm_label_op (gs
, i
),
1677 pp_string (buffer
, ", ");
1681 newline_and_indent (buffer
, spc
);
1682 pp_greater (buffer
);
1686 pp_string (buffer
, "__asm__");
1687 if (gimple_asm_volatile_p (gs
))
1688 pp_string (buffer
, " __volatile__");
1689 if (gimple_asm_nlabels (gs
))
1690 pp_string (buffer
, " goto");
1691 pp_string (buffer
, "(\"");
1692 pp_string (buffer
, gimple_asm_string (gs
));
1693 pp_string (buffer
, "\"");
1695 if (gimple_asm_nlabels (gs
))
1697 else if (gimple_asm_nclobbers (gs
))
1699 else if (gimple_asm_ninputs (gs
))
1701 else if (gimple_asm_noutputs (gs
))
1706 for (f
= 0; f
< fields
; ++f
)
1708 pp_string (buffer
, " : ");
1713 n
= gimple_asm_noutputs (gs
);
1714 for (i
= 0; i
< n
; i
++)
1716 dump_generic_node (buffer
, gimple_asm_output_op (gs
, i
),
1719 pp_string (buffer
, ", ");
1724 n
= gimple_asm_ninputs (gs
);
1725 for (i
= 0; i
< n
; i
++)
1727 dump_generic_node (buffer
, gimple_asm_input_op (gs
, i
),
1730 pp_string (buffer
, ", ");
1735 n
= gimple_asm_nclobbers (gs
);
1736 for (i
= 0; i
< n
; i
++)
1738 dump_generic_node (buffer
, gimple_asm_clobber_op (gs
, i
),
1741 pp_string (buffer
, ", ");
1746 n
= gimple_asm_nlabels (gs
);
1747 for (i
= 0; i
< n
; i
++)
1749 dump_generic_node (buffer
, gimple_asm_label_op (gs
, i
),
1752 pp_string (buffer
, ", ");
1761 pp_string (buffer
, ");");
1765 /* Dump ptr_info and range_info for NODE on pretty_printer BUFFER with
1766 SPC spaces of indent. */
1769 dump_ssaname_info (pretty_printer
*buffer
, tree node
, int spc
)
1771 if (TREE_CODE (node
) != SSA_NAME
)
1774 if (POINTER_TYPE_P (TREE_TYPE (node
))
1775 && SSA_NAME_PTR_INFO (node
))
1777 unsigned int align
, misalign
;
1778 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (node
);
1779 pp_string (buffer
, "# PT = ");
1780 pp_points_to_solution (buffer
, &pi
->pt
);
1781 newline_and_indent (buffer
, spc
);
1782 if (get_ptr_info_alignment (pi
, &align
, &misalign
))
1784 pp_printf (buffer
, "# ALIGN = %u, MISALIGN = %u", align
, misalign
);
1785 newline_and_indent (buffer
, spc
);
1789 if (!POINTER_TYPE_P (TREE_TYPE (node
))
1790 && SSA_NAME_RANGE_INFO (node
))
1792 wide_int min
, max
, nonzero_bits
;
1793 value_range_type range_type
= get_range_info (node
, &min
, &max
);
1795 if (range_type
== VR_VARYING
)
1796 pp_printf (buffer
, "# RANGE VR_VARYING");
1797 else if (range_type
== VR_RANGE
|| range_type
== VR_ANTI_RANGE
)
1799 pp_printf (buffer
, "# RANGE ");
1800 pp_printf (buffer
, "%s[", range_type
== VR_RANGE
? "" : "~");
1801 pp_wide_int (buffer
, min
, TYPE_SIGN (TREE_TYPE (node
)));
1802 pp_printf (buffer
, ", ");
1803 pp_wide_int (buffer
, max
, TYPE_SIGN (TREE_TYPE (node
)));
1804 pp_printf (buffer
, "]");
1806 nonzero_bits
= get_nonzero_bits (node
);
1807 if (nonzero_bits
!= -1)
1809 pp_string (buffer
, " NONZERO ");
1810 pp_wide_int (buffer
, nonzero_bits
, UNSIGNED
);
1812 newline_and_indent (buffer
, spc
);
1817 /* Dump a PHI node PHI. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1.
1818 The caller is responsible for calling pp_flush on BUFFER to finalize
1819 pretty printer. If COMMENT is true, print this after #. */
1822 dump_gimple_phi (pretty_printer
*buffer
, gphi
*phi
, int spc
, bool comment
,
1826 tree lhs
= gimple_phi_result (phi
);
1828 if (flags
& TDF_ALIAS
)
1829 dump_ssaname_info (buffer
, lhs
, spc
);
1832 pp_string (buffer
, "# ");
1834 if (flags
& TDF_RAW
)
1835 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, ", phi
,
1836 gimple_phi_result (phi
));
1839 dump_generic_node (buffer
, lhs
, spc
, flags
, false);
1840 pp_string (buffer
, " = PHI <");
1842 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1844 if ((flags
& TDF_LINENO
) && gimple_phi_arg_has_location (phi
, i
))
1845 dump_location (buffer
, gimple_phi_arg_location (phi
, i
));
1846 dump_generic_node (buffer
, gimple_phi_arg_def (phi
, i
), spc
, flags
,
1848 pp_left_paren (buffer
);
1849 pp_decimal_int (buffer
, gimple_phi_arg_edge (phi
, i
)->src
->index
);
1850 pp_right_paren (buffer
);
1851 if (i
< gimple_phi_num_args (phi
) - 1)
1852 pp_string (buffer
, ", ");
1854 pp_greater (buffer
);
1858 /* Dump a GIMPLE_OMP_PARALLEL tuple on the pretty_printer BUFFER, SPC spaces
1859 of indent. FLAGS specifies details to show in the dump (see TDF_* in
1863 dump_gimple_omp_parallel (pretty_printer
*buffer
, gomp_parallel
*gs
,
1866 if (flags
& TDF_RAW
)
1868 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1869 gimple_omp_body (gs
));
1870 dump_omp_clauses (buffer
, gimple_omp_parallel_clauses (gs
), spc
, flags
);
1871 dump_gimple_fmt (buffer
, spc
, flags
, " >, %T, %T%n>",
1872 gimple_omp_parallel_child_fn (gs
),
1873 gimple_omp_parallel_data_arg (gs
));
1878 pp_string (buffer
, "#pragma omp parallel");
1879 dump_omp_clauses (buffer
, gimple_omp_parallel_clauses (gs
), spc
, flags
);
1880 if (gimple_omp_parallel_child_fn (gs
))
1882 pp_string (buffer
, " [child fn: ");
1883 dump_generic_node (buffer
, gimple_omp_parallel_child_fn (gs
),
1885 pp_string (buffer
, " (");
1886 if (gimple_omp_parallel_data_arg (gs
))
1887 dump_generic_node (buffer
, gimple_omp_parallel_data_arg (gs
),
1890 pp_string (buffer
, "???");
1891 pp_string (buffer
, ")]");
1893 body
= gimple_omp_body (gs
);
1894 if (body
&& gimple_code (gimple_seq_first_stmt (body
)) != GIMPLE_BIND
)
1896 newline_and_indent (buffer
, spc
+ 2);
1897 pp_left_brace (buffer
);
1898 pp_newline (buffer
);
1899 dump_gimple_seq (buffer
, body
, spc
+ 4, flags
);
1900 newline_and_indent (buffer
, spc
+ 2);
1901 pp_right_brace (buffer
);
1905 pp_newline (buffer
);
1906 dump_gimple_seq (buffer
, body
, spc
+ 2, flags
);
1912 /* Dump a GIMPLE_OMP_TASK tuple on the pretty_printer BUFFER, SPC spaces
1913 of indent. FLAGS specifies details to show in the dump (see TDF_* in
1917 dump_gimple_omp_task (pretty_printer
*buffer
, gomp_task
*gs
, int spc
,
1920 if (flags
& TDF_RAW
)
1922 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1923 gimple_omp_body (gs
));
1924 dump_omp_clauses (buffer
, gimple_omp_task_clauses (gs
), spc
, flags
);
1925 dump_gimple_fmt (buffer
, spc
, flags
, " >, %T, %T, %T, %T, %T%n>",
1926 gimple_omp_task_child_fn (gs
),
1927 gimple_omp_task_data_arg (gs
),
1928 gimple_omp_task_copy_fn (gs
),
1929 gimple_omp_task_arg_size (gs
),
1930 gimple_omp_task_arg_size (gs
));
1935 pp_string (buffer
, "#pragma omp task");
1936 dump_omp_clauses (buffer
, gimple_omp_task_clauses (gs
), spc
, flags
);
1937 if (gimple_omp_task_child_fn (gs
))
1939 pp_string (buffer
, " [child fn: ");
1940 dump_generic_node (buffer
, gimple_omp_task_child_fn (gs
),
1942 pp_string (buffer
, " (");
1943 if (gimple_omp_task_data_arg (gs
))
1944 dump_generic_node (buffer
, gimple_omp_task_data_arg (gs
),
1947 pp_string (buffer
, "???");
1948 pp_string (buffer
, ")]");
1950 body
= gimple_omp_body (gs
);
1951 if (body
&& gimple_code (gimple_seq_first_stmt (body
)) != GIMPLE_BIND
)
1953 newline_and_indent (buffer
, spc
+ 2);
1954 pp_left_brace (buffer
);
1955 pp_newline (buffer
);
1956 dump_gimple_seq (buffer
, body
, spc
+ 4, flags
);
1957 newline_and_indent (buffer
, spc
+ 2);
1958 pp_right_brace (buffer
);
1962 pp_newline (buffer
);
1963 dump_gimple_seq (buffer
, body
, spc
+ 2, flags
);
1969 /* Dump a GIMPLE_OMP_ATOMIC_LOAD tuple on the pretty_printer BUFFER, SPC
1970 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
1974 dump_gimple_omp_atomic_load (pretty_printer
*buffer
, gomp_atomic_load
*gs
,
1977 if (flags
& TDF_RAW
)
1979 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T>", gs
,
1980 gimple_omp_atomic_load_lhs (gs
),
1981 gimple_omp_atomic_load_rhs (gs
));
1985 pp_string (buffer
, "#pragma omp atomic_load");
1986 if (gimple_omp_atomic_seq_cst_p (gs
))
1987 pp_string (buffer
, " seq_cst");
1988 if (gimple_omp_atomic_need_value_p (gs
))
1989 pp_string (buffer
, " [needed]");
1990 newline_and_indent (buffer
, spc
+ 2);
1991 dump_generic_node (buffer
, gimple_omp_atomic_load_lhs (gs
),
1997 dump_generic_node (buffer
, gimple_omp_atomic_load_rhs (gs
),
2002 /* Dump a GIMPLE_OMP_ATOMIC_STORE tuple on the pretty_printer BUFFER, SPC
2003 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2007 dump_gimple_omp_atomic_store (pretty_printer
*buffer
,
2008 gomp_atomic_store
*gs
, int spc
, int flags
)
2010 if (flags
& TDF_RAW
)
2012 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
,
2013 gimple_omp_atomic_store_val (gs
));
2017 pp_string (buffer
, "#pragma omp atomic_store ");
2018 if (gimple_omp_atomic_seq_cst_p (gs
))
2019 pp_string (buffer
, "seq_cst ");
2020 if (gimple_omp_atomic_need_value_p (gs
))
2021 pp_string (buffer
, "[needed] ");
2022 pp_left_paren (buffer
);
2023 dump_generic_node (buffer
, gimple_omp_atomic_store_val (gs
),
2025 pp_right_paren (buffer
);
2030 /* Dump all the memory operands for statement GS. BUFFER, SPC and
2031 FLAGS are as in pp_gimple_stmt_1. */
2034 dump_gimple_mem_ops (pretty_printer
*buffer
, gimple gs
, int spc
, int flags
)
2036 tree vdef
= gimple_vdef (gs
);
2037 tree vuse
= gimple_vuse (gs
);
2039 if (vdef
!= NULL_TREE
)
2041 pp_string (buffer
, "# ");
2042 dump_generic_node (buffer
, vdef
, spc
+ 2, flags
, false);
2043 pp_string (buffer
, " = VDEF <");
2044 dump_generic_node (buffer
, vuse
, spc
+ 2, flags
, false);
2045 pp_greater (buffer
);
2046 newline_and_indent (buffer
, spc
);
2048 else if (vuse
!= NULL_TREE
)
2050 pp_string (buffer
, "# VUSE <");
2051 dump_generic_node (buffer
, vuse
, spc
+ 2, flags
, false);
2052 pp_greater (buffer
);
2053 newline_and_indent (buffer
, spc
);
2058 /* Print the gimple statement GS on the pretty printer BUFFER, SPC
2059 spaces of indent. FLAGS specifies details to show in the dump (see
2060 TDF_* in dumpfile.h). The caller is responsible for calling
2061 pp_flush on BUFFER to finalize the pretty printer. */
2064 pp_gimple_stmt_1 (pretty_printer
*buffer
, gimple gs
, int spc
, int flags
)
2069 if (flags
& TDF_STMTADDR
)
2070 pp_printf (buffer
, "<&%p> ", (void *) gs
);
2072 if ((flags
& TDF_LINENO
) && gimple_has_location (gs
))
2073 dump_location (buffer
, gimple_location (gs
));
2077 int lp_nr
= lookup_stmt_eh_lp (gs
);
2079 pp_printf (buffer
, "[LP %d] ", lp_nr
);
2081 pp_printf (buffer
, "[MNT %d] ", -lp_nr
);
2084 if ((flags
& (TDF_VOPS
|TDF_MEMSYMS
))
2085 && gimple_has_mem_ops (gs
))
2086 dump_gimple_mem_ops (buffer
, gs
, spc
, flags
);
2088 if (gimple_has_lhs (gs
)
2089 && (flags
& TDF_ALIAS
))
2090 dump_ssaname_info (buffer
, gimple_get_lhs (gs
), spc
);
2092 switch (gimple_code (gs
))
2095 dump_gimple_asm (buffer
, as_a
<gasm
*> (gs
), spc
, flags
);
2099 dump_gimple_assign (buffer
, as_a
<gassign
*> (gs
), spc
, flags
);
2103 dump_gimple_bind (buffer
, as_a
<gbind
*> (gs
), spc
, flags
);
2107 dump_gimple_call (buffer
, as_a
<gcall
*> (gs
), spc
, flags
);
2111 dump_gimple_cond (buffer
, as_a
<gcond
*> (gs
), spc
, flags
);
2115 dump_gimple_label (buffer
, as_a
<glabel
*> (gs
), spc
, flags
);
2119 dump_gimple_goto (buffer
, as_a
<ggoto
*> (gs
), spc
, flags
);
2123 pp_string (buffer
, "GIMPLE_NOP");
2127 dump_gimple_return (buffer
, as_a
<greturn
*> (gs
), spc
, flags
);
2131 dump_gimple_switch (buffer
, as_a
<gswitch
*> (gs
), spc
, flags
);
2135 dump_gimple_try (buffer
, as_a
<gtry
*> (gs
), spc
, flags
);
2139 dump_gimple_phi (buffer
, as_a
<gphi
*> (gs
), spc
, false, flags
);
2142 case GIMPLE_OMP_PARALLEL
:
2143 dump_gimple_omp_parallel (buffer
, as_a
<gomp_parallel
*> (gs
), spc
,
2147 case GIMPLE_OMP_TASK
:
2148 dump_gimple_omp_task (buffer
, as_a
<gomp_task
*> (gs
), spc
, flags
);
2151 case GIMPLE_OMP_ATOMIC_LOAD
:
2152 dump_gimple_omp_atomic_load (buffer
, as_a
<gomp_atomic_load
*> (gs
),
2156 case GIMPLE_OMP_ATOMIC_STORE
:
2157 dump_gimple_omp_atomic_store (buffer
,
2158 as_a
<gomp_atomic_store
*> (gs
),
2162 case GIMPLE_OMP_FOR
:
2163 dump_gimple_omp_for (buffer
, as_a
<gomp_for
*> (gs
), spc
, flags
);
2166 case GIMPLE_OMP_CONTINUE
:
2167 dump_gimple_omp_continue (buffer
, as_a
<gomp_continue
*> (gs
), spc
,
2171 case GIMPLE_OMP_SINGLE
:
2172 dump_gimple_omp_single (buffer
, as_a
<gomp_single
*> (gs
), spc
,
2176 case GIMPLE_OMP_TARGET
:
2177 dump_gimple_omp_target (buffer
, as_a
<gomp_target
*> (gs
), spc
,
2181 case GIMPLE_OMP_TEAMS
:
2182 dump_gimple_omp_teams (buffer
, as_a
<gomp_teams
*> (gs
), spc
,
2186 case GIMPLE_OMP_RETURN
:
2187 dump_gimple_omp_return (buffer
, gs
, spc
, flags
);
2190 case GIMPLE_OMP_SECTIONS
:
2191 dump_gimple_omp_sections (buffer
, as_a
<gomp_sections
*> (gs
),
2195 case GIMPLE_OMP_SECTIONS_SWITCH
:
2196 pp_string (buffer
, "GIMPLE_SECTIONS_SWITCH");
2199 case GIMPLE_OMP_MASTER
:
2200 case GIMPLE_OMP_TASKGROUP
:
2201 case GIMPLE_OMP_ORDERED
:
2202 case GIMPLE_OMP_SECTION
:
2203 dump_gimple_omp_block (buffer
, gs
, spc
, flags
);
2206 case GIMPLE_OMP_CRITICAL
:
2207 dump_gimple_omp_critical (buffer
, as_a
<gomp_critical
*> (gs
), spc
,
2212 dump_gimple_catch (buffer
, as_a
<gcatch
*> (gs
), spc
, flags
);
2215 case GIMPLE_EH_FILTER
:
2216 dump_gimple_eh_filter (buffer
, as_a
<geh_filter
*> (gs
), spc
, flags
);
2219 case GIMPLE_EH_MUST_NOT_THROW
:
2220 dump_gimple_eh_must_not_throw (buffer
,
2221 as_a
<geh_mnt
*> (gs
),
2225 case GIMPLE_EH_ELSE
:
2226 dump_gimple_eh_else (buffer
, as_a
<geh_else
*> (gs
), spc
, flags
);
2230 dump_gimple_resx (buffer
, as_a
<gresx
*> (gs
), spc
, flags
);
2233 case GIMPLE_EH_DISPATCH
:
2234 dump_gimple_eh_dispatch (buffer
, as_a
<geh_dispatch
*> (gs
), spc
,
2239 dump_gimple_debug (buffer
, as_a
<gdebug
*> (gs
), spc
, flags
);
2242 case GIMPLE_PREDICT
:
2243 pp_string (buffer
, "// predicted ");
2244 if (gimple_predict_outcome (gs
))
2245 pp_string (buffer
, "likely by ");
2247 pp_string (buffer
, "unlikely by ");
2248 pp_string (buffer
, predictor_name (gimple_predict_predictor (gs
)));
2249 pp_string (buffer
, " predictor.");
2252 case GIMPLE_TRANSACTION
:
2253 dump_gimple_transaction (buffer
, as_a
<gtransaction
*> (gs
), spc
,
2263 /* Dumps header of basic block BB to OUTF indented by INDENT
2264 spaces and details described by flags. */
2267 dump_gimple_bb_header (FILE *outf
, basic_block bb
, int indent
, int flags
)
2269 if (flags
& TDF_BLOCKS
)
2271 if (flags
& TDF_LINENO
)
2273 gimple_stmt_iterator gsi
;
2275 if (flags
& TDF_COMMENT
)
2276 fputs (";; ", outf
);
2278 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
2279 if (!is_gimple_debug (gsi_stmt (gsi
))
2280 && get_lineno (gsi_stmt (gsi
)) != UNKNOWN_LOCATION
)
2282 fprintf (outf
, "%*sstarting at line %d",
2283 indent
, "", get_lineno (gsi_stmt (gsi
)));
2286 if (bb
->discriminator
)
2287 fprintf (outf
, ", discriminator %i", bb
->discriminator
);
2293 gimple stmt
= first_stmt (bb
);
2294 if (!stmt
|| gimple_code (stmt
) != GIMPLE_LABEL
)
2295 fprintf (outf
, "%*s<bb %d>:\n", indent
, "", bb
->index
);
2300 /* Dumps end of basic block BB to buffer BUFFER indented by INDENT
2304 dump_gimple_bb_footer (FILE *outf ATTRIBUTE_UNUSED
,
2305 basic_block bb ATTRIBUTE_UNUSED
,
2306 int indent ATTRIBUTE_UNUSED
,
2307 int flags ATTRIBUTE_UNUSED
)
2309 /* There is currently no GIMPLE-specific basic block info to dump. */
2314 /* Dump PHI nodes of basic block BB to BUFFER with details described
2315 by FLAGS and indented by INDENT spaces. */
2318 dump_phi_nodes (pretty_printer
*buffer
, basic_block bb
, int indent
, int flags
)
2322 for (i
= gsi_start_phis (bb
); !gsi_end_p (i
); gsi_next (&i
))
2324 gphi
*phi
= i
.phi ();
2325 if (!virtual_operand_p (gimple_phi_result (phi
)) || (flags
& TDF_VOPS
))
2328 dump_gimple_phi (buffer
, phi
, indent
, true, flags
);
2329 pp_newline (buffer
);
2335 /* Dump jump to basic block BB that is represented implicitly in the cfg
2339 pp_cfg_jump (pretty_printer
*buffer
, basic_block bb
)
2343 stmt
= first_stmt (bb
);
2345 pp_string (buffer
, "goto <bb ");
2346 pp_decimal_int (buffer
, bb
->index
);
2347 pp_greater (buffer
);
2348 if (stmt
&& gimple_code (stmt
) == GIMPLE_LABEL
)
2350 pp_string (buffer
, " (");
2351 dump_generic_node (buffer
,
2352 gimple_label_label (as_a
<glabel
*> (stmt
)),
2354 pp_right_paren (buffer
);
2355 pp_semicolon (buffer
);
2358 pp_semicolon (buffer
);
2362 /* Dump edges represented implicitly in basic block BB to BUFFER, indented
2363 by INDENT spaces, with details given by FLAGS. */
2366 dump_implicit_edges (pretty_printer
*buffer
, basic_block bb
, int indent
,
2372 stmt
= last_stmt (bb
);
2374 if (stmt
&& gimple_code (stmt
) == GIMPLE_COND
)
2376 edge true_edge
, false_edge
;
2378 /* When we are emitting the code or changing CFG, it is possible that
2379 the edges are not yet created. When we are using debug_bb in such
2380 a situation, we do not want it to crash. */
2381 if (EDGE_COUNT (bb
->succs
) != 2)
2383 extract_true_false_edges_from_block (bb
, &true_edge
, &false_edge
);
2385 INDENT (indent
+ 2);
2386 pp_cfg_jump (buffer
, true_edge
->dest
);
2387 newline_and_indent (buffer
, indent
);
2388 pp_string (buffer
, "else");
2389 newline_and_indent (buffer
, indent
+ 2);
2390 pp_cfg_jump (buffer
, false_edge
->dest
);
2391 pp_newline (buffer
);
2395 /* If there is a fallthru edge, we may need to add an artificial
2396 goto to the dump. */
2397 e
= find_fallthru_edge (bb
->succs
);
2399 if (e
&& e
->dest
!= bb
->next_bb
)
2403 if ((flags
& TDF_LINENO
)
2404 && e
->goto_locus
!= UNKNOWN_LOCATION
)
2405 dump_location (buffer
, e
->goto_locus
);
2407 pp_cfg_jump (buffer
, e
->dest
);
2408 pp_newline (buffer
);
2413 /* Dumps basic block BB to buffer BUFFER with details described by FLAGS and
2414 indented by INDENT spaces. */
2417 gimple_dump_bb_buff (pretty_printer
*buffer
, basic_block bb
, int indent
,
2420 gimple_stmt_iterator gsi
;
2422 int label_indent
= indent
- 2;
2424 if (label_indent
< 0)
2427 dump_phi_nodes (buffer
, bb
, indent
, flags
);
2429 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
2433 stmt
= gsi_stmt (gsi
);
2435 curr_indent
= gimple_code (stmt
) == GIMPLE_LABEL
? label_indent
: indent
;
2437 INDENT (curr_indent
);
2438 pp_gimple_stmt_1 (buffer
, stmt
, curr_indent
, flags
);
2439 pp_newline_and_flush (buffer
);
2440 gcc_checking_assert (DECL_STRUCT_FUNCTION (current_function_decl
));
2441 dump_histograms_for_stmt (DECL_STRUCT_FUNCTION (current_function_decl
),
2442 pp_buffer (buffer
)->stream
, stmt
);
2445 dump_implicit_edges (buffer
, bb
, indent
, flags
);
2450 /* Dumps basic block BB to FILE with details described by FLAGS and
2451 indented by INDENT spaces. */
2454 gimple_dump_bb (FILE *file
, basic_block bb
, int indent
, int flags
)
2456 dump_gimple_bb_header (file
, bb
, indent
, flags
);
2457 if (bb
->index
>= NUM_FIXED_BLOCKS
)
2459 pretty_printer buffer
;
2460 pp_needs_newline (&buffer
) = true;
2461 buffer
.buffer
->stream
= file
;
2462 gimple_dump_bb_buff (&buffer
, bb
, indent
, flags
);
2464 dump_gimple_bb_footer (file
, bb
, indent
, flags
);
2467 /* Dumps basic block BB to pretty-printer PP with default dump flags and
2468 no indentation, for use as a label of a DOT graph record-node.
2469 ??? Should just use gimple_dump_bb_buff here, except that value profiling
2470 histogram dumping doesn't know about pretty-printers. */
2473 gimple_dump_bb_for_graph (pretty_printer
*pp
, basic_block bb
)
2475 pp_printf (pp
, "<bb %d>:\n", bb
->index
);
2476 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
2478 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
2481 gphi
*phi
= gsi
.phi ();
2482 if (!virtual_operand_p (gimple_phi_result (phi
))
2483 || (dump_flags
& TDF_VOPS
))
2486 pp_write_text_to_stream (pp
);
2487 pp_string (pp
, "# ");
2488 pp_gimple_stmt_1 (pp
, phi
, 0, dump_flags
);
2490 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
2494 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
2497 gimple stmt
= gsi_stmt (gsi
);
2499 pp_write_text_to_stream (pp
);
2500 pp_gimple_stmt_1 (pp
, stmt
, 0, dump_flags
);
2502 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
2504 dump_implicit_edges (pp
, bb
, 0, dump_flags
);
2505 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);