annotate gcc/optabs.h @ 127:4c56639505ff

fix function.c and add CbC-example Makefile
author mir3636
date Wed, 11 Apr 2018 18:46:58 +0900
parents 04ced10e8804
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Definitions for code generation pass of GNU compiler.
111
kono
parents: 67
diff changeset
2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 the Free Software Foundation; either version 3, or (at your option)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 any later version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 GNU General Public License for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 #ifndef GCC_OPTABS_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 #define GCC_OPTABS_H
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
111
kono
parents: 67
diff changeset
23 #include "optabs-query.h"
kono
parents: 67
diff changeset
24 #include "optabs-libfuncs.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25
111
kono
parents: 67
diff changeset
26 /* Generate code for a widening multiply. */
kono
parents: 67
diff changeset
27 extern rtx expand_widening_mult (machine_mode, rtx, rtx, rtx, int, optab);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28
111
kono
parents: 67
diff changeset
29 /* Describes the type of an expand_operand. Each value is associated
kono
parents: 67
diff changeset
30 with a create_*_operand function; see the comments above those
kono
parents: 67
diff changeset
31 functions for details. */
kono
parents: 67
diff changeset
32 enum expand_operand_type {
kono
parents: 67
diff changeset
33 EXPAND_FIXED,
kono
parents: 67
diff changeset
34 EXPAND_OUTPUT,
kono
parents: 67
diff changeset
35 EXPAND_INPUT,
kono
parents: 67
diff changeset
36 EXPAND_CONVERT_TO,
kono
parents: 67
diff changeset
37 EXPAND_CONVERT_FROM,
kono
parents: 67
diff changeset
38 EXPAND_ADDRESS,
kono
parents: 67
diff changeset
39 EXPAND_INTEGER
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41
111
kono
parents: 67
diff changeset
42 /* Information about an operand for instruction expansion. */
kono
parents: 67
diff changeset
43 struct expand_operand {
kono
parents: 67
diff changeset
44 /* The type of operand. */
kono
parents: 67
diff changeset
45 ENUM_BITFIELD (expand_operand_type) type : 8;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46
111
kono
parents: 67
diff changeset
47 /* True if any conversion should treat VALUE as being unsigned
kono
parents: 67
diff changeset
48 rather than signed. Only meaningful for certain types. */
kono
parents: 67
diff changeset
49 unsigned int unsigned_p : 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50
111
kono
parents: 67
diff changeset
51 /* Is the target operand. */
kono
parents: 67
diff changeset
52 unsigned int target : 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53
111
kono
parents: 67
diff changeset
54 /* Unused; available for future use. */
kono
parents: 67
diff changeset
55 unsigned int unused : 6;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56
111
kono
parents: 67
diff changeset
57 /* The mode passed to the convert_*_operand function. It has a
kono
parents: 67
diff changeset
58 type-dependent meaning. */
kono
parents: 67
diff changeset
59 ENUM_BITFIELD (machine_mode) mode : 16;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60
111
kono
parents: 67
diff changeset
61 /* The value of the operand. */
kono
parents: 67
diff changeset
62 rtx value;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64
111
kono
parents: 67
diff changeset
65 /* Initialize OP with the given fields. Initialise the other fields
kono
parents: 67
diff changeset
66 to their default values. */
kono
parents: 67
diff changeset
67
kono
parents: 67
diff changeset
68 static inline void
kono
parents: 67
diff changeset
69 create_expand_operand (struct expand_operand *op,
kono
parents: 67
diff changeset
70 enum expand_operand_type type,
kono
parents: 67
diff changeset
71 rtx value, machine_mode mode,
kono
parents: 67
diff changeset
72 bool unsigned_p)
kono
parents: 67
diff changeset
73 {
kono
parents: 67
diff changeset
74 op->type = type;
kono
parents: 67
diff changeset
75 op->unsigned_p = unsigned_p;
kono
parents: 67
diff changeset
76 op->unused = 0;
kono
parents: 67
diff changeset
77 op->mode = mode;
kono
parents: 67
diff changeset
78 op->value = value;
kono
parents: 67
diff changeset
79 }
kono
parents: 67
diff changeset
80
kono
parents: 67
diff changeset
81 /* Make OP describe an operand that must use rtx X, even if X is volatile. */
kono
parents: 67
diff changeset
82
kono
parents: 67
diff changeset
83 static inline void
kono
parents: 67
diff changeset
84 create_fixed_operand (struct expand_operand *op, rtx x)
kono
parents: 67
diff changeset
85 {
kono
parents: 67
diff changeset
86 create_expand_operand (op, EXPAND_FIXED, x, VOIDmode, false);
kono
parents: 67
diff changeset
87 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88
111
kono
parents: 67
diff changeset
89 /* Make OP describe an output operand that must have mode MODE.
kono
parents: 67
diff changeset
90 X, if nonnull, is a suggestion for where the output should be stored.
kono
parents: 67
diff changeset
91 It is OK for VALUE to be inconsistent with MODE, although it will just
kono
parents: 67
diff changeset
92 be ignored in that case. */
kono
parents: 67
diff changeset
93
kono
parents: 67
diff changeset
94 static inline void
kono
parents: 67
diff changeset
95 create_output_operand (struct expand_operand *op, rtx x,
kono
parents: 67
diff changeset
96 machine_mode mode)
kono
parents: 67
diff changeset
97 {
kono
parents: 67
diff changeset
98 create_expand_operand (op, EXPAND_OUTPUT, x, mode, false);
kono
parents: 67
diff changeset
99 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100
111
kono
parents: 67
diff changeset
101 /* Make OP describe an input operand that must have mode MODE and
kono
parents: 67
diff changeset
102 value VALUE; MODE cannot be VOIDmode. The backend may request that
kono
parents: 67
diff changeset
103 VALUE be copied into a different kind of rtx before being passed
kono
parents: 67
diff changeset
104 as an operand. */
kono
parents: 67
diff changeset
105
kono
parents: 67
diff changeset
106 static inline void
kono
parents: 67
diff changeset
107 create_input_operand (struct expand_operand *op, rtx value,
kono
parents: 67
diff changeset
108 machine_mode mode)
kono
parents: 67
diff changeset
109 {
kono
parents: 67
diff changeset
110 create_expand_operand (op, EXPAND_INPUT, value, mode, false);
kono
parents: 67
diff changeset
111 }
kono
parents: 67
diff changeset
112
kono
parents: 67
diff changeset
113 /* Like create_input_operand, except that VALUE must first be converted
kono
parents: 67
diff changeset
114 to mode MODE. UNSIGNED_P says whether VALUE is unsigned. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115
111
kono
parents: 67
diff changeset
116 static inline void
kono
parents: 67
diff changeset
117 create_convert_operand_to (struct expand_operand *op, rtx value,
kono
parents: 67
diff changeset
118 machine_mode mode, bool unsigned_p)
kono
parents: 67
diff changeset
119 {
kono
parents: 67
diff changeset
120 create_expand_operand (op, EXPAND_CONVERT_TO, value, mode, unsigned_p);
kono
parents: 67
diff changeset
121 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
122
111
kono
parents: 67
diff changeset
123 /* Make OP describe an input operand that should have the same value
kono
parents: 67
diff changeset
124 as VALUE, after any mode conversion that the backend might request.
kono
parents: 67
diff changeset
125 If VALUE is a CONST_INT, it should be treated as having mode MODE.
kono
parents: 67
diff changeset
126 UNSIGNED_P says whether VALUE is unsigned. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
127
111
kono
parents: 67
diff changeset
128 static inline void
kono
parents: 67
diff changeset
129 create_convert_operand_from (struct expand_operand *op, rtx value,
kono
parents: 67
diff changeset
130 machine_mode mode, bool unsigned_p)
kono
parents: 67
diff changeset
131 {
kono
parents: 67
diff changeset
132 create_expand_operand (op, EXPAND_CONVERT_FROM, value, mode, unsigned_p);
kono
parents: 67
diff changeset
133 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
134
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
135
111
kono
parents: 67
diff changeset
136 /* Make OP describe an input Pmode address operand. VALUE is the value
kono
parents: 67
diff changeset
137 of the address, but it may need to be converted to Pmode first. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
138
111
kono
parents: 67
diff changeset
139 static inline void
kono
parents: 67
diff changeset
140 create_address_operand (struct expand_operand *op, rtx value)
kono
parents: 67
diff changeset
141 {
kono
parents: 67
diff changeset
142 create_expand_operand (op, EXPAND_ADDRESS, value, Pmode, false);
kono
parents: 67
diff changeset
143 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144
111
kono
parents: 67
diff changeset
145 /* Make OP describe an input operand that has value INTVAL and that has
kono
parents: 67
diff changeset
146 no inherent mode. This function should only be used for operands that
kono
parents: 67
diff changeset
147 are always expand-time constants. The backend may request that INTVAL
kono
parents: 67
diff changeset
148 be copied into a different kind of rtx, but it must specify the mode
kono
parents: 67
diff changeset
149 of that rtx if so. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
150
111
kono
parents: 67
diff changeset
151 static inline void
kono
parents: 67
diff changeset
152 create_integer_operand (struct expand_operand *op, HOST_WIDE_INT intval)
kono
parents: 67
diff changeset
153 {
kono
parents: 67
diff changeset
154 create_expand_operand (op, EXPAND_INTEGER, GEN_INT (intval), VOIDmode, false);
kono
parents: 67
diff changeset
155 }
kono
parents: 67
diff changeset
156
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
157
111
kono
parents: 67
diff changeset
158 /* Passed to expand_simple_binop and expand_binop to say which options
kono
parents: 67
diff changeset
159 to try to use if the requested operation can't be open-coded on the
kono
parents: 67
diff changeset
160 requisite mode. Either OPTAB_LIB or OPTAB_LIB_WIDEN says try using
kono
parents: 67
diff changeset
161 a library call. Either OPTAB_WIDEN or OPTAB_LIB_WIDEN says try
kono
parents: 67
diff changeset
162 using a wider mode. OPTAB_MUST_WIDEN says try widening and don't
kono
parents: 67
diff changeset
163 try anything else. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164
111
kono
parents: 67
diff changeset
165 enum optab_methods
kono
parents: 67
diff changeset
166 {
kono
parents: 67
diff changeset
167 OPTAB_DIRECT,
kono
parents: 67
diff changeset
168 OPTAB_LIB,
kono
parents: 67
diff changeset
169 OPTAB_WIDEN,
kono
parents: 67
diff changeset
170 OPTAB_LIB_WIDEN,
kono
parents: 67
diff changeset
171 OPTAB_MUST_WIDEN
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
172 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
173
111
kono
parents: 67
diff changeset
174 extern rtx expand_widen_pattern_expr (struct separate_ops *, rtx , rtx , rtx,
kono
parents: 67
diff changeset
175 rtx, int);
kono
parents: 67
diff changeset
176 extern rtx expand_ternary_op (machine_mode mode, optab ternary_optab,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
177 rtx op0, rtx op1, rtx op2, rtx target,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
178 int unsignedp);
111
kono
parents: 67
diff changeset
179 extern rtx simplify_expand_binop (machine_mode mode, optab binoptab,
kono
parents: 67
diff changeset
180 rtx op0, rtx op1, rtx target, int unsignedp,
kono
parents: 67
diff changeset
181 enum optab_methods methods);
kono
parents: 67
diff changeset
182 extern bool force_expand_binop (machine_mode, optab, rtx, rtx, rtx, int,
kono
parents: 67
diff changeset
183 enum optab_methods);
kono
parents: 67
diff changeset
184
kono
parents: 67
diff changeset
185 /* Generate code for a simple binary or unary operation. "Simple" in
kono
parents: 67
diff changeset
186 this case means "can be unambiguously described by a (mode, code)
kono
parents: 67
diff changeset
187 pair and mapped to a single optab." */
kono
parents: 67
diff changeset
188 extern rtx expand_simple_binop (machine_mode, enum rtx_code, rtx,
kono
parents: 67
diff changeset
189 rtx, rtx, int, enum optab_methods);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
190
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
191 /* Expand a binary operation given optab and rtx operands. */
111
kono
parents: 67
diff changeset
192 extern rtx expand_binop (machine_mode, optab, rtx, rtx, rtx, int,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
193 enum optab_methods);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
194
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
195 /* Expand a binary operation with both signed and unsigned forms. */
111
kono
parents: 67
diff changeset
196 extern rtx sign_expand_binop (machine_mode, optab, optab, rtx, rtx,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
197 rtx, int, enum optab_methods);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
198
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
199 /* Generate code to perform an operation on one operand with two results. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 extern int expand_twoval_unop (optab, rtx, rtx, rtx, int);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
201
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 /* Generate code to perform an operation on two operands with two results. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 extern int expand_twoval_binop (optab, rtx, rtx, rtx, rtx, int);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 /* Generate code to perform an operation on two operands with two
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 results, using a library function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
207 extern bool expand_twoval_binop_libfunc (optab, rtx, rtx, rtx, rtx,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 enum rtx_code);
111
kono
parents: 67
diff changeset
209 extern rtx expand_simple_unop (machine_mode, enum rtx_code, rtx, rtx,
kono
parents: 67
diff changeset
210 int);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
211
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 /* Expand a unary arithmetic operation given optab rtx operand. */
111
kono
parents: 67
diff changeset
213 extern rtx expand_unop (machine_mode, optab, rtx, rtx, int);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
214
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
215 /* Expand the absolute value operation. */
111
kono
parents: 67
diff changeset
216 extern rtx expand_abs_nojump (machine_mode, rtx, rtx, int);
kono
parents: 67
diff changeset
217 extern rtx expand_abs (machine_mode, rtx, rtx, int, int);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
218
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
219 /* Expand the one's complement absolute value operation. */
111
kono
parents: 67
diff changeset
220 extern rtx expand_one_cmpl_abs_nojump (machine_mode, rtx, rtx);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
221
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 /* Expand the copysign operation. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
223 extern rtx expand_copysign (rtx, rtx, rtx);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 /* Generate an instruction with a given INSN_CODE with an output and
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 an input. */
111
kono
parents: 67
diff changeset
226 extern bool maybe_emit_unop_insn (enum insn_code, rtx, rtx, enum rtx_code);
kono
parents: 67
diff changeset
227 extern void emit_unop_insn (enum insn_code, rtx, rtx, enum rtx_code);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228
111
kono
parents: 67
diff changeset
229 /* Emit code to make a call to a constant function or a library call. */
kono
parents: 67
diff changeset
230 extern void emit_libcall_block (rtx_insn *, rtx, rtx, rtx);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
231
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 /* The various uses that a comparison can have; used by can_compare_p:
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 jumps, conditional moves, store flag operations. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 enum can_compare_purpose
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
235 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 ccp_jump,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
237 ccp_cmov,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
238 ccp_store_flag
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
239 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
240
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
241 /* Nonzero if a compare of mode MODE can be done straightforwardly
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
242 (without splitting it into pieces). */
111
kono
parents: 67
diff changeset
243 extern int can_compare_p (enum rtx_code, machine_mode,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
244 enum can_compare_purpose);
111
kono
parents: 67
diff changeset
245 extern rtx prepare_operand (enum insn_code, rtx, int, machine_mode,
kono
parents: 67
diff changeset
246 machine_mode, int);
kono
parents: 67
diff changeset
247 /* Emit a pair of rtl insns to compare two rtx's and to jump
kono
parents: 67
diff changeset
248 to a label if the comparison is true. */
kono
parents: 67
diff changeset
249 extern void emit_cmp_and_jump_insns (rtx, rtx, enum rtx_code, rtx,
kono
parents: 67
diff changeset
250 machine_mode, int, rtx,
kono
parents: 67
diff changeset
251 profile_probability prob
kono
parents: 67
diff changeset
252 = profile_probability::uninitialized ());
kono
parents: 67
diff changeset
253
kono
parents: 67
diff changeset
254 /* Generate code to indirectly jump to a location given in the rtx LOC. */
kono
parents: 67
diff changeset
255 extern void emit_indirect_jump (rtx);
kono
parents: 67
diff changeset
256
kono
parents: 67
diff changeset
257 #include "insn-config.h"
kono
parents: 67
diff changeset
258
kono
parents: 67
diff changeset
259 #ifndef GCC_INSN_CONFIG_H
kono
parents: 67
diff changeset
260 #error "insn-config.h must be included before optabs.h"
kono
parents: 67
diff changeset
261 #endif
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
262
111
kono
parents: 67
diff changeset
263 /* Emit a conditional move operation. */
kono
parents: 67
diff changeset
264 rtx emit_conditional_move (rtx, enum rtx_code, rtx, rtx, machine_mode,
kono
parents: 67
diff changeset
265 rtx, rtx, machine_mode, int);
kono
parents: 67
diff changeset
266
kono
parents: 67
diff changeset
267 /* Emit a conditional negate or bitwise complement operation. */
kono
parents: 67
diff changeset
268 rtx emit_conditional_neg_or_complement (rtx, rtx_code, machine_mode, rtx,
kono
parents: 67
diff changeset
269 rtx, rtx);
kono
parents: 67
diff changeset
270
kono
parents: 67
diff changeset
271 rtx emit_conditional_add (rtx, enum rtx_code, rtx, rtx, machine_mode,
kono
parents: 67
diff changeset
272 rtx, rtx, machine_mode, int);
kono
parents: 67
diff changeset
273
kono
parents: 67
diff changeset
274 /* Create but don't emit one rtl instruction to perform certain operations.
kono
parents: 67
diff changeset
275 Modes must match; operands must meet the operation's predicates.
kono
parents: 67
diff changeset
276 Likewise for subtraction and for just copying. */
kono
parents: 67
diff changeset
277 extern rtx_insn *gen_add2_insn (rtx, rtx);
kono
parents: 67
diff changeset
278 extern rtx_insn *gen_add3_insn (rtx, rtx, rtx);
kono
parents: 67
diff changeset
279 extern int have_add2_insn (rtx, rtx);
kono
parents: 67
diff changeset
280 extern rtx_insn *gen_addptr3_insn (rtx, rtx, rtx);
kono
parents: 67
diff changeset
281 extern int have_addptr3_insn (rtx, rtx, rtx);
kono
parents: 67
diff changeset
282 extern rtx_insn *gen_sub2_insn (rtx, rtx);
kono
parents: 67
diff changeset
283 extern rtx_insn *gen_sub3_insn (rtx, rtx, rtx);
kono
parents: 67
diff changeset
284 extern int have_sub2_insn (rtx, rtx);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
285
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
286 /* Generate the body of an insn to extend Y (with mode MFROM)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
287 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
111
kono
parents: 67
diff changeset
288 extern rtx_insn *gen_extend_insn (rtx, rtx, machine_mode, machine_mode, int);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
290 /* Generate code for a FLOAT_EXPR. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
291 extern void expand_float (rtx, rtx, int);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
292
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
293 /* Generate code for a FIX_EXPR. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 extern void expand_fix (rtx, rtx, int);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295
111
kono
parents: 67
diff changeset
296 /* Generate code for a FIXED_CONVERT_EXPR. */
kono
parents: 67
diff changeset
297 extern void expand_fixed_convert (rtx, rtx, int, int);
kono
parents: 67
diff changeset
298
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 /* Generate code for float to integral conversion. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300 extern bool expand_sfix_optab (rtx, rtx, convert_optab);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
301
111
kono
parents: 67
diff changeset
302 /* Report whether the machine description contains an insn which can
kono
parents: 67
diff changeset
303 perform the operation described by CODE and MODE. */
kono
parents: 67
diff changeset
304 extern int have_insn_for (enum rtx_code, machine_mode);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
305
111
kono
parents: 67
diff changeset
306 /* Generate a conditional trap instruction. */
kono
parents: 67
diff changeset
307 extern rtx_insn *gen_cond_trap (enum rtx_code, rtx, rtx, rtx);
kono
parents: 67
diff changeset
308
kono
parents: 67
diff changeset
309 /* Generate code for VEC_PERM_EXPR. */
kono
parents: 67
diff changeset
310 extern rtx expand_vec_perm (machine_mode, rtx, rtx, rtx, rtx);
kono
parents: 67
diff changeset
311
kono
parents: 67
diff changeset
312 /* Generate code for vector comparison. */
kono
parents: 67
diff changeset
313 extern rtx expand_vec_cmp_expr (tree, tree, rtx);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
315 /* Generate code for VEC_COND_EXPR. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
316 extern rtx expand_vec_cond_expr (tree, tree, tree, tree, rtx);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317
111
kono
parents: 67
diff changeset
318 /* Generate code for MULT_HIGHPART_EXPR. */
kono
parents: 67
diff changeset
319 extern rtx expand_mult_highpart (machine_mode, rtx, rtx, rtx, 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
320
111
kono
parents: 67
diff changeset
321 extern rtx expand_sync_lock_test_and_set (rtx, rtx, rtx);
kono
parents: 67
diff changeset
322 extern rtx expand_atomic_test_and_set (rtx, rtx, enum memmodel);
kono
parents: 67
diff changeset
323 extern rtx expand_atomic_exchange (rtx, rtx, rtx, enum memmodel);
kono
parents: 67
diff changeset
324 extern bool expand_atomic_compare_and_swap (rtx *, rtx *, rtx, rtx, rtx, bool,
kono
parents: 67
diff changeset
325 enum memmodel, enum memmodel);
kono
parents: 67
diff changeset
326 /* Generate memory barriers. */
kono
parents: 67
diff changeset
327 extern void expand_mem_thread_fence (enum memmodel);
kono
parents: 67
diff changeset
328 extern void expand_mem_signal_fence (enum memmodel);
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
329
111
kono
parents: 67
diff changeset
330 rtx expand_atomic_load (rtx, rtx, enum memmodel);
kono
parents: 67
diff changeset
331 rtx expand_atomic_store (rtx, rtx, enum memmodel, bool);
kono
parents: 67
diff changeset
332 rtx expand_atomic_fetch_op (rtx, rtx, rtx, enum rtx_code, enum memmodel,
kono
parents: 67
diff changeset
333 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
334
111
kono
parents: 67
diff changeset
335 extern bool insn_operand_matches (enum insn_code icode, unsigned int opno,
kono
parents: 67
diff changeset
336 rtx operand);
kono
parents: 67
diff changeset
337 extern bool valid_multiword_target_p (rtx);
kono
parents: 67
diff changeset
338 extern void create_convert_operand_from_type (struct expand_operand *op,
kono
parents: 67
diff changeset
339 rtx value, tree type);
kono
parents: 67
diff changeset
340 extern bool maybe_legitimize_operands (enum insn_code icode,
kono
parents: 67
diff changeset
341 unsigned int opno, unsigned int nops,
kono
parents: 67
diff changeset
342 struct expand_operand *ops);
kono
parents: 67
diff changeset
343 extern rtx_insn *maybe_gen_insn (enum insn_code icode, unsigned int nops,
kono
parents: 67
diff changeset
344 struct expand_operand *ops);
kono
parents: 67
diff changeset
345 extern bool maybe_expand_insn (enum insn_code icode, unsigned int nops,
kono
parents: 67
diff changeset
346 struct expand_operand *ops);
kono
parents: 67
diff changeset
347 extern bool maybe_expand_jump_insn (enum insn_code icode, unsigned int nops,
kono
parents: 67
diff changeset
348 struct expand_operand *ops);
kono
parents: 67
diff changeset
349 extern void expand_insn (enum insn_code icode, unsigned int nops,
kono
parents: 67
diff changeset
350 struct expand_operand *ops);
kono
parents: 67
diff changeset
351 extern void expand_jump_insn (enum insn_code icode, unsigned int nops,
kono
parents: 67
diff changeset
352 struct expand_operand *ops);
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
353
111
kono
parents: 67
diff changeset
354 extern enum rtx_code get_rtx_code (enum tree_code tcode, bool unsignedp);
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
355
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356 #endif /* GCC_OPTABS_H */