1 /* Subroutines common to both C and C++ pretty-printers.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
27 #include "fixed-value.h"
28 #include "c-pretty-print.h"
30 #include "tree-iterator.h"
31 #include "diagnostic.h"
33 /* The pretty-printer code is primarily designed to closely follow
34 (GNU) C and C++ grammars. That is to be contrasted with spaghetti
35 codes we used to have in the past. Following a structured
36 approach (preferably the official grammars) is believed to make it
37 much easier to add extensions and nifty pretty-printing effects that
38 takes expression or declaration contexts into account. */
41 #define pp_c_maybe_whitespace(PP) \
43 if (pp_base (PP)->padding == pp_before) \
44 pp_c_whitespace (PP); \
48 static void pp_c_char (c_pretty_printer
*, int);
50 /* postfix-expression */
51 static void pp_c_initializer_list (c_pretty_printer
*, tree
);
52 static void pp_c_brace_enclosed_initializer_list (c_pretty_printer
*, tree
);
54 static void pp_c_multiplicative_expression (c_pretty_printer
*, tree
);
55 static void pp_c_additive_expression (c_pretty_printer
*, tree
);
56 static void pp_c_shift_expression (c_pretty_printer
*, tree
);
57 static void pp_c_relational_expression (c_pretty_printer
*, tree
);
58 static void pp_c_equality_expression (c_pretty_printer
*, tree
);
59 static void pp_c_and_expression (c_pretty_printer
*, tree
);
60 static void pp_c_exclusive_or_expression (c_pretty_printer
*, tree
);
61 static void pp_c_inclusive_or_expression (c_pretty_printer
*, tree
);
62 static void pp_c_logical_and_expression (c_pretty_printer
*, tree
);
63 static void pp_c_conditional_expression (c_pretty_printer
*, tree
);
64 static void pp_c_assignment_expression (c_pretty_printer
*, tree
);
69 /* Helper functions. */
72 pp_c_whitespace (c_pretty_printer
*pp
)
75 pp_base (pp
)->padding
= pp_none
;
79 pp_c_left_paren (c_pretty_printer
*pp
)
82 pp_base (pp
)->padding
= pp_none
;
86 pp_c_right_paren (c_pretty_printer
*pp
)
89 pp_base (pp
)->padding
= pp_none
;
93 pp_c_left_brace (c_pretty_printer
*pp
)
96 pp_base (pp
)->padding
= pp_none
;
100 pp_c_right_brace (c_pretty_printer
*pp
)
103 pp_base (pp
)->padding
= pp_none
;
107 pp_c_left_bracket (c_pretty_printer
*pp
)
109 pp_left_bracket (pp
);
110 pp_base (pp
)->padding
= pp_none
;
114 pp_c_right_bracket (c_pretty_printer
*pp
)
116 pp_right_bracket (pp
);
117 pp_base (pp
)->padding
= pp_none
;
121 pp_c_dot (c_pretty_printer
*pp
)
124 pp_base (pp
)->padding
= pp_none
;
128 pp_c_ampersand (c_pretty_printer
*pp
)
131 pp_base (pp
)->padding
= pp_none
;
135 pp_c_star (c_pretty_printer
*pp
)
138 pp_base (pp
)->padding
= pp_none
;
142 pp_c_arrow (c_pretty_printer
*pp
)
145 pp_base (pp
)->padding
= pp_none
;
149 pp_c_semicolon (c_pretty_printer
*pp
)
152 pp_base (pp
)->padding
= pp_none
;
156 pp_c_complement (c_pretty_printer
*pp
)
159 pp_base (pp
)->padding
= pp_none
;
163 pp_c_exclamation (c_pretty_printer
*pp
)
166 pp_base (pp
)->padding
= pp_none
;
169 /* Print out the external representation of CV-QUALIFIER. */
172 pp_c_cv_qualifier (c_pretty_printer
*pp
, const char *cv
)
174 const char *p
= pp_last_position_in_text (pp
);
175 /* The C programming language does not have references, but it is much
176 simpler to handle those here rather than going through the same
177 logic in the C++ pretty-printer. */
178 if (p
!= NULL
&& (*p
== '*' || *p
== '&'))
179 pp_c_whitespace (pp
);
180 pp_c_identifier (pp
, cv
);
183 /* Pretty-print T using the type-cast notation '( type-name )'. */
186 pp_c_type_cast (c_pretty_printer
*pp
, tree t
)
188 pp_c_left_paren (pp
);
190 pp_c_right_paren (pp
);
193 /* We're about to pretty-print a pointer type as indicated by T.
194 Output a whitespace, if needed, preparing for subsequent output. */
197 pp_c_space_for_pointer_operator (c_pretty_printer
*pp
, tree t
)
199 if (POINTER_TYPE_P (t
))
201 tree pointee
= strip_pointer_operator (TREE_TYPE (t
));
202 if (TREE_CODE (pointee
) != ARRAY_TYPE
203 && TREE_CODE (pointee
) != FUNCTION_TYPE
)
204 pp_c_whitespace (pp
);
211 /* C++ cv-qualifiers are called type-qualifiers in C. Print out the
212 cv-qualifiers of T. If T is a declaration then it is the cv-qualifier
213 of its type. Take care of possible extensions.
217 type-qualifier-list type-qualifier
222 __restrict__ -- GNU C
226 pp_c_type_qualifier_list (c_pretty_printer
*pp
, tree t
)
230 if (!t
|| t
== error_mark_node
)
236 qualifiers
= TYPE_QUALS (t
);
237 if (qualifiers
& TYPE_QUAL_CONST
)
238 pp_c_cv_qualifier (pp
, "const");
239 if (qualifiers
& TYPE_QUAL_VOLATILE
)
240 pp_c_cv_qualifier (pp
, "volatile");
241 if (qualifiers
& TYPE_QUAL_RESTRICT
)
242 pp_c_cv_qualifier (pp
, flag_isoc99
? "restrict" : "__restrict__");
246 * type-qualifier-list(opt)
247 * type-qualifier-list(opt) pointer */
250 pp_c_pointer (c_pretty_printer
*pp
, tree t
)
252 if (!TYPE_P (t
) && TREE_CODE (t
) != TYPE_DECL
)
254 switch (TREE_CODE (t
))
257 /* It is easier to handle C++ reference types here. */
259 if (TREE_CODE (TREE_TYPE (t
)) == POINTER_TYPE
)
260 pp_c_pointer (pp
, TREE_TYPE (t
));
261 if (TREE_CODE (t
) == POINTER_TYPE
)
265 pp_c_type_qualifier_list (pp
, t
);
268 /* ??? This node is now in GENERIC and so shouldn't be here. But
269 we'll fix that later. */
271 pp_declaration (pp
, DECL_EXPR_DECL (t
));
272 pp_needs_newline (pp
) = true;
276 pp_unsupported_tree (pp
, t
);
293 struct-or-union-specifier
298 simple-type-specifier:
303 pp_c_type_specifier (c_pretty_printer
*pp
, tree t
)
305 const enum tree_code code
= TREE_CODE (t
);
309 pp_c_identifier (pp
, "<type-error>");
312 case IDENTIFIER_NODE
:
313 pp_c_tree_decl_identifier (pp
, t
);
320 case FIXED_POINT_TYPE
:
324 pp_c_type_specifier (pp
, t
);
328 int prec
= TYPE_PRECISION (t
);
329 if (ALL_FIXED_POINT_MODE_P (TYPE_MODE (t
)))
330 t
= c_common_type_for_mode (TYPE_MODE (t
), TYPE_SATURATING (t
));
332 t
= c_common_type_for_mode (TYPE_MODE (t
), TYPE_UNSIGNED (t
));
335 pp_c_type_specifier (pp
, t
);
336 if (TYPE_PRECISION (t
) != prec
)
339 pp_decimal_int (pp
, prec
);
347 pp_string (pp
, (TYPE_UNSIGNED (t
)
348 ? "<unnamed-unsigned:"
349 : "<unnamed-signed:"));
352 pp_string (pp
, "<unnamed-float:");
354 case FIXED_POINT_TYPE
:
355 pp_string (pp
, "<unnamed-fixed:");
360 pp_decimal_int (pp
, prec
);
368 pp_id_expression (pp
, t
);
370 pp_c_identifier (pp
, "<typedef-error>");
376 if (code
== UNION_TYPE
)
377 pp_c_identifier (pp
, "union");
378 else if (code
== RECORD_TYPE
)
379 pp_c_identifier (pp
, "struct");
380 else if (code
== ENUMERAL_TYPE
)
381 pp_c_identifier (pp
, "enum");
383 pp_c_identifier (pp
, "<tag-error>");
386 pp_id_expression (pp
, TYPE_NAME (t
));
388 pp_c_identifier (pp
, "<anonymous>");
392 pp_unsupported_tree (pp
, t
);
397 /* specifier-qualifier-list:
398 type-specifier specifier-qualifier-list-opt
399 type-qualifier specifier-qualifier-list-opt
402 Implementation note: Because of the non-linearities in array or
403 function declarations, this routine prints not just the
404 specifier-qualifier-list of such entities or types of such entities,
405 but also the 'pointer' production part of their declarators. The
406 remaining part is done by pp_declarator or pp_c_abstract_declarator. */
409 pp_c_specifier_qualifier_list (c_pretty_printer
*pp
, tree t
)
411 const enum tree_code code
= TREE_CODE (t
);
413 if (TREE_CODE (t
) != POINTER_TYPE
)
414 pp_c_type_qualifier_list (pp
, t
);
420 /* Get the types-specifier of this type. */
421 tree pointee
= strip_pointer_operator (TREE_TYPE (t
));
422 pp_c_specifier_qualifier_list (pp
, pointee
);
423 if (TREE_CODE (pointee
) == ARRAY_TYPE
424 || TREE_CODE (pointee
) == FUNCTION_TYPE
)
426 pp_c_whitespace (pp
);
427 pp_c_left_paren (pp
);
429 else if (!c_dialect_cxx ())
430 pp_c_whitespace (pp
);
431 pp_ptr_operator (pp
, t
);
437 pp_c_specifier_qualifier_list (pp
, TREE_TYPE (t
));
442 pp_c_specifier_qualifier_list (pp
, TREE_TYPE (t
));
443 if (code
== COMPLEX_TYPE
)
444 pp_c_identifier (pp
, flag_isoc99
? "_Complex" : "__complex__");
445 else if (code
== VECTOR_TYPE
)
446 pp_c_identifier (pp
, "__vector__");
450 pp_simple_type_specifier (pp
, t
);
455 /* parameter-type-list:
460 parameter-declaration
461 parameter-list , parameter-declaration
463 parameter-declaration:
464 declaration-specifiers declarator
465 declaration-specifiers abstract-declarator(opt) */
468 pp_c_parameter_type_list (c_pretty_printer
*pp
, tree t
)
470 bool want_parm_decl
= DECL_P (t
) && !(pp
->flags
& pp_c_flag_abstract
);
471 tree parms
= want_parm_decl
? DECL_ARGUMENTS (t
) : TYPE_ARG_TYPES (t
);
472 pp_c_left_paren (pp
);
473 if (parms
== void_list_node
)
474 pp_c_identifier (pp
, "void");
478 for ( ; parms
&& parms
!= void_list_node
; parms
= TREE_CHAIN (parms
))
481 pp_separate_with (pp
, ',');
483 pp_declaration_specifiers
484 (pp
, want_parm_decl
? parms
: TREE_VALUE (parms
));
486 pp_declarator (pp
, parms
);
488 pp_abstract_declarator (pp
, TREE_VALUE (parms
));
491 pp_c_right_paren (pp
);
494 /* abstract-declarator:
496 pointer(opt) direct-abstract-declarator */
499 pp_c_abstract_declarator (c_pretty_printer
*pp
, tree t
)
501 if (TREE_CODE (t
) == POINTER_TYPE
)
503 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
504 || TREE_CODE (TREE_TYPE (t
)) == FUNCTION_TYPE
)
505 pp_c_right_paren (pp
);
509 pp_direct_abstract_declarator (pp
, t
);
512 /* direct-abstract-declarator:
513 ( abstract-declarator )
514 direct-abstract-declarator(opt) [ assignment-expression(opt) ]
515 direct-abstract-declarator(opt) [ * ]
516 direct-abstract-declarator(opt) ( parameter-type-list(opt) ) */
519 pp_c_direct_abstract_declarator (c_pretty_printer
*pp
, tree t
)
521 switch (TREE_CODE (t
))
524 pp_abstract_declarator (pp
, t
);
528 pp_c_parameter_type_list (pp
, t
);
529 pp_direct_abstract_declarator (pp
, TREE_TYPE (t
));
533 pp_c_left_bracket (pp
);
534 if (TYPE_DOMAIN (t
) && TYPE_MAX_VALUE (TYPE_DOMAIN (t
)))
536 tree maxval
= TYPE_MAX_VALUE (TYPE_DOMAIN (t
));
537 tree type
= TREE_TYPE (maxval
);
539 if (host_integerp (maxval
, 0))
540 pp_wide_integer (pp
, tree_low_cst (maxval
, 0) + 1);
542 pp_expression (pp
, fold_build2 (PLUS_EXPR
, type
, maxval
,
543 build_int_cst (type
, 1)));
545 pp_c_right_bracket (pp
);
546 pp_direct_abstract_declarator (pp
, TREE_TYPE (t
));
549 case IDENTIFIER_NODE
:
554 case FIXED_POINT_TYPE
:
564 pp_unsupported_tree (pp
, t
);
570 specifier-qualifier-list abstract-declarator(opt) */
573 pp_c_type_id (c_pretty_printer
*pp
, tree t
)
575 pp_c_specifier_qualifier_list (pp
, t
);
576 pp_abstract_declarator (pp
, t
);
579 /* storage-class-specifier:
587 pp_c_storage_class_specifier (c_pretty_printer
*pp
, tree t
)
589 if (TREE_CODE (t
) == TYPE_DECL
)
590 pp_c_identifier (pp
, "typedef");
593 if (DECL_REGISTER (t
))
594 pp_c_identifier (pp
, "register");
595 else if (TREE_STATIC (t
) && TREE_CODE (t
) == VAR_DECL
)
596 pp_c_identifier (pp
, "static");
600 /* function-specifier:
604 pp_c_function_specifier (c_pretty_printer
*pp
, tree t
)
606 if (TREE_CODE (t
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (t
))
607 pp_c_identifier (pp
, "inline");
610 /* declaration-specifiers:
611 storage-class-specifier declaration-specifiers(opt)
612 type-specifier declaration-specifiers(opt)
613 type-qualifier declaration-specifiers(opt)
614 function-specifier declaration-specifiers(opt) */
617 pp_c_declaration_specifiers (c_pretty_printer
*pp
, tree t
)
619 pp_storage_class_specifier (pp
, t
);
620 pp_function_specifier (pp
, t
);
621 pp_c_specifier_qualifier_list (pp
, DECL_P (t
) ? TREE_TYPE (t
) : t
);
627 direct-declarator [ type-qualifier-list(opt) assignment-expression(opt) ]
628 direct-declarator [ static type-qualifier-list(opt) assignment-expression(opt)]
629 direct-declarator [ type-qualifier-list static assignment-expression ]
630 direct-declarator [ type-qualifier-list * ]
631 direct-declarator ( parameter-type-list )
632 direct-declarator ( identifier-list(opt) ) */
635 pp_c_direct_declarator (c_pretty_printer
*pp
, tree t
)
637 switch (TREE_CODE (t
))
644 pp_c_space_for_pointer_operator (pp
, TREE_TYPE (t
));
645 pp_c_tree_decl_identifier (pp
, t
);
650 pp_abstract_declarator (pp
, TREE_TYPE (t
));
654 pp_parameter_list (pp
, t
);
655 pp_abstract_declarator (pp
, TREE_TYPE (t
));
659 pp_c_space_for_pointer_operator (pp
, TREE_TYPE (TREE_TYPE (t
)));
660 pp_c_tree_decl_identifier (pp
, t
);
661 if (pp_c_base (pp
)->flags
& pp_c_flag_abstract
)
662 pp_abstract_declarator (pp
, TREE_TYPE (t
));
665 pp_parameter_list (pp
, t
);
666 pp_abstract_declarator (pp
, TREE_TYPE (TREE_TYPE (t
)));
672 case FIXED_POINT_TYPE
:
679 pp_unsupported_tree (pp
, t
);
686 pointer(opt) direct-declarator */
689 pp_c_declarator (c_pretty_printer
*pp
, tree t
)
691 switch (TREE_CODE (t
))
695 case FIXED_POINT_TYPE
:
708 pp_direct_declarator (pp
, t
);
713 pp_unsupported_tree (pp
, t
);
719 declaration-specifiers init-declarator-list(opt) ; */
722 pp_c_declaration (c_pretty_printer
*pp
, tree t
)
724 pp_declaration_specifiers (pp
, t
);
725 pp_c_init_declarator (pp
, t
);
728 /* Pretty-print ATTRIBUTES using GNU C extension syntax. */
731 pp_c_attributes (c_pretty_printer
*pp
, tree attributes
)
733 if (attributes
== NULL_TREE
)
736 pp_c_identifier (pp
, "__attribute__");
737 pp_c_left_paren (pp
);
738 pp_c_left_paren (pp
);
739 for (; attributes
!= NULL_TREE
; attributes
= TREE_CHAIN (attributes
))
741 pp_tree_identifier (pp
, TREE_PURPOSE (attributes
));
742 if (TREE_VALUE (attributes
))
743 pp_c_call_argument_list (pp
, TREE_VALUE (attributes
));
745 if (TREE_CHAIN (attributes
))
746 pp_separate_with (pp
, ',');
748 pp_c_right_paren (pp
);
749 pp_c_right_paren (pp
);
752 /* function-definition:
753 declaration-specifiers declarator compound-statement */
756 pp_c_function_definition (c_pretty_printer
*pp
, tree t
)
758 pp_declaration_specifiers (pp
, t
);
759 pp_declarator (pp
, t
);
760 pp_needs_newline (pp
) = true;
761 pp_statement (pp
, DECL_SAVED_TREE (t
));
769 /* Print out a c-char. This is called solely for characters which are
770 in the *target* execution character set. We ought to convert them
771 back to the *host* execution character set before printing, but we
772 have no way to do this at present. A decent compromise is to print
773 all characters as if they were in the host execution character set,
774 and not attempt to recover any named escape characters, but render
775 all unprintables as octal escapes. If the host and target character
776 sets are the same, this produces relatively readable output. If they
777 are not the same, strings may appear as gibberish, but that's okay
778 (in fact, it may well be what the reader wants, e.g. if they are looking
779 to see if conversion to the target character set happened correctly).
781 A special case: we need to prefix \, ", and ' with backslashes. It is
782 correct to do so for the *host*'s \, ", and ', because the rest of the
783 file appears in the host character set. */
786 pp_c_char (c_pretty_printer
*pp
, int c
)
792 case '\\': pp_string (pp
, "\\\\"); break;
793 case '\'': pp_string (pp
, "\\\'"); break;
794 case '\"': pp_string (pp
, "\\\""); break;
795 default: pp_character (pp
, c
);
799 pp_scalar (pp
, "\\%03o", (unsigned) c
);
802 /* Print out a STRING literal. */
805 pp_c_string_literal (c_pretty_printer
*pp
, tree s
)
807 const char *p
= TREE_STRING_POINTER (s
);
808 int n
= TREE_STRING_LENGTH (s
) - 1;
811 for (i
= 0; i
< n
; ++i
)
812 pp_c_char (pp
, p
[i
]);
816 /* Pretty-print an INTEGER literal. */
819 pp_c_integer_constant (c_pretty_printer
*pp
, tree i
)
821 tree type
= TREE_TYPE (i
);
823 if (TREE_INT_CST_HIGH (i
) == 0)
824 pp_wide_integer (pp
, TREE_INT_CST_LOW (i
));
827 unsigned HOST_WIDE_INT low
= TREE_INT_CST_LOW (i
);
828 HOST_WIDE_INT high
= TREE_INT_CST_HIGH (i
);
829 if (tree_int_cst_sgn (i
) < 0)
831 pp_character (pp
, '-');
835 sprintf (pp_buffer (pp
)->digit_buffer
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
836 (unsigned HOST_WIDE_INT
) high
, (unsigned HOST_WIDE_INT
) low
);
837 pp_string (pp
, pp_buffer (pp
)->digit_buffer
);
839 if (TYPE_UNSIGNED (type
))
840 pp_character (pp
, 'u');
841 if (type
== long_integer_type_node
|| type
== long_unsigned_type_node
)
842 pp_character (pp
, 'l');
843 else if (type
== long_long_integer_type_node
844 || type
== long_long_unsigned_type_node
)
845 pp_string (pp
, "ll");
848 /* Print out a CHARACTER literal. */
851 pp_c_character_constant (c_pretty_printer
*pp
, tree c
)
853 tree type
= TREE_TYPE (c
);
854 if (type
== wchar_type_node
)
855 pp_character (pp
, 'L');
857 if (host_integerp (c
, TYPE_UNSIGNED (type
)))
858 pp_c_char (pp
, tree_low_cst (c
, TYPE_UNSIGNED (type
)));
860 pp_scalar (pp
, "\\x%x", (unsigned) TREE_INT_CST_LOW (c
));
864 /* Print out a BOOLEAN literal. */
867 pp_c_bool_constant (c_pretty_printer
*pp
, tree b
)
869 if (b
== boolean_false_node
)
871 if (c_dialect_cxx ())
872 pp_c_identifier (pp
, "false");
873 else if (flag_isoc99
)
874 pp_c_identifier (pp
, "_False");
876 pp_unsupported_tree (pp
, b
);
878 else if (b
== boolean_true_node
)
880 if (c_dialect_cxx ())
881 pp_c_identifier (pp
, "true");
882 else if (flag_isoc99
)
883 pp_c_identifier (pp
, "_True");
885 pp_unsupported_tree (pp
, b
);
887 else if (TREE_CODE (b
) == INTEGER_CST
)
888 pp_c_integer_constant (pp
, b
);
890 pp_unsupported_tree (pp
, b
);
893 /* Attempt to print out an ENUMERATOR. Return true on success. Else return
894 false; that means the value was obtained by a cast, in which case
895 print out the type-id part of the cast-expression -- the casted value
896 is then printed by pp_c_integer_literal. */
899 pp_c_enumeration_constant (c_pretty_printer
*pp
, tree e
)
901 bool value_is_named
= true;
902 tree type
= TREE_TYPE (e
);
905 /* Find the name of this constant. */
906 for (value
= TYPE_VALUES (type
);
907 value
!= NULL_TREE
&& !tree_int_cst_equal (TREE_VALUE (value
), e
);
908 value
= TREE_CHAIN (value
))
911 if (value
!= NULL_TREE
)
912 pp_id_expression (pp
, TREE_PURPOSE (value
));
915 /* Value must have been cast. */
916 pp_c_type_cast (pp
, type
);
917 value_is_named
= false;
920 return value_is_named
;
923 /* Print out a REAL value as a decimal-floating-constant. */
926 pp_c_floating_constant (c_pretty_printer
*pp
, tree r
)
928 real_to_decimal (pp_buffer (pp
)->digit_buffer
, &TREE_REAL_CST (r
),
929 sizeof (pp_buffer (pp
)->digit_buffer
), 0, 1);
930 pp_string (pp
, pp_buffer(pp
)->digit_buffer
);
931 if (TREE_TYPE (r
) == float_type_node
)
932 pp_character (pp
, 'f');
933 else if (TREE_TYPE (r
) == long_double_type_node
)
934 pp_character (pp
, 'l');
935 else if (TREE_TYPE (r
) == dfloat128_type_node
)
936 pp_string (pp
, "dl");
937 else if (TREE_TYPE (r
) == dfloat64_type_node
)
938 pp_string (pp
, "dd");
939 else if (TREE_TYPE (r
) == dfloat32_type_node
)
940 pp_string (pp
, "df");
943 /* Print out a FIXED value as a decimal-floating-constant. */
946 pp_c_fixed_constant (c_pretty_printer
*pp
, tree r
)
948 fixed_to_decimal (pp_buffer (pp
)->digit_buffer
, &TREE_FIXED_CST (r
),
949 sizeof (pp_buffer (pp
)->digit_buffer
));
950 pp_string (pp
, pp_buffer(pp
)->digit_buffer
);
953 /* Pretty-print a compound literal expression. GNU extensions include
957 pp_c_compound_literal (c_pretty_printer
*pp
, tree e
)
959 tree type
= TREE_TYPE (e
);
960 pp_c_type_cast (pp
, type
);
962 switch (TREE_CODE (type
))
969 pp_c_brace_enclosed_initializer_list (pp
, e
);
973 pp_unsupported_tree (pp
, e
);
983 character-constant */
986 pp_c_constant (c_pretty_printer
*pp
, tree e
)
988 const enum tree_code code
= TREE_CODE (e
);
994 tree type
= TREE_TYPE (e
);
995 if (type
== boolean_type_node
)
996 pp_c_bool_constant (pp
, e
);
997 else if (type
== char_type_node
)
998 pp_c_character_constant (pp
, e
);
999 else if (TREE_CODE (type
) == ENUMERAL_TYPE
1000 && pp_c_enumeration_constant (pp
, e
))
1003 pp_c_integer_constant (pp
, e
);
1008 pp_c_floating_constant (pp
, e
);
1012 pp_c_fixed_constant (pp
, e
);
1016 pp_c_string_literal (pp
, e
);
1020 /* Sometimes, we are confused and we think a complex literal
1021 is a constant. Such thing is a compound literal which
1022 grammatically belongs to postfix-expr production. */
1023 pp_c_compound_literal (pp
, e
);
1027 pp_unsupported_tree (pp
, e
);
1032 /* Pretty-print an IDENTIFIER_NODE, preceded by whitespace is necessary. */
1035 pp_c_identifier (c_pretty_printer
*pp
, const char *id
)
1037 pp_c_maybe_whitespace (pp
);
1038 pp_identifier (pp
, id
);
1039 pp_base (pp
)->padding
= pp_before
;
1042 /* Pretty-print a C primary-expression.
1050 pp_c_primary_expression (c_pretty_printer
*pp
, tree e
)
1052 switch (TREE_CODE (e
))
1060 pp_c_tree_decl_identifier (pp
, e
);
1063 case IDENTIFIER_NODE
:
1064 pp_c_tree_identifier (pp
, e
);
1068 pp_c_identifier (pp
, "<erroneous-expression>");
1072 pp_c_identifier (pp
, "<return-value>");
1079 pp_c_constant (pp
, e
);
1083 pp_c_identifier (pp
, "__builtin_memcpy");
1084 pp_c_left_paren (pp
);
1086 pp_primary_expression (pp
, TREE_OPERAND (e
, 0));
1087 pp_separate_with (pp
, ',');
1089 pp_initializer (pp
, TREE_OPERAND (e
, 1));
1090 if (TREE_OPERAND (e
, 2))
1092 pp_separate_with (pp
, ',');
1093 pp_c_expression (pp
, TREE_OPERAND (e
, 2));
1095 pp_c_right_paren (pp
);
1099 /* FIXME: Make sure we won't get into an infinite loop. */
1100 pp_c_left_paren (pp
);
1101 pp_expression (pp
, e
);
1102 pp_c_right_paren (pp
);
1107 /* Print out a C initializer -- also support C compound-literals.
1109 assignment-expression:
1110 { initializer-list }
1111 { initializer-list , } */
1114 pp_c_initializer (c_pretty_printer
*pp
, tree e
)
1116 if (TREE_CODE (e
) == CONSTRUCTOR
)
1117 pp_c_brace_enclosed_initializer_list (pp
, e
);
1119 pp_expression (pp
, e
);
1124 declarator = initializer */
1127 pp_c_init_declarator (c_pretty_printer
*pp
, tree t
)
1129 pp_declarator (pp
, t
);
1130 /* We don't want to output function definitions here. There are handled
1131 elsewhere (and the syntactic form is bogus anyway). */
1132 if (TREE_CODE (t
) != FUNCTION_DECL
&& DECL_INITIAL (t
))
1134 tree init
= DECL_INITIAL (t
);
1135 /* This C++ bit is handled here because it is easier to do so.
1136 In templates, the C++ parser builds a TREE_LIST for a
1137 direct-initialization; the TREE_PURPOSE is the variable to
1138 initialize and the TREE_VALUE is the initializer. */
1139 if (TREE_CODE (init
) == TREE_LIST
)
1141 pp_c_left_paren (pp
);
1142 pp_expression (pp
, TREE_VALUE (init
));
1143 pp_right_paren (pp
);
1150 pp_c_initializer (pp
, init
);
1155 /* initializer-list:
1156 designation(opt) initializer
1157 initializer-list , designation(opt) initializer
1164 designator-list designator
1167 [ constant-expression ]
1171 pp_c_initializer_list (c_pretty_printer
*pp
, tree e
)
1173 tree type
= TREE_TYPE (e
);
1174 const enum tree_code code
= TREE_CODE (type
);
1176 if (TREE_CODE (e
) == CONSTRUCTOR
)
1178 pp_c_constructor_elts (pp
, CONSTRUCTOR_ELTS (e
));
1188 tree init
= TREE_OPERAND (e
, 0);
1189 for (; init
!= NULL_TREE
; init
= TREE_CHAIN (init
))
1191 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
1194 pp_c_primary_expression (pp
, TREE_PURPOSE (init
));
1198 pp_c_left_bracket (pp
);
1199 if (TREE_PURPOSE (init
))
1200 pp_c_constant (pp
, TREE_PURPOSE (init
));
1201 pp_c_right_bracket (pp
);
1203 pp_c_whitespace (pp
);
1205 pp_c_whitespace (pp
);
1206 pp_initializer (pp
, TREE_VALUE (init
));
1207 if (TREE_CHAIN (init
))
1208 pp_separate_with (pp
, ',');
1214 if (TREE_CODE (e
) == VECTOR_CST
)
1215 pp_c_expression_list (pp
, TREE_VECTOR_CST_ELTS (e
));
1221 if (TREE_CODE (e
) == COMPLEX_CST
|| TREE_CODE (e
) == COMPLEX_EXPR
)
1223 const bool cst
= TREE_CODE (e
) == COMPLEX_CST
;
1224 pp_expression (pp
, cst
? TREE_REALPART (e
) : TREE_OPERAND (e
, 0));
1225 pp_separate_with (pp
, ',');
1226 pp_expression (pp
, cst
? TREE_IMAGPART (e
) : TREE_OPERAND (e
, 1));
1236 pp_unsupported_tree (pp
, type
);
1239 /* Pretty-print a brace-enclosed initializer-list. */
1242 pp_c_brace_enclosed_initializer_list (c_pretty_printer
*pp
, tree l
)
1244 pp_c_left_brace (pp
);
1245 pp_c_initializer_list (pp
, l
);
1246 pp_c_right_brace (pp
);
1250 /* This is a convenient function, used to bridge gap between C and C++
1257 pp_c_id_expression (c_pretty_printer
*pp
, tree t
)
1259 switch (TREE_CODE (t
))
1268 pp_c_tree_decl_identifier (pp
, t
);
1271 case IDENTIFIER_NODE
:
1272 pp_c_tree_identifier (pp
, t
);
1276 pp_unsupported_tree (pp
, t
);
1281 /* postfix-expression:
1283 postfix-expression [ expression ]
1284 postfix-expression ( argument-expression-list(opt) )
1285 postfix-expression . identifier
1286 postfix-expression -> identifier
1287 postfix-expression ++
1288 postfix-expression --
1289 ( type-name ) { initializer-list }
1290 ( type-name ) { initializer-list , } */
1293 pp_c_postfix_expression (c_pretty_printer
*pp
, tree e
)
1295 enum tree_code code
= TREE_CODE (e
);
1298 case POSTINCREMENT_EXPR
:
1299 case POSTDECREMENT_EXPR
:
1300 pp_postfix_expression (pp
, TREE_OPERAND (e
, 0));
1301 pp_identifier (pp
, code
== POSTINCREMENT_EXPR
? "++" : "--");
1305 pp_postfix_expression (pp
, TREE_OPERAND (e
, 0));
1306 pp_c_left_bracket (pp
);
1307 pp_expression (pp
, TREE_OPERAND (e
, 1));
1308 pp_c_right_bracket (pp
);
1313 call_expr_arg_iterator iter
;
1315 pp_postfix_expression (pp
, CALL_EXPR_FN (e
));
1316 pp_c_left_paren (pp
);
1317 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, e
)
1319 pp_expression (pp
, arg
);
1320 if (more_call_expr_args_p (&iter
))
1321 pp_separate_with (pp
, ',');
1323 pp_c_right_paren (pp
);
1327 case UNORDERED_EXPR
:
1328 pp_c_identifier (pp
, flag_isoc99
1330 : "__builtin_isunordered");
1334 pp_c_identifier (pp
, flag_isoc99
1336 : "!__builtin_isunordered");
1340 pp_c_identifier (pp
, flag_isoc99
1342 : "!__builtin_isgreaterequal");
1346 pp_c_identifier (pp
, flag_isoc99
1348 : "!__builtin_isgreater");
1352 pp_c_identifier (pp
, flag_isoc99
1354 : "!__builtin_islessequal");
1358 pp_c_identifier (pp
, flag_isoc99
1360 : "!__builtin_isless");
1364 pp_c_identifier (pp
, flag_isoc99
1366 : "!__builtin_islessgreater");
1370 pp_c_identifier (pp
, flag_isoc99
1372 : "__builtin_islessgreater");
1376 pp_c_left_paren (pp
);
1377 pp_expression (pp
, TREE_OPERAND (e
, 0));
1378 pp_separate_with (pp
, ',');
1379 pp_expression (pp
, TREE_OPERAND (e
, 1));
1380 pp_c_right_paren (pp
);
1384 pp_c_identifier (pp
, "__builtin_abs");
1385 pp_c_left_paren (pp
);
1386 pp_expression (pp
, TREE_OPERAND (e
, 0));
1387 pp_c_right_paren (pp
);
1392 tree object
= TREE_OPERAND (e
, 0);
1393 if (TREE_CODE (object
) == INDIRECT_REF
)
1395 pp_postfix_expression (pp
, TREE_OPERAND (object
, 0));
1400 pp_postfix_expression (pp
, object
);
1403 pp_expression (pp
, TREE_OPERAND (e
, 1));
1410 pp_c_compound_literal (pp
, e
);
1413 case COMPOUND_LITERAL_EXPR
:
1414 e
= DECL_INITIAL (COMPOUND_LITERAL_EXPR_DECL (e
));
1417 pp_initializer (pp
, e
);
1421 pp_c_identifier (pp
, "__builtin_va_arg");
1422 pp_c_left_paren (pp
);
1423 pp_assignment_expression (pp
, TREE_OPERAND (e
, 0));
1424 pp_separate_with (pp
, ',');
1425 pp_type_id (pp
, TREE_TYPE (e
));
1426 pp_c_right_paren (pp
);
1430 if (TREE_CODE (TREE_OPERAND (e
, 0)) == FUNCTION_DECL
)
1432 pp_c_id_expression (pp
, TREE_OPERAND (e
, 0));
1435 /* else fall through. */
1438 pp_primary_expression (pp
, e
);
1443 /* Print out an expression-list; E is expected to be a TREE_LIST. */
1446 pp_c_expression_list (c_pretty_printer
*pp
, tree e
)
1448 for (; e
!= NULL_TREE
; e
= TREE_CHAIN (e
))
1450 pp_expression (pp
, TREE_VALUE (e
));
1452 pp_separate_with (pp
, ',');
1456 /* Print out V, which contains the elements of a constructor. */
1459 pp_c_constructor_elts (c_pretty_printer
*pp
, VEC(constructor_elt
,gc
) *v
)
1461 unsigned HOST_WIDE_INT ix
;
1464 FOR_EACH_CONSTRUCTOR_VALUE (v
, ix
, value
)
1466 pp_expression (pp
, value
);
1467 if (ix
!= VEC_length (constructor_elt
, v
) - 1)
1468 pp_separate_with (pp
, ',');
1472 /* Print out an expression-list in parens, as if it were the argument
1473 list to a function. */
1476 pp_c_call_argument_list (c_pretty_printer
*pp
, tree t
)
1478 pp_c_left_paren (pp
);
1479 if (t
&& TREE_CODE (t
) == TREE_LIST
)
1480 pp_c_expression_list (pp
, t
);
1481 pp_c_right_paren (pp
);
1484 /* unary-expression:
1488 unary-operator cast-expression
1489 sizeof unary-expression
1492 unary-operator: one of
1497 __alignof__ unary-expression
1498 __alignof__ ( type-id )
1499 __real__ unary-expression
1500 __imag__ unary-expression */
1503 pp_c_unary_expression (c_pretty_printer
*pp
, tree e
)
1505 enum tree_code code
= TREE_CODE (e
);
1508 case PREINCREMENT_EXPR
:
1509 case PREDECREMENT_EXPR
:
1510 pp_identifier (pp
, code
== PREINCREMENT_EXPR
? "++" : "--");
1511 pp_c_unary_expression (pp
, TREE_OPERAND (e
, 0));
1518 case TRUTH_NOT_EXPR
:
1520 /* String literal are used by address. */
1521 if (code
== ADDR_EXPR
&& TREE_CODE (TREE_OPERAND (e
, 0)) != STRING_CST
)
1523 else if (code
== INDIRECT_REF
)
1525 else if (code
== NEGATE_EXPR
)
1527 else if (code
== BIT_NOT_EXPR
|| code
== CONJ_EXPR
)
1529 else if (code
== TRUTH_NOT_EXPR
)
1530 pp_exclamation (pp
);
1531 pp_c_cast_expression (pp
, TREE_OPERAND (e
, 0));
1536 pp_c_identifier (pp
, code
== REALPART_EXPR
? "__real__" : "__imag__");
1537 pp_c_whitespace (pp
);
1538 pp_unary_expression (pp
, TREE_OPERAND (e
, 0));
1542 pp_postfix_expression (pp
, e
);
1549 ( type-name ) cast-expression */
1552 pp_c_cast_expression (c_pretty_printer
*pp
, tree e
)
1554 switch (TREE_CODE (e
))
1557 case FIX_TRUNC_EXPR
:
1559 pp_c_type_cast (pp
, TREE_TYPE (e
));
1560 pp_c_cast_expression (pp
, TREE_OPERAND (e
, 0));
1564 pp_unary_expression (pp
, e
);
1568 /* multiplicative-expression:
1570 multiplicative-expression * cast-expression
1571 multiplicative-expression / cast-expression
1572 multiplicative-expression % cast-expression */
1575 pp_c_multiplicative_expression (c_pretty_printer
*pp
, tree e
)
1577 enum tree_code code
= TREE_CODE (e
);
1581 case TRUNC_DIV_EXPR
:
1582 case TRUNC_MOD_EXPR
:
1583 pp_multiplicative_expression (pp
, TREE_OPERAND (e
, 0));
1584 pp_c_whitespace (pp
);
1585 if (code
== MULT_EXPR
)
1587 else if (code
== TRUNC_DIV_EXPR
)
1591 pp_c_whitespace (pp
);
1592 pp_c_cast_expression (pp
, TREE_OPERAND (e
, 1));
1596 pp_c_cast_expression (pp
, e
);
1601 /* additive-expression:
1602 multiplicative-expression
1603 additive-expression + multiplicative-expression
1604 additive-expression - multiplicative-expression */
1607 pp_c_additive_expression (c_pretty_printer
*pp
, tree e
)
1609 enum tree_code code
= TREE_CODE (e
);
1612 case POINTER_PLUS_EXPR
:
1615 pp_c_additive_expression (pp
, TREE_OPERAND (e
, 0));
1616 pp_c_whitespace (pp
);
1617 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
1621 pp_c_whitespace (pp
);
1622 pp_multiplicative_expression (pp
, TREE_OPERAND (e
, 1));
1626 pp_multiplicative_expression (pp
, e
);
1631 /* additive-expression:
1633 shift-expression << additive-expression
1634 shift-expression >> additive-expression */
1637 pp_c_shift_expression (c_pretty_printer
*pp
, tree e
)
1639 enum tree_code code
= TREE_CODE (e
);
1644 pp_c_shift_expression (pp
, TREE_OPERAND (e
, 0));
1645 pp_c_whitespace (pp
);
1646 pp_identifier (pp
, code
== LSHIFT_EXPR
? "<<" : ">>");
1647 pp_c_whitespace (pp
);
1648 pp_c_additive_expression (pp
, TREE_OPERAND (e
, 1));
1652 pp_c_additive_expression (pp
, e
);
1656 /* relational-expression:
1658 relational-expression < shift-expression
1659 relational-expression > shift-expression
1660 relational-expression <= shift-expression
1661 relational-expression >= shift-expression */
1664 pp_c_relational_expression (c_pretty_printer
*pp
, tree e
)
1666 enum tree_code code
= TREE_CODE (e
);
1673 pp_c_relational_expression (pp
, TREE_OPERAND (e
, 0));
1674 pp_c_whitespace (pp
);
1675 if (code
== LT_EXPR
)
1677 else if (code
== GT_EXPR
)
1679 else if (code
== LE_EXPR
)
1680 pp_identifier (pp
, "<=");
1681 else if (code
== GE_EXPR
)
1682 pp_identifier (pp
, ">=");
1683 pp_c_whitespace (pp
);
1684 pp_c_shift_expression (pp
, TREE_OPERAND (e
, 1));
1688 pp_c_shift_expression (pp
, e
);
1693 /* equality-expression:
1694 relational-expression
1695 equality-expression == relational-expression
1696 equality-equality != relational-expression */
1699 pp_c_equality_expression (c_pretty_printer
*pp
, tree e
)
1701 enum tree_code code
= TREE_CODE (e
);
1706 pp_c_equality_expression (pp
, TREE_OPERAND (e
, 0));
1707 pp_c_whitespace (pp
);
1708 pp_identifier (pp
, code
== EQ_EXPR
? "==" : "!=");
1709 pp_c_whitespace (pp
);
1710 pp_c_relational_expression (pp
, TREE_OPERAND (e
, 1));
1714 pp_c_relational_expression (pp
, e
);
1721 AND-expression & equality-equality */
1724 pp_c_and_expression (c_pretty_printer
*pp
, tree e
)
1726 if (TREE_CODE (e
) == BIT_AND_EXPR
)
1728 pp_c_and_expression (pp
, TREE_OPERAND (e
, 0));
1729 pp_c_whitespace (pp
);
1731 pp_c_whitespace (pp
);
1732 pp_c_equality_expression (pp
, TREE_OPERAND (e
, 1));
1735 pp_c_equality_expression (pp
, e
);
1738 /* exclusive-OR-expression:
1740 exclusive-OR-expression ^ AND-expression */
1743 pp_c_exclusive_or_expression (c_pretty_printer
*pp
, tree e
)
1745 if (TREE_CODE (e
) == BIT_XOR_EXPR
1746 || TREE_CODE (e
) == TRUTH_XOR_EXPR
)
1748 pp_c_exclusive_or_expression (pp
, TREE_OPERAND (e
, 0));
1749 if (TREE_CODE (e
) == BIT_XOR_EXPR
)
1750 pp_c_maybe_whitespace (pp
);
1752 pp_c_whitespace (pp
);
1754 pp_c_whitespace (pp
);
1755 pp_c_and_expression (pp
, TREE_OPERAND (e
, 1));
1758 pp_c_and_expression (pp
, e
);
1761 /* inclusive-OR-expression:
1762 exclusive-OR-expression
1763 inclusive-OR-expression | exclusive-OR-expression */
1766 pp_c_inclusive_or_expression (c_pretty_printer
*pp
, tree e
)
1768 if (TREE_CODE (e
) == BIT_IOR_EXPR
)
1770 pp_c_exclusive_or_expression (pp
, TREE_OPERAND (e
, 0));
1771 pp_c_whitespace (pp
);
1773 pp_c_whitespace (pp
);
1774 pp_c_exclusive_or_expression (pp
, TREE_OPERAND (e
, 1));
1777 pp_c_exclusive_or_expression (pp
, e
);
1780 /* logical-AND-expression:
1781 inclusive-OR-expression
1782 logical-AND-expression && inclusive-OR-expression */
1785 pp_c_logical_and_expression (c_pretty_printer
*pp
, tree e
)
1787 if (TREE_CODE (e
) == TRUTH_ANDIF_EXPR
1788 || TREE_CODE (e
) == TRUTH_AND_EXPR
)
1790 pp_c_logical_and_expression (pp
, TREE_OPERAND (e
, 0));
1791 pp_c_whitespace (pp
);
1792 pp_identifier (pp
, "&&");
1793 pp_c_whitespace (pp
);
1794 pp_c_inclusive_or_expression (pp
, TREE_OPERAND (e
, 1));
1797 pp_c_inclusive_or_expression (pp
, e
);
1800 /* logical-OR-expression:
1801 logical-AND-expression
1802 logical-OR-expression || logical-AND-expression */
1805 pp_c_logical_or_expression (c_pretty_printer
*pp
, tree e
)
1807 if (TREE_CODE (e
) == TRUTH_ORIF_EXPR
1808 || TREE_CODE (e
) == TRUTH_OR_EXPR
)
1810 pp_c_logical_or_expression (pp
, TREE_OPERAND (e
, 0));
1811 pp_c_whitespace (pp
);
1812 pp_identifier (pp
, "||");
1813 pp_c_whitespace (pp
);
1814 pp_c_logical_and_expression (pp
, TREE_OPERAND (e
, 1));
1817 pp_c_logical_and_expression (pp
, e
);
1820 /* conditional-expression:
1821 logical-OR-expression
1822 logical-OR-expression ? expression : conditional-expression */
1825 pp_c_conditional_expression (c_pretty_printer
*pp
, tree e
)
1827 if (TREE_CODE (e
) == COND_EXPR
)
1829 pp_c_logical_or_expression (pp
, TREE_OPERAND (e
, 0));
1830 pp_c_whitespace (pp
);
1832 pp_c_whitespace (pp
);
1833 pp_expression (pp
, TREE_OPERAND (e
, 1));
1834 pp_c_whitespace (pp
);
1836 pp_c_whitespace (pp
);
1837 pp_c_conditional_expression (pp
, TREE_OPERAND (e
, 2));
1840 pp_c_logical_or_expression (pp
, e
);
1844 /* assignment-expression:
1845 conditional-expression
1846 unary-expression assignment-operator assignment-expression
1848 assignment-expression: one of
1849 = *= /= %= += -= >>= <<= &= ^= |= */
1852 pp_c_assignment_expression (c_pretty_printer
*pp
, tree e
)
1854 if (TREE_CODE (e
) == MODIFY_EXPR
1855 || TREE_CODE (e
) == INIT_EXPR
)
1857 pp_c_unary_expression (pp
, TREE_OPERAND (e
, 0));
1858 pp_c_whitespace (pp
);
1861 pp_c_expression (pp
, TREE_OPERAND (e
, 1));
1864 pp_c_conditional_expression (pp
, e
);
1868 assignment-expression
1869 expression , assignment-expression
1871 Implementation note: instead of going through the usual recursion
1872 chain, I take the liberty of dispatching nodes to the appropriate
1873 functions. This makes some redundancy, but it worths it. That also
1874 prevents a possible infinite recursion between pp_c_primary_expression ()
1875 and pp_c_expression (). */
1878 pp_c_expression (c_pretty_printer
*pp
, tree e
)
1880 switch (TREE_CODE (e
))
1883 pp_c_integer_constant (pp
, e
);
1887 pp_c_floating_constant (pp
, e
);
1891 pp_c_fixed_constant (pp
, e
);
1895 pp_c_string_literal (pp
, e
);
1898 case IDENTIFIER_NODE
:
1907 pp_primary_expression (pp
, e
);
1910 case POSTINCREMENT_EXPR
:
1911 case POSTDECREMENT_EXPR
:
1919 case UNORDERED_EXPR
:
1928 case COMPOUND_LITERAL_EXPR
:
1930 pp_postfix_expression (pp
, e
);
1938 case TRUTH_NOT_EXPR
:
1939 case PREINCREMENT_EXPR
:
1940 case PREDECREMENT_EXPR
:
1943 pp_c_unary_expression (pp
, e
);
1947 case FIX_TRUNC_EXPR
:
1949 pp_c_cast_expression (pp
, e
);
1953 case TRUNC_MOD_EXPR
:
1954 case TRUNC_DIV_EXPR
:
1955 pp_multiplicative_expression (pp
, e
);
1960 pp_c_shift_expression (pp
, e
);
1967 pp_c_relational_expression (pp
, e
);
1971 pp_c_and_expression (pp
, e
);
1975 case TRUTH_XOR_EXPR
:
1976 pp_c_exclusive_or_expression (pp
, e
);
1980 pp_c_inclusive_or_expression (pp
, e
);
1983 case TRUTH_ANDIF_EXPR
:
1984 case TRUTH_AND_EXPR
:
1985 pp_c_logical_and_expression (pp
, e
);
1988 case TRUTH_ORIF_EXPR
:
1990 pp_c_logical_or_expression (pp
, e
);
1995 pp_c_equality_expression (pp
, e
);
1999 pp_conditional_expression (pp
, e
);
2002 case POINTER_PLUS_EXPR
:
2005 pp_c_additive_expression (pp
, e
);
2010 pp_assignment_expression (pp
, e
);
2014 pp_c_left_paren (pp
);
2015 pp_expression (pp
, TREE_OPERAND (e
, 0));
2016 pp_separate_with (pp
, ',');
2017 pp_assignment_expression (pp
, TREE_OPERAND (e
, 1));
2018 pp_c_right_paren (pp
);
2021 case NON_LVALUE_EXPR
:
2023 pp_expression (pp
, TREE_OPERAND (e
, 0));
2027 pp_postfix_expression (pp
, TREE_OPERAND (e
, 1));
2031 pp_unsupported_tree (pp
, e
);
2041 pp_c_statement (c_pretty_printer
*pp
, tree stmt
)
2046 if (pp_needs_newline (pp
))
2047 pp_newline_and_indent (pp
, 0);
2049 dump_generic_node (pp_base (pp
), stmt
, pp_indentation (pp
), 0, true);
2053 /* Initialize the PRETTY-PRINTER for handling C codes. */
2056 pp_c_pretty_printer_init (c_pretty_printer
*pp
)
2058 pp
->offset_list
= 0;
2060 pp
->declaration
= pp_c_declaration
;
2061 pp
->declaration_specifiers
= pp_c_declaration_specifiers
;
2062 pp
->declarator
= pp_c_declarator
;
2063 pp
->direct_declarator
= pp_c_direct_declarator
;
2064 pp
->type_specifier_seq
= pp_c_specifier_qualifier_list
;
2065 pp
->abstract_declarator
= pp_c_abstract_declarator
;
2066 pp
->direct_abstract_declarator
= pp_c_direct_abstract_declarator
;
2067 pp
->ptr_operator
= pp_c_pointer
;
2068 pp
->parameter_list
= pp_c_parameter_type_list
;
2069 pp
->type_id
= pp_c_type_id
;
2070 pp
->simple_type_specifier
= pp_c_type_specifier
;
2071 pp
->function_specifier
= pp_c_function_specifier
;
2072 pp
->storage_class_specifier
= pp_c_storage_class_specifier
;
2074 pp
->statement
= pp_c_statement
;
2076 pp
->constant
= pp_c_constant
;
2077 pp
->id_expression
= pp_c_id_expression
;
2078 pp
->primary_expression
= pp_c_primary_expression
;
2079 pp
->postfix_expression
= pp_c_postfix_expression
;
2080 pp
->unary_expression
= pp_c_unary_expression
;
2081 pp
->initializer
= pp_c_initializer
;
2082 pp
->multiplicative_expression
= pp_c_multiplicative_expression
;
2083 pp
->conditional_expression
= pp_c_conditional_expression
;
2084 pp
->assignment_expression
= pp_c_assignment_expression
;
2085 pp
->expression
= pp_c_expression
;
2089 /* Print the tree T in full, on file FILE. */
2092 print_c_tree (FILE *file
, tree t
)
2094 static c_pretty_printer pp_rec
;
2095 static bool initialized
= 0;
2096 c_pretty_printer
*pp
= &pp_rec
;
2101 pp_construct (pp_base (pp
), NULL
, 0);
2102 pp_c_pretty_printer_init (pp
);
2103 pp_needs_newline (pp
) = true;
2105 pp_base (pp
)->buffer
->stream
= file
;
2107 pp_statement (pp
, t
);
2113 /* Print the tree T in full, on stderr. */
2116 debug_c_tree (tree t
)
2118 print_c_tree (stderr
, t
);
2119 fputc ('\n', stderr
);
2122 /* Output the DECL_NAME of T. If T has no DECL_NAME, output a string made
2123 up of T's memory address. */
2126 pp_c_tree_decl_identifier (c_pretty_printer
*pp
, tree t
)
2130 gcc_assert (DECL_P (t
));
2133 name
= IDENTIFIER_POINTER (DECL_NAME (t
));
2136 static char xname
[8];
2137 sprintf (xname
, "<U%4x>", ((unsigned)((unsigned long)(t
) & 0xffff)));
2141 pp_c_identifier (pp
, name
);