annotate gcc/tree-into-ssa.h @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Header file for normal form into SSA.
kono
parents:
diff changeset
2 Copyright (C) 2013-2017 Free Software Foundation, Inc.
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 This file is part of GCC.
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
7 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
8 Software Foundation; either version 3, or (at your option) any later
kono
parents:
diff changeset
9 version.
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
kono
parents:
diff changeset
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
14 for more details.
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 #ifndef GCC_TREE_INTO_SSA_H
kono
parents:
diff changeset
21 #define GCC_TREE_INTO_SSA_H
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 extern tree get_current_def (tree);
kono
parents:
diff changeset
24 extern void set_current_def (tree, tree);
kono
parents:
diff changeset
25 void delete_update_ssa (void);
kono
parents:
diff changeset
26 tree create_new_def_for (tree, gimple *, def_operand_p);
kono
parents:
diff changeset
27 void mark_virtual_operands_for_renaming (struct function *);
kono
parents:
diff changeset
28 void mark_virtual_operand_for_renaming (tree);
kono
parents:
diff changeset
29 void mark_virtual_phi_result_for_renaming (gphi *);
kono
parents:
diff changeset
30 bool need_ssa_update_p (struct function *);
kono
parents:
diff changeset
31 bool name_registered_for_update_p (tree);
kono
parents:
diff changeset
32 void release_ssa_name_after_update_ssa (tree);
kono
parents:
diff changeset
33 void update_ssa (unsigned);
kono
parents:
diff changeset
34
kono
parents:
diff changeset
35 /* Prototypes for debugging functions. */
kono
parents:
diff changeset
36 extern void debug_decl_set (bitmap set);
kono
parents:
diff changeset
37 extern void dump_defs_stack (FILE *, int);
kono
parents:
diff changeset
38 extern void debug_defs_stack (int);
kono
parents:
diff changeset
39 extern void dump_currdefs (FILE *);
kono
parents:
diff changeset
40 extern void debug_currdefs (void);
kono
parents:
diff changeset
41 extern void dump_tree_ssa (FILE *);
kono
parents:
diff changeset
42 extern void debug_tree_ssa (void);
kono
parents:
diff changeset
43 extern void dump_tree_ssa_stats (FILE *);
kono
parents:
diff changeset
44 extern void debug_tree_ssa_stats (void);
kono
parents:
diff changeset
45 extern void dump_var_infos (FILE *);
kono
parents:
diff changeset
46 extern void debug_var_infos (void);
kono
parents:
diff changeset
47 extern void dump_names_replaced_by (FILE *, tree);
kono
parents:
diff changeset
48 extern void debug_names_replaced_by (tree);
kono
parents:
diff changeset
49 extern void dump_update_ssa (FILE *);
kono
parents:
diff changeset
50 extern void debug_update_ssa (void);
kono
parents:
diff changeset
51 extern bitmap names_to_release;
kono
parents:
diff changeset
52
kono
parents:
diff changeset
53 #endif /* GCC_TREE_INTO_SSA_H */