gcc/ * tree-core.h (tree_code_name): Remove. * tree.h (get_tree_code_name): New prototype. * tree.c (tree_code_name): Make static. (get_tree_code_name): New function. (dump_tree_statistics, tree_check_failed, tree_not_check_failed, tree_class_check_failed, tree_range_check_failed, tree_not_class_check_failed, omp_clause_check_failed, tree_contains_struct_check_failed, tree_operand_check_failed): Use new wrapper get_tree_code_name instead of calling tree_code_name directly. * tree-vrp.c (dump_asserts_for): Likewise. * tree-dump.c (dequeue_and_dump): Likewise. * tree-pretty-print.c (do_niy, dump_generic_node): Likewise. * tree-pretty-print.h (pp_unsupported_tree): Likewise. * lto-streamer-out.c (lto_write_tree, DFS_write_tree): Likewise. * tree-ssa-dom.c (print_expr_hash_elt): Likewise. * gimple-pretty-print.c (dump_unary_rhs, dump_binary_rhs, dump_ternary_rhs, dump_gimple_assign, dump_gimple_cond, dump_gimple_omp_for): Likewise. * tree-vect-data-refs.c (vect_create_data_ref_ptr): Likewise. * tree-ssa-pre.c (print_pre_expr): Likewise. * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Likewise. * print-tree.c (print_node_brief, print_node): Likewise. * gimple.c (gimple_check_failed): Likewise. * lto-streamer.c (lto_tag_name, print_lto_report): Likewise. * config/frv/frv.c (frv_init_cumulative_args): Likewise. * config/mep/mep.c (mep_validate_vliw): Likewise. * config/iq2000/iq2000.c (init_cumulative_args): Likewise. * config/rs6000/rs6000.c (init_cumulative_args): Likewise. gcc/cp/ * error.c (code_to_string): Use new wrapper get_tree_code_name. * cxx-pretty-print.c (pp_cxx_assignment_operator): Likewise. * pt.c (tsubst): Likewise. * semantics.c (cxx_eval_constant_expression, potential_constant_expression_1): Likewise. * mangle.c (MANGLE_TRACE_TREE, dump_substitution_candidates, add_substitution, find_substitution): Likewise. From-SVN: r203695
55 lines
2.1 KiB
C
55 lines
2.1 KiB
C
/* Various declarations for language-independent pretty-print
|
|
subroutines that are only for use in the compilers proper and not
|
|
the driver or other programs.
|
|
Copyright (C) 2002-2013 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 3, or (at your option) any later
|
|
version.
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef GCC_TREE_PRETTY_PRINT_H
|
|
#define GCC_TREE_PRETTY_PRINT_H
|
|
|
|
#include "pretty-print.h"
|
|
#include "double-int.h"
|
|
|
|
#define pp_unsupported_tree(PP, T) \
|
|
pp_verbatim (PP, "#%qs not supported by %s#", \
|
|
get_tree_code_name (TREE_CODE (T)), __FUNCTION__)
|
|
|
|
#define pp_ti_abstract_origin(TI) ((tree *) (TI)->x_data)
|
|
|
|
|
|
extern void debug_generic_expr (tree);
|
|
extern void debug_generic_stmt (tree);
|
|
extern void debug_tree_chain (tree);
|
|
extern void print_generic_decl (FILE *, tree, int);
|
|
extern void print_generic_stmt (FILE *, tree, int);
|
|
extern void print_generic_stmt_indented (FILE *, tree, int, int);
|
|
extern void print_generic_expr (FILE *, tree, int);
|
|
extern void dump_omp_clauses (pretty_printer *, tree, int, int);
|
|
extern int dump_generic_node (pretty_printer *, tree, int, int, bool);
|
|
extern void print_declaration (pretty_printer *, tree, int, int);
|
|
extern int op_code_prio (enum tree_code);
|
|
extern int op_prio (const_tree);
|
|
extern const char *op_symbol_code (enum tree_code);
|
|
extern void print_call_name (pretty_printer *, tree, int);
|
|
extern void percent_K_format (text_info *);
|
|
extern void pp_tree_identifier (pretty_printer *, tree);
|
|
extern void dump_function_header (FILE *, tree, int);
|
|
extern void pp_double_int (pretty_printer *pp, double_int d, bool uns);
|
|
|
|
#endif /* ! GCC_TREE_PRETTY_PRINT_H */
|