1 /* Pretty formatting of GIMPLE statements and expressions.
2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
3 Contributed by Aldy Hernandez <aldyh@redhat.com> and
4 Diego Novillo <dnovillo@google.com>
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"
29 #include "gimple-predict.h"
32 #include "gimple-pretty-print.h"
33 #include "internal-fn.h"
35 #include "gimple-iterator.h"
37 #include "dumpfile.h" /* for dump_flags */
38 #include "value-prof.h"
39 #include "trans-mem.h"
41 #include "stringpool.h"
46 /* Disable warnings about quoting issues in the pp_xxx calls below
47 that (intentionally) don't follow GCC diagnostic conventions. */
49 # pragma GCC diagnostic push
50 # pragma GCC diagnostic ignored "-Wformat-diag"
53 #define INDENT(SPACE) \
54 do { int i; for (i = 0; i < SPACE; i++) pp_space (buffer); } while (0)
56 #define GIMPLE_NIY do_niy (buffer,gs)
58 /* Try to print on BUFFER a default message for the unrecognized
59 gimple statement GS. */
62 do_niy (pretty_printer
*buffer
, gimple
*gs
)
64 pp_printf (buffer
, "<<< Unknown GIMPLE statement: %s >>>\n",
65 gimple_code_name
[(int) gimple_code (gs
)]);
69 /* Emit a newline and SPC indentation spaces to BUFFER. */
72 newline_and_indent (pretty_printer
*buffer
, int spc
)
79 /* Print the GIMPLE statement GS on stderr. */
82 debug_gimple_stmt (gimple
*gs
)
84 print_gimple_stmt (stderr
, gs
, 0, TDF_VOPS
|TDF_MEMSYMS
);
88 /* Return formatted string of a VALUE probability
89 (biased by REG_BR_PROB_BASE). Returned string is allocated
90 by xstrdup_for_dump. */
93 dump_profile (profile_count
&count
)
96 if (!count
.initialized_p ())
99 buf
= xasprintf ("[count: %" PRId64
"]",
100 count
.to_gcov_type ());
101 else if (count
.initialized_p ())
102 buf
= xasprintf ("[local count: %" PRId64
"]",
103 count
.to_gcov_type ());
105 const char *ret
= xstrdup_for_dump (buf
);
111 /* Return formatted string of a VALUE probability
112 (biased by REG_BR_PROB_BASE). Returned string is allocated
113 by xstrdup_for_dump. */
116 dump_probability (profile_probability probability
)
118 float minimum
= 0.01f
;
121 if (probability
.initialized_p ())
123 fvalue
= probability
.to_reg_br_prob_base () * 100.0f
/ REG_BR_PROB_BASE
;
124 if (fvalue
< minimum
&& probability
.to_reg_br_prob_base ())
129 if (probability
.initialized_p ())
130 buf
= xasprintf ("[%.2f%%]", fvalue
);
132 buf
= xasprintf ("[INV]");
134 const char *ret
= xstrdup_for_dump (buf
);
140 /* Dump E probability to BUFFER. */
143 dump_edge_probability (pretty_printer
*buffer
, edge e
)
145 pp_scalar (buffer
, " %s", dump_probability (e
->probability
));
148 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
149 FLAGS as in pp_gimple_stmt_1. */
152 print_gimple_stmt (FILE *file
, gimple
*g
, int spc
, dump_flags_t flags
)
154 pretty_printer buffer
;
155 pp_needs_newline (&buffer
) = true;
156 buffer
.buffer
->stream
= file
;
157 pp_gimple_stmt_1 (&buffer
, g
, spc
, flags
);
158 pp_newline_and_flush (&buffer
);
164 print_gimple_stmt (stderr
, &ref
, 0, TDF_NONE
);
173 fprintf (stderr
, "<nil>\n");
177 /* Print GIMPLE statement G to FILE using SPC indentation spaces and
178 FLAGS as in pp_gimple_stmt_1. Print only the right-hand side
182 print_gimple_expr (FILE *file
, gimple
*g
, int spc
, dump_flags_t flags
)
184 flags
|= TDF_RHS_ONLY
;
185 pretty_printer buffer
;
186 pp_needs_newline (&buffer
) = true;
187 buffer
.buffer
->stream
= file
;
188 pp_gimple_stmt_1 (&buffer
, g
, spc
, flags
);
193 /* Print the GIMPLE sequence SEQ on BUFFER using SPC indentation
194 spaces and FLAGS as in pp_gimple_stmt_1.
195 The caller is responsible for calling pp_flush on BUFFER to finalize
196 the pretty printer. */
199 dump_gimple_seq (pretty_printer
*buffer
, gimple_seq seq
, int spc
,
202 gimple_stmt_iterator i
;
204 for (i
= gsi_start (seq
); !gsi_end_p (i
); gsi_next (&i
))
206 gimple
*gs
= gsi_stmt (i
);
208 pp_gimple_stmt_1 (buffer
, gs
, spc
, flags
);
209 if (!gsi_one_before_end_p (i
))
215 /* Print GIMPLE sequence SEQ to FILE using SPC indentation spaces and
216 FLAGS as in pp_gimple_stmt_1. */
219 print_gimple_seq (FILE *file
, gimple_seq seq
, int spc
, dump_flags_t flags
)
221 pretty_printer buffer
;
222 pp_needs_newline (&buffer
) = true;
223 buffer
.buffer
->stream
= file
;
224 dump_gimple_seq (&buffer
, seq
, spc
, flags
);
225 pp_newline_and_flush (&buffer
);
229 /* Print the GIMPLE sequence SEQ on stderr. */
232 debug_gimple_seq (gimple_seq seq
)
234 print_gimple_seq (stderr
, seq
, 0, TDF_VOPS
|TDF_MEMSYMS
);
238 /* A simple helper to pretty-print some of the gimple tuples in the printf
239 style. The format modifiers are preceded by '%' and are:
240 'G' - outputs a string corresponding to the code of the given gimple,
241 'S' - outputs a gimple_seq with indent of spc + 2,
242 'T' - outputs the tree t,
243 'd' - outputs an int as a decimal,
244 's' - outputs a string,
245 'n' - outputs a newline,
246 'x' - outputs an int as hexadecimal,
247 '+' - increases indent by 2 then outputs a newline,
248 '-' - decreases indent by 2 then outputs a newline. */
251 dump_gimple_fmt (pretty_printer
*buffer
, int spc
, dump_flags_t flags
,
252 const char *fmt
, ...)
258 va_start (args
, fmt
);
259 for (c
= fmt
; *c
; c
++)
269 g
= va_arg (args
, gimple
*);
270 tmp
= gimple_code_name
[gimple_code (g
)];
271 pp_string (buffer
, tmp
);
275 seq
= va_arg (args
, gimple_seq
);
277 dump_gimple_seq (buffer
, seq
, spc
+ 2, flags
);
278 newline_and_indent (buffer
, spc
);
282 t
= va_arg (args
, tree
);
284 pp_string (buffer
, "NULL");
286 dump_generic_node (buffer
, t
, spc
, flags
, false);
290 pp_decimal_int (buffer
, va_arg (args
, int));
294 pp_string (buffer
, va_arg (args
, char *));
298 newline_and_indent (buffer
, spc
);
302 pp_scalar (buffer
, "%x", va_arg (args
, int));
307 newline_and_indent (buffer
, spc
);
312 newline_and_indent (buffer
, spc
);
320 pp_character (buffer
, *c
);
326 /* Helper for dump_gimple_assign. Print the unary RHS of the
327 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
330 dump_unary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
,
333 enum tree_code rhs_code
= gimple_assign_rhs_code (gs
);
334 tree lhs
= gimple_assign_lhs (gs
);
335 tree rhs
= gimple_assign_rhs1 (gs
);
339 case VIEW_CONVERT_EXPR
:
341 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
344 case FIXED_CONVERT_EXPR
:
345 case ADDR_SPACE_CONVERT_EXPR
:
349 pp_left_paren (buffer
);
350 dump_generic_node (buffer
, TREE_TYPE (lhs
), spc
, flags
, false);
351 pp_string (buffer
, ") ");
352 if (op_prio (rhs
) < op_code_prio (rhs_code
))
354 pp_left_paren (buffer
);
355 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
356 pp_right_paren (buffer
);
359 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
363 pp_string (buffer
, "((");
364 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
365 pp_string (buffer
, "))");
370 if (flags
& TDF_GIMPLE
)
373 rhs_code
== ABS_EXPR
? "__ABS " : "__ABSU ");
374 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
379 rhs_code
== ABS_EXPR
? "ABS_EXPR <" : "ABSU_EXPR <");
380 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
386 if (TREE_CODE_CLASS (rhs_code
) == tcc_declaration
387 || TREE_CODE_CLASS (rhs_code
) == tcc_constant
388 || TREE_CODE_CLASS (rhs_code
) == tcc_reference
389 || rhs_code
== SSA_NAME
390 || rhs_code
== ADDR_EXPR
391 || rhs_code
== CONSTRUCTOR
)
393 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
396 else if (rhs_code
== BIT_NOT_EXPR
)
397 pp_complement (buffer
);
398 else if (rhs_code
== TRUTH_NOT_EXPR
)
399 pp_exclamation (buffer
);
400 else if (rhs_code
== NEGATE_EXPR
)
404 pp_left_bracket (buffer
);
405 pp_string (buffer
, get_tree_code_name (rhs_code
));
406 pp_string (buffer
, "] ");
409 if (op_prio (rhs
) < op_code_prio (rhs_code
))
411 pp_left_paren (buffer
);
412 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
413 pp_right_paren (buffer
);
416 dump_generic_node (buffer
, rhs
, spc
, flags
, false);
422 /* Helper for dump_gimple_assign. Print the binary RHS of the
423 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
426 dump_binary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
,
430 enum tree_code code
= gimple_assign_rhs_code (gs
);
435 if (flags
& TDF_GIMPLE
)
437 pp_string (buffer
, code
== MIN_EXPR
? "__MIN (" : "__MAX (");
438 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
,
440 pp_string (buffer
, ", ");
441 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
,
443 pp_string (buffer
, ")");
449 case VEC_WIDEN_MULT_HI_EXPR
:
450 case VEC_WIDEN_MULT_LO_EXPR
:
451 case VEC_WIDEN_MULT_EVEN_EXPR
:
452 case VEC_WIDEN_MULT_ODD_EXPR
:
453 case VEC_PACK_TRUNC_EXPR
:
454 case VEC_PACK_SAT_EXPR
:
455 case VEC_PACK_FIX_TRUNC_EXPR
:
456 case VEC_PACK_FLOAT_EXPR
:
457 case VEC_WIDEN_LSHIFT_HI_EXPR
:
458 case VEC_WIDEN_LSHIFT_LO_EXPR
:
459 case VEC_SERIES_EXPR
:
460 for (p
= get_tree_code_name (code
); *p
; p
++)
461 pp_character (buffer
, TOUPPER (*p
));
462 pp_string (buffer
, " <");
463 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
464 pp_string (buffer
, ", ");
465 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
470 if (op_prio (gimple_assign_rhs1 (gs
)) <= op_code_prio (code
))
472 pp_left_paren (buffer
);
473 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
,
475 pp_right_paren (buffer
);
478 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
480 pp_string (buffer
, op_symbol_code (gimple_assign_rhs_code (gs
)));
482 if (op_prio (gimple_assign_rhs2 (gs
)) <= op_code_prio (code
))
484 pp_left_paren (buffer
);
485 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
,
487 pp_right_paren (buffer
);
490 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
494 /* Helper for dump_gimple_assign. Print the ternary RHS of the
495 assignment GS. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1. */
498 dump_ternary_rhs (pretty_printer
*buffer
, gassign
*gs
, int spc
,
502 enum tree_code code
= gimple_assign_rhs_code (gs
);
505 case WIDEN_MULT_PLUS_EXPR
:
506 case WIDEN_MULT_MINUS_EXPR
:
507 for (p
= get_tree_code_name (code
); *p
; p
++)
508 pp_character (buffer
, TOUPPER (*p
));
509 pp_string (buffer
, " <");
510 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
511 pp_string (buffer
, ", ");
512 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
513 pp_string (buffer
, ", ");
514 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
519 pp_string (buffer
, "DOT_PROD_EXPR <");
520 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
521 pp_string (buffer
, ", ");
522 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
523 pp_string (buffer
, ", ");
524 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
529 pp_string (buffer
, "SAD_EXPR <");
530 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
531 pp_string (buffer
, ", ");
532 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
533 pp_string (buffer
, ", ");
534 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
539 if (flags
& TDF_GIMPLE
)
540 pp_string (buffer
, "__VEC_PERM (");
542 pp_string (buffer
, "VEC_PERM_EXPR <");
543 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
544 pp_string (buffer
, ", ");
545 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
546 pp_string (buffer
, ", ");
547 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
548 if (flags
& TDF_GIMPLE
)
549 pp_right_paren (buffer
);
554 case REALIGN_LOAD_EXPR
:
555 pp_string (buffer
, "REALIGN_LOAD <");
556 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
557 pp_string (buffer
, ", ");
558 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
559 pp_string (buffer
, ", ");
560 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
565 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
566 pp_string (buffer
, " ? ");
567 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
568 pp_string (buffer
, " : ");
569 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
573 pp_string (buffer
, "VEC_COND_EXPR <");
574 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
, flags
, false);
575 pp_string (buffer
, ", ");
576 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
, flags
, false);
577 pp_string (buffer
, ", ");
578 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
, flags
, false);
582 case BIT_INSERT_EXPR
:
583 if (flags
& TDF_GIMPLE
)
585 pp_string (buffer
, "__BIT_INSERT (");
586 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
), spc
,
587 flags
| TDF_SLIM
, false);
588 pp_string (buffer
, ", ");
589 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
), spc
,
590 flags
| TDF_SLIM
, false);
591 pp_string (buffer
, ", ");
592 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
), spc
,
593 flags
| TDF_SLIM
, false);
594 pp_right_paren (buffer
);
598 pp_string (buffer
, "BIT_INSERT_EXPR <");
599 dump_generic_node (buffer
, gimple_assign_rhs1 (gs
),
601 pp_string (buffer
, ", ");
602 dump_generic_node (buffer
, gimple_assign_rhs2 (gs
),
604 pp_string (buffer
, ", ");
605 dump_generic_node (buffer
, gimple_assign_rhs3 (gs
),
607 if (INTEGRAL_TYPE_P (TREE_TYPE (gimple_assign_rhs2 (gs
))))
609 pp_string (buffer
, " (");
610 pp_decimal_int (buffer
, TYPE_PRECISION
611 (TREE_TYPE (gimple_assign_rhs2 (gs
))));
612 pp_string (buffer
, " bits)");
624 /* Dump the gimple assignment GS. BUFFER, SPC and FLAGS are as in
628 dump_gimple_assign (pretty_printer
*buffer
, gassign
*gs
, int spc
,
636 switch (gimple_num_ops (gs
))
639 arg3
= gimple_assign_rhs3 (gs
);
642 arg2
= gimple_assign_rhs2 (gs
);
645 arg1
= gimple_assign_rhs1 (gs
);
651 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%s, %T, %T, %T, %T>", gs
,
652 get_tree_code_name (gimple_assign_rhs_code (gs
)),
653 gimple_assign_lhs (gs
), arg1
, arg2
, arg3
);
657 if (!(flags
& TDF_RHS_ONLY
))
659 dump_generic_node (buffer
, gimple_assign_lhs (gs
), spc
, flags
, false);
663 if (gimple_assign_nontemporal_move_p (gs
))
664 pp_string (buffer
, "{nt}");
666 if (gimple_has_volatile_ops (gs
))
667 pp_string (buffer
, "{v}");
672 if (gimple_num_ops (gs
) == 2)
673 dump_unary_rhs (buffer
, gs
, spc
, flags
);
674 else if (gimple_num_ops (gs
) == 3)
675 dump_binary_rhs (buffer
, gs
, spc
, flags
);
676 else if (gimple_num_ops (gs
) == 4)
677 dump_ternary_rhs (buffer
, gs
, spc
, flags
);
680 if (!(flags
& TDF_RHS_ONLY
))
681 pp_semicolon (buffer
);
686 /* Dump the return statement GS. BUFFER, SPC and FLAGS are as in
690 dump_gimple_return (pretty_printer
*buffer
, greturn
*gs
, int spc
,
695 t
= gimple_return_retval (gs
);
697 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, t
);
700 pp_string (buffer
, "return");
704 dump_generic_node (buffer
, t
, spc
, flags
, false);
706 pp_semicolon (buffer
);
711 /* Dump the call arguments for a gimple call. BUFFER, FLAGS are as in
715 dump_gimple_call_args (pretty_printer
*buffer
, gcall
*gs
, dump_flags_t flags
)
719 /* Pretty print first arg to certain internal fns. */
720 if (gimple_call_internal_p (gs
))
722 const char *const *enums
= NULL
;
725 switch (gimple_call_internal_fn (gs
))
729 static const char *const unique_args
[] = {IFN_UNIQUE_CODES
};
733 limit
= ARRAY_SIZE (unique_args
);
738 static const char *const loop_args
[] = {IFN_GOACC_LOOP_CODES
};
741 limit
= ARRAY_SIZE (loop_args
);
744 case IFN_GOACC_REDUCTION
:
746 static const char *const reduction_args
[]
747 = {IFN_GOACC_REDUCTION_CODES
};
749 enums
= reduction_args
;
750 limit
= ARRAY_SIZE (reduction_args
);
755 static const char *const asan_mark_args
[] = {IFN_ASAN_MARK_FLAGS
};
757 enums
= asan_mark_args
;
758 limit
= ARRAY_SIZE (asan_mark_args
);
766 tree arg0
= gimple_call_arg (gs
, 0);
769 if (TREE_CODE (arg0
) == INTEGER_CST
770 && tree_fits_shwi_p (arg0
)
771 && (v
= tree_to_shwi (arg0
)) >= 0 && v
< limit
)
774 pp_string (buffer
, enums
[v
]);
779 for (; i
< gimple_call_num_args (gs
); i
++)
782 pp_string (buffer
, ", ");
783 dump_generic_node (buffer
, gimple_call_arg (gs
, i
), 0, flags
, false);
786 if (gimple_call_va_arg_pack_p (gs
))
789 pp_string (buffer
, ", ");
791 pp_string (buffer
, "__builtin_va_arg_pack ()");
795 /* Dump the points-to solution *PT to BUFFER. */
798 pp_points_to_solution (pretty_printer
*buffer
, struct pt_solution
*pt
)
802 pp_string (buffer
, "anything ");
806 pp_string (buffer
, "nonlocal ");
808 pp_string (buffer
, "escaped ");
810 pp_string (buffer
, "unit-escaped ");
812 pp_string (buffer
, "null ");
814 && !bitmap_empty_p (pt
->vars
))
818 pp_string (buffer
, "{ ");
819 EXECUTE_IF_SET_IN_BITMAP (pt
->vars
, 0, i
, bi
)
821 pp_string (buffer
, "D.");
822 pp_decimal_int (buffer
, i
);
825 pp_right_brace (buffer
);
826 if (pt
->vars_contains_nonlocal
827 || pt
->vars_contains_escaped
828 || pt
->vars_contains_escaped_heap
829 || pt
->vars_contains_restrict
)
831 const char *comma
= "";
832 pp_string (buffer
, " (");
833 if (pt
->vars_contains_nonlocal
)
835 pp_string (buffer
, "nonlocal");
838 if (pt
->vars_contains_escaped
)
840 pp_string (buffer
, comma
);
841 pp_string (buffer
, "escaped");
844 if (pt
->vars_contains_escaped_heap
)
846 pp_string (buffer
, comma
);
847 pp_string (buffer
, "escaped heap");
850 if (pt
->vars_contains_restrict
)
852 pp_string (buffer
, comma
);
853 pp_string (buffer
, "restrict");
856 if (pt
->vars_contains_interposable
)
858 pp_string (buffer
, comma
);
859 pp_string (buffer
, "interposable");
861 pp_string (buffer
, ")");
867 /* Dump the call statement GS. BUFFER, SPC and FLAGS are as in
871 dump_gimple_call (pretty_printer
*buffer
, gcall
*gs
, int spc
,
874 tree lhs
= gimple_call_lhs (gs
);
875 tree fn
= gimple_call_fn (gs
);
877 if (flags
& TDF_ALIAS
)
879 struct pt_solution
*pt
;
880 pt
= gimple_call_use_set (gs
);
881 if (!pt_solution_empty_p (pt
))
883 pp_string (buffer
, "# USE = ");
884 pp_points_to_solution (buffer
, pt
);
885 newline_and_indent (buffer
, spc
);
887 pt
= gimple_call_clobber_set (gs
);
888 if (!pt_solution_empty_p (pt
))
890 pp_string (buffer
, "# CLB = ");
891 pp_points_to_solution (buffer
, pt
);
892 newline_and_indent (buffer
, spc
);
898 if (gimple_call_internal_p (gs
))
899 dump_gimple_fmt (buffer
, spc
, flags
, "%G <.%s, %T", gs
,
900 internal_fn_name (gimple_call_internal_fn (gs
)), lhs
);
902 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T", gs
, fn
, lhs
);
903 if (gimple_call_num_args (gs
) > 0)
905 pp_string (buffer
, ", ");
906 dump_gimple_call_args (buffer
, gs
, flags
);
912 if (lhs
&& !(flags
& TDF_RHS_ONLY
))
914 dump_generic_node (buffer
, lhs
, spc
, flags
, false);
915 pp_string (buffer
, " =");
917 if (gimple_has_volatile_ops (gs
))
918 pp_string (buffer
, "{v}");
922 if (gimple_call_internal_p (gs
))
925 pp_string (buffer
, internal_fn_name (gimple_call_internal_fn (gs
)));
928 print_call_name (buffer
, fn
, flags
);
929 pp_string (buffer
, " (");
930 dump_gimple_call_args (buffer
, gs
, flags
);
931 pp_right_paren (buffer
);
932 if (!(flags
& TDF_RHS_ONLY
))
933 pp_semicolon (buffer
);
936 if (gimple_call_chain (gs
))
938 pp_string (buffer
, " [static-chain: ");
939 dump_generic_node (buffer
, gimple_call_chain (gs
), spc
, flags
, false);
940 pp_right_bracket (buffer
);
943 if (gimple_call_return_slot_opt_p (gs
))
944 pp_string (buffer
, " [return slot optimization]");
945 if (gimple_call_tail_p (gs
))
946 pp_string (buffer
, " [tail call]");
947 if (gimple_call_must_tail_p (gs
))
948 pp_string (buffer
, " [must tail call]");
953 /* Dump the arguments of _ITM_beginTransaction sanely. */
954 if (TREE_CODE (fn
) == ADDR_EXPR
)
955 fn
= TREE_OPERAND (fn
, 0);
956 if (TREE_CODE (fn
) == FUNCTION_DECL
&& decl_is_tm_clone (fn
))
957 pp_string (buffer
, " [tm-clone]");
958 if (TREE_CODE (fn
) == FUNCTION_DECL
959 && fndecl_built_in_p (fn
, BUILT_IN_TM_START
)
960 && gimple_call_num_args (gs
) > 0)
962 tree t
= gimple_call_arg (gs
, 0);
963 unsigned HOST_WIDE_INT props
;
964 gcc_assert (TREE_CODE (t
) == INTEGER_CST
);
966 pp_string (buffer
, " [ ");
968 /* Get the transaction code properties. */
969 props
= TREE_INT_CST_LOW (t
);
971 if (props
& PR_INSTRUMENTEDCODE
)
972 pp_string (buffer
, "instrumentedCode ");
973 if (props
& PR_UNINSTRUMENTEDCODE
)
974 pp_string (buffer
, "uninstrumentedCode ");
975 if (props
& PR_HASNOXMMUPDATE
)
976 pp_string (buffer
, "hasNoXMMUpdate ");
977 if (props
& PR_HASNOABORT
)
978 pp_string (buffer
, "hasNoAbort ");
979 if (props
& PR_HASNOIRREVOCABLE
)
980 pp_string (buffer
, "hasNoIrrevocable ");
981 if (props
& PR_DOESGOIRREVOCABLE
)
982 pp_string (buffer
, "doesGoIrrevocable ");
983 if (props
& PR_HASNOSIMPLEREADS
)
984 pp_string (buffer
, "hasNoSimpleReads ");
985 if (props
& PR_AWBARRIERSOMITTED
)
986 pp_string (buffer
, "awBarriersOmitted ");
987 if (props
& PR_RARBARRIERSOMITTED
)
988 pp_string (buffer
, "RaRBarriersOmitted ");
989 if (props
& PR_UNDOLOGCODE
)
990 pp_string (buffer
, "undoLogCode ");
991 if (props
& PR_PREFERUNINSTRUMENTED
)
992 pp_string (buffer
, "preferUninstrumented ");
993 if (props
& PR_EXCEPTIONBLOCK
)
994 pp_string (buffer
, "exceptionBlock ");
995 if (props
& PR_HASELSE
)
996 pp_string (buffer
, "hasElse ");
997 if (props
& PR_READONLY
)
998 pp_string (buffer
, "readOnly ");
1000 pp_right_bracket (buffer
);
1005 /* Dump the switch statement GS. BUFFER, SPC and FLAGS are as in
1006 pp_gimple_stmt_1. */
1009 dump_gimple_switch (pretty_printer
*buffer
, gswitch
*gs
, int spc
,
1014 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
1015 if (flags
& TDF_RAW
)
1016 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, ", gs
,
1017 gimple_switch_index (gs
));
1020 pp_string (buffer
, "switch (");
1021 dump_generic_node (buffer
, gimple_switch_index (gs
), spc
, flags
, true);
1022 if (flags
& TDF_GIMPLE
)
1023 pp_string (buffer
, ") {");
1025 pp_string (buffer
, ") <");
1028 for (i
= 0; i
< gimple_switch_num_labels (gs
); i
++)
1030 tree case_label
= gimple_switch_label (gs
, i
);
1031 gcc_checking_assert (case_label
!= NULL_TREE
);
1032 dump_generic_node (buffer
, case_label
, spc
, flags
, false);
1034 tree label
= CASE_LABEL (case_label
);
1035 dump_generic_node (buffer
, label
, spc
, flags
, false);
1037 if (cfun
&& cfun
->cfg
)
1039 basic_block dest
= label_to_block (cfun
, label
);
1042 edge label_edge
= find_edge (gimple_bb (gs
), dest
);
1043 if (label_edge
&& !(flags
& TDF_GIMPLE
))
1044 dump_edge_probability (buffer
, label_edge
);
1048 if (i
< gimple_switch_num_labels (gs
) - 1)
1050 if (flags
& TDF_GIMPLE
)
1051 pp_string (buffer
, "; ");
1053 pp_string (buffer
, ", ");
1056 if (flags
& TDF_GIMPLE
)
1057 pp_string (buffer
, "; }");
1059 pp_greater (buffer
);
1063 /* Dump the gimple conditional GS. BUFFER, SPC and FLAGS are as in
1064 pp_gimple_stmt_1. */
1067 dump_gimple_cond (pretty_printer
*buffer
, gcond
*gs
, int spc
,
1070 if (flags
& TDF_RAW
)
1071 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%s, %T, %T, %T, %T>", gs
,
1072 get_tree_code_name (gimple_cond_code (gs
)),
1073 gimple_cond_lhs (gs
), gimple_cond_rhs (gs
),
1074 gimple_cond_true_label (gs
), gimple_cond_false_label (gs
));
1077 if (!(flags
& TDF_RHS_ONLY
))
1078 pp_string (buffer
, "if (");
1079 dump_generic_node (buffer
, gimple_cond_lhs (gs
), spc
, flags
, false);
1081 pp_string (buffer
, op_symbol_code (gimple_cond_code (gs
)));
1083 dump_generic_node (buffer
, gimple_cond_rhs (gs
), spc
, flags
, false);
1084 if (!(flags
& TDF_RHS_ONLY
))
1087 edge e
, true_edge
= NULL
, false_edge
= NULL
;
1088 basic_block bb
= gimple_bb (gs
);
1092 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1094 if (e
->flags
& EDGE_TRUE_VALUE
)
1096 else if (e
->flags
& EDGE_FALSE_VALUE
)
1101 bool has_edge_info
= true_edge
!= NULL
&& false_edge
!= NULL
;
1103 pp_right_paren (buffer
);
1105 if (gimple_cond_true_label (gs
))
1107 pp_string (buffer
, " goto ");
1108 dump_generic_node (buffer
, gimple_cond_true_label (gs
),
1110 if (has_edge_info
&& !(flags
& TDF_GIMPLE
))
1111 dump_edge_probability (buffer
, true_edge
);
1112 pp_semicolon (buffer
);
1114 if (gimple_cond_false_label (gs
))
1116 pp_string (buffer
, " else goto ");
1117 dump_generic_node (buffer
, gimple_cond_false_label (gs
),
1119 if (has_edge_info
&& !(flags
& TDF_GIMPLE
))
1120 dump_edge_probability (buffer
, false_edge
);
1122 pp_semicolon (buffer
);
1129 /* Dump a GIMPLE_LABEL tuple on the pretty_printer BUFFER, SPC
1130 spaces of indent. FLAGS specifies details to show in the dump (see
1131 TDF_* in dumpfils.h). */
1134 dump_gimple_label (pretty_printer
*buffer
, glabel
*gs
, int spc
,
1137 tree label
= gimple_label_label (gs
);
1138 if (flags
& TDF_RAW
)
1139 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, label
);
1142 dump_generic_node (buffer
, label
, spc
, flags
, false);
1145 if (flags
& TDF_GIMPLE
)
1147 if (DECL_NONLOCAL (label
))
1148 pp_string (buffer
, " [non-local]");
1149 if ((flags
& TDF_EH
) && EH_LANDING_PAD_NR (label
))
1150 pp_printf (buffer
, " [LP %d]", EH_LANDING_PAD_NR (label
));
1153 /* Dump a GIMPLE_GOTO tuple on the pretty_printer BUFFER, SPC
1154 spaces of indent. FLAGS specifies details to show in the dump (see
1155 TDF_* in dumpfile.h). */
1158 dump_gimple_goto (pretty_printer
*buffer
, ggoto
*gs
, int spc
,
1161 tree label
= gimple_goto_dest (gs
);
1162 if (flags
& TDF_RAW
)
1163 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
, label
);
1165 dump_gimple_fmt (buffer
, spc
, flags
, "goto %T;", label
);
1169 /* Dump a GIMPLE_BIND tuple on the pretty_printer BUFFER, SPC
1170 spaces of indent. FLAGS specifies details to show in the dump (see
1171 TDF_* in dumpfile.h). */
1174 dump_gimple_bind (pretty_printer
*buffer
, gbind
*gs
, int spc
,
1177 if (flags
& TDF_RAW
)
1178 dump_gimple_fmt (buffer
, spc
, flags
, "%G <", gs
);
1180 pp_left_brace (buffer
);
1181 if (!(flags
& TDF_SLIM
))
1185 for (var
= gimple_bind_vars (gs
); var
; var
= DECL_CHAIN (var
))
1187 newline_and_indent (buffer
, 2);
1188 print_declaration (buffer
, var
, spc
, flags
);
1190 if (gimple_bind_vars (gs
))
1191 pp_newline (buffer
);
1193 pp_newline (buffer
);
1194 dump_gimple_seq (buffer
, gimple_bind_body (gs
), spc
+ 2, flags
);
1195 newline_and_indent (buffer
, spc
);
1196 if (flags
& TDF_RAW
)
1197 pp_greater (buffer
);
1199 pp_right_brace (buffer
);
1203 /* Dump a GIMPLE_TRY tuple on the pretty_printer BUFFER, SPC spaces of
1204 indent. FLAGS specifies details to show in the dump (see TDF_* in
1208 dump_gimple_try (pretty_printer
*buffer
, gtry
*gs
, int spc
,
1211 if (flags
& TDF_RAW
)
1214 if (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
)
1215 type
= "GIMPLE_TRY_CATCH";
1216 else if (gimple_try_kind (gs
) == GIMPLE_TRY_FINALLY
)
1217 type
= "GIMPLE_TRY_FINALLY";
1219 type
= "UNKNOWN GIMPLE_TRY";
1220 dump_gimple_fmt (buffer
, spc
, flags
,
1221 "%G <%s,%+EVAL <%S>%nCLEANUP <%S>%->", gs
, type
,
1222 gimple_try_eval (gs
), gimple_try_cleanup (gs
));
1226 pp_string (buffer
, "try");
1227 newline_and_indent (buffer
, spc
+ 2);
1228 pp_left_brace (buffer
);
1229 pp_newline (buffer
);
1231 dump_gimple_seq (buffer
, gimple_try_eval (gs
), spc
+ 4, flags
);
1232 newline_and_indent (buffer
, spc
+ 2);
1233 pp_right_brace (buffer
);
1235 gimple_seq seq
= gimple_try_cleanup (gs
);
1237 if (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
)
1239 newline_and_indent (buffer
, spc
);
1240 pp_string (buffer
, "catch");
1241 newline_and_indent (buffer
, spc
+ 2);
1242 pp_left_brace (buffer
);
1244 else if (gimple_try_kind (gs
) == GIMPLE_TRY_FINALLY
)
1246 newline_and_indent (buffer
, spc
);
1247 pp_string (buffer
, "finally");
1248 newline_and_indent (buffer
, spc
+ 2);
1249 pp_left_brace (buffer
);
1251 if (seq
&& is_a
<geh_else
*> (gimple_seq_first_stmt (seq
))
1252 && gimple_seq_nondebug_singleton_p (seq
))
1254 geh_else
*stmt
= as_a
<geh_else
*> (gimple_seq_first_stmt (seq
));
1255 seq
= gimple_eh_else_n_body (stmt
);
1256 pp_newline (buffer
);
1257 dump_gimple_seq (buffer
, seq
, spc
+ 4, flags
);
1258 newline_and_indent (buffer
, spc
+ 2);
1259 pp_right_brace (buffer
);
1260 seq
= gimple_eh_else_e_body (stmt
);
1261 newline_and_indent (buffer
, spc
);
1262 pp_string (buffer
, "else");
1263 newline_and_indent (buffer
, spc
+ 2);
1264 pp_left_brace (buffer
);
1268 pp_string (buffer
, " <UNKNOWN GIMPLE_TRY> {");
1270 pp_newline (buffer
);
1271 dump_gimple_seq (buffer
, seq
, spc
+ 4, flags
);
1272 newline_and_indent (buffer
, spc
+ 2);
1273 pp_right_brace (buffer
);
1278 /* Dump a GIMPLE_CATCH tuple on the pretty_printer BUFFER, SPC spaces of
1279 indent. FLAGS specifies details to show in the dump (see TDF_* in
1283 dump_gimple_catch (pretty_printer
*buffer
, gcatch
*gs
, int spc
,
1286 if (flags
& TDF_RAW
)
1287 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %+CATCH <%S>%->", gs
,
1288 gimple_catch_types (gs
), gimple_catch_handler (gs
));
1290 dump_gimple_fmt (buffer
, spc
, flags
, "catch (%T)%+{%S}",
1291 gimple_catch_types (gs
), gimple_catch_handler (gs
));
1295 /* Dump a GIMPLE_EH_FILTER tuple on the pretty_printer BUFFER, SPC spaces of
1296 indent. FLAGS specifies details to show in the dump (see TDF_* in
1300 dump_gimple_eh_filter (pretty_printer
*buffer
, geh_filter
*gs
, int spc
,
1303 if (flags
& TDF_RAW
)
1304 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %+FAILURE <%S>%->", gs
,
1305 gimple_eh_filter_types (gs
),
1306 gimple_eh_filter_failure (gs
));
1308 dump_gimple_fmt (buffer
, spc
, flags
, "<<<eh_filter (%T)>>>%+{%+%S%-}",
1309 gimple_eh_filter_types (gs
),
1310 gimple_eh_filter_failure (gs
));
1314 /* Dump a GIMPLE_EH_MUST_NOT_THROW tuple. */
1317 dump_gimple_eh_must_not_throw (pretty_printer
*buffer
,
1318 geh_mnt
*gs
, int spc
, dump_flags_t flags
)
1320 if (flags
& TDF_RAW
)
1321 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
,
1322 gimple_eh_must_not_throw_fndecl (gs
));
1324 dump_gimple_fmt (buffer
, spc
, flags
, "<<<eh_must_not_throw (%T)>>>",
1325 gimple_eh_must_not_throw_fndecl (gs
));
1329 /* Dump a GIMPLE_EH_ELSE tuple on the pretty_printer BUFFER, SPC spaces of
1330 indent. FLAGS specifies details to show in the dump (see TDF_* in
1334 dump_gimple_eh_else (pretty_printer
*buffer
, geh_else
*gs
, int spc
,
1337 if (flags
& TDF_RAW
)
1338 dump_gimple_fmt (buffer
, spc
, flags
,
1339 "%G <%+N_BODY <%S>%nE_BODY <%S>%->", gs
,
1340 gimple_eh_else_n_body (gs
), gimple_eh_else_e_body (gs
));
1342 dump_gimple_fmt (buffer
, spc
, flags
,
1343 "<<<if_normal_exit>>>%+{%S}%-<<<else_eh_exit>>>%+{%S}",
1344 gimple_eh_else_n_body (gs
), gimple_eh_else_e_body (gs
));
1348 /* Dump a GIMPLE_RESX tuple on the pretty_printer BUFFER, SPC spaces of
1349 indent. FLAGS specifies details to show in the dump (see TDF_* in
1353 dump_gimple_resx (pretty_printer
*buffer
, gresx
*gs
, int spc
,
1356 if (flags
& TDF_RAW
)
1357 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%d>", gs
,
1358 gimple_resx_region (gs
));
1360 dump_gimple_fmt (buffer
, spc
, flags
, "resx %d", gimple_resx_region (gs
));
1363 /* Dump a GIMPLE_EH_DISPATCH tuple on the pretty_printer BUFFER. */
1366 dump_gimple_eh_dispatch (pretty_printer
*buffer
, geh_dispatch
*gs
, int spc
,
1369 if (flags
& TDF_RAW
)
1370 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%d>", gs
,
1371 gimple_eh_dispatch_region (gs
));
1373 dump_gimple_fmt (buffer
, spc
, flags
, "eh_dispatch %d",
1374 gimple_eh_dispatch_region (gs
));
1377 /* Dump a GIMPLE_DEBUG tuple on the pretty_printer BUFFER, SPC spaces
1378 of indent. FLAGS specifies details to show in the dump (see TDF_*
1382 dump_gimple_debug (pretty_printer
*buffer
, gdebug
*gs
, int spc
,
1385 switch (gs
->subcode
)
1387 case GIMPLE_DEBUG_BIND
:
1388 if (flags
& TDF_RAW
)
1389 dump_gimple_fmt (buffer
, spc
, flags
, "%G BIND <%T, %T>", gs
,
1390 gimple_debug_bind_get_var (gs
),
1391 gimple_debug_bind_get_value (gs
));
1393 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG %T => %T",
1394 gimple_debug_bind_get_var (gs
),
1395 gimple_debug_bind_get_value (gs
));
1398 case GIMPLE_DEBUG_SOURCE_BIND
:
1399 if (flags
& TDF_RAW
)
1400 dump_gimple_fmt (buffer
, spc
, flags
, "%G SRCBIND <%T, %T>", gs
,
1401 gimple_debug_source_bind_get_var (gs
),
1402 gimple_debug_source_bind_get_value (gs
));
1404 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG %T s=> %T",
1405 gimple_debug_source_bind_get_var (gs
),
1406 gimple_debug_source_bind_get_value (gs
));
1409 case GIMPLE_DEBUG_BEGIN_STMT
:
1410 if (flags
& TDF_RAW
)
1411 dump_gimple_fmt (buffer
, spc
, flags
, "%G BEGIN_STMT", gs
);
1413 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG BEGIN_STMT");
1416 case GIMPLE_DEBUG_INLINE_ENTRY
:
1417 if (flags
& TDF_RAW
)
1418 dump_gimple_fmt (buffer
, spc
, flags
, "%G INLINE_ENTRY %T", gs
,
1420 ? block_ultimate_origin (gimple_block (gs
))
1423 dump_gimple_fmt (buffer
, spc
, flags
, "# DEBUG INLINE_ENTRY %T",
1425 ? block_ultimate_origin (gimple_block (gs
))
1434 /* Dump a GIMPLE_OMP_FOR tuple on the pretty_printer BUFFER. */
1436 dump_gimple_omp_for (pretty_printer
*buffer
, gomp_for
*gs
, int spc
,
1441 if (flags
& TDF_RAW
)
1444 switch (gimple_omp_for_kind (gs
))
1446 case GF_OMP_FOR_KIND_FOR
:
1449 case GF_OMP_FOR_KIND_DISTRIBUTE
:
1450 kind
= " distribute";
1452 case GF_OMP_FOR_KIND_TASKLOOP
:
1455 case GF_OMP_FOR_KIND_OACC_LOOP
:
1456 kind
= " oacc_loop";
1458 case GF_OMP_FOR_KIND_SIMD
:
1464 dump_gimple_fmt (buffer
, spc
, flags
, "%G%s <%+BODY <%S>%nCLAUSES <", gs
,
1465 kind
, gimple_omp_body (gs
));
1466 dump_omp_clauses (buffer
, gimple_omp_for_clauses (gs
), spc
, flags
);
1467 dump_gimple_fmt (buffer
, spc
, flags
, " >,");
1468 for (i
= 0; i
< gimple_omp_for_collapse (gs
); i
++)
1469 dump_gimple_fmt (buffer
, spc
, flags
,
1470 "%+%T, %T, %T, %s, %T,%n",
1471 gimple_omp_for_index (gs
, i
),
1472 gimple_omp_for_initial (gs
, i
),
1473 gimple_omp_for_final (gs
, i
),
1474 get_tree_code_name (gimple_omp_for_cond (gs
, i
)),
1475 gimple_omp_for_incr (gs
, i
));
1476 dump_gimple_fmt (buffer
, spc
, flags
, "PRE_BODY <%S>%->",
1477 gimple_omp_for_pre_body (gs
));
1481 switch (gimple_omp_for_kind (gs
))
1483 case GF_OMP_FOR_KIND_FOR
:
1484 pp_string (buffer
, "#pragma omp for");
1486 case GF_OMP_FOR_KIND_DISTRIBUTE
:
1487 pp_string (buffer
, "#pragma omp distribute");
1489 case GF_OMP_FOR_KIND_TASKLOOP
:
1490 pp_string (buffer
, "#pragma omp taskloop");
1492 case GF_OMP_FOR_KIND_OACC_LOOP
:
1493 pp_string (buffer
, "#pragma acc loop");
1495 case GF_OMP_FOR_KIND_SIMD
:
1496 pp_string (buffer
, "#pragma omp simd");
1498 case GF_OMP_FOR_KIND_GRID_LOOP
:
1499 pp_string (buffer
, "#pragma omp for grid_loop");
1504 dump_omp_clauses (buffer
, gimple_omp_for_clauses (gs
), spc
, flags
);
1505 for (i
= 0; i
< gimple_omp_for_collapse (gs
); i
++)
1509 newline_and_indent (buffer
, spc
);
1510 pp_string (buffer
, "for (");
1511 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1513 pp_string (buffer
, " = ");
1514 dump_generic_node (buffer
, gimple_omp_for_initial (gs
, i
), spc
,
1516 pp_string (buffer
, "; ");
1518 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1521 switch (gimple_omp_for_cond (gs
, i
))
1527 pp_greater (buffer
);
1530 pp_less_equal (buffer
);
1533 pp_greater_equal (buffer
);
1536 pp_string (buffer
, "!=");
1542 dump_generic_node (buffer
, gimple_omp_for_final (gs
, i
), spc
,
1544 pp_string (buffer
, "; ");
1546 dump_generic_node (buffer
, gimple_omp_for_index (gs
, i
), spc
,
1548 pp_string (buffer
, " = ");
1549 dump_generic_node (buffer
, gimple_omp_for_incr (gs
, i
), spc
,
1551 pp_right_paren (buffer
);
1554 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1556 newline_and_indent (buffer
, spc
+ 2);
1557 pp_left_brace (buffer
);
1558 pp_newline (buffer
);
1559 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1560 newline_and_indent (buffer
, spc
+ 2);
1561 pp_right_brace (buffer
);
1566 /* Dump a GIMPLE_OMP_CONTINUE tuple on the pretty_printer BUFFER. */
1569 dump_gimple_omp_continue (pretty_printer
*buffer
, gomp_continue
*gs
,
1570 int spc
, dump_flags_t flags
)
1572 if (flags
& TDF_RAW
)
1574 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T>", gs
,
1575 gimple_omp_continue_control_def (gs
),
1576 gimple_omp_continue_control_use (gs
));
1580 pp_string (buffer
, "#pragma omp continue (");
1581 dump_generic_node (buffer
, gimple_omp_continue_control_def (gs
),
1585 dump_generic_node (buffer
, gimple_omp_continue_control_use (gs
),
1587 pp_right_paren (buffer
);
1591 /* Dump a GIMPLE_OMP_SINGLE tuple on the pretty_printer BUFFER. */
1594 dump_gimple_omp_single (pretty_printer
*buffer
, gomp_single
*gs
,
1595 int spc
, dump_flags_t flags
)
1597 if (flags
& TDF_RAW
)
1599 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1600 gimple_omp_body (gs
));
1601 dump_omp_clauses (buffer
, gimple_omp_single_clauses (gs
), spc
, flags
);
1602 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1606 pp_string (buffer
, "#pragma omp single");
1607 dump_omp_clauses (buffer
, gimple_omp_single_clauses (gs
), spc
, flags
);
1608 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1610 newline_and_indent (buffer
, spc
+ 2);
1611 pp_left_brace (buffer
);
1612 pp_newline (buffer
);
1613 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1614 newline_and_indent (buffer
, spc
+ 2);
1615 pp_right_brace (buffer
);
1620 /* Dump a GIMPLE_OMP_TASKGROUP tuple on the pretty_printer BUFFER. */
1623 dump_gimple_omp_taskgroup (pretty_printer
*buffer
, gimple
*gs
,
1624 int spc
, dump_flags_t flags
)
1626 if (flags
& TDF_RAW
)
1628 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1629 gimple_omp_body (gs
));
1630 dump_omp_clauses (buffer
, gimple_omp_taskgroup_clauses (gs
), spc
, flags
);
1631 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1635 pp_string (buffer
, "#pragma omp taskgroup");
1636 dump_omp_clauses (buffer
, gimple_omp_taskgroup_clauses (gs
), spc
, flags
);
1637 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1639 newline_and_indent (buffer
, spc
+ 2);
1640 pp_left_brace (buffer
);
1641 pp_newline (buffer
);
1642 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1643 newline_and_indent (buffer
, spc
+ 2);
1644 pp_right_brace (buffer
);
1649 /* Dump a GIMPLE_OMP_TARGET tuple on the pretty_printer BUFFER. */
1652 dump_gimple_omp_target (pretty_printer
*buffer
, gomp_target
*gs
,
1653 int spc
, dump_flags_t flags
)
1656 switch (gimple_omp_target_kind (gs
))
1658 case GF_OMP_TARGET_KIND_REGION
:
1661 case GF_OMP_TARGET_KIND_DATA
:
1664 case GF_OMP_TARGET_KIND_UPDATE
:
1667 case GF_OMP_TARGET_KIND_ENTER_DATA
:
1668 kind
= " enter data";
1670 case GF_OMP_TARGET_KIND_EXIT_DATA
:
1671 kind
= " exit data";
1673 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
1674 kind
= " oacc_kernels";
1676 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
1677 kind
= " oacc_parallel";
1679 case GF_OMP_TARGET_KIND_OACC_DATA
:
1680 kind
= " oacc_data";
1682 case GF_OMP_TARGET_KIND_OACC_UPDATE
:
1683 kind
= " oacc_update";
1685 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA
:
1686 kind
= " oacc_enter_exit_data";
1688 case GF_OMP_TARGET_KIND_OACC_DECLARE
:
1689 kind
= " oacc_declare";
1691 case GF_OMP_TARGET_KIND_OACC_HOST_DATA
:
1692 kind
= " oacc_host_data";
1697 if (flags
& TDF_RAW
)
1699 dump_gimple_fmt (buffer
, spc
, flags
, "%G%s <%+BODY <%S>%nCLAUSES <", gs
,
1700 kind
, gimple_omp_body (gs
));
1701 dump_omp_clauses (buffer
, gimple_omp_target_clauses (gs
), spc
, flags
);
1702 dump_gimple_fmt (buffer
, spc
, flags
, " >, %T, %T%n>",
1703 gimple_omp_target_child_fn (gs
),
1704 gimple_omp_target_data_arg (gs
));
1708 pp_string (buffer
, "#pragma omp target");
1709 pp_string (buffer
, kind
);
1710 dump_omp_clauses (buffer
, gimple_omp_target_clauses (gs
), spc
, flags
);
1711 if (gimple_omp_target_child_fn (gs
))
1713 pp_string (buffer
, " [child fn: ");
1714 dump_generic_node (buffer
, gimple_omp_target_child_fn (gs
),
1716 pp_string (buffer
, " (");
1717 if (gimple_omp_target_data_arg (gs
))
1718 dump_generic_node (buffer
, gimple_omp_target_data_arg (gs
),
1721 pp_string (buffer
, "???");
1722 pp_string (buffer
, ")]");
1724 gimple_seq body
= gimple_omp_body (gs
);
1725 if (body
&& gimple_code (gimple_seq_first_stmt (body
)) != GIMPLE_BIND
)
1727 newline_and_indent (buffer
, spc
+ 2);
1728 pp_left_brace (buffer
);
1729 pp_newline (buffer
);
1730 dump_gimple_seq (buffer
, body
, spc
+ 4, flags
);
1731 newline_and_indent (buffer
, spc
+ 2);
1732 pp_right_brace (buffer
);
1736 pp_newline (buffer
);
1737 dump_gimple_seq (buffer
, body
, spc
+ 2, flags
);
1742 /* Dump a GIMPLE_OMP_TEAMS tuple on the pretty_printer BUFFER. */
1745 dump_gimple_omp_teams (pretty_printer
*buffer
, gomp_teams
*gs
, int spc
,
1748 if (flags
& TDF_RAW
)
1750 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1751 gimple_omp_body (gs
));
1752 dump_omp_clauses (buffer
, gimple_omp_teams_clauses (gs
), spc
, flags
);
1753 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1757 pp_string (buffer
, "#pragma omp teams");
1758 dump_omp_clauses (buffer
, gimple_omp_teams_clauses (gs
), spc
, flags
);
1759 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1761 newline_and_indent (buffer
, spc
+ 2);
1762 pp_character (buffer
, '{');
1763 pp_newline (buffer
);
1764 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1765 newline_and_indent (buffer
, spc
+ 2);
1766 pp_character (buffer
, '}');
1771 /* Dump a GIMPLE_OMP_SECTIONS tuple on the pretty_printer BUFFER. */
1774 dump_gimple_omp_sections (pretty_printer
*buffer
, gomp_sections
*gs
,
1775 int spc
, dump_flags_t flags
)
1777 if (flags
& TDF_RAW
)
1779 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
1780 gimple_omp_body (gs
));
1781 dump_omp_clauses (buffer
, gimple_omp_sections_clauses (gs
), spc
, flags
);
1782 dump_gimple_fmt (buffer
, spc
, flags
, " >");
1786 pp_string (buffer
, "#pragma omp sections");
1787 if (gimple_omp_sections_control (gs
))
1789 pp_string (buffer
, " <");
1790 dump_generic_node (buffer
, gimple_omp_sections_control (gs
), spc
,
1792 pp_greater (buffer
);
1794 dump_omp_clauses (buffer
, gimple_omp_sections_clauses (gs
), spc
, flags
);
1795 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1797 newline_and_indent (buffer
, spc
+ 2);
1798 pp_left_brace (buffer
);
1799 pp_newline (buffer
);
1800 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1801 newline_and_indent (buffer
, spc
+ 2);
1802 pp_right_brace (buffer
);
1807 /* Dump a GIMPLE_OMP_{MASTER,ORDERED,SECTION} tuple on the
1808 pretty_printer BUFFER. */
1811 dump_gimple_omp_block (pretty_printer
*buffer
, gimple
*gs
, int spc
,
1814 if (flags
& TDF_RAW
)
1815 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1816 gimple_omp_body (gs
));
1819 switch (gimple_code (gs
))
1821 case GIMPLE_OMP_MASTER
:
1822 pp_string (buffer
, "#pragma omp master");
1824 case GIMPLE_OMP_SECTION
:
1825 pp_string (buffer
, "#pragma omp section");
1827 case GIMPLE_OMP_GRID_BODY
:
1828 pp_string (buffer
, "#pragma omp gridified body");
1833 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1835 newline_and_indent (buffer
, spc
+ 2);
1836 pp_left_brace (buffer
);
1837 pp_newline (buffer
);
1838 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1839 newline_and_indent (buffer
, spc
+ 2);
1840 pp_right_brace (buffer
);
1845 /* Dump a GIMPLE_OMP_CRITICAL tuple on the pretty_printer BUFFER. */
1848 dump_gimple_omp_critical (pretty_printer
*buffer
, gomp_critical
*gs
,
1849 int spc
, dump_flags_t flags
)
1851 if (flags
& TDF_RAW
)
1852 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1853 gimple_omp_body (gs
));
1856 pp_string (buffer
, "#pragma omp critical");
1857 if (gimple_omp_critical_name (gs
))
1859 pp_string (buffer
, " (");
1860 dump_generic_node (buffer
, gimple_omp_critical_name (gs
), spc
,
1862 pp_right_paren (buffer
);
1864 dump_omp_clauses (buffer
, gimple_omp_critical_clauses (gs
), spc
, flags
);
1865 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1867 newline_and_indent (buffer
, spc
+ 2);
1868 pp_left_brace (buffer
);
1869 pp_newline (buffer
);
1870 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1871 newline_and_indent (buffer
, spc
+ 2);
1872 pp_right_brace (buffer
);
1877 /* Dump a GIMPLE_OMP_ORDERED tuple on the pretty_printer BUFFER. */
1880 dump_gimple_omp_ordered (pretty_printer
*buffer
, gomp_ordered
*gs
,
1881 int spc
, dump_flags_t flags
)
1883 if (flags
& TDF_RAW
)
1884 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1885 gimple_omp_body (gs
));
1888 pp_string (buffer
, "#pragma omp ordered");
1889 dump_omp_clauses (buffer
, gimple_omp_ordered_clauses (gs
), spc
, flags
);
1890 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1892 newline_and_indent (buffer
, spc
+ 2);
1893 pp_left_brace (buffer
);
1894 pp_newline (buffer
);
1895 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1896 newline_and_indent (buffer
, spc
+ 2);
1897 pp_right_brace (buffer
);
1902 /* Dump a GIMPLE_OMP_SCAN tuple on the pretty_printer BUFFER. */
1905 dump_gimple_omp_scan (pretty_printer
*buffer
, gomp_scan
*gs
,
1906 int spc
, dump_flags_t flags
)
1908 if (flags
& TDF_RAW
)
1909 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S> >", gs
,
1910 gimple_omp_body (gs
));
1913 if (gimple_omp_scan_clauses (gs
))
1915 pp_string (buffer
, "#pragma omp scan");
1916 dump_omp_clauses (buffer
, gimple_omp_scan_clauses (gs
), spc
, flags
);
1918 if (!gimple_seq_empty_p (gimple_omp_body (gs
)))
1920 newline_and_indent (buffer
, spc
+ 2);
1921 pp_left_brace (buffer
);
1922 pp_newline (buffer
);
1923 dump_gimple_seq (buffer
, gimple_omp_body (gs
), spc
+ 4, flags
);
1924 newline_and_indent (buffer
, spc
+ 2);
1925 pp_right_brace (buffer
);
1930 /* Dump a GIMPLE_OMP_RETURN tuple on the pretty_printer BUFFER. */
1933 dump_gimple_omp_return (pretty_printer
*buffer
, gimple
*gs
, int spc
,
1936 if (flags
& TDF_RAW
)
1938 dump_gimple_fmt (buffer
, spc
, flags
, "%G <nowait=%d", gs
,
1939 (int) gimple_omp_return_nowait_p (gs
));
1940 if (gimple_omp_return_lhs (gs
))
1941 dump_gimple_fmt (buffer
, spc
, flags
, ", lhs=%T>",
1942 gimple_omp_return_lhs (gs
));
1944 dump_gimple_fmt (buffer
, spc
, flags
, ">");
1948 pp_string (buffer
, "#pragma omp return");
1949 if (gimple_omp_return_nowait_p (gs
))
1950 pp_string (buffer
, "(nowait)");
1951 if (gimple_omp_return_lhs (gs
))
1953 pp_string (buffer
, " (set ");
1954 dump_generic_node (buffer
, gimple_omp_return_lhs (gs
),
1956 pp_character (buffer
, ')');
1961 /* Dump a GIMPLE_TRANSACTION tuple on the pretty_printer BUFFER. */
1964 dump_gimple_transaction (pretty_printer
*buffer
, gtransaction
*gs
,
1965 int spc
, dump_flags_t flags
)
1967 unsigned subcode
= gimple_transaction_subcode (gs
);
1969 if (flags
& TDF_RAW
)
1971 dump_gimple_fmt (buffer
, spc
, flags
,
1972 "%G [SUBCODE=%x,NORM=%T,UNINST=%T,OVER=%T] "
1974 gs
, subcode
, gimple_transaction_label_norm (gs
),
1975 gimple_transaction_label_uninst (gs
),
1976 gimple_transaction_label_over (gs
),
1977 gimple_transaction_body (gs
));
1981 if (subcode
& GTMA_IS_OUTER
)
1982 pp_string (buffer
, "__transaction_atomic [[outer]]");
1983 else if (subcode
& GTMA_IS_RELAXED
)
1984 pp_string (buffer
, "__transaction_relaxed");
1986 pp_string (buffer
, "__transaction_atomic");
1987 subcode
&= ~GTMA_DECLARATION_MASK
;
1989 if (gimple_transaction_body (gs
))
1991 newline_and_indent (buffer
, spc
+ 2);
1992 pp_left_brace (buffer
);
1993 pp_newline (buffer
);
1994 dump_gimple_seq (buffer
, gimple_transaction_body (gs
),
1996 newline_and_indent (buffer
, spc
+ 2);
1997 pp_right_brace (buffer
);
2001 pp_string (buffer
, " //");
2002 if (gimple_transaction_label_norm (gs
))
2004 pp_string (buffer
, " NORM=");
2005 dump_generic_node (buffer
, gimple_transaction_label_norm (gs
),
2008 if (gimple_transaction_label_uninst (gs
))
2010 pp_string (buffer
, " UNINST=");
2011 dump_generic_node (buffer
, gimple_transaction_label_uninst (gs
),
2014 if (gimple_transaction_label_over (gs
))
2016 pp_string (buffer
, " OVER=");
2017 dump_generic_node (buffer
, gimple_transaction_label_over (gs
),
2022 pp_string (buffer
, " SUBCODE=[ ");
2023 if (subcode
& GTMA_HAVE_ABORT
)
2025 pp_string (buffer
, "GTMA_HAVE_ABORT ");
2026 subcode
&= ~GTMA_HAVE_ABORT
;
2028 if (subcode
& GTMA_HAVE_LOAD
)
2030 pp_string (buffer
, "GTMA_HAVE_LOAD ");
2031 subcode
&= ~GTMA_HAVE_LOAD
;
2033 if (subcode
& GTMA_HAVE_STORE
)
2035 pp_string (buffer
, "GTMA_HAVE_STORE ");
2036 subcode
&= ~GTMA_HAVE_STORE
;
2038 if (subcode
& GTMA_MAY_ENTER_IRREVOCABLE
)
2040 pp_string (buffer
, "GTMA_MAY_ENTER_IRREVOCABLE ");
2041 subcode
&= ~GTMA_MAY_ENTER_IRREVOCABLE
;
2043 if (subcode
& GTMA_DOES_GO_IRREVOCABLE
)
2045 pp_string (buffer
, "GTMA_DOES_GO_IRREVOCABLE ");
2046 subcode
&= ~GTMA_DOES_GO_IRREVOCABLE
;
2048 if (subcode
& GTMA_HAS_NO_INSTRUMENTATION
)
2050 pp_string (buffer
, "GTMA_HAS_NO_INSTRUMENTATION ");
2051 subcode
&= ~GTMA_HAS_NO_INSTRUMENTATION
;
2054 pp_printf (buffer
, "0x%x ", subcode
);
2055 pp_right_bracket (buffer
);
2061 /* Dump a GIMPLE_ASM tuple on the pretty_printer BUFFER, SPC spaces of
2062 indent. FLAGS specifies details to show in the dump (see TDF_* in
2066 dump_gimple_asm (pretty_printer
*buffer
, gasm
*gs
, int spc
, dump_flags_t flags
)
2068 unsigned int i
, n
, f
, fields
;
2070 if (flags
& TDF_RAW
)
2072 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+STRING <%n%s%n>", gs
,
2073 gimple_asm_string (gs
));
2075 n
= gimple_asm_noutputs (gs
);
2078 newline_and_indent (buffer
, spc
+ 2);
2079 pp_string (buffer
, "OUTPUT: ");
2080 for (i
= 0; i
< n
; i
++)
2082 dump_generic_node (buffer
, gimple_asm_output_op (gs
, i
),
2085 pp_string (buffer
, ", ");
2089 n
= gimple_asm_ninputs (gs
);
2092 newline_and_indent (buffer
, spc
+ 2);
2093 pp_string (buffer
, "INPUT: ");
2094 for (i
= 0; i
< n
; i
++)
2096 dump_generic_node (buffer
, gimple_asm_input_op (gs
, i
),
2099 pp_string (buffer
, ", ");
2103 n
= gimple_asm_nclobbers (gs
);
2106 newline_and_indent (buffer
, spc
+ 2);
2107 pp_string (buffer
, "CLOBBER: ");
2108 for (i
= 0; i
< n
; i
++)
2110 dump_generic_node (buffer
, gimple_asm_clobber_op (gs
, i
),
2113 pp_string (buffer
, ", ");
2117 n
= gimple_asm_nlabels (gs
);
2120 newline_and_indent (buffer
, spc
+ 2);
2121 pp_string (buffer
, "LABEL: ");
2122 for (i
= 0; i
< n
; i
++)
2124 dump_generic_node (buffer
, gimple_asm_label_op (gs
, i
),
2127 pp_string (buffer
, ", ");
2131 newline_and_indent (buffer
, spc
);
2132 pp_greater (buffer
);
2136 pp_string (buffer
, "__asm__");
2137 if (gimple_asm_volatile_p (gs
))
2138 pp_string (buffer
, " __volatile__");
2139 if (gimple_asm_inline_p (gs
))
2140 pp_string (buffer
, " __inline__");
2141 if (gimple_asm_nlabels (gs
))
2142 pp_string (buffer
, " goto");
2143 pp_string (buffer
, "(\"");
2144 pp_string (buffer
, gimple_asm_string (gs
));
2145 pp_string (buffer
, "\"");
2147 if (gimple_asm_nlabels (gs
))
2149 else if (gimple_asm_nclobbers (gs
))
2151 else if (gimple_asm_ninputs (gs
))
2153 else if (gimple_asm_noutputs (gs
))
2158 for (f
= 0; f
< fields
; ++f
)
2160 pp_string (buffer
, " : ");
2165 n
= gimple_asm_noutputs (gs
);
2166 for (i
= 0; i
< n
; i
++)
2168 dump_generic_node (buffer
, gimple_asm_output_op (gs
, i
),
2171 pp_string (buffer
, ", ");
2176 n
= gimple_asm_ninputs (gs
);
2177 for (i
= 0; i
< n
; i
++)
2179 dump_generic_node (buffer
, gimple_asm_input_op (gs
, i
),
2182 pp_string (buffer
, ", ");
2187 n
= gimple_asm_nclobbers (gs
);
2188 for (i
= 0; i
< n
; i
++)
2190 dump_generic_node (buffer
, gimple_asm_clobber_op (gs
, i
),
2193 pp_string (buffer
, ", ");
2198 n
= gimple_asm_nlabels (gs
);
2199 for (i
= 0; i
< n
; i
++)
2201 dump_generic_node (buffer
, gimple_asm_label_op (gs
, i
),
2204 pp_string (buffer
, ", ");
2213 pp_string (buffer
, ");");
2217 /* Dump ptr_info and range_info for NODE on pretty_printer BUFFER with
2218 SPC spaces of indent. */
2221 dump_ssaname_info (pretty_printer
*buffer
, tree node
, int spc
)
2223 if (TREE_CODE (node
) != SSA_NAME
)
2226 if (POINTER_TYPE_P (TREE_TYPE (node
))
2227 && SSA_NAME_PTR_INFO (node
))
2229 unsigned int align
, misalign
;
2230 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (node
);
2231 pp_string (buffer
, "# PT = ");
2232 pp_points_to_solution (buffer
, &pi
->pt
);
2233 newline_and_indent (buffer
, spc
);
2234 if (get_ptr_info_alignment (pi
, &align
, &misalign
))
2236 pp_printf (buffer
, "# ALIGN = %u, MISALIGN = %u", align
, misalign
);
2237 newline_and_indent (buffer
, spc
);
2241 if (!POINTER_TYPE_P (TREE_TYPE (node
))
2242 && SSA_NAME_RANGE_INFO (node
))
2244 wide_int min
, max
, nonzero_bits
;
2245 value_range_kind range_type
= get_range_info (node
, &min
, &max
);
2247 if (range_type
== VR_VARYING
)
2248 pp_printf (buffer
, "# RANGE VR_VARYING");
2249 else if (range_type
== VR_RANGE
|| range_type
== VR_ANTI_RANGE
)
2251 pp_printf (buffer
, "# RANGE ");
2252 pp_printf (buffer
, "%s[", range_type
== VR_RANGE
? "" : "~");
2253 pp_wide_int (buffer
, min
, TYPE_SIGN (TREE_TYPE (node
)));
2254 pp_printf (buffer
, ", ");
2255 pp_wide_int (buffer
, max
, TYPE_SIGN (TREE_TYPE (node
)));
2256 pp_printf (buffer
, "]");
2258 nonzero_bits
= get_nonzero_bits (node
);
2259 if (nonzero_bits
!= -1)
2261 pp_string (buffer
, " NONZERO ");
2262 pp_wide_int (buffer
, nonzero_bits
, UNSIGNED
);
2264 newline_and_indent (buffer
, spc
);
2268 /* As dump_ssaname_info, but dump to FILE. */
2271 dump_ssaname_info_to_file (FILE *file
, tree node
, int spc
)
2273 pretty_printer buffer
;
2274 pp_needs_newline (&buffer
) = true;
2275 buffer
.buffer
->stream
= file
;
2276 dump_ssaname_info (&buffer
, node
, spc
);
2280 /* Dump a PHI node PHI. BUFFER, SPC and FLAGS are as in pp_gimple_stmt_1.
2281 The caller is responsible for calling pp_flush on BUFFER to finalize
2282 pretty printer. If COMMENT is true, print this after #. */
2285 dump_gimple_phi (pretty_printer
*buffer
, gphi
*phi
, int spc
, bool comment
,
2289 tree lhs
= gimple_phi_result (phi
);
2291 if (flags
& TDF_ALIAS
)
2292 dump_ssaname_info (buffer
, lhs
, spc
);
2295 pp_string (buffer
, "# ");
2297 if (flags
& TDF_RAW
)
2298 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, ", phi
,
2299 gimple_phi_result (phi
));
2302 dump_generic_node (buffer
, lhs
, spc
, flags
, false);
2303 if (flags
& TDF_GIMPLE
)
2304 pp_string (buffer
, " = __PHI (");
2306 pp_string (buffer
, " = PHI <");
2308 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
2310 if ((flags
& TDF_LINENO
) && gimple_phi_arg_has_location (phi
, i
))
2311 dump_location (buffer
, gimple_phi_arg_location (phi
, i
));
2312 basic_block src
= gimple_phi_arg_edge (phi
, i
)->src
;
2313 if (flags
& TDF_GIMPLE
)
2315 pp_string (buffer
, "__BB");
2316 pp_decimal_int (buffer
, src
->index
);
2317 pp_string (buffer
, ": ");
2319 dump_generic_node (buffer
, gimple_phi_arg_def (phi
, i
), spc
, flags
,
2321 if (! (flags
& TDF_GIMPLE
))
2323 pp_left_paren (buffer
);
2324 pp_decimal_int (buffer
, src
->index
);
2325 pp_right_paren (buffer
);
2327 if (i
< gimple_phi_num_args (phi
) - 1)
2328 pp_string (buffer
, ", ");
2330 if (flags
& TDF_GIMPLE
)
2331 pp_string (buffer
, ");");
2333 pp_greater (buffer
);
2337 /* Dump a GIMPLE_OMP_PARALLEL tuple on the pretty_printer BUFFER, SPC spaces
2338 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2342 dump_gimple_omp_parallel (pretty_printer
*buffer
, gomp_parallel
*gs
,
2343 int spc
, dump_flags_t flags
)
2345 if (flags
& TDF_RAW
)
2347 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
2348 gimple_omp_body (gs
));
2349 dump_omp_clauses (buffer
, gimple_omp_parallel_clauses (gs
), spc
, flags
);
2350 dump_gimple_fmt (buffer
, spc
, flags
, " >, %T, %T%n>",
2351 gimple_omp_parallel_child_fn (gs
),
2352 gimple_omp_parallel_data_arg (gs
));
2357 pp_string (buffer
, "#pragma omp parallel");
2358 dump_omp_clauses (buffer
, gimple_omp_parallel_clauses (gs
), spc
, flags
);
2359 if (gimple_omp_parallel_child_fn (gs
))
2361 pp_string (buffer
, " [child fn: ");
2362 dump_generic_node (buffer
, gimple_omp_parallel_child_fn (gs
),
2364 pp_string (buffer
, " (");
2365 if (gimple_omp_parallel_data_arg (gs
))
2366 dump_generic_node (buffer
, gimple_omp_parallel_data_arg (gs
),
2369 pp_string (buffer
, "???");
2370 pp_string (buffer
, ")]");
2372 body
= gimple_omp_body (gs
);
2373 if (body
&& gimple_code (gimple_seq_first_stmt (body
)) != GIMPLE_BIND
)
2375 newline_and_indent (buffer
, spc
+ 2);
2376 pp_left_brace (buffer
);
2377 pp_newline (buffer
);
2378 dump_gimple_seq (buffer
, body
, spc
+ 4, flags
);
2379 newline_and_indent (buffer
, spc
+ 2);
2380 pp_right_brace (buffer
);
2384 pp_newline (buffer
);
2385 dump_gimple_seq (buffer
, body
, spc
+ 2, flags
);
2391 /* Dump a GIMPLE_OMP_TASK tuple on the pretty_printer BUFFER, SPC spaces
2392 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2396 dump_gimple_omp_task (pretty_printer
*buffer
, gomp_task
*gs
, int spc
,
2399 if (flags
& TDF_RAW
)
2401 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%+BODY <%S>%nCLAUSES <", gs
,
2402 gimple_omp_body (gs
));
2403 dump_omp_clauses (buffer
, gimple_omp_task_clauses (gs
), spc
, flags
);
2404 dump_gimple_fmt (buffer
, spc
, flags
, " >, %T, %T, %T, %T, %T%n>",
2405 gimple_omp_task_child_fn (gs
),
2406 gimple_omp_task_data_arg (gs
),
2407 gimple_omp_task_copy_fn (gs
),
2408 gimple_omp_task_arg_size (gs
),
2409 gimple_omp_task_arg_size (gs
));
2414 if (gimple_omp_task_taskloop_p (gs
))
2415 pp_string (buffer
, "#pragma omp taskloop");
2416 else if (gimple_omp_task_taskwait_p (gs
))
2417 pp_string (buffer
, "#pragma omp taskwait");
2419 pp_string (buffer
, "#pragma omp task");
2420 dump_omp_clauses (buffer
, gimple_omp_task_clauses (gs
), spc
, flags
);
2421 if (gimple_omp_task_child_fn (gs
))
2423 pp_string (buffer
, " [child fn: ");
2424 dump_generic_node (buffer
, gimple_omp_task_child_fn (gs
),
2426 pp_string (buffer
, " (");
2427 if (gimple_omp_task_data_arg (gs
))
2428 dump_generic_node (buffer
, gimple_omp_task_data_arg (gs
),
2431 pp_string (buffer
, "???");
2432 pp_string (buffer
, ")]");
2434 body
= gimple_omp_body (gs
);
2435 if (body
&& gimple_code (gimple_seq_first_stmt (body
)) != GIMPLE_BIND
)
2437 newline_and_indent (buffer
, spc
+ 2);
2438 pp_left_brace (buffer
);
2439 pp_newline (buffer
);
2440 dump_gimple_seq (buffer
, body
, spc
+ 4, flags
);
2441 newline_and_indent (buffer
, spc
+ 2);
2442 pp_right_brace (buffer
);
2446 pp_newline (buffer
);
2447 dump_gimple_seq (buffer
, body
, spc
+ 2, flags
);
2453 /* Dump a GIMPLE_OMP_ATOMIC_LOAD tuple on the pretty_printer BUFFER, SPC
2454 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2458 dump_gimple_omp_atomic_load (pretty_printer
*buffer
, gomp_atomic_load
*gs
,
2459 int spc
, dump_flags_t flags
)
2461 if (flags
& TDF_RAW
)
2463 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T, %T>", gs
,
2464 gimple_omp_atomic_load_lhs (gs
),
2465 gimple_omp_atomic_load_rhs (gs
));
2469 pp_string (buffer
, "#pragma omp atomic_load");
2470 dump_omp_atomic_memory_order (buffer
,
2471 gimple_omp_atomic_memory_order (gs
));
2472 if (gimple_omp_atomic_need_value_p (gs
))
2473 pp_string (buffer
, " [needed]");
2474 newline_and_indent (buffer
, spc
+ 2);
2475 dump_generic_node (buffer
, gimple_omp_atomic_load_lhs (gs
),
2481 dump_generic_node (buffer
, gimple_omp_atomic_load_rhs (gs
),
2486 /* Dump a GIMPLE_OMP_ATOMIC_STORE tuple on the pretty_printer BUFFER, SPC
2487 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2491 dump_gimple_omp_atomic_store (pretty_printer
*buffer
,
2492 gomp_atomic_store
*gs
, int spc
,
2495 if (flags
& TDF_RAW
)
2497 dump_gimple_fmt (buffer
, spc
, flags
, "%G <%T>", gs
,
2498 gimple_omp_atomic_store_val (gs
));
2502 pp_string (buffer
, "#pragma omp atomic_store");
2503 dump_omp_atomic_memory_order (buffer
,
2504 gimple_omp_atomic_memory_order (gs
));
2506 if (gimple_omp_atomic_need_value_p (gs
))
2507 pp_string (buffer
, "[needed] ");
2508 pp_left_paren (buffer
);
2509 dump_generic_node (buffer
, gimple_omp_atomic_store_val (gs
),
2511 pp_right_paren (buffer
);
2516 /* Dump all the memory operands for statement GS. BUFFER, SPC and
2517 FLAGS are as in pp_gimple_stmt_1. */
2520 dump_gimple_mem_ops (pretty_printer
*buffer
, gimple
*gs
, int spc
,
2523 tree vdef
= gimple_vdef (gs
);
2524 tree vuse
= gimple_vuse (gs
);
2526 if (vdef
!= NULL_TREE
)
2528 pp_string (buffer
, "# ");
2529 dump_generic_node (buffer
, vdef
, spc
+ 2, flags
, false);
2530 pp_string (buffer
, " = VDEF <");
2531 dump_generic_node (buffer
, vuse
, spc
+ 2, flags
, false);
2532 pp_greater (buffer
);
2533 newline_and_indent (buffer
, spc
);
2535 else if (vuse
!= NULL_TREE
)
2537 pp_string (buffer
, "# VUSE <");
2538 dump_generic_node (buffer
, vuse
, spc
+ 2, flags
, false);
2539 pp_greater (buffer
);
2540 newline_and_indent (buffer
, spc
);
2545 /* Print the gimple statement GS on the pretty printer BUFFER, SPC
2546 spaces of indent. FLAGS specifies details to show in the dump (see
2547 TDF_* in dumpfile.h). The caller is responsible for calling
2548 pp_flush on BUFFER to finalize the pretty printer. */
2551 pp_gimple_stmt_1 (pretty_printer
*buffer
, gimple
*gs
, int spc
,
2557 if (flags
& TDF_STMTADDR
)
2558 pp_printf (buffer
, "<&%p> ", (void *) gs
);
2560 if ((flags
& TDF_LINENO
) && gimple_has_location (gs
))
2561 dump_location (buffer
, gimple_location (gs
));
2565 int lp_nr
= lookup_stmt_eh_lp (gs
);
2567 pp_printf (buffer
, "[LP %d] ", lp_nr
);
2569 pp_printf (buffer
, "[MNT %d] ", -lp_nr
);
2572 if ((flags
& (TDF_VOPS
|TDF_MEMSYMS
))
2573 && gimple_has_mem_ops (gs
))
2574 dump_gimple_mem_ops (buffer
, gs
, spc
, flags
);
2576 if (gimple_has_lhs (gs
)
2577 && (flags
& TDF_ALIAS
))
2578 dump_ssaname_info (buffer
, gimple_get_lhs (gs
), spc
);
2580 switch (gimple_code (gs
))
2583 dump_gimple_asm (buffer
, as_a
<gasm
*> (gs
), spc
, flags
);
2587 dump_gimple_assign (buffer
, as_a
<gassign
*> (gs
), spc
, flags
);
2591 dump_gimple_bind (buffer
, as_a
<gbind
*> (gs
), spc
, flags
);
2595 dump_gimple_call (buffer
, as_a
<gcall
*> (gs
), spc
, flags
);
2599 dump_gimple_cond (buffer
, as_a
<gcond
*> (gs
), spc
, flags
);
2603 dump_gimple_label (buffer
, as_a
<glabel
*> (gs
), spc
, flags
);
2607 dump_gimple_goto (buffer
, as_a
<ggoto
*> (gs
), spc
, flags
);
2611 pp_string (buffer
, "GIMPLE_NOP");
2615 dump_gimple_return (buffer
, as_a
<greturn
*> (gs
), spc
, flags
);
2619 dump_gimple_switch (buffer
, as_a
<gswitch
*> (gs
), spc
, flags
);
2623 dump_gimple_try (buffer
, as_a
<gtry
*> (gs
), spc
, flags
);
2627 dump_gimple_phi (buffer
, as_a
<gphi
*> (gs
), spc
, false, flags
);
2630 case GIMPLE_OMP_PARALLEL
:
2631 dump_gimple_omp_parallel (buffer
, as_a
<gomp_parallel
*> (gs
), spc
,
2635 case GIMPLE_OMP_TASK
:
2636 dump_gimple_omp_task (buffer
, as_a
<gomp_task
*> (gs
), spc
, flags
);
2639 case GIMPLE_OMP_ATOMIC_LOAD
:
2640 dump_gimple_omp_atomic_load (buffer
, as_a
<gomp_atomic_load
*> (gs
),
2644 case GIMPLE_OMP_ATOMIC_STORE
:
2645 dump_gimple_omp_atomic_store (buffer
,
2646 as_a
<gomp_atomic_store
*> (gs
),
2650 case GIMPLE_OMP_FOR
:
2651 dump_gimple_omp_for (buffer
, as_a
<gomp_for
*> (gs
), spc
, flags
);
2654 case GIMPLE_OMP_CONTINUE
:
2655 dump_gimple_omp_continue (buffer
, as_a
<gomp_continue
*> (gs
), spc
,
2659 case GIMPLE_OMP_SINGLE
:
2660 dump_gimple_omp_single (buffer
, as_a
<gomp_single
*> (gs
), spc
,
2664 case GIMPLE_OMP_TARGET
:
2665 dump_gimple_omp_target (buffer
, as_a
<gomp_target
*> (gs
), spc
,
2669 case GIMPLE_OMP_TEAMS
:
2670 dump_gimple_omp_teams (buffer
, as_a
<gomp_teams
*> (gs
), spc
,
2674 case GIMPLE_OMP_RETURN
:
2675 dump_gimple_omp_return (buffer
, gs
, spc
, flags
);
2678 case GIMPLE_OMP_SECTIONS
:
2679 dump_gimple_omp_sections (buffer
, as_a
<gomp_sections
*> (gs
),
2683 case GIMPLE_OMP_SECTIONS_SWITCH
:
2684 pp_string (buffer
, "GIMPLE_SECTIONS_SWITCH");
2687 case GIMPLE_OMP_TASKGROUP
:
2688 dump_gimple_omp_taskgroup (buffer
, gs
, spc
, flags
);
2691 case GIMPLE_OMP_MASTER
:
2692 case GIMPLE_OMP_SECTION
:
2693 case GIMPLE_OMP_GRID_BODY
:
2694 dump_gimple_omp_block (buffer
, gs
, spc
, flags
);
2697 case GIMPLE_OMP_ORDERED
:
2698 dump_gimple_omp_ordered (buffer
, as_a
<gomp_ordered
*> (gs
), spc
,
2702 case GIMPLE_OMP_SCAN
:
2703 dump_gimple_omp_scan (buffer
, as_a
<gomp_scan
*> (gs
), spc
,
2707 case GIMPLE_OMP_CRITICAL
:
2708 dump_gimple_omp_critical (buffer
, as_a
<gomp_critical
*> (gs
), spc
,
2713 dump_gimple_catch (buffer
, as_a
<gcatch
*> (gs
), spc
, flags
);
2716 case GIMPLE_EH_FILTER
:
2717 dump_gimple_eh_filter (buffer
, as_a
<geh_filter
*> (gs
), spc
, flags
);
2720 case GIMPLE_EH_MUST_NOT_THROW
:
2721 dump_gimple_eh_must_not_throw (buffer
,
2722 as_a
<geh_mnt
*> (gs
),
2726 case GIMPLE_EH_ELSE
:
2727 dump_gimple_eh_else (buffer
, as_a
<geh_else
*> (gs
), spc
, flags
);
2731 dump_gimple_resx (buffer
, as_a
<gresx
*> (gs
), spc
, flags
);
2734 case GIMPLE_EH_DISPATCH
:
2735 dump_gimple_eh_dispatch (buffer
, as_a
<geh_dispatch
*> (gs
), spc
,
2740 dump_gimple_debug (buffer
, as_a
<gdebug
*> (gs
), spc
, flags
);
2743 case GIMPLE_PREDICT
:
2744 pp_string (buffer
, "// predicted ");
2745 if (gimple_predict_outcome (gs
))
2746 pp_string (buffer
, "likely by ");
2748 pp_string (buffer
, "unlikely by ");
2749 pp_string (buffer
, predictor_name (gimple_predict_predictor (gs
)));
2750 pp_string (buffer
, " predictor.");
2753 case GIMPLE_TRANSACTION
:
2754 dump_gimple_transaction (buffer
, as_a
<gtransaction
*> (gs
), spc
,
2764 /* Dumps header of basic block BB to OUTF indented by INDENT
2765 spaces and details described by flags. */
2768 dump_gimple_bb_header (FILE *outf
, basic_block bb
, int indent
,
2771 if (flags
& TDF_BLOCKS
)
2773 if (flags
& TDF_LINENO
)
2775 gimple_stmt_iterator gsi
;
2777 fputs (";; ", outf
);
2779 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
2780 if (!is_gimple_debug (gsi_stmt (gsi
))
2781 && get_lineno (gsi_stmt (gsi
)) != UNKNOWN_LOCATION
)
2783 fprintf (outf
, "%*sstarting at line %d",
2784 indent
, "", get_lineno (gsi_stmt (gsi
)));
2787 if (bb
->discriminator
)
2788 fprintf (outf
, ", discriminator %i", bb
->discriminator
);
2794 if (flags
& TDF_GIMPLE
)
2796 fprintf (outf
, "%*s__BB(%d", indent
, "", bb
->index
);
2797 if (bb
->loop_father
->header
== bb
)
2798 fprintf (outf
, ",loop_header(%d)", bb
->loop_father
->num
);
2799 if (bb
->count
.initialized_p ())
2800 fprintf (outf
, ",%s(%d)",
2801 profile_quality_as_string (bb
->count
.quality ()),
2802 bb
->count
.value ());
2803 fprintf (outf
, "):\n");
2806 fprintf (outf
, "%*s<bb %d> %s:\n",
2807 indent
, "", bb
->index
, dump_profile (bb
->count
));
2812 /* Dumps end of basic block BB to buffer BUFFER indented by INDENT
2816 dump_gimple_bb_footer (FILE *outf ATTRIBUTE_UNUSED
,
2817 basic_block bb ATTRIBUTE_UNUSED
,
2818 int indent ATTRIBUTE_UNUSED
,
2819 dump_flags_t flags ATTRIBUTE_UNUSED
)
2821 /* There is currently no GIMPLE-specific basic block info to dump. */
2826 /* Dump PHI nodes of basic block BB to BUFFER with details described
2827 by FLAGS and indented by INDENT spaces. */
2830 dump_phi_nodes (pretty_printer
*buffer
, basic_block bb
, int indent
,
2835 for (i
= gsi_start_phis (bb
); !gsi_end_p (i
); gsi_next (&i
))
2837 gphi
*phi
= i
.phi ();
2838 if (!virtual_operand_p (gimple_phi_result (phi
)) || (flags
& TDF_VOPS
))
2841 dump_gimple_phi (buffer
, phi
, indent
,
2842 (flags
& TDF_GIMPLE
) ? false : true, flags
);
2843 pp_newline (buffer
);
2849 /* Dump jump to basic block BB that is represented implicitly in the cfg
2853 pp_cfg_jump (pretty_printer
*buffer
, edge e
, dump_flags_t flags
)
2855 if (flags
& TDF_GIMPLE
)
2857 pp_string (buffer
, "goto __BB");
2858 pp_decimal_int (buffer
, e
->dest
->index
);
2859 if (e
->probability
.initialized_p ())
2861 pp_string (buffer
, "(");
2863 profile_quality_as_string (e
->probability
.quality ()));
2864 pp_string (buffer
, "(");
2865 pp_decimal_int (buffer
, e
->probability
.value ());
2866 pp_string (buffer
, "))");
2868 pp_semicolon (buffer
);
2872 pp_string (buffer
, "goto <bb ");
2873 pp_decimal_int (buffer
, e
->dest
->index
);
2874 pp_greater (buffer
);
2875 pp_semicolon (buffer
);
2877 dump_edge_probability (buffer
, e
);
2882 /* Dump edges represented implicitly in basic block BB to BUFFER, indented
2883 by INDENT spaces, with details given by FLAGS. */
2886 dump_implicit_edges (pretty_printer
*buffer
, basic_block bb
, int indent
,
2892 stmt
= last_stmt (bb
);
2894 if (stmt
&& gimple_code (stmt
) == GIMPLE_COND
)
2896 edge true_edge
, false_edge
;
2898 /* When we are emitting the code or changing CFG, it is possible that
2899 the edges are not yet created. When we are using debug_bb in such
2900 a situation, we do not want it to crash. */
2901 if (EDGE_COUNT (bb
->succs
) != 2)
2903 extract_true_false_edges_from_block (bb
, &true_edge
, &false_edge
);
2905 INDENT (indent
+ 2);
2906 pp_cfg_jump (buffer
, true_edge
, flags
);
2907 newline_and_indent (buffer
, indent
);
2908 pp_string (buffer
, "else");
2909 newline_and_indent (buffer
, indent
+ 2);
2910 pp_cfg_jump (buffer
, false_edge
, flags
);
2911 pp_newline (buffer
);
2915 /* If there is a fallthru edge, we may need to add an artificial
2916 goto to the dump. */
2917 e
= find_fallthru_edge (bb
->succs
);
2919 if (e
&& (e
->dest
!= bb
->next_bb
|| (flags
& TDF_GIMPLE
)))
2923 if ((flags
& TDF_LINENO
)
2924 && e
->goto_locus
!= UNKNOWN_LOCATION
)
2925 dump_location (buffer
, e
->goto_locus
);
2927 pp_cfg_jump (buffer
, e
, flags
);
2928 pp_newline (buffer
);
2933 /* Dumps basic block BB to buffer BUFFER with details described by FLAGS and
2934 indented by INDENT spaces. */
2937 gimple_dump_bb_buff (pretty_printer
*buffer
, basic_block bb
, int indent
,
2940 gimple_stmt_iterator gsi
;
2942 int label_indent
= indent
- 2;
2944 if (label_indent
< 0)
2947 dump_phi_nodes (buffer
, bb
, indent
, flags
);
2949 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
2953 stmt
= gsi_stmt (gsi
);
2955 curr_indent
= gimple_code (stmt
) == GIMPLE_LABEL
? label_indent
: indent
;
2957 INDENT (curr_indent
);
2958 pp_gimple_stmt_1 (buffer
, stmt
, curr_indent
, flags
);
2959 pp_newline_and_flush (buffer
);
2960 gcc_checking_assert (DECL_STRUCT_FUNCTION (current_function_decl
));
2961 dump_histograms_for_stmt (DECL_STRUCT_FUNCTION (current_function_decl
),
2962 pp_buffer (buffer
)->stream
, stmt
);
2965 dump_implicit_edges (buffer
, bb
, indent
, flags
);
2970 /* Dumps basic block BB to FILE with details described by FLAGS and
2971 indented by INDENT spaces. */
2974 gimple_dump_bb (FILE *file
, basic_block bb
, int indent
, dump_flags_t flags
)
2976 dump_gimple_bb_header (file
, bb
, indent
, flags
);
2977 if (bb
->index
>= NUM_FIXED_BLOCKS
)
2979 pretty_printer buffer
;
2980 pp_needs_newline (&buffer
) = true;
2981 buffer
.buffer
->stream
= file
;
2982 gimple_dump_bb_buff (&buffer
, bb
, indent
, flags
);
2984 dump_gimple_bb_footer (file
, bb
, indent
, flags
);
2987 /* Dumps basic block BB to pretty-printer PP with default dump flags and
2988 no indentation, for use as a label of a DOT graph record-node.
2989 ??? Should just use gimple_dump_bb_buff here, except that value profiling
2990 histogram dumping doesn't know about pretty-printers. */
2993 gimple_dump_bb_for_graph (pretty_printer
*pp
, basic_block bb
)
2995 pp_printf (pp
, "<bb %d>:\n", bb
->index
);
2996 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
2998 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
3001 gphi
*phi
= gsi
.phi ();
3002 if (!virtual_operand_p (gimple_phi_result (phi
))
3003 || (dump_flags
& TDF_VOPS
))
3006 pp_write_text_to_stream (pp
);
3007 pp_string (pp
, "# ");
3008 pp_gimple_stmt_1 (pp
, phi
, 0, dump_flags
);
3010 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
3014 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
3017 gimple
*stmt
= gsi_stmt (gsi
);
3019 pp_write_text_to_stream (pp
);
3020 pp_gimple_stmt_1 (pp
, stmt
, 0, dump_flags
);
3022 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
3024 dump_implicit_edges (pp
, bb
, 0, dump_flags
);
3025 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/true);
3029 /* Handle the %G format for TEXT. Same as %K in handle_K_format in
3030 tree-pretty-print.c but with a Gimple statement as an argument. */
3033 percent_G_format (text_info
*text
)
3035 gimple
*stmt
= va_arg (*text
->args_ptr
, gimple
*);
3037 /* Fall back on the rich location if the statement doesn't have one. */
3038 location_t loc
= gimple_location (stmt
);
3039 if (loc
== UNKNOWN_LOCATION
)
3040 loc
= text
->m_richloc
->get_loc ();
3041 tree block
= gimple_block (stmt
);
3042 percent_K_format (text
, loc
, block
);
3046 # pragma GCC diagnostic pop