1 /* Pretty formatting of GENERIC trees in C syntax.
2 Copyright (C) 2001-2022 Free Software Foundation, Inc.
3 Adapted from c-pretty-print.cc by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
29 #include "tree-pretty-print.h"
30 #include "stor-layout.h"
31 #include "langhooks.h"
32 #include "tree-iterator.h"
34 #include "internal-fn.h"
35 #include "gomp-constants.h"
37 #include "fold-const.h"
39 /* Routines in this file get invoked via the default tree printer
40 used by diagnostics and thus they are called from pp_printf which
41 isn't reentrant. Avoid using pp_printf in this file. */
42 #pragma GCC poison pp_printf
44 /* Disable warnings about quoting issues in the pp_xxx calls below
45 that (intentionally) don't follow GCC diagnostic conventions. */
47 # pragma GCC diagnostic push
48 # pragma GCC diagnostic ignored "-Wformat-diag"
51 /* Local functions, macros and variables. */
52 static const char *op_symbol (const_tree
);
53 static void newline_and_indent (pretty_printer
*, int);
54 static void maybe_init_pretty_print (FILE *);
55 static void print_struct_decl (pretty_printer
*, const_tree
, int, dump_flags_t
);
56 static void do_niy (pretty_printer
*, const_tree
, int, dump_flags_t
);
58 #define INDENT(SPACE) do { \
59 int i; for (i = 0; i<SPACE; i++) pp_space (pp); } while (0)
61 #define NIY do_niy (pp, node, spc, flags)
63 static pretty_printer
*tree_pp
;
65 /* Try to print something for an unknown tree code. */
68 do_niy (pretty_printer
*pp
, const_tree node
, int spc
, dump_flags_t flags
)
72 pp_string (pp
, "<<< Unknown tree: ");
73 pp_string (pp
, get_tree_code_name (TREE_CODE (node
)));
77 len
= TREE_OPERAND_LENGTH (node
);
78 for (i
= 0; i
< len
; ++i
)
80 newline_and_indent (pp
, spc
+2);
81 dump_generic_node (pp
, TREE_OPERAND (node
, i
), spc
+2, flags
, false);
85 pp_string (pp
, " >>>");
88 /* Debugging function to print out a generic expression. */
91 debug_generic_expr (tree t
)
93 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
);
94 fprintf (stderr
, "\n");
97 /* Debugging function to print out a generic statement. */
100 debug_generic_stmt (tree t
)
102 print_generic_stmt (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
);
103 fprintf (stderr
, "\n");
106 /* Debugging function to print out a chain of trees . */
109 debug_tree_chain (tree t
)
115 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
|TDF_UID
);
116 fprintf (stderr
, " ");
120 fprintf (stderr
, "... [cycled back to ");
121 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
|TDF_UID
);
122 fprintf (stderr
, "]");
126 fprintf (stderr
, "\n");
129 /* Prints declaration DECL to the FILE with details specified by FLAGS. */
131 print_generic_decl (FILE *file
, tree decl
, dump_flags_t flags
)
133 maybe_init_pretty_print (file
);
134 print_declaration (tree_pp
, decl
, 2, flags
);
135 pp_write_text_to_stream (tree_pp
);
138 /* Print tree T, and its successors, on file FILE. FLAGS specifies details
139 to show in the dump. See TDF_* in dumpfile.h. */
142 print_generic_stmt (FILE *file
, tree t
, dump_flags_t flags
)
144 maybe_init_pretty_print (file
);
145 dump_generic_node (tree_pp
, t
, 0, flags
, true);
146 pp_newline_and_flush (tree_pp
);
149 /* Print tree T, and its successors, on file FILE. FLAGS specifies details
150 to show in the dump. See TDF_* in dumpfile.h. The output is indented by
154 print_generic_stmt_indented (FILE *file
, tree t
, dump_flags_t flags
, int indent
)
158 maybe_init_pretty_print (file
);
160 for (i
= 0; i
< indent
; i
++)
162 dump_generic_node (tree_pp
, t
, indent
, flags
, true);
163 pp_newline_and_flush (tree_pp
);
166 /* Print a single expression T on file FILE. FLAGS specifies details to show
167 in the dump. See TDF_* in dumpfile.h. */
170 print_generic_expr (FILE *file
, tree t
, dump_flags_t flags
)
172 maybe_init_pretty_print (file
);
173 dump_generic_node (tree_pp
, t
, 0, flags
, false);
177 /* Print a single expression T to string, and return it. The caller
178 must free the returned memory. */
181 print_generic_expr_to_str (tree t
)
184 dump_generic_node (&pp
, t
, 0, TDF_VOPS
|TDF_MEMSYMS
, false);
185 return xstrdup (pp_formatted_text (&pp
));
188 /* Dump NAME, an IDENTIFIER_POINTER, sanitized so that D<num> sequences
189 in it are replaced with Dxxxx, as long as they are at the start or
190 preceded by $ and at the end or followed by $. See make_fancy_name
194 dump_fancy_name (pretty_printer
*pp
, tree name
)
197 int length
= IDENTIFIER_LENGTH (name
);
198 const char *n
= IDENTIFIER_POINTER (name
);
205 && (n
== IDENTIFIER_POINTER (name
) || n
[-1] == '$'))
208 while (ISDIGIT (n
[l
]))
210 if (n
[l
] == '\0' || n
[l
] == '$')
223 pp_tree_identifier (pp
, name
);
227 char *str
= XNEWVEC (char, length
+ 1);
230 q
= n
= IDENTIFIER_POINTER (name
);
237 && (q
== IDENTIFIER_POINTER (name
) || q
[-1] == '$'))
240 while (ISDIGIT (q
[l
]))
242 if (q
[l
] == '\0' || q
[l
] == '$')
244 memcpy (p
, n
, q
- n
);
245 memcpy (p
+ (q
- n
), "Dxxxx", 5);
255 memcpy (p
, n
, IDENTIFIER_LENGTH (name
) - (n
- IDENTIFIER_POINTER (name
)));
257 if (pp_translate_identifiers (pp
))
259 const char *text
= identifier_to_locale (str
);
260 pp_append_text (pp
, text
, text
+ strlen (text
));
263 pp_append_text (pp
, str
, str
+ length
);
267 /* Dump the name of a _DECL node and its DECL_UID if TDF_UID is set
271 dump_decl_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
273 tree name
= DECL_NAME (node
);
276 if ((flags
& TDF_ASMNAME
)
277 && HAS_DECL_ASSEMBLER_NAME_P (node
)
278 && DECL_ASSEMBLER_NAME_SET_P (node
))
279 pp_tree_identifier (pp
, DECL_ASSEMBLER_NAME_RAW (node
));
280 /* For -fcompare-debug don't dump DECL_NAMELESS names at all,
281 -g might have created more fancy names and their indexes
282 could get out of sync. Usually those should be DECL_IGNORED_P
283 too, SRA can create even non-DECL_IGNORED_P DECL_NAMELESS fancy
284 names, let's hope those never get out of sync after doing the
285 dump_fancy_name sanitization. */
286 else if ((flags
& TDF_COMPARE_DEBUG
)
287 && DECL_NAMELESS (node
)
288 && DECL_IGNORED_P (node
))
290 /* For DECL_NAMELESS names look for embedded uids in the
291 names and sanitize them for TDF_NOUID. */
292 else if ((flags
& TDF_NOUID
) && DECL_NAMELESS (node
))
293 dump_fancy_name (pp
, name
);
295 pp_tree_identifier (pp
, name
);
297 char uid_sep
= (flags
& TDF_GIMPLE
) ? '_' : '.';
298 if ((flags
& TDF_UID
) || name
== NULL_TREE
)
300 if (TREE_CODE (node
) == LABEL_DECL
&& LABEL_DECL_UID (node
) != -1)
302 pp_character (pp
, 'L');
303 pp_character (pp
, uid_sep
);
304 pp_decimal_int (pp
, (int) LABEL_DECL_UID (node
));
306 else if (TREE_CODE (node
) == DEBUG_EXPR_DECL
)
308 if (flags
& TDF_NOUID
)
309 pp_string (pp
, "D#xxxx");
312 pp_string (pp
, "D#");
313 pp_decimal_int (pp
, (int) DEBUG_TEMP_UID (node
));
318 char c
= TREE_CODE (node
) == CONST_DECL
? 'C' : 'D';
319 pp_character (pp
, c
);
320 pp_character (pp
, uid_sep
);
321 if (flags
& TDF_NOUID
)
322 pp_string (pp
, "xxxx");
324 pp_scalar (pp
, "%u", DECL_UID (node
));
327 if ((flags
& TDF_ALIAS
) && DECL_PT_UID (node
) != DECL_UID (node
))
329 if (flags
& TDF_NOUID
)
330 pp_string (pp
, "ptD.xxxx");
333 pp_string (pp
, "ptD.");
334 pp_scalar (pp
, "%u", DECL_PT_UID (node
));
339 /* Like the above, but used for pretty printing function calls. */
342 dump_function_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
344 if (CONVERT_EXPR_P (node
))
345 node
= TREE_OPERAND (node
, 0);
346 if (DECL_NAME (node
) && (flags
& TDF_ASMNAME
) == 0)
348 pp_string (pp
, lang_hooks
.decl_printable_name (node
, 1));
351 char uid_sep
= (flags
& TDF_GIMPLE
) ? '_' : '.';
352 pp_character (pp
, 'D');
353 pp_character (pp
, uid_sep
);
354 pp_scalar (pp
, "%u", DECL_UID (node
));
358 dump_decl_name (pp
, node
, flags
);
361 /* Dump a function declaration. NODE is the FUNCTION_TYPE. PP, SPC and
362 FLAGS are as in dump_generic_node. */
365 dump_function_declaration (pretty_printer
*pp
, tree node
,
366 int spc
, dump_flags_t flags
)
368 bool wrote_arg
= false;
374 /* Print the argument types. */
375 arg
= TYPE_ARG_TYPES (node
);
376 while (arg
&& arg
!= void_list_node
&& arg
!= error_mark_node
)
384 dump_generic_node (pp
, TREE_VALUE (arg
), spc
, flags
, false);
385 arg
= TREE_CHAIN (arg
);
388 /* Drop the trailing void_type_node if we had any previous argument. */
389 if (arg
== void_list_node
&& !wrote_arg
)
390 pp_string (pp
, "void");
391 /* Properly dump vararg function types. */
392 else if (!arg
&& wrote_arg
)
393 pp_string (pp
, ", ...");
394 /* Avoid printing any arg for unprototyped functions. */
399 /* Dump the domain associated with an array. */
402 dump_array_domain (pretty_printer
*pp
, tree domain
, int spc
, dump_flags_t flags
)
404 pp_left_bracket (pp
);
407 tree min
= TYPE_MIN_VALUE (domain
);
408 tree max
= TYPE_MAX_VALUE (domain
);
411 && integer_zerop (min
)
412 && tree_fits_shwi_p (max
))
413 pp_wide_integer (pp
, tree_to_shwi (max
) + 1);
417 dump_generic_node (pp
, min
, spc
, flags
, false);
420 dump_generic_node (pp
, max
, spc
, flags
, false);
424 pp_string (pp
, "<unknown>");
425 pp_right_bracket (pp
);
429 /* Dump OpenMP iterators ITER. */
432 dump_omp_iterators (pretty_printer
*pp
, tree iter
, int spc
, dump_flags_t flags
)
434 pp_string (pp
, "iterator(");
435 for (tree it
= iter
; it
; it
= TREE_CHAIN (it
))
438 pp_string (pp
, ", ");
439 dump_generic_node (pp
, TREE_TYPE (TREE_VEC_ELT (it
, 0)), spc
, flags
,
442 dump_generic_node (pp
, TREE_VEC_ELT (it
, 0), spc
, flags
, false);
444 dump_generic_node (pp
, TREE_VEC_ELT (it
, 1), spc
, flags
, false);
446 dump_generic_node (pp
, TREE_VEC_ELT (it
, 2), spc
, flags
, false);
448 dump_generic_node (pp
, TREE_VEC_ELT (it
, 3), spc
, flags
, false);
454 /* Dump OMP clause CLAUSE, without following OMP_CLAUSE_CHAIN.
456 PP, CLAUSE, SPC and FLAGS are as in dump_generic_node. */
459 dump_omp_clause (pretty_printer
*pp
, tree clause
, int spc
, dump_flags_t flags
)
462 const char *modifier
= NULL
;
463 switch (OMP_CLAUSE_CODE (clause
))
465 case OMP_CLAUSE_PRIVATE
:
468 case OMP_CLAUSE_SHARED
:
471 case OMP_CLAUSE_FIRSTPRIVATE
:
472 name
= "firstprivate";
474 case OMP_CLAUSE_LASTPRIVATE
:
475 name
= "lastprivate";
476 if (OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (clause
))
477 modifier
= "conditional:";
479 case OMP_CLAUSE_COPYIN
:
482 case OMP_CLAUSE_COPYPRIVATE
:
483 name
= "copyprivate";
485 case OMP_CLAUSE_UNIFORM
:
488 case OMP_CLAUSE_USE_DEVICE_PTR
:
489 name
= "use_device_ptr";
490 if (OMP_CLAUSE_USE_DEVICE_PTR_IF_PRESENT (clause
))
491 modifier
= "if_present:";
493 case OMP_CLAUSE_USE_DEVICE_ADDR
:
494 name
= "use_device_addr";
496 case OMP_CLAUSE_HAS_DEVICE_ADDR
:
497 name
= "has_device_addr";
499 case OMP_CLAUSE_IS_DEVICE_PTR
:
500 name
= "is_device_ptr";
502 case OMP_CLAUSE_INCLUSIVE
:
505 case OMP_CLAUSE_EXCLUSIVE
:
508 case OMP_CLAUSE__LOOPTEMP_
:
511 case OMP_CLAUSE__REDUCTEMP_
:
512 name
= "_reductemp_";
514 case OMP_CLAUSE__CONDTEMP_
:
517 case OMP_CLAUSE__SCANTEMP_
:
520 case OMP_CLAUSE_ENTER
:
521 if (OMP_CLAUSE_ENTER_TO (clause
))
526 case OMP_CLAUSE_LINK
:
529 case OMP_CLAUSE_NONTEMPORAL
:
530 name
= "nontemporal";
533 pp_string (pp
, name
);
536 pp_string (pp
, modifier
);
537 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
542 case OMP_CLAUSE_TASK_REDUCTION
:
543 case OMP_CLAUSE_IN_REDUCTION
:
544 pp_string (pp
, OMP_CLAUSE_CODE (clause
) == OMP_CLAUSE_IN_REDUCTION
547 case OMP_CLAUSE_REDUCTION
:
548 pp_string (pp
, "reduction(");
549 if (OMP_CLAUSE_CODE (clause
) == OMP_CLAUSE_REDUCTION
)
551 if (OMP_CLAUSE_REDUCTION_TASK (clause
))
552 pp_string (pp
, "task,");
553 else if (OMP_CLAUSE_REDUCTION_INSCAN (clause
))
554 pp_string (pp
, "inscan,");
556 if (OMP_CLAUSE_REDUCTION_CODE (clause
) != ERROR_MARK
)
559 op_symbol_code (OMP_CLAUSE_REDUCTION_CODE (clause
)));
562 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
568 pp_string (pp
, "if(");
569 switch (OMP_CLAUSE_IF_MODIFIER (clause
))
571 case ERROR_MARK
: break;
572 case VOID_CST
: pp_string (pp
, "cancel:"); break;
573 case OMP_PARALLEL
: pp_string (pp
, "parallel:"); break;
574 case OMP_SIMD
: pp_string (pp
, "simd:"); break;
575 case OMP_TASK
: pp_string (pp
, "task:"); break;
576 case OMP_TASKLOOP
: pp_string (pp
, "taskloop:"); break;
577 case OMP_TARGET_DATA
: pp_string (pp
, "target data:"); break;
578 case OMP_TARGET
: pp_string (pp
, "target:"); break;
579 case OMP_TARGET_UPDATE
: pp_string (pp
, "target update:"); break;
580 case OMP_TARGET_ENTER_DATA
:
581 pp_string (pp
, "target enter data:"); break;
582 case OMP_TARGET_EXIT_DATA
: pp_string (pp
, "target exit data:"); break;
583 default: gcc_unreachable ();
585 dump_generic_node (pp
, OMP_CLAUSE_IF_EXPR (clause
),
590 case OMP_CLAUSE_NUM_THREADS
:
591 pp_string (pp
, "num_threads(");
592 dump_generic_node (pp
, OMP_CLAUSE_NUM_THREADS_EXPR (clause
),
597 case OMP_CLAUSE_NOWAIT
:
598 pp_string (pp
, "nowait");
600 case OMP_CLAUSE_ORDERED
:
601 pp_string (pp
, "ordered");
602 if (OMP_CLAUSE_ORDERED_EXPR (clause
))
605 dump_generic_node (pp
, OMP_CLAUSE_ORDERED_EXPR (clause
),
611 case OMP_CLAUSE_DEFAULT
:
612 pp_string (pp
, "default(");
613 switch (OMP_CLAUSE_DEFAULT_KIND (clause
))
615 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
617 case OMP_CLAUSE_DEFAULT_SHARED
:
618 pp_string (pp
, "shared");
620 case OMP_CLAUSE_DEFAULT_NONE
:
621 pp_string (pp
, "none");
623 case OMP_CLAUSE_DEFAULT_PRIVATE
:
624 pp_string (pp
, "private");
626 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE
:
627 pp_string (pp
, "firstprivate");
629 case OMP_CLAUSE_DEFAULT_PRESENT
:
630 pp_string (pp
, "present");
638 case OMP_CLAUSE_SCHEDULE
:
639 pp_string (pp
, "schedule(");
640 if (OMP_CLAUSE_SCHEDULE_KIND (clause
)
641 & (OMP_CLAUSE_SCHEDULE_MONOTONIC
642 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC
))
644 if (OMP_CLAUSE_SCHEDULE_KIND (clause
)
645 & OMP_CLAUSE_SCHEDULE_MONOTONIC
)
646 pp_string (pp
, "monotonic");
648 pp_string (pp
, "nonmonotonic");
649 if (OMP_CLAUSE_SCHEDULE_SIMD (clause
))
654 if (OMP_CLAUSE_SCHEDULE_SIMD (clause
))
655 pp_string (pp
, "simd:");
657 switch (OMP_CLAUSE_SCHEDULE_KIND (clause
) & OMP_CLAUSE_SCHEDULE_MASK
)
659 case OMP_CLAUSE_SCHEDULE_STATIC
:
660 pp_string (pp
, "static");
662 case OMP_CLAUSE_SCHEDULE_DYNAMIC
:
663 pp_string (pp
, "dynamic");
665 case OMP_CLAUSE_SCHEDULE_GUIDED
:
666 pp_string (pp
, "guided");
668 case OMP_CLAUSE_SCHEDULE_RUNTIME
:
669 pp_string (pp
, "runtime");
671 case OMP_CLAUSE_SCHEDULE_AUTO
:
672 pp_string (pp
, "auto");
677 if (OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause
))
680 dump_generic_node (pp
, OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause
),
686 case OMP_CLAUSE_UNTIED
:
687 pp_string (pp
, "untied");
690 case OMP_CLAUSE_COLLAPSE
:
691 pp_string (pp
, "collapse(");
692 dump_generic_node (pp
, OMP_CLAUSE_COLLAPSE_EXPR (clause
),
697 case OMP_CLAUSE_FINAL
:
698 pp_string (pp
, "final(");
699 dump_generic_node (pp
, OMP_CLAUSE_FINAL_EXPR (clause
),
704 case OMP_CLAUSE_MERGEABLE
:
705 pp_string (pp
, "mergeable");
708 case OMP_CLAUSE_LINEAR
:
709 pp_string (pp
, "linear(");
710 if (OMP_CLAUSE_LINEAR_OLD_LINEAR_MODIFIER (clause
))
711 switch (OMP_CLAUSE_LINEAR_KIND (clause
))
713 case OMP_CLAUSE_LINEAR_DEFAULT
:
715 case OMP_CLAUSE_LINEAR_REF
:
716 pp_string (pp
, "ref(");
718 case OMP_CLAUSE_LINEAR_VAL
:
719 pp_string (pp
, "val(");
721 case OMP_CLAUSE_LINEAR_UVAL
:
722 pp_string (pp
, "uval(");
727 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
729 if (OMP_CLAUSE_LINEAR_OLD_LINEAR_MODIFIER (clause
)
730 && OMP_CLAUSE_LINEAR_KIND (clause
) != OMP_CLAUSE_LINEAR_DEFAULT
)
733 if (!OMP_CLAUSE_LINEAR_OLD_LINEAR_MODIFIER (clause
)
734 && OMP_CLAUSE_LINEAR_KIND (clause
) != OMP_CLAUSE_LINEAR_DEFAULT
)
735 switch (OMP_CLAUSE_LINEAR_KIND (clause
))
737 case OMP_CLAUSE_LINEAR_REF
:
738 pp_string (pp
, "ref,step(");
740 case OMP_CLAUSE_LINEAR_VAL
:
741 pp_string (pp
, "val,step(");
743 case OMP_CLAUSE_LINEAR_UVAL
:
744 pp_string (pp
, "uval,step(");
749 dump_generic_node (pp
, OMP_CLAUSE_LINEAR_STEP (clause
),
751 if (!OMP_CLAUSE_LINEAR_OLD_LINEAR_MODIFIER (clause
)
752 && OMP_CLAUSE_LINEAR_KIND (clause
) != OMP_CLAUSE_LINEAR_DEFAULT
)
757 case OMP_CLAUSE_ALIGNED
:
758 pp_string (pp
, "aligned(");
759 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
761 if (OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
))
764 dump_generic_node (pp
, OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
),
770 case OMP_CLAUSE_ALLOCATE
:
771 pp_string (pp
, "allocate(");
772 if (OMP_CLAUSE_ALLOCATE_ALLOCATOR (clause
))
774 pp_string (pp
, "allocator(");
775 dump_generic_node (pp
, OMP_CLAUSE_ALLOCATE_ALLOCATOR (clause
),
779 if (OMP_CLAUSE_ALLOCATE_ALIGN (clause
))
781 if (OMP_CLAUSE_ALLOCATE_ALLOCATOR (clause
))
783 pp_string (pp
, "align(");
784 dump_generic_node (pp
, OMP_CLAUSE_ALLOCATE_ALIGN (clause
),
788 if (OMP_CLAUSE_ALLOCATE_ALLOCATOR (clause
)
789 || OMP_CLAUSE_ALLOCATE_ALIGN (clause
))
791 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
796 case OMP_CLAUSE_AFFINITY
:
797 pp_string (pp
, "affinity(");
799 tree t
= OMP_CLAUSE_DECL (clause
);
800 if (TREE_CODE (t
) == TREE_LIST
802 && TREE_CODE (TREE_PURPOSE (t
)) == TREE_VEC
)
804 dump_omp_iterators (pp
, TREE_PURPOSE (t
), spc
, flags
);
808 dump_generic_node (pp
, t
, spc
, flags
, false);
812 case OMP_CLAUSE_DEPEND
:
813 pp_string (pp
, "depend(");
814 switch (OMP_CLAUSE_DEPEND_KIND (clause
))
816 case OMP_CLAUSE_DEPEND_DEPOBJ
:
819 case OMP_CLAUSE_DEPEND_IN
:
822 case OMP_CLAUSE_DEPEND_OUT
:
825 case OMP_CLAUSE_DEPEND_INOUT
:
828 case OMP_CLAUSE_DEPEND_MUTEXINOUTSET
:
829 name
= "mutexinoutset";
831 case OMP_CLAUSE_DEPEND_INOUTSET
:
834 case OMP_CLAUSE_DEPEND_LAST
:
835 name
= "__internal__";
841 tree t
= OMP_CLAUSE_DECL (clause
);
842 if (TREE_CODE (t
) == TREE_LIST
844 && TREE_CODE (TREE_PURPOSE (t
)) == TREE_VEC
)
846 dump_omp_iterators (pp
, TREE_PURPOSE (t
), spc
, flags
);
852 pp_string (pp
, name
);
855 if (t
== null_pointer_node
)
856 pp_string (pp
, "omp_all_memory");
858 dump_generic_node (pp
, t
, spc
, flags
, false);
863 case OMP_CLAUSE_DOACROSS
:
864 pp_string (pp
, OMP_CLAUSE_DOACROSS_DEPEND (clause
)
865 ? "depend(" : "doacross(");
866 switch (OMP_CLAUSE_DOACROSS_KIND (clause
))
868 case OMP_CLAUSE_DOACROSS_SOURCE
:
869 if (OMP_CLAUSE_DOACROSS_DEPEND (clause
))
870 pp_string (pp
, "source)");
872 pp_string (pp
, "source:)");
874 case OMP_CLAUSE_DOACROSS_SINK
:
875 pp_string (pp
, "sink:");
876 if (OMP_CLAUSE_DECL (clause
) == NULL_TREE
)
878 pp_string (pp
, "omp_cur_iteration-1)");
881 for (tree t
= OMP_CLAUSE_DECL (clause
); t
; t
= TREE_CHAIN (t
))
882 if (TREE_CODE (t
) == TREE_LIST
)
884 dump_generic_node (pp
, TREE_VALUE (t
), spc
, flags
, false);
885 if (TREE_PURPOSE (t
) != integer_zero_node
)
887 if (OMP_CLAUSE_DOACROSS_SINK_NEGATIVE (t
))
891 dump_generic_node (pp
, TREE_PURPOSE (t
), spc
, flags
,
907 pp_string (pp
, "map(");
908 switch (OMP_CLAUSE_MAP_KIND (clause
))
911 case GOMP_MAP_POINTER
:
912 case GOMP_MAP_POINTER_TO_ZERO_LENGTH_ARRAY_SECTION
:
913 pp_string (pp
, "alloc");
915 case GOMP_MAP_IF_PRESENT
:
916 pp_string (pp
, "no_alloc");
919 case GOMP_MAP_TO_PSET
:
920 pp_string (pp
, "to");
923 pp_string (pp
, "from");
925 case GOMP_MAP_TOFROM
:
926 pp_string (pp
, "tofrom");
928 case GOMP_MAP_FORCE_ALLOC
:
929 pp_string (pp
, "force_alloc");
931 case GOMP_MAP_FORCE_TO
:
932 pp_string (pp
, "force_to");
934 case GOMP_MAP_FORCE_FROM
:
935 pp_string (pp
, "force_from");
937 case GOMP_MAP_FORCE_TOFROM
:
938 pp_string (pp
, "force_tofrom");
940 case GOMP_MAP_FORCE_PRESENT
:
941 pp_string (pp
, "force_present");
943 case GOMP_MAP_DELETE
:
944 pp_string (pp
, "delete");
946 case GOMP_MAP_FORCE_DEVICEPTR
:
947 pp_string (pp
, "force_deviceptr");
949 case GOMP_MAP_ALWAYS_TO
:
950 pp_string (pp
, "always,to");
952 case GOMP_MAP_ALWAYS_FROM
:
953 pp_string (pp
, "always,from");
955 case GOMP_MAP_ALWAYS_TOFROM
:
956 pp_string (pp
, "always,tofrom");
958 case GOMP_MAP_RELEASE
:
959 pp_string (pp
, "release");
961 case GOMP_MAP_FIRSTPRIVATE_POINTER
:
962 pp_string (pp
, "firstprivate");
964 case GOMP_MAP_FIRSTPRIVATE_REFERENCE
:
965 pp_string (pp
, "firstprivate ref");
967 case GOMP_MAP_STRUCT
:
968 pp_string (pp
, "struct");
970 case GOMP_MAP_ALWAYS_POINTER
:
971 pp_string (pp
, "always_pointer");
973 case GOMP_MAP_DEVICE_RESIDENT
:
974 pp_string (pp
, "device_resident");
977 pp_string (pp
, "link");
979 case GOMP_MAP_ATTACH
:
980 pp_string (pp
, "attach");
982 case GOMP_MAP_DETACH
:
983 pp_string (pp
, "detach");
985 case GOMP_MAP_FORCE_DETACH
:
986 pp_string (pp
, "force_detach");
988 case GOMP_MAP_ATTACH_DETACH
:
989 pp_string (pp
, "attach_detach");
991 case GOMP_MAP_ATTACH_ZERO_LENGTH_ARRAY_SECTION
:
992 pp_string (pp
, "attach_zero_length_array_section");
998 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
1001 if (OMP_CLAUSE_SIZE (clause
))
1003 switch (OMP_CLAUSE_CODE (clause
) == OMP_CLAUSE_MAP
1004 ? OMP_CLAUSE_MAP_KIND (clause
) : GOMP_MAP_TO
)
1006 case GOMP_MAP_POINTER
:
1007 case GOMP_MAP_FIRSTPRIVATE_POINTER
:
1008 case GOMP_MAP_FIRSTPRIVATE_REFERENCE
:
1009 case GOMP_MAP_ALWAYS_POINTER
:
1010 pp_string (pp
, " [pointer assign, bias: ");
1012 case GOMP_MAP_POINTER_TO_ZERO_LENGTH_ARRAY_SECTION
:
1013 pp_string (pp
, " [pointer assign, zero-length array section, bias: ");
1015 case GOMP_MAP_TO_PSET
:
1016 pp_string (pp
, " [pointer set, len: ");
1018 case GOMP_MAP_ATTACH
:
1019 case GOMP_MAP_DETACH
:
1020 case GOMP_MAP_FORCE_DETACH
:
1021 case GOMP_MAP_ATTACH_DETACH
:
1022 case GOMP_MAP_ATTACH_ZERO_LENGTH_ARRAY_SECTION
:
1023 pp_string (pp
, " [bias: ");
1026 pp_string (pp
, " [len: ");
1029 dump_generic_node (pp
, OMP_CLAUSE_SIZE (clause
),
1031 pp_right_bracket (pp
);
1033 if (OMP_CLAUSE_CODE (clause
) == OMP_CLAUSE_MAP
1034 && OMP_CLAUSE_MAP_RUNTIME_IMPLICIT_P (clause
))
1035 pp_string (pp
, "[implicit]");
1036 pp_right_paren (pp
);
1039 case OMP_CLAUSE_FROM
:
1040 pp_string (pp
, "from(");
1041 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
1043 goto print_clause_size
;
1046 pp_string (pp
, "to(");
1047 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
1049 goto print_clause_size
;
1051 case OMP_CLAUSE__CACHE_
:
1052 pp_string (pp
, "(");
1053 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
1055 goto print_clause_size
;
1057 case OMP_CLAUSE_NUM_TEAMS
:
1058 pp_string (pp
, "num_teams(");
1059 if (OMP_CLAUSE_NUM_TEAMS_LOWER_EXPR (clause
))
1061 dump_generic_node (pp
, OMP_CLAUSE_NUM_TEAMS_LOWER_EXPR (clause
),
1065 dump_generic_node (pp
, OMP_CLAUSE_NUM_TEAMS_UPPER_EXPR (clause
),
1067 pp_right_paren (pp
);
1070 case OMP_CLAUSE_THREAD_LIMIT
:
1071 pp_string (pp
, "thread_limit(");
1072 dump_generic_node (pp
, OMP_CLAUSE_THREAD_LIMIT_EXPR (clause
),
1074 pp_right_paren (pp
);
1077 case OMP_CLAUSE_DEVICE
:
1078 pp_string (pp
, "device(");
1079 if (OMP_CLAUSE_DEVICE_ANCESTOR (clause
))
1080 pp_string (pp
, "ancestor:");
1081 dump_generic_node (pp
, OMP_CLAUSE_DEVICE_ID (clause
),
1083 pp_right_paren (pp
);
1086 case OMP_CLAUSE_DIST_SCHEDULE
:
1087 pp_string (pp
, "dist_schedule(static");
1088 if (OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (clause
))
1091 dump_generic_node (pp
,
1092 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (clause
),
1095 pp_right_paren (pp
);
1098 case OMP_CLAUSE_PROC_BIND
:
1099 pp_string (pp
, "proc_bind(");
1100 switch (OMP_CLAUSE_PROC_BIND_KIND (clause
))
1102 case OMP_CLAUSE_PROC_BIND_MASTER
:
1103 /* Same enum value: case OMP_CLAUSE_PROC_BIND_PRIMARY: */
1104 /* TODO: Change to 'primary' for OpenMP 5.1. */
1105 pp_string (pp
, "master");
1107 case OMP_CLAUSE_PROC_BIND_CLOSE
:
1108 pp_string (pp
, "close");
1110 case OMP_CLAUSE_PROC_BIND_SPREAD
:
1111 pp_string (pp
, "spread");
1116 pp_right_paren (pp
);
1119 case OMP_CLAUSE_DEVICE_TYPE
:
1120 pp_string (pp
, "device_type(");
1121 switch (OMP_CLAUSE_DEVICE_TYPE_KIND (clause
))
1123 case OMP_CLAUSE_DEVICE_TYPE_HOST
:
1124 pp_string (pp
, "host");
1126 case OMP_CLAUSE_DEVICE_TYPE_NOHOST
:
1127 pp_string (pp
, "nohost");
1129 case OMP_CLAUSE_DEVICE_TYPE_ANY
:
1130 pp_string (pp
, "any");
1135 pp_right_paren (pp
);
1138 case OMP_CLAUSE_SAFELEN
:
1139 pp_string (pp
, "safelen(");
1140 dump_generic_node (pp
, OMP_CLAUSE_SAFELEN_EXPR (clause
),
1142 pp_right_paren (pp
);
1145 case OMP_CLAUSE_SIMDLEN
:
1146 pp_string (pp
, "simdlen(");
1147 dump_generic_node (pp
, OMP_CLAUSE_SIMDLEN_EXPR (clause
),
1149 pp_right_paren (pp
);
1152 case OMP_CLAUSE_PRIORITY
:
1153 pp_string (pp
, "priority(");
1154 dump_generic_node (pp
, OMP_CLAUSE_PRIORITY_EXPR (clause
),
1156 pp_right_paren (pp
);
1159 case OMP_CLAUSE_GRAINSIZE
:
1160 pp_string (pp
, "grainsize(");
1161 if (OMP_CLAUSE_GRAINSIZE_STRICT (clause
))
1162 pp_string (pp
, "strict:");
1163 dump_generic_node (pp
, OMP_CLAUSE_GRAINSIZE_EXPR (clause
),
1165 pp_right_paren (pp
);
1168 case OMP_CLAUSE_NUM_TASKS
:
1169 pp_string (pp
, "num_tasks(");
1170 if (OMP_CLAUSE_NUM_TASKS_STRICT (clause
))
1171 pp_string (pp
, "strict:");
1172 dump_generic_node (pp
, OMP_CLAUSE_NUM_TASKS_EXPR (clause
),
1174 pp_right_paren (pp
);
1177 case OMP_CLAUSE_HINT
:
1178 pp_string (pp
, "hint(");
1179 dump_generic_node (pp
, OMP_CLAUSE_HINT_EXPR (clause
),
1181 pp_right_paren (pp
);
1184 case OMP_CLAUSE_FILTER
:
1185 pp_string (pp
, "filter(");
1186 dump_generic_node (pp
, OMP_CLAUSE_FILTER_EXPR (clause
),
1188 pp_right_paren (pp
);
1191 case OMP_CLAUSE_DEFAULTMAP
:
1192 pp_string (pp
, "defaultmap(");
1193 switch (OMP_CLAUSE_DEFAULTMAP_BEHAVIOR (clause
))
1195 case OMP_CLAUSE_DEFAULTMAP_ALLOC
:
1196 pp_string (pp
, "alloc");
1198 case OMP_CLAUSE_DEFAULTMAP_TO
:
1199 pp_string (pp
, "to");
1201 case OMP_CLAUSE_DEFAULTMAP_FROM
:
1202 pp_string (pp
, "from");
1204 case OMP_CLAUSE_DEFAULTMAP_TOFROM
:
1205 pp_string (pp
, "tofrom");
1207 case OMP_CLAUSE_DEFAULTMAP_FIRSTPRIVATE
:
1208 pp_string (pp
, "firstprivate");
1210 case OMP_CLAUSE_DEFAULTMAP_NONE
:
1211 pp_string (pp
, "none");
1213 case OMP_CLAUSE_DEFAULTMAP_DEFAULT
:
1214 pp_string (pp
, "default");
1219 switch (OMP_CLAUSE_DEFAULTMAP_CATEGORY (clause
))
1221 case OMP_CLAUSE_DEFAULTMAP_CATEGORY_UNSPECIFIED
:
1223 case OMP_CLAUSE_DEFAULTMAP_CATEGORY_SCALAR
:
1224 pp_string (pp
, ":scalar");
1226 case OMP_CLAUSE_DEFAULTMAP_CATEGORY_AGGREGATE
:
1227 pp_string (pp
, ":aggregate");
1229 case OMP_CLAUSE_DEFAULTMAP_CATEGORY_ALLOCATABLE
:
1230 pp_string (pp
, ":allocatable");
1232 case OMP_CLAUSE_DEFAULTMAP_CATEGORY_POINTER
:
1233 pp_string (pp
, ":pointer");
1238 pp_right_paren (pp
);
1241 case OMP_CLAUSE_ORDER
:
1242 pp_string (pp
, "order(");
1243 if (OMP_CLAUSE_ORDER_UNCONSTRAINED (clause
))
1244 pp_string (pp
, "unconstrained:");
1245 else if (OMP_CLAUSE_ORDER_REPRODUCIBLE (clause
))
1246 pp_string (pp
, "reproducible:");
1247 pp_string (pp
, "concurrent)");
1250 case OMP_CLAUSE_BIND
:
1251 pp_string (pp
, "bind(");
1252 switch (OMP_CLAUSE_BIND_KIND (clause
))
1254 case OMP_CLAUSE_BIND_TEAMS
:
1255 pp_string (pp
, "teams");
1257 case OMP_CLAUSE_BIND_PARALLEL
:
1258 pp_string (pp
, "parallel");
1260 case OMP_CLAUSE_BIND_THREAD
:
1261 pp_string (pp
, "thread");
1266 pp_right_paren (pp
);
1269 case OMP_CLAUSE__SIMDUID_
:
1270 pp_string (pp
, "_simduid_(");
1271 dump_generic_node (pp
, OMP_CLAUSE__SIMDUID__DECL (clause
),
1273 pp_right_paren (pp
);
1276 case OMP_CLAUSE__SIMT_
:
1277 pp_string (pp
, "_simt_");
1280 case OMP_CLAUSE_GANG
:
1281 pp_string (pp
, "gang");
1282 if (OMP_CLAUSE_GANG_EXPR (clause
) != NULL_TREE
)
1284 pp_string (pp
, "(num: ");
1285 dump_generic_node (pp
, OMP_CLAUSE_GANG_EXPR (clause
),
1288 if (OMP_CLAUSE_GANG_STATIC_EXPR (clause
) != NULL_TREE
)
1290 if (OMP_CLAUSE_GANG_EXPR (clause
) == NULL_TREE
)
1294 pp_string (pp
, "static:");
1295 if (OMP_CLAUSE_GANG_STATIC_EXPR (clause
)
1296 == integer_minus_one_node
)
1297 pp_character (pp
, '*');
1299 dump_generic_node (pp
, OMP_CLAUSE_GANG_STATIC_EXPR (clause
),
1302 if (OMP_CLAUSE_GANG_EXPR (clause
) != NULL_TREE
1303 || OMP_CLAUSE_GANG_STATIC_EXPR (clause
) != NULL_TREE
)
1304 pp_right_paren (pp
);
1307 case OMP_CLAUSE_ASYNC
:
1308 pp_string (pp
, "async");
1309 if (OMP_CLAUSE_ASYNC_EXPR (clause
))
1311 pp_character(pp
, '(');
1312 dump_generic_node (pp
, OMP_CLAUSE_ASYNC_EXPR (clause
),
1314 pp_character(pp
, ')');
1318 case OMP_CLAUSE_AUTO
:
1319 case OMP_CLAUSE_SEQ
:
1320 pp_string (pp
, omp_clause_code_name
[OMP_CLAUSE_CODE (clause
)]);
1323 case OMP_CLAUSE_WAIT
:
1324 pp_string (pp
, "wait(");
1325 dump_generic_node (pp
, OMP_CLAUSE_WAIT_EXPR (clause
),
1327 pp_character(pp
, ')');
1330 case OMP_CLAUSE_WORKER
:
1331 pp_string (pp
, "worker");
1332 if (OMP_CLAUSE_WORKER_EXPR (clause
) != NULL_TREE
)
1335 dump_generic_node (pp
, OMP_CLAUSE_WORKER_EXPR (clause
),
1337 pp_right_paren (pp
);
1341 case OMP_CLAUSE_VECTOR
:
1342 pp_string (pp
, "vector");
1343 if (OMP_CLAUSE_VECTOR_EXPR (clause
) != NULL_TREE
)
1346 dump_generic_node (pp
, OMP_CLAUSE_VECTOR_EXPR (clause
),
1348 pp_right_paren (pp
);
1352 case OMP_CLAUSE_NUM_GANGS
:
1353 pp_string (pp
, "num_gangs(");
1354 dump_generic_node (pp
, OMP_CLAUSE_NUM_GANGS_EXPR (clause
),
1356 pp_character (pp
, ')');
1359 case OMP_CLAUSE_NUM_WORKERS
:
1360 pp_string (pp
, "num_workers(");
1361 dump_generic_node (pp
, OMP_CLAUSE_NUM_WORKERS_EXPR (clause
),
1363 pp_character (pp
, ')');
1366 case OMP_CLAUSE_VECTOR_LENGTH
:
1367 pp_string (pp
, "vector_length(");
1368 dump_generic_node (pp
, OMP_CLAUSE_VECTOR_LENGTH_EXPR (clause
),
1370 pp_character (pp
, ')');
1373 case OMP_CLAUSE_INBRANCH
:
1374 pp_string (pp
, "inbranch");
1376 case OMP_CLAUSE_NOTINBRANCH
:
1377 pp_string (pp
, "notinbranch");
1379 case OMP_CLAUSE_FOR
:
1380 pp_string (pp
, "for");
1382 case OMP_CLAUSE_PARALLEL
:
1383 pp_string (pp
, "parallel");
1385 case OMP_CLAUSE_SECTIONS
:
1386 pp_string (pp
, "sections");
1388 case OMP_CLAUSE_TASKGROUP
:
1389 pp_string (pp
, "taskgroup");
1391 case OMP_CLAUSE_NOGROUP
:
1392 pp_string (pp
, "nogroup");
1394 case OMP_CLAUSE_THREADS
:
1395 pp_string (pp
, "threads");
1397 case OMP_CLAUSE_SIMD
:
1398 pp_string (pp
, "simd");
1400 case OMP_CLAUSE_INDEPENDENT
:
1401 pp_string (pp
, "independent");
1403 case OMP_CLAUSE_TILE
:
1404 pp_string (pp
, "tile(");
1405 dump_generic_node (pp
, OMP_CLAUSE_TILE_LIST (clause
),
1407 pp_right_paren (pp
);
1410 case OMP_CLAUSE_IF_PRESENT
:
1411 pp_string (pp
, "if_present");
1413 case OMP_CLAUSE_FINALIZE
:
1414 pp_string (pp
, "finalize");
1416 case OMP_CLAUSE_NOHOST
:
1417 pp_string (pp
, "nohost");
1419 case OMP_CLAUSE_DETACH
:
1420 pp_string (pp
, "detach(");
1421 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
), spc
, flags
,
1423 pp_right_paren (pp
);
1432 /* Dump chain of OMP clauses.
1434 PP, SPC and FLAGS are as in dump_generic_node. */
1437 dump_omp_clauses (pretty_printer
*pp
, tree clause
, int spc
, dump_flags_t flags
,
1444 dump_omp_clause (pp
, clause
, spc
, flags
);
1445 leading_space
= true;
1447 clause
= OMP_CLAUSE_CHAIN (clause
);
1452 /* Dump location LOC to PP. */
1455 dump_location (pretty_printer
*pp
, location_t loc
)
1457 expanded_location xloc
= expand_location (loc
);
1458 int discriminator
= get_discriminator_from_loc (loc
);
1460 pp_left_bracket (pp
);
1463 pp_string (pp
, xloc
.file
);
1464 pp_string (pp
, ":");
1466 pp_decimal_int (pp
, xloc
.line
);
1468 pp_decimal_int (pp
, xloc
.column
);
1471 pp_string (pp
, " discrim ");
1472 pp_decimal_int (pp
, discriminator
);
1474 pp_string (pp
, "] ");
1478 /* Dump lexical block BLOCK. PP, SPC and FLAGS are as in
1479 dump_generic_node. */
1482 dump_block_node (pretty_printer
*pp
, tree block
, int spc
, dump_flags_t flags
)
1486 pp_string (pp
, "BLOCK #");
1487 pp_decimal_int (pp
, BLOCK_NUMBER (block
));
1488 pp_character (pp
, ' ');
1490 if (flags
& TDF_ADDRESS
)
1492 pp_character (pp
, '[');
1493 pp_scalar (pp
, "%p", (void *) block
);
1494 pp_string (pp
, "] ");
1497 if (TREE_ASM_WRITTEN (block
))
1498 pp_string (pp
, "[written] ");
1500 if (flags
& TDF_SLIM
)
1503 if (BLOCK_SOURCE_LOCATION (block
))
1504 dump_location (pp
, BLOCK_SOURCE_LOCATION (block
));
1506 newline_and_indent (pp
, spc
+ 2);
1508 if (BLOCK_SUPERCONTEXT (block
))
1510 pp_string (pp
, "SUPERCONTEXT: ");
1511 dump_generic_node (pp
, BLOCK_SUPERCONTEXT (block
), 0,
1512 flags
| TDF_SLIM
, false);
1513 newline_and_indent (pp
, spc
+ 2);
1516 if (BLOCK_SUBBLOCKS (block
))
1518 pp_string (pp
, "SUBBLOCKS: ");
1519 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
1521 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1524 newline_and_indent (pp
, spc
+ 2);
1527 if (BLOCK_CHAIN (block
))
1529 pp_string (pp
, "SIBLINGS: ");
1530 for (t
= BLOCK_CHAIN (block
); t
; t
= BLOCK_CHAIN (t
))
1532 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1535 newline_and_indent (pp
, spc
+ 2);
1538 if (BLOCK_VARS (block
))
1540 pp_string (pp
, "VARS: ");
1541 for (t
= BLOCK_VARS (block
); t
; t
= TREE_CHAIN (t
))
1543 dump_generic_node (pp
, t
, 0, flags
, false);
1546 newline_and_indent (pp
, spc
+ 2);
1549 if (vec_safe_length (BLOCK_NONLOCALIZED_VARS (block
)) > 0)
1552 vec
<tree
, va_gc
> *nlv
= BLOCK_NONLOCALIZED_VARS (block
);
1554 pp_string (pp
, "NONLOCALIZED_VARS: ");
1555 FOR_EACH_VEC_ELT (*nlv
, i
, t
)
1557 dump_generic_node (pp
, t
, 0, flags
, false);
1560 newline_and_indent (pp
, spc
+ 2);
1563 if (BLOCK_ABSTRACT_ORIGIN (block
))
1565 pp_string (pp
, "ABSTRACT_ORIGIN: ");
1566 dump_generic_node (pp
, BLOCK_ABSTRACT_ORIGIN (block
), 0,
1567 flags
| TDF_SLIM
, false);
1568 newline_and_indent (pp
, spc
+ 2);
1571 if (BLOCK_FRAGMENT_ORIGIN (block
))
1573 pp_string (pp
, "FRAGMENT_ORIGIN: ");
1574 dump_generic_node (pp
, BLOCK_FRAGMENT_ORIGIN (block
), 0,
1575 flags
| TDF_SLIM
, false);
1576 newline_and_indent (pp
, spc
+ 2);
1579 if (BLOCK_FRAGMENT_CHAIN (block
))
1581 pp_string (pp
, "FRAGMENT_CHAIN: ");
1582 for (t
= BLOCK_FRAGMENT_CHAIN (block
); t
; t
= BLOCK_FRAGMENT_CHAIN (t
))
1584 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1587 newline_and_indent (pp
, spc
+ 2);
1591 /* Dump #pragma omp atomic memory order clause. */
1594 dump_omp_atomic_memory_order (pretty_printer
*pp
, enum omp_memory_order mo
)
1596 switch (mo
& OMP_MEMORY_ORDER_MASK
)
1598 case OMP_MEMORY_ORDER_RELAXED
:
1599 pp_string (pp
, " relaxed");
1601 case OMP_MEMORY_ORDER_SEQ_CST
:
1602 pp_string (pp
, " seq_cst");
1604 case OMP_MEMORY_ORDER_ACQ_REL
:
1605 pp_string (pp
, " acq_rel");
1607 case OMP_MEMORY_ORDER_ACQUIRE
:
1608 pp_string (pp
, " acquire");
1610 case OMP_MEMORY_ORDER_RELEASE
:
1611 pp_string (pp
, " release");
1613 case OMP_MEMORY_ORDER_UNSPECIFIED
:
1618 switch (mo
& OMP_FAIL_MEMORY_ORDER_MASK
)
1620 case OMP_FAIL_MEMORY_ORDER_RELAXED
:
1621 pp_string (pp
, " fail(relaxed)");
1623 case OMP_FAIL_MEMORY_ORDER_SEQ_CST
:
1624 pp_string (pp
, " fail(seq_cst)");
1626 case OMP_FAIL_MEMORY_ORDER_ACQUIRE
:
1627 pp_string (pp
, " fail(acquire)");
1629 case OMP_FAIL_MEMORY_ORDER_UNSPECIFIED
:
1636 /* Helper to dump a MEM_REF node. */
1639 dump_mem_ref (pretty_printer
*pp
, tree node
, int spc
, dump_flags_t flags
)
1641 if (TREE_CODE (node
) == MEM_REF
&& (flags
& TDF_GIMPLE
))
1643 pp_string (pp
, "__MEM <");
1644 dump_generic_node (pp
, TREE_TYPE (node
),
1645 spc
, flags
| TDF_SLIM
, false);
1646 if (TYPE_ALIGN (TREE_TYPE (node
))
1647 != TYPE_ALIGN (TYPE_MAIN_VARIANT (TREE_TYPE (node
))))
1649 pp_string (pp
, ", ");
1650 pp_decimal_int (pp
, TYPE_ALIGN (TREE_TYPE (node
)));
1653 pp_string (pp
, " (");
1654 if (TREE_TYPE (TREE_OPERAND (node
, 0))
1655 != TREE_TYPE (TREE_OPERAND (node
, 1)))
1658 dump_generic_node (pp
, TREE_TYPE (TREE_OPERAND (node
, 1)),
1659 spc
, flags
| TDF_SLIM
, false);
1660 pp_right_paren (pp
);
1662 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
1663 spc
, flags
| TDF_SLIM
, false);
1664 if (! integer_zerop (TREE_OPERAND (node
, 1)))
1666 pp_string (pp
, " + ");
1667 dump_generic_node (pp
, TREE_OPERAND (node
, 1),
1668 spc
, flags
| TDF_SLIM
, false);
1670 pp_right_paren (pp
);
1672 else if (TREE_CODE (node
) == MEM_REF
1673 && integer_zerop (TREE_OPERAND (node
, 1))
1674 /* Dump the types of INTEGER_CSTs explicitly, for we can't
1675 infer them and MEM_ATTR caching will share MEM_REFs
1676 with differently-typed op0s. */
1677 && TREE_CODE (TREE_OPERAND (node
, 0)) != INTEGER_CST
1678 /* Released SSA_NAMES have no TREE_TYPE. */
1679 && TREE_TYPE (TREE_OPERAND (node
, 0)) != NULL_TREE
1680 /* Same pointer types, but ignoring POINTER_TYPE vs.
1682 && (TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 0)))
1683 == TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 1))))
1684 && (TYPE_MODE (TREE_TYPE (TREE_OPERAND (node
, 0)))
1685 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (node
, 1))))
1686 && (TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (node
, 0)))
1687 == TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (node
, 1))))
1688 /* Same value types ignoring qualifiers. */
1689 && (TYPE_MAIN_VARIANT (TREE_TYPE (node
))
1690 == TYPE_MAIN_VARIANT
1691 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 1)))))
1692 && (!(flags
& TDF_ALIAS
)
1693 || MR_DEPENDENCE_CLIQUE (node
) == 0))
1695 if (TREE_CODE (TREE_OPERAND (node
, 0)) != ADDR_EXPR
)
1697 /* Enclose pointers to arrays in parentheses. */
1698 tree op0
= TREE_OPERAND (node
, 0);
1699 tree op0type
= TREE_TYPE (op0
);
1700 if (POINTER_TYPE_P (op0type
)
1701 && TREE_CODE (TREE_TYPE (op0type
)) == ARRAY_TYPE
)
1704 dump_generic_node (pp
, op0
, spc
, flags
, false);
1705 if (POINTER_TYPE_P (op0type
)
1706 && TREE_CODE (TREE_TYPE (op0type
)) == ARRAY_TYPE
)
1707 pp_right_paren (pp
);
1710 dump_generic_node (pp
,
1711 TREE_OPERAND (TREE_OPERAND (node
, 0), 0),
1716 pp_string (pp
, "MEM");
1718 tree nodetype
= TREE_TYPE (node
);
1719 tree op0
= TREE_OPERAND (node
, 0);
1720 tree op1
= TREE_OPERAND (node
, 1);
1721 tree op1type
= TYPE_MAIN_VARIANT (TREE_TYPE (op1
));
1723 tree op0size
= TYPE_SIZE (nodetype
);
1724 tree op1size
= TYPE_SIZE (TREE_TYPE (op1type
));
1726 if (!op0size
|| !op1size
1727 || !operand_equal_p (op0size
, op1size
, 0))
1729 pp_string (pp
, " <");
1730 /* If the size of the type of the operand is not the same
1731 as the size of the MEM_REF expression include the type
1732 of the latter similar to the TDF_GIMPLE output to make
1733 it clear how many bytes of memory are being accessed. */
1734 dump_generic_node (pp
, nodetype
, spc
, flags
| TDF_SLIM
, false);
1735 pp_string (pp
, "> ");
1738 pp_string (pp
, "[(");
1739 dump_generic_node (pp
, op1type
, spc
, flags
| TDF_SLIM
, false);
1740 pp_right_paren (pp
);
1741 dump_generic_node (pp
, op0
, spc
, flags
, false);
1742 if (!integer_zerop (op1
))
1744 pp_string (pp
, " + ");
1745 dump_generic_node (pp
, op1
, spc
, flags
, false);
1747 if (TREE_CODE (node
) == TARGET_MEM_REF
)
1749 tree tmp
= TMR_INDEX2 (node
);
1752 pp_string (pp
, " + ");
1753 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1755 tmp
= TMR_INDEX (node
);
1758 pp_string (pp
, " + ");
1759 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1760 tmp
= TMR_STEP (node
);
1761 pp_string (pp
, " * ");
1763 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1765 pp_string (pp
, "1");
1768 if ((flags
& TDF_ALIAS
)
1769 && MR_DEPENDENCE_CLIQUE (node
) != 0)
1771 pp_string (pp
, " clique ");
1772 pp_unsigned_wide_integer (pp
, MR_DEPENDENCE_CLIQUE (node
));
1773 pp_string (pp
, " base ");
1774 pp_unsigned_wide_integer (pp
, MR_DEPENDENCE_BASE (node
));
1776 pp_right_bracket (pp
);
1780 /* Helper function for dump_generic_node. Dump INIT or COND expression for
1781 OpenMP loop non-rectangular iterators. */
1784 dump_omp_loop_non_rect_expr (pretty_printer
*pp
, tree node
, int spc
,
1787 gcc_assert (TREE_CODE (node
) == TREE_VEC
);
1788 dump_generic_node (pp
, TREE_VEC_ELT (node
, 0), spc
, flags
, false);
1789 pp_string (pp
, " * ");
1790 if (op_prio (TREE_VEC_ELT (node
, 1)) <= op_code_prio (MULT_EXPR
))
1793 dump_generic_node (pp
, TREE_VEC_ELT (node
, 1), spc
, flags
, false);
1794 pp_right_paren (pp
);
1797 dump_generic_node (pp
, TREE_VEC_ELT (node
, 1), spc
, flags
, false);
1798 pp_string (pp
, " + ");
1799 if (op_prio (TREE_VEC_ELT (node
, 1)) <= op_code_prio (PLUS_EXPR
))
1802 dump_generic_node (pp
, TREE_VEC_ELT (node
, 2), spc
, flags
, false);
1803 pp_right_paren (pp
);
1806 dump_generic_node (pp
, TREE_VEC_ELT (node
, 2), spc
, flags
, false);
1809 /* Dump the node NODE on the pretty_printer PP, SPC spaces of
1810 indent. FLAGS specifies details to show in the dump (see TDF_* in
1811 dumpfile.h). If IS_STMT is true, the object printed is considered
1812 to be a statement and it is terminated by ';' if appropriate. */
1815 dump_generic_node (pretty_printer
*pp
, tree node
, int spc
, dump_flags_t flags
,
1822 enum tree_code code
;
1824 if (node
== NULL_TREE
)
1827 is_expr
= EXPR_P (node
);
1829 if (is_stmt
&& (flags
& TDF_STMTADDR
))
1831 pp_string (pp
, "<&");
1832 pp_scalar (pp
, "%p", (void *)node
);
1833 pp_string (pp
, "> ");
1836 if ((flags
& TDF_LINENO
) && EXPR_HAS_LOCATION (node
))
1837 dump_location (pp
, EXPR_LOCATION (node
));
1839 code
= TREE_CODE (node
);
1843 pp_string (pp
, "<<< error >>>");
1846 case IDENTIFIER_NODE
:
1847 pp_tree_identifier (pp
, node
);
1851 while (node
&& node
!= error_mark_node
)
1853 if (TREE_PURPOSE (node
))
1855 dump_generic_node (pp
, TREE_PURPOSE (node
), spc
, flags
, false);
1858 dump_generic_node (pp
, TREE_VALUE (node
), spc
, flags
, false);
1859 node
= TREE_CHAIN (node
);
1860 if (node
&& TREE_CODE (node
) == TREE_LIST
)
1869 dump_generic_node (pp
, BINFO_TYPE (node
), spc
, flags
, false);
1875 if (TREE_VEC_LENGTH (node
) > 0)
1877 size_t len
= TREE_VEC_LENGTH (node
);
1878 for (i
= 0; i
< len
- 1; i
++)
1880 dump_generic_node (pp
, TREE_VEC_ELT (node
, i
), spc
, flags
,
1885 dump_generic_node (pp
, TREE_VEC_ELT (node
, len
- 1), spc
,
1894 case FIXED_POINT_TYPE
:
1901 unsigned int quals
= TYPE_QUALS (node
);
1902 enum tree_code_class tclass
;
1904 if (quals
& TYPE_QUAL_ATOMIC
)
1905 pp_string (pp
, "atomic ");
1906 if (quals
& TYPE_QUAL_CONST
)
1907 pp_string (pp
, "const ");
1908 if (quals
& TYPE_QUAL_VOLATILE
)
1909 pp_string (pp
, "volatile ");
1910 if (quals
& TYPE_QUAL_RESTRICT
)
1911 pp_string (pp
, "restrict ");
1913 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node
)))
1915 pp_string (pp
, "<address-space-");
1916 pp_decimal_int (pp
, TYPE_ADDR_SPACE (node
));
1917 pp_string (pp
, "> ");
1920 tclass
= TREE_CODE_CLASS (TREE_CODE (node
));
1922 if (tclass
== tcc_declaration
)
1924 if (DECL_NAME (node
))
1925 dump_decl_name (pp
, node
, flags
);
1927 pp_string (pp
, "<unnamed type decl>");
1929 else if (tclass
== tcc_type
)
1931 if (TYPE_NAME (node
))
1933 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
1934 pp_tree_identifier (pp
, TYPE_NAME (node
));
1935 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
1936 && DECL_NAME (TYPE_NAME (node
)))
1937 dump_decl_name (pp
, TYPE_NAME (node
), flags
);
1939 pp_string (pp
, "<unnamed type>");
1941 else if (TREE_CODE (node
) == VECTOR_TYPE
)
1943 pp_string (pp
, "vector");
1945 pp_wide_integer (pp
, TYPE_VECTOR_SUBPARTS (node
));
1946 pp_string (pp
, ") ");
1947 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1949 else if (TREE_CODE (node
) == INTEGER_TYPE
)
1951 if (TYPE_PRECISION (node
) == CHAR_TYPE_SIZE
)
1952 pp_string (pp
, (TYPE_UNSIGNED (node
)
1955 else if (TYPE_PRECISION (node
) == SHORT_TYPE_SIZE
)
1956 pp_string (pp
, (TYPE_UNSIGNED (node
)
1959 else if (TYPE_PRECISION (node
) == INT_TYPE_SIZE
)
1960 pp_string (pp
, (TYPE_UNSIGNED (node
)
1963 else if (TYPE_PRECISION (node
) == LONG_TYPE_SIZE
)
1964 pp_string (pp
, (TYPE_UNSIGNED (node
)
1967 else if (TYPE_PRECISION (node
) == LONG_LONG_TYPE_SIZE
)
1968 pp_string (pp
, (TYPE_UNSIGNED (node
)
1969 ? "unsigned long long"
1970 : "signed long long"));
1971 else if (TYPE_PRECISION (node
) >= CHAR_TYPE_SIZE
1972 && pow2p_hwi (TYPE_PRECISION (node
)))
1974 pp_string (pp
, (TYPE_UNSIGNED (node
) ? "uint" : "int"));
1975 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1976 pp_string (pp
, "_t");
1980 pp_string (pp
, (TYPE_UNSIGNED (node
)
1981 ? "<unnamed-unsigned:"
1982 : "<unnamed-signed:"));
1983 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1987 else if (TREE_CODE (node
) == COMPLEX_TYPE
)
1989 pp_string (pp
, "__complex__ ");
1990 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1992 else if (TREE_CODE (node
) == REAL_TYPE
)
1994 pp_string (pp
, "<float:");
1995 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1998 else if (TREE_CODE (node
) == FIXED_POINT_TYPE
)
2000 pp_string (pp
, "<fixed-point-");
2001 pp_string (pp
, TYPE_SATURATING (node
) ? "sat:" : "nonsat:");
2002 pp_decimal_int (pp
, TYPE_PRECISION (node
));
2005 else if (TREE_CODE (node
) == BOOLEAN_TYPE
)
2007 pp_string (pp
, (TYPE_UNSIGNED (node
)
2008 ? "<unsigned-boolean:"
2009 : "<signed-boolean:"));
2010 pp_decimal_int (pp
, TYPE_PRECISION (node
));
2013 else if (TREE_CODE (node
) == VOID_TYPE
)
2014 pp_string (pp
, "void");
2016 pp_string (pp
, "<unnamed type>");
2022 case REFERENCE_TYPE
:
2023 str
= (TREE_CODE (node
) == POINTER_TYPE
? "*" : "&");
2025 if (TREE_TYPE (node
) == NULL
)
2027 pp_string (pp
, str
);
2028 pp_string (pp
, "<null type>");
2030 else if (TREE_CODE (TREE_TYPE (node
)) == FUNCTION_TYPE
)
2032 tree fnode
= TREE_TYPE (node
);
2034 dump_generic_node (pp
, TREE_TYPE (fnode
), spc
, flags
, false);
2037 pp_string (pp
, str
);
2038 if (TYPE_IDENTIFIER (node
))
2039 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
2040 else if (flags
& TDF_NOUID
)
2041 pp_string (pp
, "<Txxxx>");
2044 pp_string (pp
, "<T");
2045 pp_scalar (pp
, "%x", TYPE_UID (node
));
2046 pp_character (pp
, '>');
2049 pp_right_paren (pp
);
2050 dump_function_declaration (pp
, fnode
, spc
, flags
);
2054 unsigned int quals
= TYPE_QUALS (node
);
2056 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2058 pp_string (pp
, str
);
2060 if (quals
& TYPE_QUAL_CONST
)
2061 pp_string (pp
, " const");
2062 if (quals
& TYPE_QUAL_VOLATILE
)
2063 pp_string (pp
, " volatile");
2064 if (quals
& TYPE_QUAL_RESTRICT
)
2065 pp_string (pp
, " restrict");
2067 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node
)))
2069 pp_string (pp
, " <address-space-");
2070 pp_decimal_int (pp
, TYPE_ADDR_SPACE (node
));
2074 if (TYPE_REF_CAN_ALIAS_ALL (node
))
2075 pp_string (pp
, " {ref-all}");
2084 case TARGET_MEM_REF
:
2085 dump_mem_ref (pp
, node
, spc
, flags
);
2090 unsigned int quals
= TYPE_QUALS (node
);
2093 if (quals
& TYPE_QUAL_ATOMIC
)
2094 pp_string (pp
, "atomic ");
2095 if (quals
& TYPE_QUAL_CONST
)
2096 pp_string (pp
, "const ");
2097 if (quals
& TYPE_QUAL_VOLATILE
)
2098 pp_string (pp
, "volatile ");
2100 /* Print the innermost component type. */
2101 for (tmp
= TREE_TYPE (node
); TREE_CODE (tmp
) == ARRAY_TYPE
;
2102 tmp
= TREE_TYPE (tmp
))
2105 /* Avoid to print recursively the array. */
2106 /* FIXME : Not implemented correctly, see print_struct_decl. */
2107 if (TREE_CODE (tmp
) != POINTER_TYPE
|| TREE_TYPE (tmp
) != node
)
2108 dump_generic_node (pp
, tmp
, spc
, flags
, false);
2110 /* Print the dimensions. */
2111 for (tmp
= node
; TREE_CODE (tmp
) == ARRAY_TYPE
; tmp
= TREE_TYPE (tmp
))
2112 dump_array_domain (pp
, TYPE_DOMAIN (tmp
), spc
, flags
);
2118 case QUAL_UNION_TYPE
:
2120 unsigned int quals
= TYPE_QUALS (node
);
2122 if (quals
& TYPE_QUAL_ATOMIC
)
2123 pp_string (pp
, "atomic ");
2124 if (quals
& TYPE_QUAL_CONST
)
2125 pp_string (pp
, "const ");
2126 if (quals
& TYPE_QUAL_VOLATILE
)
2127 pp_string (pp
, "volatile ");
2129 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node
)))
2131 pp_string (pp
, "<address-space-");
2132 pp_decimal_int (pp
, TYPE_ADDR_SPACE (node
));
2133 pp_string (pp
, "> ");
2136 /* Print the name of the structure. */
2137 if (TREE_CODE (node
) == RECORD_TYPE
)
2138 pp_string (pp
, "struct ");
2139 else if (TREE_CODE (node
) == UNION_TYPE
)
2140 pp_string (pp
, "union ");
2142 if (TYPE_NAME (node
))
2143 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
2144 else if (!(flags
& TDF_SLIM
))
2145 /* FIXME: If we eliminate the 'else' above and attempt
2146 to show the fields for named types, we may get stuck
2147 following a cycle of pointers to structs. The alleged
2148 self-reference check in print_struct_decl will not detect
2149 cycles involving more than one pointer or struct type. */
2150 print_struct_decl (pp
, node
, spc
, flags
);
2159 if (flags
& TDF_GIMPLE
2160 && (POINTER_TYPE_P (TREE_TYPE (node
))
2161 || (TYPE_PRECISION (TREE_TYPE (node
))
2162 < TYPE_PRECISION (integer_type_node
))
2163 || exact_log2 (TYPE_PRECISION (TREE_TYPE (node
))) == -1
2164 || tree_int_cst_sgn (node
) < 0))
2166 pp_string (pp
, "_Literal (");
2167 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2168 pp_string (pp
, ") ");
2170 if (TREE_CODE (TREE_TYPE (node
)) == POINTER_TYPE
2171 && ! (flags
& TDF_GIMPLE
))
2173 /* In the case of a pointer, one may want to divide by the
2174 size of the pointed-to type. Unfortunately, this not
2175 straightforward. The C front-end maps expressions
2180 in such a way that the two INTEGER_CST nodes for "5" have
2181 different values but identical types. In the latter
2182 case, the 5 is multiplied by sizeof (int) in c-common.cc
2183 (pointer_int_sum) to convert it to a byte address, and
2184 yet the type of the node is left unchanged. Argh. What
2185 is consistent though is that the number value corresponds
2186 to bytes (UNITS) offset.
2188 NB: Neither of the following divisors can be trivially
2189 used to recover the original literal:
2191 TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (node)))
2192 TYPE_PRECISION (TREE_TYPE (TREE_TYPE (node))) */
2193 pp_wide_integer (pp
, TREE_INT_CST_LOW (node
));
2194 pp_string (pp
, "B"); /* pseudo-unit */
2196 else if (tree_fits_shwi_p (node
))
2197 pp_wide_integer (pp
, tree_to_shwi (node
));
2198 else if (tree_fits_uhwi_p (node
))
2199 pp_unsigned_wide_integer (pp
, tree_to_uhwi (node
));
2202 wide_int val
= wi::to_wide (node
);
2204 if (wi::neg_p (val
, TYPE_SIGN (TREE_TYPE (node
))))
2209 print_hex (val
, pp_buffer (pp
)->digit_buffer
);
2210 pp_string (pp
, pp_buffer (pp
)->digit_buffer
);
2212 if ((flags
& TDF_GIMPLE
)
2213 && ! (POINTER_TYPE_P (TREE_TYPE (node
))
2214 || (TYPE_PRECISION (TREE_TYPE (node
))
2215 < TYPE_PRECISION (integer_type_node
))
2216 || exact_log2 (TYPE_PRECISION (TREE_TYPE (node
))) == -1))
2218 if (TYPE_UNSIGNED (TREE_TYPE (node
)))
2219 pp_character (pp
, 'u');
2220 if (TYPE_PRECISION (TREE_TYPE (node
))
2221 == TYPE_PRECISION (unsigned_type_node
))
2223 else if (TYPE_PRECISION (TREE_TYPE (node
))
2224 == TYPE_PRECISION (long_unsigned_type_node
))
2225 pp_character (pp
, 'l');
2226 else if (TYPE_PRECISION (TREE_TYPE (node
))
2227 == TYPE_PRECISION (long_long_unsigned_type_node
))
2228 pp_string (pp
, "ll");
2230 if (TREE_OVERFLOW (node
))
2231 pp_string (pp
, "(OVF)");
2235 pp_string (pp
, "POLY_INT_CST [");
2236 dump_generic_node (pp
, POLY_INT_CST_COEFF (node
, 0), spc
, flags
, false);
2237 for (unsigned int i
= 1; i
< NUM_POLY_INT_COEFFS
; ++i
)
2239 pp_string (pp
, ", ");
2240 dump_generic_node (pp
, POLY_INT_CST_COEFF (node
, i
),
2243 pp_string (pp
, "]");
2247 /* Code copied from print_node. */
2250 if (TREE_OVERFLOW (node
))
2251 pp_string (pp
, " overflow");
2253 d
= TREE_REAL_CST (node
);
2254 if (REAL_VALUE_ISINF (d
))
2255 pp_string (pp
, REAL_VALUE_NEGATIVE (d
) ? " -Inf" : " Inf");
2256 else if (REAL_VALUE_ISNAN (d
))
2257 pp_string (pp
, " Nan");
2261 real_to_decimal (string
, &d
, sizeof (string
), 0, 1);
2262 pp_string (pp
, string
);
2270 fixed_to_decimal (string
, TREE_FIXED_CST_PTR (node
), sizeof (string
));
2271 pp_string (pp
, string
);
2276 pp_string (pp
, "__complex__ (");
2277 dump_generic_node (pp
, TREE_REALPART (node
), spc
, flags
, false);
2278 pp_string (pp
, ", ");
2279 dump_generic_node (pp
, TREE_IMAGPART (node
), spc
, flags
, false);
2280 pp_right_paren (pp
);
2285 pp_string (pp
, "\"");
2286 if (unsigned nbytes
= TREE_STRING_LENGTH (node
))
2287 pretty_print_string (pp
, TREE_STRING_POINTER (node
), nbytes
);
2288 pp_string (pp
, "\"");
2295 if (flags
& TDF_GIMPLE
)
2297 pp_string (pp
, "_Literal (");
2298 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2299 pp_string (pp
, ") ");
2301 pp_string (pp
, "{ ");
2302 unsigned HOST_WIDE_INT nunits
;
2303 if (!VECTOR_CST_NELTS (node
).is_constant (&nunits
))
2304 nunits
= vector_cst_encoded_nelts (node
);
2305 for (i
= 0; i
< nunits
; ++i
)
2308 pp_string (pp
, ", ");
2309 dump_generic_node (pp
, VECTOR_CST_ELT (node
, i
),
2312 if (!VECTOR_CST_NELTS (node
).is_constant ())
2313 pp_string (pp
, ", ...");
2314 pp_string (pp
, " }");
2320 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2322 if (TREE_CODE (node
) == METHOD_TYPE
)
2324 if (TYPE_METHOD_BASETYPE (node
))
2325 dump_generic_node (pp
, TYPE_NAME (TYPE_METHOD_BASETYPE (node
)),
2328 pp_string (pp
, "<null method basetype>");
2329 pp_colon_colon (pp
);
2331 if (TYPE_IDENTIFIER (node
))
2332 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
2333 else if (TYPE_NAME (node
) && DECL_NAME (TYPE_NAME (node
)))
2334 dump_decl_name (pp
, TYPE_NAME (node
), flags
);
2335 else if (flags
& TDF_NOUID
)
2336 pp_string (pp
, "<Txxxx>");
2339 pp_string (pp
, "<T");
2340 pp_scalar (pp
, "%x", TYPE_UID (node
));
2341 pp_character (pp
, '>');
2343 dump_function_declaration (pp
, node
, spc
, flags
);
2348 dump_decl_name (pp
, node
, flags
);
2352 if (DECL_NAME (node
))
2353 dump_decl_name (pp
, node
, flags
);
2354 else if (LABEL_DECL_UID (node
) != -1)
2356 if (flags
& TDF_GIMPLE
)
2358 pp_character (pp
, 'L');
2359 pp_decimal_int (pp
, (int) LABEL_DECL_UID (node
));
2363 pp_string (pp
, "<L");
2364 pp_decimal_int (pp
, (int) LABEL_DECL_UID (node
));
2365 pp_character (pp
, '>');
2370 if (flags
& TDF_NOUID
)
2371 pp_string (pp
, "<D.xxxx>");
2374 if (flags
& TDF_GIMPLE
)
2376 pp_character (pp
, 'D');
2377 pp_scalar (pp
, "%u", DECL_UID (node
));
2381 pp_string (pp
, "<D.");
2382 pp_scalar (pp
, "%u", DECL_UID (node
));
2383 pp_character (pp
, '>');
2390 if (DECL_IS_UNDECLARED_BUILTIN (node
))
2392 /* Don't print the declaration of built-in types. */
2395 if (DECL_NAME (node
))
2396 dump_decl_name (pp
, node
, flags
);
2397 else if (TYPE_NAME (TREE_TYPE (node
)) != node
)
2399 pp_string (pp
, (TREE_CODE (TREE_TYPE (node
)) == UNION_TYPE
2400 ? "union" : "struct "));
2401 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2404 pp_string (pp
, "<anon>");
2410 case DEBUG_EXPR_DECL
:
2411 case NAMESPACE_DECL
:
2413 dump_decl_name (pp
, node
, flags
);
2417 pp_string (pp
, "<retval>");
2421 op0
= TREE_OPERAND (node
, 0);
2424 && (TREE_CODE (op0
) == INDIRECT_REF
2425 || (TREE_CODE (op0
) == MEM_REF
2426 && TREE_CODE (TREE_OPERAND (op0
, 0)) != ADDR_EXPR
2427 && integer_zerop (TREE_OPERAND (op0
, 1))
2428 /* Dump the types of INTEGER_CSTs explicitly, for we
2429 can't infer them and MEM_ATTR caching will share
2430 MEM_REFs with differently-typed op0s. */
2431 && TREE_CODE (TREE_OPERAND (op0
, 0)) != INTEGER_CST
2432 /* Released SSA_NAMES have no TREE_TYPE. */
2433 && TREE_TYPE (TREE_OPERAND (op0
, 0)) != NULL_TREE
2434 /* Same pointer types, but ignoring POINTER_TYPE vs.
2436 && (TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 0)))
2437 == TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 1))))
2438 && (TYPE_MODE (TREE_TYPE (TREE_OPERAND (op0
, 0)))
2439 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (op0
, 1))))
2440 && (TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (op0
, 0)))
2441 == TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (op0
, 1))))
2442 /* Same value types ignoring qualifiers. */
2443 && (TYPE_MAIN_VARIANT (TREE_TYPE (op0
))
2444 == TYPE_MAIN_VARIANT
2445 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 1)))))
2446 && MR_DEPENDENCE_CLIQUE (op0
) == 0)))
2448 op0
= TREE_OPERAND (op0
, 0);
2451 if (op_prio (op0
) < op_prio (node
))
2453 dump_generic_node (pp
, op0
, spc
, flags
, false);
2454 if (op_prio (op0
) < op_prio (node
))
2455 pp_right_paren (pp
);
2456 pp_string (pp
, str
);
2457 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2458 op0
= component_ref_field_offset (node
);
2459 if (op0
&& TREE_CODE (op0
) != INTEGER_CST
)
2461 pp_string (pp
, "{off: ");
2462 dump_generic_node (pp
, op0
, spc
, flags
, false);
2463 pp_right_brace (pp
);
2468 if (flags
& TDF_GIMPLE
)
2470 pp_string (pp
, "__BIT_FIELD_REF <");
2471 dump_generic_node (pp
, TREE_TYPE (node
),
2472 spc
, flags
| TDF_SLIM
, false);
2473 if (TYPE_ALIGN (TREE_TYPE (node
))
2474 != TYPE_ALIGN (TYPE_MAIN_VARIANT (TREE_TYPE (node
))))
2476 pp_string (pp
, ", ");
2477 pp_decimal_int (pp
, TYPE_ALIGN (TREE_TYPE (node
)));
2480 pp_string (pp
, " (");
2481 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
,
2482 flags
| TDF_SLIM
, false);
2483 pp_string (pp
, ", ");
2484 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
,
2485 flags
| TDF_SLIM
, false);
2486 pp_string (pp
, ", ");
2487 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
,
2488 flags
| TDF_SLIM
, false);
2489 pp_right_paren (pp
);
2493 pp_string (pp
, "BIT_FIELD_REF <");
2494 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2495 pp_string (pp
, ", ");
2496 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2497 pp_string (pp
, ", ");
2498 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2503 case BIT_INSERT_EXPR
:
2504 pp_string (pp
, "BIT_INSERT_EXPR <");
2505 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2506 pp_string (pp
, ", ");
2507 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2508 pp_string (pp
, ", ");
2509 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2510 pp_string (pp
, " (");
2511 if (INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (node
, 1))))
2513 TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (node
, 1))));
2515 dump_generic_node (pp
, TYPE_SIZE (TREE_TYPE (TREE_OPERAND (node
, 1))),
2517 pp_string (pp
, " bits)>");
2521 case ARRAY_RANGE_REF
:
2522 op0
= TREE_OPERAND (node
, 0);
2523 if (op_prio (op0
) < op_prio (node
))
2525 dump_generic_node (pp
, op0
, spc
, flags
, false);
2526 if (op_prio (op0
) < op_prio (node
))
2527 pp_right_paren (pp
);
2528 pp_left_bracket (pp
);
2529 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2530 if (TREE_CODE (node
) == ARRAY_RANGE_REF
)
2531 pp_string (pp
, " ...");
2532 pp_right_bracket (pp
);
2534 op0
= array_ref_low_bound (node
);
2535 op1
= array_ref_element_size (node
);
2537 if (!integer_zerop (op0
)
2538 || TREE_OPERAND (node
, 2)
2539 || TREE_OPERAND (node
, 3))
2541 pp_string (pp
, "{lb: ");
2542 dump_generic_node (pp
, op0
, spc
, flags
, false);
2543 pp_string (pp
, " sz: ");
2544 dump_generic_node (pp
, op1
, spc
, flags
, false);
2545 pp_right_brace (pp
);
2551 unsigned HOST_WIDE_INT ix
;
2553 bool is_struct_init
= false;
2554 bool is_array_init
= false;
2556 if (flags
& TDF_GIMPLE
)
2558 pp_string (pp
, "_Literal (");
2559 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2560 pp_string (pp
, ") ");
2563 if (TREE_CLOBBER_P (node
))
2565 pp_string (pp
, "CLOBBER");
2566 if (CLOBBER_KIND (node
) == CLOBBER_EOL
)
2567 pp_string (pp
, "(eol)");
2569 else if (TREE_CODE (TREE_TYPE (node
)) == RECORD_TYPE
2570 || TREE_CODE (TREE_TYPE (node
)) == UNION_TYPE
)
2571 is_struct_init
= true;
2572 else if (TREE_CODE (TREE_TYPE (node
)) == ARRAY_TYPE
2573 && TYPE_DOMAIN (TREE_TYPE (node
))
2574 && TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
)))
2575 && TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
))))
2578 tree minv
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
)));
2579 is_array_init
= true;
2580 curidx
= wi::to_widest (minv
);
2582 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (node
), ix
, field
, val
)
2589 dump_generic_node (pp
, field
, spc
, flags
, false);
2592 else if (is_array_init
2593 && (TREE_CODE (field
) != INTEGER_CST
2594 || curidx
!= wi::to_widest (field
)))
2596 pp_left_bracket (pp
);
2597 if (TREE_CODE (field
) == RANGE_EXPR
)
2599 dump_generic_node (pp
, TREE_OPERAND (field
, 0), spc
,
2601 pp_string (pp
, " ... ");
2602 dump_generic_node (pp
, TREE_OPERAND (field
, 1), spc
,
2604 if (TREE_CODE (TREE_OPERAND (field
, 1)) == INTEGER_CST
)
2605 curidx
= wi::to_widest (TREE_OPERAND (field
, 1));
2608 dump_generic_node (pp
, field
, spc
, flags
, false);
2609 if (TREE_CODE (field
) == INTEGER_CST
)
2610 curidx
= wi::to_widest (field
);
2611 pp_string (pp
, "]=");
2616 if (val
&& TREE_CODE (val
) == ADDR_EXPR
)
2617 if (TREE_CODE (TREE_OPERAND (val
, 0)) == FUNCTION_DECL
)
2618 val
= TREE_OPERAND (val
, 0);
2619 if (val
&& TREE_CODE (val
) == FUNCTION_DECL
)
2620 dump_decl_name (pp
, val
, flags
);
2622 dump_generic_node (pp
, val
, spc
, flags
, false);
2623 if (ix
!= CONSTRUCTOR_NELTS (node
) - 1)
2629 pp_right_brace (pp
);
2636 if (flags
& TDF_SLIM
)
2638 pp_string (pp
, "<COMPOUND_EXPR>");
2642 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
2643 spc
, flags
, !(flags
& TDF_SLIM
));
2644 if (flags
& TDF_SLIM
)
2645 newline_and_indent (pp
, spc
);
2652 for (tp
= &TREE_OPERAND (node
, 1);
2653 TREE_CODE (*tp
) == COMPOUND_EXPR
;
2654 tp
= &TREE_OPERAND (*tp
, 1))
2656 dump_generic_node (pp
, TREE_OPERAND (*tp
, 0),
2657 spc
, flags
, !(flags
& TDF_SLIM
));
2658 if (flags
& TDF_SLIM
)
2659 newline_and_indent (pp
, spc
);
2667 dump_generic_node (pp
, *tp
, spc
, flags
, !(flags
& TDF_SLIM
));
2671 case STATEMENT_LIST
:
2673 tree_stmt_iterator si
;
2676 if (flags
& TDF_SLIM
)
2678 pp_string (pp
, "<STATEMENT_LIST>");
2682 for (si
= tsi_start (node
); !tsi_end_p (si
); tsi_next (&si
))
2685 newline_and_indent (pp
, spc
);
2688 dump_generic_node (pp
, tsi_stmt (si
), spc
, flags
, true);
2695 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
,
2700 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
,
2705 pp_string (pp
, "TARGET_EXPR <");
2706 dump_generic_node (pp
, TARGET_EXPR_SLOT (node
), spc
, flags
, false);
2709 dump_generic_node (pp
, TARGET_EXPR_INITIAL (node
), spc
, flags
, false);
2714 print_declaration (pp
, DECL_EXPR_DECL (node
), spc
, flags
);
2719 if (TREE_TYPE (node
) == NULL
|| TREE_TYPE (node
) == void_type_node
)
2721 pp_string (pp
, "if (");
2722 dump_generic_node (pp
, COND_EXPR_COND (node
), spc
, flags
, false);
2723 pp_right_paren (pp
);
2724 /* The lowered cond_exprs should always be printed in full. */
2725 if (COND_EXPR_THEN (node
)
2726 && (IS_EMPTY_STMT (COND_EXPR_THEN (node
))
2727 || TREE_CODE (COND_EXPR_THEN (node
)) == GOTO_EXPR
)
2728 && COND_EXPR_ELSE (node
)
2729 && (IS_EMPTY_STMT (COND_EXPR_ELSE (node
))
2730 || TREE_CODE (COND_EXPR_ELSE (node
)) == GOTO_EXPR
))
2733 dump_generic_node (pp
, COND_EXPR_THEN (node
),
2735 if (!IS_EMPTY_STMT (COND_EXPR_ELSE (node
)))
2737 pp_string (pp
, " else ");
2738 dump_generic_node (pp
, COND_EXPR_ELSE (node
),
2742 else if (!(flags
& TDF_SLIM
))
2744 /* Output COND_EXPR_THEN. */
2745 if (COND_EXPR_THEN (node
))
2747 newline_and_indent (pp
, spc
+2);
2749 newline_and_indent (pp
, spc
+4);
2750 dump_generic_node (pp
, COND_EXPR_THEN (node
), spc
+4,
2752 newline_and_indent (pp
, spc
+2);
2753 pp_right_brace (pp
);
2756 /* Output COND_EXPR_ELSE. */
2757 if (COND_EXPR_ELSE (node
)
2758 && !IS_EMPTY_STMT (COND_EXPR_ELSE (node
)))
2760 newline_and_indent (pp
, spc
);
2761 pp_string (pp
, "else");
2762 newline_and_indent (pp
, spc
+2);
2764 newline_and_indent (pp
, spc
+4);
2765 dump_generic_node (pp
, COND_EXPR_ELSE (node
), spc
+4,
2767 newline_and_indent (pp
, spc
+2);
2768 pp_right_brace (pp
);
2775 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2779 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2783 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2789 if (!(flags
& TDF_SLIM
))
2791 if (BIND_EXPR_VARS (node
))
2795 for (op0
= BIND_EXPR_VARS (node
); op0
; op0
= DECL_CHAIN (op0
))
2797 print_declaration (pp
, op0
, spc
+2, flags
);
2802 newline_and_indent (pp
, spc
+2);
2803 dump_generic_node (pp
, BIND_EXPR_BODY (node
), spc
+2, flags
, true);
2804 newline_and_indent (pp
, spc
);
2805 pp_right_brace (pp
);
2811 if (CALL_EXPR_FN (node
) != NULL_TREE
)
2812 print_call_name (pp
, CALL_EXPR_FN (node
), flags
);
2816 pp_string (pp
, internal_fn_name (CALL_EXPR_IFN (node
)));
2819 /* Print parameters. */
2824 call_expr_arg_iterator iter
;
2825 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, node
)
2827 dump_generic_node (pp
, arg
, spc
, flags
, false);
2828 if (more_call_expr_args_p (&iter
))
2835 if (CALL_EXPR_VA_ARG_PACK (node
))
2837 if (call_expr_nargs (node
) > 0)
2842 pp_string (pp
, "__builtin_va_arg_pack ()");
2844 pp_right_paren (pp
);
2846 op1
= CALL_EXPR_STATIC_CHAIN (node
);
2849 pp_string (pp
, " [static-chain: ");
2850 dump_generic_node (pp
, op1
, spc
, flags
, false);
2851 pp_right_bracket (pp
);
2854 if (CALL_EXPR_RETURN_SLOT_OPT (node
))
2855 pp_string (pp
, " [return slot optimization]");
2856 if (CALL_EXPR_TAILCALL (node
))
2857 pp_string (pp
, " [tail call]");
2860 case WITH_CLEANUP_EXPR
:
2864 case CLEANUP_POINT_EXPR
:
2865 pp_string (pp
, "<<cleanup_point ");
2866 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2867 pp_string (pp
, ">>");
2870 case PLACEHOLDER_EXPR
:
2871 pp_string (pp
, "<PLACEHOLDER_EXPR ");
2872 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2876 /* Binary arithmetic and logic expressions. */
2877 case WIDEN_PLUS_EXPR
:
2878 case WIDEN_MINUS_EXPR
:
2879 case WIDEN_SUM_EXPR
:
2880 case WIDEN_MULT_EXPR
:
2882 case MULT_HIGHPART_EXPR
:
2884 case POINTER_PLUS_EXPR
:
2885 case POINTER_DIFF_EXPR
:
2887 case TRUNC_DIV_EXPR
:
2889 case FLOOR_DIV_EXPR
:
2890 case ROUND_DIV_EXPR
:
2891 case TRUNC_MOD_EXPR
:
2893 case FLOOR_MOD_EXPR
:
2894 case ROUND_MOD_EXPR
:
2896 case EXACT_DIV_EXPR
:
2901 case WIDEN_LSHIFT_EXPR
:
2905 case TRUTH_ANDIF_EXPR
:
2906 case TRUTH_ORIF_EXPR
:
2907 case TRUTH_AND_EXPR
:
2909 case TRUTH_XOR_EXPR
:
2923 case UNORDERED_EXPR
:
2925 const char *op
= op_symbol (node
);
2926 op0
= TREE_OPERAND (node
, 0);
2927 op1
= TREE_OPERAND (node
, 1);
2929 /* When the operands are expressions with less priority,
2930 keep semantics of the tree representation. */
2931 if (op_prio (op0
) <= op_prio (node
))
2934 dump_generic_node (pp
, op0
, spc
, flags
, false);
2935 pp_right_paren (pp
);
2938 dump_generic_node (pp
, op0
, spc
, flags
, false);
2944 /* When the operands are expressions with less priority,
2945 keep semantics of the tree representation. */
2946 if (op_prio (op1
) <= op_prio (node
))
2949 dump_generic_node (pp
, op1
, spc
, flags
, false);
2950 pp_right_paren (pp
);
2953 dump_generic_node (pp
, op1
, spc
, flags
, false);
2957 /* Unary arithmetic and logic expressions. */
2959 if (flags
& TDF_GIMPLE_VAL
)
2961 pp_string (pp
, "_Literal (");
2962 dump_generic_node (pp
, TREE_TYPE (node
), spc
,
2963 flags
& ~TDF_GIMPLE_VAL
, false);
2964 pp_character (pp
, ')');
2969 case TRUTH_NOT_EXPR
:
2970 case PREDECREMENT_EXPR
:
2971 case PREINCREMENT_EXPR
:
2973 if (!(flags
& TDF_GIMPLE
)
2974 && TREE_CODE (node
) == ADDR_EXPR
2975 && (TREE_CODE (TREE_OPERAND (node
, 0)) == STRING_CST
2976 || TREE_CODE (TREE_OPERAND (node
, 0)) == FUNCTION_DECL
))
2977 /* Do not output '&' for strings and function pointers when not
2978 dumping GIMPLE FE syntax. */
2981 pp_string (pp
, op_symbol (node
));
2983 if (op_prio (TREE_OPERAND (node
, 0)) < op_prio (node
))
2986 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2987 pp_right_paren (pp
);
2990 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2993 case POSTDECREMENT_EXPR
:
2994 case POSTINCREMENT_EXPR
:
2995 if (op_prio (TREE_OPERAND (node
, 0)) < op_prio (node
))
2998 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2999 pp_right_paren (pp
);
3002 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3003 pp_string (pp
, op_symbol (node
));
3007 pp_string (pp
, "MIN_EXPR <");
3008 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3009 pp_string (pp
, ", ");
3010 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3015 pp_string (pp
, "MAX_EXPR <");
3016 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3017 pp_string (pp
, ", ");
3018 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3023 pp_string (pp
, "ABS_EXPR <");
3024 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3029 pp_string (pp
, "ABSU_EXPR <");
3030 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3038 case ADDR_SPACE_CONVERT_EXPR
:
3039 case FIXED_CONVERT_EXPR
:
3040 case FIX_TRUNC_EXPR
:
3043 type
= TREE_TYPE (node
);
3044 op0
= TREE_OPERAND (node
, 0);
3045 if (type
!= TREE_TYPE (op0
))
3048 dump_generic_node (pp
, type
, spc
, flags
, false);
3049 pp_string (pp
, ") ");
3051 if (op_prio (op0
) < op_prio (node
))
3053 dump_generic_node (pp
, op0
, spc
, flags
, false);
3054 if (op_prio (op0
) < op_prio (node
))
3055 pp_right_paren (pp
);
3058 case VIEW_CONVERT_EXPR
:
3059 if (flags
& TDF_GIMPLE
)
3060 pp_string (pp
, "__VIEW_CONVERT <");
3062 pp_string (pp
, "VIEW_CONVERT_EXPR<");
3063 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
3064 pp_string (pp
, ">(");
3065 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3066 pp_right_paren (pp
);
3070 pp_string (pp
, "((");
3071 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3072 pp_string (pp
, "))");
3075 case NON_LVALUE_EXPR
:
3076 pp_string (pp
, "NON_LVALUE_EXPR <");
3077 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3082 pp_string (pp
, "SAVE_EXPR <");
3083 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3088 pp_string (pp
, "COMPLEX_EXPR <");
3089 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3090 pp_string (pp
, ", ");
3091 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3096 pp_string (pp
, "CONJ_EXPR <");
3097 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3102 if (flags
& TDF_GIMPLE
)
3104 pp_string (pp
, "__real ");
3105 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3109 pp_string (pp
, "REALPART_EXPR <");
3110 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3116 if (flags
& TDF_GIMPLE
)
3118 pp_string (pp
, "__imag ");
3119 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3123 pp_string (pp
, "IMAGPART_EXPR <");
3124 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3130 pp_string (pp
, "VA_ARG_EXPR <");
3131 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3135 case TRY_FINALLY_EXPR
:
3136 case TRY_CATCH_EXPR
:
3137 pp_string (pp
, "try");
3138 newline_and_indent (pp
, spc
+2);
3140 newline_and_indent (pp
, spc
+4);
3141 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
+4, flags
, true);
3142 newline_and_indent (pp
, spc
+2);
3143 pp_right_brace (pp
);
3144 newline_and_indent (pp
, spc
);
3145 if (TREE_CODE (node
) == TRY_CATCH_EXPR
)
3147 node
= TREE_OPERAND (node
, 1);
3148 pp_string (pp
, "catch");
3152 gcc_assert (TREE_CODE (node
) == TRY_FINALLY_EXPR
);
3153 node
= TREE_OPERAND (node
, 1);
3154 pp_string (pp
, "finally");
3155 if (TREE_CODE (node
) == EH_ELSE_EXPR
)
3157 newline_and_indent (pp
, spc
+2);
3159 newline_and_indent (pp
, spc
+4);
3160 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
+4,
3162 newline_and_indent (pp
, spc
+2);
3163 pp_right_brace (pp
);
3164 newline_and_indent (pp
, spc
);
3165 node
= TREE_OPERAND (node
, 1);
3166 pp_string (pp
, "else");
3169 newline_and_indent (pp
, spc
+2);
3171 newline_and_indent (pp
, spc
+4);
3172 dump_generic_node (pp
, node
, spc
+4, flags
, true);
3173 newline_and_indent (pp
, spc
+2);
3174 pp_right_brace (pp
);
3179 pp_string (pp
, "catch (");
3180 dump_generic_node (pp
, CATCH_TYPES (node
), spc
+2, flags
, false);
3181 pp_right_paren (pp
);
3182 newline_and_indent (pp
, spc
+2);
3184 newline_and_indent (pp
, spc
+4);
3185 dump_generic_node (pp
, CATCH_BODY (node
), spc
+4, flags
, true);
3186 newline_and_indent (pp
, spc
+2);
3187 pp_right_brace (pp
);
3191 case EH_FILTER_EXPR
:
3192 pp_string (pp
, "<<<eh_filter (");
3193 dump_generic_node (pp
, EH_FILTER_TYPES (node
), spc
+2, flags
, false);
3194 pp_string (pp
, ")>>>");
3195 newline_and_indent (pp
, spc
+2);
3197 newline_and_indent (pp
, spc
+4);
3198 dump_generic_node (pp
, EH_FILTER_FAILURE (node
), spc
+4, flags
, true);
3199 newline_and_indent (pp
, spc
+2);
3200 pp_right_brace (pp
);
3205 op0
= TREE_OPERAND (node
, 0);
3206 /* If this is for break or continue, don't bother printing it. */
3207 if (DECL_NAME (op0
))
3209 const char *name
= IDENTIFIER_POINTER (DECL_NAME (op0
));
3210 if (strcmp (name
, "break") == 0
3211 || strcmp (name
, "continue") == 0)
3214 dump_generic_node (pp
, op0
, spc
, flags
, false);
3216 if (DECL_NONLOCAL (op0
))
3217 pp_string (pp
, " [non-local]");
3221 pp_string (pp
, "while (1)");
3222 if (!(flags
& TDF_SLIM
))
3224 newline_and_indent (pp
, spc
+2);
3226 newline_and_indent (pp
, spc
+4);
3227 dump_generic_node (pp
, LOOP_EXPR_BODY (node
), spc
+4, flags
, true);
3228 newline_and_indent (pp
, spc
+2);
3229 pp_right_brace (pp
);
3235 pp_string (pp
, "// predicted ");
3236 if (PREDICT_EXPR_OUTCOME (node
))
3237 pp_string (pp
, "likely by ");
3239 pp_string (pp
, "unlikely by ");
3240 pp_string (pp
, predictor_name (PREDICT_EXPR_PREDICTOR (node
)));
3241 pp_string (pp
, " predictor.");
3245 pp_string (pp
, "ANNOTATE_EXPR <");
3246 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3247 switch ((enum annot_expr_kind
) TREE_INT_CST_LOW (TREE_OPERAND (node
, 1)))
3249 case annot_expr_ivdep_kind
:
3250 pp_string (pp
, ", ivdep");
3252 case annot_expr_unroll_kind
:
3254 pp_string (pp
, ", unroll ");
3256 (int) TREE_INT_CST_LOW (TREE_OPERAND (node
, 2)));
3259 case annot_expr_no_vector_kind
:
3260 pp_string (pp
, ", no-vector");
3262 case annot_expr_vector_kind
:
3263 pp_string (pp
, ", vector");
3265 case annot_expr_parallel_kind
:
3266 pp_string (pp
, ", parallel");
3275 pp_string (pp
, "return");
3276 op0
= TREE_OPERAND (node
, 0);
3280 if (TREE_CODE (op0
) == MODIFY_EXPR
)
3281 dump_generic_node (pp
, TREE_OPERAND (op0
, 1),
3284 dump_generic_node (pp
, op0
, spc
, flags
, false);
3289 pp_string (pp
, "if (");
3290 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3291 pp_string (pp
, ") break");
3295 pp_string (pp
, "switch (");
3296 dump_generic_node (pp
, SWITCH_COND (node
), spc
, flags
, false);
3297 pp_right_paren (pp
);
3298 if (!(flags
& TDF_SLIM
))
3300 newline_and_indent (pp
, spc
+2);
3302 if (SWITCH_BODY (node
))
3304 newline_and_indent (pp
, spc
+4);
3305 dump_generic_node (pp
, SWITCH_BODY (node
), spc
+4, flags
,
3308 newline_and_indent (pp
, spc
+2);
3309 pp_right_brace (pp
);
3315 op0
= GOTO_DESTINATION (node
);
3316 if (TREE_CODE (op0
) != SSA_NAME
&& DECL_P (op0
) && DECL_NAME (op0
))
3318 const char *name
= IDENTIFIER_POINTER (DECL_NAME (op0
));
3319 if (strcmp (name
, "break") == 0
3320 || strcmp (name
, "continue") == 0)
3322 pp_string (pp
, name
);
3326 pp_string (pp
, "goto ");
3327 dump_generic_node (pp
, op0
, spc
, flags
, false);
3331 pp_string (pp
, "__asm__");
3332 if (ASM_VOLATILE_P (node
))
3333 pp_string (pp
, " __volatile__");
3335 dump_generic_node (pp
, ASM_STRING (node
), spc
, flags
, false);
3337 dump_generic_node (pp
, ASM_OUTPUTS (node
), spc
, flags
, false);
3339 dump_generic_node (pp
, ASM_INPUTS (node
), spc
, flags
, false);
3340 if (ASM_CLOBBERS (node
))
3343 dump_generic_node (pp
, ASM_CLOBBERS (node
), spc
, flags
, false);
3345 pp_right_paren (pp
);
3348 case CASE_LABEL_EXPR
:
3349 if (CASE_LOW (node
) && CASE_HIGH (node
))
3351 pp_string (pp
, "case ");
3352 dump_generic_node (pp
, CASE_LOW (node
), spc
, flags
, false);
3353 pp_string (pp
, " ... ");
3354 dump_generic_node (pp
, CASE_HIGH (node
), spc
, flags
, false);
3356 else if (CASE_LOW (node
))
3358 pp_string (pp
, "case ");
3359 dump_generic_node (pp
, CASE_LOW (node
), spc
, flags
, false);
3362 pp_string (pp
, "default");
3367 pp_string (pp
, "OBJ_TYPE_REF(");
3368 dump_generic_node (pp
, OBJ_TYPE_REF_EXPR (node
), spc
, flags
, false);
3370 /* We omit the class type for -fcompare-debug because we may
3371 drop TYPE_BINFO early depending on debug info, and then
3372 virtual_method_call_p would return false, whereas when
3373 TYPE_BINFO is preserved it may still return true and then
3374 we'd print the class type. Compare tree and rtl dumps for
3375 libstdc++-prettyprinters/shared_ptr.cc with and without -g,
3376 for example, at occurrences of OBJ_TYPE_REF. */
3377 if (!(flags
& (TDF_SLIM
| TDF_COMPARE_DEBUG
))
3378 && virtual_method_call_p (node
, true))
3380 pp_string (pp
, "(");
3381 dump_generic_node (pp
, obj_type_ref_class (node
, true),
3383 pp_string (pp
, ")");
3385 dump_generic_node (pp
, OBJ_TYPE_REF_OBJECT (node
), spc
, flags
, false);
3387 dump_generic_node (pp
, OBJ_TYPE_REF_TOKEN (node
), spc
, flags
, false);
3388 pp_right_paren (pp
);
3392 if (SSA_NAME_IDENTIFIER (node
))
3394 if ((flags
& TDF_NOUID
)
3395 && SSA_NAME_VAR (node
)
3396 && DECL_NAMELESS (SSA_NAME_VAR (node
)))
3397 dump_fancy_name (pp
, SSA_NAME_IDENTIFIER (node
));
3398 else if (! (flags
& TDF_GIMPLE
)
3399 || SSA_NAME_VAR (node
))
3400 dump_generic_node (pp
, SSA_NAME_IDENTIFIER (node
),
3404 pp_decimal_int (pp
, SSA_NAME_VERSION (node
));
3405 if (SSA_NAME_IS_DEFAULT_DEF (node
))
3406 pp_string (pp
, "(D)");
3407 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node
))
3408 pp_string (pp
, "(ab)");
3411 case WITH_SIZE_EXPR
:
3412 pp_string (pp
, "WITH_SIZE_EXPR <");
3413 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3414 pp_string (pp
, ", ");
3415 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3420 pp_string (pp
, "ASSERT_EXPR <");
3421 dump_generic_node (pp
, ASSERT_EXPR_VAR (node
), spc
, flags
, false);
3422 pp_string (pp
, ", ");
3423 dump_generic_node (pp
, ASSERT_EXPR_COND (node
), spc
, flags
, false);
3428 pp_string (pp
, "scev_known");
3431 case SCEV_NOT_KNOWN
:
3432 pp_string (pp
, "scev_not_known");
3435 case POLYNOMIAL_CHREC
:
3437 dump_generic_node (pp
, CHREC_LEFT (node
), spc
, flags
, false);
3438 pp_string (pp
, ", +, ");
3439 dump_generic_node (pp
, CHREC_RIGHT (node
), spc
, flags
, false);
3440 pp_string (pp
, "}_");
3441 pp_scalar (pp
, "%u", CHREC_VARIABLE (node
));
3445 case REALIGN_LOAD_EXPR
:
3446 pp_string (pp
, "REALIGN_LOAD <");
3447 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3448 pp_string (pp
, ", ");
3449 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3450 pp_string (pp
, ", ");
3451 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3456 pp_string (pp
, " VEC_COND_EXPR < ");
3457 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3458 pp_string (pp
, " , ");
3459 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3460 pp_string (pp
, " , ");
3461 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3462 pp_string (pp
, " > ");
3466 pp_string (pp
, " VEC_PERM_EXPR < ");
3467 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3468 pp_string (pp
, " , ");
3469 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3470 pp_string (pp
, " , ");
3471 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3472 pp_string (pp
, " > ");
3476 pp_string (pp
, " DOT_PROD_EXPR < ");
3477 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3478 pp_string (pp
, ", ");
3479 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3480 pp_string (pp
, ", ");
3481 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3482 pp_string (pp
, " > ");
3485 case WIDEN_MULT_PLUS_EXPR
:
3486 pp_string (pp
, " WIDEN_MULT_PLUS_EXPR < ");
3487 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3488 pp_string (pp
, ", ");
3489 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3490 pp_string (pp
, ", ");
3491 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3492 pp_string (pp
, " > ");
3495 case WIDEN_MULT_MINUS_EXPR
:
3496 pp_string (pp
, " WIDEN_MULT_MINUS_EXPR < ");
3497 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3498 pp_string (pp
, ", ");
3499 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3500 pp_string (pp
, ", ");
3501 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
3502 pp_string (pp
, " > ");
3506 pp_string (pp
, "#pragma acc parallel");
3507 goto dump_omp_clauses_body
;
3510 pp_string (pp
, "#pragma acc kernels");
3511 goto dump_omp_clauses_body
;
3514 pp_string (pp
, "#pragma acc serial");
3515 goto dump_omp_clauses_body
;
3518 pp_string (pp
, "#pragma acc data");
3519 dump_omp_clauses (pp
, OACC_DATA_CLAUSES (node
), spc
, flags
);
3522 case OACC_HOST_DATA
:
3523 pp_string (pp
, "#pragma acc host_data");
3524 dump_omp_clauses (pp
, OACC_HOST_DATA_CLAUSES (node
), spc
, flags
);
3528 pp_string (pp
, "#pragma acc declare");
3529 dump_omp_clauses (pp
, OACC_DECLARE_CLAUSES (node
), spc
, flags
);
3533 pp_string (pp
, "#pragma acc update");
3534 dump_omp_clauses (pp
, OACC_UPDATE_CLAUSES (node
), spc
, flags
);
3537 case OACC_ENTER_DATA
:
3538 pp_string (pp
, "#pragma acc enter data");
3539 dump_omp_clauses (pp
, OACC_ENTER_DATA_CLAUSES (node
), spc
, flags
);
3542 case OACC_EXIT_DATA
:
3543 pp_string (pp
, "#pragma acc exit data");
3544 dump_omp_clauses (pp
, OACC_EXIT_DATA_CLAUSES (node
), spc
, flags
);
3548 pp_string (pp
, "#pragma acc cache");
3549 dump_omp_clauses (pp
, OACC_CACHE_CLAUSES (node
), spc
, flags
);
3553 pp_string (pp
, "#pragma omp parallel");
3554 dump_omp_clauses (pp
, OMP_PARALLEL_CLAUSES (node
), spc
, flags
);
3557 dump_omp_clauses_body
:
3558 dump_omp_clauses (pp
, OMP_CLAUSES (node
), spc
, flags
);
3562 if (!(flags
& TDF_SLIM
) && OMP_BODY (node
))
3564 newline_and_indent (pp
, spc
+ 2);
3566 newline_and_indent (pp
, spc
+ 4);
3567 dump_generic_node (pp
, OMP_BODY (node
), spc
+ 4, flags
, false);
3568 newline_and_indent (pp
, spc
+ 2);
3569 pp_right_brace (pp
);
3575 pp_string (pp
, OMP_TASK_BODY (node
) ? "#pragma omp task"
3576 : "#pragma omp taskwait");
3577 dump_omp_clauses (pp
, OMP_TASK_CLAUSES (node
), spc
, flags
);
3581 pp_string (pp
, "#pragma omp for");
3585 pp_string (pp
, "#pragma omp simd");
3588 case OMP_DISTRIBUTE
:
3589 pp_string (pp
, "#pragma omp distribute");
3593 pp_string (pp
, "#pragma omp taskloop");
3597 pp_string (pp
, "#pragma omp loop");
3601 pp_string (pp
, "#pragma acc loop");
3605 pp_string (pp
, "#pragma omp teams");
3606 dump_omp_clauses (pp
, OMP_TEAMS_CLAUSES (node
), spc
, flags
);
3609 case OMP_TARGET_DATA
:
3610 pp_string (pp
, "#pragma omp target data");
3611 dump_omp_clauses (pp
, OMP_TARGET_DATA_CLAUSES (node
), spc
, flags
);
3614 case OMP_TARGET_ENTER_DATA
:
3615 pp_string (pp
, "#pragma omp target enter data");
3616 dump_omp_clauses (pp
, OMP_TARGET_ENTER_DATA_CLAUSES (node
), spc
, flags
);
3620 case OMP_TARGET_EXIT_DATA
:
3621 pp_string (pp
, "#pragma omp target exit data");
3622 dump_omp_clauses (pp
, OMP_TARGET_EXIT_DATA_CLAUSES (node
), spc
, flags
);
3627 pp_string (pp
, "#pragma omp target");
3628 dump_omp_clauses (pp
, OMP_TARGET_CLAUSES (node
), spc
, flags
);
3631 case OMP_TARGET_UPDATE
:
3632 pp_string (pp
, "#pragma omp target update");
3633 dump_omp_clauses (pp
, OMP_TARGET_UPDATE_CLAUSES (node
), spc
, flags
);
3638 dump_omp_clauses (pp
, OMP_FOR_CLAUSES (node
), spc
, flags
);
3639 if (!(flags
& TDF_SLIM
))
3643 if (OMP_FOR_PRE_BODY (node
))
3645 newline_and_indent (pp
, spc
+ 2);
3648 newline_and_indent (pp
, spc
);
3649 dump_generic_node (pp
, OMP_FOR_PRE_BODY (node
),
3652 if (OMP_FOR_INIT (node
))
3655 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (node
)); i
++)
3658 newline_and_indent (pp
, spc
);
3659 pp_string (pp
, "for (");
3660 tree init
= TREE_VEC_ELT (OMP_FOR_INIT (node
), i
);
3661 if (TREE_CODE (init
) != MODIFY_EXPR
3662 || TREE_CODE (TREE_OPERAND (init
, 1)) != TREE_VEC
)
3663 dump_generic_node (pp
, init
, spc
, flags
, false);
3666 dump_generic_node (pp
, TREE_OPERAND (init
, 0),
3668 pp_string (pp
, " = ");
3669 dump_omp_loop_non_rect_expr (pp
, TREE_OPERAND (init
, 1),
3672 pp_string (pp
, "; ");
3673 tree cond
= TREE_VEC_ELT (OMP_FOR_COND (node
), i
);
3674 if (!COMPARISON_CLASS_P (cond
)
3675 || TREE_CODE (TREE_OPERAND (cond
, 1)) != TREE_VEC
)
3676 dump_generic_node (pp
, cond
, spc
, flags
, false);
3679 dump_generic_node (pp
, TREE_OPERAND (cond
, 0),
3681 const char *op
= op_symbol (cond
);
3685 dump_omp_loop_non_rect_expr (pp
, TREE_OPERAND (cond
, 1),
3688 pp_string (pp
, "; ");
3689 dump_generic_node (pp
,
3690 TREE_VEC_ELT (OMP_FOR_INCR (node
), i
),
3692 pp_right_paren (pp
);
3695 if (OMP_FOR_BODY (node
))
3697 newline_and_indent (pp
, spc
+ 2);
3699 newline_and_indent (pp
, spc
+ 4);
3700 dump_generic_node (pp
, OMP_FOR_BODY (node
), spc
+ 4, flags
,
3702 newline_and_indent (pp
, spc
+ 2);
3703 pp_right_brace (pp
);
3705 if (OMP_FOR_INIT (node
))
3706 spc
-= 2 * TREE_VEC_LENGTH (OMP_FOR_INIT (node
)) - 2;
3707 if (OMP_FOR_PRE_BODY (node
))
3710 newline_and_indent (pp
, spc
+ 2);
3711 pp_right_brace (pp
);
3718 pp_string (pp
, "#pragma omp sections");
3719 dump_omp_clauses (pp
, OMP_SECTIONS_CLAUSES (node
), spc
, flags
);
3723 pp_string (pp
, "#pragma omp section");
3727 if (OMP_SCAN_CLAUSES (node
))
3729 pp_string (pp
, "#pragma omp scan");
3730 dump_omp_clauses (pp
, OMP_SCAN_CLAUSES (node
), spc
, flags
);
3735 pp_string (pp
, "#pragma omp master");
3739 pp_string (pp
, "#pragma omp masked");
3740 dump_omp_clauses (pp
, OMP_MASKED_CLAUSES (node
), spc
, flags
);
3744 pp_string (pp
, "#pragma omp taskgroup");
3745 dump_omp_clauses (pp
, OMP_TASKGROUP_CLAUSES (node
), spc
, flags
);
3749 pp_string (pp
, "#pragma omp ordered");
3750 dump_omp_clauses (pp
, OMP_ORDERED_CLAUSES (node
), spc
, flags
);
3754 pp_string (pp
, "#pragma omp critical");
3755 if (OMP_CRITICAL_NAME (node
))
3759 dump_generic_node (pp
, OMP_CRITICAL_NAME (node
), spc
,
3761 pp_right_paren (pp
);
3763 dump_omp_clauses (pp
, OMP_CRITICAL_CLAUSES (node
), spc
, flags
);
3767 pp_string (pp
, "#pragma omp atomic");
3768 if (OMP_ATOMIC_WEAK (node
))
3769 pp_string (pp
, " weak");
3770 dump_omp_atomic_memory_order (pp
, OMP_ATOMIC_MEMORY_ORDER (node
));
3771 newline_and_indent (pp
, spc
+ 2);
3772 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3776 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3779 case OMP_ATOMIC_READ
:
3780 pp_string (pp
, "#pragma omp atomic read");
3781 dump_omp_atomic_memory_order (pp
, OMP_ATOMIC_MEMORY_ORDER (node
));
3782 newline_and_indent (pp
, spc
+ 2);
3783 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3787 case OMP_ATOMIC_CAPTURE_OLD
:
3788 case OMP_ATOMIC_CAPTURE_NEW
:
3789 pp_string (pp
, "#pragma omp atomic capture");
3790 if (OMP_ATOMIC_WEAK (node
))
3791 pp_string (pp
, " weak");
3792 dump_omp_atomic_memory_order (pp
, OMP_ATOMIC_MEMORY_ORDER (node
));
3793 newline_and_indent (pp
, spc
+ 2);
3794 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3798 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3802 pp_string (pp
, "#pragma omp single");
3803 dump_omp_clauses (pp
, OMP_SINGLE_CLAUSES (node
), spc
, flags
);
3807 pp_string (pp
, "#pragma omp scope");
3808 dump_omp_clauses (pp
, OMP_SCOPE_CLAUSES (node
), spc
, flags
);
3812 /* If we come here, we're dumping something that's not an OMP construct,
3813 for example, OMP clauses attached to a function's '__attribute__'.
3814 Dump the whole OMP clause chain. */
3815 dump_omp_clauses (pp
, node
, spc
, flags
, false);
3819 case TRANSACTION_EXPR
:
3820 if (TRANSACTION_EXPR_OUTER (node
))
3821 pp_string (pp
, "__transaction_atomic [[outer]]");
3822 else if (TRANSACTION_EXPR_RELAXED (node
))
3823 pp_string (pp
, "__transaction_relaxed");
3825 pp_string (pp
, "__transaction_atomic");
3826 if (!(flags
& TDF_SLIM
) && TRANSACTION_EXPR_BODY (node
))
3828 newline_and_indent (pp
, spc
);
3830 newline_and_indent (pp
, spc
+ 2);
3831 dump_generic_node (pp
, TRANSACTION_EXPR_BODY (node
),
3832 spc
+ 2, flags
, false);
3833 newline_and_indent (pp
, spc
);
3834 pp_right_brace (pp
);
3839 case VEC_SERIES_EXPR
:
3840 case VEC_WIDEN_MULT_HI_EXPR
:
3841 case VEC_WIDEN_MULT_LO_EXPR
:
3842 case VEC_WIDEN_PLUS_HI_EXPR
:
3843 case VEC_WIDEN_PLUS_LO_EXPR
:
3844 case VEC_WIDEN_MINUS_HI_EXPR
:
3845 case VEC_WIDEN_MINUS_LO_EXPR
:
3846 case VEC_WIDEN_MULT_EVEN_EXPR
:
3847 case VEC_WIDEN_MULT_ODD_EXPR
:
3848 case VEC_WIDEN_LSHIFT_HI_EXPR
:
3849 case VEC_WIDEN_LSHIFT_LO_EXPR
:
3851 for (str
= get_tree_code_name (code
); *str
; str
++)
3852 pp_character (pp
, TOUPPER (*str
));
3853 pp_string (pp
, " < ");
3854 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3855 pp_string (pp
, ", ");
3856 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3857 pp_string (pp
, " > ");
3860 case VEC_DUPLICATE_EXPR
:
3862 for (str
= get_tree_code_name (code
); *str
; str
++)
3863 pp_character (pp
, TOUPPER (*str
));
3864 pp_string (pp
, " < ");
3865 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3866 pp_string (pp
, " > ");
3869 case VEC_UNPACK_HI_EXPR
:
3870 pp_string (pp
, " VEC_UNPACK_HI_EXPR < ");
3871 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3872 pp_string (pp
, " > ");
3875 case VEC_UNPACK_LO_EXPR
:
3876 pp_string (pp
, " VEC_UNPACK_LO_EXPR < ");
3877 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3878 pp_string (pp
, " > ");
3881 case VEC_UNPACK_FLOAT_HI_EXPR
:
3882 pp_string (pp
, " VEC_UNPACK_FLOAT_HI_EXPR < ");
3883 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3884 pp_string (pp
, " > ");
3887 case VEC_UNPACK_FLOAT_LO_EXPR
:
3888 pp_string (pp
, " VEC_UNPACK_FLOAT_LO_EXPR < ");
3889 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3890 pp_string (pp
, " > ");
3893 case VEC_UNPACK_FIX_TRUNC_HI_EXPR
:
3894 pp_string (pp
, " VEC_UNPACK_FIX_TRUNC_HI_EXPR < ");
3895 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3896 pp_string (pp
, " > ");
3899 case VEC_UNPACK_FIX_TRUNC_LO_EXPR
:
3900 pp_string (pp
, " VEC_UNPACK_FIX_TRUNC_LO_EXPR < ");
3901 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3902 pp_string (pp
, " > ");
3905 case VEC_PACK_TRUNC_EXPR
:
3906 pp_string (pp
, " VEC_PACK_TRUNC_EXPR < ");
3907 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3908 pp_string (pp
, ", ");
3909 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3910 pp_string (pp
, " > ");
3913 case VEC_PACK_SAT_EXPR
:
3914 pp_string (pp
, " VEC_PACK_SAT_EXPR < ");
3915 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3916 pp_string (pp
, ", ");
3917 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3918 pp_string (pp
, " > ");
3921 case VEC_PACK_FIX_TRUNC_EXPR
:
3922 pp_string (pp
, " VEC_PACK_FIX_TRUNC_EXPR < ");
3923 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3924 pp_string (pp
, ", ");
3925 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3926 pp_string (pp
, " > ");
3929 case VEC_PACK_FLOAT_EXPR
:
3930 pp_string (pp
, " VEC_PACK_FLOAT_EXPR < ");
3931 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3932 pp_string (pp
, ", ");
3933 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3934 pp_string (pp
, " > ");
3938 dump_block_node (pp
, node
, spc
, flags
);
3941 case DEBUG_BEGIN_STMT
:
3942 pp_string (pp
, "# DEBUG BEGIN STMT");
3949 if (is_stmt
&& is_expr
)
3955 /* Print the declaration of a variable. */
3958 print_declaration (pretty_printer
*pp
, tree t
, int spc
, dump_flags_t flags
)
3962 if (TREE_CODE(t
) == NAMELIST_DECL
)
3964 pp_string(pp
, "namelist ");
3965 dump_decl_name (pp
, t
, flags
);
3970 if (TREE_CODE (t
) == TYPE_DECL
)
3971 pp_string (pp
, "typedef ");
3973 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_WRTL
) && DECL_REGISTER (t
))
3974 pp_string (pp
, "register ");
3976 if (TREE_PUBLIC (t
) && DECL_EXTERNAL (t
))
3977 pp_string (pp
, "extern ");
3978 else if (TREE_STATIC (t
))
3979 pp_string (pp
, "static ");
3981 /* Print the type and name. */
3982 if (TREE_TYPE (t
) && TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
3986 /* Print array's type. */
3987 tmp
= TREE_TYPE (t
);
3988 while (TREE_CODE (TREE_TYPE (tmp
)) == ARRAY_TYPE
)
3989 tmp
= TREE_TYPE (tmp
);
3990 dump_generic_node (pp
, TREE_TYPE (tmp
), spc
, flags
, false);
3992 /* Print variable's name. */
3994 dump_generic_node (pp
, t
, spc
, flags
, false);
3996 /* Print the dimensions. */
3997 tmp
= TREE_TYPE (t
);
3998 while (TREE_CODE (tmp
) == ARRAY_TYPE
)
4000 dump_array_domain (pp
, TYPE_DOMAIN (tmp
), spc
, flags
);
4001 tmp
= TREE_TYPE (tmp
);
4004 else if (TREE_CODE (t
) == FUNCTION_DECL
)
4006 dump_generic_node (pp
, TREE_TYPE (TREE_TYPE (t
)), spc
, flags
, false);
4008 dump_decl_name (pp
, t
, flags
);
4009 dump_function_declaration (pp
, TREE_TYPE (t
), spc
, flags
);
4013 /* Print type declaration. */
4014 dump_generic_node (pp
, TREE_TYPE (t
), spc
, flags
, false);
4016 /* Print variable's name. */
4018 dump_generic_node (pp
, t
, spc
, flags
, false);
4021 if (VAR_P (t
) && DECL_HARD_REGISTER (t
))
4023 pp_string (pp
, " __asm__ ");
4025 dump_generic_node (pp
, DECL_ASSEMBLER_NAME (t
), spc
, flags
, false);
4026 pp_right_paren (pp
);
4029 /* The initial value of a function serves to determine whether the function
4030 is declared or defined. So the following does not apply to function
4032 if (TREE_CODE (t
) != FUNCTION_DECL
)
4034 /* Print the initial value. */
4035 if (DECL_INITIAL (t
))
4040 if (!(flags
& TDF_SLIM
))
4041 dump_generic_node (pp
, DECL_INITIAL (t
), spc
, flags
, false);
4043 pp_string (pp
, "<<< omitted >>>");
4047 if (VAR_P (t
) && DECL_HAS_VALUE_EXPR_P (t
))
4049 pp_string (pp
, " [value-expr: ");
4050 dump_generic_node (pp
, DECL_VALUE_EXPR (t
), spc
, flags
, false);
4051 pp_right_bracket (pp
);
4058 /* Prints a structure: name, fields, and methods.
4059 FIXME: Still incomplete. */
4062 print_struct_decl (pretty_printer
*pp
, const_tree node
, int spc
,
4065 /* Print the name of the structure. */
4066 if (TYPE_NAME (node
))
4069 if (TREE_CODE (node
) == RECORD_TYPE
)
4070 pp_string (pp
, "struct ");
4071 else if ((TREE_CODE (node
) == UNION_TYPE
4072 || TREE_CODE (node
) == QUAL_UNION_TYPE
))
4073 pp_string (pp
, "union ");
4075 dump_generic_node (pp
, TYPE_NAME (node
), spc
, TDF_NONE
, false);
4078 /* Print the contents of the structure. */
4084 /* Print the fields of the structure. */
4087 tmp
= TYPE_FIELDS (node
);
4090 /* Avoid to print recursively the structure. */
4091 /* FIXME : Not implemented correctly...,
4092 what about the case when we have a cycle in the contain graph? ...
4093 Maybe this could be solved by looking at the scope in which the
4094 structure was declared. */
4095 if (TREE_TYPE (tmp
) != node
4096 && (TREE_CODE (TREE_TYPE (tmp
)) != POINTER_TYPE
4097 || TREE_TYPE (TREE_TYPE (tmp
)) != node
))
4099 print_declaration (pp
, tmp
, spc
+2, flags
);
4102 tmp
= DECL_CHAIN (tmp
);
4106 pp_right_brace (pp
);
4109 /* Return the priority of the operator CODE.
4111 From lowest to highest precedence with either left-to-right (L-R)
4112 or right-to-left (R-L) associativity]:
4115 2 [R-L] = += -= *= /= %= &= ^= |= <<= >>=
4127 14 [R-L] ! ~ ++ -- + - * & (type) sizeof
4128 15 [L-R] fn() [] -> .
4130 unary +, - and * have higher precedence than the corresponding binary
4134 op_code_prio (enum tree_code code
)
4151 case TRUTH_ORIF_EXPR
:
4154 case TRUTH_AND_EXPR
:
4155 case TRUTH_ANDIF_EXPR
:
4162 case TRUTH_XOR_EXPR
:
4179 case UNORDERED_EXPR
:
4190 case VEC_WIDEN_LSHIFT_HI_EXPR
:
4191 case VEC_WIDEN_LSHIFT_LO_EXPR
:
4192 case WIDEN_LSHIFT_EXPR
:
4195 case WIDEN_SUM_EXPR
:
4197 case POINTER_PLUS_EXPR
:
4198 case POINTER_DIFF_EXPR
:
4202 case VEC_WIDEN_MULT_HI_EXPR
:
4203 case VEC_WIDEN_MULT_LO_EXPR
:
4204 case WIDEN_MULT_EXPR
:
4206 case WIDEN_MULT_PLUS_EXPR
:
4207 case WIDEN_MULT_MINUS_EXPR
:
4209 case MULT_HIGHPART_EXPR
:
4210 case TRUNC_DIV_EXPR
:
4212 case FLOOR_DIV_EXPR
:
4213 case ROUND_DIV_EXPR
:
4215 case EXACT_DIV_EXPR
:
4216 case TRUNC_MOD_EXPR
:
4218 case FLOOR_MOD_EXPR
:
4219 case ROUND_MOD_EXPR
:
4222 case TRUTH_NOT_EXPR
:
4224 case POSTINCREMENT_EXPR
:
4225 case POSTDECREMENT_EXPR
:
4226 case PREINCREMENT_EXPR
:
4227 case PREDECREMENT_EXPR
:
4233 case FIX_TRUNC_EXPR
:
4239 case ARRAY_RANGE_REF
:
4243 /* Special expressions. */
4249 case VEC_UNPACK_HI_EXPR
:
4250 case VEC_UNPACK_LO_EXPR
:
4251 case VEC_UNPACK_FLOAT_HI_EXPR
:
4252 case VEC_UNPACK_FLOAT_LO_EXPR
:
4253 case VEC_UNPACK_FIX_TRUNC_HI_EXPR
:
4254 case VEC_UNPACK_FIX_TRUNC_LO_EXPR
:
4255 case VEC_PACK_TRUNC_EXPR
:
4256 case VEC_PACK_SAT_EXPR
:
4260 /* Return an arbitrarily high precedence to avoid surrounding single
4261 VAR_DECLs in ()s. */
4266 /* Return the priority of the operator OP. */
4269 op_prio (const_tree op
)
4271 enum tree_code code
;
4276 code
= TREE_CODE (op
);
4277 if (code
== SAVE_EXPR
|| code
== NON_LVALUE_EXPR
)
4278 return op_prio (TREE_OPERAND (op
, 0));
4280 return op_code_prio (code
);
4283 /* Return the symbol associated with operator CODE. */
4286 op_symbol_code (enum tree_code code
)
4294 case TRUTH_ORIF_EXPR
:
4297 case TRUTH_AND_EXPR
:
4298 case TRUTH_ANDIF_EXPR
:
4304 case TRUTH_XOR_EXPR
:
4314 case UNORDERED_EXPR
:
4360 case WIDEN_LSHIFT_EXPR
:
4363 case WIDEN_PLUS_EXPR
:
4366 case WIDEN_MINUS_EXPR
:
4369 case POINTER_PLUS_EXPR
:
4375 case WIDEN_SUM_EXPR
:
4378 case WIDEN_MULT_EXPR
:
4381 case MULT_HIGHPART_EXPR
:
4386 case POINTER_DIFF_EXPR
:
4392 case TRUTH_NOT_EXPR
:
4399 case TRUNC_DIV_EXPR
:
4406 case FLOOR_DIV_EXPR
:
4409 case ROUND_DIV_EXPR
:
4412 case EXACT_DIV_EXPR
:
4415 case TRUNC_MOD_EXPR
:
4421 case FLOOR_MOD_EXPR
:
4424 case ROUND_MOD_EXPR
:
4427 case PREDECREMENT_EXPR
:
4430 case PREINCREMENT_EXPR
:
4433 case POSTDECREMENT_EXPR
:
4436 case POSTINCREMENT_EXPR
:
4446 return "<<< ??? >>>";
4450 /* Return the symbol associated with operator OP. */
4453 op_symbol (const_tree op
)
4455 return op_symbol_code (TREE_CODE (op
));
4458 /* Prints the name of a call. NODE is the CALL_EXPR_FN of a CALL_EXPR or
4459 the gimple_call_fn of a GIMPLE_CALL. */
4462 print_call_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
4467 if (TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4468 op0
= TREE_OPERAND (op0
, 0);
4471 switch (TREE_CODE (op0
))
4476 dump_function_name (pp
, op0
, flags
);
4482 op0
= TREE_OPERAND (op0
, 0);
4487 dump_generic_node (pp
, TREE_OPERAND (op0
, 0), 0, flags
, false);
4488 pp_string (pp
, ") ? ");
4489 dump_generic_node (pp
, TREE_OPERAND (op0
, 1), 0, flags
, false);
4490 pp_string (pp
, " : ");
4491 dump_generic_node (pp
, TREE_OPERAND (op0
, 2), 0, flags
, false);
4495 if (TREE_CODE (TREE_OPERAND (op0
, 0)) == VAR_DECL
)
4496 dump_function_name (pp
, TREE_OPERAND (op0
, 0), flags
);
4498 dump_generic_node (pp
, op0
, 0, flags
, false);
4502 if (integer_zerop (TREE_OPERAND (op0
, 1)))
4504 op0
= TREE_OPERAND (op0
, 0);
4511 dump_generic_node (pp
, op0
, 0, flags
, false);
4519 /* Print the first N characters in the array STR, replacing non-printable
4520 characters (including embedded nuls) with unambiguous escape sequences. */
4523 pretty_print_string (pretty_printer
*pp
, const char *str
, size_t n
)
4528 for ( ; n
; --n
, ++str
)
4533 pp_string (pp
, "\\b");
4537 pp_string (pp
, "\\f");
4541 pp_string (pp
, "\\n");
4545 pp_string (pp
, "\\r");
4549 pp_string (pp
, "\\t");
4553 pp_string (pp
, "\\v");
4557 pp_string (pp
, "\\\\");
4561 pp_string (pp
, "\\\"");
4565 pp_string (pp
, "\\'");
4569 if (str
[0] || n
> 1)
4571 if (!ISPRINT (str
[0]))
4574 sprintf (buf
, "\\x%02x", (unsigned char)str
[0]);
4575 pp_string (pp
, buf
);
4578 pp_character (pp
, str
[0]);
4586 maybe_init_pretty_print (FILE *file
)
4590 tree_pp
= new pretty_printer ();
4591 pp_needs_newline (tree_pp
) = true;
4592 pp_translate_identifiers (tree_pp
) = false;
4595 tree_pp
->buffer
->stream
= file
;
4599 newline_and_indent (pretty_printer
*pp
, int spc
)
4605 /* Print the identifier ID to PRETTY-PRINTER. */
4608 pp_tree_identifier (pretty_printer
*pp
, tree id
)
4610 if (pp_translate_identifiers (pp
))
4612 const char *text
= identifier_to_locale (IDENTIFIER_POINTER (id
));
4613 pp_append_text (pp
, text
, text
+ strlen (text
));
4616 pp_append_text (pp
, IDENTIFIER_POINTER (id
),
4617 IDENTIFIER_POINTER (id
) + IDENTIFIER_LENGTH (id
));
4620 /* A helper function that is used to dump function information before the
4624 dump_function_header (FILE *dump_file
, tree fdecl
, dump_flags_t flags
)
4626 const char *dname
, *aname
;
4627 struct cgraph_node
*node
= cgraph_node::get (fdecl
);
4628 struct function
*fun
= DECL_STRUCT_FUNCTION (fdecl
);
4630 dname
= lang_hooks
.decl_printable_name (fdecl
, 1);
4632 if (DECL_ASSEMBLER_NAME_SET_P (fdecl
))
4633 aname
= (IDENTIFIER_POINTER
4634 (DECL_ASSEMBLER_NAME (fdecl
)));
4636 aname
= "<unset-asm-name>";
4638 fprintf (dump_file
, "\n;; Function %s (%s, funcdef_no=%d",
4639 dname
, aname
, fun
->funcdef_no
);
4640 if (!(flags
& TDF_NOUID
))
4641 fprintf (dump_file
, ", decl_uid=%d", DECL_UID (fdecl
));
4644 fprintf (dump_file
, ", cgraph_uid=%d", node
->get_uid ());
4645 fprintf (dump_file
, ", symbol_order=%d)%s\n\n", node
->order
,
4646 node
->frequency
== NODE_FREQUENCY_HOT
4648 : node
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
4649 ? " (unlikely executed)"
4650 : node
->frequency
== NODE_FREQUENCY_EXECUTED_ONCE
4651 ? " (executed once)"
4655 fprintf (dump_file
, ")\n\n");
4658 /* Dump double_int D to pretty_printer PP. UNS is true
4659 if D is unsigned and false otherwise. */
4661 pp_double_int (pretty_printer
*pp
, double_int d
, bool uns
)
4664 pp_wide_integer (pp
, d
.low
);
4665 else if (d
.fits_uhwi ())
4666 pp_unsigned_wide_integer (pp
, d
.low
);
4669 unsigned HOST_WIDE_INT low
= d
.low
;
4670 HOST_WIDE_INT high
= d
.high
;
4671 if (!uns
&& d
.is_negative ())
4674 high
= ~high
+ !low
;
4677 /* Would "%x%0*x" or "%x%*0x" get zero-padding on all
4679 sprintf (pp_buffer (pp
)->digit_buffer
,
4680 HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
4681 (unsigned HOST_WIDE_INT
) high
, low
);
4682 pp_string (pp
, pp_buffer (pp
)->digit_buffer
);
4687 # pragma GCC diagnostic pop