Mercurial > hg > CbC > CbC_gcc
annotate gcc/hooks.h @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children | 1830386684a0 |
rev | line source |
---|---|
0 | 1 /* General-purpose hooks. |
131 | 2 Copyright (C) 2002-2018 Free Software Foundation, Inc. |
0 | 3 |
4 This program is free software; you can redistribute it and/or modify it | |
5 under the terms of the GNU General Public License as published by the | |
6 Free Software Foundation; either version 3, or (at your option) any | |
7 later version. | |
8 | |
9 This program is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program; see the file COPYING3. If not see | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
16 <http://www.gnu.org/licenses/>. |
0 | 17 |
18 In other words, you are welcome to use, share and improve this program. | |
19 You are forbidden to forbid anyone else to use, share and improve | |
20 what you give them. Help stamp out software-hoarding! */ | |
21 | |
22 #ifndef GCC_HOOKS_H | |
23 #define GCC_HOOKS_H | |
24 | |
25 | |
26 extern bool hook_bool_void_false (void); | |
27 extern bool hook_bool_void_true (void); | |
28 extern bool hook_bool_bool_false (bool); | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
29 extern bool hook_bool_bool_gcc_optionsp_false (bool, struct gcc_options *); |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
30 extern bool hook_bool_const_int_const_int_true (const int, const int); |
111 | 31 extern bool hook_bool_mode_false (machine_mode); |
32 extern bool hook_bool_mode_true (machine_mode); | |
33 extern bool hook_bool_mode_mode_true (machine_mode, machine_mode); | |
34 extern bool hook_bool_mode_const_rtx_false (machine_mode, const_rtx); | |
35 extern bool hook_bool_mode_const_rtx_true (machine_mode, const_rtx); | |
36 extern bool hook_bool_mode_rtx_false (machine_mode, rtx); | |
37 extern bool hook_bool_mode_rtx_true (machine_mode, rtx); | |
38 extern bool hook_bool_const_rtx_insn_const_rtx_insn_true (const rtx_insn *, | |
39 const rtx_insn *); | |
40 extern bool hook_bool_mode_uhwi_false (machine_mode, | |
41 unsigned HOST_WIDE_INT); | |
131 | 42 extern bool hook_bool_puint64_puint64_true (poly_uint64, poly_uint64); |
111 | 43 extern bool hook_bool_uint_mode_false (unsigned int, machine_mode); |
44 extern bool hook_bool_uint_mode_true (unsigned int, machine_mode); | |
0 | 45 extern bool hook_bool_tree_false (tree); |
46 extern bool hook_bool_const_tree_false (const_tree); | |
47 extern bool hook_bool_tree_true (tree); | |
48 extern bool hook_bool_const_tree_true (const_tree); | |
111 | 49 extern bool hook_bool_gsiptr_false (gimple_stmt_iterator *); |
0 | 50 extern bool hook_bool_const_tree_hwi_hwi_const_tree_false (const_tree, |
51 HOST_WIDE_INT, | |
52 HOST_WIDE_INT, | |
53 const_tree); | |
54 extern bool hook_bool_const_tree_hwi_hwi_const_tree_true (const_tree, | |
55 HOST_WIDE_INT, | |
56 HOST_WIDE_INT, | |
57 const_tree); | |
111 | 58 extern bool hook_bool_rtx_insn_true (rtx_insn *); |
0 | 59 extern bool hook_bool_rtx_false (rtx); |
111 | 60 extern bool hook_bool_rtx_insn_int_false (rtx_insn *, int); |
0 | 61 extern bool hook_bool_uintp_uintp_false (unsigned int *, unsigned int *); |
111 | 62 extern bool hook_bool_reg_class_t_false (reg_class_t regclass); |
63 extern bool hook_bool_mode_mode_reg_class_t_true (machine_mode, machine_mode, | |
64 reg_class_t); | |
65 extern bool hook_bool_mode_reg_class_t_reg_class_t_false (machine_mode, | |
66 reg_class_t, | |
67 reg_class_t); | |
68 extern bool hook_bool_rtx_mode_int_int_intp_bool_false (rtx, machine_mode, | |
69 int, int, int *, bool); | |
0 | 70 extern bool hook_bool_tree_tree_false (tree, tree); |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
71 extern bool hook_bool_tree_tree_true (tree, tree); |
0 | 72 extern bool hook_bool_tree_bool_false (tree, bool); |
111 | 73 extern bool hook_bool_wint_wint_uint_bool_true (const widest_int &, |
74 const widest_int &, | |
75 unsigned int, bool); | |
0 | 76 |
77 extern void hook_void_void (void); | |
78 extern void hook_void_constcharptr (const char *); | |
111 | 79 extern void hook_void_rtx_insn_int (rtx_insn *, int); |
0 | 80 extern void hook_void_FILEptr_constcharptr (FILE *, const char *); |
111 | 81 extern void hook_void_FILEptr_constcharptr_const_tree (FILE *, const char *, |
82 const_tree); | |
83 extern bool hook_bool_FILEptr_rtx_false (FILE *, rtx); | |
84 extern void hook_void_rtx_tree (rtx, tree); | |
0 | 85 extern void hook_void_tree (tree); |
86 extern void hook_void_tree_treeptr (tree, tree *); | |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
87 extern void hook_void_int_int (int, int); |
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
88 extern void hook_void_gcc_optionsp (struct gcc_options *); |
111 | 89 extern bool hook_bool_uint_uintp_false (unsigned int, unsigned int *); |
0 | 90 |
111 | 91 extern int hook_int_uint_mode_1 (unsigned int, machine_mode); |
0 | 92 extern int hook_int_const_tree_0 (const_tree); |
93 extern int hook_int_const_tree_const_tree_1 (const_tree, const_tree); | |
94 extern int hook_int_rtx_0 (rtx); | |
111 | 95 extern int hook_int_rtx_1 (rtx); |
131 | 96 extern int hook_int_rtx_insn_0 (rtx_insn *); |
111 | 97 extern int hook_int_rtx_insn_unreachable (rtx_insn *); |
0 | 98 extern int hook_int_rtx_bool_0 (rtx, bool); |
111 | 99 extern int hook_int_rtx_mode_as_bool_0 (rtx, machine_mode, addr_space_t, |
100 bool); | |
101 | |
102 extern HOST_WIDE_INT hook_hwi_void_0 (void); | |
55
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
103 |
77e2b8dfacca
update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
104 extern tree hook_tree_const_tree_null (const_tree); |
111 | 105 extern tree hook_tree_void_null (void); |
0 | 106 |
107 extern tree hook_tree_tree_tree_null (tree, tree); | |
108 extern tree hook_tree_tree_tree_tree_null (tree, tree, tree); | |
63
b7f97abdc517
update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
55
diff
changeset
|
109 extern tree hook_tree_tree_int_treep_bool_null (tree, int, tree *, bool); |
0 | 110 |
67
f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
63
diff
changeset
|
111 extern unsigned hook_uint_void_0 (void); |
111 | 112 extern unsigned int hook_uint_mode_0 (machine_mode); |
0 | 113 |
114 extern bool default_can_output_mi_thunk_no_vcall (const_tree, HOST_WIDE_INT, | |
115 HOST_WIDE_INT, const_tree); | |
116 | |
117 extern rtx hook_rtx_rtx_identity (rtx); | |
118 extern rtx hook_rtx_rtx_null (rtx); | |
119 extern rtx hook_rtx_tree_int_null (tree, int); | |
120 | |
111 | 121 extern char *hook_charptr_void_null (void); |
122 extern const char *hook_constcharptr_void_null (void); | |
0 | 123 extern const char *hook_constcharptr_const_tree_null (const_tree); |
111 | 124 extern const char *hook_constcharptr_const_rtx_insn_null (const rtx_insn *); |
0 | 125 extern const char *hook_constcharptr_const_tree_const_tree_null (const_tree, const_tree); |
126 extern const char *hook_constcharptr_int_const_tree_null (int, const_tree); | |
127 extern const char *hook_constcharptr_int_const_tree_const_tree_null (int, const_tree, const_tree); | |
131 | 128 |
129 extern opt_machine_mode hook_optmode_mode_uhwi_none (machine_mode, | |
130 unsigned HOST_WIDE_INT); | |
0 | 131 #endif |