b787e7a2c2
gcc/c-family/ * cilk.c: Use hash_map instead of pointer_map. gcc/c/ * c-typeck.c: Use hash_map instead of pointer_map. gcc/cp/ * optimize.c, semantics.c: Use hash_map instead of pointer_map. gcc/ * hash-map.h (default_hashmap_traits::mark_key_deleted): Fix cast. (hash_map::remove): New method. (hash_map::traverse): New method. * cgraph.h, except.c, except.h, gimple-ssa-strength-reduction.c, ipa-utils.c, lto-cgraph.c, lto-streamer.h, omp-low.c, predict.c, tree-cfg.c, tree-cfgcleanup.c, tree-eh.c, tree-eh.h, tree-inline.c, tree-inline.h, tree-nested.c, tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-structalias.c, tree-ssa.c, tree-ssa.h, var-tracking.c: Use hash_map instead of pointer_map. From-SVN: r213517
57 lines
2.2 KiB
C
57 lines
2.2 KiB
C
/* Header file for exception handling.
|
|
Copyright (C) 2013-2014 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_EH_H
|
|
#define GCC_TREE_EH_H
|
|
|
|
#include "hash-map.h"
|
|
|
|
typedef struct eh_region_d *eh_region;
|
|
|
|
extern void using_eh_for_cleanups (void);
|
|
extern void add_stmt_to_eh_lp (gimple, int);
|
|
extern bool remove_stmt_from_eh_lp_fn (struct function *, gimple);
|
|
extern bool remove_stmt_from_eh_lp (gimple);
|
|
extern int lookup_stmt_eh_lp_fn (struct function *, gimple);
|
|
extern int lookup_stmt_eh_lp (gimple);
|
|
extern bool make_eh_dispatch_edges (gimple);
|
|
extern void make_eh_edges (gimple);
|
|
extern edge redirect_eh_edge (edge, basic_block);
|
|
extern void redirect_eh_dispatch_edge (gimple, edge, basic_block);
|
|
extern bool operation_could_trap_helper_p (enum tree_code, bool, bool, bool,
|
|
bool, tree, bool *);
|
|
extern bool operation_could_trap_p (enum tree_code, bool, bool, tree);
|
|
extern bool tree_could_trap_p (tree);
|
|
extern bool stmt_could_throw_p (gimple);
|
|
extern bool tree_could_throw_p (tree);
|
|
extern bool stmt_can_throw_external (gimple);
|
|
extern bool stmt_can_throw_internal (gimple);
|
|
extern bool maybe_clean_eh_stmt_fn (struct function *, gimple);
|
|
extern bool maybe_clean_eh_stmt (gimple);
|
|
extern bool maybe_clean_or_replace_eh_stmt (gimple, gimple);
|
|
extern bool maybe_duplicate_eh_stmt_fn (struct function *, gimple,
|
|
struct function *, gimple,
|
|
hash_map<void *, void *> *, int);
|
|
extern bool maybe_duplicate_eh_stmt (gimple, gimple);
|
|
extern void maybe_remove_unreachable_handlers (void);
|
|
extern bool verify_eh_edges (gimple);
|
|
extern bool verify_eh_dispatch_edge (gimple);
|
|
|
|
#endif /* GCC_TREE_EH_H */
|