1 /* Pretty formatting of GENERIC trees in C syntax.
2 Copyright (C) 2001-2018 Free Software Foundation, Inc.
3 Adapted from c-pretty-print.c 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"
38 /* Local functions, macros and variables. */
39 static const char *op_symbol (const_tree
);
40 static void pretty_print_string (pretty_printer
*, const char*);
41 static void newline_and_indent (pretty_printer
*, int);
42 static void maybe_init_pretty_print (FILE *);
43 static void print_struct_decl (pretty_printer
*, const_tree
, int, dump_flags_t
);
44 static void do_niy (pretty_printer
*, const_tree
, dump_flags_t
);
46 #define INDENT(SPACE) do { \
47 int i; for (i = 0; i<SPACE; i++) pp_space (pp); } while (0)
49 #define NIY do_niy (pp, node, flags)
51 static pretty_printer
*tree_pp
;
53 /* Try to print something for an unknown tree code. */
56 do_niy (pretty_printer
*pp
, const_tree node
, dump_flags_t flags
)
60 pp_string (pp
, "<<< Unknown tree: ");
61 pp_string (pp
, get_tree_code_name (TREE_CODE (node
)));
65 len
= TREE_OPERAND_LENGTH (node
);
66 for (i
= 0; i
< len
; ++i
)
68 newline_and_indent (pp
, 2);
69 dump_generic_node (pp
, TREE_OPERAND (node
, i
), 2, flags
, false);
73 pp_string (pp
, " >>>");
76 /* Debugging function to print out a generic expression. */
79 debug_generic_expr (tree t
)
81 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
);
82 fprintf (stderr
, "\n");
85 /* Debugging function to print out a generic statement. */
88 debug_generic_stmt (tree t
)
90 print_generic_stmt (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
);
91 fprintf (stderr
, "\n");
94 /* Debugging function to print out a chain of trees . */
97 debug_tree_chain (tree t
)
103 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
|TDF_UID
);
104 fprintf (stderr
, " ");
108 fprintf (stderr
, "... [cycled back to ");
109 print_generic_expr (stderr
, t
, TDF_VOPS
|TDF_MEMSYMS
|TDF_UID
);
110 fprintf (stderr
, "]");
114 fprintf (stderr
, "\n");
117 /* Prints declaration DECL to the FILE with details specified by FLAGS. */
119 print_generic_decl (FILE *file
, tree decl
, dump_flags_t flags
)
121 maybe_init_pretty_print (file
);
122 print_declaration (tree_pp
, decl
, 2, flags
);
123 pp_write_text_to_stream (tree_pp
);
126 /* Print tree T, and its successors, on file FILE. FLAGS specifies details
127 to show in the dump. See TDF_* in dumpfile.h. */
130 print_generic_stmt (FILE *file
, tree t
, dump_flags_t flags
)
132 maybe_init_pretty_print (file
);
133 dump_generic_node (tree_pp
, t
, 0, flags
, true);
134 pp_newline_and_flush (tree_pp
);
137 /* Print tree T, and its successors, on file FILE. FLAGS specifies details
138 to show in the dump. See TDF_* in dumpfile.h. The output is indented by
142 print_generic_stmt_indented (FILE *file
, tree t
, dump_flags_t flags
, int indent
)
146 maybe_init_pretty_print (file
);
148 for (i
= 0; i
< indent
; i
++)
150 dump_generic_node (tree_pp
, t
, indent
, flags
, true);
151 pp_newline_and_flush (tree_pp
);
154 /* Print a single expression T on file FILE. FLAGS specifies details to show
155 in the dump. See TDF_* in dumpfile.h. */
158 print_generic_expr (FILE *file
, tree t
, dump_flags_t flags
)
160 maybe_init_pretty_print (file
);
161 dump_generic_node (tree_pp
, t
, 0, flags
, false);
165 /* Dump NAME, an IDENTIFIER_POINTER, sanitized so that D<num> sequences
166 in it are replaced with Dxxxx, as long as they are at the start or
167 preceded by $ and at the end or followed by $. See make_fancy_name
171 dump_fancy_name (pretty_printer
*pp
, tree name
)
174 int length
= IDENTIFIER_LENGTH (name
);
175 const char *n
= IDENTIFIER_POINTER (name
);
182 && (n
== IDENTIFIER_POINTER (name
) || n
[-1] == '$'))
185 while (ISDIGIT (n
[l
]))
187 if (n
[l
] == '\0' || n
[l
] == '$')
200 pp_tree_identifier (pp
, name
);
204 char *str
= XNEWVEC (char, length
+ 1);
207 q
= n
= IDENTIFIER_POINTER (name
);
214 && (q
== IDENTIFIER_POINTER (name
) || q
[-1] == '$'))
217 while (ISDIGIT (q
[l
]))
219 if (q
[l
] == '\0' || q
[l
] == '$')
221 memcpy (p
, n
, q
- n
);
222 memcpy (p
+ (q
- n
), "Dxxxx", 5);
232 memcpy (p
, n
, IDENTIFIER_LENGTH (name
) - (n
- IDENTIFIER_POINTER (name
)));
234 if (pp_translate_identifiers (pp
))
236 const char *text
= identifier_to_locale (str
);
237 pp_append_text (pp
, text
, text
+ strlen (text
));
240 pp_append_text (pp
, str
, str
+ length
);
244 /* Dump the name of a _DECL node and its DECL_UID if TDF_UID is set
248 dump_decl_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
250 tree name
= DECL_NAME (node
);
253 if ((flags
& TDF_ASMNAME
)
254 && HAS_DECL_ASSEMBLER_NAME_P (node
)
255 && DECL_ASSEMBLER_NAME_SET_P (node
))
256 pp_tree_identifier (pp
, DECL_ASSEMBLER_NAME_RAW (node
));
257 /* For -fcompare-debug don't dump DECL_NAMELESS names at all,
258 -g might have created more fancy names and their indexes
259 could get out of sync. Usually those should be DECL_IGNORED_P
260 too, SRA can create even non-DECL_IGNORED_P DECL_NAMELESS fancy
261 names, let's hope those never get out of sync after doing the
262 dump_fancy_name sanitization. */
263 else if ((flags
& TDF_COMPARE_DEBUG
)
264 && DECL_NAMELESS (node
)
265 && DECL_IGNORED_P (node
))
267 /* For DECL_NAMELESS names look for embedded uids in the
268 names and sanitize them for TDF_NOUID. */
269 else if ((flags
& TDF_NOUID
) && DECL_NAMELESS (node
))
270 dump_fancy_name (pp
, name
);
272 pp_tree_identifier (pp
, name
);
274 char uid_sep
= (flags
& TDF_GIMPLE
) ? '_' : '.';
275 if ((flags
& TDF_UID
) || name
== NULL_TREE
)
277 if (TREE_CODE (node
) == LABEL_DECL
&& LABEL_DECL_UID (node
) != -1)
278 pp_printf (pp
, "L%c%d", uid_sep
, (int) LABEL_DECL_UID (node
));
279 else if (TREE_CODE (node
) == DEBUG_EXPR_DECL
)
281 if (flags
& TDF_NOUID
)
282 pp_string (pp
, "D#xxxx");
284 pp_printf (pp
, "D#%i", DEBUG_TEMP_UID (node
));
288 char c
= TREE_CODE (node
) == CONST_DECL
? 'C' : 'D';
289 if (flags
& TDF_NOUID
)
290 pp_printf (pp
, "%c.xxxx", c
);
292 pp_printf (pp
, "%c%c%u", c
, uid_sep
, DECL_UID (node
));
295 if ((flags
& TDF_ALIAS
) && DECL_PT_UID (node
) != DECL_UID (node
))
297 if (flags
& TDF_NOUID
)
298 pp_printf (pp
, "ptD.xxxx");
300 pp_printf (pp
, "ptD.%u", DECL_PT_UID (node
));
304 /* Like the above, but used for pretty printing function calls. */
307 dump_function_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
309 if (CONVERT_EXPR_P (node
))
310 node
= TREE_OPERAND (node
, 0);
311 if (DECL_NAME (node
) && (flags
& TDF_ASMNAME
) == 0)
312 pp_string (pp
, lang_hooks
.decl_printable_name (node
, 1));
314 dump_decl_name (pp
, node
, flags
);
317 /* Dump a function declaration. NODE is the FUNCTION_TYPE. PP, SPC and
318 FLAGS are as in dump_generic_node. */
321 dump_function_declaration (pretty_printer
*pp
, tree node
,
322 int spc
, dump_flags_t flags
)
324 bool wrote_arg
= false;
330 /* Print the argument types. */
331 arg
= TYPE_ARG_TYPES (node
);
332 while (arg
&& arg
!= void_list_node
&& arg
!= error_mark_node
)
340 dump_generic_node (pp
, TREE_VALUE (arg
), spc
, flags
, false);
341 arg
= TREE_CHAIN (arg
);
344 /* Drop the trailing void_type_node if we had any previous argument. */
345 if (arg
== void_list_node
&& !wrote_arg
)
346 pp_string (pp
, "void");
347 /* Properly dump vararg function types. */
348 else if (!arg
&& wrote_arg
)
349 pp_string (pp
, ", ...");
350 /* Avoid printing any arg for unprototyped functions. */
355 /* Dump the domain associated with an array. */
358 dump_array_domain (pretty_printer
*pp
, tree domain
, int spc
, dump_flags_t flags
)
360 pp_left_bracket (pp
);
363 tree min
= TYPE_MIN_VALUE (domain
);
364 tree max
= TYPE_MAX_VALUE (domain
);
367 && integer_zerop (min
)
368 && tree_fits_shwi_p (max
))
369 pp_wide_integer (pp
, tree_to_shwi (max
) + 1);
373 dump_generic_node (pp
, min
, spc
, flags
, false);
376 dump_generic_node (pp
, max
, spc
, flags
, false);
380 pp_string (pp
, "<unknown>");
381 pp_right_bracket (pp
);
385 /* Dump OpenMP clause CLAUSE. PP, CLAUSE, SPC and FLAGS are as in
386 dump_generic_node. */
389 dump_omp_clause (pretty_printer
*pp
, tree clause
, int spc
, dump_flags_t flags
)
393 switch (OMP_CLAUSE_CODE (clause
))
395 case OMP_CLAUSE_PRIVATE
:
398 case OMP_CLAUSE_SHARED
:
401 case OMP_CLAUSE_FIRSTPRIVATE
:
402 name
= "firstprivate";
404 case OMP_CLAUSE_LASTPRIVATE
:
405 name
= "lastprivate";
407 case OMP_CLAUSE_COPYIN
:
410 case OMP_CLAUSE_COPYPRIVATE
:
411 name
= "copyprivate";
413 case OMP_CLAUSE_UNIFORM
:
416 case OMP_CLAUSE_USE_DEVICE_PTR
:
417 name
= "use_device_ptr";
419 case OMP_CLAUSE_IS_DEVICE_PTR
:
420 name
= "is_device_ptr";
422 case OMP_CLAUSE__LOOPTEMP_
:
425 case OMP_CLAUSE_TO_DECLARE
:
428 case OMP_CLAUSE_LINK
:
432 pp_string (pp
, name
);
434 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
439 case OMP_CLAUSE_REDUCTION
:
440 pp_string (pp
, "reduction(");
441 if (OMP_CLAUSE_REDUCTION_CODE (clause
) != ERROR_MARK
)
444 op_symbol_code (OMP_CLAUSE_REDUCTION_CODE (clause
)));
447 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
453 pp_string (pp
, "if(");
454 switch (OMP_CLAUSE_IF_MODIFIER (clause
))
456 case ERROR_MARK
: break;
457 case OMP_PARALLEL
: pp_string (pp
, "parallel:"); break;
458 case OMP_TASK
: pp_string (pp
, "task:"); break;
459 case OMP_TASKLOOP
: pp_string (pp
, "taskloop:"); break;
460 case OMP_TARGET_DATA
: pp_string (pp
, "target data:"); break;
461 case OMP_TARGET
: pp_string (pp
, "target:"); break;
462 case OMP_TARGET_UPDATE
: pp_string (pp
, "target update:"); break;
463 case OMP_TARGET_ENTER_DATA
:
464 pp_string (pp
, "target enter data:"); break;
465 case OMP_TARGET_EXIT_DATA
: pp_string (pp
, "target exit data:"); break;
466 default: gcc_unreachable ();
468 dump_generic_node (pp
, OMP_CLAUSE_IF_EXPR (clause
),
473 case OMP_CLAUSE_NUM_THREADS
:
474 pp_string (pp
, "num_threads(");
475 dump_generic_node (pp
, OMP_CLAUSE_NUM_THREADS_EXPR (clause
),
480 case OMP_CLAUSE_NOWAIT
:
481 pp_string (pp
, "nowait");
483 case OMP_CLAUSE_ORDERED
:
484 pp_string (pp
, "ordered");
485 if (OMP_CLAUSE_ORDERED_EXPR (clause
))
488 dump_generic_node (pp
, OMP_CLAUSE_ORDERED_EXPR (clause
),
494 case OMP_CLAUSE_DEFAULT
:
495 pp_string (pp
, "default(");
496 switch (OMP_CLAUSE_DEFAULT_KIND (clause
))
498 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
500 case OMP_CLAUSE_DEFAULT_SHARED
:
501 pp_string (pp
, "shared");
503 case OMP_CLAUSE_DEFAULT_NONE
:
504 pp_string (pp
, "none");
506 case OMP_CLAUSE_DEFAULT_PRIVATE
:
507 pp_string (pp
, "private");
509 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE
:
510 pp_string (pp
, "firstprivate");
512 case OMP_CLAUSE_DEFAULT_PRESENT
:
513 pp_string (pp
, "present");
521 case OMP_CLAUSE_SCHEDULE
:
522 pp_string (pp
, "schedule(");
523 if (OMP_CLAUSE_SCHEDULE_KIND (clause
)
524 & (OMP_CLAUSE_SCHEDULE_MONOTONIC
525 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC
))
527 if (OMP_CLAUSE_SCHEDULE_KIND (clause
)
528 & OMP_CLAUSE_SCHEDULE_MONOTONIC
)
529 pp_string (pp
, "monotonic");
531 pp_string (pp
, "nonmonotonic");
532 if (OMP_CLAUSE_SCHEDULE_SIMD (clause
))
537 if (OMP_CLAUSE_SCHEDULE_SIMD (clause
))
538 pp_string (pp
, "simd:");
540 switch (OMP_CLAUSE_SCHEDULE_KIND (clause
) & OMP_CLAUSE_SCHEDULE_MASK
)
542 case OMP_CLAUSE_SCHEDULE_STATIC
:
543 pp_string (pp
, "static");
545 case OMP_CLAUSE_SCHEDULE_DYNAMIC
:
546 pp_string (pp
, "dynamic");
548 case OMP_CLAUSE_SCHEDULE_GUIDED
:
549 pp_string (pp
, "guided");
551 case OMP_CLAUSE_SCHEDULE_RUNTIME
:
552 pp_string (pp
, "runtime");
554 case OMP_CLAUSE_SCHEDULE_AUTO
:
555 pp_string (pp
, "auto");
560 if (OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause
))
563 dump_generic_node (pp
, OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause
),
569 case OMP_CLAUSE_UNTIED
:
570 pp_string (pp
, "untied");
573 case OMP_CLAUSE_COLLAPSE
:
574 pp_string (pp
, "collapse(");
575 dump_generic_node (pp
, OMP_CLAUSE_COLLAPSE_EXPR (clause
),
580 case OMP_CLAUSE_FINAL
:
581 pp_string (pp
, "final(");
582 dump_generic_node (pp
, OMP_CLAUSE_FINAL_EXPR (clause
),
587 case OMP_CLAUSE_MERGEABLE
:
588 pp_string (pp
, "mergeable");
591 case OMP_CLAUSE_LINEAR
:
592 pp_string (pp
, "linear(");
593 switch (OMP_CLAUSE_LINEAR_KIND (clause
))
595 case OMP_CLAUSE_LINEAR_DEFAULT
:
597 case OMP_CLAUSE_LINEAR_REF
:
598 pp_string (pp
, "ref(");
600 case OMP_CLAUSE_LINEAR_VAL
:
601 pp_string (pp
, "val(");
603 case OMP_CLAUSE_LINEAR_UVAL
:
604 pp_string (pp
, "uval(");
609 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
611 if (OMP_CLAUSE_LINEAR_KIND (clause
) != OMP_CLAUSE_LINEAR_DEFAULT
)
614 dump_generic_node (pp
, OMP_CLAUSE_LINEAR_STEP (clause
),
619 case OMP_CLAUSE_ALIGNED
:
620 pp_string (pp
, "aligned(");
621 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
623 if (OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
))
626 dump_generic_node (pp
, OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
),
632 case OMP_CLAUSE_DEPEND
:
633 pp_string (pp
, "depend(");
634 switch (OMP_CLAUSE_DEPEND_KIND (clause
))
636 case OMP_CLAUSE_DEPEND_IN
:
637 pp_string (pp
, "in");
639 case OMP_CLAUSE_DEPEND_OUT
:
640 pp_string (pp
, "out");
642 case OMP_CLAUSE_DEPEND_INOUT
:
643 pp_string (pp
, "inout");
645 case OMP_CLAUSE_DEPEND_SOURCE
:
646 pp_string (pp
, "source)");
648 case OMP_CLAUSE_DEPEND_SINK
:
649 pp_string (pp
, "sink:");
650 for (tree t
= OMP_CLAUSE_DECL (clause
); t
; t
= TREE_CHAIN (t
))
651 if (TREE_CODE (t
) == TREE_LIST
)
653 dump_generic_node (pp
, TREE_VALUE (t
), spc
, flags
, false);
654 if (TREE_PURPOSE (t
) != integer_zero_node
)
656 if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (t
))
660 dump_generic_node (pp
, TREE_PURPOSE (t
), spc
, flags
,
674 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
680 pp_string (pp
, "map(");
681 switch (OMP_CLAUSE_MAP_KIND (clause
))
684 case GOMP_MAP_POINTER
:
685 pp_string (pp
, "alloc");
688 case GOMP_MAP_TO_PSET
:
689 pp_string (pp
, "to");
692 pp_string (pp
, "from");
694 case GOMP_MAP_TOFROM
:
695 pp_string (pp
, "tofrom");
697 case GOMP_MAP_FORCE_ALLOC
:
698 pp_string (pp
, "force_alloc");
700 case GOMP_MAP_FORCE_TO
:
701 pp_string (pp
, "force_to");
703 case GOMP_MAP_FORCE_FROM
:
704 pp_string (pp
, "force_from");
706 case GOMP_MAP_FORCE_TOFROM
:
707 pp_string (pp
, "force_tofrom");
709 case GOMP_MAP_FORCE_PRESENT
:
710 pp_string (pp
, "force_present");
712 case GOMP_MAP_DELETE
:
713 pp_string (pp
, "delete");
715 case GOMP_MAP_FORCE_DEVICEPTR
:
716 pp_string (pp
, "force_deviceptr");
718 case GOMP_MAP_ALWAYS_TO
:
719 pp_string (pp
, "always,to");
721 case GOMP_MAP_ALWAYS_FROM
:
722 pp_string (pp
, "always,from");
724 case GOMP_MAP_ALWAYS_TOFROM
:
725 pp_string (pp
, "always,tofrom");
727 case GOMP_MAP_RELEASE
:
728 pp_string (pp
, "release");
730 case GOMP_MAP_FIRSTPRIVATE_POINTER
:
731 pp_string (pp
, "firstprivate");
733 case GOMP_MAP_FIRSTPRIVATE_REFERENCE
:
734 pp_string (pp
, "firstprivate ref");
736 case GOMP_MAP_STRUCT
:
737 pp_string (pp
, "struct");
739 case GOMP_MAP_ALWAYS_POINTER
:
740 pp_string (pp
, "always_pointer");
742 case GOMP_MAP_DEVICE_RESIDENT
:
743 pp_string (pp
, "device_resident");
746 pp_string (pp
, "link");
752 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
755 if (OMP_CLAUSE_SIZE (clause
))
757 switch (OMP_CLAUSE_CODE (clause
) == OMP_CLAUSE_MAP
758 ? OMP_CLAUSE_MAP_KIND (clause
) : GOMP_MAP_TO
)
760 case GOMP_MAP_POINTER
:
761 case GOMP_MAP_FIRSTPRIVATE_POINTER
:
762 case GOMP_MAP_FIRSTPRIVATE_REFERENCE
:
763 case GOMP_MAP_ALWAYS_POINTER
:
764 pp_string (pp
, " [pointer assign, bias: ");
766 case GOMP_MAP_TO_PSET
:
767 pp_string (pp
, " [pointer set, len: ");
770 pp_string (pp
, " [len: ");
773 dump_generic_node (pp
, OMP_CLAUSE_SIZE (clause
),
775 pp_right_bracket (pp
);
780 case OMP_CLAUSE_FROM
:
781 pp_string (pp
, "from(");
782 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
784 goto print_clause_size
;
787 pp_string (pp
, "to(");
788 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
790 goto print_clause_size
;
792 case OMP_CLAUSE__CACHE_
:
794 dump_generic_node (pp
, OMP_CLAUSE_DECL (clause
),
796 goto print_clause_size
;
798 case OMP_CLAUSE_NUM_TEAMS
:
799 pp_string (pp
, "num_teams(");
800 dump_generic_node (pp
, OMP_CLAUSE_NUM_TEAMS_EXPR (clause
),
805 case OMP_CLAUSE_THREAD_LIMIT
:
806 pp_string (pp
, "thread_limit(");
807 dump_generic_node (pp
, OMP_CLAUSE_THREAD_LIMIT_EXPR (clause
),
812 case OMP_CLAUSE_DEVICE
:
813 pp_string (pp
, "device(");
814 dump_generic_node (pp
, OMP_CLAUSE_DEVICE_ID (clause
),
819 case OMP_CLAUSE_DIST_SCHEDULE
:
820 pp_string (pp
, "dist_schedule(static");
821 if (OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (clause
))
824 dump_generic_node (pp
,
825 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (clause
),
831 case OMP_CLAUSE_PROC_BIND
:
832 pp_string (pp
, "proc_bind(");
833 switch (OMP_CLAUSE_PROC_BIND_KIND (clause
))
835 case OMP_CLAUSE_PROC_BIND_MASTER
:
836 pp_string (pp
, "master");
838 case OMP_CLAUSE_PROC_BIND_CLOSE
:
839 pp_string (pp
, "close");
841 case OMP_CLAUSE_PROC_BIND_SPREAD
:
842 pp_string (pp
, "spread");
850 case OMP_CLAUSE_SAFELEN
:
851 pp_string (pp
, "safelen(");
852 dump_generic_node (pp
, OMP_CLAUSE_SAFELEN_EXPR (clause
),
857 case OMP_CLAUSE_SIMDLEN
:
858 pp_string (pp
, "simdlen(");
859 dump_generic_node (pp
, OMP_CLAUSE_SIMDLEN_EXPR (clause
),
864 case OMP_CLAUSE_PRIORITY
:
865 pp_string (pp
, "priority(");
866 dump_generic_node (pp
, OMP_CLAUSE_PRIORITY_EXPR (clause
),
871 case OMP_CLAUSE_GRAINSIZE
:
872 pp_string (pp
, "grainsize(");
873 dump_generic_node (pp
, OMP_CLAUSE_GRAINSIZE_EXPR (clause
),
878 case OMP_CLAUSE_NUM_TASKS
:
879 pp_string (pp
, "num_tasks(");
880 dump_generic_node (pp
, OMP_CLAUSE_NUM_TASKS_EXPR (clause
),
885 case OMP_CLAUSE_HINT
:
886 pp_string (pp
, "hint(");
887 dump_generic_node (pp
, OMP_CLAUSE_HINT_EXPR (clause
),
892 case OMP_CLAUSE_DEFAULTMAP
:
893 pp_string (pp
, "defaultmap(tofrom:scalar)");
896 case OMP_CLAUSE__SIMDUID_
:
897 pp_string (pp
, "_simduid_(");
898 dump_generic_node (pp
, OMP_CLAUSE__SIMDUID__DECL (clause
),
903 case OMP_CLAUSE__SIMT_
:
904 pp_string (pp
, "_simt_");
907 case OMP_CLAUSE_GANG
:
908 pp_string (pp
, "gang");
909 if (OMP_CLAUSE_GANG_EXPR (clause
) != NULL_TREE
)
911 pp_string (pp
, "(num: ");
912 dump_generic_node (pp
, OMP_CLAUSE_GANG_EXPR (clause
),
915 if (OMP_CLAUSE_GANG_STATIC_EXPR (clause
) != NULL_TREE
)
917 if (OMP_CLAUSE_GANG_EXPR (clause
) == NULL_TREE
)
921 pp_string (pp
, "static:");
922 if (OMP_CLAUSE_GANG_STATIC_EXPR (clause
)
923 == integer_minus_one_node
)
924 pp_character (pp
, '*');
926 dump_generic_node (pp
, OMP_CLAUSE_GANG_STATIC_EXPR (clause
),
929 if (OMP_CLAUSE_GANG_EXPR (clause
) != NULL_TREE
930 || OMP_CLAUSE_GANG_STATIC_EXPR (clause
) != NULL_TREE
)
934 case OMP_CLAUSE_ASYNC
:
935 pp_string (pp
, "async");
936 if (OMP_CLAUSE_ASYNC_EXPR (clause
))
938 pp_character(pp
, '(');
939 dump_generic_node (pp
, OMP_CLAUSE_ASYNC_EXPR (clause
),
941 pp_character(pp
, ')');
945 case OMP_CLAUSE_AUTO
:
947 pp_string (pp
, omp_clause_code_name
[OMP_CLAUSE_CODE (clause
)]);
950 case OMP_CLAUSE_WAIT
:
951 pp_string (pp
, "wait(");
952 dump_generic_node (pp
, OMP_CLAUSE_WAIT_EXPR (clause
),
954 pp_character(pp
, ')');
957 case OMP_CLAUSE_WORKER
:
958 pp_string (pp
, "worker");
959 if (OMP_CLAUSE_WORKER_EXPR (clause
) != NULL_TREE
)
962 dump_generic_node (pp
, OMP_CLAUSE_WORKER_EXPR (clause
),
968 case OMP_CLAUSE_VECTOR
:
969 pp_string (pp
, "vector");
970 if (OMP_CLAUSE_VECTOR_EXPR (clause
) != NULL_TREE
)
973 dump_generic_node (pp
, OMP_CLAUSE_VECTOR_EXPR (clause
),
979 case OMP_CLAUSE_NUM_GANGS
:
980 pp_string (pp
, "num_gangs(");
981 dump_generic_node (pp
, OMP_CLAUSE_NUM_GANGS_EXPR (clause
),
983 pp_character (pp
, ')');
986 case OMP_CLAUSE_NUM_WORKERS
:
987 pp_string (pp
, "num_workers(");
988 dump_generic_node (pp
, OMP_CLAUSE_NUM_WORKERS_EXPR (clause
),
990 pp_character (pp
, ')');
993 case OMP_CLAUSE_VECTOR_LENGTH
:
994 pp_string (pp
, "vector_length(");
995 dump_generic_node (pp
, OMP_CLAUSE_VECTOR_LENGTH_EXPR (clause
),
997 pp_character (pp
, ')');
1000 case OMP_CLAUSE_INBRANCH
:
1001 pp_string (pp
, "inbranch");
1003 case OMP_CLAUSE_NOTINBRANCH
:
1004 pp_string (pp
, "notinbranch");
1006 case OMP_CLAUSE_FOR
:
1007 pp_string (pp
, "for");
1009 case OMP_CLAUSE_PARALLEL
:
1010 pp_string (pp
, "parallel");
1012 case OMP_CLAUSE_SECTIONS
:
1013 pp_string (pp
, "sections");
1015 case OMP_CLAUSE_TASKGROUP
:
1016 pp_string (pp
, "taskgroup");
1018 case OMP_CLAUSE_NOGROUP
:
1019 pp_string (pp
, "nogroup");
1021 case OMP_CLAUSE_THREADS
:
1022 pp_string (pp
, "threads");
1024 case OMP_CLAUSE_SIMD
:
1025 pp_string (pp
, "simd");
1027 case OMP_CLAUSE_INDEPENDENT
:
1028 pp_string (pp
, "independent");
1030 case OMP_CLAUSE_TILE
:
1031 pp_string (pp
, "tile(");
1032 dump_generic_node (pp
, OMP_CLAUSE_TILE_LIST (clause
),
1034 pp_right_paren (pp
);
1037 case OMP_CLAUSE__GRIDDIM_
:
1038 pp_string (pp
, "_griddim_(");
1039 pp_unsigned_wide_integer (pp
, OMP_CLAUSE__GRIDDIM__DIMENSION (clause
));
1041 dump_generic_node (pp
, OMP_CLAUSE__GRIDDIM__SIZE (clause
), spc
, flags
,
1044 dump_generic_node (pp
, OMP_CLAUSE__GRIDDIM__GROUP (clause
), spc
, flags
,
1046 pp_right_paren (pp
);
1048 case OMP_CLAUSE_IF_PRESENT
:
1049 pp_string (pp
, "if_present");
1051 case OMP_CLAUSE_FINALIZE
:
1052 pp_string (pp
, "finalize");
1056 /* Should never happen. */
1057 dump_generic_node (pp
, clause
, spc
, flags
, false);
1063 /* Dump the list of OpenMP clauses. PP, SPC and FLAGS are as in
1064 dump_generic_node. */
1067 dump_omp_clauses (pretty_printer
*pp
, tree clause
, int spc
, dump_flags_t flags
)
1075 dump_omp_clause (pp
, clause
, spc
, flags
);
1076 clause
= OMP_CLAUSE_CHAIN (clause
);
1084 /* Dump location LOC to PP. */
1087 dump_location (pretty_printer
*pp
, location_t loc
)
1089 expanded_location xloc
= expand_location (loc
);
1091 pp_left_bracket (pp
);
1094 pp_string (pp
, xloc
.file
);
1095 pp_string (pp
, ":");
1097 pp_decimal_int (pp
, xloc
.line
);
1099 pp_decimal_int (pp
, xloc
.column
);
1100 pp_string (pp
, "] ");
1104 /* Dump lexical block BLOCK. PP, SPC and FLAGS are as in
1105 dump_generic_node. */
1108 dump_block_node (pretty_printer
*pp
, tree block
, int spc
, dump_flags_t flags
)
1112 pp_printf (pp
, "BLOCK #%d ", BLOCK_NUMBER (block
));
1114 if (flags
& TDF_ADDRESS
)
1115 pp_printf (pp
, "[%p] ", (void *) block
);
1117 if (BLOCK_ABSTRACT (block
))
1118 pp_string (pp
, "[abstract] ");
1120 if (TREE_ASM_WRITTEN (block
))
1121 pp_string (pp
, "[written] ");
1123 if (flags
& TDF_SLIM
)
1126 if (BLOCK_SOURCE_LOCATION (block
))
1127 dump_location (pp
, BLOCK_SOURCE_LOCATION (block
));
1129 newline_and_indent (pp
, spc
+ 2);
1131 if (BLOCK_SUPERCONTEXT (block
))
1133 pp_string (pp
, "SUPERCONTEXT: ");
1134 dump_generic_node (pp
, BLOCK_SUPERCONTEXT (block
), 0,
1135 flags
| TDF_SLIM
, false);
1136 newline_and_indent (pp
, spc
+ 2);
1139 if (BLOCK_SUBBLOCKS (block
))
1141 pp_string (pp
, "SUBBLOCKS: ");
1142 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
1144 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1147 newline_and_indent (pp
, spc
+ 2);
1150 if (BLOCK_CHAIN (block
))
1152 pp_string (pp
, "SIBLINGS: ");
1153 for (t
= BLOCK_CHAIN (block
); t
; t
= BLOCK_CHAIN (t
))
1155 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1158 newline_and_indent (pp
, spc
+ 2);
1161 if (BLOCK_VARS (block
))
1163 pp_string (pp
, "VARS: ");
1164 for (t
= BLOCK_VARS (block
); t
; t
= TREE_CHAIN (t
))
1166 dump_generic_node (pp
, t
, 0, flags
, false);
1169 newline_and_indent (pp
, spc
+ 2);
1172 if (vec_safe_length (BLOCK_NONLOCALIZED_VARS (block
)) > 0)
1175 vec
<tree
, va_gc
> *nlv
= BLOCK_NONLOCALIZED_VARS (block
);
1177 pp_string (pp
, "NONLOCALIZED_VARS: ");
1178 FOR_EACH_VEC_ELT (*nlv
, i
, t
)
1180 dump_generic_node (pp
, t
, 0, flags
, false);
1183 newline_and_indent (pp
, spc
+ 2);
1186 if (BLOCK_ABSTRACT_ORIGIN (block
))
1188 pp_string (pp
, "ABSTRACT_ORIGIN: ");
1189 dump_generic_node (pp
, BLOCK_ABSTRACT_ORIGIN (block
), 0,
1190 flags
| TDF_SLIM
, false);
1191 newline_and_indent (pp
, spc
+ 2);
1194 if (BLOCK_FRAGMENT_ORIGIN (block
))
1196 pp_string (pp
, "FRAGMENT_ORIGIN: ");
1197 dump_generic_node (pp
, BLOCK_FRAGMENT_ORIGIN (block
), 0,
1198 flags
| TDF_SLIM
, false);
1199 newline_and_indent (pp
, spc
+ 2);
1202 if (BLOCK_FRAGMENT_CHAIN (block
))
1204 pp_string (pp
, "FRAGMENT_CHAIN: ");
1205 for (t
= BLOCK_FRAGMENT_CHAIN (block
); t
; t
= BLOCK_FRAGMENT_CHAIN (t
))
1207 dump_generic_node (pp
, t
, 0, flags
| TDF_SLIM
, false);
1210 newline_and_indent (pp
, spc
+ 2);
1215 /* Dump the node NODE on the pretty_printer PP, SPC spaces of
1216 indent. FLAGS specifies details to show in the dump (see TDF_* in
1217 dumpfile.h). If IS_STMT is true, the object printed is considered
1218 to be a statement and it is terminated by ';' if appropriate. */
1221 dump_generic_node (pretty_printer
*pp
, tree node
, int spc
, dump_flags_t flags
,
1228 enum tree_code code
;
1230 if (node
== NULL_TREE
)
1233 is_expr
= EXPR_P (node
);
1235 if (is_stmt
&& (flags
& TDF_STMTADDR
))
1236 pp_printf (pp
, "<&%p> ", (void *)node
);
1238 if ((flags
& TDF_LINENO
) && EXPR_HAS_LOCATION (node
))
1239 dump_location (pp
, EXPR_LOCATION (node
));
1241 code
= TREE_CODE (node
);
1245 pp_string (pp
, "<<< error >>>");
1248 case IDENTIFIER_NODE
:
1249 pp_tree_identifier (pp
, node
);
1253 while (node
&& node
!= error_mark_node
)
1255 if (TREE_PURPOSE (node
))
1257 dump_generic_node (pp
, TREE_PURPOSE (node
), spc
, flags
, false);
1260 dump_generic_node (pp
, TREE_VALUE (node
), spc
, flags
, false);
1261 node
= TREE_CHAIN (node
);
1262 if (node
&& TREE_CODE (node
) == TREE_LIST
)
1271 dump_generic_node (pp
, BINFO_TYPE (node
), spc
, flags
, false);
1277 if (TREE_VEC_LENGTH (node
) > 0)
1279 size_t len
= TREE_VEC_LENGTH (node
);
1280 for (i
= 0; i
< len
- 1; i
++)
1282 dump_generic_node (pp
, TREE_VEC_ELT (node
, i
), spc
, flags
,
1287 dump_generic_node (pp
, TREE_VEC_ELT (node
, len
- 1), spc
,
1296 case FIXED_POINT_TYPE
:
1302 unsigned int quals
= TYPE_QUALS (node
);
1303 enum tree_code_class tclass
;
1305 if (quals
& TYPE_QUAL_ATOMIC
)
1306 pp_string (pp
, "atomic ");
1307 if (quals
& TYPE_QUAL_CONST
)
1308 pp_string (pp
, "const ");
1309 else if (quals
& TYPE_QUAL_VOLATILE
)
1310 pp_string (pp
, "volatile ");
1311 else if (quals
& TYPE_QUAL_RESTRICT
)
1312 pp_string (pp
, "restrict ");
1314 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node
)))
1316 pp_string (pp
, "<address-space-");
1317 pp_decimal_int (pp
, TYPE_ADDR_SPACE (node
));
1318 pp_string (pp
, "> ");
1321 tclass
= TREE_CODE_CLASS (TREE_CODE (node
));
1323 if (tclass
== tcc_declaration
)
1325 if (DECL_NAME (node
))
1326 dump_decl_name (pp
, node
, flags
);
1328 pp_string (pp
, "<unnamed type decl>");
1330 else if (tclass
== tcc_type
)
1332 if (TYPE_NAME (node
))
1334 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
1335 pp_tree_identifier (pp
, TYPE_NAME (node
));
1336 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
1337 && DECL_NAME (TYPE_NAME (node
)))
1338 dump_decl_name (pp
, TYPE_NAME (node
), flags
);
1340 pp_string (pp
, "<unnamed type>");
1342 else if (TREE_CODE (node
) == VECTOR_TYPE
)
1344 pp_string (pp
, "vector");
1346 pp_wide_integer (pp
, TYPE_VECTOR_SUBPARTS (node
));
1347 pp_string (pp
, ") ");
1348 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1350 else if (TREE_CODE (node
) == INTEGER_TYPE
)
1352 if (TYPE_PRECISION (node
) == CHAR_TYPE_SIZE
)
1353 pp_string (pp
, (TYPE_UNSIGNED (node
)
1356 else if (TYPE_PRECISION (node
) == SHORT_TYPE_SIZE
)
1357 pp_string (pp
, (TYPE_UNSIGNED (node
)
1360 else if (TYPE_PRECISION (node
) == INT_TYPE_SIZE
)
1361 pp_string (pp
, (TYPE_UNSIGNED (node
)
1364 else if (TYPE_PRECISION (node
) == LONG_TYPE_SIZE
)
1365 pp_string (pp
, (TYPE_UNSIGNED (node
)
1368 else if (TYPE_PRECISION (node
) == LONG_LONG_TYPE_SIZE
)
1369 pp_string (pp
, (TYPE_UNSIGNED (node
)
1370 ? "unsigned long long"
1371 : "signed long long"));
1372 else if (TYPE_PRECISION (node
) >= CHAR_TYPE_SIZE
1373 && pow2p_hwi (TYPE_PRECISION (node
)))
1375 pp_string (pp
, (TYPE_UNSIGNED (node
) ? "uint" : "int"));
1376 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1377 pp_string (pp
, "_t");
1381 pp_string (pp
, (TYPE_UNSIGNED (node
)
1382 ? "<unnamed-unsigned:"
1383 : "<unnamed-signed:"));
1384 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1388 else if (TREE_CODE (node
) == COMPLEX_TYPE
)
1390 pp_string (pp
, "__complex__ ");
1391 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1393 else if (TREE_CODE (node
) == REAL_TYPE
)
1395 pp_string (pp
, "<float:");
1396 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1399 else if (TREE_CODE (node
) == FIXED_POINT_TYPE
)
1401 pp_string (pp
, "<fixed-point-");
1402 pp_string (pp
, TYPE_SATURATING (node
) ? "sat:" : "nonsat:");
1403 pp_decimal_int (pp
, TYPE_PRECISION (node
));
1406 else if (TREE_CODE (node
) == VOID_TYPE
)
1407 pp_string (pp
, "void");
1409 pp_string (pp
, "<unnamed type>");
1415 case REFERENCE_TYPE
:
1416 str
= (TREE_CODE (node
) == POINTER_TYPE
? "*" : "&");
1418 if (TREE_TYPE (node
) == NULL
)
1420 pp_string (pp
, str
);
1421 pp_string (pp
, "<null type>");
1423 else if (TREE_CODE (TREE_TYPE (node
)) == FUNCTION_TYPE
)
1425 tree fnode
= TREE_TYPE (node
);
1427 dump_generic_node (pp
, TREE_TYPE (fnode
), spc
, flags
, false);
1430 pp_string (pp
, str
);
1431 if (TYPE_IDENTIFIER (node
))
1432 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
1433 else if (flags
& TDF_NOUID
)
1434 pp_printf (pp
, "<Txxxx>");
1436 pp_printf (pp
, "<T%x>", TYPE_UID (node
));
1438 pp_right_paren (pp
);
1439 dump_function_declaration (pp
, fnode
, spc
, flags
);
1443 unsigned int quals
= TYPE_QUALS (node
);
1445 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1447 pp_string (pp
, str
);
1449 if (quals
& TYPE_QUAL_CONST
)
1450 pp_string (pp
, " const");
1451 if (quals
& TYPE_QUAL_VOLATILE
)
1452 pp_string (pp
, " volatile");
1453 if (quals
& TYPE_QUAL_RESTRICT
)
1454 pp_string (pp
, " restrict");
1456 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node
)))
1458 pp_string (pp
, " <address-space-");
1459 pp_decimal_int (pp
, TYPE_ADDR_SPACE (node
));
1463 if (TYPE_REF_CAN_ALIAS_ALL (node
))
1464 pp_string (pp
, " {ref-all}");
1474 if (flags
& TDF_GIMPLE
)
1476 pp_string (pp
, "__MEM <");
1477 dump_generic_node (pp
, TREE_TYPE (node
),
1478 spc
, flags
| TDF_SLIM
, false);
1479 if (TYPE_ALIGN (TREE_TYPE (node
))
1480 != TYPE_ALIGN (TYPE_MAIN_VARIANT (TREE_TYPE (node
))))
1482 pp_string (pp
, ", ");
1483 pp_decimal_int (pp
, TYPE_ALIGN (TREE_TYPE (node
)));
1486 pp_string (pp
, " (");
1487 if (TREE_TYPE (TREE_OPERAND (node
, 0))
1488 != TREE_TYPE (TREE_OPERAND (node
, 1)))
1491 dump_generic_node (pp
, TREE_TYPE (TREE_OPERAND (node
, 1)),
1492 spc
, flags
| TDF_SLIM
, false);
1493 pp_right_paren (pp
);
1495 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
1496 spc
, flags
| TDF_SLIM
, false);
1497 if (! integer_zerop (TREE_OPERAND (node
, 1)))
1499 pp_string (pp
, " + ");
1500 dump_generic_node (pp
, TREE_OPERAND (node
, 1),
1501 spc
, flags
| TDF_SLIM
, false);
1503 pp_right_paren (pp
);
1505 else if (integer_zerop (TREE_OPERAND (node
, 1))
1506 /* Dump the types of INTEGER_CSTs explicitly, for we can't
1507 infer them and MEM_ATTR caching will share MEM_REFs
1508 with differently-typed op0s. */
1509 && TREE_CODE (TREE_OPERAND (node
, 0)) != INTEGER_CST
1510 /* Released SSA_NAMES have no TREE_TYPE. */
1511 && TREE_TYPE (TREE_OPERAND (node
, 0)) != NULL_TREE
1512 /* Same pointer types, but ignoring POINTER_TYPE vs.
1514 && (TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 0)))
1515 == TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 1))))
1516 && (TYPE_MODE (TREE_TYPE (TREE_OPERAND (node
, 0)))
1517 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (node
, 1))))
1518 && (TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (node
, 0)))
1519 == TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (node
, 1))))
1520 /* Same value types ignoring qualifiers. */
1521 && (TYPE_MAIN_VARIANT (TREE_TYPE (node
))
1522 == TYPE_MAIN_VARIANT
1523 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (node
, 1)))))
1524 && (!(flags
& TDF_ALIAS
)
1525 || MR_DEPENDENCE_CLIQUE (node
) == 0))
1527 if (TREE_CODE (TREE_OPERAND (node
, 0)) != ADDR_EXPR
)
1530 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
1534 dump_generic_node (pp
,
1535 TREE_OPERAND (TREE_OPERAND (node
, 0), 0),
1542 pp_string (pp
, "MEM[");
1544 ptype
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (node
, 1)));
1545 dump_generic_node (pp
, ptype
,
1546 spc
, flags
| TDF_SLIM
, false);
1547 pp_right_paren (pp
);
1548 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
1550 if (!integer_zerop (TREE_OPERAND (node
, 1)))
1552 pp_string (pp
, " + ");
1553 dump_generic_node (pp
, TREE_OPERAND (node
, 1),
1556 if ((flags
& TDF_ALIAS
)
1557 && MR_DEPENDENCE_CLIQUE (node
) != 0)
1559 pp_string (pp
, " clique ");
1560 pp_unsigned_wide_integer (pp
, MR_DEPENDENCE_CLIQUE (node
));
1561 pp_string (pp
, " base ");
1562 pp_unsigned_wide_integer (pp
, MR_DEPENDENCE_BASE (node
));
1564 pp_right_bracket (pp
);
1569 case TARGET_MEM_REF
:
1571 const char *sep
= "";
1574 pp_string (pp
, "MEM[");
1576 if (TREE_CODE (TMR_BASE (node
)) == ADDR_EXPR
)
1578 pp_string (pp
, sep
);
1580 pp_string (pp
, "symbol: ");
1581 dump_generic_node (pp
, TREE_OPERAND (TMR_BASE (node
), 0),
1586 pp_string (pp
, sep
);
1588 pp_string (pp
, "base: ");
1589 dump_generic_node (pp
, TMR_BASE (node
), spc
, flags
, false);
1591 tmp
= TMR_INDEX2 (node
);
1594 pp_string (pp
, sep
);
1596 pp_string (pp
, "base: ");
1597 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1599 tmp
= TMR_INDEX (node
);
1602 pp_string (pp
, sep
);
1604 pp_string (pp
, "index: ");
1605 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1607 tmp
= TMR_STEP (node
);
1610 pp_string (pp
, sep
);
1612 pp_string (pp
, "step: ");
1613 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1615 tmp
= TMR_OFFSET (node
);
1618 pp_string (pp
, sep
);
1620 pp_string (pp
, "offset: ");
1621 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1623 pp_right_bracket (pp
);
1631 /* Print the innermost component type. */
1632 for (tmp
= TREE_TYPE (node
); TREE_CODE (tmp
) == ARRAY_TYPE
;
1633 tmp
= TREE_TYPE (tmp
))
1635 dump_generic_node (pp
, tmp
, spc
, flags
, false);
1637 /* Print the dimensions. */
1638 for (tmp
= node
; TREE_CODE (tmp
) == ARRAY_TYPE
; tmp
= TREE_TYPE (tmp
))
1639 dump_array_domain (pp
, TYPE_DOMAIN (tmp
), spc
, flags
);
1645 case QUAL_UNION_TYPE
:
1647 unsigned int quals
= TYPE_QUALS (node
);
1649 if (quals
& TYPE_QUAL_ATOMIC
)
1650 pp_string (pp
, "atomic ");
1651 if (quals
& TYPE_QUAL_CONST
)
1652 pp_string (pp
, "const ");
1653 if (quals
& TYPE_QUAL_VOLATILE
)
1654 pp_string (pp
, "volatile ");
1656 /* Print the name of the structure. */
1657 if (TREE_CODE (node
) == RECORD_TYPE
)
1658 pp_string (pp
, "struct ");
1659 else if (TREE_CODE (node
) == UNION_TYPE
)
1660 pp_string (pp
, "union ");
1662 if (TYPE_NAME (node
))
1663 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
1664 else if (!(flags
& TDF_SLIM
))
1665 /* FIXME: If we eliminate the 'else' above and attempt
1666 to show the fields for named types, we may get stuck
1667 following a cycle of pointers to structs. The alleged
1668 self-reference check in print_struct_decl will not detect
1669 cycles involving more than one pointer or struct type. */
1670 print_struct_decl (pp
, node
, spc
, flags
);
1679 if (flags
& TDF_GIMPLE
1680 && (POINTER_TYPE_P (TREE_TYPE (node
))
1681 || (TYPE_PRECISION (TREE_TYPE (node
))
1682 < TYPE_PRECISION (integer_type_node
))
1683 || exact_log2 (TYPE_PRECISION (TREE_TYPE (node
))) == -1))
1685 pp_string (pp
, "_Literal (");
1686 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1687 pp_string (pp
, ") ");
1689 if (TREE_CODE (TREE_TYPE (node
)) == POINTER_TYPE
1690 && ! (flags
& TDF_GIMPLE
))
1692 /* In the case of a pointer, one may want to divide by the
1693 size of the pointed-to type. Unfortunately, this not
1694 straightforward. The C front-end maps expressions
1699 in such a way that the two INTEGER_CST nodes for "5" have
1700 different values but identical types. In the latter
1701 case, the 5 is multiplied by sizeof (int) in c-common.c
1702 (pointer_int_sum) to convert it to a byte address, and
1703 yet the type of the node is left unchanged. Argh. What
1704 is consistent though is that the number value corresponds
1705 to bytes (UNITS) offset.
1707 NB: Neither of the following divisors can be trivially
1708 used to recover the original literal:
1710 TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (node)))
1711 TYPE_PRECISION (TREE_TYPE (TREE_TYPE (node))) */
1712 pp_wide_integer (pp
, TREE_INT_CST_LOW (node
));
1713 pp_string (pp
, "B"); /* pseudo-unit */
1715 else if (tree_fits_shwi_p (node
))
1716 pp_wide_integer (pp
, tree_to_shwi (node
));
1717 else if (tree_fits_uhwi_p (node
))
1718 pp_unsigned_wide_integer (pp
, tree_to_uhwi (node
));
1721 wide_int val
= wi::to_wide (node
);
1723 if (wi::neg_p (val
, TYPE_SIGN (TREE_TYPE (node
))))
1728 print_hex (val
, pp_buffer (pp
)->digit_buffer
);
1729 pp_string (pp
, pp_buffer (pp
)->digit_buffer
);
1731 if ((flags
& TDF_GIMPLE
)
1732 && ! (POINTER_TYPE_P (TREE_TYPE (node
))
1733 || (TYPE_PRECISION (TREE_TYPE (node
))
1734 < TYPE_PRECISION (integer_type_node
))
1735 || exact_log2 (TYPE_PRECISION (TREE_TYPE (node
))) == -1))
1737 if (TYPE_UNSIGNED (TREE_TYPE (node
)))
1738 pp_character (pp
, 'u');
1739 if (TYPE_PRECISION (TREE_TYPE (node
))
1740 == TYPE_PRECISION (unsigned_type_node
))
1742 else if (TYPE_PRECISION (TREE_TYPE (node
))
1743 == TYPE_PRECISION (long_unsigned_type_node
))
1744 pp_character (pp
, 'l');
1745 else if (TYPE_PRECISION (TREE_TYPE (node
))
1746 == TYPE_PRECISION (long_long_unsigned_type_node
))
1747 pp_string (pp
, "ll");
1749 if (TREE_OVERFLOW (node
))
1750 pp_string (pp
, "(OVF)");
1754 pp_string (pp
, "POLY_INT_CST [");
1755 dump_generic_node (pp
, POLY_INT_CST_COEFF (node
, 0), spc
, flags
, false);
1756 for (unsigned int i
= 1; i
< NUM_POLY_INT_COEFFS
; ++i
)
1758 pp_string (pp
, ", ");
1759 dump_generic_node (pp
, POLY_INT_CST_COEFF (node
, i
),
1762 pp_string (pp
, "]");
1766 /* Code copied from print_node. */
1769 if (TREE_OVERFLOW (node
))
1770 pp_string (pp
, " overflow");
1772 d
= TREE_REAL_CST (node
);
1773 if (REAL_VALUE_ISINF (d
))
1774 pp_string (pp
, REAL_VALUE_NEGATIVE (d
) ? " -Inf" : " Inf");
1775 else if (REAL_VALUE_ISNAN (d
))
1776 pp_string (pp
, " Nan");
1780 real_to_decimal (string
, &d
, sizeof (string
), 0, 1);
1781 pp_string (pp
, string
);
1789 fixed_to_decimal (string
, TREE_FIXED_CST_PTR (node
), sizeof (string
));
1790 pp_string (pp
, string
);
1795 pp_string (pp
, "__complex__ (");
1796 dump_generic_node (pp
, TREE_REALPART (node
), spc
, flags
, false);
1797 pp_string (pp
, ", ");
1798 dump_generic_node (pp
, TREE_IMAGPART (node
), spc
, flags
, false);
1799 pp_right_paren (pp
);
1803 pp_string (pp
, "\"");
1804 pretty_print_string (pp
, TREE_STRING_POINTER (node
));
1805 pp_string (pp
, "\"");
1811 pp_string (pp
, "{ ");
1812 unsigned HOST_WIDE_INT nunits
;
1813 if (!VECTOR_CST_NELTS (node
).is_constant (&nunits
))
1814 nunits
= vector_cst_encoded_nelts (node
);
1815 for (i
= 0; i
< nunits
; ++i
)
1818 pp_string (pp
, ", ");
1819 dump_generic_node (pp
, VECTOR_CST_ELT (node
, i
),
1822 if (!VECTOR_CST_NELTS (node
).is_constant ())
1823 pp_string (pp
, ", ...");
1824 pp_string (pp
, " }");
1830 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1832 if (TREE_CODE (node
) == METHOD_TYPE
)
1834 if (TYPE_METHOD_BASETYPE (node
))
1835 dump_generic_node (pp
, TYPE_NAME (TYPE_METHOD_BASETYPE (node
)),
1838 pp_string (pp
, "<null method basetype>");
1839 pp_colon_colon (pp
);
1841 if (TYPE_IDENTIFIER (node
))
1842 dump_generic_node (pp
, TYPE_NAME (node
), spc
, flags
, false);
1843 else if (TYPE_NAME (node
) && DECL_NAME (TYPE_NAME (node
)))
1844 dump_decl_name (pp
, TYPE_NAME (node
), flags
);
1845 else if (flags
& TDF_NOUID
)
1846 pp_printf (pp
, "<Txxxx>");
1848 pp_printf (pp
, "<T%x>", TYPE_UID (node
));
1849 dump_function_declaration (pp
, node
, spc
, flags
);
1854 dump_decl_name (pp
, node
, flags
);
1858 if (DECL_NAME (node
))
1859 dump_decl_name (pp
, node
, flags
);
1860 else if (LABEL_DECL_UID (node
) != -1)
1862 if (flags
& TDF_GIMPLE
)
1863 pp_printf (pp
, "L%d", (int) LABEL_DECL_UID (node
));
1865 pp_printf (pp
, "<L%d>", (int) LABEL_DECL_UID (node
));
1869 if (flags
& TDF_NOUID
)
1870 pp_string (pp
, "<D.xxxx>");
1873 if (flags
& TDF_GIMPLE
)
1874 pp_printf (pp
, "<D%u>", DECL_UID (node
));
1876 pp_printf (pp
, "<D.%u>", DECL_UID (node
));
1882 if (DECL_IS_BUILTIN (node
))
1884 /* Don't print the declaration of built-in types. */
1887 if (DECL_NAME (node
))
1888 dump_decl_name (pp
, node
, flags
);
1889 else if (TYPE_NAME (TREE_TYPE (node
)) != node
)
1891 pp_string (pp
, (TREE_CODE (TREE_TYPE (node
)) == UNION_TYPE
1892 ? "union" : "struct "));
1893 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
1896 pp_string (pp
, "<anon>");
1902 case DEBUG_EXPR_DECL
:
1903 case NAMESPACE_DECL
:
1905 dump_decl_name (pp
, node
, flags
);
1909 pp_string (pp
, "<retval>");
1913 op0
= TREE_OPERAND (node
, 0);
1916 && (TREE_CODE (op0
) == INDIRECT_REF
1917 || (TREE_CODE (op0
) == MEM_REF
1918 && TREE_CODE (TREE_OPERAND (op0
, 0)) != ADDR_EXPR
1919 && integer_zerop (TREE_OPERAND (op0
, 1))
1920 /* Dump the types of INTEGER_CSTs explicitly, for we
1921 can't infer them and MEM_ATTR caching will share
1922 MEM_REFs with differently-typed op0s. */
1923 && TREE_CODE (TREE_OPERAND (op0
, 0)) != INTEGER_CST
1924 /* Released SSA_NAMES have no TREE_TYPE. */
1925 && TREE_TYPE (TREE_OPERAND (op0
, 0)) != NULL_TREE
1926 /* Same pointer types, but ignoring POINTER_TYPE vs.
1928 && (TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 0)))
1929 == TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 1))))
1930 && (TYPE_MODE (TREE_TYPE (TREE_OPERAND (op0
, 0)))
1931 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (op0
, 1))))
1932 && (TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (op0
, 0)))
1933 == TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (TREE_OPERAND (op0
, 1))))
1934 /* Same value types ignoring qualifiers. */
1935 && (TYPE_MAIN_VARIANT (TREE_TYPE (op0
))
1936 == TYPE_MAIN_VARIANT
1937 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (op0
, 1)))))
1938 && MR_DEPENDENCE_CLIQUE (op0
) == 0)))
1940 op0
= TREE_OPERAND (op0
, 0);
1943 if (op_prio (op0
) < op_prio (node
))
1945 dump_generic_node (pp
, op0
, spc
, flags
, false);
1946 if (op_prio (op0
) < op_prio (node
))
1947 pp_right_paren (pp
);
1948 pp_string (pp
, str
);
1949 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
1950 op0
= component_ref_field_offset (node
);
1951 if (op0
&& TREE_CODE (op0
) != INTEGER_CST
)
1953 pp_string (pp
, "{off: ");
1954 dump_generic_node (pp
, op0
, spc
, flags
, false);
1955 pp_right_brace (pp
);
1960 pp_string (pp
, "BIT_FIELD_REF <");
1961 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
1962 pp_string (pp
, ", ");
1963 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
1964 pp_string (pp
, ", ");
1965 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
1969 case BIT_INSERT_EXPR
:
1970 pp_string (pp
, "BIT_INSERT_EXPR <");
1971 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
1972 pp_string (pp
, ", ");
1973 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
1974 pp_string (pp
, ", ");
1975 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
1976 pp_string (pp
, " (");
1977 if (INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (node
, 1))))
1979 TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (node
, 1))));
1981 dump_generic_node (pp
, TYPE_SIZE (TREE_TYPE (TREE_OPERAND (node
, 1))),
1983 pp_string (pp
, " bits)>");
1987 case ARRAY_RANGE_REF
:
1988 op0
= TREE_OPERAND (node
, 0);
1989 if (op_prio (op0
) < op_prio (node
))
1991 dump_generic_node (pp
, op0
, spc
, flags
, false);
1992 if (op_prio (op0
) < op_prio (node
))
1993 pp_right_paren (pp
);
1994 pp_left_bracket (pp
);
1995 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
1996 if (TREE_CODE (node
) == ARRAY_RANGE_REF
)
1997 pp_string (pp
, " ...");
1998 pp_right_bracket (pp
);
2000 op0
= array_ref_low_bound (node
);
2001 op1
= array_ref_element_size (node
);
2003 if (!integer_zerop (op0
)
2004 || TREE_OPERAND (node
, 2)
2005 || TREE_OPERAND (node
, 3))
2007 pp_string (pp
, "{lb: ");
2008 dump_generic_node (pp
, op0
, spc
, flags
, false);
2009 pp_string (pp
, " sz: ");
2010 dump_generic_node (pp
, op1
, spc
, flags
, false);
2011 pp_right_brace (pp
);
2017 unsigned HOST_WIDE_INT ix
;
2019 bool is_struct_init
= false;
2020 bool is_array_init
= false;
2023 if (TREE_CLOBBER_P (node
))
2024 pp_string (pp
, "CLOBBER");
2025 else if (TREE_CODE (TREE_TYPE (node
)) == RECORD_TYPE
2026 || TREE_CODE (TREE_TYPE (node
)) == UNION_TYPE
)
2027 is_struct_init
= true;
2028 else if (TREE_CODE (TREE_TYPE (node
)) == ARRAY_TYPE
2029 && TYPE_DOMAIN (TREE_TYPE (node
))
2030 && TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
)))
2031 && TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
))))
2034 tree minv
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (node
)));
2035 is_array_init
= true;
2036 curidx
= wi::to_widest (minv
);
2038 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (node
), ix
, field
, val
)
2045 dump_generic_node (pp
, field
, spc
, flags
, false);
2048 else if (is_array_init
2049 && (TREE_CODE (field
) != INTEGER_CST
2050 || curidx
!= wi::to_widest (field
)))
2052 pp_left_bracket (pp
);
2053 if (TREE_CODE (field
) == RANGE_EXPR
)
2055 dump_generic_node (pp
, TREE_OPERAND (field
, 0), spc
,
2057 pp_string (pp
, " ... ");
2058 dump_generic_node (pp
, TREE_OPERAND (field
, 1), spc
,
2060 if (TREE_CODE (TREE_OPERAND (field
, 1)) == INTEGER_CST
)
2061 curidx
= wi::to_widest (TREE_OPERAND (field
, 1));
2064 dump_generic_node (pp
, field
, spc
, flags
, false);
2065 if (TREE_CODE (field
) == INTEGER_CST
)
2066 curidx
= wi::to_widest (field
);
2067 pp_string (pp
, "]=");
2072 if (val
&& TREE_CODE (val
) == ADDR_EXPR
)
2073 if (TREE_CODE (TREE_OPERAND (val
, 0)) == FUNCTION_DECL
)
2074 val
= TREE_OPERAND (val
, 0);
2075 if (val
&& TREE_CODE (val
) == FUNCTION_DECL
)
2076 dump_decl_name (pp
, val
, flags
);
2078 dump_generic_node (pp
, val
, spc
, flags
, false);
2079 if (ix
!= CONSTRUCTOR_NELTS (node
) - 1)
2085 pp_right_brace (pp
);
2092 if (flags
& TDF_SLIM
)
2094 pp_string (pp
, "<COMPOUND_EXPR>");
2098 dump_generic_node (pp
, TREE_OPERAND (node
, 0),
2099 spc
, flags
, !(flags
& TDF_SLIM
));
2100 if (flags
& TDF_SLIM
)
2101 newline_and_indent (pp
, spc
);
2108 for (tp
= &TREE_OPERAND (node
, 1);
2109 TREE_CODE (*tp
) == COMPOUND_EXPR
;
2110 tp
= &TREE_OPERAND (*tp
, 1))
2112 dump_generic_node (pp
, TREE_OPERAND (*tp
, 0),
2113 spc
, flags
, !(flags
& TDF_SLIM
));
2114 if (flags
& TDF_SLIM
)
2115 newline_and_indent (pp
, spc
);
2123 dump_generic_node (pp
, *tp
, spc
, flags
, !(flags
& TDF_SLIM
));
2127 case STATEMENT_LIST
:
2129 tree_stmt_iterator si
;
2132 if (flags
& TDF_SLIM
)
2134 pp_string (pp
, "<STATEMENT_LIST>");
2138 for (si
= tsi_start (node
); !tsi_end_p (si
); tsi_next (&si
))
2141 newline_and_indent (pp
, spc
);
2144 dump_generic_node (pp
, tsi_stmt (si
), spc
, flags
, true);
2151 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
,
2156 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
,
2161 pp_string (pp
, "TARGET_EXPR <");
2162 dump_generic_node (pp
, TARGET_EXPR_SLOT (node
), spc
, flags
, false);
2165 dump_generic_node (pp
, TARGET_EXPR_INITIAL (node
), spc
, flags
, false);
2170 print_declaration (pp
, DECL_EXPR_DECL (node
), spc
, flags
);
2175 if (TREE_TYPE (node
) == NULL
|| TREE_TYPE (node
) == void_type_node
)
2177 pp_string (pp
, "if (");
2178 dump_generic_node (pp
, COND_EXPR_COND (node
), spc
, flags
, false);
2179 pp_right_paren (pp
);
2180 /* The lowered cond_exprs should always be printed in full. */
2181 if (COND_EXPR_THEN (node
)
2182 && (IS_EMPTY_STMT (COND_EXPR_THEN (node
))
2183 || TREE_CODE (COND_EXPR_THEN (node
)) == GOTO_EXPR
)
2184 && COND_EXPR_ELSE (node
)
2185 && (IS_EMPTY_STMT (COND_EXPR_ELSE (node
))
2186 || TREE_CODE (COND_EXPR_ELSE (node
)) == GOTO_EXPR
))
2189 dump_generic_node (pp
, COND_EXPR_THEN (node
),
2191 if (!IS_EMPTY_STMT (COND_EXPR_ELSE (node
)))
2193 pp_string (pp
, " else ");
2194 dump_generic_node (pp
, COND_EXPR_ELSE (node
),
2198 else if (!(flags
& TDF_SLIM
))
2200 /* Output COND_EXPR_THEN. */
2201 if (COND_EXPR_THEN (node
))
2203 newline_and_indent (pp
, spc
+2);
2205 newline_and_indent (pp
, spc
+4);
2206 dump_generic_node (pp
, COND_EXPR_THEN (node
), spc
+4,
2208 newline_and_indent (pp
, spc
+2);
2209 pp_right_brace (pp
);
2212 /* Output COND_EXPR_ELSE. */
2213 if (COND_EXPR_ELSE (node
)
2214 && !IS_EMPTY_STMT (COND_EXPR_ELSE (node
)))
2216 newline_and_indent (pp
, spc
);
2217 pp_string (pp
, "else");
2218 newline_and_indent (pp
, spc
+2);
2220 newline_and_indent (pp
, spc
+4);
2221 dump_generic_node (pp
, COND_EXPR_ELSE (node
), spc
+4,
2223 newline_and_indent (pp
, spc
+2);
2224 pp_right_brace (pp
);
2231 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2235 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2239 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2245 if (!(flags
& TDF_SLIM
))
2247 if (BIND_EXPR_VARS (node
))
2251 for (op0
= BIND_EXPR_VARS (node
); op0
; op0
= DECL_CHAIN (op0
))
2253 print_declaration (pp
, op0
, spc
+2, flags
);
2258 newline_and_indent (pp
, spc
+2);
2259 dump_generic_node (pp
, BIND_EXPR_BODY (node
), spc
+2, flags
, true);
2260 newline_and_indent (pp
, spc
);
2261 pp_right_brace (pp
);
2267 if (CALL_EXPR_FN (node
) != NULL_TREE
)
2268 print_call_name (pp
, CALL_EXPR_FN (node
), flags
);
2272 pp_string (pp
, internal_fn_name (CALL_EXPR_IFN (node
)));
2275 /* Print parameters. */
2280 call_expr_arg_iterator iter
;
2281 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, node
)
2283 dump_generic_node (pp
, arg
, spc
, flags
, false);
2284 if (more_call_expr_args_p (&iter
))
2291 if (CALL_EXPR_VA_ARG_PACK (node
))
2293 if (call_expr_nargs (node
) > 0)
2298 pp_string (pp
, "__builtin_va_arg_pack ()");
2300 pp_right_paren (pp
);
2302 op1
= CALL_EXPR_STATIC_CHAIN (node
);
2305 pp_string (pp
, " [static-chain: ");
2306 dump_generic_node (pp
, op1
, spc
, flags
, false);
2307 pp_right_bracket (pp
);
2310 if (CALL_EXPR_RETURN_SLOT_OPT (node
))
2311 pp_string (pp
, " [return slot optimization]");
2312 if (CALL_EXPR_TAILCALL (node
))
2313 pp_string (pp
, " [tail call]");
2316 case WITH_CLEANUP_EXPR
:
2320 case CLEANUP_POINT_EXPR
:
2321 pp_string (pp
, "<<cleanup_point ");
2322 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2323 pp_string (pp
, ">>");
2326 case PLACEHOLDER_EXPR
:
2327 pp_string (pp
, "<PLACEHOLDER_EXPR ");
2328 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2332 /* Binary arithmetic and logic expressions. */
2333 case WIDEN_SUM_EXPR
:
2334 case WIDEN_MULT_EXPR
:
2336 case MULT_HIGHPART_EXPR
:
2338 case POINTER_PLUS_EXPR
:
2339 case POINTER_DIFF_EXPR
:
2341 case TRUNC_DIV_EXPR
:
2343 case FLOOR_DIV_EXPR
:
2344 case ROUND_DIV_EXPR
:
2345 case TRUNC_MOD_EXPR
:
2347 case FLOOR_MOD_EXPR
:
2348 case ROUND_MOD_EXPR
:
2350 case EXACT_DIV_EXPR
:
2355 case WIDEN_LSHIFT_EXPR
:
2359 case TRUTH_ANDIF_EXPR
:
2360 case TRUTH_ORIF_EXPR
:
2361 case TRUTH_AND_EXPR
:
2363 case TRUTH_XOR_EXPR
:
2377 case UNORDERED_EXPR
:
2379 const char *op
= op_symbol (node
);
2380 op0
= TREE_OPERAND (node
, 0);
2381 op1
= TREE_OPERAND (node
, 1);
2383 /* When the operands are expressions with less priority,
2384 keep semantics of the tree representation. */
2385 if (op_prio (op0
) <= op_prio (node
))
2388 dump_generic_node (pp
, op0
, spc
, flags
, false);
2389 pp_right_paren (pp
);
2392 dump_generic_node (pp
, op0
, spc
, flags
, false);
2398 /* When the operands are expressions with less priority,
2399 keep semantics of the tree representation. */
2400 if (op_prio (op1
) <= op_prio (node
))
2403 dump_generic_node (pp
, op1
, spc
, flags
, false);
2404 pp_right_paren (pp
);
2407 dump_generic_node (pp
, op1
, spc
, flags
, false);
2411 /* Unary arithmetic and logic expressions. */
2414 case TRUTH_NOT_EXPR
:
2416 case PREDECREMENT_EXPR
:
2417 case PREINCREMENT_EXPR
:
2419 if (TREE_CODE (node
) == ADDR_EXPR
2420 && (TREE_CODE (TREE_OPERAND (node
, 0)) == STRING_CST
2421 || TREE_CODE (TREE_OPERAND (node
, 0)) == FUNCTION_DECL
))
2422 ; /* Do not output '&' for strings and function pointers. */
2424 pp_string (pp
, op_symbol (node
));
2426 if (op_prio (TREE_OPERAND (node
, 0)) < op_prio (node
))
2429 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2430 pp_right_paren (pp
);
2433 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2436 case POSTDECREMENT_EXPR
:
2437 case POSTINCREMENT_EXPR
:
2438 if (op_prio (TREE_OPERAND (node
, 0)) < op_prio (node
))
2441 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2442 pp_right_paren (pp
);
2445 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2446 pp_string (pp
, op_symbol (node
));
2450 pp_string (pp
, "MIN_EXPR <");
2451 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2452 pp_string (pp
, ", ");
2453 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2458 pp_string (pp
, "MAX_EXPR <");
2459 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2460 pp_string (pp
, ", ");
2461 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2466 pp_string (pp
, "ABS_EXPR <");
2467 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2472 pp_string (pp
, "ABSU_EXPR <");
2473 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2481 case ADDR_SPACE_CONVERT_EXPR
:
2482 case FIXED_CONVERT_EXPR
:
2483 case FIX_TRUNC_EXPR
:
2486 type
= TREE_TYPE (node
);
2487 op0
= TREE_OPERAND (node
, 0);
2488 if (type
!= TREE_TYPE (op0
))
2491 dump_generic_node (pp
, type
, spc
, flags
, false);
2492 pp_string (pp
, ") ");
2494 if (op_prio (op0
) < op_prio (node
))
2496 dump_generic_node (pp
, op0
, spc
, flags
, false);
2497 if (op_prio (op0
) < op_prio (node
))
2498 pp_right_paren (pp
);
2501 case VIEW_CONVERT_EXPR
:
2502 pp_string (pp
, "VIEW_CONVERT_EXPR<");
2503 dump_generic_node (pp
, TREE_TYPE (node
), spc
, flags
, false);
2504 pp_string (pp
, ">(");
2505 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2506 pp_right_paren (pp
);
2510 pp_string (pp
, "((");
2511 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2512 pp_string (pp
, "))");
2515 case NON_LVALUE_EXPR
:
2516 pp_string (pp
, "NON_LVALUE_EXPR <");
2517 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2522 pp_string (pp
, "SAVE_EXPR <");
2523 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2528 pp_string (pp
, "COMPLEX_EXPR <");
2529 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2530 pp_string (pp
, ", ");
2531 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2536 pp_string (pp
, "CONJ_EXPR <");
2537 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2542 if (flags
& TDF_GIMPLE
)
2544 pp_string (pp
, "__real ");
2545 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2549 pp_string (pp
, "REALPART_EXPR <");
2550 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2556 if (flags
& TDF_GIMPLE
)
2558 pp_string (pp
, "__imag ");
2559 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2563 pp_string (pp
, "IMAGPART_EXPR <");
2564 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2570 pp_string (pp
, "VA_ARG_EXPR <");
2571 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2575 case TRY_FINALLY_EXPR
:
2576 case TRY_CATCH_EXPR
:
2577 pp_string (pp
, "try");
2578 newline_and_indent (pp
, spc
+2);
2580 newline_and_indent (pp
, spc
+4);
2581 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
+4, flags
, true);
2582 newline_and_indent (pp
, spc
+2);
2583 pp_right_brace (pp
);
2584 newline_and_indent (pp
, spc
);
2586 (TREE_CODE (node
) == TRY_CATCH_EXPR
) ? "catch" : "finally");
2587 newline_and_indent (pp
, spc
+2);
2589 newline_and_indent (pp
, spc
+4);
2590 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
+4, flags
, true);
2591 newline_and_indent (pp
, spc
+2);
2592 pp_right_brace (pp
);
2597 pp_string (pp
, "catch (");
2598 dump_generic_node (pp
, CATCH_TYPES (node
), spc
+2, flags
, false);
2599 pp_right_paren (pp
);
2600 newline_and_indent (pp
, spc
+2);
2602 newline_and_indent (pp
, spc
+4);
2603 dump_generic_node (pp
, CATCH_BODY (node
), spc
+4, flags
, true);
2604 newline_and_indent (pp
, spc
+2);
2605 pp_right_brace (pp
);
2609 case EH_FILTER_EXPR
:
2610 pp_string (pp
, "<<<eh_filter (");
2611 dump_generic_node (pp
, EH_FILTER_TYPES (node
), spc
+2, flags
, false);
2612 pp_string (pp
, ")>>>");
2613 newline_and_indent (pp
, spc
+2);
2615 newline_and_indent (pp
, spc
+4);
2616 dump_generic_node (pp
, EH_FILTER_FAILURE (node
), spc
+4, flags
, true);
2617 newline_and_indent (pp
, spc
+2);
2618 pp_right_brace (pp
);
2623 op0
= TREE_OPERAND (node
, 0);
2624 /* If this is for break or continue, don't bother printing it. */
2625 if (DECL_NAME (op0
))
2627 const char *name
= IDENTIFIER_POINTER (DECL_NAME (op0
));
2628 if (strcmp (name
, "break") == 0
2629 || strcmp (name
, "continue") == 0)
2632 dump_generic_node (pp
, op0
, spc
, flags
, false);
2634 if (DECL_NONLOCAL (op0
))
2635 pp_string (pp
, " [non-local]");
2639 pp_string (pp
, "while (1)");
2640 if (!(flags
& TDF_SLIM
))
2642 newline_and_indent (pp
, spc
+2);
2644 newline_and_indent (pp
, spc
+4);
2645 dump_generic_node (pp
, LOOP_EXPR_BODY (node
), spc
+4, flags
, true);
2646 newline_and_indent (pp
, spc
+2);
2647 pp_right_brace (pp
);
2653 pp_string (pp
, "// predicted ");
2654 if (PREDICT_EXPR_OUTCOME (node
))
2655 pp_string (pp
, "likely by ");
2657 pp_string (pp
, "unlikely by ");
2658 pp_string (pp
, predictor_name (PREDICT_EXPR_PREDICTOR (node
)));
2659 pp_string (pp
, " predictor.");
2663 pp_string (pp
, "ANNOTATE_EXPR <");
2664 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2665 switch ((enum annot_expr_kind
) TREE_INT_CST_LOW (TREE_OPERAND (node
, 1)))
2667 case annot_expr_ivdep_kind
:
2668 pp_string (pp
, ", ivdep");
2670 case annot_expr_unroll_kind
:
2671 pp_printf (pp
, ", unroll %d",
2672 (int) TREE_INT_CST_LOW (TREE_OPERAND (node
, 2)));
2674 case annot_expr_no_vector_kind
:
2675 pp_string (pp
, ", no-vector");
2677 case annot_expr_vector_kind
:
2678 pp_string (pp
, ", vector");
2680 case annot_expr_parallel_kind
:
2681 pp_string (pp
, ", parallel");
2690 pp_string (pp
, "return");
2691 op0
= TREE_OPERAND (node
, 0);
2695 if (TREE_CODE (op0
) == MODIFY_EXPR
)
2696 dump_generic_node (pp
, TREE_OPERAND (op0
, 1),
2699 dump_generic_node (pp
, op0
, spc
, flags
, false);
2704 pp_string (pp
, "if (");
2705 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2706 pp_string (pp
, ") break");
2710 pp_string (pp
, "switch (");
2711 dump_generic_node (pp
, SWITCH_COND (node
), spc
, flags
, false);
2712 pp_right_paren (pp
);
2713 if (!(flags
& TDF_SLIM
))
2715 newline_and_indent (pp
, spc
+2);
2717 if (SWITCH_BODY (node
))
2719 newline_and_indent (pp
, spc
+4);
2720 dump_generic_node (pp
, SWITCH_BODY (node
), spc
+4, flags
,
2723 newline_and_indent (pp
, spc
+2);
2724 pp_right_brace (pp
);
2730 op0
= GOTO_DESTINATION (node
);
2731 if (TREE_CODE (op0
) != SSA_NAME
&& DECL_P (op0
) && DECL_NAME (op0
))
2733 const char *name
= IDENTIFIER_POINTER (DECL_NAME (op0
));
2734 if (strcmp (name
, "break") == 0
2735 || strcmp (name
, "continue") == 0)
2737 pp_string (pp
, name
);
2741 pp_string (pp
, "goto ");
2742 dump_generic_node (pp
, op0
, spc
, flags
, false);
2746 pp_string (pp
, "__asm__");
2747 if (ASM_VOLATILE_P (node
))
2748 pp_string (pp
, " __volatile__");
2750 dump_generic_node (pp
, ASM_STRING (node
), spc
, flags
, false);
2752 dump_generic_node (pp
, ASM_OUTPUTS (node
), spc
, flags
, false);
2754 dump_generic_node (pp
, ASM_INPUTS (node
), spc
, flags
, false);
2755 if (ASM_CLOBBERS (node
))
2758 dump_generic_node (pp
, ASM_CLOBBERS (node
), spc
, flags
, false);
2760 pp_right_paren (pp
);
2763 case CASE_LABEL_EXPR
:
2764 if (CASE_LOW (node
) && CASE_HIGH (node
))
2766 pp_string (pp
, "case ");
2767 dump_generic_node (pp
, CASE_LOW (node
), spc
, flags
, false);
2768 pp_string (pp
, " ... ");
2769 dump_generic_node (pp
, CASE_HIGH (node
), spc
, flags
, false);
2771 else if (CASE_LOW (node
))
2773 pp_string (pp
, "case ");
2774 dump_generic_node (pp
, CASE_LOW (node
), spc
, flags
, false);
2777 pp_string (pp
, "default");
2782 pp_string (pp
, "OBJ_TYPE_REF(");
2783 dump_generic_node (pp
, OBJ_TYPE_REF_EXPR (node
), spc
, flags
, false);
2785 /* We omit the class type for -fcompare-debug because we may
2786 drop TYPE_BINFO early depending on debug info, and then
2787 virtual_method_call_p would return false, whereas when
2788 TYPE_BINFO is preserved it may still return true and then
2789 we'd print the class type. Compare tree and rtl dumps for
2790 libstdc++-prettyprinters/shared_ptr.cc with and without -g,
2791 for example, at occurrences of OBJ_TYPE_REF. */
2792 if (!(flags
& (TDF_SLIM
| TDF_COMPARE_DEBUG
))
2793 && virtual_method_call_p (node
))
2795 pp_string (pp
, "(");
2796 dump_generic_node (pp
, obj_type_ref_class (node
), spc
, flags
, false);
2797 pp_string (pp
, ")");
2799 dump_generic_node (pp
, OBJ_TYPE_REF_OBJECT (node
), spc
, flags
, false);
2801 dump_generic_node (pp
, OBJ_TYPE_REF_TOKEN (node
), spc
, flags
, false);
2802 pp_right_paren (pp
);
2806 if (SSA_NAME_IDENTIFIER (node
))
2808 if ((flags
& TDF_NOUID
)
2809 && SSA_NAME_VAR (node
)
2810 && DECL_NAMELESS (SSA_NAME_VAR (node
)))
2811 dump_fancy_name (pp
, SSA_NAME_IDENTIFIER (node
));
2812 else if (! (flags
& TDF_GIMPLE
)
2813 || SSA_NAME_VAR (node
))
2814 dump_generic_node (pp
, SSA_NAME_IDENTIFIER (node
),
2818 pp_decimal_int (pp
, SSA_NAME_VERSION (node
));
2819 if (SSA_NAME_IS_DEFAULT_DEF (node
))
2820 pp_string (pp
, "(D)");
2821 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node
))
2822 pp_string (pp
, "(ab)");
2825 case WITH_SIZE_EXPR
:
2826 pp_string (pp
, "WITH_SIZE_EXPR <");
2827 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2828 pp_string (pp
, ", ");
2829 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2834 pp_string (pp
, "ASSERT_EXPR <");
2835 dump_generic_node (pp
, ASSERT_EXPR_VAR (node
), spc
, flags
, false);
2836 pp_string (pp
, ", ");
2837 dump_generic_node (pp
, ASSERT_EXPR_COND (node
), spc
, flags
, false);
2842 pp_string (pp
, "scev_known");
2845 case SCEV_NOT_KNOWN
:
2846 pp_string (pp
, "scev_not_known");
2849 case POLYNOMIAL_CHREC
:
2851 dump_generic_node (pp
, CHREC_LEFT (node
), spc
, flags
, false);
2852 pp_string (pp
, ", +, ");
2853 dump_generic_node (pp
, CHREC_RIGHT (node
), spc
, flags
, false);
2854 pp_printf (pp
, "}_%u", CHREC_VARIABLE (node
));
2858 case REALIGN_LOAD_EXPR
:
2859 pp_string (pp
, "REALIGN_LOAD <");
2860 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2861 pp_string (pp
, ", ");
2862 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2863 pp_string (pp
, ", ");
2864 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2869 pp_string (pp
, " VEC_COND_EXPR < ");
2870 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2871 pp_string (pp
, " , ");
2872 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2873 pp_string (pp
, " , ");
2874 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2875 pp_string (pp
, " > ");
2879 pp_string (pp
, " VEC_PERM_EXPR < ");
2880 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2881 pp_string (pp
, " , ");
2882 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2883 pp_string (pp
, " , ");
2884 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2885 pp_string (pp
, " > ");
2889 pp_string (pp
, " DOT_PROD_EXPR < ");
2890 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2891 pp_string (pp
, ", ");
2892 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2893 pp_string (pp
, ", ");
2894 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2895 pp_string (pp
, " > ");
2898 case WIDEN_MULT_PLUS_EXPR
:
2899 pp_string (pp
, " WIDEN_MULT_PLUS_EXPR < ");
2900 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2901 pp_string (pp
, ", ");
2902 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2903 pp_string (pp
, ", ");
2904 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2905 pp_string (pp
, " > ");
2908 case WIDEN_MULT_MINUS_EXPR
:
2909 pp_string (pp
, " WIDEN_MULT_MINUS_EXPR < ");
2910 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
2911 pp_string (pp
, ", ");
2912 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
2913 pp_string (pp
, ", ");
2914 dump_generic_node (pp
, TREE_OPERAND (node
, 2), spc
, flags
, false);
2915 pp_string (pp
, " > ");
2919 pp_string (pp
, "#pragma acc parallel");
2920 goto dump_omp_clauses_body
;
2923 pp_string (pp
, "#pragma acc kernels");
2924 goto dump_omp_clauses_body
;
2927 pp_string (pp
, "#pragma acc data");
2928 dump_omp_clauses (pp
, OACC_DATA_CLAUSES (node
), spc
, flags
);
2931 case OACC_HOST_DATA
:
2932 pp_string (pp
, "#pragma acc host_data");
2933 dump_omp_clauses (pp
, OACC_HOST_DATA_CLAUSES (node
), spc
, flags
);
2937 pp_string (pp
, "#pragma acc declare");
2938 dump_omp_clauses (pp
, OACC_DECLARE_CLAUSES (node
), spc
, flags
);
2942 pp_string (pp
, "#pragma acc update");
2943 dump_omp_clauses (pp
, OACC_UPDATE_CLAUSES (node
), spc
, flags
);
2946 case OACC_ENTER_DATA
:
2947 pp_string (pp
, "#pragma acc enter data");
2948 dump_omp_clauses (pp
, OACC_ENTER_DATA_CLAUSES (node
), spc
, flags
);
2951 case OACC_EXIT_DATA
:
2952 pp_string (pp
, "#pragma acc exit data");
2953 dump_omp_clauses (pp
, OACC_EXIT_DATA_CLAUSES (node
), spc
, flags
);
2957 pp_string (pp
, "#pragma acc cache");
2958 dump_omp_clauses (pp
, OACC_CACHE_CLAUSES (node
), spc
, flags
);
2962 pp_string (pp
, "#pragma omp parallel");
2963 dump_omp_clauses (pp
, OMP_PARALLEL_CLAUSES (node
), spc
, flags
);
2966 dump_omp_clauses_body
:
2967 dump_omp_clauses (pp
, OMP_CLAUSES (node
), spc
, flags
);
2971 if (!(flags
& TDF_SLIM
) && OMP_BODY (node
))
2973 newline_and_indent (pp
, spc
+ 2);
2975 newline_and_indent (pp
, spc
+ 4);
2976 dump_generic_node (pp
, OMP_BODY (node
), spc
+ 4, flags
, false);
2977 newline_and_indent (pp
, spc
+ 2);
2978 pp_right_brace (pp
);
2984 pp_string (pp
, "#pragma omp task");
2985 dump_omp_clauses (pp
, OMP_TASK_CLAUSES (node
), spc
, flags
);
2989 pp_string (pp
, "#pragma omp for");
2993 pp_string (pp
, "#pragma omp simd");
2996 case OMP_DISTRIBUTE
:
2997 pp_string (pp
, "#pragma omp distribute");
3001 pp_string (pp
, "#pragma omp taskloop");
3005 pp_string (pp
, "#pragma acc loop");
3009 pp_string (pp
, "#pragma omp teams");
3010 dump_omp_clauses (pp
, OMP_TEAMS_CLAUSES (node
), spc
, flags
);
3013 case OMP_TARGET_DATA
:
3014 pp_string (pp
, "#pragma omp target data");
3015 dump_omp_clauses (pp
, OMP_TARGET_DATA_CLAUSES (node
), spc
, flags
);
3018 case OMP_TARGET_ENTER_DATA
:
3019 pp_string (pp
, "#pragma omp target enter data");
3020 dump_omp_clauses (pp
, OMP_TARGET_ENTER_DATA_CLAUSES (node
), spc
, flags
);
3024 case OMP_TARGET_EXIT_DATA
:
3025 pp_string (pp
, "#pragma omp target exit data");
3026 dump_omp_clauses (pp
, OMP_TARGET_EXIT_DATA_CLAUSES (node
), spc
, flags
);
3031 pp_string (pp
, "#pragma omp target");
3032 dump_omp_clauses (pp
, OMP_TARGET_CLAUSES (node
), spc
, flags
);
3035 case OMP_TARGET_UPDATE
:
3036 pp_string (pp
, "#pragma omp target update");
3037 dump_omp_clauses (pp
, OMP_TARGET_UPDATE_CLAUSES (node
), spc
, flags
);
3042 dump_omp_clauses (pp
, OMP_FOR_CLAUSES (node
), spc
, flags
);
3043 if (!(flags
& TDF_SLIM
))
3047 if (OMP_FOR_PRE_BODY (node
))
3049 newline_and_indent (pp
, spc
+ 2);
3052 newline_and_indent (pp
, spc
);
3053 dump_generic_node (pp
, OMP_FOR_PRE_BODY (node
),
3056 if (OMP_FOR_INIT (node
))
3059 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (node
)); i
++)
3062 newline_and_indent (pp
, spc
);
3063 pp_string (pp
, "for (");
3064 dump_generic_node (pp
,
3065 TREE_VEC_ELT (OMP_FOR_INIT (node
), i
),
3067 pp_string (pp
, "; ");
3068 dump_generic_node (pp
,
3069 TREE_VEC_ELT (OMP_FOR_COND (node
), i
),
3071 pp_string (pp
, "; ");
3072 dump_generic_node (pp
,
3073 TREE_VEC_ELT (OMP_FOR_INCR (node
), i
),
3075 pp_right_paren (pp
);
3078 if (OMP_FOR_BODY (node
))
3080 newline_and_indent (pp
, spc
+ 2);
3082 newline_and_indent (pp
, spc
+ 4);
3083 dump_generic_node (pp
, OMP_FOR_BODY (node
), spc
+ 4, flags
,
3085 newline_and_indent (pp
, spc
+ 2);
3086 pp_right_brace (pp
);
3088 if (OMP_FOR_INIT (node
))
3089 spc
-= 2 * TREE_VEC_LENGTH (OMP_FOR_INIT (node
)) - 2;
3090 if (OMP_FOR_PRE_BODY (node
))
3093 newline_and_indent (pp
, spc
+ 2);
3094 pp_right_brace (pp
);
3101 pp_string (pp
, "#pragma omp sections");
3102 dump_omp_clauses (pp
, OMP_SECTIONS_CLAUSES (node
), spc
, flags
);
3106 pp_string (pp
, "#pragma omp section");
3110 pp_string (pp
, "#pragma omp master");
3114 pp_string (pp
, "#pragma omp taskgroup");
3118 pp_string (pp
, "#pragma omp ordered");
3119 dump_omp_clauses (pp
, OMP_ORDERED_CLAUSES (node
), spc
, flags
);
3123 pp_string (pp
, "#pragma omp critical");
3124 if (OMP_CRITICAL_NAME (node
))
3128 dump_generic_node (pp
, OMP_CRITICAL_NAME (node
), spc
,
3130 pp_right_paren (pp
);
3132 dump_omp_clauses (pp
, OMP_CRITICAL_CLAUSES (node
), spc
, flags
);
3136 pp_string (pp
, "#pragma omp atomic");
3137 if (OMP_ATOMIC_SEQ_CST (node
))
3138 pp_string (pp
, " seq_cst");
3139 newline_and_indent (pp
, spc
+ 2);
3140 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3144 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3147 case OMP_ATOMIC_READ
:
3148 pp_string (pp
, "#pragma omp atomic read");
3149 if (OMP_ATOMIC_SEQ_CST (node
))
3150 pp_string (pp
, " seq_cst");
3151 newline_and_indent (pp
, spc
+ 2);
3152 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3156 case OMP_ATOMIC_CAPTURE_OLD
:
3157 case OMP_ATOMIC_CAPTURE_NEW
:
3158 pp_string (pp
, "#pragma omp atomic capture");
3159 if (OMP_ATOMIC_SEQ_CST (node
))
3160 pp_string (pp
, " seq_cst");
3161 newline_and_indent (pp
, spc
+ 2);
3162 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3166 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3170 pp_string (pp
, "#pragma omp single");
3171 dump_omp_clauses (pp
, OMP_SINGLE_CLAUSES (node
), spc
, flags
);
3175 dump_omp_clause (pp
, node
, spc
, flags
);
3179 case TRANSACTION_EXPR
:
3180 if (TRANSACTION_EXPR_OUTER (node
))
3181 pp_string (pp
, "__transaction_atomic [[outer]]");
3182 else if (TRANSACTION_EXPR_RELAXED (node
))
3183 pp_string (pp
, "__transaction_relaxed");
3185 pp_string (pp
, "__transaction_atomic");
3186 if (!(flags
& TDF_SLIM
) && TRANSACTION_EXPR_BODY (node
))
3188 newline_and_indent (pp
, spc
);
3190 newline_and_indent (pp
, spc
+ 2);
3191 dump_generic_node (pp
, TRANSACTION_EXPR_BODY (node
),
3192 spc
+ 2, flags
, false);
3193 newline_and_indent (pp
, spc
);
3194 pp_right_brace (pp
);
3199 case VEC_SERIES_EXPR
:
3200 case VEC_WIDEN_MULT_HI_EXPR
:
3201 case VEC_WIDEN_MULT_LO_EXPR
:
3202 case VEC_WIDEN_MULT_EVEN_EXPR
:
3203 case VEC_WIDEN_MULT_ODD_EXPR
:
3204 case VEC_WIDEN_LSHIFT_HI_EXPR
:
3205 case VEC_WIDEN_LSHIFT_LO_EXPR
:
3207 for (str
= get_tree_code_name (code
); *str
; str
++)
3208 pp_character (pp
, TOUPPER (*str
));
3209 pp_string (pp
, " < ");
3210 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3211 pp_string (pp
, ", ");
3212 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3213 pp_string (pp
, " > ");
3216 case VEC_DUPLICATE_EXPR
:
3218 for (str
= get_tree_code_name (code
); *str
; str
++)
3219 pp_character (pp
, TOUPPER (*str
));
3220 pp_string (pp
, " < ");
3221 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3222 pp_string (pp
, " > ");
3225 case VEC_UNPACK_HI_EXPR
:
3226 pp_string (pp
, " VEC_UNPACK_HI_EXPR < ");
3227 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3228 pp_string (pp
, " > ");
3231 case VEC_UNPACK_LO_EXPR
:
3232 pp_string (pp
, " VEC_UNPACK_LO_EXPR < ");
3233 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3234 pp_string (pp
, " > ");
3237 case VEC_UNPACK_FLOAT_HI_EXPR
:
3238 pp_string (pp
, " VEC_UNPACK_FLOAT_HI_EXPR < ");
3239 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3240 pp_string (pp
, " > ");
3243 case VEC_UNPACK_FLOAT_LO_EXPR
:
3244 pp_string (pp
, " VEC_UNPACK_FLOAT_LO_EXPR < ");
3245 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3246 pp_string (pp
, " > ");
3249 case VEC_UNPACK_FIX_TRUNC_HI_EXPR
:
3250 pp_string (pp
, " VEC_UNPACK_FIX_TRUNC_HI_EXPR < ");
3251 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3252 pp_string (pp
, " > ");
3255 case VEC_UNPACK_FIX_TRUNC_LO_EXPR
:
3256 pp_string (pp
, " VEC_UNPACK_FIX_TRUNC_LO_EXPR < ");
3257 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3258 pp_string (pp
, " > ");
3261 case VEC_PACK_TRUNC_EXPR
:
3262 pp_string (pp
, " VEC_PACK_TRUNC_EXPR < ");
3263 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3264 pp_string (pp
, ", ");
3265 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3266 pp_string (pp
, " > ");
3269 case VEC_PACK_SAT_EXPR
:
3270 pp_string (pp
, " VEC_PACK_SAT_EXPR < ");
3271 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3272 pp_string (pp
, ", ");
3273 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3274 pp_string (pp
, " > ");
3277 case VEC_PACK_FIX_TRUNC_EXPR
:
3278 pp_string (pp
, " VEC_PACK_FIX_TRUNC_EXPR < ");
3279 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3280 pp_string (pp
, ", ");
3281 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3282 pp_string (pp
, " > ");
3285 case VEC_PACK_FLOAT_EXPR
:
3286 pp_string (pp
, " VEC_PACK_FLOAT_EXPR < ");
3287 dump_generic_node (pp
, TREE_OPERAND (node
, 0), spc
, flags
, false);
3288 pp_string (pp
, ", ");
3289 dump_generic_node (pp
, TREE_OPERAND (node
, 1), spc
, flags
, false);
3290 pp_string (pp
, " > ");
3294 dump_block_node (pp
, node
, spc
, flags
);
3297 case DEBUG_BEGIN_STMT
:
3298 pp_string (pp
, "# DEBUG BEGIN STMT");
3305 if (is_stmt
&& is_expr
)
3311 /* Print the declaration of a variable. */
3314 print_declaration (pretty_printer
*pp
, tree t
, int spc
, dump_flags_t flags
)
3318 if (TREE_CODE(t
) == NAMELIST_DECL
)
3320 pp_string(pp
, "namelist ");
3321 dump_decl_name (pp
, t
, flags
);
3326 if (TREE_CODE (t
) == TYPE_DECL
)
3327 pp_string (pp
, "typedef ");
3329 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_WRTL
) && DECL_REGISTER (t
))
3330 pp_string (pp
, "register ");
3332 if (TREE_PUBLIC (t
) && DECL_EXTERNAL (t
))
3333 pp_string (pp
, "extern ");
3334 else if (TREE_STATIC (t
))
3335 pp_string (pp
, "static ");
3337 /* Print the type and name. */
3338 if (TREE_TYPE (t
) && TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
3342 /* Print array's type. */
3343 tmp
= TREE_TYPE (t
);
3344 while (TREE_CODE (TREE_TYPE (tmp
)) == ARRAY_TYPE
)
3345 tmp
= TREE_TYPE (tmp
);
3346 dump_generic_node (pp
, TREE_TYPE (tmp
), spc
, flags
, false);
3348 /* Print variable's name. */
3350 dump_generic_node (pp
, t
, spc
, flags
, false);
3352 /* Print the dimensions. */
3353 tmp
= TREE_TYPE (t
);
3354 while (TREE_CODE (tmp
) == ARRAY_TYPE
)
3356 dump_array_domain (pp
, TYPE_DOMAIN (tmp
), spc
, flags
);
3357 tmp
= TREE_TYPE (tmp
);
3360 else if (TREE_CODE (t
) == FUNCTION_DECL
)
3362 dump_generic_node (pp
, TREE_TYPE (TREE_TYPE (t
)), spc
, flags
, false);
3364 dump_decl_name (pp
, t
, flags
);
3365 dump_function_declaration (pp
, TREE_TYPE (t
), spc
, flags
);
3369 /* Print type declaration. */
3370 dump_generic_node (pp
, TREE_TYPE (t
), spc
, flags
, false);
3372 /* Print variable's name. */
3374 dump_generic_node (pp
, t
, spc
, flags
, false);
3377 if (VAR_P (t
) && DECL_HARD_REGISTER (t
))
3379 pp_string (pp
, " __asm__ ");
3381 dump_generic_node (pp
, DECL_ASSEMBLER_NAME (t
), spc
, flags
, false);
3382 pp_right_paren (pp
);
3385 /* The initial value of a function serves to determine whether the function
3386 is declared or defined. So the following does not apply to function
3388 if (TREE_CODE (t
) != FUNCTION_DECL
)
3390 /* Print the initial value. */
3391 if (DECL_INITIAL (t
))
3396 if (!(flags
& TDF_SLIM
))
3397 dump_generic_node (pp
, DECL_INITIAL (t
), spc
, flags
, false);
3399 pp_string (pp
, "<<< omitted >>>");
3403 if (VAR_P (t
) && DECL_HAS_VALUE_EXPR_P (t
))
3405 pp_string (pp
, " [value-expr: ");
3406 dump_generic_node (pp
, DECL_VALUE_EXPR (t
), spc
, flags
, false);
3407 pp_right_bracket (pp
);
3414 /* Prints a structure: name, fields, and methods.
3415 FIXME: Still incomplete. */
3418 print_struct_decl (pretty_printer
*pp
, const_tree node
, int spc
,
3421 /* Print the name of the structure. */
3422 if (TYPE_NAME (node
))
3425 if (TREE_CODE (node
) == RECORD_TYPE
)
3426 pp_string (pp
, "struct ");
3427 else if ((TREE_CODE (node
) == UNION_TYPE
3428 || TREE_CODE (node
) == QUAL_UNION_TYPE
))
3429 pp_string (pp
, "union ");
3431 dump_generic_node (pp
, TYPE_NAME (node
), spc
, TDF_NONE
, false);
3434 /* Print the contents of the structure. */
3440 /* Print the fields of the structure. */
3443 tmp
= TYPE_FIELDS (node
);
3446 /* Avoid to print recursively the structure. */
3447 /* FIXME : Not implemented correctly...,
3448 what about the case when we have a cycle in the contain graph? ...
3449 Maybe this could be solved by looking at the scope in which the
3450 structure was declared. */
3451 if (TREE_TYPE (tmp
) != node
3452 && (TREE_CODE (TREE_TYPE (tmp
)) != POINTER_TYPE
3453 || TREE_TYPE (TREE_TYPE (tmp
)) != node
))
3455 print_declaration (pp
, tmp
, spc
+2, flags
);
3458 tmp
= DECL_CHAIN (tmp
);
3462 pp_right_brace (pp
);
3465 /* Return the priority of the operator CODE.
3467 From lowest to highest precedence with either left-to-right (L-R)
3468 or right-to-left (R-L) associativity]:
3471 2 [R-L] = += -= *= /= %= &= ^= |= <<= >>=
3483 14 [R-L] ! ~ ++ -- + - * & (type) sizeof
3484 15 [L-R] fn() [] -> .
3486 unary +, - and * have higher precedence than the corresponding binary
3490 op_code_prio (enum tree_code code
)
3507 case TRUTH_ORIF_EXPR
:
3510 case TRUTH_AND_EXPR
:
3511 case TRUTH_ANDIF_EXPR
:
3518 case TRUTH_XOR_EXPR
:
3535 case UNORDERED_EXPR
:
3546 case VEC_WIDEN_LSHIFT_HI_EXPR
:
3547 case VEC_WIDEN_LSHIFT_LO_EXPR
:
3548 case WIDEN_LSHIFT_EXPR
:
3551 case WIDEN_SUM_EXPR
:
3553 case POINTER_PLUS_EXPR
:
3554 case POINTER_DIFF_EXPR
:
3558 case VEC_WIDEN_MULT_HI_EXPR
:
3559 case VEC_WIDEN_MULT_LO_EXPR
:
3560 case WIDEN_MULT_EXPR
:
3562 case WIDEN_MULT_PLUS_EXPR
:
3563 case WIDEN_MULT_MINUS_EXPR
:
3565 case MULT_HIGHPART_EXPR
:
3566 case TRUNC_DIV_EXPR
:
3568 case FLOOR_DIV_EXPR
:
3569 case ROUND_DIV_EXPR
:
3571 case EXACT_DIV_EXPR
:
3572 case TRUNC_MOD_EXPR
:
3574 case FLOOR_MOD_EXPR
:
3575 case ROUND_MOD_EXPR
:
3578 case TRUTH_NOT_EXPR
:
3580 case POSTINCREMENT_EXPR
:
3581 case POSTDECREMENT_EXPR
:
3582 case PREINCREMENT_EXPR
:
3583 case PREDECREMENT_EXPR
:
3589 case FIX_TRUNC_EXPR
:
3595 case ARRAY_RANGE_REF
:
3599 /* Special expressions. */
3605 case VEC_UNPACK_HI_EXPR
:
3606 case VEC_UNPACK_LO_EXPR
:
3607 case VEC_UNPACK_FLOAT_HI_EXPR
:
3608 case VEC_UNPACK_FLOAT_LO_EXPR
:
3609 case VEC_UNPACK_FIX_TRUNC_HI_EXPR
:
3610 case VEC_UNPACK_FIX_TRUNC_LO_EXPR
:
3611 case VEC_PACK_TRUNC_EXPR
:
3612 case VEC_PACK_SAT_EXPR
:
3616 /* Return an arbitrarily high precedence to avoid surrounding single
3617 VAR_DECLs in ()s. */
3622 /* Return the priority of the operator OP. */
3625 op_prio (const_tree op
)
3627 enum tree_code code
;
3632 code
= TREE_CODE (op
);
3633 if (code
== SAVE_EXPR
|| code
== NON_LVALUE_EXPR
)
3634 return op_prio (TREE_OPERAND (op
, 0));
3636 return op_code_prio (code
);
3639 /* Return the symbol associated with operator CODE. */
3642 op_symbol_code (enum tree_code code
)
3650 case TRUTH_ORIF_EXPR
:
3653 case TRUTH_AND_EXPR
:
3654 case TRUTH_ANDIF_EXPR
:
3660 case TRUTH_XOR_EXPR
:
3670 case UNORDERED_EXPR
:
3716 case WIDEN_LSHIFT_EXPR
:
3719 case POINTER_PLUS_EXPR
:
3725 case WIDEN_SUM_EXPR
:
3728 case WIDEN_MULT_EXPR
:
3731 case MULT_HIGHPART_EXPR
:
3736 case POINTER_DIFF_EXPR
:
3742 case TRUTH_NOT_EXPR
:
3749 case TRUNC_DIV_EXPR
:
3756 case FLOOR_DIV_EXPR
:
3759 case ROUND_DIV_EXPR
:
3762 case EXACT_DIV_EXPR
:
3765 case TRUNC_MOD_EXPR
:
3771 case FLOOR_MOD_EXPR
:
3774 case ROUND_MOD_EXPR
:
3777 case PREDECREMENT_EXPR
:
3780 case PREINCREMENT_EXPR
:
3783 case POSTDECREMENT_EXPR
:
3786 case POSTINCREMENT_EXPR
:
3796 return "<<< ??? >>>";
3800 /* Return the symbol associated with operator OP. */
3803 op_symbol (const_tree op
)
3805 return op_symbol_code (TREE_CODE (op
));
3808 /* Prints the name of a call. NODE is the CALL_EXPR_FN of a CALL_EXPR or
3809 the gimple_call_fn of a GIMPLE_CALL. */
3812 print_call_name (pretty_printer
*pp
, tree node
, dump_flags_t flags
)
3816 if (TREE_CODE (op0
) == NON_LVALUE_EXPR
)
3817 op0
= TREE_OPERAND (op0
, 0);
3820 switch (TREE_CODE (op0
))
3825 dump_function_name (pp
, op0
, flags
);
3831 op0
= TREE_OPERAND (op0
, 0);
3836 dump_generic_node (pp
, TREE_OPERAND (op0
, 0), 0, flags
, false);
3837 pp_string (pp
, ") ? ");
3838 dump_generic_node (pp
, TREE_OPERAND (op0
, 1), 0, flags
, false);
3839 pp_string (pp
, " : ");
3840 dump_generic_node (pp
, TREE_OPERAND (op0
, 2), 0, flags
, false);
3844 if (TREE_CODE (TREE_OPERAND (op0
, 0)) == VAR_DECL
)
3845 dump_function_name (pp
, TREE_OPERAND (op0
, 0), flags
);
3847 dump_generic_node (pp
, op0
, 0, flags
, false);
3851 if (integer_zerop (TREE_OPERAND (op0
, 1)))
3853 op0
= TREE_OPERAND (op0
, 0);
3860 dump_generic_node (pp
, op0
, 0, flags
, false);
3868 /* Parses the string STR and replaces new-lines by '\n', tabs by '\t', ... */
3871 pretty_print_string (pretty_printer
*pp
, const char *str
)
3881 pp_string (pp
, "\\b");
3885 pp_string (pp
, "\\f");
3889 pp_string (pp
, "\\n");
3893 pp_string (pp
, "\\r");
3897 pp_string (pp
, "\\t");
3901 pp_string (pp
, "\\v");
3905 pp_string (pp
, "\\\\");
3909 pp_string (pp
, "\\\"");
3913 pp_string (pp
, "\\'");
3916 /* No need to handle \0; the loop terminates on \0. */
3919 pp_string (pp
, "\\1");
3923 pp_string (pp
, "\\2");
3927 pp_string (pp
, "\\3");
3931 pp_string (pp
, "\\4");
3935 pp_string (pp
, "\\5");
3939 pp_string (pp
, "\\6");
3943 pp_string (pp
, "\\7");
3947 if (!ISPRINT (str
[0]))
3950 sprintf (buf
, "\\x%x", (unsigned char)str
[0]);
3951 pp_string (pp
, buf
);
3954 pp_character (pp
, str
[0]);
3962 maybe_init_pretty_print (FILE *file
)
3966 tree_pp
= new pretty_printer ();
3967 pp_needs_newline (tree_pp
) = true;
3968 pp_translate_identifiers (tree_pp
) = false;
3971 tree_pp
->buffer
->stream
= file
;
3975 newline_and_indent (pretty_printer
*pp
, int spc
)
3981 /* Handle the %K format for TEXT. Separate from default_tree_printer
3982 so it can also be used in front ends.
3983 Argument is a statement from which EXPR_LOCATION and TREE_BLOCK will
3987 percent_K_format (text_info
*text
, tree t
)
3989 text
->set_location (0, EXPR_LOCATION (t
), true);
3990 gcc_assert (pp_ti_abstract_origin (text
) != NULL
);
3991 tree block
= TREE_BLOCK (t
);
3992 *pp_ti_abstract_origin (text
) = NULL
;
3996 /* ??? LTO drops all BLOCK_ABSTRACT_ORIGINs apart from those
3997 representing the outermost block of an inlined function.
3998 So walk the BLOCK tree until we hit such a scope. */
4000 && TREE_CODE (block
) == BLOCK
)
4002 if (inlined_function_outer_scope_p (block
))
4004 *pp_ti_abstract_origin (text
) = block
;
4007 block
= BLOCK_SUPERCONTEXT (block
);
4013 && TREE_CODE (block
) == BLOCK
4014 && BLOCK_ABSTRACT_ORIGIN (block
))
4016 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
4018 while (TREE_CODE (ao
) == BLOCK
4019 && BLOCK_ABSTRACT_ORIGIN (ao
)
4020 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
4021 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
4023 if (TREE_CODE (ao
) == FUNCTION_DECL
)
4025 *pp_ti_abstract_origin (text
) = block
;
4028 block
= BLOCK_SUPERCONTEXT (block
);
4032 /* Print the identifier ID to PRETTY-PRINTER. */
4035 pp_tree_identifier (pretty_printer
*pp
, tree id
)
4037 if (pp_translate_identifiers (pp
))
4039 const char *text
= identifier_to_locale (IDENTIFIER_POINTER (id
));
4040 pp_append_text (pp
, text
, text
+ strlen (text
));
4043 pp_append_text (pp
, IDENTIFIER_POINTER (id
),
4044 IDENTIFIER_POINTER (id
) + IDENTIFIER_LENGTH (id
));
4047 /* A helper function that is used to dump function information before the
4051 dump_function_header (FILE *dump_file
, tree fdecl
, dump_flags_t flags
)
4053 const char *dname
, *aname
;
4054 struct cgraph_node
*node
= cgraph_node::get (fdecl
);
4055 struct function
*fun
= DECL_STRUCT_FUNCTION (fdecl
);
4057 dname
= lang_hooks
.decl_printable_name (fdecl
, 1);
4059 if (DECL_ASSEMBLER_NAME_SET_P (fdecl
))
4060 aname
= (IDENTIFIER_POINTER
4061 (DECL_ASSEMBLER_NAME (fdecl
)));
4063 aname
= "<unset-asm-name>";
4065 fprintf (dump_file
, "\n;; Function %s (%s, funcdef_no=%d",
4066 dname
, aname
, fun
->funcdef_no
);
4067 if (!(flags
& TDF_NOUID
))
4068 fprintf (dump_file
, ", decl_uid=%d", DECL_UID (fdecl
));
4071 fprintf (dump_file
, ", cgraph_uid=%d", node
->get_uid ());
4072 fprintf (dump_file
, ", symbol_order=%d)%s\n\n", node
->order
,
4073 node
->frequency
== NODE_FREQUENCY_HOT
4075 : node
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
4076 ? " (unlikely executed)"
4077 : node
->frequency
== NODE_FREQUENCY_EXECUTED_ONCE
4078 ? " (executed once)"
4082 fprintf (dump_file
, ")\n\n");
4085 /* Dump double_int D to pretty_printer PP. UNS is true
4086 if D is unsigned and false otherwise. */
4088 pp_double_int (pretty_printer
*pp
, double_int d
, bool uns
)
4091 pp_wide_integer (pp
, d
.low
);
4092 else if (d
.fits_uhwi ())
4093 pp_unsigned_wide_integer (pp
, d
.low
);
4096 unsigned HOST_WIDE_INT low
= d
.low
;
4097 HOST_WIDE_INT high
= d
.high
;
4098 if (!uns
&& d
.is_negative ())
4101 high
= ~high
+ !low
;
4104 /* Would "%x%0*x" or "%x%*0x" get zero-padding on all
4106 sprintf (pp_buffer (pp
)->digit_buffer
,
4107 HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
4108 (unsigned HOST_WIDE_INT
) high
, low
);
4109 pp_string (pp
, pp_buffer (pp
)->digit_buffer
);