pretty-print.h (pp_maybe_newline_and_indent): New macro.
* pretty-print.h (pp_maybe_newline_and_indent): New macro. * c-pretty-print.h (c_pretty_printer): Now typedef to the structure. Be consistent with pretty-print.h abd cxx-pretty-print.h (struct c_pretty_print_info): Document. Add new fields. (pp_type_specifier_seq): Rename from pp_c_type_specifier. (pp_direct_abstract_declarator): New macro. (pp_ptr_operator): Likewise. (pp_simple_type_specifier): Likewise. (pp_expression): Likewise. (pp_parameter_list): Rename from pp_parameter_declaration. * c-pretty-print.c (pp_c_whitespace): Now a function. (pp_c_left_paren): Likewise. (pp_c_right_paren): Likewise. (pp_c_dot): Likewise. (pp_c_ampersand): Likewise. (pp_c_arrow): Likewise. (pp_c_semicolon): Likewise. (pp_c_type_cast): New function. (pp_c_space_for_pointer_operator): Likewise. (pp_c_call_argument_list): Likewise. (pp_c_cv_qualifier): Adjust prototype. (pp_c_type_qualifier_list): Likewise. (pp_c_pointer): Likewise. Handle REFERENCE_TYPE here. (pp_c_type_specifier): Rename from pp_c_simple_type_specifier. Adjust to follow standard grammar. (pp_c_specifier_qualifier_list): Adjusr prototype. Handle REFERENCE_TYPE. Tidy. (pp_c_parameter_type_list): Adjust prototype. Tidy. (pp_c_parameter_declaration): Remove. (pp_c_abstract_declarator): Adjust prototype. (pp_c_direct_abstract_declarator): Likewise. (pp_c_type_id): Likewise. (pp_c_storage_class_specifier): Likewise. (pp_c_function_specifier): Likewise. (pp_c_declaration_specifiers): Likewise. (pp_c_direct_declarator): Likewise. (pp_c_declarator): Likewise. (pp_c_declarator): Likewise. (pp_c_declaration): Likewise. (pp_c_attributes): Likewise. Tidy. (pp_c_function_definition): Adjust prototype. (pp_c_char): Likewise. (pp_c_string_literal): Likewise. (pp_c_integer_constant): Likewise. (pp_c_character_constant): Likewise. (pp_c_bool_constant): Likewise. (pp_c_enumeration_constant): Likewise. (pp_c_floating_constant): Likewise. (pp_c_constant): Likewise. (pp_c_identifier): Likewise. (pp_c_primary_expression): Likewise. Remove TARGET_EXPR case. Tidy. (pp_c_initializer): Adjust prototype. (pp_c_init_declarator): Likewise. (pp_c_initializer_list): Likewise. (pp_c_id_expression): Likewise. (pp_c_postfix_expression): Likewise. (pp_c_expression_list): Likewise. (pp_c_unary_expression): Likewise. (pp_c_cast_expression): Likewise. (pp_c_multiplicative_expression): Likewise. (pp_c_additive_expression): Likewise. (pp_c_shift_expression): Likewise. (pp_c_relational_expression): Likewise. (pp_c_equality_expression): Likewise. (pp_c_and_expression): Likewise. (pp_c_exclusive_or_expression): Likewise. (pp_c_inclusive_or_expression): Likewise. (pp_c_logical_and_expression): Likewise. (pp_c_logical_or_expression): Likewise. (pp_c_conditional_expression): Likewise. (pp_c_assignment_expression): Likewise. (pp_c_expression): Likewise. Tidy. (pp_c_statement): Likewise. Document. (pp_c_pretty_printer_init): Adjust prototype. Tidy. * c-lang.c (c_initialize_diagnostics): Update. * c-common.h (strip_pointer_operator): Declare. * c-common.c (strip_pointer_operator): Define. cp/ * cxx-pretty-print.h (pp_cxx_flag_default_argument): New flag. (cxx_pretty_printer): Adjust base type. (pp_cxx_function_specifier): Declare. * cxx-pretty-print.c (pp_cxx_whitespace): New macro. (pp_cxx_left_paren): Likewise. (pp_cxx_right_paren): Likewise. (pp_cxx_dot): Likewise. (pp_cxx_arrow): Likewise. (pp_cxx_semicolon): Likewise. (pp_cxx_identifier): Likewise. (pp_cxx_cv_qualifier_seq): Likewise. (pp_cxx_storage_class_specifier): Likewise. (pp_cxx_expression_list): Likewise. (pp_cxx_space_for_pointer_operator): Likewise. (pp_cxx_init_declarator): Likewise. (pp_cxx_call_argument_list): Likewise. (pp_cxx_nonconsecutive_character): Tidy. (pp_cxx_conversion_function_id): New function. (pp_cxx_template_id): Likewise. (pp_cxx_class_name): Likewise. (pp_cxx_template_keyword_if_needed): Likewise. (pp_cxx_nested_name_specifier): Likewise. (pp_cxx_unqualified_id): Tidy (pp_cxx_qualified_id): Handle more nodes. (pp_cxx_primary_expression): Tidy. (pp_cxx_postfix_expression): Likewise. (pp_cxx_new_expression): Tidy. (pp_cxx_delete_expression): Likewise. (pp_cxx_cast_expression): New function. (pp_cxx_pm_expression): Tidy. (pp_cxx_conditional_expression): Likewise. (pp_cxx_assignment_operator): New function. (pp_cxx_assignment_expression): Tidy. (pp_cxx_expression): New function. (pp_cxx_function_specifier): Likewise. (pp_cxx_decl_specifier_seq): Likewise. (pp_cxx_simple_type_specifier): Tidy. (pp_cxx_type_specifier_seq): Likewise. (pp_cxx_ptr_operator): New function. (pp_cxx_implicit_parameter_type): Likewise. (pp_cxx_parameter_declaration): Tidy. (pp_cxx_parameter_declaration_clause): New function. (pp_cxx_exception_specification): Likewise. (pp_cxx_direct_declarator): Tidy. (pp_cxx_declarator): Likewise. (pp_cxx_ctor_initializer): New function. (pp_cxx_function_definition): Likewise. (pp_cxx_abstract_declarator): Tidy. (pp_cxx_direct_abstract_declarator): Likewise. (pp_cxx_type_id): Likewise. (pp_cxx_exception_declaration): New function. (pp_cxx_statement): Likewise. (pp_cxx_simple_declaration): Likewise. (pp_cxx_template_parameter_list): Likewise. (pp_cxx_template_parameter): Likewise. (pp_cxx_template_declaration): Likewise. (pp_cxx_explicit_specialization): Likewise. (pp_cxx_explicit_instantiation): Likewise. (pp_cxx_declaration): Tidy. (pp_cxx_pretty_printer_init): Initialize more fields. From-SVN: r70777
This commit is contained in:
parent
81f7282f97
commit
12ea3302e6
@ -1,3 +1,84 @@
|
||||
2003-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
|
||||
* pretty-print.h (pp_maybe_newline_and_indent): New macro.
|
||||
* c-pretty-print.h (c_pretty_printer): Now typedef to the
|
||||
structure. Be consistent with pretty-print.h abd cxx-pretty-print.h
|
||||
(struct c_pretty_print_info): Document. Add new fields.
|
||||
(pp_type_specifier_seq): Rename from pp_c_type_specifier.
|
||||
(pp_direct_abstract_declarator): New macro.
|
||||
(pp_ptr_operator): Likewise.
|
||||
(pp_simple_type_specifier): Likewise.
|
||||
(pp_expression): Likewise.
|
||||
(pp_parameter_list): Rename from pp_parameter_declaration.
|
||||
* c-pretty-print.c (pp_c_whitespace): Now a function.
|
||||
(pp_c_left_paren): Likewise.
|
||||
(pp_c_right_paren): Likewise.
|
||||
(pp_c_dot): Likewise.
|
||||
(pp_c_ampersand): Likewise.
|
||||
(pp_c_arrow): Likewise.
|
||||
(pp_c_semicolon): Likewise.
|
||||
(pp_c_type_cast): New function.
|
||||
(pp_c_space_for_pointer_operator): Likewise.
|
||||
(pp_c_call_argument_list): Likewise.
|
||||
(pp_c_cv_qualifier): Adjust prototype.
|
||||
(pp_c_type_qualifier_list): Likewise.
|
||||
(pp_c_pointer): Likewise. Handle REFERENCE_TYPE here.
|
||||
(pp_c_type_specifier): Rename from pp_c_simple_type_specifier.
|
||||
Adjust to follow standard grammar.
|
||||
(pp_c_specifier_qualifier_list): Adjusr prototype. Handle
|
||||
REFERENCE_TYPE. Tidy.
|
||||
(pp_c_parameter_type_list): Adjust prototype. Tidy.
|
||||
(pp_c_parameter_declaration): Remove.
|
||||
(pp_c_abstract_declarator): Adjust prototype.
|
||||
(pp_c_direct_abstract_declarator): Likewise.
|
||||
(pp_c_type_id): Likewise.
|
||||
(pp_c_storage_class_specifier): Likewise.
|
||||
(pp_c_function_specifier): Likewise.
|
||||
(pp_c_declaration_specifiers): Likewise.
|
||||
(pp_c_direct_declarator): Likewise.
|
||||
(pp_c_declarator): Likewise.
|
||||
(pp_c_declarator): Likewise.
|
||||
(pp_c_declaration): Likewise.
|
||||
(pp_c_attributes): Likewise. Tidy.
|
||||
(pp_c_function_definition): Adjust prototype.
|
||||
(pp_c_char): Likewise.
|
||||
(pp_c_string_literal): Likewise.
|
||||
(pp_c_integer_constant): Likewise.
|
||||
(pp_c_character_constant): Likewise.
|
||||
(pp_c_bool_constant): Likewise.
|
||||
(pp_c_enumeration_constant): Likewise.
|
||||
(pp_c_floating_constant): Likewise.
|
||||
(pp_c_constant): Likewise.
|
||||
(pp_c_identifier): Likewise.
|
||||
(pp_c_primary_expression): Likewise. Remove TARGET_EXPR case. Tidy.
|
||||
(pp_c_initializer): Adjust prototype.
|
||||
(pp_c_init_declarator): Likewise.
|
||||
(pp_c_initializer_list): Likewise.
|
||||
(pp_c_id_expression): Likewise.
|
||||
(pp_c_postfix_expression): Likewise.
|
||||
(pp_c_expression_list): Likewise.
|
||||
(pp_c_unary_expression): Likewise.
|
||||
(pp_c_cast_expression): Likewise.
|
||||
(pp_c_multiplicative_expression): Likewise.
|
||||
(pp_c_additive_expression): Likewise.
|
||||
(pp_c_shift_expression): Likewise.
|
||||
(pp_c_relational_expression): Likewise.
|
||||
(pp_c_equality_expression): Likewise.
|
||||
(pp_c_and_expression): Likewise.
|
||||
(pp_c_exclusive_or_expression): Likewise.
|
||||
(pp_c_inclusive_or_expression): Likewise.
|
||||
(pp_c_logical_and_expression): Likewise.
|
||||
(pp_c_logical_or_expression): Likewise.
|
||||
(pp_c_conditional_expression): Likewise.
|
||||
(pp_c_assignment_expression): Likewise.
|
||||
(pp_c_expression): Likewise. Tidy.
|
||||
(pp_c_statement): Likewise. Document.
|
||||
(pp_c_pretty_printer_init): Adjust prototype. Tidy.
|
||||
|
||||
* c-lang.c (c_initialize_diagnostics): Update.
|
||||
* c-common.h (strip_pointer_operator): Declare.
|
||||
* c-common.c (strip_pointer_operator): Define.
|
||||
|
||||
2003-08-25 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/8795
|
||||
|
@ -3547,6 +3547,15 @@ strip_array_types (tree type)
|
||||
return type;
|
||||
}
|
||||
|
||||
/* Recursively remove any '*' or '&' operator from TYPE. */
|
||||
tree
|
||||
strip_pointer_operator (tree t)
|
||||
{
|
||||
while (POINTER_TYPE_P (t))
|
||||
t = TREE_TYPE (t);
|
||||
return t;
|
||||
}
|
||||
|
||||
static tree expand_unordered_cmp (tree, tree, enum tree_code, enum tree_code);
|
||||
|
||||
/* Expand a call to an unordered comparison function such as
|
||||
|
@ -951,6 +951,7 @@ extern HOST_WIDE_INT c_common_get_alias_set (tree);
|
||||
extern bool c_promoting_integer_type_p (tree);
|
||||
extern int self_promoting_args_p (tree);
|
||||
extern tree strip_array_types (tree);
|
||||
extern tree strip_pointer_operator (tree);
|
||||
|
||||
/* This function resets the parsers' state in preparation for parsing
|
||||
a new file. */
|
||||
|
@ -230,7 +230,7 @@ static void
|
||||
c_initialize_diagnostics (diagnostic_context *context)
|
||||
{
|
||||
pretty_printer *base = context->printer;
|
||||
c_pretty_printer pp = xmalloc (sizeof *pp);
|
||||
c_pretty_printer *pp = xmalloc (sizeof (c_pretty_printer));
|
||||
memcpy (pp_base (pp), base, sizeof (pretty_printer));
|
||||
pp_c_pretty_printer_init (pp);
|
||||
context->printer = (pretty_printer *) pp;
|
||||
|
1360
gcc/c-pretty-print.c
1360
gcc/c-pretty-print.c
File diff suppressed because it is too large
Load Diff
@ -36,14 +36,25 @@ typedef enum
|
||||
|
||||
/* The data type used to bundle information necessary for pretty-printing
|
||||
a C or C++ entity. */
|
||||
typedef struct c_pretty_print_info *c_pretty_printer;
|
||||
typedef struct c_pretty_print_info c_pretty_printer;
|
||||
|
||||
/* The type of a C pretty-printer 'member' function. */
|
||||
typedef void (*c_pretty_print_fn) (c_pretty_printer, tree);
|
||||
typedef void (*c_pretty_print_fn) (c_pretty_printer *, tree);
|
||||
|
||||
/* The datatype that contains information necessary for pretty-printing
|
||||
a tree that represents a C construct. Any pretty-printer for a
|
||||
language using C/c++ syntax can derive from this datatype and reuse
|
||||
facilities provided here. It can do so by having a subobject of type
|
||||
c_pretty_printer and override the macro pp_c_base to return a pointer
|
||||
to that subobject. Such a pretty-printer has the responsability to
|
||||
initialize the pp_base() part, then call pp_c_pretty_printer_init
|
||||
to set up the components that are specific to the C pretty-printer.
|
||||
A derived pretty-printer can override any function listed in the
|
||||
vtable below. See cp/cxx-pretty-print.h and cp/cxx-pretty-print.c
|
||||
for an example of derivation. */
|
||||
struct c_pretty_print_info
|
||||
{
|
||||
struct pretty_print_info base;
|
||||
pretty_printer base;
|
||||
/* Points to the first element of an array of offset-list.
|
||||
Not used yet. */
|
||||
int *offset_list;
|
||||
@ -56,12 +67,16 @@ struct c_pretty_print_info
|
||||
c_pretty_print_fn declaration_specifiers;
|
||||
c_pretty_print_fn declarator;
|
||||
c_pretty_print_fn abstract_declarator;
|
||||
c_pretty_print_fn type_specifier;
|
||||
c_pretty_print_fn direct_abstract_declarator;
|
||||
c_pretty_print_fn type_specifier_seq;
|
||||
c_pretty_print_fn direct_declarator;
|
||||
c_pretty_print_fn parameter_declaration;
|
||||
c_pretty_print_fn ptr_operator;
|
||||
c_pretty_print_fn parameter_list;
|
||||
c_pretty_print_fn type_id;
|
||||
c_pretty_print_fn simple_type_specifier;
|
||||
c_pretty_print_fn function_specifier;
|
||||
c_pretty_print_fn storage_class_specifier;
|
||||
c_pretty_print_fn initializer;
|
||||
|
||||
c_pretty_print_fn statement;
|
||||
|
||||
@ -69,12 +84,14 @@ struct c_pretty_print_info
|
||||
c_pretty_print_fn primary_expression;
|
||||
c_pretty_print_fn postfix_expression;
|
||||
c_pretty_print_fn unary_expression;
|
||||
c_pretty_print_fn initializer;
|
||||
c_pretty_print_fn multiplicative_expression;
|
||||
c_pretty_print_fn conditional_expression;
|
||||
c_pretty_print_fn assignment_expression;
|
||||
c_pretty_print_fn expression;
|
||||
};
|
||||
|
||||
/* Override the pp_base macro. Derived pretty-printers should not
|
||||
touch this macro. Instead they should override pp_c_base instead. */
|
||||
#undef pp_base
|
||||
#define pp_base(PP) (&pp_c_base (PP)->base)
|
||||
|
||||
@ -88,16 +105,22 @@ struct c_pretty_print_info
|
||||
pp_c_base (PPI)->declaration_specifiers (pp_c_base (PPI), D)
|
||||
#define pp_abstract_declarator(PP, D) \
|
||||
pp_c_base (PP)->abstract_declarator (pp_c_base (PP), D)
|
||||
#define pp_type_specifier(PPI, D) \
|
||||
pp_c_base (PPI)->type_specifier (pp_c_base (PPI), D)
|
||||
#define pp_type_specifier_seq(PPI, D) \
|
||||
pp_c_base (PPI)->type_specifie_seqr (pp_c_base (PPI), D)
|
||||
#define pp_declarator(PPI, D) \
|
||||
pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
|
||||
#define pp_direct_declarator(PPI, D) \
|
||||
pp_c_base (PPI)->direct_declarator (pp_c_base (PPI), D)
|
||||
#define pp_parameter_declaration(PPI, T) \
|
||||
pp_c_base (PPI)->parameter_declaration (pp_c_base (PPI), T)
|
||||
#define pp_direct_abstract_declarator(PP, D) \
|
||||
pp_c_base (PP)->direct_abstract_declarator (pp_c_base (PP), D)
|
||||
#define pp_ptr_operator(PP, D) \
|
||||
pp_c_base (PP)->ptr_operator (pp_c_base (PP), D)
|
||||
#define pp_parameter_list(PPI, T) \
|
||||
pp_c_base (PPI)->parameter_list (pp_c_base (PPI), T)
|
||||
#define pp_type_id(PPI, D) \
|
||||
pp_c_base (PPI)->type_id (pp_c_base (PPI), D)
|
||||
#define pp_simple_type_specifier(PP, T) \
|
||||
pp_c_base (PP)->simple_type_specifier (pp_c_base (PP), T)
|
||||
#define pp_function_specifier(PP, D) \
|
||||
pp_c_base (PP)->function_specifier (pp_c_base (PP), D)
|
||||
#define pp_storage_class_specifier(PP, D) \
|
||||
@ -122,37 +145,54 @@ struct c_pretty_print_info
|
||||
pp_c_base (PPI)->conditional_expression (pp_c_base (PPI), E)
|
||||
#define pp_assignment_expression(PPI, E) \
|
||||
pp_c_base (PPI)->assignment_expression (pp_c_base (PPI), E)
|
||||
#define pp_expression(PP, E) \
|
||||
pp_c_base (PP)->expression (pp_c_base (PP), E)
|
||||
|
||||
|
||||
/* Returns the c_pretty_printer base object of PRETTY-PRINTER. This
|
||||
macro must be overridden by any subclass of c_pretty_print_info. */
|
||||
#define pp_c_base(PP) (PP)
|
||||
|
||||
extern void pp_c_pretty_printer_init (c_pretty_printer);
|
||||
extern void pp_c_pretty_printer_init (c_pretty_printer *);
|
||||
void pp_c_whitespace (c_pretty_printer *);
|
||||
void pp_c_left_paren (c_pretty_printer *);
|
||||
void pp_c_right_paren (c_pretty_printer *);
|
||||
void pp_c_dot (c_pretty_printer *);
|
||||
void pp_c_ampersand (c_pretty_printer *);
|
||||
void pp_c_arrow (c_pretty_printer *);
|
||||
void pp_c_semicolon (c_pretty_printer *);
|
||||
void pp_c_space_for_pointer_operator (c_pretty_printer *, tree);
|
||||
|
||||
/* Declarations. */
|
||||
void pp_c_function_definition (c_pretty_printer, tree);
|
||||
void pp_c_attributes (c_pretty_printer, tree);
|
||||
void pp_c_type_qualifier_list (c_pretty_printer, tree);
|
||||
void pp_c_parameter_declaration_clause (c_pretty_printer, tree);
|
||||
void pp_c_declaration (c_pretty_printer, tree);
|
||||
void pp_c_declarator (c_pretty_printer, tree);
|
||||
void pp_c_direct_declarator (c_pretty_printer, tree);
|
||||
void pp_c_specifier_qualifier_list (c_pretty_printer, tree);
|
||||
void pp_c_type_id (c_pretty_printer, tree);
|
||||
void pp_c_function_definition (c_pretty_printer *, tree);
|
||||
void pp_c_attributes (c_pretty_printer *, tree);
|
||||
void pp_c_type_qualifier_list (c_pretty_printer *, tree);
|
||||
void pp_c_parameter_type_list (c_pretty_printer *, tree);
|
||||
void pp_c_declaration (c_pretty_printer *, tree);
|
||||
void pp_c_declaration_specifiers (c_pretty_printer *, tree);
|
||||
void pp_c_declarator (c_pretty_printer *, tree);
|
||||
void pp_c_direct_declarator (c_pretty_printer *, tree);
|
||||
void pp_c_specifier_qualifier_list (c_pretty_printer *, tree);
|
||||
void pp_c_function_specifier (c_pretty_printer *, tree);
|
||||
void pp_c_type_id (c_pretty_printer *, tree);
|
||||
void pp_c_direct_abstract_declarator (c_pretty_printer *, tree);
|
||||
void pp_c_type_specifier (c_pretty_printer *, tree);
|
||||
void pp_c_storage_class_specifier (c_pretty_printer *, tree);
|
||||
/* Statements. */
|
||||
void pp_c_statement (c_pretty_printer, tree);
|
||||
void pp_c_statement (c_pretty_printer *, tree);
|
||||
/* Expressions. */
|
||||
void pp_c_expression (c_pretty_printer, tree);
|
||||
void pp_c_logical_or_expression (c_pretty_printer, tree);
|
||||
void pp_c_expression_list (c_pretty_printer, tree);
|
||||
void pp_c_unary_expression (c_pretty_printer, tree);
|
||||
void pp_c_cast_expression (c_pretty_printer, tree);
|
||||
void pp_c_postfix_expression (c_pretty_printer, tree);
|
||||
void pp_c_initializer (c_pretty_printer, tree);
|
||||
void pp_c_constant (c_pretty_printer, tree);
|
||||
void pp_c_id_expression (c_pretty_printer, tree);
|
||||
void pp_c_identifier (c_pretty_printer, const char *);
|
||||
void pp_c_string_literal (c_pretty_printer, tree);
|
||||
void pp_c_expression (c_pretty_printer *, tree);
|
||||
void pp_c_logical_or_expression (c_pretty_printer *, tree);
|
||||
void pp_c_expression_list (c_pretty_printer *, tree);
|
||||
void pp_c_call_argument_list (c_pretty_printer *, tree);
|
||||
void pp_c_unary_expression (c_pretty_printer *, tree);
|
||||
void pp_c_cast_expression (c_pretty_printer *, tree);
|
||||
void pp_c_postfix_expression (c_pretty_printer *, tree);
|
||||
void pp_c_primary_expression (c_pretty_printer *, tree);
|
||||
void pp_c_init_declarator (c_pretty_printer *, tree);
|
||||
void pp_c_constant (c_pretty_printer *, tree);
|
||||
void pp_c_id_expression (c_pretty_printer *, tree);
|
||||
void pp_c_identifier (c_pretty_printer *, const char *);
|
||||
void pp_c_string_literal (c_pretty_printer *, tree);
|
||||
|
||||
#endif /* GCC_C_PRETTY_PRINTER */
|
||||
|
@ -1,3 +1,66 @@
|
||||
2003-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
|
||||
* cxx-pretty-print.h (pp_cxx_flag_default_argument): New flag.
|
||||
(cxx_pretty_printer): Adjust base type.
|
||||
(pp_cxx_function_specifier): Declare.
|
||||
* cxx-pretty-print.c (pp_cxx_whitespace): New macro.
|
||||
(pp_cxx_left_paren): Likewise.
|
||||
(pp_cxx_right_paren): Likewise.
|
||||
(pp_cxx_dot): Likewise.
|
||||
(pp_cxx_arrow): Likewise.
|
||||
(pp_cxx_semicolon): Likewise.
|
||||
(pp_cxx_identifier): Likewise.
|
||||
(pp_cxx_cv_qualifier_seq): Likewise.
|
||||
(pp_cxx_storage_class_specifier): Likewise.
|
||||
(pp_cxx_expression_list): Likewise.
|
||||
(pp_cxx_space_for_pointer_operator): Likewise.
|
||||
(pp_cxx_init_declarator): Likewise.
|
||||
(pp_cxx_call_argument_list): Likewise.
|
||||
(pp_cxx_nonconsecutive_character): Tidy.
|
||||
(pp_cxx_conversion_function_id): New function.
|
||||
(pp_cxx_template_id): Likewise.
|
||||
(pp_cxx_class_name): Likewise.
|
||||
(pp_cxx_template_keyword_if_needed): Likewise.
|
||||
(pp_cxx_nested_name_specifier): Likewise.
|
||||
(pp_cxx_unqualified_id): Tidy
|
||||
(pp_cxx_qualified_id): Handle more nodes.
|
||||
(pp_cxx_primary_expression): Tidy.
|
||||
(pp_cxx_postfix_expression): Likewise.
|
||||
(pp_cxx_new_expression): Tidy.
|
||||
(pp_cxx_delete_expression): Likewise.
|
||||
(pp_cxx_cast_expression): New function.
|
||||
(pp_cxx_pm_expression): Tidy.
|
||||
(pp_cxx_conditional_expression): Likewise.
|
||||
(pp_cxx_assignment_operator): New function.
|
||||
(pp_cxx_assignment_expression): Tidy.
|
||||
(pp_cxx_expression): New function.
|
||||
(pp_cxx_function_specifier): Likewise.
|
||||
(pp_cxx_decl_specifier_seq): Likewise.
|
||||
(pp_cxx_simple_type_specifier): Tidy.
|
||||
(pp_cxx_type_specifier_seq): Likewise.
|
||||
(pp_cxx_ptr_operator): New function.
|
||||
(pp_cxx_implicit_parameter_type): Likewise.
|
||||
(pp_cxx_parameter_declaration): Tidy.
|
||||
(pp_cxx_parameter_declaration_clause): New function.
|
||||
(pp_cxx_exception_specification): Likewise.
|
||||
(pp_cxx_direct_declarator): Tidy.
|
||||
(pp_cxx_declarator): Likewise.
|
||||
(pp_cxx_ctor_initializer): New function.
|
||||
(pp_cxx_function_definition): Likewise.
|
||||
(pp_cxx_abstract_declarator): Tidy.
|
||||
(pp_cxx_direct_abstract_declarator): Likewise.
|
||||
(pp_cxx_type_id): Likewise.
|
||||
(pp_cxx_exception_declaration): New function.
|
||||
(pp_cxx_statement): Likewise.
|
||||
(pp_cxx_simple_declaration): Likewise.
|
||||
(pp_cxx_template_parameter_list): Likewise.
|
||||
(pp_cxx_template_parameter): Likewise.
|
||||
(pp_cxx_template_declaration): Likewise.
|
||||
(pp_cxx_explicit_specialization): Likewise.
|
||||
(pp_cxx_explicit_instantiation): Likewise.
|
||||
(pp_cxx_declaration): Tidy.
|
||||
(pp_cxx_pretty_printer_init): Initialize more fields.
|
||||
|
||||
2003-08-25 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/8795
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -31,13 +31,14 @@ typedef enum
|
||||
{
|
||||
/* Ask for an qualified-id. */
|
||||
pp_cxx_flag_qualified_id = 1 << pp_c_flag_last_bit,
|
||||
pp_cxx_flag_global_scope = 1 << (pp_c_flag_last_bit + 1)
|
||||
pp_cxx_flag_global_scope = 1 << (pp_c_flag_last_bit + 1),
|
||||
pp_cxx_flag_default_argument = 1 << (pp_c_flag_last_bit + 2)
|
||||
|
||||
} cxx_pretty_printer_flags;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
struct c_pretty_print_info c_base;
|
||||
c_pretty_printer c_base;
|
||||
/* This is the enclosing scope of the entity being pretty-printed. */
|
||||
tree enclosing_scope;
|
||||
} cxx_pretty_printer;
|
||||
@ -45,6 +46,7 @@ typedef struct
|
||||
void pp_cxx_pretty_printer_init (cxx_pretty_printer *);
|
||||
|
||||
void pp_cxx_declaration (cxx_pretty_printer *, tree);
|
||||
void pp_cxx_function_definition (cxx_pretty_printer *, tree);
|
||||
void pp_cxx_statement (cxx_pretty_printer *, tree);
|
||||
|
||||
|
||||
|
@ -203,6 +203,8 @@ struct pretty_print_info
|
||||
pp_base_indent (pp_base (PP)); \
|
||||
pp_needs_newline (PP) = false; \
|
||||
} while (0)
|
||||
#define pp_maybe_newline_and_indent(PP, N) \
|
||||
if (pp_needs_newline (PP)) pp_newline_and_indent (PP, N)
|
||||
#define pp_separate_with(PP, C) \
|
||||
do { \
|
||||
pp_character (PP, C); \
|
||||
|
Loading…
Reference in New Issue
Block a user