]> gcc.gnu.org Git - gcc.git/blob - gcc/optabs.c
(expand_fix): Don't copy TARGET to TO if same.
[gcc.git] / gcc / optabs.c
1 /* Expand the basic unary and binary arithmetic operations, for GNU compiler.
2 Copyright (C) 1987, 88, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include "config.h"
23 #include "rtl.h"
24 #include "tree.h"
25 #include "flags.h"
26 #include "insn-flags.h"
27 #include "insn-codes.h"
28 #include "expr.h"
29 #include "insn-config.h"
30 #include "recog.h"
31 #include "reload.h"
32 #include <ctype.h>
33
34 /* Each optab contains info on how this target machine
35 can perform a particular operation
36 for all sizes and kinds of operands.
37
38 The operation to be performed is often specified
39 by passing one of these optabs as an argument.
40
41 See expr.h for documentation of these optabs. */
42
43 optab add_optab;
44 optab sub_optab;
45 optab smul_optab;
46 optab smul_highpart_optab;
47 optab umul_highpart_optab;
48 optab smul_widen_optab;
49 optab umul_widen_optab;
50 optab sdiv_optab;
51 optab sdivmod_optab;
52 optab udiv_optab;
53 optab udivmod_optab;
54 optab smod_optab;
55 optab umod_optab;
56 optab flodiv_optab;
57 optab ftrunc_optab;
58 optab and_optab;
59 optab ior_optab;
60 optab xor_optab;
61 optab ashl_optab;
62 optab lshr_optab;
63 optab ashr_optab;
64 optab rotl_optab;
65 optab rotr_optab;
66 optab smin_optab;
67 optab smax_optab;
68 optab umin_optab;
69 optab umax_optab;
70
71 optab mov_optab;
72 optab movstrict_optab;
73
74 optab neg_optab;
75 optab abs_optab;
76 optab one_cmpl_optab;
77 optab ffs_optab;
78 optab sqrt_optab;
79 optab sin_optab;
80 optab cos_optab;
81
82 optab cmp_optab;
83 optab ucmp_optab; /* Used only for libcalls for unsigned comparisons. */
84 optab tst_optab;
85
86 optab strlen_optab;
87
88 /* Tables of patterns for extending one integer mode to another. */
89 enum insn_code extendtab[MAX_MACHINE_MODE][MAX_MACHINE_MODE][2];
90
91 /* Tables of patterns for converting between fixed and floating point. */
92 enum insn_code fixtab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];
93 enum insn_code fixtrunctab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];
94 enum insn_code floattab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];
95
96 /* Contains the optab used for each rtx code. */
97 optab code_to_optab[NUM_RTX_CODE + 1];
98
99 /* SYMBOL_REF rtx's for the library functions that are called
100 implicitly and not via optabs. */
101
102 rtx extendsfdf2_libfunc;
103 rtx extendsfxf2_libfunc;
104 rtx extendsftf2_libfunc;
105 rtx extenddfxf2_libfunc;
106 rtx extenddftf2_libfunc;
107
108 rtx truncdfsf2_libfunc;
109 rtx truncxfsf2_libfunc;
110 rtx trunctfsf2_libfunc;
111 rtx truncxfdf2_libfunc;
112 rtx trunctfdf2_libfunc;
113
114 rtx memcpy_libfunc;
115 rtx bcopy_libfunc;
116 rtx memcmp_libfunc;
117 rtx bcmp_libfunc;
118 rtx memset_libfunc;
119 rtx bzero_libfunc;
120
121 rtx eqhf2_libfunc;
122 rtx nehf2_libfunc;
123 rtx gthf2_libfunc;
124 rtx gehf2_libfunc;
125 rtx lthf2_libfunc;
126 rtx lehf2_libfunc;
127
128 rtx eqsf2_libfunc;
129 rtx nesf2_libfunc;
130 rtx gtsf2_libfunc;
131 rtx gesf2_libfunc;
132 rtx ltsf2_libfunc;
133 rtx lesf2_libfunc;
134
135 rtx eqdf2_libfunc;
136 rtx nedf2_libfunc;
137 rtx gtdf2_libfunc;
138 rtx gedf2_libfunc;
139 rtx ltdf2_libfunc;
140 rtx ledf2_libfunc;
141
142 rtx eqxf2_libfunc;
143 rtx nexf2_libfunc;
144 rtx gtxf2_libfunc;
145 rtx gexf2_libfunc;
146 rtx ltxf2_libfunc;
147 rtx lexf2_libfunc;
148
149 rtx eqtf2_libfunc;
150 rtx netf2_libfunc;
151 rtx gttf2_libfunc;
152 rtx getf2_libfunc;
153 rtx lttf2_libfunc;
154 rtx letf2_libfunc;
155
156 rtx floatsisf_libfunc;
157 rtx floatdisf_libfunc;
158 rtx floattisf_libfunc;
159
160 rtx floatsidf_libfunc;
161 rtx floatdidf_libfunc;
162 rtx floattidf_libfunc;
163
164 rtx floatsixf_libfunc;
165 rtx floatdixf_libfunc;
166 rtx floattixf_libfunc;
167
168 rtx floatsitf_libfunc;
169 rtx floatditf_libfunc;
170 rtx floattitf_libfunc;
171
172 rtx fixsfsi_libfunc;
173 rtx fixsfdi_libfunc;
174 rtx fixsfti_libfunc;
175
176 rtx fixdfsi_libfunc;
177 rtx fixdfdi_libfunc;
178 rtx fixdfti_libfunc;
179
180 rtx fixxfsi_libfunc;
181 rtx fixxfdi_libfunc;
182 rtx fixxfti_libfunc;
183
184 rtx fixtfsi_libfunc;
185 rtx fixtfdi_libfunc;
186 rtx fixtfti_libfunc;
187
188 rtx fixunssfsi_libfunc;
189 rtx fixunssfdi_libfunc;
190 rtx fixunssfti_libfunc;
191
192 rtx fixunsdfsi_libfunc;
193 rtx fixunsdfdi_libfunc;
194 rtx fixunsdfti_libfunc;
195
196 rtx fixunsxfsi_libfunc;
197 rtx fixunsxfdi_libfunc;
198 rtx fixunsxfti_libfunc;
199
200 rtx fixunstfsi_libfunc;
201 rtx fixunstfdi_libfunc;
202 rtx fixunstfti_libfunc;
203
204 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
205 gives the gen_function to make a branch to test that condition. */
206
207 rtxfun bcc_gen_fctn[NUM_RTX_CODE];
208
209 /* Indexed by the rtx-code for a conditional (eg. EQ, LT,...)
210 gives the insn code to make a store-condition insn
211 to test that condition. */
212
213 enum insn_code setcc_gen_code[NUM_RTX_CODE];
214
215 #ifdef HAVE_conditional_move
216 /* Indexed by the machine mode, gives the insn code to make a conditional
217 move insn. This is not indexed by the rtx-code like bcc_gen_fctn and
218 setcc_gen_code to cut down on the number of named patterns. Consider a day
219 when a lot more rtx codes are conditional (eg: for the ARM). */
220
221 enum insn_code movcc_gen_code[NUM_MACHINE_MODES];
222 #endif
223
224 static int add_equal_note PROTO((rtx, rtx, enum rtx_code, rtx, rtx));
225 static rtx widen_operand PROTO((rtx, enum machine_mode,
226 enum machine_mode, int, int));
227 static enum insn_code can_fix_p PROTO((enum machine_mode, enum machine_mode,
228 int, int *));
229 static enum insn_code can_float_p PROTO((enum machine_mode, enum machine_mode,
230 int));
231 static rtx ftruncify PROTO((rtx));
232 static optab init_optab PROTO((enum rtx_code));
233 static void init_libfuncs PROTO((optab, int, int, char *, int));
234 static void init_integral_libfuncs PROTO((optab, char *, int));
235 static void init_floating_libfuncs PROTO((optab, char *, int));
236 static void init_complex_libfuncs PROTO((optab, char *, int));
237 \f
238 /* Add a REG_EQUAL note to the last insn in SEQ. TARGET is being set to
239 the result of operation CODE applied to OP0 (and OP1 if it is a binary
240 operation).
241
242 If the last insn does not set TARGET, don't do anything, but return 1.
243
244 If a previous insn sets TARGET and TARGET is one of OP0 or OP1,
245 don't add the REG_EQUAL note but return 0. Our caller can then try
246 again, ensuring that TARGET is not one of the operands. */
247
248 static int
249 add_equal_note (seq, target, code, op0, op1)
250 rtx seq;
251 rtx target;
252 enum rtx_code code;
253 rtx op0, op1;
254 {
255 rtx set;
256 int i;
257 rtx note;
258
259 if ((GET_RTX_CLASS (code) != '1' && GET_RTX_CLASS (code) != '2'
260 && GET_RTX_CLASS (code) != 'c' && GET_RTX_CLASS (code) != '<')
261 || GET_CODE (seq) != SEQUENCE
262 || (set = single_set (XVECEXP (seq, 0, XVECLEN (seq, 0) - 1))) == 0
263 || GET_CODE (target) == ZERO_EXTRACT
264 || (! rtx_equal_p (SET_DEST (set), target)
265 /* For a STRICT_LOW_PART, the REG_NOTE applies to what is inside the
266 SUBREG. */
267 && (GET_CODE (SET_DEST (set)) != STRICT_LOW_PART
268 || ! rtx_equal_p (SUBREG_REG (XEXP (SET_DEST (set), 0)),
269 target))))
270 return 1;
271
272 /* If TARGET is in OP0 or OP1, check if anything in SEQ sets TARGET
273 besides the last insn. */
274 if (reg_overlap_mentioned_p (target, op0)
275 || (op1 && reg_overlap_mentioned_p (target, op1)))
276 for (i = XVECLEN (seq, 0) - 2; i >= 0; i--)
277 if (reg_set_p (target, XVECEXP (seq, 0, i)))
278 return 0;
279
280 if (GET_RTX_CLASS (code) == '1')
281 note = gen_rtx (code, GET_MODE (target), copy_rtx (op0));
282 else
283 note = gen_rtx (code, GET_MODE (target), copy_rtx (op0), copy_rtx (op1));
284
285 REG_NOTES (XVECEXP (seq, 0, XVECLEN (seq, 0) - 1))
286 = gen_rtx (EXPR_LIST, REG_EQUAL, note,
287 REG_NOTES (XVECEXP (seq, 0, XVECLEN (seq, 0) - 1)));
288
289 return 1;
290 }
291 \f
292 /* Widen OP to MODE and return the rtx for the widened operand. UNSIGNEDP
293 says whether OP is signed or unsigned. NO_EXTEND is nonzero if we need
294 not actually do a sign-extend or zero-extend, but can leave the
295 higher-order bits of the result rtx undefined, for example, in the case
296 of logical operations, but not right shifts. */
297
298 static rtx
299 widen_operand (op, mode, oldmode, unsignedp, no_extend)
300 rtx op;
301 enum machine_mode mode, oldmode;
302 int unsignedp;
303 int no_extend;
304 {
305 rtx result;
306
307 /* If we must extend do so. If OP is either a constant or a SUBREG
308 for a promoted object, also extend since it will be more efficient to
309 do so. */
310 if (! no_extend
311 || GET_MODE (op) == VOIDmode
312 || (GET_CODE (op) == SUBREG && SUBREG_PROMOTED_VAR_P (op)))
313 return convert_modes (mode, oldmode, op, unsignedp);
314
315 /* If MODE is no wider than a single word, we return a paradoxical
316 SUBREG. */
317 if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD)
318 return gen_rtx (SUBREG, mode, force_reg (GET_MODE (op), op), 0);
319
320 /* Otherwise, get an object of MODE, clobber it, and set the low-order
321 part to OP. */
322
323 result = gen_reg_rtx (mode);
324 emit_insn (gen_rtx (CLOBBER, VOIDmode, result));
325 emit_move_insn (gen_lowpart (GET_MODE (op), result), op);
326 return result;
327 }
328 \f
329 /* Generate code to perform an operation specified by BINOPTAB
330 on operands OP0 and OP1, with result having machine-mode MODE.
331
332 UNSIGNEDP is for the case where we have to widen the operands
333 to perform the operation. It says to use zero-extension.
334
335 If TARGET is nonzero, the value
336 is generated there, if it is convenient to do so.
337 In all cases an rtx is returned for the locus of the value;
338 this may or may not be TARGET. */
339
340 rtx
341 expand_binop (mode, binoptab, op0, op1, target, unsignedp, methods)
342 enum machine_mode mode;
343 optab binoptab;
344 rtx op0, op1;
345 rtx target;
346 int unsignedp;
347 enum optab_methods methods;
348 {
349 enum optab_methods next_methods
350 = (methods == OPTAB_LIB || methods == OPTAB_LIB_WIDEN
351 ? OPTAB_WIDEN : methods);
352 enum mode_class class;
353 enum machine_mode wider_mode;
354 register rtx temp;
355 int commutative_op = 0;
356 int shift_op = (binoptab->code == ASHIFT
357 || binoptab->code == ASHIFTRT
358 || binoptab->code == LSHIFTRT
359 || binoptab->code == ROTATE
360 || binoptab->code == ROTATERT);
361 rtx entry_last = get_last_insn ();
362 rtx last;
363
364 class = GET_MODE_CLASS (mode);
365
366 op0 = protect_from_queue (op0, 0);
367 op1 = protect_from_queue (op1, 0);
368 if (target)
369 target = protect_from_queue (target, 1);
370
371 if (flag_force_mem)
372 {
373 op0 = force_not_mem (op0);
374 op1 = force_not_mem (op1);
375 }
376
377 /* If subtracting an integer constant, convert this into an addition of
378 the negated constant. */
379
380 if (binoptab == sub_optab && GET_CODE (op1) == CONST_INT)
381 {
382 op1 = negate_rtx (mode, op1);
383 binoptab = add_optab;
384 }
385
386 /* If we are inside an appropriately-short loop and one operand is an
387 expensive constant, force it into a register. */
388 if (CONSTANT_P (op0) && preserve_subexpressions_p ()
389 && rtx_cost (op0, binoptab->code) > 2)
390 op0 = force_reg (mode, op0);
391
392 if (CONSTANT_P (op1) && preserve_subexpressions_p ()
393 && ! shift_op && rtx_cost (op1, binoptab->code) > 2)
394 op1 = force_reg (mode, op1);
395
396 /* Record where to delete back to if we backtrack. */
397 last = get_last_insn ();
398
399 /* If operation is commutative,
400 try to make the first operand a register.
401 Even better, try to make it the same as the target.
402 Also try to make the last operand a constant. */
403 if (GET_RTX_CLASS (binoptab->code) == 'c'
404 || binoptab == smul_widen_optab
405 || binoptab == umul_widen_optab
406 || binoptab == smul_highpart_optab
407 || binoptab == umul_highpart_optab)
408 {
409 commutative_op = 1;
410
411 if (((target == 0 || GET_CODE (target) == REG)
412 ? ((GET_CODE (op1) == REG
413 && GET_CODE (op0) != REG)
414 || target == op1)
415 : rtx_equal_p (op1, target))
416 || GET_CODE (op0) == CONST_INT)
417 {
418 temp = op1;
419 op1 = op0;
420 op0 = temp;
421 }
422 }
423
424 /* If we can do it with a three-operand insn, do so. */
425
426 if (methods != OPTAB_MUST_WIDEN
427 && binoptab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
428 {
429 int icode = (int) binoptab->handlers[(int) mode].insn_code;
430 enum machine_mode mode0 = insn_operand_mode[icode][1];
431 enum machine_mode mode1 = insn_operand_mode[icode][2];
432 rtx pat;
433 rtx xop0 = op0, xop1 = op1;
434
435 if (target)
436 temp = target;
437 else
438 temp = gen_reg_rtx (mode);
439
440 /* If it is a commutative operator and the modes would match
441 if we would swap the operands, we can save the conversions. */
442 if (commutative_op)
443 {
444 if (GET_MODE (op0) != mode0 && GET_MODE (op1) != mode1
445 && GET_MODE (op0) == mode1 && GET_MODE (op1) == mode0)
446 {
447 register rtx tmp;
448
449 tmp = op0; op0 = op1; op1 = tmp;
450 tmp = xop0; xop0 = xop1; xop1 = tmp;
451 }
452 }
453
454 /* In case the insn wants input operands in modes different from
455 the result, convert the operands. */
456
457 if (GET_MODE (op0) != VOIDmode
458 && GET_MODE (op0) != mode0
459 && mode0 != VOIDmode)
460 xop0 = convert_to_mode (mode0, xop0, unsignedp);
461
462 if (GET_MODE (xop1) != VOIDmode
463 && GET_MODE (xop1) != mode1
464 && mode1 != VOIDmode)
465 xop1 = convert_to_mode (mode1, xop1, unsignedp);
466
467 /* Now, if insn's predicates don't allow our operands, put them into
468 pseudo regs. */
469
470 if (! (*insn_operand_predicate[icode][1]) (xop0, mode0)
471 && mode0 != VOIDmode)
472 xop0 = copy_to_mode_reg (mode0, xop0);
473
474 if (! (*insn_operand_predicate[icode][2]) (xop1, mode1)
475 && mode1 != VOIDmode)
476 xop1 = copy_to_mode_reg (mode1, xop1);
477
478 if (! (*insn_operand_predicate[icode][0]) (temp, mode))
479 temp = gen_reg_rtx (mode);
480
481 pat = GEN_FCN (icode) (temp, xop0, xop1);
482 if (pat)
483 {
484 /* If PAT is a multi-insn sequence, try to add an appropriate
485 REG_EQUAL note to it. If we can't because TEMP conflicts with an
486 operand, call ourselves again, this time without a target. */
487 if (GET_CODE (pat) == SEQUENCE
488 && ! add_equal_note (pat, temp, binoptab->code, xop0, xop1))
489 {
490 delete_insns_since (last);
491 return expand_binop (mode, binoptab, op0, op1, NULL_RTX,
492 unsignedp, methods);
493 }
494
495 emit_insn (pat);
496 return temp;
497 }
498 else
499 delete_insns_since (last);
500 }
501
502 /* If this is a multiply, see if we can do a widening operation that
503 takes operands of this mode and makes a wider mode. */
504
505 if (binoptab == smul_optab && GET_MODE_WIDER_MODE (mode) != VOIDmode
506 && (((unsignedp ? umul_widen_optab : smul_widen_optab)
507 ->handlers[(int) GET_MODE_WIDER_MODE (mode)].insn_code)
508 != CODE_FOR_nothing))
509 {
510 temp = expand_binop (GET_MODE_WIDER_MODE (mode),
511 unsignedp ? umul_widen_optab : smul_widen_optab,
512 op0, op1, NULL_RTX, unsignedp, OPTAB_DIRECT);
513
514 if (temp != 0)
515 {
516 if (GET_MODE_CLASS (mode) == MODE_INT)
517 return gen_lowpart (mode, temp);
518 else
519 return convert_to_mode (mode, temp, unsignedp);
520 }
521 }
522
523 /* Look for a wider mode of the same class for which we think we
524 can open-code the operation. Check for a widening multiply at the
525 wider mode as well. */
526
527 if ((class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
528 && methods != OPTAB_DIRECT && methods != OPTAB_LIB)
529 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
530 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
531 {
532 if (binoptab->handlers[(int) wider_mode].insn_code != CODE_FOR_nothing
533 || (binoptab == smul_optab
534 && GET_MODE_WIDER_MODE (wider_mode) != VOIDmode
535 && (((unsignedp ? umul_widen_optab : smul_widen_optab)
536 ->handlers[(int) GET_MODE_WIDER_MODE (wider_mode)].insn_code)
537 != CODE_FOR_nothing)))
538 {
539 rtx xop0 = op0, xop1 = op1;
540 int no_extend = 0;
541
542 /* For certain integer operations, we need not actually extend
543 the narrow operands, as long as we will truncate
544 the results to the same narrowness. */
545
546 if ((binoptab == ior_optab || binoptab == and_optab
547 || binoptab == xor_optab
548 || binoptab == add_optab || binoptab == sub_optab
549 || binoptab == smul_optab || binoptab == ashl_optab)
550 && class == MODE_INT)
551 no_extend = 1;
552
553 xop0 = widen_operand (xop0, wider_mode, mode, unsignedp, no_extend);
554
555 /* The second operand of a shift must always be extended. */
556 xop1 = widen_operand (xop1, wider_mode, mode, unsignedp,
557 no_extend && binoptab != ashl_optab);
558
559 temp = expand_binop (wider_mode, binoptab, xop0, xop1, NULL_RTX,
560 unsignedp, OPTAB_DIRECT);
561 if (temp)
562 {
563 if (class != MODE_INT)
564 {
565 if (target == 0)
566 target = gen_reg_rtx (mode);
567 convert_move (target, temp, 0);
568 return target;
569 }
570 else
571 return gen_lowpart (mode, temp);
572 }
573 else
574 delete_insns_since (last);
575 }
576 }
577
578 /* These can be done a word at a time. */
579 if ((binoptab == and_optab || binoptab == ior_optab || binoptab == xor_optab)
580 && class == MODE_INT
581 && GET_MODE_SIZE (mode) > UNITS_PER_WORD
582 && binoptab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing)
583 {
584 int i;
585 rtx insns;
586 rtx equiv_value;
587
588 /* If TARGET is the same as one of the operands, the REG_EQUAL note
589 won't be accurate, so use a new target. */
590 if (target == 0 || target == op0 || target == op1)
591 target = gen_reg_rtx (mode);
592
593 start_sequence ();
594
595 /* Do the actual arithmetic. */
596 for (i = 0; i < GET_MODE_BITSIZE (mode) / BITS_PER_WORD; i++)
597 {
598 rtx target_piece = operand_subword (target, i, 1, mode);
599 rtx x = expand_binop (word_mode, binoptab,
600 operand_subword_force (op0, i, mode),
601 operand_subword_force (op1, i, mode),
602 target_piece, unsignedp, next_methods);
603
604 if (x == 0)
605 break;
606
607 if (target_piece != x)
608 emit_move_insn (target_piece, x);
609 }
610
611 insns = get_insns ();
612 end_sequence ();
613
614 if (i == GET_MODE_BITSIZE (mode) / BITS_PER_WORD)
615 {
616 if (binoptab->code != UNKNOWN)
617 equiv_value
618 = gen_rtx (binoptab->code, mode, copy_rtx (op0), copy_rtx (op1));
619 else
620 equiv_value = 0;
621
622 emit_no_conflict_block (insns, target, op0, op1, equiv_value);
623 return target;
624 }
625 }
626
627 /* Synthesize double word shifts from single word shifts. */
628 if ((binoptab == lshr_optab || binoptab == ashl_optab
629 || binoptab == ashr_optab)
630 && class == MODE_INT
631 && GET_CODE (op1) == CONST_INT
632 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
633 && binoptab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing
634 && ashl_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing
635 && lshr_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing)
636 {
637 rtx insns, inter, equiv_value;
638 rtx into_target, outof_target;
639 rtx into_input, outof_input;
640 int shift_count, left_shift, outof_word;
641
642 /* If TARGET is the same as one of the operands, the REG_EQUAL note
643 won't be accurate, so use a new target. */
644 if (target == 0 || target == op0 || target == op1)
645 target = gen_reg_rtx (mode);
646
647 start_sequence ();
648
649 shift_count = INTVAL (op1);
650
651 /* OUTOF_* is the word we are shifting bits away from, and
652 INTO_* is the word that we are shifting bits towards, thus
653 they differ depending on the direction of the shift and
654 WORDS_BIG_ENDIAN. */
655
656 left_shift = binoptab == ashl_optab;
657 outof_word = left_shift ^ ! WORDS_BIG_ENDIAN;
658
659 outof_target = operand_subword (target, outof_word, 1, mode);
660 into_target = operand_subword (target, 1 - outof_word, 1, mode);
661
662 outof_input = operand_subword_force (op0, outof_word, mode);
663 into_input = operand_subword_force (op0, 1 - outof_word, mode);
664
665 if (shift_count >= BITS_PER_WORD)
666 {
667 inter = expand_binop (word_mode, binoptab,
668 outof_input,
669 GEN_INT (shift_count - BITS_PER_WORD),
670 into_target, unsignedp, next_methods);
671
672 if (inter != 0 && inter != into_target)
673 emit_move_insn (into_target, inter);
674
675 /* For a signed right shift, we must fill the word we are shifting
676 out of with copies of the sign bit. Otherwise it is zeroed. */
677 if (inter != 0 && binoptab != ashr_optab)
678 inter = CONST0_RTX (word_mode);
679 else if (inter != 0)
680 inter = expand_binop (word_mode, binoptab,
681 outof_input,
682 GEN_INT (BITS_PER_WORD - 1),
683 outof_target, unsignedp, next_methods);
684
685 if (inter != 0 && inter != outof_target)
686 emit_move_insn (outof_target, inter);
687 }
688 else
689 {
690 rtx carries;
691 optab reverse_unsigned_shift, unsigned_shift;
692
693 /* For a shift of less then BITS_PER_WORD, to compute the carry,
694 we must do a logical shift in the opposite direction of the
695 desired shift. */
696
697 reverse_unsigned_shift = (left_shift ? lshr_optab : ashl_optab);
698
699 /* For a shift of less than BITS_PER_WORD, to compute the word
700 shifted towards, we need to unsigned shift the orig value of
701 that word. */
702
703 unsigned_shift = (left_shift ? ashl_optab : lshr_optab);
704
705 carries = expand_binop (word_mode, reverse_unsigned_shift,
706 outof_input,
707 GEN_INT (BITS_PER_WORD - shift_count),
708 0, unsignedp, next_methods);
709
710 if (carries == 0)
711 inter = 0;
712 else
713 inter = expand_binop (word_mode, unsigned_shift, into_input,
714 op1, 0, unsignedp, next_methods);
715
716 if (inter != 0)
717 inter = expand_binop (word_mode, ior_optab, carries, inter,
718 into_target, unsignedp, next_methods);
719
720 if (inter != 0 && inter != into_target)
721 emit_move_insn (into_target, inter);
722
723 if (inter != 0)
724 inter = expand_binop (word_mode, binoptab, outof_input,
725 op1, outof_target, unsignedp, next_methods);
726
727 if (inter != 0 && inter != outof_target)
728 emit_move_insn (outof_target, inter);
729 }
730
731 insns = get_insns ();
732 end_sequence ();
733
734 if (inter != 0)
735 {
736 if (binoptab->code != UNKNOWN)
737 equiv_value = gen_rtx (binoptab->code, mode, op0, op1);
738 else
739 equiv_value = 0;
740
741 emit_no_conflict_block (insns, target, op0, op1, equiv_value);
742 return target;
743 }
744 }
745
746 /* Synthesize double word rotates from single word shifts. */
747 if ((binoptab == rotl_optab || binoptab == rotr_optab)
748 && class == MODE_INT
749 && GET_CODE (op1) == CONST_INT
750 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
751 && ashl_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing
752 && lshr_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing)
753 {
754 rtx insns, equiv_value;
755 rtx into_target, outof_target;
756 rtx into_input, outof_input;
757 rtx inter;
758 int shift_count, left_shift, outof_word;
759
760 /* If TARGET is the same as one of the operands, the REG_EQUAL note
761 won't be accurate, so use a new target. */
762 if (target == 0 || target == op0 || target == op1)
763 target = gen_reg_rtx (mode);
764
765 start_sequence ();
766
767 shift_count = INTVAL (op1);
768
769 /* OUTOF_* is the word we are shifting bits away from, and
770 INTO_* is the word that we are shifting bits towards, thus
771 they differ depending on the direction of the shift and
772 WORDS_BIG_ENDIAN. */
773
774 left_shift = (binoptab == rotl_optab);
775 outof_word = left_shift ^ ! WORDS_BIG_ENDIAN;
776
777 outof_target = operand_subword (target, outof_word, 1, mode);
778 into_target = operand_subword (target, 1 - outof_word, 1, mode);
779
780 outof_input = operand_subword_force (op0, outof_word, mode);
781 into_input = operand_subword_force (op0, 1 - outof_word, mode);
782
783 if (shift_count == BITS_PER_WORD)
784 {
785 /* This is just a word swap. */
786 emit_move_insn (outof_target, into_input);
787 emit_move_insn (into_target, outof_input);
788 inter = const0_rtx;
789 }
790 else
791 {
792 rtx into_temp1, into_temp2, outof_temp1, outof_temp2;
793 rtx first_shift_count, second_shift_count;
794 optab reverse_unsigned_shift, unsigned_shift;
795
796 reverse_unsigned_shift = (left_shift ^ (shift_count < BITS_PER_WORD)
797 ? lshr_optab : ashl_optab);
798
799 unsigned_shift = (left_shift ^ (shift_count < BITS_PER_WORD)
800 ? ashl_optab : lshr_optab);
801
802 if (shift_count > BITS_PER_WORD)
803 {
804 first_shift_count = GEN_INT (shift_count - BITS_PER_WORD);
805 second_shift_count = GEN_INT (2*BITS_PER_WORD - shift_count);
806 }
807 else
808 {
809 first_shift_count = GEN_INT (BITS_PER_WORD - shift_count);
810 second_shift_count = GEN_INT (shift_count);
811 }
812
813 into_temp1 = expand_binop (word_mode, unsigned_shift,
814 outof_input, first_shift_count,
815 NULL_RTX, unsignedp, next_methods);
816 into_temp2 = expand_binop (word_mode, reverse_unsigned_shift,
817 into_input, second_shift_count,
818 into_target, unsignedp, next_methods);
819
820 if (into_temp1 != 0 && into_temp2 != 0)
821 inter = expand_binop (word_mode, ior_optab, into_temp1, into_temp2,
822 into_target, unsignedp, next_methods);
823 else
824 inter = 0;
825
826 if (inter != 0 && inter != into_target)
827 emit_move_insn (into_target, inter);
828
829 outof_temp1 = expand_binop (word_mode, unsigned_shift,
830 into_input, first_shift_count,
831 NULL_RTX, unsignedp, next_methods);
832 outof_temp2 = expand_binop (word_mode, reverse_unsigned_shift,
833 outof_input, second_shift_count,
834 outof_target, unsignedp, next_methods);
835
836 if (inter != 0 && outof_temp1 != 0 && outof_temp2 != 0)
837 inter = expand_binop (word_mode, ior_optab,
838 outof_temp1, outof_temp2,
839 outof_target, unsignedp, next_methods);
840
841 if (inter != 0 && inter != outof_target)
842 emit_move_insn (outof_target, inter);
843 }
844
845 insns = get_insns ();
846 end_sequence ();
847
848 if (inter != 0)
849 {
850 if (binoptab->code != UNKNOWN)
851 equiv_value = gen_rtx (binoptab->code, mode, op0, op1);
852 else
853 equiv_value = 0;
854
855 /* We can't make this a no conflict block if this is a word swap,
856 because the word swap case fails if the input and output values
857 are in the same register. */
858 if (shift_count != BITS_PER_WORD)
859 emit_no_conflict_block (insns, target, op0, op1, equiv_value);
860 else
861 emit_insns (insns);
862
863
864 return target;
865 }
866 }
867
868 /* These can be done a word at a time by propagating carries. */
869 if ((binoptab == add_optab || binoptab == sub_optab)
870 && class == MODE_INT
871 && GET_MODE_SIZE (mode) >= 2 * UNITS_PER_WORD
872 && binoptab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing)
873 {
874 int i;
875 rtx carry_tmp = gen_reg_rtx (word_mode);
876 optab otheroptab = binoptab == add_optab ? sub_optab : add_optab;
877 int nwords = GET_MODE_BITSIZE (mode) / BITS_PER_WORD;
878 rtx carry_in, carry_out;
879 rtx xop0, xop1;
880
881 /* We can handle either a 1 or -1 value for the carry. If STORE_FLAG
882 value is one of those, use it. Otherwise, use 1 since it is the
883 one easiest to get. */
884 #if STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1
885 int normalizep = STORE_FLAG_VALUE;
886 #else
887 int normalizep = 1;
888 #endif
889
890 /* Prepare the operands. */
891 xop0 = force_reg (mode, op0);
892 xop1 = force_reg (mode, op1);
893
894 if (target == 0 || GET_CODE (target) != REG
895 || target == xop0 || target == xop1)
896 target = gen_reg_rtx (mode);
897
898 /* Indicate for flow that the entire target reg is being set. */
899 if (GET_CODE (target) == REG)
900 emit_insn (gen_rtx (CLOBBER, VOIDmode, target));
901
902 /* Do the actual arithmetic. */
903 for (i = 0; i < nwords; i++)
904 {
905 int index = (WORDS_BIG_ENDIAN ? nwords - i - 1 : i);
906 rtx target_piece = operand_subword (target, index, 1, mode);
907 rtx op0_piece = operand_subword_force (xop0, index, mode);
908 rtx op1_piece = operand_subword_force (xop1, index, mode);
909 rtx x;
910
911 /* Main add/subtract of the input operands. */
912 x = expand_binop (word_mode, binoptab,
913 op0_piece, op1_piece,
914 target_piece, unsignedp, next_methods);
915 if (x == 0)
916 break;
917
918 if (i + 1 < nwords)
919 {
920 /* Store carry from main add/subtract. */
921 carry_out = gen_reg_rtx (word_mode);
922 carry_out = emit_store_flag (carry_out,
923 binoptab == add_optab ? LTU : GTU,
924 x, op0_piece,
925 word_mode, 1, normalizep);
926 if (carry_out == 0)
927 break;
928 }
929
930 if (i > 0)
931 {
932 /* Add/subtract previous carry to main result. */
933 x = expand_binop (word_mode,
934 normalizep == 1 ? binoptab : otheroptab,
935 x, carry_in,
936 target_piece, 1, next_methods);
937 if (x == 0)
938 break;
939 else if (target_piece != x)
940 emit_move_insn (target_piece, x);
941
942 if (i + 1 < nwords)
943 {
944 /* THIS CODE HAS NOT BEEN TESTED. */
945 /* Get out carry from adding/subtracting carry in. */
946 carry_tmp = emit_store_flag (carry_tmp,
947 binoptab == add_optab
948 ? LTU : GTU,
949 x, carry_in,
950 word_mode, 1, normalizep);
951
952 /* Logical-ior the two poss. carry together. */
953 carry_out = expand_binop (word_mode, ior_optab,
954 carry_out, carry_tmp,
955 carry_out, 0, next_methods);
956 if (carry_out == 0)
957 break;
958 }
959 }
960
961 carry_in = carry_out;
962 }
963
964 if (i == GET_MODE_BITSIZE (mode) / BITS_PER_WORD)
965 {
966 rtx temp = emit_move_insn (target, target);
967
968 REG_NOTES (temp) = gen_rtx (EXPR_LIST, REG_EQUAL,
969 gen_rtx (binoptab->code, mode,
970 copy_rtx (xop0),
971 copy_rtx (xop1)),
972 REG_NOTES (temp));
973 return target;
974 }
975 else
976 delete_insns_since (last);
977 }
978
979 /* If we want to multiply two two-word values and have normal and widening
980 multiplies of single-word values, we can do this with three smaller
981 multiplications. Note that we do not make a REG_NO_CONFLICT block here
982 because we are not operating on one word at a time.
983
984 The multiplication proceeds as follows:
985 _______________________
986 [__op0_high_|__op0_low__]
987 _______________________
988 * [__op1_high_|__op1_low__]
989 _______________________________________________
990 _______________________
991 (1) [__op0_low__*__op1_low__]
992 _______________________
993 (2a) [__op0_low__*__op1_high_]
994 _______________________
995 (2b) [__op0_high_*__op1_low__]
996 _______________________
997 (3) [__op0_high_*__op1_high_]
998
999
1000 This gives a 4-word result. Since we are only interested in the
1001 lower 2 words, partial result (3) and the upper words of (2a) and
1002 (2b) don't need to be calculated. Hence (2a) and (2b) can be
1003 calculated using non-widening multiplication.
1004
1005 (1), however, needs to be calculated with an unsigned widening
1006 multiplication. If this operation is not directly supported we
1007 try using a signed widening multiplication and adjust the result.
1008 This adjustment works as follows:
1009
1010 If both operands are positive then no adjustment is needed.
1011
1012 If the operands have different signs, for example op0_low < 0 and
1013 op1_low >= 0, the instruction treats the most significant bit of
1014 op0_low as a sign bit instead of a bit with significance
1015 2**(BITS_PER_WORD-1), i.e. the instruction multiplies op1_low
1016 with 2**BITS_PER_WORD - op0_low, and two's complements the
1017 result. Conclusion: We need to add op1_low * 2**BITS_PER_WORD to
1018 the result.
1019
1020 Similarly, if both operands are negative, we need to add
1021 (op0_low + op1_low) * 2**BITS_PER_WORD.
1022
1023 We use a trick to adjust quickly. We logically shift op0_low right
1024 (op1_low) BITS_PER_WORD-1 steps to get 0 or 1, and add this to
1025 op0_high (op1_high) before it is used to calculate 2b (2a). If no
1026 logical shift exists, we do an arithmetic right shift and subtract
1027 the 0 or -1. */
1028
1029 if (binoptab == smul_optab
1030 && class == MODE_INT
1031 && GET_MODE_SIZE (mode) == 2 * UNITS_PER_WORD
1032 && smul_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing
1033 && add_optab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing
1034 && ((umul_widen_optab->handlers[(int) mode].insn_code
1035 != CODE_FOR_nothing)
1036 || (smul_widen_optab->handlers[(int) mode].insn_code
1037 != CODE_FOR_nothing)))
1038 {
1039 int low = (WORDS_BIG_ENDIAN ? 1 : 0);
1040 int high = (WORDS_BIG_ENDIAN ? 0 : 1);
1041 rtx op0_high = operand_subword_force (op0, high, mode);
1042 rtx op0_low = operand_subword_force (op0, low, mode);
1043 rtx op1_high = operand_subword_force (op1, high, mode);
1044 rtx op1_low = operand_subword_force (op1, low, mode);
1045 rtx product = 0;
1046 rtx op0_xhigh;
1047 rtx op1_xhigh;
1048
1049 /* If the target is the same as one of the inputs, don't use it. This
1050 prevents problems with the REG_EQUAL note. */
1051 if (target == op0 || target == op1
1052 || (target != 0 && GET_CODE (target) != REG))
1053 target = 0;
1054
1055 /* Multiply the two lower words to get a double-word product.
1056 If unsigned widening multiplication is available, use that;
1057 otherwise use the signed form and compensate. */
1058
1059 if (umul_widen_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
1060 {
1061 product = expand_binop (mode, umul_widen_optab, op0_low, op1_low,
1062 target, 1, OPTAB_DIRECT);
1063
1064 /* If we didn't succeed, delete everything we did so far. */
1065 if (product == 0)
1066 delete_insns_since (last);
1067 else
1068 op0_xhigh = op0_high, op1_xhigh = op1_high;
1069 }
1070
1071 if (product == 0
1072 && smul_widen_optab->handlers[(int) mode].insn_code
1073 != CODE_FOR_nothing)
1074 {
1075 rtx wordm1 = GEN_INT (BITS_PER_WORD - 1);
1076 product = expand_binop (mode, smul_widen_optab, op0_low, op1_low,
1077 target, 1, OPTAB_DIRECT);
1078 op0_xhigh = expand_binop (word_mode, lshr_optab, op0_low, wordm1,
1079 NULL_RTX, 1, next_methods);
1080 if (op0_xhigh)
1081 op0_xhigh = expand_binop (word_mode, add_optab, op0_high,
1082 op0_xhigh, op0_xhigh, 0, next_methods);
1083 else
1084 {
1085 op0_xhigh = expand_binop (word_mode, ashr_optab, op0_low, wordm1,
1086 NULL_RTX, 0, next_methods);
1087 if (op0_xhigh)
1088 op0_xhigh = expand_binop (word_mode, sub_optab, op0_high,
1089 op0_xhigh, op0_xhigh, 0,
1090 next_methods);
1091 }
1092
1093 op1_xhigh = expand_binop (word_mode, lshr_optab, op1_low, wordm1,
1094 NULL_RTX, 1, next_methods);
1095 if (op1_xhigh)
1096 op1_xhigh = expand_binop (word_mode, add_optab, op1_high,
1097 op1_xhigh, op1_xhigh, 0, next_methods);
1098 else
1099 {
1100 op1_xhigh = expand_binop (word_mode, ashr_optab, op1_low, wordm1,
1101 NULL_RTX, 0, next_methods);
1102 if (op1_xhigh)
1103 op1_xhigh = expand_binop (word_mode, sub_optab, op1_high,
1104 op1_xhigh, op1_xhigh, 0,
1105 next_methods);
1106 }
1107 }
1108
1109 /* If we have been able to directly compute the product of the
1110 low-order words of the operands and perform any required adjustments
1111 of the operands, we proceed by trying two more multiplications
1112 and then computing the appropriate sum.
1113
1114 We have checked above that the required addition is provided.
1115 Full-word addition will normally always succeed, especially if
1116 it is provided at all, so we don't worry about its failure. The
1117 multiplication may well fail, however, so we do handle that. */
1118
1119 if (product && op0_xhigh && op1_xhigh)
1120 {
1121 rtx product_high = operand_subword (product, high, 1, mode);
1122 rtx temp = expand_binop (word_mode, binoptab, op0_low, op1_xhigh,
1123 NULL_RTX, 0, OPTAB_DIRECT);
1124
1125 if (temp != 0)
1126 temp = expand_binop (word_mode, add_optab, temp, product_high,
1127 product_high, 0, next_methods);
1128
1129 if (temp != 0 && temp != product_high)
1130 emit_move_insn (product_high, temp);
1131
1132 if (temp != 0)
1133 temp = expand_binop (word_mode, binoptab, op1_low, op0_xhigh,
1134 NULL_RTX, 0, OPTAB_DIRECT);
1135
1136 if (temp != 0)
1137 temp = expand_binop (word_mode, add_optab, temp,
1138 product_high, product_high,
1139 0, next_methods);
1140
1141 if (temp != 0 && temp != product_high)
1142 emit_move_insn (product_high, temp);
1143
1144 if (temp != 0)
1145 {
1146 temp = emit_move_insn (product, product);
1147 REG_NOTES (temp) = gen_rtx (EXPR_LIST, REG_EQUAL,
1148 gen_rtx (MULT, mode, copy_rtx (op0),
1149 copy_rtx (op1)),
1150 REG_NOTES (temp));
1151
1152 return product;
1153 }
1154 }
1155
1156 /* If we get here, we couldn't do it for some reason even though we
1157 originally thought we could. Delete anything we've emitted in
1158 trying to do it. */
1159
1160 delete_insns_since (last);
1161 }
1162
1163 /* We need to open-code the complex type operations: '+, -, * and /' */
1164
1165 /* At this point we allow operations between two similar complex
1166 numbers, and also if one of the operands is not a complex number
1167 but rather of MODE_FLOAT or MODE_INT. However, the caller
1168 must make sure that the MODE of the non-complex operand matches
1169 the SUBMODE of the complex operand. */
1170
1171 if (class == MODE_COMPLEX_FLOAT || class == MODE_COMPLEX_INT)
1172 {
1173 rtx real0 = 0, imag0 = 0;
1174 rtx real1 = 0, imag1 = 0;
1175 rtx realr, imagr, res;
1176 rtx seq;
1177 rtx equiv_value;
1178 int ok = 0;
1179
1180 /* Find the correct mode for the real and imaginary parts */
1181 enum machine_mode submode
1182 = mode_for_size (GET_MODE_UNIT_SIZE (mode) * BITS_PER_UNIT,
1183 class == MODE_COMPLEX_INT ? MODE_INT : MODE_FLOAT,
1184 0);
1185
1186 if (submode == BLKmode)
1187 abort ();
1188
1189 if (! target)
1190 target = gen_reg_rtx (mode);
1191
1192 start_sequence ();
1193
1194 realr = gen_realpart (submode, target);
1195 imagr = gen_imagpart (submode, target);
1196
1197 if (GET_MODE (op0) == mode)
1198 {
1199 real0 = gen_realpart (submode, op0);
1200 imag0 = gen_imagpart (submode, op0);
1201 }
1202 else
1203 real0 = op0;
1204
1205 if (GET_MODE (op1) == mode)
1206 {
1207 real1 = gen_realpart (submode, op1);
1208 imag1 = gen_imagpart (submode, op1);
1209 }
1210 else
1211 real1 = op1;
1212
1213 if (real0 == 0 || real1 == 0 || ! (imag0 != 0|| imag1 != 0))
1214 abort ();
1215
1216 switch (binoptab->code)
1217 {
1218 case PLUS:
1219 /* (a+ib) + (c+id) = (a+c) + i(b+d) */
1220 case MINUS:
1221 /* (a+ib) - (c+id) = (a-c) + i(b-d) */
1222 res = expand_binop (submode, binoptab, real0, real1,
1223 realr, unsignedp, methods);
1224
1225 if (res == 0)
1226 break;
1227 else if (res != realr)
1228 emit_move_insn (realr, res);
1229
1230 if (imag0 && imag1)
1231 res = expand_binop (submode, binoptab, imag0, imag1,
1232 imagr, unsignedp, methods);
1233 else if (imag0)
1234 res = imag0;
1235 else if (binoptab->code == MINUS)
1236 res = expand_unop (submode, neg_optab, imag1, imagr, unsignedp);
1237 else
1238 res = imag1;
1239
1240 if (res == 0)
1241 break;
1242 else if (res != imagr)
1243 emit_move_insn (imagr, res);
1244
1245 ok = 1;
1246 break;
1247
1248 case MULT:
1249 /* (a+ib) * (c+id) = (ac-bd) + i(ad+cb) */
1250
1251 if (imag0 && imag1)
1252 {
1253 rtx temp1, temp2;
1254
1255 /* Don't fetch these from memory more than once. */
1256 real0 = force_reg (submode, real0);
1257 real1 = force_reg (submode, real1);
1258 imag0 = force_reg (submode, imag0);
1259 imag1 = force_reg (submode, imag1);
1260
1261 temp1 = expand_binop (submode, binoptab, real0, real1, NULL_RTX,
1262 unsignedp, methods);
1263
1264 temp2 = expand_binop (submode, binoptab, imag0, imag1, NULL_RTX,
1265 unsignedp, methods);
1266
1267 if (temp1 == 0 || temp2 == 0)
1268 break;
1269
1270 res = expand_binop (submode, sub_optab, temp1, temp2,
1271 realr, unsignedp, methods);
1272
1273 if (res == 0)
1274 break;
1275 else if (res != realr)
1276 emit_move_insn (realr, res);
1277
1278 temp1 = expand_binop (submode, binoptab, real0, imag1,
1279 NULL_RTX, unsignedp, methods);
1280
1281 temp2 = expand_binop (submode, binoptab, real1, imag0,
1282 NULL_RTX, unsignedp, methods);
1283
1284 if (temp1 == 0 || temp2 == 0)
1285 break;
1286
1287 res = expand_binop (submode, add_optab, temp1, temp2,
1288 imagr, unsignedp, methods);
1289
1290 if (res == 0)
1291 break;
1292 else if (res != imagr)
1293 emit_move_insn (imagr, res);
1294
1295 ok = 1;
1296 }
1297 else
1298 {
1299 /* Don't fetch these from memory more than once. */
1300 real0 = force_reg (submode, real0);
1301 real1 = force_reg (submode, real1);
1302
1303 res = expand_binop (submode, binoptab, real0, real1,
1304 realr, unsignedp, methods);
1305 if (res == 0)
1306 break;
1307 else if (res != realr)
1308 emit_move_insn (realr, res);
1309
1310 if (imag0 != 0)
1311 res = expand_binop (submode, binoptab,
1312 real1, imag0, imagr, unsignedp, methods);
1313 else
1314 res = expand_binop (submode, binoptab,
1315 real0, imag1, imagr, unsignedp, methods);
1316
1317 if (res == 0)
1318 break;
1319 else if (res != imagr)
1320 emit_move_insn (imagr, res);
1321
1322 ok = 1;
1323 }
1324 break;
1325
1326 case DIV:
1327 /* (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd)) */
1328
1329 if (imag1 == 0)
1330 {
1331 /* (a+ib) / (c+i0) = (a/c) + i(b/c) */
1332
1333 /* Don't fetch these from memory more than once. */
1334 real1 = force_reg (submode, real1);
1335
1336 /* Simply divide the real and imaginary parts by `c' */
1337 if (class == MODE_COMPLEX_FLOAT)
1338 res = expand_binop (submode, binoptab, real0, real1,
1339 realr, unsignedp, methods);
1340 else
1341 res = expand_divmod (0, TRUNC_DIV_EXPR, submode,
1342 real0, real1, realr, unsignedp);
1343
1344 if (res == 0)
1345 break;
1346 else if (res != realr)
1347 emit_move_insn (realr, res);
1348
1349 if (class == MODE_COMPLEX_FLOAT)
1350 res = expand_binop (submode, binoptab, imag0, real1,
1351 imagr, unsignedp, methods);
1352 else
1353 res = expand_divmod (0, TRUNC_DIV_EXPR, submode,
1354 imag0, real1, imagr, unsignedp);
1355
1356 if (res == 0)
1357 break;
1358 else if (res != imagr)
1359 emit_move_insn (imagr, res);
1360
1361 ok = 1;
1362 }
1363 else
1364 {
1365 /* Divisor is of complex type:
1366 X/(a+ib) */
1367 rtx divisor;
1368 rtx real_t, imag_t;
1369 rtx lhs, rhs;
1370 rtx temp1, temp2;
1371
1372 /* Don't fetch these from memory more than once. */
1373 real0 = force_reg (submode, real0);
1374 real1 = force_reg (submode, real1);
1375
1376 if (imag0 != 0)
1377 imag0 = force_reg (submode, imag0);
1378
1379 imag1 = force_reg (submode, imag1);
1380
1381 /* Divisor: c*c + d*d */
1382 temp1 = expand_binop (submode, smul_optab, real1, real1,
1383 NULL_RTX, unsignedp, methods);
1384
1385 temp2 = expand_binop (submode, smul_optab, imag1, imag1,
1386 NULL_RTX, unsignedp, methods);
1387
1388 if (temp1 == 0 || temp2 == 0)
1389 break;
1390
1391 divisor = expand_binop (submode, add_optab, temp1, temp2,
1392 NULL_RTX, unsignedp, methods);
1393 if (divisor == 0)
1394 break;
1395
1396 if (imag0 == 0)
1397 {
1398 /* ((a)(c-id))/divisor */
1399 /* (a+i0) / (c+id) = (ac/(cc+dd)) + i(-ad/(cc+dd)) */
1400
1401 /* Calculate the dividend */
1402 real_t = expand_binop (submode, smul_optab, real0, real1,
1403 NULL_RTX, unsignedp, methods);
1404
1405 imag_t = expand_binop (submode, smul_optab, real0, imag1,
1406 NULL_RTX, unsignedp, methods);
1407
1408 if (real_t == 0 || imag_t == 0)
1409 break;
1410
1411 imag_t = expand_unop (submode, neg_optab, imag_t,
1412 NULL_RTX, unsignedp);
1413 }
1414 else
1415 {
1416 /* ((a+ib)(c-id))/divider */
1417 /* Calculate the dividend */
1418 temp1 = expand_binop (submode, smul_optab, real0, real1,
1419 NULL_RTX, unsignedp, methods);
1420
1421 temp2 = expand_binop (submode, smul_optab, imag0, imag1,
1422 NULL_RTX, unsignedp, methods);
1423
1424 if (temp1 == 0 || temp2 == 0)
1425 break;
1426
1427 real_t = expand_binop (submode, add_optab, temp1, temp2,
1428 NULL_RTX, unsignedp, methods);
1429
1430 temp1 = expand_binop (submode, smul_optab, imag0, real1,
1431 NULL_RTX, unsignedp, methods);
1432
1433 temp2 = expand_binop (submode, smul_optab, real0, imag1,
1434 NULL_RTX, unsignedp, methods);
1435
1436 if (temp1 == 0 || temp2 == 0)
1437 break;
1438
1439 imag_t = expand_binop (submode, sub_optab, temp1, temp2,
1440 NULL_RTX, unsignedp, methods);
1441
1442 if (real_t == 0 || imag_t == 0)
1443 break;
1444 }
1445
1446 if (class == MODE_COMPLEX_FLOAT)
1447 res = expand_binop (submode, binoptab, real_t, divisor,
1448 realr, unsignedp, methods);
1449 else
1450 res = expand_divmod (0, TRUNC_DIV_EXPR, submode,
1451 real_t, divisor, realr, unsignedp);
1452
1453 if (res == 0)
1454 break;
1455 else if (res != realr)
1456 emit_move_insn (realr, res);
1457
1458 if (class == MODE_COMPLEX_FLOAT)
1459 res = expand_binop (submode, binoptab, imag_t, divisor,
1460 imagr, unsignedp, methods);
1461 else
1462 res = expand_divmod (0, TRUNC_DIV_EXPR, submode,
1463 imag_t, divisor, imagr, unsignedp);
1464
1465 if (res == 0)
1466 break;
1467 else if (res != imagr)
1468 emit_move_insn (imagr, res);
1469
1470 ok = 1;
1471 }
1472 break;
1473
1474 default:
1475 abort ();
1476 }
1477
1478 seq = get_insns ();
1479 end_sequence ();
1480
1481 if (ok)
1482 {
1483 if (binoptab->code != UNKNOWN)
1484 equiv_value
1485 = gen_rtx (binoptab->code, mode, copy_rtx (op0), copy_rtx (op1));
1486 else
1487 equiv_value = 0;
1488
1489 emit_no_conflict_block (seq, target, op0, op1, equiv_value);
1490
1491 return target;
1492 }
1493 }
1494
1495 /* It can't be open-coded in this mode.
1496 Use a library call if one is available and caller says that's ok. */
1497
1498 if (binoptab->handlers[(int) mode].libfunc
1499 && (methods == OPTAB_LIB || methods == OPTAB_LIB_WIDEN))
1500 {
1501 rtx insns;
1502 rtx funexp = binoptab->handlers[(int) mode].libfunc;
1503 rtx op1x = op1;
1504 enum machine_mode op1_mode = mode;
1505 rtx value;
1506
1507 start_sequence ();
1508
1509 if (shift_op)
1510 {
1511 op1_mode = word_mode;
1512 /* Specify unsigned here,
1513 since negative shift counts are meaningless. */
1514 op1x = convert_to_mode (word_mode, op1, 1);
1515 }
1516
1517 if (GET_MODE (op0) != VOIDmode
1518 && GET_MODE (op0) != mode)
1519 op0 = convert_to_mode (mode, op0, unsignedp);
1520
1521 /* Pass 1 for NO_QUEUE so we don't lose any increments
1522 if the libcall is cse'd or moved. */
1523 value = emit_library_call_value (binoptab->handlers[(int) mode].libfunc,
1524 NULL_RTX, 1, mode, 2,
1525 op0, mode, op1x, op1_mode);
1526
1527 insns = get_insns ();
1528 end_sequence ();
1529
1530 target = gen_reg_rtx (mode);
1531 emit_libcall_block (insns, target, value,
1532 gen_rtx (binoptab->code, mode, op0, op1));
1533
1534 return target;
1535 }
1536
1537 delete_insns_since (last);
1538
1539 /* It can't be done in this mode. Can we do it in a wider mode? */
1540
1541 if (! (methods == OPTAB_WIDEN || methods == OPTAB_LIB_WIDEN
1542 || methods == OPTAB_MUST_WIDEN))
1543 {
1544 /* Caller says, don't even try. */
1545 delete_insns_since (entry_last);
1546 return 0;
1547 }
1548
1549 /* Compute the value of METHODS to pass to recursive calls.
1550 Don't allow widening to be tried recursively. */
1551
1552 methods = (methods == OPTAB_LIB_WIDEN ? OPTAB_LIB : OPTAB_DIRECT);
1553
1554 /* Look for a wider mode of the same class for which it appears we can do
1555 the operation. */
1556
1557 if (class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
1558 {
1559 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
1560 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
1561 {
1562 if ((binoptab->handlers[(int) wider_mode].insn_code
1563 != CODE_FOR_nothing)
1564 || (methods == OPTAB_LIB
1565 && binoptab->handlers[(int) wider_mode].libfunc))
1566 {
1567 rtx xop0 = op0, xop1 = op1;
1568 int no_extend = 0;
1569
1570 /* For certain integer operations, we need not actually extend
1571 the narrow operands, as long as we will truncate
1572 the results to the same narrowness. */
1573
1574 if ((binoptab == ior_optab || binoptab == and_optab
1575 || binoptab == xor_optab
1576 || binoptab == add_optab || binoptab == sub_optab
1577 || binoptab == smul_optab || binoptab == ashl_optab)
1578 && class == MODE_INT)
1579 no_extend = 1;
1580
1581 xop0 = widen_operand (xop0, wider_mode, mode,
1582 unsignedp, no_extend);
1583
1584 /* The second operand of a shift must always be extended. */
1585 xop1 = widen_operand (xop1, wider_mode, mode, unsignedp,
1586 no_extend && binoptab != ashl_optab);
1587
1588 temp = expand_binop (wider_mode, binoptab, xop0, xop1, NULL_RTX,
1589 unsignedp, methods);
1590 if (temp)
1591 {
1592 if (class != MODE_INT)
1593 {
1594 if (target == 0)
1595 target = gen_reg_rtx (mode);
1596 convert_move (target, temp, 0);
1597 return target;
1598 }
1599 else
1600 return gen_lowpart (mode, temp);
1601 }
1602 else
1603 delete_insns_since (last);
1604 }
1605 }
1606 }
1607
1608 delete_insns_since (entry_last);
1609 return 0;
1610 }
1611 \f
1612 /* Expand a binary operator which has both signed and unsigned forms.
1613 UOPTAB is the optab for unsigned operations, and SOPTAB is for
1614 signed operations.
1615
1616 If we widen unsigned operands, we may use a signed wider operation instead
1617 of an unsigned wider operation, since the result would be the same. */
1618
1619 rtx
1620 sign_expand_binop (mode, uoptab, soptab, op0, op1, target, unsignedp, methods)
1621 enum machine_mode mode;
1622 optab uoptab, soptab;
1623 rtx op0, op1, target;
1624 int unsignedp;
1625 enum optab_methods methods;
1626 {
1627 register rtx temp;
1628 optab direct_optab = unsignedp ? uoptab : soptab;
1629 struct optab wide_soptab;
1630
1631 /* Do it without widening, if possible. */
1632 temp = expand_binop (mode, direct_optab, op0, op1, target,
1633 unsignedp, OPTAB_DIRECT);
1634 if (temp || methods == OPTAB_DIRECT)
1635 return temp;
1636
1637 /* Try widening to a signed int. Make a fake signed optab that
1638 hides any signed insn for direct use. */
1639 wide_soptab = *soptab;
1640 wide_soptab.handlers[(int) mode].insn_code = CODE_FOR_nothing;
1641 wide_soptab.handlers[(int) mode].libfunc = 0;
1642
1643 temp = expand_binop (mode, &wide_soptab, op0, op1, target,
1644 unsignedp, OPTAB_WIDEN);
1645
1646 /* For unsigned operands, try widening to an unsigned int. */
1647 if (temp == 0 && unsignedp)
1648 temp = expand_binop (mode, uoptab, op0, op1, target,
1649 unsignedp, OPTAB_WIDEN);
1650 if (temp || methods == OPTAB_WIDEN)
1651 return temp;
1652
1653 /* Use the right width lib call if that exists. */
1654 temp = expand_binop (mode, direct_optab, op0, op1, target, unsignedp, OPTAB_LIB);
1655 if (temp || methods == OPTAB_LIB)
1656 return temp;
1657
1658 /* Must widen and use a lib call, use either signed or unsigned. */
1659 temp = expand_binop (mode, &wide_soptab, op0, op1, target,
1660 unsignedp, methods);
1661 if (temp != 0)
1662 return temp;
1663 if (unsignedp)
1664 return expand_binop (mode, uoptab, op0, op1, target,
1665 unsignedp, methods);
1666 return 0;
1667 }
1668 \f
1669 /* Generate code to perform an operation specified by BINOPTAB
1670 on operands OP0 and OP1, with two results to TARG1 and TARG2.
1671 We assume that the order of the operands for the instruction
1672 is TARG0, OP0, OP1, TARG1, which would fit a pattern like
1673 [(set TARG0 (operate OP0 OP1)) (set TARG1 (operate ...))].
1674
1675 Either TARG0 or TARG1 may be zero, but what that means is that
1676 that result is not actually wanted. We will generate it into
1677 a dummy pseudo-reg and discard it. They may not both be zero.
1678
1679 Returns 1 if this operation can be performed; 0 if not. */
1680
1681 int
1682 expand_twoval_binop (binoptab, op0, op1, targ0, targ1, unsignedp)
1683 optab binoptab;
1684 rtx op0, op1;
1685 rtx targ0, targ1;
1686 int unsignedp;
1687 {
1688 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1);
1689 enum mode_class class;
1690 enum machine_mode wider_mode;
1691 rtx entry_last = get_last_insn ();
1692 rtx last;
1693
1694 class = GET_MODE_CLASS (mode);
1695
1696 op0 = protect_from_queue (op0, 0);
1697 op1 = protect_from_queue (op1, 0);
1698
1699 if (flag_force_mem)
1700 {
1701 op0 = force_not_mem (op0);
1702 op1 = force_not_mem (op1);
1703 }
1704
1705 /* If we are inside an appropriately-short loop and one operand is an
1706 expensive constant, force it into a register. */
1707 if (CONSTANT_P (op0) && preserve_subexpressions_p ()
1708 && rtx_cost (op0, binoptab->code) > 2)
1709 op0 = force_reg (mode, op0);
1710
1711 if (CONSTANT_P (op1) && preserve_subexpressions_p ()
1712 && rtx_cost (op1, binoptab->code) > 2)
1713 op1 = force_reg (mode, op1);
1714
1715 if (targ0)
1716 targ0 = protect_from_queue (targ0, 1);
1717 else
1718 targ0 = gen_reg_rtx (mode);
1719 if (targ1)
1720 targ1 = protect_from_queue (targ1, 1);
1721 else
1722 targ1 = gen_reg_rtx (mode);
1723
1724 /* Record where to go back to if we fail. */
1725 last = get_last_insn ();
1726
1727 if (binoptab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
1728 {
1729 int icode = (int) binoptab->handlers[(int) mode].insn_code;
1730 enum machine_mode mode0 = insn_operand_mode[icode][1];
1731 enum machine_mode mode1 = insn_operand_mode[icode][2];
1732 rtx pat;
1733 rtx xop0 = op0, xop1 = op1;
1734
1735 /* In case this insn wants input operands in modes different from the
1736 result, convert the operands. */
1737 if (GET_MODE (op0) != VOIDmode && GET_MODE (op0) != mode0)
1738 xop0 = convert_to_mode (mode0, xop0, unsignedp);
1739
1740 if (GET_MODE (op1) != VOIDmode && GET_MODE (op1) != mode1)
1741 xop1 = convert_to_mode (mode1, xop1, unsignedp);
1742
1743 /* Now, if insn doesn't accept these operands, put them into pseudos. */
1744 if (! (*insn_operand_predicate[icode][1]) (xop0, mode0))
1745 xop0 = copy_to_mode_reg (mode0, xop0);
1746
1747 if (! (*insn_operand_predicate[icode][2]) (xop1, mode1))
1748 xop1 = copy_to_mode_reg (mode1, xop1);
1749
1750 /* We could handle this, but we should always be called with a pseudo
1751 for our targets and all insns should take them as outputs. */
1752 if (! (*insn_operand_predicate[icode][0]) (targ0, mode)
1753 || ! (*insn_operand_predicate[icode][3]) (targ1, mode))
1754 abort ();
1755
1756 pat = GEN_FCN (icode) (targ0, xop0, xop1, targ1);
1757 if (pat)
1758 {
1759 emit_insn (pat);
1760 return 1;
1761 }
1762 else
1763 delete_insns_since (last);
1764 }
1765
1766 /* It can't be done in this mode. Can we do it in a wider mode? */
1767
1768 if (class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
1769 {
1770 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
1771 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
1772 {
1773 if (binoptab->handlers[(int) wider_mode].insn_code
1774 != CODE_FOR_nothing)
1775 {
1776 register rtx t0 = gen_reg_rtx (wider_mode);
1777 register rtx t1 = gen_reg_rtx (wider_mode);
1778
1779 if (expand_twoval_binop (binoptab,
1780 convert_modes (wider_mode, mode, op0,
1781 unsignedp),
1782 convert_modes (wider_mode, mode, op1,
1783 unsignedp),
1784 t0, t1, unsignedp))
1785 {
1786 convert_move (targ0, t0, unsignedp);
1787 convert_move (targ1, t1, unsignedp);
1788 return 1;
1789 }
1790 else
1791 delete_insns_since (last);
1792 }
1793 }
1794 }
1795
1796 delete_insns_since (entry_last);
1797 return 0;
1798 }
1799 \f
1800 /* Generate code to perform an operation specified by UNOPTAB
1801 on operand OP0, with result having machine-mode MODE.
1802
1803 UNSIGNEDP is for the case where we have to widen the operands
1804 to perform the operation. It says to use zero-extension.
1805
1806 If TARGET is nonzero, the value
1807 is generated there, if it is convenient to do so.
1808 In all cases an rtx is returned for the locus of the value;
1809 this may or may not be TARGET. */
1810
1811 rtx
1812 expand_unop (mode, unoptab, op0, target, unsignedp)
1813 enum machine_mode mode;
1814 optab unoptab;
1815 rtx op0;
1816 rtx target;
1817 int unsignedp;
1818 {
1819 enum mode_class class;
1820 enum machine_mode wider_mode;
1821 register rtx temp;
1822 rtx last = get_last_insn ();
1823 rtx pat;
1824
1825 class = GET_MODE_CLASS (mode);
1826
1827 op0 = protect_from_queue (op0, 0);
1828
1829 if (flag_force_mem)
1830 {
1831 op0 = force_not_mem (op0);
1832 }
1833
1834 if (target)
1835 target = protect_from_queue (target, 1);
1836
1837 if (unoptab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
1838 {
1839 int icode = (int) unoptab->handlers[(int) mode].insn_code;
1840 enum machine_mode mode0 = insn_operand_mode[icode][1];
1841 rtx xop0 = op0;
1842
1843 if (target)
1844 temp = target;
1845 else
1846 temp = gen_reg_rtx (mode);
1847
1848 if (GET_MODE (xop0) != VOIDmode
1849 && GET_MODE (xop0) != mode0)
1850 xop0 = convert_to_mode (mode0, xop0, unsignedp);
1851
1852 /* Now, if insn doesn't accept our operand, put it into a pseudo. */
1853
1854 if (! (*insn_operand_predicate[icode][1]) (xop0, mode0))
1855 xop0 = copy_to_mode_reg (mode0, xop0);
1856
1857 if (! (*insn_operand_predicate[icode][0]) (temp, mode))
1858 temp = gen_reg_rtx (mode);
1859
1860 pat = GEN_FCN (icode) (temp, xop0);
1861 if (pat)
1862 {
1863 if (GET_CODE (pat) == SEQUENCE
1864 && ! add_equal_note (pat, temp, unoptab->code, xop0, NULL_RTX))
1865 {
1866 delete_insns_since (last);
1867 return expand_unop (mode, unoptab, op0, NULL_RTX, unsignedp);
1868 }
1869
1870 emit_insn (pat);
1871
1872 return temp;
1873 }
1874 else
1875 delete_insns_since (last);
1876 }
1877
1878 /* It can't be done in this mode. Can we open-code it in a wider mode? */
1879
1880 if (class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
1881 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
1882 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
1883 {
1884 if (unoptab->handlers[(int) wider_mode].insn_code != CODE_FOR_nothing)
1885 {
1886 rtx xop0 = op0;
1887
1888 /* For certain operations, we need not actually extend
1889 the narrow operand, as long as we will truncate the
1890 results to the same narrowness. */
1891
1892 xop0 = widen_operand (xop0, wider_mode, mode, unsignedp,
1893 (unoptab == neg_optab
1894 || unoptab == one_cmpl_optab)
1895 && class == MODE_INT);
1896
1897 temp = expand_unop (wider_mode, unoptab, xop0, NULL_RTX,
1898 unsignedp);
1899
1900 if (temp)
1901 {
1902 if (class != MODE_INT)
1903 {
1904 if (target == 0)
1905 target = gen_reg_rtx (mode);
1906 convert_move (target, temp, 0);
1907 return target;
1908 }
1909 else
1910 return gen_lowpart (mode, temp);
1911 }
1912 else
1913 delete_insns_since (last);
1914 }
1915 }
1916
1917 /* These can be done a word at a time. */
1918 if (unoptab == one_cmpl_optab
1919 && class == MODE_INT
1920 && GET_MODE_SIZE (mode) > UNITS_PER_WORD
1921 && unoptab->handlers[(int) word_mode].insn_code != CODE_FOR_nothing)
1922 {
1923 int i;
1924 rtx insns;
1925
1926 if (target == 0 || target == op0)
1927 target = gen_reg_rtx (mode);
1928
1929 start_sequence ();
1930
1931 /* Do the actual arithmetic. */
1932 for (i = 0; i < GET_MODE_BITSIZE (mode) / BITS_PER_WORD; i++)
1933 {
1934 rtx target_piece = operand_subword (target, i, 1, mode);
1935 rtx x = expand_unop (word_mode, unoptab,
1936 operand_subword_force (op0, i, mode),
1937 target_piece, unsignedp);
1938 if (target_piece != x)
1939 emit_move_insn (target_piece, x);
1940 }
1941
1942 insns = get_insns ();
1943 end_sequence ();
1944
1945 emit_no_conflict_block (insns, target, op0, NULL_RTX,
1946 gen_rtx (unoptab->code, mode, copy_rtx (op0)));
1947 return target;
1948 }
1949
1950 /* Open-code the complex negation operation. */
1951 else if (unoptab == neg_optab
1952 && (class == MODE_COMPLEX_FLOAT || class == MODE_COMPLEX_INT))
1953 {
1954 rtx target_piece;
1955 rtx x;
1956 rtx seq;
1957
1958 /* Find the correct mode for the real and imaginary parts */
1959 enum machine_mode submode
1960 = mode_for_size (GET_MODE_UNIT_SIZE (mode) * BITS_PER_UNIT,
1961 class == MODE_COMPLEX_INT ? MODE_INT : MODE_FLOAT,
1962 0);
1963
1964 if (submode == BLKmode)
1965 abort ();
1966
1967 if (target == 0)
1968 target = gen_reg_rtx (mode);
1969
1970 start_sequence ();
1971
1972 target_piece = gen_imagpart (submode, target);
1973 x = expand_unop (submode, unoptab,
1974 gen_imagpart (submode, op0),
1975 target_piece, unsignedp);
1976 if (target_piece != x)
1977 emit_move_insn (target_piece, x);
1978
1979 target_piece = gen_realpart (submode, target);
1980 x = expand_unop (submode, unoptab,
1981 gen_realpart (submode, op0),
1982 target_piece, unsignedp);
1983 if (target_piece != x)
1984 emit_move_insn (target_piece, x);
1985
1986 seq = get_insns ();
1987 end_sequence ();
1988
1989 emit_no_conflict_block (seq, target, op0, 0,
1990 gen_rtx (unoptab->code, mode, copy_rtx (op0)));
1991 return target;
1992 }
1993
1994 /* Now try a library call in this mode. */
1995 if (unoptab->handlers[(int) mode].libfunc)
1996 {
1997 rtx insns;
1998 rtx funexp = unoptab->handlers[(int) mode].libfunc;
1999 rtx value;
2000
2001 start_sequence ();
2002
2003 /* Pass 1 for NO_QUEUE so we don't lose any increments
2004 if the libcall is cse'd or moved. */
2005 value = emit_library_call_value (unoptab->handlers[(int) mode].libfunc,
2006 NULL_RTX, 1, mode, 1, op0, mode);
2007 insns = get_insns ();
2008 end_sequence ();
2009
2010 target = gen_reg_rtx (mode);
2011 emit_libcall_block (insns, target, value,
2012 gen_rtx (unoptab->code, mode, op0));
2013
2014 return target;
2015 }
2016
2017 /* It can't be done in this mode. Can we do it in a wider mode? */
2018
2019 if (class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
2020 {
2021 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
2022 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2023 {
2024 if ((unoptab->handlers[(int) wider_mode].insn_code
2025 != CODE_FOR_nothing)
2026 || unoptab->handlers[(int) wider_mode].libfunc)
2027 {
2028 rtx xop0 = op0;
2029
2030 /* For certain operations, we need not actually extend
2031 the narrow operand, as long as we will truncate the
2032 results to the same narrowness. */
2033
2034 xop0 = widen_operand (xop0, wider_mode, mode, unsignedp,
2035 (unoptab == neg_optab
2036 || unoptab == one_cmpl_optab)
2037 && class == MODE_INT);
2038
2039 temp = expand_unop (wider_mode, unoptab, xop0, NULL_RTX,
2040 unsignedp);
2041
2042 if (temp)
2043 {
2044 if (class != MODE_INT)
2045 {
2046 if (target == 0)
2047 target = gen_reg_rtx (mode);
2048 convert_move (target, temp, 0);
2049 return target;
2050 }
2051 else
2052 return gen_lowpart (mode, temp);
2053 }
2054 else
2055 delete_insns_since (last);
2056 }
2057 }
2058 }
2059
2060 /* If there is no negate operation, try doing a subtract from zero.
2061 The US Software GOFAST library needs this. */
2062 if (unoptab == neg_optab)
2063 {
2064 rtx temp;
2065 temp = expand_binop (mode, sub_optab, CONST0_RTX (mode), op0,
2066 target, unsignedp, OPTAB_LIB_WIDEN);
2067 if (temp)
2068 return temp;
2069 }
2070
2071 return 0;
2072 }
2073 \f
2074 /* Emit code to compute the absolute value of OP0, with result to
2075 TARGET if convenient. (TARGET may be 0.) The return value says
2076 where the result actually is to be found.
2077
2078 MODE is the mode of the operand; the mode of the result is
2079 different but can be deduced from MODE.
2080
2081 UNSIGNEDP is relevant if extension is needed. */
2082
2083 rtx
2084 expand_abs (mode, op0, target, unsignedp, safe)
2085 enum machine_mode mode;
2086 rtx op0;
2087 rtx target;
2088 int unsignedp;
2089 int safe;
2090 {
2091 rtx temp, op1;
2092
2093 /* First try to do it with a special abs instruction. */
2094 temp = expand_unop (mode, abs_optab, op0, target, 0);
2095 if (temp != 0)
2096 return temp;
2097
2098 /* If this machine has expensive jumps, we can do integer absolute
2099 value of X as (((signed) x >> (W-1)) ^ x) - ((signed) x >> (W-1)),
2100 where W is the width of MODE. */
2101
2102 if (GET_MODE_CLASS (mode) == MODE_INT && BRANCH_COST >= 2)
2103 {
2104 rtx extended = expand_shift (RSHIFT_EXPR, mode, op0,
2105 size_int (GET_MODE_BITSIZE (mode) - 1),
2106 NULL_RTX, 0);
2107
2108 temp = expand_binop (mode, xor_optab, extended, op0, target, 0,
2109 OPTAB_LIB_WIDEN);
2110 if (temp != 0)
2111 temp = expand_binop (mode, sub_optab, temp, extended, target, 0,
2112 OPTAB_LIB_WIDEN);
2113
2114 if (temp != 0)
2115 return temp;
2116 }
2117
2118 /* If that does not win, use conditional jump and negate. */
2119 op1 = gen_label_rtx ();
2120 if (target == 0 || ! safe
2121 || GET_MODE (target) != mode
2122 || (GET_CODE (target) == MEM && MEM_VOLATILE_P (target))
2123 || (GET_CODE (target) == REG
2124 && REGNO (target) < FIRST_PSEUDO_REGISTER))
2125 target = gen_reg_rtx (mode);
2126
2127 emit_move_insn (target, op0);
2128 NO_DEFER_POP;
2129
2130 /* If this mode is an integer too wide to compare properly,
2131 compare word by word. Rely on CSE to optimize constant cases. */
2132 if (GET_MODE_CLASS (mode) == MODE_INT && ! can_compare_p (mode))
2133 do_jump_by_parts_greater_rtx (mode, 0, target, const0_rtx,
2134 NULL_RTX, op1);
2135 else
2136 {
2137 temp = compare_from_rtx (target, CONST0_RTX (mode), GE, 0, mode,
2138 NULL_RTX, 0);
2139 if (temp == const1_rtx)
2140 return target;
2141 else if (temp != const0_rtx)
2142 {
2143 if (bcc_gen_fctn[(int) GET_CODE (temp)] != 0)
2144 emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op1));
2145 else
2146 abort ();
2147 }
2148 }
2149
2150 op0 = expand_unop (mode, neg_optab, target, target, 0);
2151 if (op0 != target)
2152 emit_move_insn (target, op0);
2153 emit_label (op1);
2154 OK_DEFER_POP;
2155 return target;
2156 }
2157 \f
2158 /* Emit code to compute the absolute value of OP0, with result to
2159 TARGET if convenient. (TARGET may be 0.) The return value says
2160 where the result actually is to be found.
2161
2162 MODE is the mode of the operand; the mode of the result is
2163 different but can be deduced from MODE.
2164
2165 UNSIGNEDP is relevant for complex integer modes. */
2166
2167 rtx
2168 expand_complex_abs (mode, op0, target, unsignedp)
2169 enum machine_mode mode;
2170 rtx op0;
2171 rtx target;
2172 int unsignedp;
2173 {
2174 enum mode_class class = GET_MODE_CLASS (mode);
2175 enum machine_mode wider_mode;
2176 register rtx temp;
2177 rtx entry_last = get_last_insn ();
2178 rtx last;
2179 rtx pat;
2180
2181 /* Find the correct mode for the real and imaginary parts. */
2182 enum machine_mode submode
2183 = mode_for_size (GET_MODE_UNIT_SIZE (mode) * BITS_PER_UNIT,
2184 class == MODE_COMPLEX_INT ? MODE_INT : MODE_FLOAT,
2185 0);
2186
2187 if (submode == BLKmode)
2188 abort ();
2189
2190 op0 = protect_from_queue (op0, 0);
2191
2192 if (flag_force_mem)
2193 {
2194 op0 = force_not_mem (op0);
2195 }
2196
2197 last = get_last_insn ();
2198
2199 if (target)
2200 target = protect_from_queue (target, 1);
2201
2202 if (abs_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
2203 {
2204 int icode = (int) abs_optab->handlers[(int) mode].insn_code;
2205 enum machine_mode mode0 = insn_operand_mode[icode][1];
2206 rtx xop0 = op0;
2207
2208 if (target)
2209 temp = target;
2210 else
2211 temp = gen_reg_rtx (submode);
2212
2213 if (GET_MODE (xop0) != VOIDmode
2214 && GET_MODE (xop0) != mode0)
2215 xop0 = convert_to_mode (mode0, xop0, unsignedp);
2216
2217 /* Now, if insn doesn't accept our operand, put it into a pseudo. */
2218
2219 if (! (*insn_operand_predicate[icode][1]) (xop0, mode0))
2220 xop0 = copy_to_mode_reg (mode0, xop0);
2221
2222 if (! (*insn_operand_predicate[icode][0]) (temp, submode))
2223 temp = gen_reg_rtx (submode);
2224
2225 pat = GEN_FCN (icode) (temp, xop0);
2226 if (pat)
2227 {
2228 if (GET_CODE (pat) == SEQUENCE
2229 && ! add_equal_note (pat, temp, abs_optab->code, xop0, NULL_RTX))
2230 {
2231 delete_insns_since (last);
2232 return expand_unop (mode, abs_optab, op0, NULL_RTX, unsignedp);
2233 }
2234
2235 emit_insn (pat);
2236
2237 return temp;
2238 }
2239 else
2240 delete_insns_since (last);
2241 }
2242
2243 /* It can't be done in this mode. Can we open-code it in a wider mode? */
2244
2245 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
2246 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2247 {
2248 if (abs_optab->handlers[(int) wider_mode].insn_code != CODE_FOR_nothing)
2249 {
2250 rtx xop0 = op0;
2251
2252 xop0 = convert_modes (wider_mode, mode, xop0, unsignedp);
2253 temp = expand_complex_abs (wider_mode, xop0, NULL_RTX, unsignedp);
2254
2255 if (temp)
2256 {
2257 if (class != MODE_COMPLEX_INT)
2258 {
2259 if (target == 0)
2260 target = gen_reg_rtx (submode);
2261 convert_move (target, temp, 0);
2262 return target;
2263 }
2264 else
2265 return gen_lowpart (submode, temp);
2266 }
2267 else
2268 delete_insns_since (last);
2269 }
2270 }
2271
2272 /* Open-code the complex absolute-value operation
2273 if we can open-code sqrt. Otherwise it's not worth while. */
2274 if (sqrt_optab->handlers[(int) submode].insn_code != CODE_FOR_nothing)
2275 {
2276 rtx real, imag, total;
2277
2278 real = gen_realpart (submode, op0);
2279 imag = gen_imagpart (submode, op0);
2280
2281 /* Square both parts. */
2282 real = expand_mult (submode, real, real, NULL_RTX, 0);
2283 imag = expand_mult (submode, imag, imag, NULL_RTX, 0);
2284
2285 /* Sum the parts. */
2286 total = expand_binop (submode, add_optab, real, imag, NULL_RTX,
2287 0, OPTAB_LIB_WIDEN);
2288
2289 /* Get sqrt in TARGET. Set TARGET to where the result is. */
2290 target = expand_unop (submode, sqrt_optab, total, target, 0);
2291 if (target == 0)
2292 delete_insns_since (last);
2293 else
2294 return target;
2295 }
2296
2297 /* Now try a library call in this mode. */
2298 if (abs_optab->handlers[(int) mode].libfunc)
2299 {
2300 rtx insns;
2301 rtx funexp = abs_optab->handlers[(int) mode].libfunc;
2302 rtx value;
2303
2304 start_sequence ();
2305
2306 /* Pass 1 for NO_QUEUE so we don't lose any increments
2307 if the libcall is cse'd or moved. */
2308 value = emit_library_call_value (abs_optab->handlers[(int) mode].libfunc,
2309 NULL_RTX, 1, submode, 1, op0, mode);
2310 insns = get_insns ();
2311 end_sequence ();
2312
2313 target = gen_reg_rtx (submode);
2314 emit_libcall_block (insns, target, value,
2315 gen_rtx (abs_optab->code, mode, op0));
2316
2317 return target;
2318 }
2319
2320 /* It can't be done in this mode. Can we do it in a wider mode? */
2321
2322 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
2323 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2324 {
2325 if ((abs_optab->handlers[(int) wider_mode].insn_code
2326 != CODE_FOR_nothing)
2327 || abs_optab->handlers[(int) wider_mode].libfunc)
2328 {
2329 rtx xop0 = op0;
2330
2331 xop0 = convert_modes (wider_mode, mode, xop0, unsignedp);
2332
2333 temp = expand_complex_abs (wider_mode, xop0, NULL_RTX, unsignedp);
2334
2335 if (temp)
2336 {
2337 if (class != MODE_COMPLEX_INT)
2338 {
2339 if (target == 0)
2340 target = gen_reg_rtx (submode);
2341 convert_move (target, temp, 0);
2342 return target;
2343 }
2344 else
2345 return gen_lowpart (submode, temp);
2346 }
2347 else
2348 delete_insns_since (last);
2349 }
2350 }
2351
2352 delete_insns_since (entry_last);
2353 return 0;
2354 }
2355 \f
2356 /* Generate an instruction whose insn-code is INSN_CODE,
2357 with two operands: an output TARGET and an input OP0.
2358 TARGET *must* be nonzero, and the output is always stored there.
2359 CODE is an rtx code such that (CODE OP0) is an rtx that describes
2360 the value that is stored into TARGET. */
2361
2362 void
2363 emit_unop_insn (icode, target, op0, code)
2364 int icode;
2365 rtx target;
2366 rtx op0;
2367 enum rtx_code code;
2368 {
2369 register rtx temp;
2370 enum machine_mode mode0 = insn_operand_mode[icode][1];
2371 rtx pat;
2372
2373 temp = target = protect_from_queue (target, 1);
2374
2375 op0 = protect_from_queue (op0, 0);
2376
2377 /* Sign extension from memory is often done specially on RISC
2378 machines, so forcing into a register here can pessimize code. */
2379 if (flag_force_mem && code != SIGN_EXTEND)
2380 op0 = force_not_mem (op0);
2381
2382 /* Now, if insn does not accept our operands, put them into pseudos. */
2383
2384 if (! (*insn_operand_predicate[icode][1]) (op0, mode0))
2385 op0 = copy_to_mode_reg (mode0, op0);
2386
2387 if (! (*insn_operand_predicate[icode][0]) (temp, GET_MODE (temp))
2388 || (flag_force_mem && GET_CODE (temp) == MEM))
2389 temp = gen_reg_rtx (GET_MODE (temp));
2390
2391 pat = GEN_FCN (icode) (temp, op0);
2392
2393 if (GET_CODE (pat) == SEQUENCE && code != UNKNOWN)
2394 add_equal_note (pat, temp, code, op0, NULL_RTX);
2395
2396 emit_insn (pat);
2397
2398 if (temp != target)
2399 emit_move_insn (target, temp);
2400 }
2401 \f
2402 /* Emit code to perform a series of operations on a multi-word quantity, one
2403 word at a time.
2404
2405 Such a block is preceded by a CLOBBER of the output, consists of multiple
2406 insns, each setting one word of the output, and followed by a SET copying
2407 the output to itself.
2408
2409 Each of the insns setting words of the output receives a REG_NO_CONFLICT
2410 note indicating that it doesn't conflict with the (also multi-word)
2411 inputs. The entire block is surrounded by REG_LIBCALL and REG_RETVAL
2412 notes.
2413
2414 INSNS is a block of code generated to perform the operation, not including
2415 the CLOBBER and final copy. All insns that compute intermediate values
2416 are first emitted, followed by the block as described above.
2417
2418 TARGET, OP0, and OP1 are the output and inputs of the operations,
2419 respectively. OP1 may be zero for a unary operation.
2420
2421 EQUIV, if non-zero, is an expression to be placed into a REG_EQUAL note
2422 on the last insn.
2423
2424 If TARGET is not a register, INSNS is simply emitted with no special
2425 processing. Likewise if anything in INSNS is not an INSN or if
2426 there is a libcall block inside INSNS.
2427
2428 The final insn emitted is returned. */
2429
2430 rtx
2431 emit_no_conflict_block (insns, target, op0, op1, equiv)
2432 rtx insns;
2433 rtx target;
2434 rtx op0, op1;
2435 rtx equiv;
2436 {
2437 rtx prev, next, first, last, insn;
2438
2439 if (GET_CODE (target) != REG || reload_in_progress)
2440 return emit_insns (insns);
2441 else
2442 for (insn = insns; insn; insn = NEXT_INSN (insn))
2443 if (GET_CODE (insn) != INSN
2444 || find_reg_note (insn, REG_LIBCALL, NULL_RTX))
2445 return emit_insns (insns);
2446
2447 /* First emit all insns that do not store into words of the output and remove
2448 these from the list. */
2449 for (insn = insns; insn; insn = next)
2450 {
2451 rtx set = 0;
2452 int i;
2453
2454 next = NEXT_INSN (insn);
2455
2456 if (GET_CODE (PATTERN (insn)) == SET)
2457 set = PATTERN (insn);
2458 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
2459 {
2460 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
2461 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
2462 {
2463 set = XVECEXP (PATTERN (insn), 0, i);
2464 break;
2465 }
2466 }
2467
2468 if (set == 0)
2469 abort ();
2470
2471 if (! reg_overlap_mentioned_p (target, SET_DEST (set)))
2472 {
2473 if (PREV_INSN (insn))
2474 NEXT_INSN (PREV_INSN (insn)) = next;
2475 else
2476 insns = next;
2477
2478 if (next)
2479 PREV_INSN (next) = PREV_INSN (insn);
2480
2481 add_insn (insn);
2482 }
2483 }
2484
2485 prev = get_last_insn ();
2486
2487 /* Now write the CLOBBER of the output, followed by the setting of each
2488 of the words, followed by the final copy. */
2489 if (target != op0 && target != op1)
2490 emit_insn (gen_rtx (CLOBBER, VOIDmode, target));
2491
2492 for (insn = insns; insn; insn = next)
2493 {
2494 next = NEXT_INSN (insn);
2495 add_insn (insn);
2496
2497 if (op1 && GET_CODE (op1) == REG)
2498 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_NO_CONFLICT, op1,
2499 REG_NOTES (insn));
2500
2501 if (op0 && GET_CODE (op0) == REG)
2502 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_NO_CONFLICT, op0,
2503 REG_NOTES (insn));
2504 }
2505
2506 if (mov_optab->handlers[(int) GET_MODE (target)].insn_code
2507 != CODE_FOR_nothing)
2508 {
2509 last = emit_move_insn (target, target);
2510 if (equiv)
2511 REG_NOTES (last)
2512 = gen_rtx (EXPR_LIST, REG_EQUAL, equiv, REG_NOTES (last));
2513 }
2514 else
2515 last = get_last_insn ();
2516
2517 if (prev == 0)
2518 first = get_insns ();
2519 else
2520 first = NEXT_INSN (prev);
2521
2522 /* Encapsulate the block so it gets manipulated as a unit. */
2523 REG_NOTES (first) = gen_rtx (INSN_LIST, REG_LIBCALL, last,
2524 REG_NOTES (first));
2525 REG_NOTES (last) = gen_rtx (INSN_LIST, REG_RETVAL, first, REG_NOTES (last));
2526
2527 return last;
2528 }
2529 \f
2530 /* Emit code to make a call to a constant function or a library call.
2531
2532 INSNS is a list containing all insns emitted in the call.
2533 These insns leave the result in RESULT. Our block is to copy RESULT
2534 to TARGET, which is logically equivalent to EQUIV.
2535
2536 We first emit any insns that set a pseudo on the assumption that these are
2537 loading constants into registers; doing so allows them to be safely cse'ed
2538 between blocks. Then we emit all the other insns in the block, followed by
2539 an insn to move RESULT to TARGET. This last insn will have a REQ_EQUAL
2540 note with an operand of EQUIV.
2541
2542 Moving assignments to pseudos outside of the block is done to improve
2543 the generated code, but is not required to generate correct code,
2544 hence being unable to move an assignment is not grounds for not making
2545 a libcall block. There are two reasons why it is safe to leave these
2546 insns inside the block: First, we know that these pseudos cannot be
2547 used in generated RTL outside the block since they are created for
2548 temporary purposes within the block. Second, CSE will not record the
2549 values of anything set inside a libcall block, so we know they must
2550 be dead at the end of the block.
2551
2552 Except for the first group of insns (the ones setting pseudos), the
2553 block is delimited by REG_RETVAL and REG_LIBCALL notes. */
2554
2555 void
2556 emit_libcall_block (insns, target, result, equiv)
2557 rtx insns;
2558 rtx target;
2559 rtx result;
2560 rtx equiv;
2561 {
2562 rtx prev, next, first, last, insn;
2563
2564 /* First emit all insns that set pseudos. Remove them from the list as
2565 we go. Avoid insns that set pseudos which were referenced in previous
2566 insns. These can be generated by move_by_pieces, for example,
2567 to update an address. Similarly, avoid insns that reference things
2568 set in previous insns. */
2569
2570 for (insn = insns; insn; insn = next)
2571 {
2572 rtx set = single_set (insn);
2573
2574 next = NEXT_INSN (insn);
2575
2576 if (set != 0 && GET_CODE (SET_DEST (set)) == REG
2577 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER
2578 && (insn == insns
2579 || (! reg_mentioned_p (SET_DEST (set), PATTERN (insns))
2580 && ! reg_used_between_p (SET_DEST (set), insns, insn)
2581 && ! modified_in_p (SET_SRC (set), insns)
2582 && ! modified_between_p (SET_SRC (set), insns, insn))))
2583 {
2584 if (PREV_INSN (insn))
2585 NEXT_INSN (PREV_INSN (insn)) = next;
2586 else
2587 insns = next;
2588
2589 if (next)
2590 PREV_INSN (next) = PREV_INSN (insn);
2591
2592 add_insn (insn);
2593 }
2594 }
2595
2596 prev = get_last_insn ();
2597
2598 /* Write the remaining insns followed by the final copy. */
2599
2600 for (insn = insns; insn; insn = next)
2601 {
2602 next = NEXT_INSN (insn);
2603
2604 add_insn (insn);
2605 }
2606
2607 last = emit_move_insn (target, result);
2608 REG_NOTES (last) = gen_rtx (EXPR_LIST,
2609 REG_EQUAL, copy_rtx (equiv), REG_NOTES (last));
2610
2611 if (prev == 0)
2612 first = get_insns ();
2613 else
2614 first = NEXT_INSN (prev);
2615
2616 /* Encapsulate the block so it gets manipulated as a unit. */
2617 REG_NOTES (first) = gen_rtx (INSN_LIST, REG_LIBCALL, last,
2618 REG_NOTES (first));
2619 REG_NOTES (last) = gen_rtx (INSN_LIST, REG_RETVAL, first, REG_NOTES (last));
2620 }
2621 \f
2622 /* Generate code to store zero in X. */
2623
2624 void
2625 emit_clr_insn (x)
2626 rtx x;
2627 {
2628 emit_move_insn (x, const0_rtx);
2629 }
2630
2631 /* Generate code to store 1 in X
2632 assuming it contains zero beforehand. */
2633
2634 void
2635 emit_0_to_1_insn (x)
2636 rtx x;
2637 {
2638 emit_move_insn (x, const1_rtx);
2639 }
2640
2641 /* Generate code to compare X with Y
2642 so that the condition codes are set.
2643
2644 MODE is the mode of the inputs (in case they are const_int).
2645 UNSIGNEDP nonzero says that X and Y are unsigned;
2646 this matters if they need to be widened.
2647
2648 If they have mode BLKmode, then SIZE specifies the size of both X and Y,
2649 and ALIGN specifies the known shared alignment of X and Y.
2650
2651 COMPARISON is the rtl operator to compare with (EQ, NE, GT, etc.).
2652 It is ignored for fixed-point and block comparisons;
2653 it is used only for floating-point comparisons. */
2654
2655 void
2656 emit_cmp_insn (x, y, comparison, size, mode, unsignedp, align)
2657 rtx x, y;
2658 enum rtx_code comparison;
2659 rtx size;
2660 enum machine_mode mode;
2661 int unsignedp;
2662 int align;
2663 {
2664 enum mode_class class;
2665 enum machine_mode wider_mode;
2666
2667 class = GET_MODE_CLASS (mode);
2668
2669 /* They could both be VOIDmode if both args are immediate constants,
2670 but we should fold that at an earlier stage.
2671 With no special code here, this will call abort,
2672 reminding the programmer to implement such folding. */
2673
2674 if (mode != BLKmode && flag_force_mem)
2675 {
2676 x = force_not_mem (x);
2677 y = force_not_mem (y);
2678 }
2679
2680 /* If we are inside an appropriately-short loop and one operand is an
2681 expensive constant, force it into a register. */
2682 if (CONSTANT_P (x) && preserve_subexpressions_p () && rtx_cost (x, COMPARE) > 2)
2683 x = force_reg (mode, x);
2684
2685 if (CONSTANT_P (y) && preserve_subexpressions_p () && rtx_cost (y, COMPARE) > 2)
2686 y = force_reg (mode, y);
2687
2688 /* Don't let both operands fail to indicate the mode. */
2689 if (GET_MODE (x) == VOIDmode && GET_MODE (y) == VOIDmode)
2690 x = force_reg (mode, x);
2691
2692 /* Handle all BLKmode compares. */
2693
2694 if (mode == BLKmode)
2695 {
2696 emit_queue ();
2697 x = protect_from_queue (x, 0);
2698 y = protect_from_queue (y, 0);
2699
2700 if (size == 0)
2701 abort ();
2702 #ifdef HAVE_cmpstrqi
2703 if (HAVE_cmpstrqi
2704 && GET_CODE (size) == CONST_INT
2705 && INTVAL (size) < (1 << GET_MODE_BITSIZE (QImode)))
2706 {
2707 enum machine_mode result_mode
2708 = insn_operand_mode[(int) CODE_FOR_cmpstrqi][0];
2709 rtx result = gen_reg_rtx (result_mode);
2710 emit_insn (gen_cmpstrqi (result, x, y, size, GEN_INT (align)));
2711 emit_cmp_insn (result, const0_rtx, comparison, NULL_RTX,
2712 result_mode, 0, 0);
2713 }
2714 else
2715 #endif
2716 #ifdef HAVE_cmpstrhi
2717 if (HAVE_cmpstrhi
2718 && GET_CODE (size) == CONST_INT
2719 && INTVAL (size) < (1 << GET_MODE_BITSIZE (HImode)))
2720 {
2721 enum machine_mode result_mode
2722 = insn_operand_mode[(int) CODE_FOR_cmpstrhi][0];
2723 rtx result = gen_reg_rtx (result_mode);
2724 emit_insn (gen_cmpstrhi (result, x, y, size, GEN_INT (align)));
2725 emit_cmp_insn (result, const0_rtx, comparison, NULL_RTX,
2726 result_mode, 0, 0);
2727 }
2728 else
2729 #endif
2730 #ifdef HAVE_cmpstrsi
2731 if (HAVE_cmpstrsi)
2732 {
2733 enum machine_mode result_mode
2734 = insn_operand_mode[(int) CODE_FOR_cmpstrsi][0];
2735 rtx result = gen_reg_rtx (result_mode);
2736 size = protect_from_queue (size, 0);
2737 emit_insn (gen_cmpstrsi (result, x, y,
2738 convert_to_mode (SImode, size, 1),
2739 GEN_INT (align)));
2740 emit_cmp_insn (result, const0_rtx, comparison, NULL_RTX,
2741 result_mode, 0, 0);
2742 }
2743 else
2744 #endif
2745 {
2746 #ifdef TARGET_MEM_FUNCTIONS
2747 emit_library_call (memcmp_libfunc, 0,
2748 TYPE_MODE (integer_type_node), 3,
2749 XEXP (x, 0), Pmode, XEXP (y, 0), Pmode,
2750 convert_to_mode (TYPE_MODE (sizetype), size,
2751 TREE_UNSIGNED (sizetype)),
2752 TYPE_MODE (sizetype));
2753 #else
2754 emit_library_call (bcmp_libfunc, 0,
2755 TYPE_MODE (integer_type_node), 3,
2756 XEXP (x, 0), Pmode, XEXP (y, 0), Pmode,
2757 convert_to_mode (TYPE_MODE (integer_type_node),
2758 size,
2759 TREE_UNSIGNED (integer_type_node)),
2760 TYPE_MODE (integer_type_node));
2761 #endif
2762 emit_cmp_insn (hard_libcall_value (TYPE_MODE (integer_type_node)),
2763 const0_rtx, comparison, NULL_RTX,
2764 TYPE_MODE (integer_type_node), 0, 0);
2765 }
2766 return;
2767 }
2768
2769 /* Handle some compares against zero. */
2770
2771 if (y == CONST0_RTX (mode)
2772 && tst_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
2773 {
2774 int icode = (int) tst_optab->handlers[(int) mode].insn_code;
2775
2776 emit_queue ();
2777 x = protect_from_queue (x, 0);
2778 y = protect_from_queue (y, 0);
2779
2780 /* Now, if insn does accept these operands, put them into pseudos. */
2781 if (! (*insn_operand_predicate[icode][0])
2782 (x, insn_operand_mode[icode][0]))
2783 x = copy_to_mode_reg (insn_operand_mode[icode][0], x);
2784
2785 emit_insn (GEN_FCN (icode) (x));
2786 return;
2787 }
2788
2789 /* Handle compares for which there is a directly suitable insn. */
2790
2791 if (cmp_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
2792 {
2793 int icode = (int) cmp_optab->handlers[(int) mode].insn_code;
2794
2795 emit_queue ();
2796 x = protect_from_queue (x, 0);
2797 y = protect_from_queue (y, 0);
2798
2799 /* Now, if insn doesn't accept these operands, put them into pseudos. */
2800 if (! (*insn_operand_predicate[icode][0])
2801 (x, insn_operand_mode[icode][0]))
2802 x = copy_to_mode_reg (insn_operand_mode[icode][0], x);
2803
2804 if (! (*insn_operand_predicate[icode][1])
2805 (y, insn_operand_mode[icode][1]))
2806 y = copy_to_mode_reg (insn_operand_mode[icode][1], y);
2807
2808 emit_insn (GEN_FCN (icode) (x, y));
2809 return;
2810 }
2811
2812 /* Try widening if we can find a direct insn that way. */
2813
2814 if (class == MODE_INT || class == MODE_FLOAT || class == MODE_COMPLEX_FLOAT)
2815 {
2816 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
2817 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
2818 {
2819 if (cmp_optab->handlers[(int) wider_mode].insn_code
2820 != CODE_FOR_nothing)
2821 {
2822 x = protect_from_queue (x, 0);
2823 y = protect_from_queue (y, 0);
2824 x = convert_modes (wider_mode, mode, x, unsignedp);
2825 y = convert_modes (wider_mode, mode, y, unsignedp);
2826 emit_cmp_insn (x, y, comparison, NULL_RTX,
2827 wider_mode, unsignedp, align);
2828 return;
2829 }
2830 }
2831 }
2832
2833 /* Handle a lib call just for the mode we are using. */
2834
2835 if (cmp_optab->handlers[(int) mode].libfunc
2836 && class != MODE_FLOAT)
2837 {
2838 rtx libfunc = cmp_optab->handlers[(int) mode].libfunc;
2839 /* If we want unsigned, and this mode has a distinct unsigned
2840 comparison routine, use that. */
2841 if (unsignedp && ucmp_optab->handlers[(int) mode].libfunc)
2842 libfunc = ucmp_optab->handlers[(int) mode].libfunc;
2843
2844 emit_library_call (libfunc, 1,
2845 word_mode, 2, x, mode, y, mode);
2846
2847 /* Integer comparison returns a result that must be compared against 1,
2848 so that even if we do an unsigned compare afterward,
2849 there is still a value that can represent the result "less than". */
2850
2851 emit_cmp_insn (hard_libcall_value (word_mode), const1_rtx,
2852 comparison, NULL_RTX, word_mode, unsignedp, 0);
2853 return;
2854 }
2855
2856 if (class == MODE_FLOAT)
2857 emit_float_lib_cmp (x, y, comparison);
2858
2859 else
2860 abort ();
2861 }
2862
2863 /* Nonzero if a compare of mode MODE can be done straightforwardly
2864 (without splitting it into pieces). */
2865
2866 int
2867 can_compare_p (mode)
2868 enum machine_mode mode;
2869 {
2870 do
2871 {
2872 if (cmp_optab->handlers[(int)mode].insn_code != CODE_FOR_nothing)
2873 return 1;
2874 mode = GET_MODE_WIDER_MODE (mode);
2875 } while (mode != VOIDmode);
2876
2877 return 0;
2878 }
2879 \f
2880 /* Emit a library call comparison between floating point X and Y.
2881 COMPARISON is the rtl operator to compare with (EQ, NE, GT, etc.). */
2882
2883 void
2884 emit_float_lib_cmp (x, y, comparison)
2885 rtx x, y;
2886 enum rtx_code comparison;
2887 {
2888 enum machine_mode mode = GET_MODE (x);
2889 rtx libfunc = 0;
2890
2891 if (mode == HFmode)
2892 switch (comparison)
2893 {
2894 case EQ:
2895 libfunc = eqhf2_libfunc;
2896 break;
2897
2898 case NE:
2899 libfunc = nehf2_libfunc;
2900 break;
2901
2902 case GT:
2903 libfunc = gthf2_libfunc;
2904 break;
2905
2906 case GE:
2907 libfunc = gehf2_libfunc;
2908 break;
2909
2910 case LT:
2911 libfunc = lthf2_libfunc;
2912 break;
2913
2914 case LE:
2915 libfunc = lehf2_libfunc;
2916 break;
2917 }
2918 else if (mode == SFmode)
2919 switch (comparison)
2920 {
2921 case EQ:
2922 libfunc = eqsf2_libfunc;
2923 break;
2924
2925 case NE:
2926 libfunc = nesf2_libfunc;
2927 break;
2928
2929 case GT:
2930 libfunc = gtsf2_libfunc;
2931 break;
2932
2933 case GE:
2934 libfunc = gesf2_libfunc;
2935 break;
2936
2937 case LT:
2938 libfunc = ltsf2_libfunc;
2939 break;
2940
2941 case LE:
2942 libfunc = lesf2_libfunc;
2943 break;
2944 }
2945 else if (mode == DFmode)
2946 switch (comparison)
2947 {
2948 case EQ:
2949 libfunc = eqdf2_libfunc;
2950 break;
2951
2952 case NE:
2953 libfunc = nedf2_libfunc;
2954 break;
2955
2956 case GT:
2957 libfunc = gtdf2_libfunc;
2958 break;
2959
2960 case GE:
2961 libfunc = gedf2_libfunc;
2962 break;
2963
2964 case LT:
2965 libfunc = ltdf2_libfunc;
2966 break;
2967
2968 case LE:
2969 libfunc = ledf2_libfunc;
2970 break;
2971 }
2972 else if (mode == XFmode)
2973 switch (comparison)
2974 {
2975 case EQ:
2976 libfunc = eqxf2_libfunc;
2977 break;
2978
2979 case NE:
2980 libfunc = nexf2_libfunc;
2981 break;
2982
2983 case GT:
2984 libfunc = gtxf2_libfunc;
2985 break;
2986
2987 case GE:
2988 libfunc = gexf2_libfunc;
2989 break;
2990
2991 case LT:
2992 libfunc = ltxf2_libfunc;
2993 break;
2994
2995 case LE:
2996 libfunc = lexf2_libfunc;
2997 break;
2998 }
2999 else if (mode == TFmode)
3000 switch (comparison)
3001 {
3002 case EQ:
3003 libfunc = eqtf2_libfunc;
3004 break;
3005
3006 case NE:
3007 libfunc = netf2_libfunc;
3008 break;
3009
3010 case GT:
3011 libfunc = gttf2_libfunc;
3012 break;
3013
3014 case GE:
3015 libfunc = getf2_libfunc;
3016 break;
3017
3018 case LT:
3019 libfunc = lttf2_libfunc;
3020 break;
3021
3022 case LE:
3023 libfunc = letf2_libfunc;
3024 break;
3025 }
3026 else
3027 {
3028 enum machine_mode wider_mode;
3029
3030 for (wider_mode = GET_MODE_WIDER_MODE (mode); wider_mode != VOIDmode;
3031 wider_mode = GET_MODE_WIDER_MODE (wider_mode))
3032 {
3033 if ((cmp_optab->handlers[(int) wider_mode].insn_code
3034 != CODE_FOR_nothing)
3035 || (cmp_optab->handlers[(int) wider_mode].libfunc != 0))
3036 {
3037 x = protect_from_queue (x, 0);
3038 y = protect_from_queue (y, 0);
3039 x = convert_to_mode (wider_mode, x, 0);
3040 y = convert_to_mode (wider_mode, y, 0);
3041 emit_float_lib_cmp (x, y, comparison);
3042 return;
3043 }
3044 }
3045 abort ();
3046 }
3047
3048 if (libfunc == 0)
3049 abort ();
3050
3051 emit_library_call (libfunc, 1,
3052 word_mode, 2, x, mode, y, mode);
3053
3054 emit_cmp_insn (hard_libcall_value (word_mode), const0_rtx, comparison,
3055 NULL_RTX, word_mode, 0, 0);
3056 }
3057 \f
3058 /* Generate code to indirectly jump to a location given in the rtx LOC. */
3059
3060 void
3061 emit_indirect_jump (loc)
3062 rtx loc;
3063 {
3064 if (! ((*insn_operand_predicate[(int)CODE_FOR_indirect_jump][0])
3065 (loc, Pmode)))
3066 loc = copy_to_mode_reg (Pmode, loc);
3067
3068 emit_jump_insn (gen_indirect_jump (loc));
3069 emit_barrier ();
3070 }
3071 \f
3072 #ifdef HAVE_conditional_move
3073
3074 /* Emit a conditional move instruction if the machine supports one for that
3075 condition and machine mode.
3076
3077 OP0 and OP1 are the operands that should be compared using CODE. CMODE is
3078 the mode to use should they be constants. If it is VOIDmode, they cannot
3079 both be constants.
3080
3081 OP2 should be stored in TARGET if the comparison is true, otherwise OP3
3082 should be stored there. MODE is the mode to use should they be constants.
3083 If it is VOIDmode, they cannot both be constants.
3084
3085 The result is either TARGET (perhaps modified) or NULL_RTX if the operation
3086 is not supported. */
3087
3088 rtx
3089 emit_conditional_move (target, code, op0, op1, cmode, op2, op3, mode,
3090 unsignedp)
3091 rtx target;
3092 enum rtx_code code;
3093 rtx op0, op1;
3094 enum machine_mode cmode;
3095 rtx op2, op3;
3096 enum machine_mode mode;
3097 int unsignedp;
3098 {
3099 rtx tem, subtarget, comparison, insn;
3100 enum insn_code icode;
3101
3102 /* If one operand is constant, make it the second one. Only do this
3103 if the other operand is not constant as well. */
3104
3105 if ((CONSTANT_P (op0) && ! CONSTANT_P (op1))
3106 || (GET_CODE (op0) == CONST_INT && GET_CODE (op1) != CONST_INT))
3107 {
3108 tem = op0;
3109 op0 = op1;
3110 op1 = tem;
3111 code = swap_condition (code);
3112 }
3113
3114 if (cmode == VOIDmode)
3115 cmode = GET_MODE (op0);
3116
3117 if ((CONSTANT_P (op2) && ! CONSTANT_P (op3))
3118 || (GET_CODE (op2) == CONST_INT && GET_CODE (op3) != CONST_INT))
3119 {
3120 tem = op2;
3121 op2 = op3;
3122 op3 = tem;
3123 /* ??? This may not be appropriate (consider IEEE). Perhaps we should
3124 call can_reverse_comparison_p here and bail out if necessary.
3125 It's not clear whether we need to do this canonicalization though. */
3126 code = reverse_condition (code);
3127 }
3128
3129 if (mode == VOIDmode)
3130 mode = GET_MODE (op2);
3131
3132 icode = movcc_gen_code[mode];
3133
3134 if (icode == CODE_FOR_nothing)
3135 return 0;
3136
3137 if (flag_force_mem)
3138 {
3139 op2 = force_not_mem (op2);
3140 op3 = force_not_mem (op3);
3141 }
3142
3143 if (target)
3144 target = protect_from_queue (target, 1);
3145 else
3146 target = gen_reg_rtx (mode);
3147
3148 subtarget = target;
3149
3150 emit_queue ();
3151
3152 op2 = protect_from_queue (op2, 0);
3153 op3 = protect_from_queue (op3, 0);
3154
3155 /* If the insn doesn't accept these operands, put them in pseudos. */
3156
3157 if (! (*insn_operand_predicate[icode][0])
3158 (subtarget, insn_operand_mode[icode][0]))
3159 subtarget = gen_reg_rtx (insn_operand_mode[icode][0]);
3160
3161 if (! (*insn_operand_predicate[icode][2])
3162 (op2, insn_operand_mode[icode][2]))
3163 op2 = copy_to_mode_reg (insn_operand_mode[icode][2], op2);
3164
3165 if (! (*insn_operand_predicate[icode][3])
3166 (op3, insn_operand_mode[icode][3]))
3167 op3 = copy_to_mode_reg (insn_operand_mode[icode][3], op3);
3168
3169 /* Everything should now be in the suitable form, so emit the compare insn
3170 and then the conditional move. */
3171
3172 comparison
3173 = compare_from_rtx (op0, op1, code, unsignedp, cmode, NULL_RTX, 0);
3174
3175 /* ??? Watch for const0_rtx (nop) and const_true_rtx (unconditional)? */
3176 if (GET_CODE (comparison) != code)
3177 /* This shouldn't happen. */
3178 abort ();
3179
3180 insn = GEN_FCN (icode) (subtarget, comparison, op2, op3);
3181
3182 /* If that failed, then give up. */
3183 if (insn == 0)
3184 return 0;
3185
3186 emit_insn (insn);
3187
3188 if (subtarget != target)
3189 convert_move (target, subtarget, 0);
3190
3191 return target;
3192 }
3193
3194 /* Return non-zero if a conditional move of mode MODE is supported.
3195
3196 This function is for combine so it can tell whether an insn that looks
3197 like a conditional move is actually supported by the hardware. If we
3198 guess wrong we lose a bit on optimization, but that's it. */
3199 /* ??? sparc64 supports conditionally moving integers values based on fp
3200 comparisons, and vice versa. How do we handle them? */
3201
3202 int
3203 can_conditionally_move_p (mode)
3204 enum machine_mode mode;
3205 {
3206 if (movcc_gen_code[mode] != CODE_FOR_nothing)
3207 return 1;
3208
3209 return 0;
3210 }
3211
3212 #endif /* HAVE_conditional_move */
3213 \f
3214 /* These three functions generate an insn body and return it
3215 rather than emitting the insn.
3216
3217 They do not protect from queued increments,
3218 because they may be used 1) in protect_from_queue itself
3219 and 2) in other passes where there is no queue. */
3220
3221 /* Generate and return an insn body to add Y to X. */
3222
3223 rtx
3224 gen_add2_insn (x, y)
3225 rtx x, y;
3226 {
3227 int icode = (int) add_optab->handlers[(int) GET_MODE (x)].insn_code;
3228
3229 if (! (*insn_operand_predicate[icode][0]) (x, insn_operand_mode[icode][0])
3230 || ! (*insn_operand_predicate[icode][1]) (x, insn_operand_mode[icode][1])
3231 || ! (*insn_operand_predicate[icode][2]) (y, insn_operand_mode[icode][2]))
3232 abort ();
3233
3234 return (GEN_FCN (icode) (x, x, y));
3235 }
3236
3237 int
3238 have_add2_insn (mode)
3239 enum machine_mode mode;
3240 {
3241 return add_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing;
3242 }
3243
3244 /* Generate and return an insn body to subtract Y from X. */
3245
3246 rtx
3247 gen_sub2_insn (x, y)
3248 rtx x, y;
3249 {
3250 int icode = (int) sub_optab->handlers[(int) GET_MODE (x)].insn_code;
3251
3252 if (! (*insn_operand_predicate[icode][0]) (x, insn_operand_mode[icode][0])
3253 || ! (*insn_operand_predicate[icode][1]) (x, insn_operand_mode[icode][1])
3254 || ! (*insn_operand_predicate[icode][2]) (y, insn_operand_mode[icode][2]))
3255 abort ();
3256
3257 return (GEN_FCN (icode) (x, x, y));
3258 }
3259
3260 int
3261 have_sub2_insn (mode)
3262 enum machine_mode mode;
3263 {
3264 return sub_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing;
3265 }
3266
3267 /* Generate the body of an instruction to copy Y into X.
3268 It may be a SEQUENCE, if one insn isn't enough. */
3269
3270 rtx
3271 gen_move_insn (x, y)
3272 rtx x, y;
3273 {
3274 register enum machine_mode mode = GET_MODE (x);
3275 enum insn_code insn_code;
3276 rtx seq;
3277
3278 if (mode == VOIDmode)
3279 mode = GET_MODE (y);
3280
3281 insn_code = mov_optab->handlers[(int) mode].insn_code;
3282
3283 /* Handle MODE_CC modes: If we don't have a special move insn for this mode,
3284 find a mode to do it in. If we have a movcc, use it. Otherwise,
3285 find the MODE_INT mode of the same width. */
3286
3287 if (GET_MODE_CLASS (mode) == MODE_CC && insn_code == CODE_FOR_nothing)
3288 {
3289 enum machine_mode tmode = VOIDmode;
3290 rtx x1 = x, y1 = y;
3291
3292 if (mode != CCmode
3293 && mov_optab->handlers[(int) CCmode].insn_code != CODE_FOR_nothing)
3294 tmode = CCmode;
3295 else
3296 for (tmode = QImode; tmode != VOIDmode;
3297 tmode = GET_MODE_WIDER_MODE (tmode))
3298 if (GET_MODE_SIZE (tmode) == GET_MODE_SIZE (mode))
3299 break;
3300
3301 if (tmode == VOIDmode)
3302 abort ();
3303
3304 /* Get X and Y in TMODE. We can't use gen_lowpart here because it
3305 may call change_address which is not appropriate if we were
3306 called when a reload was in progress. We don't have to worry
3307 about changing the address since the size in bytes is supposed to
3308 be the same. Copy the MEM to change the mode and move any
3309 substitutions from the old MEM to the new one. */
3310
3311 if (reload_in_progress)
3312 {
3313 x = gen_lowpart_common (tmode, x1);
3314 if (x == 0 && GET_CODE (x1) == MEM)
3315 {
3316 x = gen_rtx (MEM, tmode, XEXP (x1, 0));
3317 RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (x1);
3318 MEM_IN_STRUCT_P (x) = MEM_IN_STRUCT_P (x1);
3319 MEM_VOLATILE_P (x) = MEM_VOLATILE_P (x1);
3320 copy_replacements (x1, x);
3321 }
3322
3323 y = gen_lowpart_common (tmode, y1);
3324 if (y == 0 && GET_CODE (y1) == MEM)
3325 {
3326 y = gen_rtx (MEM, tmode, XEXP (y1, 0));
3327 RTX_UNCHANGING_P (y) = RTX_UNCHANGING_P (y1);
3328 MEM_IN_STRUCT_P (y) = MEM_IN_STRUCT_P (y1);
3329 MEM_VOLATILE_P (y) = MEM_VOLATILE_P (y1);
3330 copy_replacements (y1, y);
3331 }
3332 }
3333 else
3334 {
3335 x = gen_lowpart (tmode, x);
3336 y = gen_lowpart (tmode, y);
3337 }
3338
3339 insn_code = mov_optab->handlers[(int) tmode].insn_code;
3340 return (GEN_FCN (insn_code) (x, y));
3341 }
3342
3343 start_sequence ();
3344 emit_move_insn_1 (x, y);
3345 seq = gen_sequence ();
3346 end_sequence ();
3347 return seq;
3348 }
3349 \f
3350 /* Return the insn code used to extend FROM_MODE to TO_MODE.
3351 UNSIGNEDP specifies zero-extension instead of sign-extension. If
3352 no such operation exists, CODE_FOR_nothing will be returned. */
3353
3354 enum insn_code
3355 can_extend_p (to_mode, from_mode, unsignedp)
3356 enum machine_mode to_mode, from_mode;
3357 int unsignedp;
3358 {
3359 return extendtab[(int) to_mode][(int) from_mode][unsignedp];
3360 }
3361
3362 /* Generate the body of an insn to extend Y (with mode MFROM)
3363 into X (with mode MTO). Do zero-extension if UNSIGNEDP is nonzero. */
3364
3365 rtx
3366 gen_extend_insn (x, y, mto, mfrom, unsignedp)
3367 rtx x, y;
3368 enum machine_mode mto, mfrom;
3369 int unsignedp;
3370 {
3371 return (GEN_FCN (extendtab[(int) mto][(int) mfrom][unsignedp]) (x, y));
3372 }
3373 \f
3374 /* can_fix_p and can_float_p say whether the target machine
3375 can directly convert a given fixed point type to
3376 a given floating point type, or vice versa.
3377 The returned value is the CODE_FOR_... value to use,
3378 or CODE_FOR_nothing if these modes cannot be directly converted.
3379
3380 *TRUNCP_PTR is set to 1 if it is necessary to output
3381 an explicit FTRUNC insn before the fix insn; otherwise 0. */
3382
3383 static enum insn_code
3384 can_fix_p (fixmode, fltmode, unsignedp, truncp_ptr)
3385 enum machine_mode fltmode, fixmode;
3386 int unsignedp;
3387 int *truncp_ptr;
3388 {
3389 *truncp_ptr = 0;
3390 if (fixtrunctab[(int) fltmode][(int) fixmode][unsignedp] != CODE_FOR_nothing)
3391 return fixtrunctab[(int) fltmode][(int) fixmode][unsignedp];
3392
3393 if (ftrunc_optab->handlers[(int) fltmode].insn_code != CODE_FOR_nothing)
3394 {
3395 *truncp_ptr = 1;
3396 return fixtab[(int) fltmode][(int) fixmode][unsignedp];
3397 }
3398 return CODE_FOR_nothing;
3399 }
3400
3401 static enum insn_code
3402 can_float_p (fltmode, fixmode, unsignedp)
3403 enum machine_mode fixmode, fltmode;
3404 int unsignedp;
3405 {
3406 return floattab[(int) fltmode][(int) fixmode][unsignedp];
3407 }
3408 \f
3409 /* Generate code to convert FROM to floating point
3410 and store in TO. FROM must be fixed point and not VOIDmode.
3411 UNSIGNEDP nonzero means regard FROM as unsigned.
3412 Normally this is done by correcting the final value
3413 if it is negative. */
3414
3415 void
3416 expand_float (to, from, unsignedp)
3417 rtx to, from;
3418 int unsignedp;
3419 {
3420 enum insn_code icode;
3421 register rtx target = to;
3422 enum machine_mode fmode, imode;
3423
3424 /* Crash now, because we won't be able to decide which mode to use. */
3425 if (GET_MODE (from) == VOIDmode)
3426 abort ();
3427
3428 /* Look for an insn to do the conversion. Do it in the specified
3429 modes if possible; otherwise convert either input, output or both to
3430 wider mode. If the integer mode is wider than the mode of FROM,
3431 we can do the conversion signed even if the input is unsigned. */
3432
3433 for (imode = GET_MODE (from); imode != VOIDmode;
3434 imode = GET_MODE_WIDER_MODE (imode))
3435 for (fmode = GET_MODE (to); fmode != VOIDmode;
3436 fmode = GET_MODE_WIDER_MODE (fmode))
3437 {
3438 int doing_unsigned = unsignedp;
3439
3440 icode = can_float_p (fmode, imode, unsignedp);
3441 if (icode == CODE_FOR_nothing && imode != GET_MODE (from) && unsignedp)
3442 icode = can_float_p (fmode, imode, 0), doing_unsigned = 0;
3443
3444 if (icode != CODE_FOR_nothing)
3445 {
3446 to = protect_from_queue (to, 1);
3447 from = protect_from_queue (from, 0);
3448
3449 if (imode != GET_MODE (from))
3450 from = convert_to_mode (imode, from, unsignedp);
3451
3452 if (fmode != GET_MODE (to))
3453 target = gen_reg_rtx (fmode);
3454
3455 emit_unop_insn (icode, target, from,
3456 doing_unsigned ? UNSIGNED_FLOAT : FLOAT);
3457
3458 if (target != to)
3459 convert_move (to, target, 0);
3460 return;
3461 }
3462 }
3463
3464 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
3465
3466 /* Unsigned integer, and no way to convert directly.
3467 Convert as signed, then conditionally adjust the result. */
3468 if (unsignedp)
3469 {
3470 rtx label = gen_label_rtx ();
3471 rtx temp;
3472 REAL_VALUE_TYPE offset;
3473
3474 emit_queue ();
3475
3476 to = protect_from_queue (to, 1);
3477 from = protect_from_queue (from, 0);
3478
3479 if (flag_force_mem)
3480 from = force_not_mem (from);
3481
3482 /* Look for a usable floating mode FMODE wider than the source and at
3483 least as wide as the target. Using FMODE will avoid rounding woes
3484 with unsigned values greater than the signed maximum value. */
3485
3486 for (fmode = GET_MODE (to); fmode != VOIDmode;
3487 fmode = GET_MODE_WIDER_MODE (fmode))
3488 if (GET_MODE_BITSIZE (GET_MODE (from)) < GET_MODE_BITSIZE (fmode)
3489 && can_float_p (fmode, GET_MODE (from), 0) != CODE_FOR_nothing)
3490 break;
3491
3492 if (fmode == VOIDmode)
3493 {
3494 /* There is no such mode. Pretend the target is wide enough. */
3495 fmode = GET_MODE (to);
3496
3497 /* Avoid double-rounding when TO is narrower than FROM. */
3498 if ((significand_size (fmode) + 1)
3499 < GET_MODE_BITSIZE (GET_MODE (from)))
3500 {
3501 rtx temp1;
3502 rtx neglabel = gen_label_rtx ();
3503
3504 /* Don't use TARGET if it isn't a register, is a hard register,
3505 or is the wrong mode. */
3506 if (GET_CODE (target) != REG
3507 || REGNO (target) < FIRST_PSEUDO_REGISTER
3508 || GET_MODE (target) != fmode)
3509 target = gen_reg_rtx (fmode);
3510
3511 imode = GET_MODE (from);
3512 do_pending_stack_adjust ();
3513
3514 /* Test whether the sign bit is set. */
3515 emit_cmp_insn (from, const0_rtx, GE, NULL_RTX, imode, 0, 0);
3516 emit_jump_insn (gen_blt (neglabel));
3517
3518 /* The sign bit is not set. Convert as signed. */
3519 expand_float (target, from, 0);
3520 emit_jump_insn (gen_jump (label));
3521 emit_barrier ();
3522
3523 /* The sign bit is set.
3524 Convert to a usable (positive signed) value by shifting right
3525 one bit, while remembering if a nonzero bit was shifted
3526 out; i.e., compute (from & 1) | (from >> 1). */
3527
3528 emit_label (neglabel);
3529 temp = expand_binop (imode, and_optab, from, const1_rtx,
3530 NULL_RTX, 1, OPTAB_LIB_WIDEN);
3531 temp1 = expand_shift (RSHIFT_EXPR, imode, from, integer_one_node,
3532 NULL_RTX, 1);
3533 temp = expand_binop (imode, ior_optab, temp, temp1, temp, 1,
3534 OPTAB_LIB_WIDEN);
3535 expand_float (target, temp, 0);
3536
3537 /* Multiply by 2 to undo the shift above. */
3538 temp = expand_binop (fmode, add_optab, target, target,
3539 target, 0, OPTAB_LIB_WIDEN);
3540 if (temp != target)
3541 emit_move_insn (target, temp);
3542
3543 do_pending_stack_adjust ();
3544 emit_label (label);
3545 goto done;
3546 }
3547 }
3548
3549 /* If we are about to do some arithmetic to correct for an
3550 unsigned operand, do it in a pseudo-register. */
3551
3552 if (GET_MODE (to) != fmode
3553 || GET_CODE (to) != REG || REGNO (to) < FIRST_PSEUDO_REGISTER)
3554 target = gen_reg_rtx (fmode);
3555
3556 /* Convert as signed integer to floating. */
3557 expand_float (target, from, 0);
3558
3559 /* If FROM is negative (and therefore TO is negative),
3560 correct its value by 2**bitwidth. */
3561
3562 do_pending_stack_adjust ();
3563 emit_cmp_insn (from, const0_rtx, GE, NULL_RTX, GET_MODE (from), 0, 0);
3564 emit_jump_insn (gen_bge (label));
3565
3566 /* On SCO 3.2.1, ldexp rejects values outside [0.5, 1).
3567 Rather than setting up a dconst_dot_5, let's hope SCO
3568 fixes the bug. */
3569 offset = REAL_VALUE_LDEXP (dconst1, GET_MODE_BITSIZE (GET_MODE (from)));
3570 temp = expand_binop (fmode, add_optab, target,
3571 CONST_DOUBLE_FROM_REAL_VALUE (offset, fmode),
3572 target, 0, OPTAB_LIB_WIDEN);
3573 if (temp != target)
3574 emit_move_insn (target, temp);
3575
3576 do_pending_stack_adjust ();
3577 emit_label (label);
3578 goto done;
3579 }
3580 #endif
3581
3582 /* No hardware instruction available; call a library routine to convert from
3583 SImode, DImode, or TImode into SFmode, DFmode, XFmode, or TFmode. */
3584 {
3585 rtx libfcn;
3586 rtx insns;
3587 rtx value;
3588
3589 to = protect_from_queue (to, 1);
3590 from = protect_from_queue (from, 0);
3591
3592 if (GET_MODE_SIZE (GET_MODE (from)) < GET_MODE_SIZE (SImode))
3593 from = convert_to_mode (SImode, from, unsignedp);
3594
3595 if (flag_force_mem)
3596 from = force_not_mem (from);
3597
3598 if (GET_MODE (to) == SFmode)
3599 {
3600 if (GET_MODE (from) == SImode)
3601 libfcn = floatsisf_libfunc;
3602 else if (GET_MODE (from) == DImode)
3603 libfcn = floatdisf_libfunc;
3604 else if (GET_MODE (from) == TImode)
3605 libfcn = floattisf_libfunc;
3606 else
3607 abort ();
3608 }
3609 else if (GET_MODE (to) == DFmode)
3610 {
3611 if (GET_MODE (from) == SImode)
3612 libfcn = floatsidf_libfunc;
3613 else if (GET_MODE (from) == DImode)
3614 libfcn = floatdidf_libfunc;
3615 else if (GET_MODE (from) == TImode)
3616 libfcn = floattidf_libfunc;
3617 else
3618 abort ();
3619 }
3620 else if (GET_MODE (to) == XFmode)
3621 {
3622 if (GET_MODE (from) == SImode)
3623 libfcn = floatsixf_libfunc;
3624 else if (GET_MODE (from) == DImode)
3625 libfcn = floatdixf_libfunc;
3626 else if (GET_MODE (from) == TImode)
3627 libfcn = floattixf_libfunc;
3628 else
3629 abort ();
3630 }
3631 else if (GET_MODE (to) == TFmode)
3632 {
3633 if (GET_MODE (from) == SImode)
3634 libfcn = floatsitf_libfunc;
3635 else if (GET_MODE (from) == DImode)
3636 libfcn = floatditf_libfunc;
3637 else if (GET_MODE (from) == TImode)
3638 libfcn = floattitf_libfunc;
3639 else
3640 abort ();
3641 }
3642 else
3643 abort ();
3644
3645 start_sequence ();
3646
3647 value = emit_library_call_value (libfcn, NULL_RTX, 1,
3648 GET_MODE (to),
3649 1, from, GET_MODE (from));
3650 insns = get_insns ();
3651 end_sequence ();
3652
3653 emit_libcall_block (insns, target, value,
3654 gen_rtx (FLOAT, GET_MODE (to), from));
3655 }
3656
3657 done:
3658
3659 /* Copy result to requested destination
3660 if we have been computing in a temp location. */
3661
3662 if (target != to)
3663 {
3664 if (GET_MODE (target) == GET_MODE (to))
3665 emit_move_insn (to, target);
3666 else
3667 convert_move (to, target, 0);
3668 }
3669 }
3670 \f
3671 /* expand_fix: generate code to convert FROM to fixed point
3672 and store in TO. FROM must be floating point. */
3673
3674 static rtx
3675 ftruncify (x)
3676 rtx x;
3677 {
3678 rtx temp = gen_reg_rtx (GET_MODE (x));
3679 return expand_unop (GET_MODE (x), ftrunc_optab, x, temp, 0);
3680 }
3681
3682 void
3683 expand_fix (to, from, unsignedp)
3684 register rtx to, from;
3685 int unsignedp;
3686 {
3687 enum insn_code icode;
3688 register rtx target = to;
3689 enum machine_mode fmode, imode;
3690 int must_trunc = 0;
3691 rtx libfcn = 0;
3692
3693 /* We first try to find a pair of modes, one real and one integer, at
3694 least as wide as FROM and TO, respectively, in which we can open-code
3695 this conversion. If the integer mode is wider than the mode of TO,
3696 we can do the conversion either signed or unsigned. */
3697
3698 for (imode = GET_MODE (to); imode != VOIDmode;
3699 imode = GET_MODE_WIDER_MODE (imode))
3700 for (fmode = GET_MODE (from); fmode != VOIDmode;
3701 fmode = GET_MODE_WIDER_MODE (fmode))
3702 {
3703 int doing_unsigned = unsignedp;
3704
3705 icode = can_fix_p (imode, fmode, unsignedp, &must_trunc);
3706 if (icode == CODE_FOR_nothing && imode != GET_MODE (to) && unsignedp)
3707 icode = can_fix_p (imode, fmode, 0, &must_trunc), doing_unsigned = 0;
3708
3709 if (icode != CODE_FOR_nothing)
3710 {
3711 to = protect_from_queue (to, 1);
3712 from = protect_from_queue (from, 0);
3713
3714 if (fmode != GET_MODE (from))
3715 from = convert_to_mode (fmode, from, 0);
3716
3717 if (must_trunc)
3718 from = ftruncify (from);
3719
3720 if (imode != GET_MODE (to))
3721 target = gen_reg_rtx (imode);
3722
3723 emit_unop_insn (icode, target, from,
3724 doing_unsigned ? UNSIGNED_FIX : FIX);
3725 if (target != to)
3726 convert_move (to, target, unsignedp);
3727 return;
3728 }
3729 }
3730
3731 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
3732 /* For an unsigned conversion, there is one more way to do it.
3733 If we have a signed conversion, we generate code that compares
3734 the real value to the largest representable positive number. If if
3735 is smaller, the conversion is done normally. Otherwise, subtract
3736 one plus the highest signed number, convert, and add it back.
3737
3738 We only need to check all real modes, since we know we didn't find
3739 anything with a wider integer mode. */
3740
3741 if (unsignedp && GET_MODE_BITSIZE (GET_MODE (to)) <= HOST_BITS_PER_WIDE_INT)
3742 for (fmode = GET_MODE (from); fmode != VOIDmode;
3743 fmode = GET_MODE_WIDER_MODE (fmode))
3744 /* Make sure we won't lose significant bits doing this. */
3745 if (GET_MODE_BITSIZE (fmode) > GET_MODE_BITSIZE (GET_MODE (to))
3746 && CODE_FOR_nothing != can_fix_p (GET_MODE (to), fmode, 0,
3747 &must_trunc))
3748 {
3749 int bitsize;
3750 REAL_VALUE_TYPE offset;
3751 rtx limit, lab1, lab2, insn;
3752
3753 bitsize = GET_MODE_BITSIZE (GET_MODE (to));
3754 offset = REAL_VALUE_LDEXP (dconst1, bitsize - 1);
3755 limit = CONST_DOUBLE_FROM_REAL_VALUE (offset, fmode);
3756 lab1 = gen_label_rtx ();
3757 lab2 = gen_label_rtx ();
3758
3759 emit_queue ();
3760 to = protect_from_queue (to, 1);
3761 from = protect_from_queue (from, 0);
3762
3763 if (flag_force_mem)
3764 from = force_not_mem (from);
3765
3766 if (fmode != GET_MODE (from))
3767 from = convert_to_mode (fmode, from, 0);
3768
3769 /* See if we need to do the subtraction. */
3770 do_pending_stack_adjust ();
3771 emit_cmp_insn (from, limit, GE, NULL_RTX, GET_MODE (from), 0, 0);
3772 emit_jump_insn (gen_bge (lab1));
3773
3774 /* If not, do the signed "fix" and branch around fixup code. */
3775 expand_fix (to, from, 0);
3776 emit_jump_insn (gen_jump (lab2));
3777 emit_barrier ();
3778
3779 /* Otherwise, subtract 2**(N-1), convert to signed number,
3780 then add 2**(N-1). Do the addition using XOR since this
3781 will often generate better code. */
3782 emit_label (lab1);
3783 target = expand_binop (GET_MODE (from), sub_optab, from, limit,
3784 NULL_RTX, 0, OPTAB_LIB_WIDEN);
3785 expand_fix (to, target, 0);
3786 target = expand_binop (GET_MODE (to), xor_optab, to,
3787 GEN_INT ((HOST_WIDE_INT) 1 << (bitsize - 1)),
3788 to, 1, OPTAB_LIB_WIDEN);
3789
3790 if (target != to)
3791 emit_move_insn (to, target);
3792
3793 emit_label (lab2);
3794
3795 /* Make a place for a REG_NOTE and add it. */
3796 insn = emit_move_insn (to, to);
3797 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_EQUAL,
3798 gen_rtx (UNSIGNED_FIX, GET_MODE (to),
3799 copy_rtx (from)),
3800 REG_NOTES (insn));
3801
3802 return;
3803 }
3804 #endif
3805
3806 /* We can't do it with an insn, so use a library call. But first ensure
3807 that the mode of TO is at least as wide as SImode, since those are the
3808 only library calls we know about. */
3809
3810 if (GET_MODE_SIZE (GET_MODE (to)) < GET_MODE_SIZE (SImode))
3811 {
3812 target = gen_reg_rtx (SImode);
3813
3814 expand_fix (target, from, unsignedp);
3815 }
3816 else if (GET_MODE (from) == SFmode)
3817 {
3818 if (GET_MODE (to) == SImode)
3819 libfcn = unsignedp ? fixunssfsi_libfunc : fixsfsi_libfunc;
3820 else if (GET_MODE (to) == DImode)
3821 libfcn = unsignedp ? fixunssfdi_libfunc : fixsfdi_libfunc;
3822 else if (GET_MODE (to) == TImode)
3823 libfcn = unsignedp ? fixunssfti_libfunc : fixsfti_libfunc;
3824 else
3825 abort ();
3826 }
3827 else if (GET_MODE (from) == DFmode)
3828 {
3829 if (GET_MODE (to) == SImode)
3830 libfcn = unsignedp ? fixunsdfsi_libfunc : fixdfsi_libfunc;
3831 else if (GET_MODE (to) == DImode)
3832 libfcn = unsignedp ? fixunsdfdi_libfunc : fixdfdi_libfunc;
3833 else if (GET_MODE (to) == TImode)
3834 libfcn = unsignedp ? fixunsdfti_libfunc : fixdfti_libfunc;
3835 else
3836 abort ();
3837 }
3838 else if (GET_MODE (from) == XFmode)
3839 {
3840 if (GET_MODE (to) == SImode)
3841 libfcn = unsignedp ? fixunsxfsi_libfunc : fixxfsi_libfunc;
3842 else if (GET_MODE (to) == DImode)
3843 libfcn = unsignedp ? fixunsxfdi_libfunc : fixxfdi_libfunc;
3844 else if (GET_MODE (to) == TImode)
3845 libfcn = unsignedp ? fixunsxfti_libfunc : fixxfti_libfunc;
3846 else
3847 abort ();
3848 }
3849 else if (GET_MODE (from) == TFmode)
3850 {
3851 if (GET_MODE (to) == SImode)
3852 libfcn = unsignedp ? fixunstfsi_libfunc : fixtfsi_libfunc;
3853 else if (GET_MODE (to) == DImode)
3854 libfcn = unsignedp ? fixunstfdi_libfunc : fixtfdi_libfunc;
3855 else if (GET_MODE (to) == TImode)
3856 libfcn = unsignedp ? fixunstfti_libfunc : fixtfti_libfunc;
3857 else
3858 abort ();
3859 }
3860 else
3861 abort ();
3862
3863 if (libfcn)
3864 {
3865 rtx insns;
3866 rtx value;
3867
3868 to = protect_from_queue (to, 1);
3869 from = protect_from_queue (from, 0);
3870
3871 if (flag_force_mem)
3872 from = force_not_mem (from);
3873
3874 start_sequence ();
3875
3876 value = emit_library_call_value (libfcn, NULL_RTX, 1, GET_MODE (to),
3877
3878 1, from, GET_MODE (from));
3879 insns = get_insns ();
3880 end_sequence ();
3881
3882 emit_libcall_block (insns, target, value,
3883 gen_rtx (unsignedp ? UNSIGNED_FIX : FIX,
3884 GET_MODE (to), from));
3885 }
3886
3887 /* Do NOT copy, if "to" is the same as "target". See
3888 expand_float(). It used to cause a bogus "clobber" of the
3889 input, causing it's ancestors to be deleted. Hopefully the call
3890 is just unnecessary now, causing extra time in optimization, or
3891 some extra instructions.
3892 / Hans-Peter.Nilsson@axis.se */
3893 if (target != to)
3894 {
3895 if (GET_MODE (to) == GET_MODE (target))
3896 emit_move_insn (to, target);
3897 else
3898 convert_move (to, target, 0);
3899 }
3900 }
3901 \f
3902 static optab
3903 init_optab (code)
3904 enum rtx_code code;
3905 {
3906 int i;
3907 optab op = (optab) xmalloc (sizeof (struct optab));
3908 op->code = code;
3909 for (i = 0; i < NUM_MACHINE_MODES; i++)
3910 {
3911 op->handlers[i].insn_code = CODE_FOR_nothing;
3912 op->handlers[i].libfunc = 0;
3913 }
3914
3915 if (code != UNKNOWN)
3916 code_to_optab[(int) code] = op;
3917
3918 return op;
3919 }
3920
3921 /* Initialize the libfunc fields of an entire group of entries in some
3922 optab. Each entry is set equal to a string consisting of a leading
3923 pair of underscores followed by a generic operation name followed by
3924 a mode name (downshifted to lower case) followed by a single character
3925 representing the number of operands for the given operation (which is
3926 usually one of the characters '2', '3', or '4').
3927
3928 OPTABLE is the table in which libfunc fields are to be initialized.
3929 FIRST_MODE is the first machine mode index in the given optab to
3930 initialize.
3931 LAST_MODE is the last machine mode index in the given optab to
3932 initialize.
3933 OPNAME is the generic (string) name of the operation.
3934 SUFFIX is the character which specifies the number of operands for
3935 the given generic operation.
3936 */
3937
3938 static void
3939 init_libfuncs (optable, first_mode, last_mode, opname, suffix)
3940 register optab optable;
3941 register int first_mode;
3942 register int last_mode;
3943 register char *opname;
3944 register int suffix;
3945 {
3946 register int mode;
3947 register unsigned opname_len = strlen (opname);
3948
3949 for (mode = first_mode; (int) mode <= (int) last_mode;
3950 mode = (enum machine_mode) ((int) mode + 1))
3951 {
3952 register char *mname = mode_name[(int) mode];
3953 register unsigned mname_len = strlen (mname);
3954 register char *libfunc_name
3955 = (char *) xmalloc (2 + opname_len + mname_len + 1 + 1);
3956 register char *p;
3957 register char *q;
3958
3959 p = libfunc_name;
3960 *p++ = '_';
3961 *p++ = '_';
3962 for (q = opname; *q; )
3963 *p++ = *q++;
3964 for (q = mname; *q; q++)
3965 *p++ = tolower (*q);
3966 *p++ = suffix;
3967 *p++ = '\0';
3968 optable->handlers[(int) mode].libfunc
3969 = gen_rtx (SYMBOL_REF, Pmode, libfunc_name);
3970 }
3971 }
3972
3973 /* Initialize the libfunc fields of an entire group of entries in some
3974 optab which correspond to all integer mode operations. The parameters
3975 have the same meaning as similarly named ones for the `init_libfuncs'
3976 routine. (See above). */
3977
3978 static void
3979 init_integral_libfuncs (optable, opname, suffix)
3980 register optab optable;
3981 register char *opname;
3982 register int suffix;
3983 {
3984 init_libfuncs (optable, SImode, TImode, opname, suffix);
3985 }
3986
3987 /* Initialize the libfunc fields of an entire group of entries in some
3988 optab which correspond to all real mode operations. The parameters
3989 have the same meaning as similarly named ones for the `init_libfuncs'
3990 routine. (See above). */
3991
3992 static void
3993 init_floating_libfuncs (optable, opname, suffix)
3994 register optab optable;
3995 register char *opname;
3996 register int suffix;
3997 {
3998 init_libfuncs (optable, SFmode, TFmode, opname, suffix);
3999 }
4000
4001 /* Initialize the libfunc fields of an entire group of entries in some
4002 optab which correspond to all complex floating modes. The parameters
4003 have the same meaning as similarly named ones for the `init_libfuncs'
4004 routine. (See above). */
4005
4006 static void
4007 init_complex_libfuncs (optable, opname, suffix)
4008 register optab optable;
4009 register char *opname;
4010 register int suffix;
4011 {
4012 init_libfuncs (optable, SCmode, TCmode, opname, suffix);
4013 }
4014
4015 /* Call this once to initialize the contents of the optabs
4016 appropriately for the current target machine. */
4017
4018 void
4019 init_optabs ()
4020 {
4021 int i, j;
4022 enum insn_code *p;
4023
4024 /* Start by initializing all tables to contain CODE_FOR_nothing. */
4025
4026 for (p = fixtab[0][0];
4027 p < fixtab[0][0] + sizeof fixtab / sizeof (fixtab[0][0][0]);
4028 p++)
4029 *p = CODE_FOR_nothing;
4030
4031 for (p = fixtrunctab[0][0];
4032 p < fixtrunctab[0][0] + sizeof fixtrunctab / sizeof (fixtrunctab[0][0][0]);
4033 p++)
4034 *p = CODE_FOR_nothing;
4035
4036 for (p = floattab[0][0];
4037 p < floattab[0][0] + sizeof floattab / sizeof (floattab[0][0][0]);
4038 p++)
4039 *p = CODE_FOR_nothing;
4040
4041 for (p = extendtab[0][0];
4042 p < extendtab[0][0] + sizeof extendtab / sizeof extendtab[0][0][0];
4043 p++)
4044 *p = CODE_FOR_nothing;
4045
4046 for (i = 0; i < NUM_RTX_CODE; i++)
4047 setcc_gen_code[i] = CODE_FOR_nothing;
4048
4049 #ifdef HAVE_conditional_move
4050 for (i = 0; i < NUM_MACHINE_MODES; i++)
4051 movcc_gen_code[i] = CODE_FOR_nothing;
4052 #endif
4053
4054 add_optab = init_optab (PLUS);
4055 sub_optab = init_optab (MINUS);
4056 smul_optab = init_optab (MULT);
4057 smul_highpart_optab = init_optab (UNKNOWN);
4058 umul_highpart_optab = init_optab (UNKNOWN);
4059 smul_widen_optab = init_optab (UNKNOWN);
4060 umul_widen_optab = init_optab (UNKNOWN);
4061 sdiv_optab = init_optab (DIV);
4062 sdivmod_optab = init_optab (UNKNOWN);
4063 udiv_optab = init_optab (UDIV);
4064 udivmod_optab = init_optab (UNKNOWN);
4065 smod_optab = init_optab (MOD);
4066 umod_optab = init_optab (UMOD);
4067 flodiv_optab = init_optab (DIV);
4068 ftrunc_optab = init_optab (UNKNOWN);
4069 and_optab = init_optab (AND);
4070 ior_optab = init_optab (IOR);
4071 xor_optab = init_optab (XOR);
4072 ashl_optab = init_optab (ASHIFT);
4073 ashr_optab = init_optab (ASHIFTRT);
4074 lshr_optab = init_optab (LSHIFTRT);
4075 rotl_optab = init_optab (ROTATE);
4076 rotr_optab = init_optab (ROTATERT);
4077 smin_optab = init_optab (SMIN);
4078 smax_optab = init_optab (SMAX);
4079 umin_optab = init_optab (UMIN);
4080 umax_optab = init_optab (UMAX);
4081 mov_optab = init_optab (UNKNOWN);
4082 movstrict_optab = init_optab (UNKNOWN);
4083 cmp_optab = init_optab (UNKNOWN);
4084 ucmp_optab = init_optab (UNKNOWN);
4085 tst_optab = init_optab (UNKNOWN);
4086 neg_optab = init_optab (NEG);
4087 abs_optab = init_optab (ABS);
4088 one_cmpl_optab = init_optab (NOT);
4089 ffs_optab = init_optab (FFS);
4090 sqrt_optab = init_optab (SQRT);
4091 sin_optab = init_optab (UNKNOWN);
4092 cos_optab = init_optab (UNKNOWN);
4093 strlen_optab = init_optab (UNKNOWN);
4094
4095 for (i = 0; i < NUM_MACHINE_MODES; i++)
4096 {
4097 movstr_optab[i] = CODE_FOR_nothing;
4098 clrstr_optab[i] = CODE_FOR_nothing;
4099
4100 #ifdef HAVE_SECONDARY_RELOADS
4101 reload_in_optab[i] = reload_out_optab[i] = CODE_FOR_nothing;
4102 #endif
4103 }
4104
4105 /* Fill in the optabs with the insns we support. */
4106 init_all_optabs ();
4107
4108 #ifdef FIXUNS_TRUNC_LIKE_FIX_TRUNC
4109 /* This flag says the same insns that convert to a signed fixnum
4110 also convert validly to an unsigned one. */
4111 for (i = 0; i < NUM_MACHINE_MODES; i++)
4112 for (j = 0; j < NUM_MACHINE_MODES; j++)
4113 fixtrunctab[i][j][1] = fixtrunctab[i][j][0];
4114 #endif
4115
4116 #ifdef EXTRA_CC_MODES
4117 init_mov_optab ();
4118 #endif
4119
4120 /* Initialize the optabs with the names of the library functions. */
4121 init_integral_libfuncs (add_optab, "add", '3');
4122 init_floating_libfuncs (add_optab, "add", '3');
4123 init_integral_libfuncs (sub_optab, "sub", '3');
4124 init_floating_libfuncs (sub_optab, "sub", '3');
4125 init_integral_libfuncs (smul_optab, "mul", '3');
4126 init_floating_libfuncs (smul_optab, "mul", '3');
4127 init_integral_libfuncs (sdiv_optab, "div", '3');
4128 init_integral_libfuncs (udiv_optab, "udiv", '3');
4129 init_integral_libfuncs (sdivmod_optab, "divmod", '4');
4130 init_integral_libfuncs (udivmod_optab, "udivmod", '4');
4131 init_integral_libfuncs (smod_optab, "mod", '3');
4132 init_integral_libfuncs (umod_optab, "umod", '3');
4133 init_floating_libfuncs (flodiv_optab, "div", '3');
4134 init_floating_libfuncs (ftrunc_optab, "ftrunc", '2');
4135 init_integral_libfuncs (and_optab, "and", '3');
4136 init_integral_libfuncs (ior_optab, "ior", '3');
4137 init_integral_libfuncs (xor_optab, "xor", '3');
4138 init_integral_libfuncs (ashl_optab, "ashl", '3');
4139 init_integral_libfuncs (ashr_optab, "ashr", '3');
4140 init_integral_libfuncs (lshr_optab, "lshr", '3');
4141 init_integral_libfuncs (smin_optab, "min", '3');
4142 init_floating_libfuncs (smin_optab, "min", '3');
4143 init_integral_libfuncs (smax_optab, "max", '3');
4144 init_floating_libfuncs (smax_optab, "max", '3');
4145 init_integral_libfuncs (umin_optab, "umin", '3');
4146 init_integral_libfuncs (umax_optab, "umax", '3');
4147 init_integral_libfuncs (neg_optab, "neg", '2');
4148 init_floating_libfuncs (neg_optab, "neg", '2');
4149 init_integral_libfuncs (one_cmpl_optab, "one_cmpl", '2');
4150 init_integral_libfuncs (ffs_optab, "ffs", '2');
4151
4152 /* Comparison libcalls for integers MUST come in pairs, signed/unsigned. */
4153 init_integral_libfuncs (cmp_optab, "cmp", '2');
4154 init_integral_libfuncs (ucmp_optab, "ucmp", '2');
4155 init_floating_libfuncs (cmp_optab, "cmp", '2');
4156
4157 #ifdef MULSI3_LIBCALL
4158 smul_optab->handlers[(int) SImode].libfunc
4159 = gen_rtx (SYMBOL_REF, Pmode, MULSI3_LIBCALL);
4160 #endif
4161 #ifdef MULDI3_LIBCALL
4162 smul_optab->handlers[(int) DImode].libfunc
4163 = gen_rtx (SYMBOL_REF, Pmode, MULDI3_LIBCALL);
4164 #endif
4165
4166 #ifdef DIVSI3_LIBCALL
4167 sdiv_optab->handlers[(int) SImode].libfunc
4168 = gen_rtx (SYMBOL_REF, Pmode, DIVSI3_LIBCALL);
4169 #endif
4170 #ifdef DIVDI3_LIBCALL
4171 sdiv_optab->handlers[(int) DImode].libfunc
4172 = gen_rtx (SYMBOL_REF, Pmode, DIVDI3_LIBCALL);
4173 #endif
4174
4175 #ifdef UDIVSI3_LIBCALL
4176 udiv_optab->handlers[(int) SImode].libfunc
4177 = gen_rtx (SYMBOL_REF, Pmode, UDIVSI3_LIBCALL);
4178 #endif
4179 #ifdef UDIVDI3_LIBCALL
4180 udiv_optab->handlers[(int) DImode].libfunc
4181 = gen_rtx (SYMBOL_REF, Pmode, UDIVDI3_LIBCALL);
4182 #endif
4183
4184 #ifdef MODSI3_LIBCALL
4185 smod_optab->handlers[(int) SImode].libfunc
4186 = gen_rtx (SYMBOL_REF, Pmode, MODSI3_LIBCALL);
4187 #endif
4188 #ifdef MODDI3_LIBCALL
4189 smod_optab->handlers[(int) DImode].libfunc
4190 = gen_rtx (SYMBOL_REF, Pmode, MODDI3_LIBCALL);
4191 #endif
4192
4193 #ifdef UMODSI3_LIBCALL
4194 umod_optab->handlers[(int) SImode].libfunc
4195 = gen_rtx (SYMBOL_REF, Pmode, UMODSI3_LIBCALL);
4196 #endif
4197 #ifdef UMODDI3_LIBCALL
4198 umod_optab->handlers[(int) DImode].libfunc
4199 = gen_rtx (SYMBOL_REF, Pmode, UMODDI3_LIBCALL);
4200 #endif
4201
4202 /* Use cabs for DC complex abs, since systems generally have cabs.
4203 Don't define any libcall for SCmode, so that cabs will be used. */
4204 abs_optab->handlers[(int) DCmode].libfunc
4205 = gen_rtx (SYMBOL_REF, Pmode, "cabs");
4206
4207 /* The ffs function operates on `int'. */
4208 #ifndef INT_TYPE_SIZE
4209 #define INT_TYPE_SIZE BITS_PER_WORD
4210 #endif
4211 ffs_optab->handlers[(int) mode_for_size (INT_TYPE_SIZE, MODE_INT, 0)] .libfunc
4212 = gen_rtx (SYMBOL_REF, Pmode, "ffs");
4213
4214 extendsfdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__extendsfdf2");
4215 extendsfxf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__extendsfxf2");
4216 extendsftf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__extendsftf2");
4217 extenddfxf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__extenddfxf2");
4218 extenddftf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__extenddftf2");
4219
4220 truncdfsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__truncdfsf2");
4221 truncxfsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__truncxfsf2");
4222 trunctfsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__trunctfsf2");
4223 truncxfdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__truncxfdf2");
4224 trunctfdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__trunctfdf2");
4225
4226 memcpy_libfunc = gen_rtx (SYMBOL_REF, Pmode, "memcpy");
4227 bcopy_libfunc = gen_rtx (SYMBOL_REF, Pmode, "bcopy");
4228 memcmp_libfunc = gen_rtx (SYMBOL_REF, Pmode, "memcmp");
4229 bcmp_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gcc_bcmp");
4230 memset_libfunc = gen_rtx (SYMBOL_REF, Pmode, "memset");
4231 bzero_libfunc = gen_rtx (SYMBOL_REF, Pmode, "bzero");
4232
4233 eqhf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqhf2");
4234 nehf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__nehf2");
4235 gthf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gthf2");
4236 gehf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gehf2");
4237 lthf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__lthf2");
4238 lehf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__lehf2");
4239
4240 eqsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqsf2");
4241 nesf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__nesf2");
4242 gtsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gtsf2");
4243 gesf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gesf2");
4244 ltsf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__ltsf2");
4245 lesf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__lesf2");
4246
4247 eqdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqdf2");
4248 nedf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__nedf2");
4249 gtdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gtdf2");
4250 gedf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gedf2");
4251 ltdf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__ltdf2");
4252 ledf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__ledf2");
4253
4254 eqxf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqxf2");
4255 nexf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__nexf2");
4256 gtxf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gtxf2");
4257 gexf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gexf2");
4258 ltxf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__ltxf2");
4259 lexf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__lexf2");
4260
4261 eqtf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqtf2");
4262 netf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__netf2");
4263 gttf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gttf2");
4264 getf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__getf2");
4265 lttf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__lttf2");
4266 letf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__letf2");
4267
4268 floatsisf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatsisf");
4269 floatdisf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatdisf");
4270 floattisf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floattisf");
4271
4272 floatsidf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatsidf");
4273 floatdidf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatdidf");
4274 floattidf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floattidf");
4275
4276 floatsixf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatsixf");
4277 floatdixf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatdixf");
4278 floattixf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floattixf");
4279
4280 floatsitf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatsitf");
4281 floatditf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floatditf");
4282 floattitf_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__floattitf");
4283
4284 fixsfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixsfsi");
4285 fixsfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixsfdi");
4286 fixsfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixsfti");
4287
4288 fixdfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixdfsi");
4289 fixdfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixdfdi");
4290 fixdfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixdfti");
4291
4292 fixxfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixxfsi");
4293 fixxfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixxfdi");
4294 fixxfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixxfti");
4295
4296 fixtfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixtfsi");
4297 fixtfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixtfdi");
4298 fixtfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixtfti");
4299
4300 fixunssfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunssfsi");
4301 fixunssfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunssfdi");
4302 fixunssfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunssfti");
4303
4304 fixunsdfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsdfsi");
4305 fixunsdfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsdfdi");
4306 fixunsdfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsdfti");
4307
4308 fixunsxfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsxfsi");
4309 fixunsxfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsxfdi");
4310 fixunsxfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunsxfti");
4311
4312 fixunstfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunstfsi");
4313 fixunstfdi_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunstfdi");
4314 fixunstfti_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__fixunstfti");
4315
4316 #ifdef INIT_TARGET_OPTABS
4317 /* Allow the target to add more libcalls or rename some, etc. */
4318 INIT_TARGET_OPTABS;
4319 #endif
4320 }
4321 \f
4322 #ifdef BROKEN_LDEXP
4323
4324 /* SCO 3.2 apparently has a broken ldexp. */
4325
4326 double
4327 ldexp(x,n)
4328 double x;
4329 int n;
4330 {
4331 if (n > 0)
4332 while (n--)
4333 x *= 2;
4334
4335 return x;
4336 }
4337 #endif /* BROKEN_LDEXP */
This page took 0.228303 seconds and 6 git commands to generate.