OSDN Git Service

* array.c: Don't include assert.h.
[pf3gnuchains/gcc-fork.git] / gcc / expmed.c
1 /* Medium-level subroutines: convert bit-field store and extract
2    and shifts, multiplies and divides to rtl instructions.
3    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4    1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA.  */
22
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "toplev.h"
29 #include "rtl.h"
30 #include "tree.h"
31 #include "tm_p.h"
32 #include "flags.h"
33 #include "insn-config.h"
34 #include "expr.h"
35 #include "optabs.h"
36 #include "real.h"
37 #include "recog.h"
38 #include "langhooks.h"
39
40 static void store_fixed_bit_field (rtx, unsigned HOST_WIDE_INT,
41                                    unsigned HOST_WIDE_INT,
42                                    unsigned HOST_WIDE_INT, rtx);
43 static void store_split_bit_field (rtx, unsigned HOST_WIDE_INT,
44                                    unsigned HOST_WIDE_INT, rtx);
45 static rtx extract_fixed_bit_field (enum machine_mode, rtx,
46                                     unsigned HOST_WIDE_INT,
47                                     unsigned HOST_WIDE_INT,
48                                     unsigned HOST_WIDE_INT, rtx, int);
49 static rtx mask_rtx (enum machine_mode, int, int, int);
50 static rtx lshift_value (enum machine_mode, rtx, int, int);
51 static rtx extract_split_bit_field (rtx, unsigned HOST_WIDE_INT,
52                                     unsigned HOST_WIDE_INT, int);
53 static void do_cmp_and_jump (rtx, rtx, enum rtx_code, enum machine_mode, rtx);
54 static rtx expand_smod_pow2 (enum machine_mode, rtx, HOST_WIDE_INT);
55 static rtx expand_sdiv_pow2 (enum machine_mode, rtx, HOST_WIDE_INT);
56
57 /* Nonzero means divides or modulus operations are relatively cheap for
58    powers of two, so don't use branches; emit the operation instead.
59    Usually, this will mean that the MD file will emit non-branch
60    sequences.  */
61
62 static bool sdiv_pow2_cheap[NUM_MACHINE_MODES];
63 static bool smod_pow2_cheap[NUM_MACHINE_MODES];
64
65 #ifndef SLOW_UNALIGNED_ACCESS
66 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
67 #endif
68
69 /* For compilers that support multiple targets with different word sizes,
70    MAX_BITS_PER_WORD contains the biggest value of BITS_PER_WORD.  An example
71    is the H8/300(H) compiler.  */
72
73 #ifndef MAX_BITS_PER_WORD
74 #define MAX_BITS_PER_WORD BITS_PER_WORD
75 #endif
76
77 /* Reduce conditional compilation elsewhere.  */
78 #ifndef HAVE_insv
79 #define HAVE_insv       0
80 #define CODE_FOR_insv   CODE_FOR_nothing
81 #define gen_insv(a,b,c,d) NULL_RTX
82 #endif
83 #ifndef HAVE_extv
84 #define HAVE_extv       0
85 #define CODE_FOR_extv   CODE_FOR_nothing
86 #define gen_extv(a,b,c,d) NULL_RTX
87 #endif
88 #ifndef HAVE_extzv
89 #define HAVE_extzv      0
90 #define CODE_FOR_extzv  CODE_FOR_nothing
91 #define gen_extzv(a,b,c,d) NULL_RTX
92 #endif
93
94 /* Cost of various pieces of RTL.  Note that some of these are indexed by
95    shift count and some by mode.  */
96 static int zero_cost;
97 static int add_cost[NUM_MACHINE_MODES];
98 static int neg_cost[NUM_MACHINE_MODES];
99 static int shift_cost[NUM_MACHINE_MODES][MAX_BITS_PER_WORD];
100 static int shiftadd_cost[NUM_MACHINE_MODES][MAX_BITS_PER_WORD];
101 static int shiftsub_cost[NUM_MACHINE_MODES][MAX_BITS_PER_WORD];
102 static int mul_cost[NUM_MACHINE_MODES];
103 static int div_cost[NUM_MACHINE_MODES];
104 static int mul_widen_cost[NUM_MACHINE_MODES];
105 static int mul_highpart_cost[NUM_MACHINE_MODES];
106
107 void
108 init_expmed (void)
109 {
110   struct
111   {
112     struct rtx_def reg;         rtunion reg_fld[2];
113     struct rtx_def plus;        rtunion plus_fld1;
114     struct rtx_def neg;
115     struct rtx_def udiv;        rtunion udiv_fld1;
116     struct rtx_def mult;        rtunion mult_fld1;
117     struct rtx_def div;         rtunion div_fld1;
118     struct rtx_def mod;         rtunion mod_fld1;
119     struct rtx_def zext;
120     struct rtx_def wide_mult;   rtunion wide_mult_fld1;
121     struct rtx_def wide_lshr;   rtunion wide_lshr_fld1;
122     struct rtx_def wide_trunc;
123     struct rtx_def shift;       rtunion shift_fld1;
124     struct rtx_def shift_mult;  rtunion shift_mult_fld1;
125     struct rtx_def shift_add;   rtunion shift_add_fld1;
126     struct rtx_def shift_sub;   rtunion shift_sub_fld1;
127   } all;
128
129   rtx pow2[MAX_BITS_PER_WORD];
130   rtx cint[MAX_BITS_PER_WORD];
131   int m, n;
132   enum machine_mode mode, wider_mode;
133
134   zero_cost = rtx_cost (const0_rtx, 0);
135
136   for (m = 1; m < MAX_BITS_PER_WORD; m++)
137     {
138       pow2[m] = GEN_INT ((HOST_WIDE_INT) 1 << m);
139       cint[m] = GEN_INT (m);
140     }
141
142   memset (&all, 0, sizeof all);
143
144   PUT_CODE (&all.reg, REG);
145   REGNO (&all.reg) = 10000;
146
147   PUT_CODE (&all.plus, PLUS);
148   XEXP (&all.plus, 0) = &all.reg;
149   XEXP (&all.plus, 1) = &all.reg;
150
151   PUT_CODE (&all.neg, NEG);
152   XEXP (&all.neg, 0) = &all.reg;
153
154   PUT_CODE (&all.udiv, UDIV);
155   XEXP (&all.udiv, 0) = &all.reg;
156   XEXP (&all.udiv, 1) = &all.reg;
157
158   PUT_CODE (&all.mult, MULT);
159   XEXP (&all.mult, 0) = &all.reg;
160   XEXP (&all.mult, 1) = &all.reg;
161
162   PUT_CODE (&all.div, DIV);
163   XEXP (&all.div, 0) = &all.reg;
164   XEXP (&all.div, 1) = 32 < MAX_BITS_PER_WORD ? cint[32] : GEN_INT (32);
165
166   PUT_CODE (&all.mod, MOD);
167   XEXP (&all.mod, 0) = &all.reg;
168   XEXP (&all.mod, 1) = XEXP (&all.div, 1);
169
170   PUT_CODE (&all.zext, ZERO_EXTEND);
171   XEXP (&all.zext, 0) = &all.reg;
172
173   PUT_CODE (&all.wide_mult, MULT);
174   XEXP (&all.wide_mult, 0) = &all.zext;
175   XEXP (&all.wide_mult, 1) = &all.zext;
176
177   PUT_CODE (&all.wide_lshr, LSHIFTRT);
178   XEXP (&all.wide_lshr, 0) = &all.wide_mult;
179
180   PUT_CODE (&all.wide_trunc, TRUNCATE);
181   XEXP (&all.wide_trunc, 0) = &all.wide_lshr;
182
183   PUT_CODE (&all.shift, ASHIFT);
184   XEXP (&all.shift, 0) = &all.reg;
185
186   PUT_CODE (&all.shift_mult, MULT);
187   XEXP (&all.shift_mult, 0) = &all.reg;
188
189   PUT_CODE (&all.shift_add, PLUS);
190   XEXP (&all.shift_add, 0) = &all.shift_mult;
191   XEXP (&all.shift_add, 1) = &all.reg;
192
193   PUT_CODE (&all.shift_sub, MINUS);
194   XEXP (&all.shift_sub, 0) = &all.shift_mult;
195   XEXP (&all.shift_sub, 1) = &all.reg;
196
197   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
198        mode != VOIDmode;
199        mode = GET_MODE_WIDER_MODE (mode))
200     {
201       PUT_MODE (&all.reg, mode);
202       PUT_MODE (&all.plus, mode);
203       PUT_MODE (&all.neg, mode);
204       PUT_MODE (&all.udiv, mode);
205       PUT_MODE (&all.mult, mode);
206       PUT_MODE (&all.div, mode);
207       PUT_MODE (&all.mod, mode);
208       PUT_MODE (&all.wide_trunc, mode);
209       PUT_MODE (&all.shift, mode);
210       PUT_MODE (&all.shift_mult, mode);
211       PUT_MODE (&all.shift_add, mode);
212       PUT_MODE (&all.shift_sub, mode);
213
214       add_cost[mode] = rtx_cost (&all.plus, SET);
215       neg_cost[mode] = rtx_cost (&all.neg, SET);
216       div_cost[mode] = rtx_cost (&all.udiv, SET);
217       mul_cost[mode] = rtx_cost (&all.mult, SET);
218
219       sdiv_pow2_cheap[mode] = (rtx_cost (&all.div, SET) <= 2 * add_cost[mode]);
220       smod_pow2_cheap[mode] = (rtx_cost (&all.mod, SET) <= 4 * add_cost[mode]);
221
222       wider_mode = GET_MODE_WIDER_MODE (mode);
223       if (wider_mode != VOIDmode)
224         {
225           PUT_MODE (&all.zext, wider_mode);
226           PUT_MODE (&all.wide_mult, wider_mode);
227           PUT_MODE (&all.wide_lshr, wider_mode);
228           XEXP (&all.wide_lshr, 1) = GEN_INT (GET_MODE_BITSIZE (mode));
229
230           mul_widen_cost[wider_mode] = rtx_cost (&all.wide_mult, SET);
231           mul_highpart_cost[mode] = rtx_cost (&all.wide_trunc, SET);
232         }
233
234       shift_cost[mode][0] = 0;
235       shiftadd_cost[mode][0] = shiftsub_cost[mode][0] = add_cost[mode];
236
237       n = MIN (MAX_BITS_PER_WORD, GET_MODE_BITSIZE (mode));
238       for (m = 1; m < n; m++)
239         {
240           XEXP (&all.shift, 1) = cint[m];
241           XEXP (&all.shift_mult, 1) = pow2[m];
242
243           shift_cost[mode][m] = rtx_cost (&all.shift, SET);
244           shiftadd_cost[mode][m] = rtx_cost (&all.shift_add, SET);
245           shiftsub_cost[mode][m] = rtx_cost (&all.shift_sub, SET);
246         }
247     }
248 }
249
250 /* Return an rtx representing minus the value of X.
251    MODE is the intended mode of the result,
252    useful if X is a CONST_INT.  */
253
254 rtx
255 negate_rtx (enum machine_mode mode, rtx x)
256 {
257   rtx result = simplify_unary_operation (NEG, mode, x, mode);
258
259   if (result == 0)
260     result = expand_unop (mode, neg_optab, x, NULL_RTX, 0);
261
262   return result;
263 }
264
265 /* Report on the availability of insv/extv/extzv and the desired mode
266    of each of their operands.  Returns MAX_MACHINE_MODE if HAVE_foo
267    is false; else the mode of the specified operand.  If OPNO is -1,
268    all the caller cares about is whether the insn is available.  */
269 enum machine_mode
270 mode_for_extraction (enum extraction_pattern pattern, int opno)
271 {
272   const struct insn_data *data;
273
274   switch (pattern)
275     {
276     case EP_insv:
277       if (HAVE_insv)
278         {
279           data = &insn_data[CODE_FOR_insv];
280           break;
281         }
282       return MAX_MACHINE_MODE;
283
284     case EP_extv:
285       if (HAVE_extv)
286         {
287           data = &insn_data[CODE_FOR_extv];
288           break;
289         }
290       return MAX_MACHINE_MODE;
291
292     case EP_extzv:
293       if (HAVE_extzv)
294         {
295           data = &insn_data[CODE_FOR_extzv];
296           break;
297         }
298       return MAX_MACHINE_MODE;
299
300     default:
301       gcc_unreachable ();
302     }
303
304   if (opno == -1)
305     return VOIDmode;
306
307   /* Everyone who uses this function used to follow it with
308      if (result == VOIDmode) result = word_mode; */
309   if (data->operand[opno].mode == VOIDmode)
310     return word_mode;
311   return data->operand[opno].mode;
312 }
313
314 \f
315 /* Generate code to store value from rtx VALUE
316    into a bit-field within structure STR_RTX
317    containing BITSIZE bits starting at bit BITNUM.
318    FIELDMODE is the machine-mode of the FIELD_DECL node for this field.
319    ALIGN is the alignment that STR_RTX is known to have.
320    TOTAL_SIZE is the size of the structure in bytes, or -1 if varying.  */
321
322 /* ??? Note that there are two different ideas here for how
323    to determine the size to count bits within, for a register.
324    One is BITS_PER_WORD, and the other is the size of operand 3
325    of the insv pattern.
326
327    If operand 3 of the insv pattern is VOIDmode, then we will use BITS_PER_WORD
328    else, we use the mode of operand 3.  */
329
330 rtx
331 store_bit_field (rtx str_rtx, unsigned HOST_WIDE_INT bitsize,
332                  unsigned HOST_WIDE_INT bitnum, enum machine_mode fieldmode,
333                  rtx value)
334 {
335   unsigned int unit
336     = (MEM_P (str_rtx)) ? BITS_PER_UNIT : BITS_PER_WORD;
337   unsigned HOST_WIDE_INT offset = bitnum / unit;
338   unsigned HOST_WIDE_INT bitpos = bitnum % unit;
339   rtx op0 = str_rtx;
340   int byte_offset;
341
342   enum machine_mode op_mode = mode_for_extraction (EP_insv, 3);
343
344   while (GET_CODE (op0) == SUBREG)
345     {
346       /* The following line once was done only if WORDS_BIG_ENDIAN,
347          but I think that is a mistake.  WORDS_BIG_ENDIAN is
348          meaningful at a much higher level; when structures are copied
349          between memory and regs, the higher-numbered regs
350          always get higher addresses.  */
351       offset += (SUBREG_BYTE (op0) / UNITS_PER_WORD);
352       /* We used to adjust BITPOS here, but now we do the whole adjustment
353          right after the loop.  */
354       op0 = SUBREG_REG (op0);
355     }
356
357   /* Use vec_set patterns for inserting parts of vectors whenever
358      available.  */
359   if (VECTOR_MODE_P (GET_MODE (op0))
360       && !MEM_P (op0)
361       && (vec_set_optab->handlers[GET_MODE (op0)].insn_code
362           != CODE_FOR_nothing)
363       && fieldmode == GET_MODE_INNER (GET_MODE (op0))
364       && bitsize == GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (op0)))
365       && !(bitnum % GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (op0)))))
366     {
367       enum machine_mode outermode = GET_MODE (op0);
368       enum machine_mode innermode = GET_MODE_INNER (outermode);
369       int icode = (int) vec_set_optab->handlers[outermode].insn_code;
370       int pos = bitnum / GET_MODE_BITSIZE (innermode);
371       rtx rtxpos = GEN_INT (pos);
372       rtx src = value;
373       rtx dest = op0;
374       rtx pat, seq;
375       enum machine_mode mode0 = insn_data[icode].operand[0].mode;
376       enum machine_mode mode1 = insn_data[icode].operand[1].mode;
377       enum machine_mode mode2 = insn_data[icode].operand[2].mode;
378
379       start_sequence ();
380
381       if (! (*insn_data[icode].operand[1].predicate) (src, mode1))
382         src = copy_to_mode_reg (mode1, src);
383
384       if (! (*insn_data[icode].operand[2].predicate) (rtxpos, mode2))
385         rtxpos = copy_to_mode_reg (mode1, rtxpos);
386
387       /* We could handle this, but we should always be called with a pseudo
388          for our targets and all insns should take them as outputs.  */
389       gcc_assert ((*insn_data[icode].operand[0].predicate) (dest, mode0)
390                   && (*insn_data[icode].operand[1].predicate) (src, mode1)
391                   && (*insn_data[icode].operand[2].predicate) (rtxpos, mode2));
392       pat = GEN_FCN (icode) (dest, src, rtxpos);
393       seq = get_insns ();
394       end_sequence ();
395       if (pat)
396         {
397           emit_insn (seq);
398           emit_insn (pat);
399           return dest;
400         }
401     }
402
403   if (flag_force_mem)
404     {
405       int old_generating_concat_p = generating_concat_p;
406       generating_concat_p = 0;
407       value = force_not_mem (value);
408       generating_concat_p = old_generating_concat_p;
409     }
410
411   /* If the target is a register, overwriting the entire object, or storing
412      a full-word or multi-word field can be done with just a SUBREG.
413
414      If the target is memory, storing any naturally aligned field can be
415      done with a simple store.  For targets that support fast unaligned
416      memory, any naturally sized, unit aligned field can be done directly.  */
417
418   byte_offset = (bitnum % BITS_PER_WORD) / BITS_PER_UNIT
419                 + (offset * UNITS_PER_WORD);
420
421   if (bitpos == 0
422       && bitsize == GET_MODE_BITSIZE (fieldmode)
423       && (!MEM_P (op0)
424           ? ((GET_MODE_SIZE (fieldmode) >= UNITS_PER_WORD
425              || GET_MODE_SIZE (GET_MODE (op0)) == GET_MODE_SIZE (fieldmode))
426              && byte_offset % GET_MODE_SIZE (fieldmode) == 0)
427           : (! SLOW_UNALIGNED_ACCESS (fieldmode, MEM_ALIGN (op0))
428              || (offset * BITS_PER_UNIT % bitsize == 0
429                  && MEM_ALIGN (op0) % GET_MODE_BITSIZE (fieldmode) == 0))))
430     {
431       if (GET_MODE (op0) != fieldmode)
432         {
433           if (GET_CODE (op0) == SUBREG)
434             {
435               /* Else we've got some float mode source being extracted
436                  into a different float mode destination -- this
437                  combination of subregs results in Severe Tire
438                  Damage.  */
439               gcc_assert (GET_MODE (SUBREG_REG (op0)) == fieldmode
440                           || GET_MODE_CLASS (fieldmode) == MODE_INT
441                           || GET_MODE_CLASS (fieldmode) == MODE_PARTIAL_INT);
442               op0 = SUBREG_REG (op0);
443             }
444           if (REG_P (op0))
445             op0 = gen_rtx_SUBREG (fieldmode, op0, byte_offset);
446           else
447             op0 = adjust_address (op0, fieldmode, offset);
448         }
449       emit_move_insn (op0, value);
450       return value;
451     }
452
453   /* Make sure we are playing with integral modes.  Pun with subregs
454      if we aren't.  This must come after the entire register case above,
455      since that case is valid for any mode.  The following cases are only
456      valid for integral modes.  */
457   {
458     enum machine_mode imode = int_mode_for_mode (GET_MODE (op0));
459     if (imode != GET_MODE (op0))
460       {
461         if (MEM_P (op0))
462           op0 = adjust_address (op0, imode, 0);
463         else
464           {
465             gcc_assert (imode != BLKmode);
466             op0 = gen_lowpart (imode, op0);
467           }
468       }
469   }
470
471   /* We may be accessing data outside the field, which means
472      we can alias adjacent data.  */
473   if (MEM_P (op0))
474     {
475       op0 = shallow_copy_rtx (op0);
476       set_mem_alias_set (op0, 0);
477       set_mem_expr (op0, 0);
478     }
479
480   /* If OP0 is a register, BITPOS must count within a word.
481      But as we have it, it counts within whatever size OP0 now has.
482      On a bigendian machine, these are not the same, so convert.  */
483   if (BYTES_BIG_ENDIAN
484       && !MEM_P (op0)
485       && unit > GET_MODE_BITSIZE (GET_MODE (op0)))
486     bitpos += unit - GET_MODE_BITSIZE (GET_MODE (op0));
487
488   /* Storing an lsb-aligned field in a register
489      can be done with a movestrict instruction.  */
490
491   if (!MEM_P (op0)
492       && (BYTES_BIG_ENDIAN ? bitpos + bitsize == unit : bitpos == 0)
493       && bitsize == GET_MODE_BITSIZE (fieldmode)
494       && (movstrict_optab->handlers[fieldmode].insn_code
495           != CODE_FOR_nothing))
496     {
497       int icode = movstrict_optab->handlers[fieldmode].insn_code;
498
499       /* Get appropriate low part of the value being stored.  */
500       if (GET_CODE (value) == CONST_INT || REG_P (value))
501         value = gen_lowpart (fieldmode, value);
502       else if (!(GET_CODE (value) == SYMBOL_REF
503                  || GET_CODE (value) == LABEL_REF
504                  || GET_CODE (value) == CONST))
505         value = convert_to_mode (fieldmode, value, 0);
506
507       if (! (*insn_data[icode].operand[1].predicate) (value, fieldmode))
508         value = copy_to_mode_reg (fieldmode, value);
509
510       if (GET_CODE (op0) == SUBREG)
511         {
512           /* Else we've got some float mode source being extracted into
513              a different float mode destination -- this combination of
514              subregs results in Severe Tire Damage.  */
515           gcc_assert (GET_MODE (SUBREG_REG (op0)) == fieldmode
516                       || GET_MODE_CLASS (fieldmode) == MODE_INT
517                       || GET_MODE_CLASS (fieldmode) == MODE_PARTIAL_INT);
518           op0 = SUBREG_REG (op0);
519         }
520
521       emit_insn (GEN_FCN (icode)
522                  (gen_rtx_SUBREG (fieldmode, op0,
523                                   (bitnum % BITS_PER_WORD) / BITS_PER_UNIT
524                                   + (offset * UNITS_PER_WORD)),
525                                   value));
526
527       return value;
528     }
529
530   /* Handle fields bigger than a word.  */
531
532   if (bitsize > BITS_PER_WORD)
533     {
534       /* Here we transfer the words of the field
535          in the order least significant first.
536          This is because the most significant word is the one which may
537          be less than full.
538          However, only do that if the value is not BLKmode.  */
539
540       unsigned int backwards = WORDS_BIG_ENDIAN && fieldmode != BLKmode;
541       unsigned int nwords = (bitsize + (BITS_PER_WORD - 1)) / BITS_PER_WORD;
542       unsigned int i;
543
544       /* This is the mode we must force value to, so that there will be enough
545          subwords to extract.  Note that fieldmode will often (always?) be
546          VOIDmode, because that is what store_field uses to indicate that this
547          is a bit field, but passing VOIDmode to operand_subword_force will
548          result in an abort.  */
549       fieldmode = GET_MODE (value);
550       if (fieldmode == VOIDmode)
551         fieldmode = smallest_mode_for_size (nwords * BITS_PER_WORD, MODE_INT);
552
553       for (i = 0; i < nwords; i++)
554         {
555           /* If I is 0, use the low-order word in both field and target;
556              if I is 1, use the next to lowest word; and so on.  */
557           unsigned int wordnum = (backwards ? nwords - i - 1 : i);
558           unsigned int bit_offset = (backwards
559                                      ? MAX ((int) bitsize - ((int) i + 1)
560                                             * BITS_PER_WORD,
561                                             0)
562                                      : (int) i * BITS_PER_WORD);
563
564           store_bit_field (op0, MIN (BITS_PER_WORD,
565                                      bitsize - i * BITS_PER_WORD),
566                            bitnum + bit_offset, word_mode,
567                            operand_subword_force (value, wordnum, fieldmode));
568         }
569       return value;
570     }
571
572   /* From here on we can assume that the field to be stored in is
573      a full-word (whatever type that is), since it is shorter than a word.  */
574
575   /* OFFSET is the number of words or bytes (UNIT says which)
576      from STR_RTX to the first word or byte containing part of the field.  */
577
578   if (!MEM_P (op0))
579     {
580       if (offset != 0
581           || GET_MODE_SIZE (GET_MODE (op0)) > UNITS_PER_WORD)
582         {
583           if (!REG_P (op0))
584             {
585               /* Since this is a destination (lvalue), we can't copy it to a
586                  pseudo.  We can trivially remove a SUBREG that does not
587                  change the size of the operand.  Such a SUBREG may have been
588                  added above.  Otherwise, abort.  */
589               gcc_assert (GET_CODE (op0) == SUBREG
590                           && (GET_MODE_SIZE (GET_MODE (op0))
591                               == GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0)))));
592               op0 = SUBREG_REG (op0);
593             }
594           op0 = gen_rtx_SUBREG (mode_for_size (BITS_PER_WORD, MODE_INT, 0),
595                                 op0, (offset * UNITS_PER_WORD));
596         }
597       offset = 0;
598     }
599
600   /* If VALUE is a floating-point mode, access it as an integer of the
601      corresponding size.  This can occur on a machine with 64 bit registers
602      that uses SFmode for float.  This can also occur for unaligned float
603      structure fields.  */
604   if (GET_MODE_CLASS (GET_MODE (value)) != MODE_INT
605       && GET_MODE_CLASS (GET_MODE (value)) != MODE_PARTIAL_INT)
606     value = gen_lowpart ((GET_MODE (value) == VOIDmode
607                           ? word_mode : int_mode_for_mode (GET_MODE (value))),
608                          value);
609
610   /* Now OFFSET is nonzero only if OP0 is memory
611      and is therefore always measured in bytes.  */
612
613   if (HAVE_insv
614       && GET_MODE (value) != BLKmode
615       && !(bitsize == 1 && GET_CODE (value) == CONST_INT)
616       /* Ensure insv's size is wide enough for this field.  */
617       && (GET_MODE_BITSIZE (op_mode) >= bitsize)
618       && ! ((REG_P (op0) || GET_CODE (op0) == SUBREG)
619             && (bitsize + bitpos > GET_MODE_BITSIZE (op_mode))))
620     {
621       int xbitpos = bitpos;
622       rtx value1;
623       rtx xop0 = op0;
624       rtx last = get_last_insn ();
625       rtx pat;
626       enum machine_mode maxmode = mode_for_extraction (EP_insv, 3);
627       int save_volatile_ok = volatile_ok;
628
629       volatile_ok = 1;
630
631       /* If this machine's insv can only insert into a register, copy OP0
632          into a register and save it back later.  */
633       /* This used to check flag_force_mem, but that was a serious
634          de-optimization now that flag_force_mem is enabled by -O2.  */
635       if (MEM_P (op0)
636           && ! ((*insn_data[(int) CODE_FOR_insv].operand[0].predicate)
637                 (op0, VOIDmode)))
638         {
639           rtx tempreg;
640           enum machine_mode bestmode;
641
642           /* Get the mode to use for inserting into this field.  If OP0 is
643              BLKmode, get the smallest mode consistent with the alignment. If
644              OP0 is a non-BLKmode object that is no wider than MAXMODE, use its
645              mode. Otherwise, use the smallest mode containing the field.  */
646
647           if (GET_MODE (op0) == BLKmode
648               || GET_MODE_SIZE (GET_MODE (op0)) > GET_MODE_SIZE (maxmode))
649             bestmode
650               = get_best_mode (bitsize, bitnum, MEM_ALIGN (op0), maxmode,
651                                MEM_VOLATILE_P (op0));
652           else
653             bestmode = GET_MODE (op0);
654
655           if (bestmode == VOIDmode
656               || (SLOW_UNALIGNED_ACCESS (bestmode, MEM_ALIGN (op0))
657                   && GET_MODE_BITSIZE (bestmode) > MEM_ALIGN (op0)))
658             goto insv_loses;
659
660           /* Adjust address to point to the containing unit of that mode.
661              Compute offset as multiple of this unit, counting in bytes.  */
662           unit = GET_MODE_BITSIZE (bestmode);
663           offset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
664           bitpos = bitnum % unit;
665           op0 = adjust_address (op0, bestmode,  offset);
666
667           /* Fetch that unit, store the bitfield in it, then store
668              the unit.  */
669           tempreg = copy_to_reg (op0);
670           store_bit_field (tempreg, bitsize, bitpos, fieldmode, value);
671           emit_move_insn (op0, tempreg);
672           return value;
673         }
674       volatile_ok = save_volatile_ok;
675
676       /* Add OFFSET into OP0's address.  */
677       if (MEM_P (xop0))
678         xop0 = adjust_address (xop0, byte_mode, offset);
679
680       /* If xop0 is a register, we need it in MAXMODE
681          to make it acceptable to the format of insv.  */
682       if (GET_CODE (xop0) == SUBREG)
683         /* We can't just change the mode, because this might clobber op0,
684            and we will need the original value of op0 if insv fails.  */
685         xop0 = gen_rtx_SUBREG (maxmode, SUBREG_REG (xop0), SUBREG_BYTE (xop0));
686       if (REG_P (xop0) && GET_MODE (xop0) != maxmode)
687         xop0 = gen_rtx_SUBREG (maxmode, xop0, 0);
688
689       /* On big-endian machines, we count bits from the most significant.
690          If the bit field insn does not, we must invert.  */
691
692       if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
693         xbitpos = unit - bitsize - xbitpos;
694
695       /* We have been counting XBITPOS within UNIT.
696          Count instead within the size of the register.  */
697       if (BITS_BIG_ENDIAN && !MEM_P (xop0))
698         xbitpos += GET_MODE_BITSIZE (maxmode) - unit;
699
700       unit = GET_MODE_BITSIZE (maxmode);
701
702       /* Convert VALUE to maxmode (which insv insn wants) in VALUE1.  */
703       value1 = value;
704       if (GET_MODE (value) != maxmode)
705         {
706           if (GET_MODE_BITSIZE (GET_MODE (value)) >= bitsize)
707             {
708               /* Optimization: Don't bother really extending VALUE
709                  if it has all the bits we will actually use.  However,
710                  if we must narrow it, be sure we do it correctly.  */
711
712               if (GET_MODE_SIZE (GET_MODE (value)) < GET_MODE_SIZE (maxmode))
713                 {
714                   rtx tmp;
715
716                   tmp = simplify_subreg (maxmode, value1, GET_MODE (value), 0);
717                   if (! tmp)
718                     tmp = simplify_gen_subreg (maxmode,
719                                                force_reg (GET_MODE (value),
720                                                           value1),
721                                                GET_MODE (value), 0);
722                   value1 = tmp;
723                 }
724               else
725                 value1 = gen_lowpart (maxmode, value1);
726             }
727           else if (GET_CODE (value) == CONST_INT)
728             value1 = gen_int_mode (INTVAL (value), maxmode);
729           else
730             /* Parse phase is supposed to make VALUE's data type
731                match that of the component reference, which is a type
732                at least as wide as the field; so VALUE should have
733                a mode that corresponds to that type.  */
734             gcc_assert (CONSTANT_P (value));
735         }
736
737       /* If this machine's insv insists on a register,
738          get VALUE1 into a register.  */
739       if (! ((*insn_data[(int) CODE_FOR_insv].operand[3].predicate)
740              (value1, maxmode)))
741         value1 = force_reg (maxmode, value1);
742
743       pat = gen_insv (xop0, GEN_INT (bitsize), GEN_INT (xbitpos), value1);
744       if (pat)
745         emit_insn (pat);
746       else
747         {
748           delete_insns_since (last);
749           store_fixed_bit_field (op0, offset, bitsize, bitpos, value);
750         }
751     }
752   else
753     insv_loses:
754     /* Insv is not available; store using shifts and boolean ops.  */
755     store_fixed_bit_field (op0, offset, bitsize, bitpos, value);
756   return value;
757 }
758 \f
759 /* Use shifts and boolean operations to store VALUE
760    into a bit field of width BITSIZE
761    in a memory location specified by OP0 except offset by OFFSET bytes.
762      (OFFSET must be 0 if OP0 is a register.)
763    The field starts at position BITPOS within the byte.
764     (If OP0 is a register, it may be a full word or a narrower mode,
765      but BITPOS still counts within a full word,
766      which is significant on bigendian machines.)  */
767
768 static void
769 store_fixed_bit_field (rtx op0, unsigned HOST_WIDE_INT offset,
770                        unsigned HOST_WIDE_INT bitsize,
771                        unsigned HOST_WIDE_INT bitpos, rtx value)
772 {
773   enum machine_mode mode;
774   unsigned int total_bits = BITS_PER_WORD;
775   rtx subtarget, temp;
776   int all_zero = 0;
777   int all_one = 0;
778
779   /* There is a case not handled here:
780      a structure with a known alignment of just a halfword
781      and a field split across two aligned halfwords within the structure.
782      Or likewise a structure with a known alignment of just a byte
783      and a field split across two bytes.
784      Such cases are not supposed to be able to occur.  */
785
786   if (REG_P (op0) || GET_CODE (op0) == SUBREG)
787     {
788       gcc_assert (!offset);
789       /* Special treatment for a bit field split across two registers.  */
790       if (bitsize + bitpos > BITS_PER_WORD)
791         {
792           store_split_bit_field (op0, bitsize, bitpos, value);
793           return;
794         }
795     }
796   else
797     {
798       /* Get the proper mode to use for this field.  We want a mode that
799          includes the entire field.  If such a mode would be larger than
800          a word, we won't be doing the extraction the normal way.
801          We don't want a mode bigger than the destination.  */
802
803       mode = GET_MODE (op0);
804       if (GET_MODE_BITSIZE (mode) == 0
805           || GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (word_mode))
806         mode = word_mode;
807       mode = get_best_mode (bitsize, bitpos + offset * BITS_PER_UNIT,
808                             MEM_ALIGN (op0), mode, MEM_VOLATILE_P (op0));
809
810       if (mode == VOIDmode)
811         {
812           /* The only way this should occur is if the field spans word
813              boundaries.  */
814           store_split_bit_field (op0, bitsize, bitpos + offset * BITS_PER_UNIT,
815                                  value);
816           return;
817         }
818
819       total_bits = GET_MODE_BITSIZE (mode);
820
821       /* Make sure bitpos is valid for the chosen mode.  Adjust BITPOS to
822          be in the range 0 to total_bits-1, and put any excess bytes in
823          OFFSET.  */
824       if (bitpos >= total_bits)
825         {
826           offset += (bitpos / total_bits) * (total_bits / BITS_PER_UNIT);
827           bitpos -= ((bitpos / total_bits) * (total_bits / BITS_PER_UNIT)
828                      * BITS_PER_UNIT);
829         }
830
831       /* Get ref to an aligned byte, halfword, or word containing the field.
832          Adjust BITPOS to be position within a word,
833          and OFFSET to be the offset of that word.
834          Then alter OP0 to refer to that word.  */
835       bitpos += (offset % (total_bits / BITS_PER_UNIT)) * BITS_PER_UNIT;
836       offset -= (offset % (total_bits / BITS_PER_UNIT));
837       op0 = adjust_address (op0, mode, offset);
838     }
839
840   mode = GET_MODE (op0);
841
842   /* Now MODE is either some integral mode for a MEM as OP0,
843      or is a full-word for a REG as OP0.  TOTAL_BITS corresponds.
844      The bit field is contained entirely within OP0.
845      BITPOS is the starting bit number within OP0.
846      (OP0's mode may actually be narrower than MODE.)  */
847
848   if (BYTES_BIG_ENDIAN)
849       /* BITPOS is the distance between our msb
850          and that of the containing datum.
851          Convert it to the distance from the lsb.  */
852       bitpos = total_bits - bitsize - bitpos;
853
854   /* Now BITPOS is always the distance between our lsb
855      and that of OP0.  */
856
857   /* Shift VALUE left by BITPOS bits.  If VALUE is not constant,
858      we must first convert its mode to MODE.  */
859
860   if (GET_CODE (value) == CONST_INT)
861     {
862       HOST_WIDE_INT v = INTVAL (value);
863
864       if (bitsize < HOST_BITS_PER_WIDE_INT)
865         v &= ((HOST_WIDE_INT) 1 << bitsize) - 1;
866
867       if (v == 0)
868         all_zero = 1;
869       else if ((bitsize < HOST_BITS_PER_WIDE_INT
870                 && v == ((HOST_WIDE_INT) 1 << bitsize) - 1)
871                || (bitsize == HOST_BITS_PER_WIDE_INT && v == -1))
872         all_one = 1;
873
874       value = lshift_value (mode, value, bitpos, bitsize);
875     }
876   else
877     {
878       int must_and = (GET_MODE_BITSIZE (GET_MODE (value)) != bitsize
879                       && bitpos + bitsize != GET_MODE_BITSIZE (mode));
880
881       if (GET_MODE (value) != mode)
882         {
883           if ((REG_P (value) || GET_CODE (value) == SUBREG)
884               && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (value)))
885             value = gen_lowpart (mode, value);
886           else
887             value = convert_to_mode (mode, value, 1);
888         }
889
890       if (must_and)
891         value = expand_binop (mode, and_optab, value,
892                               mask_rtx (mode, 0, bitsize, 0),
893                               NULL_RTX, 1, OPTAB_LIB_WIDEN);
894       if (bitpos > 0)
895         value = expand_shift (LSHIFT_EXPR, mode, value,
896                               build_int_cst (NULL_TREE, bitpos), NULL_RTX, 1);
897     }
898
899   /* Now clear the chosen bits in OP0,
900      except that if VALUE is -1 we need not bother.  */
901
902   subtarget = (REG_P (op0) || ! flag_force_mem) ? op0 : 0;
903
904   if (! all_one)
905     {
906       temp = expand_binop (mode, and_optab, op0,
907                            mask_rtx (mode, bitpos, bitsize, 1),
908                            subtarget, 1, OPTAB_LIB_WIDEN);
909       subtarget = temp;
910     }
911   else
912     temp = op0;
913
914   /* Now logical-or VALUE into OP0, unless it is zero.  */
915
916   if (! all_zero)
917     temp = expand_binop (mode, ior_optab, temp, value,
918                          subtarget, 1, OPTAB_LIB_WIDEN);
919   if (op0 != temp)
920     emit_move_insn (op0, temp);
921 }
922 \f
923 /* Store a bit field that is split across multiple accessible memory objects.
924
925    OP0 is the REG, SUBREG or MEM rtx for the first of the objects.
926    BITSIZE is the field width; BITPOS the position of its first bit
927    (within the word).
928    VALUE is the value to store.
929
930    This does not yet handle fields wider than BITS_PER_WORD.  */
931
932 static void
933 store_split_bit_field (rtx op0, unsigned HOST_WIDE_INT bitsize,
934                        unsigned HOST_WIDE_INT bitpos, rtx value)
935 {
936   unsigned int unit;
937   unsigned int bitsdone = 0;
938
939   /* Make sure UNIT isn't larger than BITS_PER_WORD, we can only handle that
940      much at a time.  */
941   if (REG_P (op0) || GET_CODE (op0) == SUBREG)
942     unit = BITS_PER_WORD;
943   else
944     unit = MIN (MEM_ALIGN (op0), BITS_PER_WORD);
945
946   /* If VALUE is a constant other than a CONST_INT, get it into a register in
947      WORD_MODE.  If we can do this using gen_lowpart_common, do so.  Note
948      that VALUE might be a floating-point constant.  */
949   if (CONSTANT_P (value) && GET_CODE (value) != CONST_INT)
950     {
951       rtx word = gen_lowpart_common (word_mode, value);
952
953       if (word && (value != word))
954         value = word;
955       else
956         value = gen_lowpart_common (word_mode,
957                                     force_reg (GET_MODE (value) != VOIDmode
958                                                ? GET_MODE (value)
959                                                : word_mode, value));
960     }
961
962   while (bitsdone < bitsize)
963     {
964       unsigned HOST_WIDE_INT thissize;
965       rtx part, word;
966       unsigned HOST_WIDE_INT thispos;
967       unsigned HOST_WIDE_INT offset;
968
969       offset = (bitpos + bitsdone) / unit;
970       thispos = (bitpos + bitsdone) % unit;
971
972       /* THISSIZE must not overrun a word boundary.  Otherwise,
973          store_fixed_bit_field will call us again, and we will mutually
974          recurse forever.  */
975       thissize = MIN (bitsize - bitsdone, BITS_PER_WORD);
976       thissize = MIN (thissize, unit - thispos);
977
978       if (BYTES_BIG_ENDIAN)
979         {
980           int total_bits;
981
982           /* We must do an endian conversion exactly the same way as it is
983              done in extract_bit_field, so that the two calls to
984              extract_fixed_bit_field will have comparable arguments.  */
985           if (!MEM_P (value) || GET_MODE (value) == BLKmode)
986             total_bits = BITS_PER_WORD;
987           else
988             total_bits = GET_MODE_BITSIZE (GET_MODE (value));
989
990           /* Fetch successively less significant portions.  */
991           if (GET_CODE (value) == CONST_INT)
992             part = GEN_INT (((unsigned HOST_WIDE_INT) (INTVAL (value))
993                              >> (bitsize - bitsdone - thissize))
994                             & (((HOST_WIDE_INT) 1 << thissize) - 1));
995           else
996             /* The args are chosen so that the last part includes the
997                lsb.  Give extract_bit_field the value it needs (with
998                endianness compensation) to fetch the piece we want.  */
999             part = extract_fixed_bit_field (word_mode, value, 0, thissize,
1000                                             total_bits - bitsize + bitsdone,
1001                                             NULL_RTX, 1);
1002         }
1003       else
1004         {
1005           /* Fetch successively more significant portions.  */
1006           if (GET_CODE (value) == CONST_INT)
1007             part = GEN_INT (((unsigned HOST_WIDE_INT) (INTVAL (value))
1008                              >> bitsdone)
1009                             & (((HOST_WIDE_INT) 1 << thissize) - 1));
1010           else
1011             part = extract_fixed_bit_field (word_mode, value, 0, thissize,
1012                                             bitsdone, NULL_RTX, 1);
1013         }
1014
1015       /* If OP0 is a register, then handle OFFSET here.
1016
1017          When handling multiword bitfields, extract_bit_field may pass
1018          down a word_mode SUBREG of a larger REG for a bitfield that actually
1019          crosses a word boundary.  Thus, for a SUBREG, we must find
1020          the current word starting from the base register.  */
1021       if (GET_CODE (op0) == SUBREG)
1022         {
1023           int word_offset = (SUBREG_BYTE (op0) / UNITS_PER_WORD) + offset;
1024           word = operand_subword_force (SUBREG_REG (op0), word_offset,
1025                                         GET_MODE (SUBREG_REG (op0)));
1026           offset = 0;
1027         }
1028       else if (REG_P (op0))
1029         {
1030           word = operand_subword_force (op0, offset, GET_MODE (op0));
1031           offset = 0;
1032         }
1033       else
1034         word = op0;
1035
1036       /* OFFSET is in UNITs, and UNIT is in bits.
1037          store_fixed_bit_field wants offset in bytes.  */
1038       store_fixed_bit_field (word, offset * unit / BITS_PER_UNIT, thissize,
1039                              thispos, part);
1040       bitsdone += thissize;
1041     }
1042 }
1043 \f
1044 /* Generate code to extract a byte-field from STR_RTX
1045    containing BITSIZE bits, starting at BITNUM,
1046    and put it in TARGET if possible (if TARGET is nonzero).
1047    Regardless of TARGET, we return the rtx for where the value is placed.
1048
1049    STR_RTX is the structure containing the byte (a REG or MEM).
1050    UNSIGNEDP is nonzero if this is an unsigned bit field.
1051    MODE is the natural mode of the field value once extracted.
1052    TMODE is the mode the caller would like the value to have;
1053    but the value may be returned with type MODE instead.
1054
1055    TOTAL_SIZE is the size in bytes of the containing structure,
1056    or -1 if varying.
1057
1058    If a TARGET is specified and we can store in it at no extra cost,
1059    we do so, and return TARGET.
1060    Otherwise, we return a REG of mode TMODE or MODE, with TMODE preferred
1061    if they are equally easy.  */
1062
1063 rtx
1064 extract_bit_field (rtx str_rtx, unsigned HOST_WIDE_INT bitsize,
1065                    unsigned HOST_WIDE_INT bitnum, int unsignedp, rtx target,
1066                    enum machine_mode mode, enum machine_mode tmode)
1067 {
1068   unsigned int unit
1069     = (MEM_P (str_rtx)) ? BITS_PER_UNIT : BITS_PER_WORD;
1070   unsigned HOST_WIDE_INT offset = bitnum / unit;
1071   unsigned HOST_WIDE_INT bitpos = bitnum % unit;
1072   rtx op0 = str_rtx;
1073   rtx spec_target = target;
1074   rtx spec_target_subreg = 0;
1075   enum machine_mode int_mode;
1076   enum machine_mode extv_mode = mode_for_extraction (EP_extv, 0);
1077   enum machine_mode extzv_mode = mode_for_extraction (EP_extzv, 0);
1078   enum machine_mode mode1;
1079   int byte_offset;
1080
1081   if (tmode == VOIDmode)
1082     tmode = mode;
1083
1084   while (GET_CODE (op0) == SUBREG)
1085     {
1086       bitpos += SUBREG_BYTE (op0) * BITS_PER_UNIT;
1087       if (bitpos > unit)
1088         {
1089           offset += (bitpos / unit);
1090           bitpos %= unit;
1091         }
1092       op0 = SUBREG_REG (op0);
1093     }
1094
1095   if (REG_P (op0)
1096       && mode == GET_MODE (op0)
1097       && bitnum == 0
1098       && bitsize == GET_MODE_BITSIZE (GET_MODE (op0)))
1099     {
1100       /* We're trying to extract a full register from itself.  */
1101       return op0;
1102     }
1103
1104   /* Use vec_extract patterns for extracting parts of vectors whenever
1105      available.  */
1106   if (VECTOR_MODE_P (GET_MODE (op0))
1107       && !MEM_P (op0)
1108       && (vec_extract_optab->handlers[GET_MODE (op0)].insn_code
1109           != CODE_FOR_nothing)
1110       && ((bitnum + bitsize - 1) / GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (op0)))
1111           == bitnum / GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (op0)))))
1112     {
1113       enum machine_mode outermode = GET_MODE (op0);
1114       enum machine_mode innermode = GET_MODE_INNER (outermode);
1115       int icode = (int) vec_extract_optab->handlers[outermode].insn_code;
1116       unsigned HOST_WIDE_INT pos = bitnum / GET_MODE_BITSIZE (innermode);
1117       rtx rtxpos = GEN_INT (pos);
1118       rtx src = op0;
1119       rtx dest = NULL, pat, seq;
1120       enum machine_mode mode0 = insn_data[icode].operand[0].mode;
1121       enum machine_mode mode1 = insn_data[icode].operand[1].mode;
1122       enum machine_mode mode2 = insn_data[icode].operand[2].mode;
1123
1124       if (innermode == tmode || innermode == mode)
1125         dest = target;
1126
1127       if (!dest)
1128         dest = gen_reg_rtx (innermode);
1129
1130       start_sequence ();
1131
1132       if (! (*insn_data[icode].operand[0].predicate) (dest, mode0))
1133         dest = copy_to_mode_reg (mode0, dest);
1134
1135       if (! (*insn_data[icode].operand[1].predicate) (src, mode1))
1136         src = copy_to_mode_reg (mode1, src);
1137
1138       if (! (*insn_data[icode].operand[2].predicate) (rtxpos, mode2))
1139         rtxpos = copy_to_mode_reg (mode1, rtxpos);
1140
1141       /* We could handle this, but we should always be called with a pseudo
1142          for our targets and all insns should take them as outputs.  */
1143       gcc_assert ((*insn_data[icode].operand[0].predicate) (dest, mode0)
1144                   && (*insn_data[icode].operand[1].predicate) (src, mode1)
1145                   && (*insn_data[icode].operand[2].predicate) (rtxpos, mode2));
1146
1147       pat = GEN_FCN (icode) (dest, src, rtxpos);
1148       seq = get_insns ();
1149       end_sequence ();
1150       if (pat)
1151         {
1152           emit_insn (seq);
1153           emit_insn (pat);
1154           return dest;
1155         }
1156     }
1157
1158   /* Make sure we are playing with integral modes.  Pun with subregs
1159      if we aren't.  */
1160   {
1161     enum machine_mode imode = int_mode_for_mode (GET_MODE (op0));
1162     if (imode != GET_MODE (op0))
1163       {
1164         if (MEM_P (op0))
1165           op0 = adjust_address (op0, imode, 0);
1166         else
1167           {
1168             gcc_assert (imode != BLKmode);
1169             op0 = gen_lowpart (imode, op0);
1170           }
1171       }
1172   }
1173
1174   /* We may be accessing data outside the field, which means
1175      we can alias adjacent data.  */
1176   if (MEM_P (op0))
1177     {
1178       op0 = shallow_copy_rtx (op0);
1179       set_mem_alias_set (op0, 0);
1180       set_mem_expr (op0, 0);
1181     }
1182
1183   /* Extraction of a full-word or multi-word value from a structure
1184      in a register or aligned memory can be done with just a SUBREG.
1185      A subword value in the least significant part of a register
1186      can also be extracted with a SUBREG.  For this, we need the
1187      byte offset of the value in op0.  */
1188
1189   byte_offset = bitpos / BITS_PER_UNIT + offset * UNITS_PER_WORD;
1190
1191   /* If OP0 is a register, BITPOS must count within a word.
1192      But as we have it, it counts within whatever size OP0 now has.
1193      On a bigendian machine, these are not the same, so convert.  */
1194   if (BYTES_BIG_ENDIAN
1195       && !MEM_P (op0)
1196       && unit > GET_MODE_BITSIZE (GET_MODE (op0)))
1197     bitpos += unit - GET_MODE_BITSIZE (GET_MODE (op0));
1198
1199   /* ??? We currently assume TARGET is at least as big as BITSIZE.
1200      If that's wrong, the solution is to test for it and set TARGET to 0
1201      if needed.  */
1202
1203   /* Only scalar integer modes can be converted via subregs.  There is an
1204      additional problem for FP modes here in that they can have a precision
1205      which is different from the size.  mode_for_size uses precision, but
1206      we want a mode based on the size, so we must avoid calling it for FP
1207      modes.  */
1208   mode1  = (SCALAR_INT_MODE_P (tmode)
1209             ? mode_for_size (bitsize, GET_MODE_CLASS (tmode), 0)
1210             : mode);
1211
1212   if (((bitsize >= BITS_PER_WORD && bitsize == GET_MODE_BITSIZE (mode)
1213         && bitpos % BITS_PER_WORD == 0)
1214        || (mode1 != BLKmode
1215            /* ??? The big endian test here is wrong.  This is correct
1216               if the value is in a register, and if mode_for_size is not
1217               the same mode as op0.  This causes us to get unnecessarily
1218               inefficient code from the Thumb port when -mbig-endian.  */
1219            && (BYTES_BIG_ENDIAN
1220                ? bitpos + bitsize == BITS_PER_WORD
1221                : bitpos == 0)))
1222       && ((!MEM_P (op0)
1223            && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
1224                                      GET_MODE_BITSIZE (GET_MODE (op0)))
1225            && GET_MODE_SIZE (mode1) != 0
1226            && byte_offset % GET_MODE_SIZE (mode1) == 0)
1227           || (MEM_P (op0)
1228               && (! SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (op0))
1229                   || (offset * BITS_PER_UNIT % bitsize == 0
1230                       && MEM_ALIGN (op0) % bitsize == 0)))))
1231     {
1232       if (mode1 != GET_MODE (op0))
1233         {
1234           if (GET_CODE (op0) == SUBREG)
1235             {
1236               if (GET_MODE (SUBREG_REG (op0)) == mode1
1237                   || GET_MODE_CLASS (mode1) == MODE_INT
1238                   || GET_MODE_CLASS (mode1) == MODE_PARTIAL_INT)
1239                 op0 = SUBREG_REG (op0);
1240               else
1241                 /* Else we've got some float mode source being extracted into
1242                    a different float mode destination -- this combination of
1243                    subregs results in Severe Tire Damage.  */
1244                 goto no_subreg_mode_swap;
1245             }
1246           if (REG_P (op0))
1247             op0 = gen_rtx_SUBREG (mode1, op0, byte_offset);
1248           else
1249             op0 = adjust_address (op0, mode1, offset);
1250         }
1251       if (mode1 != mode)
1252         return convert_to_mode (tmode, op0, unsignedp);
1253       return op0;
1254     }
1255  no_subreg_mode_swap:
1256
1257   /* Handle fields bigger than a word.  */
1258
1259   if (bitsize > BITS_PER_WORD)
1260     {
1261       /* Here we transfer the words of the field
1262          in the order least significant first.
1263          This is because the most significant word is the one which may
1264          be less than full.  */
1265
1266       unsigned int nwords = (bitsize + (BITS_PER_WORD - 1)) / BITS_PER_WORD;
1267       unsigned int i;
1268
1269       if (target == 0 || !REG_P (target))
1270         target = gen_reg_rtx (mode);
1271
1272       /* Indicate for flow that the entire target reg is being set.  */
1273       emit_insn (gen_rtx_CLOBBER (VOIDmode, target));
1274
1275       for (i = 0; i < nwords; i++)
1276         {
1277           /* If I is 0, use the low-order word in both field and target;
1278              if I is 1, use the next to lowest word; and so on.  */
1279           /* Word number in TARGET to use.  */
1280           unsigned int wordnum
1281             = (WORDS_BIG_ENDIAN
1282                ? GET_MODE_SIZE (GET_MODE (target)) / UNITS_PER_WORD - i - 1
1283                : i);
1284           /* Offset from start of field in OP0.  */
1285           unsigned int bit_offset = (WORDS_BIG_ENDIAN
1286                                      ? MAX (0, ((int) bitsize - ((int) i + 1)
1287                                                 * (int) BITS_PER_WORD))
1288                                      : (int) i * BITS_PER_WORD);
1289           rtx target_part = operand_subword (target, wordnum, 1, VOIDmode);
1290           rtx result_part
1291             = extract_bit_field (op0, MIN (BITS_PER_WORD,
1292                                            bitsize - i * BITS_PER_WORD),
1293                                  bitnum + bit_offset, 1, target_part, mode,
1294                                  word_mode);
1295
1296           gcc_assert (target_part);
1297
1298           if (result_part != target_part)
1299             emit_move_insn (target_part, result_part);
1300         }
1301
1302       if (unsignedp)
1303         {
1304           /* Unless we've filled TARGET, the upper regs in a multi-reg value
1305              need to be zero'd out.  */
1306           if (GET_MODE_SIZE (GET_MODE (target)) > nwords * UNITS_PER_WORD)
1307             {
1308               unsigned int i, total_words;
1309
1310               total_words = GET_MODE_SIZE (GET_MODE (target)) / UNITS_PER_WORD;
1311               for (i = nwords; i < total_words; i++)
1312                 emit_move_insn
1313                   (operand_subword (target,
1314                                     WORDS_BIG_ENDIAN ? total_words - i - 1 : i,
1315                                     1, VOIDmode),
1316                    const0_rtx);
1317             }
1318           return target;
1319         }
1320
1321       /* Signed bit field: sign-extend with two arithmetic shifts.  */
1322       target = expand_shift (LSHIFT_EXPR, mode, target,
1323                              build_int_cst (NULL_TREE,
1324                                             GET_MODE_BITSIZE (mode) - bitsize),
1325                              NULL_RTX, 0);
1326       return expand_shift (RSHIFT_EXPR, mode, target,
1327                            build_int_cst (NULL_TREE,
1328                                           GET_MODE_BITSIZE (mode) - bitsize),
1329                            NULL_RTX, 0);
1330     }
1331
1332   /* From here on we know the desired field is smaller than a word.  */
1333
1334   /* Check if there is a correspondingly-sized integer field, so we can
1335      safely extract it as one size of integer, if necessary; then
1336      truncate or extend to the size that is wanted; then use SUBREGs or
1337      convert_to_mode to get one of the modes we really wanted.  */
1338
1339   int_mode = int_mode_for_mode (tmode);
1340   if (int_mode == BLKmode)
1341     int_mode = int_mode_for_mode (mode);
1342   /* Should probably push op0 out to memory and then do a load.  */
1343   gcc_assert (int_mode != BLKmode);
1344
1345   /* OFFSET is the number of words or bytes (UNIT says which)
1346      from STR_RTX to the first word or byte containing part of the field.  */
1347   if (!MEM_P (op0))
1348     {
1349       if (offset != 0
1350           || GET_MODE_SIZE (GET_MODE (op0)) > UNITS_PER_WORD)
1351         {
1352           if (!REG_P (op0))
1353             op0 = copy_to_reg (op0);
1354           op0 = gen_rtx_SUBREG (mode_for_size (BITS_PER_WORD, MODE_INT, 0),
1355                                 op0, (offset * UNITS_PER_WORD));
1356         }
1357       offset = 0;
1358     }
1359
1360   /* Now OFFSET is nonzero only for memory operands.  */
1361
1362   if (unsignedp)
1363     {
1364       if (HAVE_extzv
1365           && (GET_MODE_BITSIZE (extzv_mode) >= bitsize)
1366           && ! ((REG_P (op0) || GET_CODE (op0) == SUBREG)
1367                 && (bitsize + bitpos > GET_MODE_BITSIZE (extzv_mode))))
1368         {
1369           unsigned HOST_WIDE_INT xbitpos = bitpos, xoffset = offset;
1370           rtx bitsize_rtx, bitpos_rtx;
1371           rtx last = get_last_insn ();
1372           rtx xop0 = op0;
1373           rtx xtarget = target;
1374           rtx xspec_target = spec_target;
1375           rtx xspec_target_subreg = spec_target_subreg;
1376           rtx pat;
1377           enum machine_mode maxmode = mode_for_extraction (EP_extzv, 0);
1378
1379           if (MEM_P (xop0))
1380             {
1381               int save_volatile_ok = volatile_ok;
1382               volatile_ok = 1;
1383
1384               /* Is the memory operand acceptable?  */
1385               if (! ((*insn_data[(int) CODE_FOR_extzv].operand[1].predicate)
1386                      (xop0, GET_MODE (xop0))))
1387                 {
1388                   /* No, load into a reg and extract from there.  */
1389                   enum machine_mode bestmode;
1390
1391                   /* Get the mode to use for inserting into this field.  If
1392                      OP0 is BLKmode, get the smallest mode consistent with the
1393                      alignment. If OP0 is a non-BLKmode object that is no
1394                      wider than MAXMODE, use its mode. Otherwise, use the
1395                      smallest mode containing the field.  */
1396
1397                   if (GET_MODE (xop0) == BLKmode
1398                       || (GET_MODE_SIZE (GET_MODE (op0))
1399                           > GET_MODE_SIZE (maxmode)))
1400                     bestmode = get_best_mode (bitsize, bitnum,
1401                                               MEM_ALIGN (xop0), maxmode,
1402                                               MEM_VOLATILE_P (xop0));
1403                   else
1404                     bestmode = GET_MODE (xop0);
1405
1406                   if (bestmode == VOIDmode
1407                       || (SLOW_UNALIGNED_ACCESS (bestmode, MEM_ALIGN (xop0))
1408                           && GET_MODE_BITSIZE (bestmode) > MEM_ALIGN (xop0)))
1409                     goto extzv_loses;
1410
1411                   /* Compute offset as multiple of this unit,
1412                      counting in bytes.  */
1413                   unit = GET_MODE_BITSIZE (bestmode);
1414                   xoffset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
1415                   xbitpos = bitnum % unit;
1416                   xop0 = adjust_address (xop0, bestmode, xoffset);
1417
1418                   /* Fetch it to a register in that size.  */
1419                   xop0 = force_reg (bestmode, xop0);
1420
1421                   /* XBITPOS counts within UNIT, which is what is expected.  */
1422                 }
1423               else
1424                 /* Get ref to first byte containing part of the field.  */
1425                 xop0 = adjust_address (xop0, byte_mode, xoffset);
1426
1427               volatile_ok = save_volatile_ok;
1428             }
1429
1430           /* If op0 is a register, we need it in MAXMODE (which is usually
1431              SImode). to make it acceptable to the format of extzv.  */
1432           if (GET_CODE (xop0) == SUBREG && GET_MODE (xop0) != maxmode)
1433             goto extzv_loses;
1434           if (REG_P (xop0) && GET_MODE (xop0) != maxmode)
1435             xop0 = gen_rtx_SUBREG (maxmode, xop0, 0);
1436
1437           /* On big-endian machines, we count bits from the most significant.
1438              If the bit field insn does not, we must invert.  */
1439           if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
1440             xbitpos = unit - bitsize - xbitpos;
1441
1442           /* Now convert from counting within UNIT to counting in MAXMODE.  */
1443           if (BITS_BIG_ENDIAN && !MEM_P (xop0))
1444             xbitpos += GET_MODE_BITSIZE (maxmode) - unit;
1445
1446           unit = GET_MODE_BITSIZE (maxmode);
1447
1448           if (xtarget == 0
1449               || (flag_force_mem && MEM_P (xtarget)))
1450             xtarget = xspec_target = gen_reg_rtx (tmode);
1451
1452           if (GET_MODE (xtarget) != maxmode)
1453             {
1454               if (REG_P (xtarget))
1455                 {
1456                   int wider = (GET_MODE_SIZE (maxmode)
1457                                > GET_MODE_SIZE (GET_MODE (xtarget)));
1458                   xtarget = gen_lowpart (maxmode, xtarget);
1459                   if (wider)
1460                     xspec_target_subreg = xtarget;
1461                 }
1462               else
1463                 xtarget = gen_reg_rtx (maxmode);
1464             }
1465
1466           /* If this machine's extzv insists on a register target,
1467              make sure we have one.  */
1468           if (! ((*insn_data[(int) CODE_FOR_extzv].operand[0].predicate)
1469                  (xtarget, maxmode)))
1470             xtarget = gen_reg_rtx (maxmode);
1471
1472           bitsize_rtx = GEN_INT (bitsize);
1473           bitpos_rtx = GEN_INT (xbitpos);
1474
1475           pat = gen_extzv (xtarget, xop0, bitsize_rtx, bitpos_rtx);
1476           if (pat)
1477             {
1478               emit_insn (pat);
1479               target = xtarget;
1480               spec_target = xspec_target;
1481               spec_target_subreg = xspec_target_subreg;
1482             }
1483           else
1484             {
1485               delete_insns_since (last);
1486               target = extract_fixed_bit_field (int_mode, op0, offset, bitsize,
1487                                                 bitpos, target, 1);
1488             }
1489         }
1490       else
1491       extzv_loses:
1492         target = extract_fixed_bit_field (int_mode, op0, offset, bitsize,
1493                                           bitpos, target, 1);
1494     }
1495   else
1496     {
1497       if (HAVE_extv
1498           && (GET_MODE_BITSIZE (extv_mode) >= bitsize)
1499           && ! ((REG_P (op0) || GET_CODE (op0) == SUBREG)
1500                 && (bitsize + bitpos > GET_MODE_BITSIZE (extv_mode))))
1501         {
1502           int xbitpos = bitpos, xoffset = offset;
1503           rtx bitsize_rtx, bitpos_rtx;
1504           rtx last = get_last_insn ();
1505           rtx xop0 = op0, xtarget = target;
1506           rtx xspec_target = spec_target;
1507           rtx xspec_target_subreg = spec_target_subreg;
1508           rtx pat;
1509           enum machine_mode maxmode = mode_for_extraction (EP_extv, 0);
1510
1511           if (MEM_P (xop0))
1512             {
1513               /* Is the memory operand acceptable?  */
1514               if (! ((*insn_data[(int) CODE_FOR_extv].operand[1].predicate)
1515                      (xop0, GET_MODE (xop0))))
1516                 {
1517                   /* No, load into a reg and extract from there.  */
1518                   enum machine_mode bestmode;
1519
1520                   /* Get the mode to use for inserting into this field.  If
1521                      OP0 is BLKmode, get the smallest mode consistent with the
1522                      alignment. If OP0 is a non-BLKmode object that is no
1523                      wider than MAXMODE, use its mode. Otherwise, use the
1524                      smallest mode containing the field.  */
1525
1526                   if (GET_MODE (xop0) == BLKmode
1527                       || (GET_MODE_SIZE (GET_MODE (op0))
1528                           > GET_MODE_SIZE (maxmode)))
1529                     bestmode = get_best_mode (bitsize, bitnum,
1530                                               MEM_ALIGN (xop0), maxmode,
1531                                               MEM_VOLATILE_P (xop0));
1532                   else
1533                     bestmode = GET_MODE (xop0);
1534
1535                   if (bestmode == VOIDmode
1536                       || (SLOW_UNALIGNED_ACCESS (bestmode, MEM_ALIGN (xop0))
1537                           && GET_MODE_BITSIZE (bestmode) > MEM_ALIGN (xop0)))
1538                     goto extv_loses;
1539
1540                   /* Compute offset as multiple of this unit,
1541                      counting in bytes.  */
1542                   unit = GET_MODE_BITSIZE (bestmode);
1543                   xoffset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
1544                   xbitpos = bitnum % unit;
1545                   xop0 = adjust_address (xop0, bestmode, xoffset);
1546
1547                   /* Fetch it to a register in that size.  */
1548                   xop0 = force_reg (bestmode, xop0);
1549
1550                   /* XBITPOS counts within UNIT, which is what is expected.  */
1551                 }
1552               else
1553                 /* Get ref to first byte containing part of the field.  */
1554                 xop0 = adjust_address (xop0, byte_mode, xoffset);
1555             }
1556
1557           /* If op0 is a register, we need it in MAXMODE (which is usually
1558              SImode) to make it acceptable to the format of extv.  */
1559           if (GET_CODE (xop0) == SUBREG && GET_MODE (xop0) != maxmode)
1560             goto extv_loses;
1561           if (REG_P (xop0) && GET_MODE (xop0) != maxmode)
1562             xop0 = gen_rtx_SUBREG (maxmode, xop0, 0);
1563
1564           /* On big-endian machines, we count bits from the most significant.
1565              If the bit field insn does not, we must invert.  */
1566           if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
1567             xbitpos = unit - bitsize - xbitpos;
1568
1569           /* XBITPOS counts within a size of UNIT.
1570              Adjust to count within a size of MAXMODE.  */
1571           if (BITS_BIG_ENDIAN && !MEM_P (xop0))
1572             xbitpos += (GET_MODE_BITSIZE (maxmode) - unit);
1573
1574           unit = GET_MODE_BITSIZE (maxmode);
1575
1576           if (xtarget == 0
1577               || (flag_force_mem && MEM_P (xtarget)))
1578             xtarget = xspec_target = gen_reg_rtx (tmode);
1579
1580           if (GET_MODE (xtarget) != maxmode)
1581             {
1582               if (REG_P (xtarget))
1583                 {
1584                   int wider = (GET_MODE_SIZE (maxmode)
1585                                > GET_MODE_SIZE (GET_MODE (xtarget)));
1586                   xtarget = gen_lowpart (maxmode, xtarget);
1587                   if (wider)
1588                     xspec_target_subreg = xtarget;
1589                 }
1590               else
1591                 xtarget = gen_reg_rtx (maxmode);
1592             }
1593
1594           /* If this machine's extv insists on a register target,
1595              make sure we have one.  */
1596           if (! ((*insn_data[(int) CODE_FOR_extv].operand[0].predicate)
1597                  (xtarget, maxmode)))
1598             xtarget = gen_reg_rtx (maxmode);
1599
1600           bitsize_rtx = GEN_INT (bitsize);
1601           bitpos_rtx = GEN_INT (xbitpos);
1602
1603           pat = gen_extv (xtarget, xop0, bitsize_rtx, bitpos_rtx);
1604           if (pat)
1605             {
1606               emit_insn (pat);
1607               target = xtarget;
1608               spec_target = xspec_target;
1609               spec_target_subreg = xspec_target_subreg;
1610             }
1611           else
1612             {
1613               delete_insns_since (last);
1614               target = extract_fixed_bit_field (int_mode, op0, offset, bitsize,
1615                                                 bitpos, target, 0);
1616             }
1617         }
1618       else
1619       extv_loses:
1620         target = extract_fixed_bit_field (int_mode, op0, offset, bitsize,
1621                                           bitpos, target, 0);
1622     }
1623   if (target == spec_target)
1624     return target;
1625   if (target == spec_target_subreg)
1626     return spec_target;
1627   if (GET_MODE (target) != tmode && GET_MODE (target) != mode)
1628     {
1629       /* If the target mode is floating-point, first convert to the
1630          integer mode of that size and then access it as a floating-point
1631          value via a SUBREG.  */
1632       if (GET_MODE_CLASS (tmode) != MODE_INT
1633           && GET_MODE_CLASS (tmode) != MODE_PARTIAL_INT)
1634         {
1635           target = convert_to_mode (mode_for_size (GET_MODE_BITSIZE (tmode),
1636                                                    MODE_INT, 0),
1637                                     target, unsignedp);
1638           return gen_lowpart (tmode, target);
1639         }
1640       else
1641         return convert_to_mode (tmode, target, unsignedp);
1642     }
1643   return target;
1644 }
1645 \f
1646 /* Extract a bit field using shifts and boolean operations
1647    Returns an rtx to represent the value.
1648    OP0 addresses a register (word) or memory (byte).
1649    BITPOS says which bit within the word or byte the bit field starts in.
1650    OFFSET says how many bytes farther the bit field starts;
1651     it is 0 if OP0 is a register.
1652    BITSIZE says how many bits long the bit field is.
1653     (If OP0 is a register, it may be narrower than a full word,
1654      but BITPOS still counts within a full word,
1655      which is significant on bigendian machines.)
1656
1657    UNSIGNEDP is nonzero for an unsigned bit field (don't sign-extend value).
1658    If TARGET is nonzero, attempts to store the value there
1659    and return TARGET, but this is not guaranteed.
1660    If TARGET is not used, create a pseudo-reg of mode TMODE for the value.  */
1661
1662 static rtx
1663 extract_fixed_bit_field (enum machine_mode tmode, rtx op0,
1664                          unsigned HOST_WIDE_INT offset,
1665                          unsigned HOST_WIDE_INT bitsize,
1666                          unsigned HOST_WIDE_INT bitpos, rtx target,
1667                          int unsignedp)
1668 {
1669   unsigned int total_bits = BITS_PER_WORD;
1670   enum machine_mode mode;
1671
1672   if (GET_CODE (op0) == SUBREG || REG_P (op0))
1673     {
1674       /* Special treatment for a bit field split across two registers.  */
1675       if (bitsize + bitpos > BITS_PER_WORD)
1676         return extract_split_bit_field (op0, bitsize, bitpos, unsignedp);
1677     }
1678   else
1679     {
1680       /* Get the proper mode to use for this field.  We want a mode that
1681          includes the entire field.  If such a mode would be larger than
1682          a word, we won't be doing the extraction the normal way.  */
1683
1684       mode = get_best_mode (bitsize, bitpos + offset * BITS_PER_UNIT,
1685                             MEM_ALIGN (op0), word_mode, MEM_VOLATILE_P (op0));
1686
1687       if (mode == VOIDmode)
1688         /* The only way this should occur is if the field spans word
1689            boundaries.  */
1690         return extract_split_bit_field (op0, bitsize,
1691                                         bitpos + offset * BITS_PER_UNIT,
1692                                         unsignedp);
1693
1694       total_bits = GET_MODE_BITSIZE (mode);
1695
1696       /* Make sure bitpos is valid for the chosen mode.  Adjust BITPOS to
1697          be in the range 0 to total_bits-1, and put any excess bytes in
1698          OFFSET.  */
1699       if (bitpos >= total_bits)
1700         {
1701           offset += (bitpos / total_bits) * (total_bits / BITS_PER_UNIT);
1702           bitpos -= ((bitpos / total_bits) * (total_bits / BITS_PER_UNIT)
1703                      * BITS_PER_UNIT);
1704         }
1705
1706       /* Get ref to an aligned byte, halfword, or word containing the field.
1707          Adjust BITPOS to be position within a word,
1708          and OFFSET to be the offset of that word.
1709          Then alter OP0 to refer to that word.  */
1710       bitpos += (offset % (total_bits / BITS_PER_UNIT)) * BITS_PER_UNIT;
1711       offset -= (offset % (total_bits / BITS_PER_UNIT));
1712       op0 = adjust_address (op0, mode, offset);
1713     }
1714
1715   mode = GET_MODE (op0);
1716
1717   if (BYTES_BIG_ENDIAN)
1718     /* BITPOS is the distance between our msb and that of OP0.
1719        Convert it to the distance from the lsb.  */
1720     bitpos = total_bits - bitsize - bitpos;
1721
1722   /* Now BITPOS is always the distance between the field's lsb and that of OP0.
1723      We have reduced the big-endian case to the little-endian case.  */
1724
1725   if (unsignedp)
1726     {
1727       if (bitpos)
1728         {
1729           /* If the field does not already start at the lsb,
1730              shift it so it does.  */
1731           tree amount = build_int_cst (NULL_TREE, bitpos);
1732           /* Maybe propagate the target for the shift.  */
1733           /* But not if we will return it--could confuse integrate.c.  */
1734           rtx subtarget = (target != 0 && REG_P (target) ? target : 0);
1735           if (tmode != mode) subtarget = 0;
1736           op0 = expand_shift (RSHIFT_EXPR, mode, op0, amount, subtarget, 1);
1737         }
1738       /* Convert the value to the desired mode.  */
1739       if (mode != tmode)
1740         op0 = convert_to_mode (tmode, op0, 1);
1741
1742       /* Unless the msb of the field used to be the msb when we shifted,
1743          mask out the upper bits.  */
1744
1745       if (GET_MODE_BITSIZE (mode) != bitpos + bitsize)
1746         return expand_binop (GET_MODE (op0), and_optab, op0,
1747                              mask_rtx (GET_MODE (op0), 0, bitsize, 0),
1748                              target, 1, OPTAB_LIB_WIDEN);
1749       return op0;
1750     }
1751
1752   /* To extract a signed bit-field, first shift its msb to the msb of the word,
1753      then arithmetic-shift its lsb to the lsb of the word.  */
1754   op0 = force_reg (mode, op0);
1755   if (mode != tmode)
1756     target = 0;
1757
1758   /* Find the narrowest integer mode that contains the field.  */
1759
1760   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1761        mode = GET_MODE_WIDER_MODE (mode))
1762     if (GET_MODE_BITSIZE (mode) >= bitsize + bitpos)
1763       {
1764         op0 = convert_to_mode (mode, op0, 0);
1765         break;
1766       }
1767
1768   if (GET_MODE_BITSIZE (mode) != (bitsize + bitpos))
1769     {
1770       tree amount
1771         = build_int_cst (NULL_TREE,
1772                          GET_MODE_BITSIZE (mode) - (bitsize + bitpos));
1773       /* Maybe propagate the target for the shift.  */
1774       rtx subtarget = (target != 0 && REG_P (target) ? target : 0);
1775       op0 = expand_shift (LSHIFT_EXPR, mode, op0, amount, subtarget, 1);
1776     }
1777
1778   return expand_shift (RSHIFT_EXPR, mode, op0,
1779                        build_int_cst (NULL_TREE,
1780                                       GET_MODE_BITSIZE (mode) - bitsize),
1781                        target, 0);
1782 }
1783 \f
1784 /* Return a constant integer (CONST_INT or CONST_DOUBLE) mask value
1785    of mode MODE with BITSIZE ones followed by BITPOS zeros, or the
1786    complement of that if COMPLEMENT.  The mask is truncated if
1787    necessary to the width of mode MODE.  The mask is zero-extended if
1788    BITSIZE+BITPOS is too small for MODE.  */
1789
1790 static rtx
1791 mask_rtx (enum machine_mode mode, int bitpos, int bitsize, int complement)
1792 {
1793   HOST_WIDE_INT masklow, maskhigh;
1794
1795   if (bitsize == 0)
1796     masklow = 0;
1797   else if (bitpos < HOST_BITS_PER_WIDE_INT)
1798     masklow = (HOST_WIDE_INT) -1 << bitpos;
1799   else
1800     masklow = 0;
1801
1802   if (bitpos + bitsize < HOST_BITS_PER_WIDE_INT)
1803     masklow &= ((unsigned HOST_WIDE_INT) -1
1804                 >> (HOST_BITS_PER_WIDE_INT - bitpos - bitsize));
1805
1806   if (bitpos <= HOST_BITS_PER_WIDE_INT)
1807     maskhigh = -1;
1808   else
1809     maskhigh = (HOST_WIDE_INT) -1 << (bitpos - HOST_BITS_PER_WIDE_INT);
1810
1811   if (bitsize == 0)
1812     maskhigh = 0;
1813   else if (bitpos + bitsize > HOST_BITS_PER_WIDE_INT)
1814     maskhigh &= ((unsigned HOST_WIDE_INT) -1
1815                  >> (2 * HOST_BITS_PER_WIDE_INT - bitpos - bitsize));
1816   else
1817     maskhigh = 0;
1818
1819   if (complement)
1820     {
1821       maskhigh = ~maskhigh;
1822       masklow = ~masklow;
1823     }
1824
1825   return immed_double_const (masklow, maskhigh, mode);
1826 }
1827
1828 /* Return a constant integer (CONST_INT or CONST_DOUBLE) rtx with the value
1829    VALUE truncated to BITSIZE bits and then shifted left BITPOS bits.  */
1830
1831 static rtx
1832 lshift_value (enum machine_mode mode, rtx value, int bitpos, int bitsize)
1833 {
1834   unsigned HOST_WIDE_INT v = INTVAL (value);
1835   HOST_WIDE_INT low, high;
1836
1837   if (bitsize < HOST_BITS_PER_WIDE_INT)
1838     v &= ~((HOST_WIDE_INT) -1 << bitsize);
1839
1840   if (bitpos < HOST_BITS_PER_WIDE_INT)
1841     {
1842       low = v << bitpos;
1843       high = (bitpos > 0 ? (v >> (HOST_BITS_PER_WIDE_INT - bitpos)) : 0);
1844     }
1845   else
1846     {
1847       low = 0;
1848       high = v << (bitpos - HOST_BITS_PER_WIDE_INT);
1849     }
1850
1851   return immed_double_const (low, high, mode);
1852 }
1853 \f
1854 /* Extract a bit field that is split across two words
1855    and return an RTX for the result.
1856
1857    OP0 is the REG, SUBREG or MEM rtx for the first of the two words.
1858    BITSIZE is the field width; BITPOS, position of its first bit, in the word.
1859    UNSIGNEDP is 1 if should zero-extend the contents; else sign-extend.  */
1860
1861 static rtx
1862 extract_split_bit_field (rtx op0, unsigned HOST_WIDE_INT bitsize,
1863                          unsigned HOST_WIDE_INT bitpos, int unsignedp)
1864 {
1865   unsigned int unit;
1866   unsigned int bitsdone = 0;
1867   rtx result = NULL_RTX;
1868   int first = 1;
1869
1870   /* Make sure UNIT isn't larger than BITS_PER_WORD, we can only handle that
1871      much at a time.  */
1872   if (REG_P (op0) || GET_CODE (op0) == SUBREG)
1873     unit = BITS_PER_WORD;
1874   else
1875     unit = MIN (MEM_ALIGN (op0), BITS_PER_WORD);
1876
1877   while (bitsdone < bitsize)
1878     {
1879       unsigned HOST_WIDE_INT thissize;
1880       rtx part, word;
1881       unsigned HOST_WIDE_INT thispos;
1882       unsigned HOST_WIDE_INT offset;
1883
1884       offset = (bitpos + bitsdone) / unit;
1885       thispos = (bitpos + bitsdone) % unit;
1886
1887       /* THISSIZE must not overrun a word boundary.  Otherwise,
1888          extract_fixed_bit_field will call us again, and we will mutually
1889          recurse forever.  */
1890       thissize = MIN (bitsize - bitsdone, BITS_PER_WORD);
1891       thissize = MIN (thissize, unit - thispos);
1892
1893       /* If OP0 is a register, then handle OFFSET here.
1894
1895          When handling multiword bitfields, extract_bit_field may pass
1896          down a word_mode SUBREG of a larger REG for a bitfield that actually
1897          crosses a word boundary.  Thus, for a SUBREG, we must find
1898          the current word starting from the base register.  */
1899       if (GET_CODE (op0) == SUBREG)
1900         {
1901           int word_offset = (SUBREG_BYTE (op0) / UNITS_PER_WORD) + offset;
1902           word = operand_subword_force (SUBREG_REG (op0), word_offset,
1903                                         GET_MODE (SUBREG_REG (op0)));
1904           offset = 0;
1905         }
1906       else if (REG_P (op0))
1907         {
1908           word = operand_subword_force (op0, offset, GET_MODE (op0));
1909           offset = 0;
1910         }
1911       else
1912         word = op0;
1913
1914       /* Extract the parts in bit-counting order,
1915          whose meaning is determined by BYTES_PER_UNIT.
1916          OFFSET is in UNITs, and UNIT is in bits.
1917          extract_fixed_bit_field wants offset in bytes.  */
1918       part = extract_fixed_bit_field (word_mode, word,
1919                                       offset * unit / BITS_PER_UNIT,
1920                                       thissize, thispos, 0, 1);
1921       bitsdone += thissize;
1922
1923       /* Shift this part into place for the result.  */
1924       if (BYTES_BIG_ENDIAN)
1925         {
1926           if (bitsize != bitsdone)
1927             part = expand_shift (LSHIFT_EXPR, word_mode, part,
1928                                  build_int_cst (NULL_TREE, bitsize - bitsdone),
1929                                  0, 1);
1930         }
1931       else
1932         {
1933           if (bitsdone != thissize)
1934             part = expand_shift (LSHIFT_EXPR, word_mode, part,
1935                                  build_int_cst (NULL_TREE,
1936                                                 bitsdone - thissize), 0, 1);
1937         }
1938
1939       if (first)
1940         result = part;
1941       else
1942         /* Combine the parts with bitwise or.  This works
1943            because we extracted each part as an unsigned bit field.  */
1944         result = expand_binop (word_mode, ior_optab, part, result, NULL_RTX, 1,
1945                                OPTAB_LIB_WIDEN);
1946
1947       first = 0;
1948     }
1949
1950   /* Unsigned bit field: we are done.  */
1951   if (unsignedp)
1952     return result;
1953   /* Signed bit field: sign-extend with two arithmetic shifts.  */
1954   result = expand_shift (LSHIFT_EXPR, word_mode, result,
1955                          build_int_cst (NULL_TREE, BITS_PER_WORD - bitsize),
1956                          NULL_RTX, 0);
1957   return expand_shift (RSHIFT_EXPR, word_mode, result,
1958                        build_int_cst (NULL_TREE, BITS_PER_WORD - bitsize),
1959                        NULL_RTX, 0);
1960 }
1961 \f
1962 /* Add INC into TARGET.  */
1963
1964 void
1965 expand_inc (rtx target, rtx inc)
1966 {
1967   rtx value = expand_binop (GET_MODE (target), add_optab,
1968                             target, inc,
1969                             target, 0, OPTAB_LIB_WIDEN);
1970   if (value != target)
1971     emit_move_insn (target, value);
1972 }
1973
1974 /* Subtract DEC from TARGET.  */
1975
1976 void
1977 expand_dec (rtx target, rtx dec)
1978 {
1979   rtx value = expand_binop (GET_MODE (target), sub_optab,
1980                             target, dec,
1981                             target, 0, OPTAB_LIB_WIDEN);
1982   if (value != target)
1983     emit_move_insn (target, value);
1984 }
1985 \f
1986 /* Output a shift instruction for expression code CODE,
1987    with SHIFTED being the rtx for the value to shift,
1988    and AMOUNT the tree for the amount to shift by.
1989    Store the result in the rtx TARGET, if that is convenient.
1990    If UNSIGNEDP is nonzero, do a logical shift; otherwise, arithmetic.
1991    Return the rtx for where the value is.  */
1992
1993 rtx
1994 expand_shift (enum tree_code code, enum machine_mode mode, rtx shifted,
1995               tree amount, rtx target, int unsignedp)
1996 {
1997   rtx op1, temp = 0;
1998   int left = (code == LSHIFT_EXPR || code == LROTATE_EXPR);
1999   int rotate = (code == LROTATE_EXPR || code == RROTATE_EXPR);
2000   int try;
2001
2002   /* Previously detected shift-counts computed by NEGATE_EXPR
2003      and shifted in the other direction; but that does not work
2004      on all machines.  */
2005
2006   op1 = expand_expr (amount, NULL_RTX, VOIDmode, 0);
2007
2008   if (SHIFT_COUNT_TRUNCATED)
2009     {
2010       if (GET_CODE (op1) == CONST_INT
2011           && ((unsigned HOST_WIDE_INT) INTVAL (op1) >=
2012               (unsigned HOST_WIDE_INT) GET_MODE_BITSIZE (mode)))
2013         op1 = GEN_INT ((unsigned HOST_WIDE_INT) INTVAL (op1)
2014                        % GET_MODE_BITSIZE (mode));
2015       else if (GET_CODE (op1) == SUBREG
2016                && subreg_lowpart_p (op1))
2017         op1 = SUBREG_REG (op1);
2018     }
2019
2020   if (op1 == const0_rtx)
2021     return shifted;
2022
2023   /* Check whether its cheaper to implement a left shift by a constant
2024      bit count by a sequence of additions.  */
2025   if (code == LSHIFT_EXPR
2026       && GET_CODE (op1) == CONST_INT
2027       && INTVAL (op1) > 0
2028       && INTVAL (op1) < GET_MODE_BITSIZE (mode)
2029       && shift_cost[mode][INTVAL (op1)] > INTVAL (op1) * add_cost[mode])
2030     {
2031       int i;
2032       for (i = 0; i < INTVAL (op1); i++)
2033         {
2034           temp = force_reg (mode, shifted);
2035           shifted = expand_binop (mode, add_optab, temp, temp, NULL_RTX,
2036                                   unsignedp, OPTAB_LIB_WIDEN);
2037         }
2038       return shifted;
2039     }
2040
2041   for (try = 0; temp == 0 && try < 3; try++)
2042     {
2043       enum optab_methods methods;
2044
2045       if (try == 0)
2046         methods = OPTAB_DIRECT;
2047       else if (try == 1)
2048         methods = OPTAB_WIDEN;
2049       else
2050         methods = OPTAB_LIB_WIDEN;
2051
2052       if (rotate)
2053         {
2054           /* Widening does not work for rotation.  */
2055           if (methods == OPTAB_WIDEN)
2056             continue;
2057           else if (methods == OPTAB_LIB_WIDEN)
2058             {
2059               /* If we have been unable to open-code this by a rotation,
2060                  do it as the IOR of two shifts.  I.e., to rotate A
2061                  by N bits, compute (A << N) | ((unsigned) A >> (C - N))
2062                  where C is the bitsize of A.
2063
2064                  It is theoretically possible that the target machine might
2065                  not be able to perform either shift and hence we would
2066                  be making two libcalls rather than just the one for the
2067                  shift (similarly if IOR could not be done).  We will allow
2068                  this extremely unlikely lossage to avoid complicating the
2069                  code below.  */
2070
2071               rtx subtarget = target == shifted ? 0 : target;
2072               rtx temp1;
2073               tree type = TREE_TYPE (amount);
2074               tree new_amount = make_tree (type, op1);
2075               tree other_amount
2076                 = fold (build2 (MINUS_EXPR, type, convert
2077                                 (type, build_int_cst
2078                                  (NULL_TREE, GET_MODE_BITSIZE (mode))),
2079                                 amount));
2080
2081               shifted = force_reg (mode, shifted);
2082
2083               temp = expand_shift (left ? LSHIFT_EXPR : RSHIFT_EXPR,
2084                                    mode, shifted, new_amount, subtarget, 1);
2085               temp1 = expand_shift (left ? RSHIFT_EXPR : LSHIFT_EXPR,
2086                                     mode, shifted, other_amount, 0, 1);
2087               return expand_binop (mode, ior_optab, temp, temp1, target,
2088                                    unsignedp, methods);
2089             }
2090
2091           temp = expand_binop (mode,
2092                                left ? rotl_optab : rotr_optab,
2093                                shifted, op1, target, unsignedp, methods);
2094
2095           /* If we don't have the rotate, but we are rotating by a constant
2096              that is in range, try a rotate in the opposite direction.  */
2097
2098           if (temp == 0 && GET_CODE (op1) == CONST_INT
2099               && INTVAL (op1) > 0
2100               && (unsigned int) INTVAL (op1) < GET_MODE_BITSIZE (mode))
2101             temp = expand_binop (mode,
2102                                  left ? rotr_optab : rotl_optab,
2103                                  shifted,
2104                                  GEN_INT (GET_MODE_BITSIZE (mode)
2105                                           - INTVAL (op1)),
2106                                  target, unsignedp, methods);
2107         }
2108       else if (unsignedp)
2109         temp = expand_binop (mode,
2110                              left ? ashl_optab : lshr_optab,
2111                              shifted, op1, target, unsignedp, methods);
2112
2113       /* Do arithmetic shifts.
2114          Also, if we are going to widen the operand, we can just as well
2115          use an arithmetic right-shift instead of a logical one.  */
2116       if (temp == 0 && ! rotate
2117           && (! unsignedp || (! left && methods == OPTAB_WIDEN)))
2118         {
2119           enum optab_methods methods1 = methods;
2120
2121           /* If trying to widen a log shift to an arithmetic shift,
2122              don't accept an arithmetic shift of the same size.  */
2123           if (unsignedp)
2124             methods1 = OPTAB_MUST_WIDEN;
2125
2126           /* Arithmetic shift */
2127
2128           temp = expand_binop (mode,
2129                                left ? ashl_optab : ashr_optab,
2130                                shifted, op1, target, unsignedp, methods1);
2131         }
2132
2133       /* We used to try extzv here for logical right shifts, but that was
2134          only useful for one machine, the VAX, and caused poor code
2135          generation there for lshrdi3, so the code was deleted and a
2136          define_expand for lshrsi3 was added to vax.md.  */
2137     }
2138
2139   gcc_assert (temp);
2140   return temp;
2141 }
2142 \f
2143 enum alg_code { alg_zero, alg_m, alg_shift,
2144                   alg_add_t_m2, alg_sub_t_m2,
2145                   alg_add_factor, alg_sub_factor,
2146                   alg_add_t2_m, alg_sub_t2_m };
2147
2148 /* This structure holds the "cost" of a multiply sequence.  The
2149    "cost" field holds the total rtx_cost of every operator in the
2150    synthetic multiplication sequence, hence cost(a op b) is defined
2151    as rtx_cost(op) + cost(a) + cost(b), where cost(leaf) is zero.
2152    The "latency" field holds the minimum possible latency of the
2153    synthetic multiply, on a hypothetical infinitely parallel CPU.
2154    This is the critical path, or the maximum height, of the expression
2155    tree which is the sum of rtx_costs on the most expensive path from
2156    any leaf to the root.  Hence latency(a op b) is defined as zero for
2157    leaves and rtx_cost(op) + max(latency(a), latency(b)) otherwise.  */
2158
2159 struct mult_cost {
2160   short cost;     /* Total rtx_cost of the multiplication sequence.  */
2161   short latency;  /* The latency of the multiplication sequence.  */
2162 };
2163
2164 /* This macro is used to compare a pointer to a mult_cost against an
2165    single integer "rtx_cost" value.  This is equivalent to the macro
2166    CHEAPER_MULT_COST(X,Z) where Z = {Y,Y}.  */
2167 #define MULT_COST_LESS(X,Y) ((X)->cost < (Y)    \
2168                              || ((X)->cost == (Y) && (X)->latency < (Y)))
2169
2170 /* This macro is used to compare two pointers to mult_costs against
2171    each other.  The macro returns true if X is cheaper than Y.
2172    Currently, the cheaper of two mult_costs is the one with the
2173    lower "cost".  If "cost"s are tied, the lower latency is cheaper.  */
2174 #define CHEAPER_MULT_COST(X,Y)  ((X)->cost < (Y)->cost          \
2175                                  || ((X)->cost == (Y)->cost     \
2176                                      && (X)->latency < (Y)->latency))
2177
2178 /* This structure records a sequence of operations.
2179    `ops' is the number of operations recorded.
2180    `cost' is their total cost.
2181    The operations are stored in `op' and the corresponding
2182    logarithms of the integer coefficients in `log'.
2183
2184    These are the operations:
2185    alg_zero             total := 0;
2186    alg_m                total := multiplicand;
2187    alg_shift            total := total * coeff
2188    alg_add_t_m2         total := total + multiplicand * coeff;
2189    alg_sub_t_m2         total := total - multiplicand * coeff;
2190    alg_add_factor       total := total * coeff + total;
2191    alg_sub_factor       total := total * coeff - total;
2192    alg_add_t2_m         total := total * coeff + multiplicand;
2193    alg_sub_t2_m         total := total * coeff - multiplicand;
2194
2195    The first operand must be either alg_zero or alg_m.  */
2196
2197 struct algorithm
2198 {
2199   struct mult_cost cost;
2200   short ops;
2201   /* The size of the OP and LOG fields are not directly related to the
2202      word size, but the worst-case algorithms will be if we have few
2203      consecutive ones or zeros, i.e., a multiplicand like 10101010101...
2204      In that case we will generate shift-by-2, add, shift-by-2, add,...,
2205      in total wordsize operations.  */
2206   enum alg_code op[MAX_BITS_PER_WORD];
2207   char log[MAX_BITS_PER_WORD];
2208 };
2209
2210 /* Indicates the type of fixup needed after a constant multiplication.
2211    BASIC_VARIANT means no fixup is needed, NEGATE_VARIANT means that
2212    the result should be negated, and ADD_VARIANT means that the
2213    multiplicand should be added to the result.  */
2214 enum mult_variant {basic_variant, negate_variant, add_variant};
2215
2216 static void synth_mult (struct algorithm *, unsigned HOST_WIDE_INT,
2217                         const struct mult_cost *, enum machine_mode mode);
2218 static bool choose_mult_variant (enum machine_mode, HOST_WIDE_INT,
2219                                  struct algorithm *, enum mult_variant *, int);
2220 static rtx expand_mult_const (enum machine_mode, rtx, HOST_WIDE_INT, rtx,
2221                               const struct algorithm *, enum mult_variant);
2222 static unsigned HOST_WIDE_INT choose_multiplier (unsigned HOST_WIDE_INT, int,
2223                                                  int, unsigned HOST_WIDE_INT *,
2224                                                  int *, int *);
2225 static unsigned HOST_WIDE_INT invert_mod2n (unsigned HOST_WIDE_INT, int);
2226 static rtx extract_high_half (enum machine_mode, rtx);
2227 static rtx expand_mult_highpart_optab (enum machine_mode, rtx, rtx, rtx,
2228                                        int, int);
2229 /* Compute and return the best algorithm for multiplying by T.
2230    The algorithm must cost less than cost_limit
2231    If retval.cost >= COST_LIMIT, no algorithm was found and all
2232    other field of the returned struct are undefined.
2233    MODE is the machine mode of the multiplication.  */
2234
2235 static void
2236 synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t,
2237             const struct mult_cost *cost_limit, enum machine_mode mode)
2238 {
2239   int m;
2240   struct algorithm *alg_in, *best_alg;
2241   struct mult_cost best_cost;
2242   struct mult_cost new_limit;
2243   int op_cost, op_latency;
2244   unsigned HOST_WIDE_INT q;
2245   int maxm = MIN (BITS_PER_WORD, GET_MODE_BITSIZE (mode));
2246
2247   /* Indicate that no algorithm is yet found.  If no algorithm
2248      is found, this value will be returned and indicate failure.  */
2249   alg_out->cost.cost = cost_limit->cost + 1;
2250
2251   if (cost_limit->cost < 0
2252       || (cost_limit->cost == 0 && cost_limit->latency <= 0))
2253     return;
2254
2255   /* Restrict the bits of "t" to the multiplication's mode.  */
2256   t &= GET_MODE_MASK (mode);
2257
2258   /* t == 1 can be done in zero cost.  */
2259   if (t == 1)
2260     {
2261       alg_out->ops = 1;
2262       alg_out->cost.cost = 0;
2263       alg_out->cost.latency = 0;
2264       alg_out->op[0] = alg_m;
2265       return;
2266     }
2267
2268   /* t == 0 sometimes has a cost.  If it does and it exceeds our limit,
2269      fail now.  */
2270   if (t == 0)
2271     {
2272       if (MULT_COST_LESS (cost_limit, zero_cost))
2273         return;
2274       else
2275         {
2276           alg_out->ops = 1;
2277           alg_out->cost.cost = zero_cost;
2278           alg_out->cost.latency = zero_cost;
2279           alg_out->op[0] = alg_zero;
2280           return;
2281         }
2282     }
2283
2284   /* We'll be needing a couple extra algorithm structures now.  */
2285
2286   alg_in = alloca (sizeof (struct algorithm));
2287   best_alg = alloca (sizeof (struct algorithm));
2288   best_cost = *cost_limit;
2289
2290   /* If we have a group of zero bits at the low-order part of T, try
2291      multiplying by the remaining bits and then doing a shift.  */
2292
2293   if ((t & 1) == 0)
2294     {
2295       m = floor_log2 (t & -t);  /* m = number of low zero bits */
2296       if (m < maxm)
2297         {
2298           q = t >> m;
2299           /* The function expand_shift will choose between a shift and
2300              a sequence of additions, so the observed cost is given as
2301              MIN (m * add_cost[mode], shift_cost[mode][m]).  */
2302           op_cost = m * add_cost[mode];
2303           if (shift_cost[mode][m] < op_cost)
2304             op_cost = shift_cost[mode][m];
2305           new_limit.cost = best_cost.cost - op_cost;
2306           new_limit.latency = best_cost.latency - op_cost;
2307           synth_mult (alg_in, q, &new_limit, mode);
2308
2309           alg_in->cost.cost += op_cost;
2310           alg_in->cost.latency += op_cost;
2311           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2312             {
2313               struct algorithm *x;
2314               best_cost = alg_in->cost;
2315               x = alg_in, alg_in = best_alg, best_alg = x;
2316               best_alg->log[best_alg->ops] = m;
2317               best_alg->op[best_alg->ops] = alg_shift;
2318             }
2319         }
2320     }
2321
2322   /* If we have an odd number, add or subtract one.  */
2323   if ((t & 1) != 0)
2324     {
2325       unsigned HOST_WIDE_INT w;
2326
2327       for (w = 1; (w & t) != 0; w <<= 1)
2328         ;
2329       /* If T was -1, then W will be zero after the loop.  This is another
2330          case where T ends with ...111.  Handling this with (T + 1) and
2331          subtract 1 produces slightly better code and results in algorithm
2332          selection much faster than treating it like the ...0111 case
2333          below.  */
2334       if (w == 0
2335           || (w > 2
2336               /* Reject the case where t is 3.
2337                  Thus we prefer addition in that case.  */
2338               && t != 3))
2339         {
2340           /* T ends with ...111.  Multiply by (T + 1) and subtract 1.  */
2341
2342           op_cost = add_cost[mode];
2343           new_limit.cost = best_cost.cost - op_cost;
2344           new_limit.latency = best_cost.latency - op_cost;
2345           synth_mult (alg_in, t + 1, &new_limit, mode);
2346
2347           alg_in->cost.cost += op_cost;
2348           alg_in->cost.latency += op_cost;
2349           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2350             {
2351               struct algorithm *x;
2352               best_cost = alg_in->cost;
2353               x = alg_in, alg_in = best_alg, best_alg = x;
2354               best_alg->log[best_alg->ops] = 0;
2355               best_alg->op[best_alg->ops] = alg_sub_t_m2;
2356             }
2357         }
2358       else
2359         {
2360           /* T ends with ...01 or ...011.  Multiply by (T - 1) and add 1.  */
2361
2362           op_cost = add_cost[mode];
2363           new_limit.cost = best_cost.cost - op_cost;
2364           new_limit.latency = best_cost.latency - op_cost;
2365           synth_mult (alg_in, t - 1, &new_limit, mode);
2366
2367           alg_in->cost.cost += op_cost;
2368           alg_in->cost.latency += op_cost;
2369           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2370             {
2371               struct algorithm *x;
2372               best_cost = alg_in->cost;
2373               x = alg_in, alg_in = best_alg, best_alg = x;
2374               best_alg->log[best_alg->ops] = 0;
2375               best_alg->op[best_alg->ops] = alg_add_t_m2;
2376             }
2377         }
2378     }
2379
2380   /* Look for factors of t of the form
2381      t = q(2**m +- 1), 2 <= m <= floor(log2(t - 1)).
2382      If we find such a factor, we can multiply by t using an algorithm that
2383      multiplies by q, shift the result by m and add/subtract it to itself.
2384
2385      We search for large factors first and loop down, even if large factors
2386      are less probable than small; if we find a large factor we will find a
2387      good sequence quickly, and therefore be able to prune (by decreasing
2388      COST_LIMIT) the search.  */
2389
2390   for (m = floor_log2 (t - 1); m >= 2; m--)
2391     {
2392       unsigned HOST_WIDE_INT d;
2393
2394       d = ((unsigned HOST_WIDE_INT) 1 << m) + 1;
2395       if (t % d == 0 && t > d && m < maxm)
2396         {
2397           /* If the target has a cheap shift-and-add instruction use
2398              that in preference to a shift insn followed by an add insn.
2399              Assume that the shift-and-add is "atomic" with a latency
2400              equal to it's cost, otherwise assume that on superscalar
2401              hardware the shift may be executed concurrently with the
2402              earlier steps in the algorithm.  */
2403           op_cost = add_cost[mode] + shift_cost[mode][m];
2404           if (shiftadd_cost[mode][m] < op_cost)
2405             {
2406               op_cost = shiftadd_cost[mode][m];
2407               op_latency = op_cost;
2408             }
2409           else
2410             op_latency = add_cost[mode];
2411
2412           new_limit.cost = best_cost.cost - op_cost;
2413           new_limit.latency = best_cost.latency - op_latency;
2414           synth_mult (alg_in, t / d, &new_limit, mode);
2415
2416           alg_in->cost.cost += op_cost;
2417           alg_in->cost.latency += op_latency;
2418           if (alg_in->cost.latency < op_cost)
2419             alg_in->cost.latency = op_cost;
2420           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2421             {
2422               struct algorithm *x;
2423               best_cost = alg_in->cost;
2424               x = alg_in, alg_in = best_alg, best_alg = x;
2425               best_alg->log[best_alg->ops] = m;
2426               best_alg->op[best_alg->ops] = alg_add_factor;
2427             }
2428           /* Other factors will have been taken care of in the recursion.  */
2429           break;
2430         }
2431
2432       d = ((unsigned HOST_WIDE_INT) 1 << m) - 1;
2433       if (t % d == 0 && t > d && m < maxm)
2434         {
2435           /* If the target has a cheap shift-and-subtract insn use
2436              that in preference to a shift insn followed by a sub insn.
2437              Assume that the shift-and-sub is "atomic" with a latency
2438              equal to it's cost, otherwise assume that on superscalar
2439              hardware the shift may be executed concurrently with the
2440              earlier steps in the algorithm.  */
2441           op_cost = add_cost[mode] + shift_cost[mode][m];
2442           if (shiftsub_cost[mode][m] < op_cost)
2443             {
2444               op_cost = shiftsub_cost[mode][m];
2445               op_latency = op_cost;
2446             }
2447           else
2448             op_latency = add_cost[mode];
2449
2450           new_limit.cost = best_cost.cost - op_cost;
2451           new_limit.cost = best_cost.cost - op_latency;
2452           synth_mult (alg_in, t / d, &new_limit, mode);
2453
2454           alg_in->cost.cost += op_cost;
2455           alg_in->cost.latency += op_latency;
2456           if (alg_in->cost.latency < op_cost)
2457             alg_in->cost.latency = op_cost;
2458           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2459             {
2460               struct algorithm *x;
2461               best_cost = alg_in->cost;
2462               x = alg_in, alg_in = best_alg, best_alg = x;
2463               best_alg->log[best_alg->ops] = m;
2464               best_alg->op[best_alg->ops] = alg_sub_factor;
2465             }
2466           break;
2467         }
2468     }
2469
2470   /* Try shift-and-add (load effective address) instructions,
2471      i.e. do a*3, a*5, a*9.  */
2472   if ((t & 1) != 0)
2473     {
2474       q = t - 1;
2475       q = q & -q;
2476       m = exact_log2 (q);
2477       if (m >= 0 && m < maxm)
2478         {
2479           op_cost = shiftadd_cost[mode][m];
2480           new_limit.cost = best_cost.cost - op_cost;
2481           new_limit.latency = best_cost.latency - op_cost;
2482           synth_mult (alg_in, (t - 1) >> m, &new_limit, mode);
2483
2484           alg_in->cost.cost += op_cost;
2485           alg_in->cost.latency += op_cost;
2486           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2487             {
2488               struct algorithm *x;
2489               best_cost = alg_in->cost;
2490               x = alg_in, alg_in = best_alg, best_alg = x;
2491               best_alg->log[best_alg->ops] = m;
2492               best_alg->op[best_alg->ops] = alg_add_t2_m;
2493             }
2494         }
2495
2496       q = t + 1;
2497       q = q & -q;
2498       m = exact_log2 (q);
2499       if (m >= 0 && m < maxm)
2500         {
2501           op_cost = shiftsub_cost[mode][m];
2502           new_limit.cost = best_cost.cost - op_cost;
2503           new_limit.latency = best_cost.latency - op_cost;
2504           synth_mult (alg_in, (t + 1) >> m, &new_limit, mode);
2505
2506           alg_in->cost.cost += op_cost;
2507           alg_in->cost.latency += op_cost;
2508           if (CHEAPER_MULT_COST (&alg_in->cost, &best_cost))
2509             {
2510               struct algorithm *x;
2511               best_cost = alg_in->cost;
2512               x = alg_in, alg_in = best_alg, best_alg = x;
2513               best_alg->log[best_alg->ops] = m;
2514               best_alg->op[best_alg->ops] = alg_sub_t2_m;
2515             }
2516         }
2517     }
2518
2519   /* If we are getting a too long sequence for `struct algorithm'
2520      to record, make this search fail.  */
2521   if (best_alg->ops == MAX_BITS_PER_WORD)
2522     return;
2523
2524   /* If best_cost has not decreased, we have not found any algorithm.  */
2525   if (!CHEAPER_MULT_COST (&best_cost, cost_limit))
2526     return;
2527
2528   /* Copy the algorithm from temporary space to the space at alg_out.
2529      We avoid using structure assignment because the majority of
2530      best_alg is normally undefined, and this is a critical function.  */
2531   alg_out->ops = best_alg->ops + 1;
2532   alg_out->cost = best_cost;
2533   memcpy (alg_out->op, best_alg->op,
2534           alg_out->ops * sizeof *alg_out->op);
2535   memcpy (alg_out->log, best_alg->log,
2536           alg_out->ops * sizeof *alg_out->log);
2537 }
2538 \f
2539 /* Find the cheapest way of multiplying a value of mode MODE by VAL.
2540    Try three variations:
2541
2542        - a shift/add sequence based on VAL itself
2543        - a shift/add sequence based on -VAL, followed by a negation
2544        - a shift/add sequence based on VAL - 1, followed by an addition.
2545
2546    Return true if the cheapest of these cost less than MULT_COST,
2547    describing the algorithm in *ALG and final fixup in *VARIANT.  */
2548
2549 static bool
2550 choose_mult_variant (enum machine_mode mode, HOST_WIDE_INT val,
2551                      struct algorithm *alg, enum mult_variant *variant,
2552                      int mult_cost)
2553 {
2554   struct algorithm alg2;
2555   struct mult_cost limit;
2556   int op_cost;
2557
2558   *variant = basic_variant;
2559   limit.cost = mult_cost;
2560   limit.latency = mult_cost;
2561   synth_mult (alg, val, &limit, mode);
2562
2563   /* This works only if the inverted value actually fits in an
2564      `unsigned int' */
2565   if (HOST_BITS_PER_INT >= GET_MODE_BITSIZE (mode))
2566     {
2567       op_cost = neg_cost[mode];
2568       if (MULT_COST_LESS (&alg->cost, mult_cost))
2569         {
2570           limit.cost = alg->cost.cost - op_cost;
2571           limit.latency = alg->cost.latency - op_cost;
2572         }
2573       else
2574         {
2575           limit.cost = mult_cost - op_cost;
2576           limit.latency = mult_cost - op_cost;
2577         }
2578
2579       synth_mult (&alg2, -val, &limit, mode);
2580       alg2.cost.cost += op_cost;
2581       alg2.cost.latency += op_cost;
2582       if (CHEAPER_MULT_COST (&alg2.cost, &alg->cost))
2583         *alg = alg2, *variant = negate_variant;
2584     }
2585
2586   /* This proves very useful for division-by-constant.  */
2587   op_cost = add_cost[mode];
2588   if (MULT_COST_LESS (&alg->cost, mult_cost))
2589     {
2590       limit.cost = alg->cost.cost - op_cost;
2591       limit.latency = alg->cost.latency - op_cost;
2592     }
2593   else
2594     {
2595       limit.cost = mult_cost - op_cost;
2596       limit.latency = mult_cost - op_cost;
2597     }
2598
2599   synth_mult (&alg2, val - 1, &limit, mode);
2600   alg2.cost.cost += op_cost;
2601   alg2.cost.latency += op_cost;
2602   if (CHEAPER_MULT_COST (&alg2.cost, &alg->cost))
2603     *alg = alg2, *variant = add_variant;
2604
2605   return MULT_COST_LESS (&alg->cost, mult_cost);
2606 }
2607
2608 /* A subroutine of expand_mult, used for constant multiplications.
2609    Multiply OP0 by VAL in mode MODE, storing the result in TARGET if
2610    convenient.  Use the shift/add sequence described by ALG and apply
2611    the final fixup specified by VARIANT.  */
2612
2613 static rtx
2614 expand_mult_const (enum machine_mode mode, rtx op0, HOST_WIDE_INT val,
2615                    rtx target, const struct algorithm *alg,
2616                    enum mult_variant variant)
2617 {
2618   HOST_WIDE_INT val_so_far;
2619   rtx insn, accum, tem;
2620   int opno;
2621   enum machine_mode nmode;
2622
2623   /* Avoid referencing memory over and over.
2624      For speed, but also for correctness when mem is volatile.  */
2625   if (MEM_P (op0))
2626     op0 = force_reg (mode, op0);
2627
2628   /* ACCUM starts out either as OP0 or as a zero, depending on
2629      the first operation.  */
2630
2631   if (alg->op[0] == alg_zero)
2632     {
2633       accum = copy_to_mode_reg (mode, const0_rtx);
2634       val_so_far = 0;
2635     }
2636   else if (alg->op[0] == alg_m)
2637     {
2638       accum = copy_to_mode_reg (mode, op0);
2639       val_so_far = 1;
2640     }
2641   else
2642     gcc_unreachable ();
2643
2644   for (opno = 1; opno < alg->ops; opno++)
2645     {
2646       int log = alg->log[opno];
2647       rtx shift_subtarget = optimize ? 0 : accum;
2648       rtx add_target
2649         = (opno == alg->ops - 1 && target != 0 && variant != add_variant
2650            && !optimize)
2651           ? target : 0;
2652       rtx accum_target = optimize ? 0 : accum;
2653
2654       switch (alg->op[opno])
2655         {
2656         case alg_shift:
2657           accum = expand_shift (LSHIFT_EXPR, mode, accum,
2658                                 build_int_cst (NULL_TREE, log),
2659                                 NULL_RTX, 0);
2660           val_so_far <<= log;
2661           break;
2662
2663         case alg_add_t_m2:
2664           tem = expand_shift (LSHIFT_EXPR, mode, op0,
2665                               build_int_cst (NULL_TREE, log),
2666                               NULL_RTX, 0);
2667           accum = force_operand (gen_rtx_PLUS (mode, accum, tem),
2668                                  add_target ? add_target : accum_target);
2669           val_so_far += (HOST_WIDE_INT) 1 << log;
2670           break;
2671
2672         case alg_sub_t_m2:
2673           tem = expand_shift (LSHIFT_EXPR, mode, op0,
2674                               build_int_cst (NULL_TREE, log),
2675                               NULL_RTX, 0);
2676           accum = force_operand (gen_rtx_MINUS (mode, accum, tem),
2677                                  add_target ? add_target : accum_target);
2678           val_so_far -= (HOST_WIDE_INT) 1 << log;
2679           break;
2680
2681         case alg_add_t2_m:
2682           accum = expand_shift (LSHIFT_EXPR, mode, accum,
2683                                 build_int_cst (NULL_TREE, log),
2684                                 shift_subtarget,
2685                                 0);
2686           accum = force_operand (gen_rtx_PLUS (mode, accum, op0),
2687                                  add_target ? add_target : accum_target);
2688           val_so_far = (val_so_far << log) + 1;
2689           break;
2690
2691         case alg_sub_t2_m:
2692           accum = expand_shift (LSHIFT_EXPR, mode, accum,
2693                                 build_int_cst (NULL_TREE, log),
2694                                 shift_subtarget, 0);
2695           accum = force_operand (gen_rtx_MINUS (mode, accum, op0),
2696                                  add_target ? add_target : accum_target);
2697           val_so_far = (val_so_far << log) - 1;
2698           break;
2699
2700         case alg_add_factor:
2701           tem = expand_shift (LSHIFT_EXPR, mode, accum,
2702                               build_int_cst (NULL_TREE, log),
2703                               NULL_RTX, 0);
2704           accum = force_operand (gen_rtx_PLUS (mode, accum, tem),
2705                                  add_target ? add_target : accum_target);
2706           val_so_far += val_so_far << log;
2707           break;
2708
2709         case alg_sub_factor:
2710           tem = expand_shift (LSHIFT_EXPR, mode, accum,
2711                               build_int_cst (NULL_TREE, log),
2712                               NULL_RTX, 0);
2713           accum = force_operand (gen_rtx_MINUS (mode, tem, accum),
2714                                  (add_target
2715                                   ? add_target : (optimize ? 0 : tem)));
2716           val_so_far = (val_so_far << log) - val_so_far;
2717           break;
2718
2719         default:
2720           gcc_unreachable ();
2721         }
2722
2723       /* Write a REG_EQUAL note on the last insn so that we can cse
2724          multiplication sequences.  Note that if ACCUM is a SUBREG,
2725          we've set the inner register and must properly indicate
2726          that.  */
2727
2728       tem = op0, nmode = mode;
2729       if (GET_CODE (accum) == SUBREG)
2730         {
2731           nmode = GET_MODE (SUBREG_REG (accum));
2732           tem = gen_lowpart (nmode, op0);
2733         }
2734
2735       insn = get_last_insn ();
2736       set_unique_reg_note (insn, REG_EQUAL,
2737                            gen_rtx_MULT (nmode, tem, GEN_INT (val_so_far)));
2738     }
2739
2740   if (variant == negate_variant)
2741     {
2742       val_so_far = -val_so_far;
2743       accum = expand_unop (mode, neg_optab, accum, target, 0);
2744     }
2745   else if (variant == add_variant)
2746     {
2747       val_so_far = val_so_far + 1;
2748       accum = force_operand (gen_rtx_PLUS (mode, accum, op0), target);
2749     }
2750
2751   /* Compare only the bits of val and val_so_far that are significant
2752      in the result mode, to avoid sign-/zero-extension confusion.  */
2753   val &= GET_MODE_MASK (mode);
2754   val_so_far &= GET_MODE_MASK (mode);
2755   gcc_assert (val == val_so_far);
2756
2757   return accum;
2758 }
2759
2760 /* Perform a multiplication and return an rtx for the result.
2761    MODE is mode of value; OP0 and OP1 are what to multiply (rtx's);
2762    TARGET is a suggestion for where to store the result (an rtx).
2763
2764    We check specially for a constant integer as OP1.
2765    If you want this check for OP0 as well, then before calling
2766    you should swap the two operands if OP0 would be constant.  */
2767
2768 rtx
2769 expand_mult (enum machine_mode mode, rtx op0, rtx op1, rtx target,
2770              int unsignedp)
2771 {
2772   rtx const_op1 = op1;
2773   enum mult_variant variant;
2774   struct algorithm algorithm;
2775
2776   /* synth_mult does an `unsigned int' multiply.  As long as the mode is
2777      less than or equal in size to `unsigned int' this doesn't matter.
2778      If the mode is larger than `unsigned int', then synth_mult works only
2779      if the constant value exactly fits in an `unsigned int' without any
2780      truncation.  This means that multiplying by negative values does
2781      not work; results are off by 2^32 on a 32 bit machine.  */
2782
2783   /* If we are multiplying in DImode, it may still be a win
2784      to try to work with shifts and adds.  */
2785   if (GET_CODE (op1) == CONST_DOUBLE
2786       && GET_MODE_CLASS (GET_MODE (op1)) == MODE_INT
2787       && HOST_BITS_PER_INT >= BITS_PER_WORD
2788       && CONST_DOUBLE_HIGH (op1) == 0)
2789     const_op1 = GEN_INT (CONST_DOUBLE_LOW (op1));
2790   else if (HOST_BITS_PER_INT < GET_MODE_BITSIZE (mode)
2791            && GET_CODE (op1) == CONST_INT
2792            && INTVAL (op1) < 0)
2793     const_op1 = 0;
2794
2795   /* We used to test optimize here, on the grounds that it's better to
2796      produce a smaller program when -O is not used.
2797      But this causes such a terrible slowdown sometimes
2798      that it seems better to use synth_mult always.  */
2799
2800   if (const_op1 && GET_CODE (const_op1) == CONST_INT
2801       && (unsignedp || !flag_trapv))
2802     {
2803       int mult_cost = rtx_cost (gen_rtx_MULT (mode, op0, op1), SET);
2804
2805       if (choose_mult_variant (mode, INTVAL (const_op1), &algorithm, &variant,
2806                                mult_cost))
2807         return expand_mult_const (mode, op0, INTVAL (const_op1), target,
2808                                   &algorithm, variant);
2809     }
2810
2811   if (GET_CODE (op0) == CONST_DOUBLE)
2812     {
2813       rtx temp = op0;
2814       op0 = op1;
2815       op1 = temp;
2816     }
2817
2818   /* Expand x*2.0 as x+x.  */
2819   if (GET_CODE (op1) == CONST_DOUBLE
2820       && GET_MODE_CLASS (mode) == MODE_FLOAT)
2821     {
2822       REAL_VALUE_TYPE d;
2823       REAL_VALUE_FROM_CONST_DOUBLE (d, op1);
2824
2825       if (REAL_VALUES_EQUAL (d, dconst2))
2826         {
2827           op0 = force_reg (GET_MODE (op0), op0);
2828           return expand_binop (mode, add_optab, op0, op0,
2829                                target, unsignedp, OPTAB_LIB_WIDEN);
2830         }
2831     }
2832
2833   /* This used to use umul_optab if unsigned, but for non-widening multiply
2834      there is no difference between signed and unsigned.  */
2835   op0 = expand_binop (mode,
2836                       ! unsignedp
2837                       && flag_trapv && (GET_MODE_CLASS(mode) == MODE_INT)
2838                       ? smulv_optab : smul_optab,
2839                       op0, op1, target, unsignedp, OPTAB_LIB_WIDEN);
2840   gcc_assert (op0);
2841   return op0;
2842 }
2843 \f
2844 /* Return the smallest n such that 2**n >= X.  */
2845
2846 int
2847 ceil_log2 (unsigned HOST_WIDE_INT x)
2848 {
2849   return floor_log2 (x - 1) + 1;
2850 }
2851
2852 /* Choose a minimal N + 1 bit approximation to 1/D that can be used to
2853    replace division by D, and put the least significant N bits of the result
2854    in *MULTIPLIER_PTR and return the most significant bit.
2855
2856    The width of operations is N (should be <= HOST_BITS_PER_WIDE_INT), the
2857    needed precision is in PRECISION (should be <= N).
2858
2859    PRECISION should be as small as possible so this function can choose
2860    multiplier more freely.
2861
2862    The rounded-up logarithm of D is placed in *lgup_ptr.  A shift count that
2863    is to be used for a final right shift is placed in *POST_SHIFT_PTR.
2864
2865    Using this function, x/D will be equal to (x * m) >> (*POST_SHIFT_PTR),
2866    where m is the full HOST_BITS_PER_WIDE_INT + 1 bit multiplier.  */
2867
2868 static
2869 unsigned HOST_WIDE_INT
2870 choose_multiplier (unsigned HOST_WIDE_INT d, int n, int precision,
2871                    unsigned HOST_WIDE_INT *multiplier_ptr,
2872                    int *post_shift_ptr, int *lgup_ptr)
2873 {
2874   HOST_WIDE_INT mhigh_hi, mlow_hi;
2875   unsigned HOST_WIDE_INT mhigh_lo, mlow_lo;
2876   int lgup, post_shift;
2877   int pow, pow2;
2878   unsigned HOST_WIDE_INT nl, dummy1;
2879   HOST_WIDE_INT nh, dummy2;
2880
2881   /* lgup = ceil(log2(divisor)); */
2882   lgup = ceil_log2 (d);
2883
2884   gcc_assert (lgup <= n);
2885
2886   pow = n + lgup;
2887   pow2 = n + lgup - precision;
2888
2889   /* We could handle this with some effort, but this case is much
2890      better handled directly with a scc insn, so rely on caller using
2891      that.  */
2892   gcc_assert (pow != 2 * HOST_BITS_PER_WIDE_INT);
2893
2894   /* mlow = 2^(N + lgup)/d */
2895  if (pow >= HOST_BITS_PER_WIDE_INT)
2896     {
2897       nh = (HOST_WIDE_INT) 1 << (pow - HOST_BITS_PER_WIDE_INT);
2898       nl = 0;
2899     }
2900   else
2901     {
2902       nh = 0;
2903       nl = (unsigned HOST_WIDE_INT) 1 << pow;
2904     }
2905   div_and_round_double (TRUNC_DIV_EXPR, 1, nl, nh, d, (HOST_WIDE_INT) 0,
2906                         &mlow_lo, &mlow_hi, &dummy1, &dummy2);
2907
2908   /* mhigh = (2^(N + lgup) + 2^N + lgup - precision)/d */
2909   if (pow2 >= HOST_BITS_PER_WIDE_INT)
2910     nh |= (HOST_WIDE_INT) 1 << (pow2 - HOST_BITS_PER_WIDE_INT);
2911   else
2912     nl |= (unsigned HOST_WIDE_INT) 1 << pow2;
2913   div_and_round_double (TRUNC_DIV_EXPR, 1, nl, nh, d, (HOST_WIDE_INT) 0,
2914                         &mhigh_lo, &mhigh_hi, &dummy1, &dummy2);
2915
2916   gcc_assert (!mhigh_hi || nh - d < d);
2917   gcc_assert (mhigh_hi <= 1 && mlow_hi <= 1);
2918   /* Assert that mlow < mhigh.  */
2919   gcc_assert (mlow_hi < mhigh_hi
2920               || (mlow_hi == mhigh_hi && mlow_lo < mhigh_lo));
2921
2922   /* If precision == N, then mlow, mhigh exceed 2^N
2923      (but they do not exceed 2^(N+1)).  */
2924
2925   /* Reduce to lowest terms.  */
2926   for (post_shift = lgup; post_shift > 0; post_shift--)
2927     {
2928       unsigned HOST_WIDE_INT ml_lo = (mlow_hi << (HOST_BITS_PER_WIDE_INT - 1)) | (mlow_lo >> 1);
2929       unsigned HOST_WIDE_INT mh_lo = (mhigh_hi << (HOST_BITS_PER_WIDE_INT - 1)) | (mhigh_lo >> 1);
2930       if (ml_lo >= mh_lo)
2931         break;
2932
2933       mlow_hi = 0;
2934       mlow_lo = ml_lo;
2935       mhigh_hi = 0;
2936       mhigh_lo = mh_lo;
2937     }
2938
2939   *post_shift_ptr = post_shift;
2940   *lgup_ptr = lgup;
2941   if (n < HOST_BITS_PER_WIDE_INT)
2942     {
2943       unsigned HOST_WIDE_INT mask = ((unsigned HOST_WIDE_INT) 1 << n) - 1;
2944       *multiplier_ptr = mhigh_lo & mask;
2945       return mhigh_lo >= mask;
2946     }
2947   else
2948     {
2949       *multiplier_ptr = mhigh_lo;
2950       return mhigh_hi;
2951     }
2952 }
2953
2954 /* Compute the inverse of X mod 2**n, i.e., find Y such that X * Y is
2955    congruent to 1 (mod 2**N).  */
2956
2957 static unsigned HOST_WIDE_INT
2958 invert_mod2n (unsigned HOST_WIDE_INT x, int n)
2959 {
2960   /* Solve x*y == 1 (mod 2^n), where x is odd.  Return y.  */
2961
2962   /* The algorithm notes that the choice y = x satisfies
2963      x*y == 1 mod 2^3, since x is assumed odd.
2964      Each iteration doubles the number of bits of significance in y.  */
2965
2966   unsigned HOST_WIDE_INT mask;
2967   unsigned HOST_WIDE_INT y = x;
2968   int nbit = 3;
2969
2970   mask = (n == HOST_BITS_PER_WIDE_INT
2971           ? ~(unsigned HOST_WIDE_INT) 0
2972           : ((unsigned HOST_WIDE_INT) 1 << n) - 1);
2973
2974   while (nbit < n)
2975     {
2976       y = y * (2 - x*y) & mask;         /* Modulo 2^N */
2977       nbit *= 2;
2978     }
2979   return y;
2980 }
2981
2982 /* Emit code to adjust ADJ_OPERAND after multiplication of wrong signedness
2983    flavor of OP0 and OP1.  ADJ_OPERAND is already the high half of the
2984    product OP0 x OP1.  If UNSIGNEDP is nonzero, adjust the signed product
2985    to become unsigned, if UNSIGNEDP is zero, adjust the unsigned product to
2986    become signed.
2987
2988    The result is put in TARGET if that is convenient.
2989
2990    MODE is the mode of operation.  */
2991
2992 rtx
2993 expand_mult_highpart_adjust (enum machine_mode mode, rtx adj_operand, rtx op0,
2994                              rtx op1, rtx target, int unsignedp)
2995 {
2996   rtx tem;
2997   enum rtx_code adj_code = unsignedp ? PLUS : MINUS;
2998
2999   tem = expand_shift (RSHIFT_EXPR, mode, op0,
3000                       build_int_cst (NULL_TREE, GET_MODE_BITSIZE (mode) - 1),
3001                       NULL_RTX, 0);
3002   tem = expand_and (mode, tem, op1, NULL_RTX);
3003   adj_operand
3004     = force_operand (gen_rtx_fmt_ee (adj_code, mode, adj_operand, tem),
3005                      adj_operand);
3006
3007   tem = expand_shift (RSHIFT_EXPR, mode, op1,
3008                       build_int_cst (NULL_TREE, GET_MODE_BITSIZE (mode) - 1),
3009                       NULL_RTX, 0);
3010   tem = expand_and (mode, tem, op0, NULL_RTX);
3011   target = force_operand (gen_rtx_fmt_ee (adj_code, mode, adj_operand, tem),
3012                           target);
3013
3014   return target;
3015 }
3016
3017 /* Subroutine of expand_mult_highpart.  Return the MODE high part of OP.  */
3018
3019 static rtx
3020 extract_high_half (enum machine_mode mode, rtx op)
3021 {
3022   enum machine_mode wider_mode;
3023
3024   if (mode == word_mode)
3025     return gen_highpart (mode, op);
3026
3027   wider_mode = GET_MODE_WIDER_MODE (mode);
3028   op = expand_shift (RSHIFT_EXPR, wider_mode, op,
3029                      build_int_cst (NULL_TREE, GET_MODE_BITSIZE (mode)), 0, 1);
3030   return convert_modes (mode, wider_mode, op, 0);
3031 }
3032
3033 /* Like expand_mult_highpart, but only consider using a multiplication
3034    optab.  OP1 is an rtx for the constant operand.  */
3035
3036 static rtx
3037 expand_mult_highpart_optab (enum machine_mode mode, rtx op0, rtx op1,
3038                             rtx target, int unsignedp, int max_cost)
3039 {
3040   rtx narrow_op1 = gen_int_mode (INTVAL (op1), mode);
3041   enum machine_mode wider_mode;
3042   optab moptab;
3043   rtx tem;
3044   int size;
3045
3046   wider_mode = GET_MODE_WIDER_MODE (mode);
3047   size = GET_MODE_BITSIZE (mode);
3048
3049   /* Firstly, try using a multiplication insn that only generates the needed
3050      high part of the product, and in the sign flavor of unsignedp.  */
3051   if (mul_highpart_cost[mode] < max_cost)
3052     {
3053       moptab = unsignedp ? umul_highpart_optab : smul_highpart_optab;
3054       tem = expand_binop (mode, moptab, op0, narrow_op1, target,
3055                           unsignedp, OPTAB_DIRECT);
3056       if (tem)
3057         return tem;
3058     }
3059
3060   /* Secondly, same as above, but use sign flavor opposite of unsignedp.
3061      Need to adjust the result after the multiplication.  */
3062   if (size - 1 < BITS_PER_WORD
3063       && (mul_highpart_cost[mode] + 2 * shift_cost[mode][size-1]
3064           + 4 * add_cost[mode] < max_cost))
3065     {
3066       moptab = unsignedp ? smul_highpart_optab : umul_highpart_optab;
3067       tem = expand_binop (mode, moptab, op0, narrow_op1, target,
3068                           unsignedp, OPTAB_DIRECT);
3069       if (tem)
3070         /* We used the wrong signedness.  Adjust the result.  */
3071         return expand_mult_highpart_adjust (mode, tem, op0, narrow_op1,
3072                                             tem, unsignedp);
3073     }
3074
3075   /* Try widening multiplication.  */
3076   moptab = unsignedp ? umul_widen_optab : smul_widen_optab;
3077   if (moptab->handlers[wider_mode].insn_code != CODE_FOR_nothing
3078       && mul_widen_cost[wider_mode] < max_cost)
3079     {
3080       tem = expand_binop (wider_mode, moptab, op0, narrow_op1, 0,
3081                           unsignedp, OPTAB_WIDEN);
3082       if (tem)
3083         return extract_high_half (mode, tem);
3084     }
3085
3086   /* Try widening the mode and perform a non-widening multiplication.  */
3087   moptab = smul_optab;
3088   if (smul_optab->handlers[wider_mode].insn_code != CODE_FOR_nothing
3089       && size - 1 < BITS_PER_WORD
3090       && mul_cost[wider_mode] + shift_cost[mode][size-1] < max_cost)
3091     {
3092       tem = expand_binop (wider_mode, moptab, op0, op1, 0,
3093                           unsignedp, OPTAB_WIDEN);
3094       if (tem)
3095         return extract_high_half (mode, tem);
3096     }
3097
3098   /* Try widening multiplication of opposite signedness, and adjust.  */
3099   moptab = unsignedp ? smul_widen_optab : umul_widen_optab;
3100   if (moptab->handlers[wider_mode].insn_code != CODE_FOR_nothing
3101       && size - 1 < BITS_PER_WORD
3102       && (mul_widen_cost[wider_mode] + 2 * shift_cost[mode][size-1]
3103           + 4 * add_cost[mode] < max_cost))
3104     {
3105       tem = expand_binop (wider_mode, moptab, op0, narrow_op1,
3106                           NULL_RTX, ! unsignedp, OPTAB_WIDEN);
3107       if (tem != 0)
3108         {
3109           tem = extract_high_half (mode, tem);
3110           /* We used the wrong signedness.  Adjust the result.  */
3111           return expand_mult_highpart_adjust (mode, tem, op0, narrow_op1,
3112                                               target, unsignedp);
3113         }
3114     }
3115
3116   return 0;
3117 }
3118
3119 /* Emit code to multiply OP0 and CNST1, putting the high half of the result
3120    in TARGET if that is convenient, and return where the result is.  If the
3121    operation can not be performed, 0 is returned.
3122
3123    MODE is the mode of operation and result.
3124
3125    UNSIGNEDP nonzero means unsigned multiply.
3126
3127    MAX_COST is the total allowed cost for the expanded RTL.  */
3128
3129 rtx
3130 expand_mult_highpart (enum machine_mode mode, rtx op0,
3131                       unsigned HOST_WIDE_INT cnst1, rtx target,
3132                       int unsignedp, int max_cost)
3133 {
3134   enum machine_mode wider_mode = GET_MODE_WIDER_MODE (mode);
3135   int extra_cost;
3136   bool sign_adjust = false;
3137   enum mult_variant variant;
3138   struct algorithm alg;
3139   rtx op1, tem;
3140
3141   /* We can't support modes wider than HOST_BITS_PER_INT.  */
3142   gcc_assert (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT);
3143
3144   op1 = gen_int_mode (cnst1, wider_mode);
3145   cnst1 &= GET_MODE_MASK (mode);
3146
3147   /* We can't optimize modes wider than BITS_PER_WORD. 
3148      ??? We might be able to perform double-word arithmetic if 
3149      mode == word_mode, however all the cost calculations in
3150      synth_mult etc. assume single-word operations.  */
3151   if (GET_MODE_BITSIZE (wider_mode) > BITS_PER_WORD)
3152     return expand_mult_highpart_optab (mode, op0, op1, target,
3153                                        unsignedp, max_cost);
3154
3155   extra_cost = shift_cost[mode][GET_MODE_BITSIZE (mode) - 1];
3156
3157   /* Check whether we try to multiply by a negative constant.  */
3158   if (!unsignedp && ((cnst1 >> (GET_MODE_BITSIZE (mode) - 1)) & 1))
3159     {
3160       sign_adjust = true;
3161       extra_cost += add_cost[mode];
3162     }
3163
3164   /* See whether shift/add multiplication is cheap enough.  */
3165   if (choose_mult_variant (wider_mode, cnst1, &alg, &variant,
3166                            max_cost - extra_cost))
3167     {
3168       /* See whether the specialized multiplication optabs are
3169          cheaper than the shift/add version.  */
3170       tem = expand_mult_highpart_optab (mode, op0, op1, target, unsignedp,
3171                                         alg.cost.cost + extra_cost);
3172       if (tem)
3173         return tem;
3174
3175       tem = convert_to_mode (wider_mode, op0, unsignedp);
3176       tem = expand_mult_const (wider_mode, tem, cnst1, 0, &alg, variant);
3177       tem = extract_high_half (mode, tem);
3178
3179       /* Adjust result for signedness.  */
3180       if (sign_adjust)
3181         tem = force_operand (gen_rtx_MINUS (mode, tem, op0), tem);
3182
3183       return tem;
3184     }
3185   return expand_mult_highpart_optab (mode, op0, op1, target,
3186                                      unsignedp, max_cost);
3187 }
3188
3189
3190 /* Expand signed modulus of OP0 by a power of two D in mode MODE.  */
3191
3192 static rtx
3193 expand_smod_pow2 (enum machine_mode mode, rtx op0, HOST_WIDE_INT d)
3194 {
3195   unsigned HOST_WIDE_INT mask;
3196   rtx result, temp, shift, label;
3197   int logd;
3198
3199   logd = floor_log2 (d);
3200   result = gen_reg_rtx (mode);
3201
3202   /* Avoid conditional branches when they're expensive.  */
3203   if (BRANCH_COST >= 2
3204       && !optimize_size)
3205     {
3206       rtx signmask = emit_store_flag (result, LT, op0, const0_rtx,
3207                                       mode, 0, -1);
3208       if (signmask)
3209         {
3210           signmask = force_reg (mode, signmask);
3211           mask = ((HOST_WIDE_INT) 1 << logd) - 1;
3212           shift = GEN_INT (GET_MODE_BITSIZE (mode) - logd);
3213
3214           /* Use the rtx_cost of a LSHIFTRT instruction to determine
3215              which instruction sequence to use.  If logical right shifts
3216              are expensive the use 2 XORs, 2 SUBs and an AND, otherwise
3217              use a LSHIFTRT, 1 ADD, 1 SUB and an AND.  */
3218              
3219           temp = gen_rtx_LSHIFTRT (mode, result, shift);
3220           if (lshr_optab->handlers[mode].insn_code == CODE_FOR_nothing
3221               || rtx_cost (temp, SET) > COSTS_N_INSNS (2))
3222             {
3223               temp = expand_binop (mode, xor_optab, op0, signmask,
3224                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3225               temp = expand_binop (mode, sub_optab, temp, signmask,
3226                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3227               temp = expand_binop (mode, and_optab, temp, GEN_INT (mask),
3228                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3229               temp = expand_binop (mode, xor_optab, temp, signmask,
3230                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3231               temp = expand_binop (mode, sub_optab, temp, signmask,
3232                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3233             }
3234           else
3235             {
3236               signmask = expand_binop (mode, lshr_optab, signmask, shift,
3237                                        NULL_RTX, 1, OPTAB_LIB_WIDEN);
3238               signmask = force_reg (mode, signmask);
3239
3240               temp = expand_binop (mode, add_optab, op0, signmask,
3241                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3242               temp = expand_binop (mode, and_optab, temp, GEN_INT (mask),
3243                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3244               temp = expand_binop (mode, sub_optab, temp, signmask,
3245                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
3246             }
3247           return temp;
3248         }
3249     }
3250
3251   /* Mask contains the mode's signbit and the significant bits of the
3252      modulus.  By including the signbit in the operation, many targets
3253      can avoid an explicit compare operation in the following comparison
3254      against zero.  */
3255
3256   mask = (HOST_WIDE_INT) -1 << (GET_MODE_BITSIZE (mode) - 1)
3257          | (((HOST_WIDE_INT) 1 << logd) - 1);
3258
3259   temp = expand_binop (mode, and_optab, op0, GEN_INT (mask), result,
3260                        1, OPTAB_LIB_WIDEN);
3261   if (temp != result)
3262     emit_move_insn (result, temp);
3263
3264   label = gen_label_rtx ();
3265   do_cmp_and_jump (result, const0_rtx, GE, mode, label);
3266
3267   temp = expand_binop (mode, sub_optab, result, const1_rtx, result,
3268                        0, OPTAB_LIB_WIDEN);
3269   mask = (HOST_WIDE_INT) -1 << logd;
3270   temp = expand_binop (mode, ior_optab, temp, GEN_INT (mask), result,
3271                        1, OPTAB_LIB_WIDEN);
3272   temp = expand_binop (mode, add_optab, temp, const1_rtx, result,
3273                        0, OPTAB_LIB_WIDEN);
3274   if (temp != result)
3275     emit_move_insn (result, temp);
3276   emit_label (label);
3277   return result;
3278 }
3279
3280 /* Expand signed division of OP0 by a power of two D in mode MODE.
3281    This routine is only called for positive values of D.  */
3282
3283 static rtx
3284 expand_sdiv_pow2 (enum machine_mode mode, rtx op0, HOST_WIDE_INT d)
3285 {
3286   rtx temp, label;
3287   tree shift;
3288   int logd;
3289
3290   logd = floor_log2 (d);
3291   shift = build_int_cst (NULL_TREE, logd);
3292
3293   if (d == 2 && BRANCH_COST >= 1)
3294     {
3295       temp = gen_reg_rtx (mode);
3296       temp = emit_store_flag (temp, LT, op0, const0_rtx, mode, 0, 1);
3297       temp = expand_binop (mode, add_optab, temp, op0, NULL_RTX,
3298                            0, OPTAB_LIB_WIDEN);
3299       return expand_shift (RSHIFT_EXPR, mode, temp, shift, NULL_RTX, 0);
3300     }
3301
3302 #ifdef HAVE_conditional_move
3303   if (BRANCH_COST >= 2)
3304     {
3305       rtx temp2;
3306
3307       start_sequence ();
3308       temp2 = copy_to_mode_reg (mode, op0);
3309       temp = expand_binop (mode, add_optab, temp2, GEN_INT (d-1),
3310                            NULL_RTX, 0, OPTAB_LIB_WIDEN);
3311       temp = force_reg (mode, temp);
3312
3313       /* Construct "temp2 = (temp2 < 0) ? temp : temp2".  */
3314       temp2 = emit_conditional_move (temp2, LT, temp2, const0_rtx,
3315                                      mode, temp, temp2, mode, 0);
3316       if (temp2)
3317         {
3318           rtx seq = get_insns ();
3319           end_sequence ();
3320           emit_insn (seq);
3321           return expand_shift (RSHIFT_EXPR, mode, temp2, shift, NULL_RTX, 0);
3322         }
3323       end_sequence ();
3324     }
3325 #endif
3326
3327   if (BRANCH_COST >= 2)
3328     {
3329       int ushift = GET_MODE_BITSIZE (mode) - logd;
3330
3331       temp = gen_reg_rtx (mode);
3332       temp = emit_store_flag (temp, LT, op0, const0_rtx, mode, 0, -1);
3333       if (shift_cost[mode][ushift] > COSTS_N_INSNS (1))
3334         temp = expand_binop (mode, and_optab, temp, GEN_INT (d - 1),
3335                              NULL_RTX, 0, OPTAB_LIB_WIDEN);
3336       else
3337         temp = expand_shift (RSHIFT_EXPR, mode, temp,
3338                              build_int_cst (NULL_TREE, ushift),
3339                              NULL_RTX, 1);
3340       temp = expand_binop (mode, add_optab, temp, op0, NULL_RTX,
3341                            0, OPTAB_LIB_WIDEN);
3342       return expand_shift (RSHIFT_EXPR, mode, temp, shift, NULL_RTX, 0);
3343     }
3344
3345   label = gen_label_rtx ();
3346   temp = copy_to_mode_reg (mode, op0);
3347   do_cmp_and_jump (temp, const0_rtx, GE, mode, label);
3348   expand_inc (temp, GEN_INT (d - 1));
3349   emit_label (label);
3350   return expand_shift (RSHIFT_EXPR, mode, temp, shift, NULL_RTX, 0);
3351 }
3352 \f
3353 /* Emit the code to divide OP0 by OP1, putting the result in TARGET
3354    if that is convenient, and returning where the result is.
3355    You may request either the quotient or the remainder as the result;
3356    specify REM_FLAG nonzero to get the remainder.
3357
3358    CODE is the expression code for which kind of division this is;
3359    it controls how rounding is done.  MODE is the machine mode to use.
3360    UNSIGNEDP nonzero means do unsigned division.  */
3361
3362 /* ??? For CEIL_MOD_EXPR, can compute incorrect remainder with ANDI
3363    and then correct it by or'ing in missing high bits
3364    if result of ANDI is nonzero.
3365    For ROUND_MOD_EXPR, can use ANDI and then sign-extend the result.
3366    This could optimize to a bfexts instruction.
3367    But C doesn't use these operations, so their optimizations are
3368    left for later.  */
3369 /* ??? For modulo, we don't actually need the highpart of the first product,
3370    the low part will do nicely.  And for small divisors, the second multiply
3371    can also be a low-part only multiply or even be completely left out.
3372    E.g. to calculate the remainder of a division by 3 with a 32 bit
3373    multiply, multiply with 0x55555556 and extract the upper two bits;
3374    the result is exact for inputs up to 0x1fffffff.
3375    The input range can be reduced by using cross-sum rules.
3376    For odd divisors >= 3, the following table gives right shift counts
3377    so that if a number is shifted by an integer multiple of the given
3378    amount, the remainder stays the same:
3379    2, 4, 3, 6, 10, 12, 4, 8, 18, 6, 11, 20, 18, 0, 5, 10, 12, 0, 12, 20,
3380    14, 12, 23, 21, 8, 0, 20, 18, 0, 0, 6, 12, 0, 22, 0, 18, 20, 30, 0, 0,
3381    0, 8, 0, 11, 12, 10, 36, 0, 30, 0, 0, 12, 0, 0, 0, 0, 44, 12, 24, 0,
3382    20, 0, 7, 14, 0, 18, 36, 0, 0, 46, 60, 0, 42, 0, 15, 24, 20, 0, 0, 33,
3383    0, 20, 0, 0, 18, 0, 60, 0, 0, 0, 0, 0, 40, 18, 0, 0, 12
3384
3385    Cross-sum rules for even numbers can be derived by leaving as many bits
3386    to the right alone as the divisor has zeros to the right.
3387    E.g. if x is an unsigned 32 bit number:
3388    (x mod 12) == (((x & 1023) + ((x >> 8) & ~3)) * 0x15555558 >> 2 * 3) >> 28
3389    */
3390
3391 #define EXACT_POWER_OF_2_OR_ZERO_P(x) (((x) & ((x) - 1)) == 0)
3392
3393 rtx
3394 expand_divmod (int rem_flag, enum tree_code code, enum machine_mode mode,
3395                rtx op0, rtx op1, rtx target, int unsignedp)
3396 {
3397   enum machine_mode compute_mode;
3398   rtx tquotient;
3399   rtx quotient = 0, remainder = 0;
3400   rtx last;
3401   int size;
3402   rtx insn, set;
3403   optab optab1, optab2;
3404   int op1_is_constant, op1_is_pow2 = 0;
3405   int max_cost, extra_cost;
3406   static HOST_WIDE_INT last_div_const = 0;
3407   static HOST_WIDE_INT ext_op1;
3408
3409   op1_is_constant = GET_CODE (op1) == CONST_INT;
3410   if (op1_is_constant)
3411     {
3412       ext_op1 = INTVAL (op1);
3413       if (unsignedp)
3414         ext_op1 &= GET_MODE_MASK (mode);
3415       op1_is_pow2 = ((EXACT_POWER_OF_2_OR_ZERO_P (ext_op1)
3416                      || (! unsignedp && EXACT_POWER_OF_2_OR_ZERO_P (-ext_op1))));
3417     }
3418
3419   /*
3420      This is the structure of expand_divmod:
3421
3422      First comes code to fix up the operands so we can perform the operations
3423      correctly and efficiently.
3424
3425      Second comes a switch statement with code specific for each rounding mode.
3426      For some special operands this code emits all RTL for the desired
3427      operation, for other cases, it generates only a quotient and stores it in
3428      QUOTIENT.  The case for trunc division/remainder might leave quotient = 0,
3429      to indicate that it has not done anything.
3430
3431      Last comes code that finishes the operation.  If QUOTIENT is set and
3432      REM_FLAG is set, the remainder is computed as OP0 - QUOTIENT * OP1.  If
3433      QUOTIENT is not set, it is computed using trunc rounding.
3434
3435      We try to generate special code for division and remainder when OP1 is a
3436      constant.  If |OP1| = 2**n we can use shifts and some other fast
3437      operations.  For other values of OP1, we compute a carefully selected
3438      fixed-point approximation m = 1/OP1, and generate code that multiplies OP0
3439      by m.
3440
3441      In all cases but EXACT_DIV_EXPR, this multiplication requires the upper
3442      half of the product.  Different strategies for generating the product are
3443      implemented in expand_mult_highpart.
3444
3445      If what we actually want is the remainder, we generate that by another
3446      by-constant multiplication and a subtraction.  */
3447
3448   /* We shouldn't be called with OP1 == const1_rtx, but some of the
3449      code below will malfunction if we are, so check here and handle
3450      the special case if so.  */
3451   if (op1 == const1_rtx)
3452     return rem_flag ? const0_rtx : op0;
3453
3454     /* When dividing by -1, we could get an overflow.
3455      negv_optab can handle overflows.  */
3456   if (! unsignedp && op1 == constm1_rtx)
3457     {
3458       if (rem_flag)
3459         return const0_rtx;
3460       return expand_unop (mode, flag_trapv && GET_MODE_CLASS(mode) == MODE_INT
3461                           ? negv_optab : neg_optab, op0, target, 0);
3462     }
3463
3464   if (target
3465       /* Don't use the function value register as a target
3466          since we have to read it as well as write it,
3467          and function-inlining gets confused by this.  */
3468       && ((REG_P (target) && REG_FUNCTION_VALUE_P (target))
3469           /* Don't clobber an operand while doing a multi-step calculation.  */
3470           || ((rem_flag || op1_is_constant)
3471               && (reg_mentioned_p (target, op0)
3472                   || (MEM_P (op0) && MEM_P (target))))
3473           || reg_mentioned_p (target, op1)
3474           || (MEM_P (op1) && MEM_P (target))))
3475     target = 0;
3476
3477   /* Get the mode in which to perform this computation.  Normally it will
3478      be MODE, but sometimes we can't do the desired operation in MODE.
3479      If so, pick a wider mode in which we can do the operation.  Convert
3480      to that mode at the start to avoid repeated conversions.
3481
3482      First see what operations we need.  These depend on the expression
3483      we are evaluating.  (We assume that divxx3 insns exist under the
3484      same conditions that modxx3 insns and that these insns don't normally
3485      fail.  If these assumptions are not correct, we may generate less
3486      efficient code in some cases.)
3487
3488      Then see if we find a mode in which we can open-code that operation
3489      (either a division, modulus, or shift).  Finally, check for the smallest
3490      mode for which we can do the operation with a library call.  */
3491
3492   /* We might want to refine this now that we have division-by-constant
3493      optimization.  Since expand_mult_highpart tries so many variants, it is
3494      not straightforward to generalize this.  Maybe we should make an array
3495      of possible modes in init_expmed?  Save this for GCC 2.7.  */
3496
3497   optab1 = ((op1_is_pow2 && op1 != const0_rtx)
3498             ? (unsignedp ? lshr_optab : ashr_optab)
3499             : (unsignedp ? udiv_optab : sdiv_optab));
3500   optab2 = ((op1_is_pow2 && op1 != const0_rtx)
3501             ? optab1
3502             : (unsignedp ? udivmod_optab : sdivmod_optab));
3503
3504   for (compute_mode = mode; compute_mode != VOIDmode;
3505        compute_mode = GET_MODE_WIDER_MODE (compute_mode))
3506     if (optab1->handlers[compute_mode].insn_code != CODE_FOR_nothing
3507         || optab2->handlers[compute_mode].insn_code != CODE_FOR_nothing)
3508       break;
3509
3510   if (compute_mode == VOIDmode)
3511     for (compute_mode = mode; compute_mode != VOIDmode;
3512          compute_mode = GET_MODE_WIDER_MODE (compute_mode))
3513       if (optab1->handlers[compute_mode].libfunc
3514           || optab2->handlers[compute_mode].libfunc)
3515         break;
3516
3517   /* If we still couldn't find a mode, use MODE, but we'll probably abort
3518      in expand_binop.  */
3519   if (compute_mode == VOIDmode)
3520     compute_mode = mode;
3521
3522   if (target && GET_MODE (target) == compute_mode)
3523     tquotient = target;
3524   else
3525     tquotient = gen_reg_rtx (compute_mode);
3526
3527   size = GET_MODE_BITSIZE (compute_mode);
3528 #if 0
3529   /* It should be possible to restrict the precision to GET_MODE_BITSIZE
3530      (mode), and thereby get better code when OP1 is a constant.  Do that
3531      later.  It will require going over all usages of SIZE below.  */
3532   size = GET_MODE_BITSIZE (mode);
3533 #endif
3534
3535   /* Only deduct something for a REM if the last divide done was
3536      for a different constant.   Then set the constant of the last
3537      divide.  */
3538   max_cost = div_cost[compute_mode]
3539     - (rem_flag && ! (last_div_const != 0 && op1_is_constant
3540                       && INTVAL (op1) == last_div_const)
3541        ? mul_cost[compute_mode] + add_cost[compute_mode]
3542        : 0);
3543
3544   last_div_const = ! rem_flag && op1_is_constant ? INTVAL (op1) : 0;
3545
3546   /* Now convert to the best mode to use.  */
3547   if (compute_mode != mode)
3548     {
3549       op0 = convert_modes (compute_mode, mode, op0, unsignedp);
3550       op1 = convert_modes (compute_mode, mode, op1, unsignedp);
3551
3552       /* convert_modes may have placed op1 into a register, so we
3553          must recompute the following.  */
3554       op1_is_constant = GET_CODE (op1) == CONST_INT;
3555       op1_is_pow2 = (op1_is_constant
3556                      && ((EXACT_POWER_OF_2_OR_ZERO_P (INTVAL (op1))
3557                           || (! unsignedp
3558                               && EXACT_POWER_OF_2_OR_ZERO_P (-INTVAL (op1)))))) ;
3559     }
3560
3561   /* If one of the operands is a volatile MEM, copy it into a register.  */
3562
3563   if (MEM_P (op0) && MEM_VOLATILE_P (op0))
3564     op0 = force_reg (compute_mode, op0);
3565   if (MEM_P (op1) && MEM_VOLATILE_P (op1))
3566     op1 = force_reg (compute_mode, op1);
3567
3568   /* If we need the remainder or if OP1 is constant, we need to
3569      put OP0 in a register in case it has any queued subexpressions.  */
3570   if (rem_flag || op1_is_constant)
3571     op0 = force_reg (compute_mode, op0);
3572
3573   last = get_last_insn ();
3574
3575   /* Promote floor rounding to trunc rounding for unsigned operations.  */
3576   if (unsignedp)
3577     {
3578       if (code == FLOOR_DIV_EXPR)
3579         code = TRUNC_DIV_EXPR;
3580       if (code == FLOOR_MOD_EXPR)
3581         code = TRUNC_MOD_EXPR;
3582       if (code == EXACT_DIV_EXPR && op1_is_pow2)
3583         code = TRUNC_DIV_EXPR;
3584     }
3585
3586   if (op1 != const0_rtx)
3587     switch (code)
3588       {
3589       case TRUNC_MOD_EXPR:
3590       case TRUNC_DIV_EXPR:
3591         if (op1_is_constant)
3592           {
3593             if (unsignedp)
3594               {
3595                 unsigned HOST_WIDE_INT mh, ml;
3596                 int pre_shift, post_shift;
3597                 int dummy;
3598                 unsigned HOST_WIDE_INT d = (INTVAL (op1)
3599                                             & GET_MODE_MASK (compute_mode));
3600
3601                 if (EXACT_POWER_OF_2_OR_ZERO_P (d))
3602                   {
3603                     pre_shift = floor_log2 (d);
3604                     if (rem_flag)
3605                       {
3606                         remainder
3607                           = expand_binop (compute_mode, and_optab, op0,
3608                                           GEN_INT (((HOST_WIDE_INT) 1 << pre_shift) - 1),
3609                                           remainder, 1,
3610                                           OPTAB_LIB_WIDEN);
3611                         if (remainder)
3612                           return gen_lowpart (mode, remainder);
3613                       }
3614                     quotient = expand_shift (RSHIFT_EXPR, compute_mode, op0,
3615                                              build_int_cst (NULL_TREE,
3616                                                             pre_shift),
3617                                              tquotient, 1);
3618                   }
3619                 else if (size <= HOST_BITS_PER_WIDE_INT)
3620                   {
3621                     if (d >= ((unsigned HOST_WIDE_INT) 1 << (size - 1)))
3622                       {
3623                         /* Most significant bit of divisor is set; emit an scc
3624                            insn.  */
3625                         quotient = emit_store_flag (tquotient, GEU, op0, op1,
3626                                                     compute_mode, 1, 1);
3627                         if (quotient == 0)
3628                           goto fail1;
3629                       }
3630                     else
3631                       {
3632                         /* Find a suitable multiplier and right shift count
3633                            instead of multiplying with D.  */
3634
3635                         mh = choose_multiplier (d, size, size,
3636                                                 &ml, &post_shift, &dummy);
3637
3638                         /* If the suggested multiplier is more than SIZE bits,
3639                            we can do better for even divisors, using an
3640                            initial right shift.  */
3641                         if (mh != 0 && (d & 1) == 0)
3642                           {
3643                             pre_shift = floor_log2 (d & -d);
3644                             mh = choose_multiplier (d >> pre_shift, size,
3645                                                     size - pre_shift,
3646                                                     &ml, &post_shift, &dummy);
3647                             gcc_assert (!mh);
3648                           }
3649                         else
3650                           pre_shift = 0;
3651
3652                         if (mh != 0)
3653                           {
3654                             rtx t1, t2, t3, t4;
3655
3656                             if (post_shift - 1 >= BITS_PER_WORD)
3657                               goto fail1;
3658
3659                             extra_cost
3660                               = (shift_cost[compute_mode][post_shift - 1]
3661                                  + shift_cost[compute_mode][1]
3662                                  + 2 * add_cost[compute_mode]);
3663                             t1 = expand_mult_highpart (compute_mode, op0, ml,
3664                                                        NULL_RTX, 1,
3665                                                        max_cost - extra_cost);
3666                             if (t1 == 0)
3667                               goto fail1;
3668                             t2 = force_operand (gen_rtx_MINUS (compute_mode,
3669                                                                op0, t1),
3670                                                 NULL_RTX);
3671                             t3 = expand_shift
3672                               (RSHIFT_EXPR, compute_mode, t2,
3673                                build_int_cst (NULL_TREE, 1),
3674                                NULL_RTX,1);
3675                             t4 = force_operand (gen_rtx_PLUS (compute_mode,
3676                                                               t1, t3),
3677                                                 NULL_RTX);
3678                             quotient = expand_shift
3679                               (RSHIFT_EXPR, compute_mode, t4,
3680                                build_int_cst (NULL_TREE, post_shift - 1),
3681                                tquotient, 1);
3682                           }
3683                         else
3684                           {
3685                             rtx t1, t2;
3686
3687                             if (pre_shift >= BITS_PER_WORD
3688                                 || post_shift >= BITS_PER_WORD)
3689                               goto fail1;
3690
3691                             t1 = expand_shift
3692                               (RSHIFT_EXPR, compute_mode, op0,
3693                                build_int_cst (NULL_TREE, pre_shift),
3694                                NULL_RTX, 1);
3695                             extra_cost
3696                               = (shift_cost[compute_mode][pre_shift]
3697                                  + shift_cost[compute_mode][post_shift]);
3698                             t2 = expand_mult_highpart (compute_mode, t1, ml,
3699                                                        NULL_RTX, 1,
3700                                                        max_cost - extra_cost);
3701                             if (t2 == 0)
3702                               goto fail1;
3703                             quotient = expand_shift
3704                               (RSHIFT_EXPR, compute_mode, t2,
3705                                build_int_cst (NULL_TREE, post_shift),
3706                                tquotient, 1);
3707                           }
3708                       }
3709                   }
3710                 else            /* Too wide mode to use tricky code */
3711                   break;
3712
3713                 insn = get_last_insn ();
3714                 if (insn != last
3715                     && (set = single_set (insn)) != 0
3716                     && SET_DEST (set) == quotient)
3717                   set_unique_reg_note (insn,
3718                                        REG_EQUAL,
3719                                        gen_rtx_UDIV (compute_mode, op0, op1));
3720               }
3721             else                /* TRUNC_DIV, signed */
3722               {
3723                 unsigned HOST_WIDE_INT ml;
3724                 int lgup, post_shift;
3725                 HOST_WIDE_INT d = INTVAL (op1);
3726                 unsigned HOST_WIDE_INT abs_d = d >= 0 ? d : -d;
3727
3728                 /* n rem d = n rem -d */
3729                 if (rem_flag && d < 0)
3730                   {
3731                     d = abs_d;
3732                     op1 = gen_int_mode (abs_d, compute_mode);
3733                   }
3734
3735                 if (d == 1)
3736                   quotient = op0;
3737                 else if (d == -1)
3738                   quotient = expand_unop (compute_mode, neg_optab, op0,
3739                                           tquotient, 0);
3740                 else if (abs_d == (unsigned HOST_WIDE_INT) 1 << (size - 1))
3741                   {
3742                     /* This case is not handled correctly below.  */
3743                     quotient = emit_store_flag (tquotient, EQ, op0, op1,
3744                                                 compute_mode, 1, 1);
3745                     if (quotient == 0)
3746                       goto fail1;
3747                   }
3748                 else if (EXACT_POWER_OF_2_OR_ZERO_P (d)
3749                          && (rem_flag ? smod_pow2_cheap[compute_mode]
3750                                       : sdiv_pow2_cheap[compute_mode])
3751                          /* We assume that cheap metric is true if the
3752                             optab has an expander for this mode.  */
3753                          && (((rem_flag ? smod_optab : sdiv_optab)
3754                               ->handlers[compute_mode].insn_code
3755                               != CODE_FOR_nothing)
3756                              || (sdivmod_optab->handlers[compute_mode]
3757                                  .insn_code != CODE_FOR_nothing)))
3758                   ;
3759                 else if (EXACT_POWER_OF_2_OR_ZERO_P (abs_d))
3760                   {
3761                     if (rem_flag)
3762                       {
3763                         remainder = expand_smod_pow2 (compute_mode, op0, d);
3764                         if (remainder)
3765                           return gen_lowpart (mode, remainder);
3766                       }
3767                     quotient = expand_sdiv_pow2 (compute_mode, op0, abs_d);
3768
3769                     /* We have computed OP0 / abs(OP1).  If OP1 is negative,
3770                        negate the quotient.  */
3771                     if (d < 0)
3772                       {
3773                         insn = get_last_insn ();
3774                         if (insn != last
3775                             && (set = single_set (insn)) != 0
3776                             && SET_DEST (set) == quotient
3777                             && abs_d < ((unsigned HOST_WIDE_INT) 1
3778                                         << (HOST_BITS_PER_WIDE_INT - 1)))
3779                           set_unique_reg_note (insn,
3780                                                REG_EQUAL,
3781                                                gen_rtx_DIV (compute_mode,
3782                                                             op0,
3783                                                             GEN_INT
3784                                                             (trunc_int_for_mode
3785                                                              (abs_d,
3786                                                               compute_mode))));
3787
3788                         quotient = expand_unop (compute_mode, neg_optab,
3789                                                 quotient, quotient, 0);
3790                       }
3791                   }
3792                 else if (size <= HOST_BITS_PER_WIDE_INT)
3793                   {
3794                     choose_multiplier (abs_d, size, size - 1,
3795                                        &ml, &post_shift, &lgup);
3796                     if (ml < (unsigned HOST_WIDE_INT) 1 << (size - 1))
3797                       {
3798                         rtx t1, t2, t3;
3799
3800                         if (post_shift >= BITS_PER_WORD
3801                             || size - 1 >= BITS_PER_WORD)
3802                           goto fail1;
3803
3804                         extra_cost = (shift_cost[compute_mode][post_shift]
3805                                       + shift_cost[compute_mode][size - 1]
3806                                       + add_cost[compute_mode]);
3807                         t1 = expand_mult_highpart (compute_mode, op0, ml,
3808                                                    NULL_RTX, 0,
3809                                                    max_cost - extra_cost);
3810                         if (t1 == 0)
3811                           goto fail1;
3812                         t2 = expand_shift
3813                           (RSHIFT_EXPR, compute_mode, t1,
3814                            build_int_cst (NULL_TREE, post_shift),
3815                            NULL_RTX, 0);
3816                         t3 = expand_shift
3817                           (RSHIFT_EXPR, compute_mode, op0,
3818                            build_int_cst (NULL_TREE, size - 1),
3819                            NULL_RTX, 0);
3820                         if (d < 0)
3821                           quotient
3822                             = force_operand (gen_rtx_MINUS (compute_mode,
3823                                                             t3, t2),
3824                                              tquotient);
3825                         else
3826                           quotient
3827                             = force_operand (gen_rtx_MINUS (compute_mode,
3828                                                             t2, t3),
3829                                              tquotient);
3830                       }
3831                     else
3832                       {
3833                         rtx t1, t2, t3, t4;
3834
3835                         if (post_shift >= BITS_PER_WORD
3836                             || size - 1 >= BITS_PER_WORD)
3837                           goto fail1;
3838
3839                         ml |= (~(unsigned HOST_WIDE_INT) 0) << (size - 1);
3840                         extra_cost = (shift_cost[compute_mode][post_shift]
3841                                       + shift_cost[compute_mode][size - 1]
3842                                       + 2 * add_cost[compute_mode]);
3843                         t1 = expand_mult_highpart (compute_mode, op0, ml,
3844                                                    NULL_RTX, 0,
3845                                                    max_cost - extra_cost);
3846                         if (t1 == 0)
3847                           goto fail1;
3848                         t2 = force_operand (gen_rtx_PLUS (compute_mode,
3849                                                           t1, op0),
3850                                             NULL_RTX);
3851                         t3 = expand_shift
3852                           (RSHIFT_EXPR, compute_mode, t2,
3853                            build_int_cst (NULL_TREE, post_shift),
3854                            NULL_RTX, 0);
3855                         t4 = expand_shift
3856                           (RSHIFT_EXPR, compute_mode, op0,
3857                            build_int_cst (NULL_TREE, size - 1),
3858                            NULL_RTX, 0);
3859                         if (d < 0)
3860                           quotient
3861                             = force_operand (gen_rtx_MINUS (compute_mode,
3862                                                             t4, t3),
3863                                              tquotient);
3864                         else
3865                           quotient
3866                             = force_operand (gen_rtx_MINUS (compute_mode,
3867                                                             t3, t4),
3868                                              tquotient);
3869                       }
3870                   }
3871                 else            /* Too wide mode to use tricky code */
3872                   break;
3873
3874                 insn = get_last_insn ();
3875                 if (insn != last
3876                     && (set = single_set (insn)) != 0
3877                     && SET_DEST (set) == quotient)
3878                   set_unique_reg_note (insn,
3879                                        REG_EQUAL,
3880                                        gen_rtx_DIV (compute_mode, op0, op1));
3881               }
3882             break;
3883           }
3884       fail1:
3885         delete_insns_since (last);
3886         break;
3887
3888       case FLOOR_DIV_EXPR:
3889       case FLOOR_MOD_EXPR:
3890       /* We will come here only for signed operations.  */
3891         if (op1_is_constant && HOST_BITS_PER_WIDE_INT >= size)
3892           {
3893             unsigned HOST_WIDE_INT mh, ml;
3894             int pre_shift, lgup, post_shift;
3895             HOST_WIDE_INT d = INTVAL (op1);
3896
3897             if (d > 0)
3898               {
3899                 /* We could just as easily deal with negative constants here,
3900                    but it does not seem worth the trouble for GCC 2.6.  */
3901                 if (EXACT_POWER_OF_2_OR_ZERO_P (d))
3902                   {
3903                     pre_shift = floor_log2 (d);
3904                     if (rem_flag)
3905                       {
3906                         remainder = expand_binop (compute_mode, and_optab, op0,
3907                                                   GEN_INT (((HOST_WIDE_INT) 1 << pre_shift) - 1),
3908                                                   remainder, 0, OPTAB_LIB_WIDEN);
3909                         if (remainder)
3910                           return gen_lowpart (mode, remainder);
3911                       }
3912                     quotient = expand_shift
3913                       (RSHIFT_EXPR, compute_mode, op0,
3914                        build_int_cst (NULL_TREE, pre_shift),
3915                        tquotient, 0);
3916                   }
3917                 else
3918                   {
3919                     rtx t1, t2, t3, t4;
3920
3921                     mh = choose_multiplier (d, size, size - 1,
3922                                             &ml, &post_shift, &lgup);
3923                     gcc_assert (!mh);
3924
3925                     if (post_shift < BITS_PER_WORD
3926                         && size - 1 < BITS_PER_WORD)
3927                       {
3928                         t1 = expand_shift
3929                           (RSHIFT_EXPR, compute_mode, op0,
3930                            build_int_cst (NULL_TREE, size - 1),
3931                            NULL_RTX, 0);
3932                         t2 = expand_binop (compute_mode, xor_optab, op0, t1,
3933                                            NULL_RTX, 0, OPTAB_WIDEN);
3934                         extra_cost = (shift_cost[compute_mode][post_shift]
3935                                       + shift_cost[compute_mode][size - 1]
3936                                       + 2 * add_cost[compute_mode]);
3937                         t3 = expand_mult_highpart (compute_mode, t2, ml,
3938                                                    NULL_RTX, 1,
3939                                                    max_cost - extra_cost);
3940                         if (t3 != 0)
3941                           {
3942                             t4 = expand_shift
3943                               (RSHIFT_EXPR, compute_mode, t3,
3944                                build_int_cst (NULL_TREE, post_shift),
3945                                NULL_RTX, 1);
3946                             quotient = expand_binop (compute_mode, xor_optab,
3947                                                      t4, t1, tquotient, 0,
3948                                                      OPTAB_WIDEN);
3949                           }
3950                       }
3951                   }
3952               }
3953             else
3954               {
3955                 rtx nsign, t1, t2, t3, t4;
3956                 t1 = force_operand (gen_rtx_PLUS (compute_mode,
3957                                                   op0, constm1_rtx), NULL_RTX);
3958                 t2 = expand_binop (compute_mode, ior_optab, op0, t1, NULL_RTX,
3959                                    0, OPTAB_WIDEN);
3960                 nsign = expand_shift
3961                   (RSHIFT_EXPR, compute_mode, t2,
3962                    build_int_cst (NULL_TREE, size - 1),
3963                    NULL_RTX, 0);
3964                 t3 = force_operand (gen_rtx_MINUS (compute_mode, t1, nsign),
3965                                     NULL_RTX);
3966                 t4 = expand_divmod (0, TRUNC_DIV_EXPR, compute_mode, t3, op1,
3967                                     NULL_RTX, 0);
3968                 if (t4)
3969                   {
3970                     rtx t5;
3971                     t5 = expand_unop (compute_mode, one_cmpl_optab, nsign,
3972                                       NULL_RTX, 0);
3973                     quotient = force_operand (gen_rtx_PLUS (compute_mode,
3974                                                             t4, t5),
3975                                               tquotient);
3976                   }
3977               }
3978           }
3979
3980         if (quotient != 0)
3981           break;
3982         delete_insns_since (last);
3983
3984         /* Try using an instruction that produces both the quotient and
3985            remainder, using truncation.  We can easily compensate the quotient
3986            or remainder to get floor rounding, once we have the remainder.
3987            Notice that we compute also the final remainder value here,
3988            and return the result right away.  */
3989         if (target == 0 || GET_MODE (target) != compute_mode)
3990           target = gen_reg_rtx (compute_mode);
3991
3992         if (rem_flag)
3993           {
3994             remainder
3995               = REG_P (target) ? target : gen_reg_rtx (compute_mode);
3996             quotient = gen_reg_rtx (compute_mode);
3997           }
3998         else
3999           {
4000             quotient
4001               = REG_P (target) ? target : gen_reg_rtx (compute_mode);
4002             remainder = gen_reg_rtx (compute_mode);
4003           }
4004
4005         if (expand_twoval_binop (sdivmod_optab, op0, op1,
4006                                  quotient, remainder, 0))
4007           {
4008             /* This could be computed with a branch-less sequence.
4009                Save that for later.  */
4010             rtx tem;
4011             rtx label = gen_label_rtx ();
4012             do_cmp_and_jump (remainder, const0_rtx, EQ, compute_mode, label);
4013             tem = expand_binop (compute_mode, xor_optab, op0, op1,
4014                                 NULL_RTX, 0, OPTAB_WIDEN);
4015             do_cmp_and_jump (tem, const0_rtx, GE, compute_mode, label);
4016             expand_dec (quotient, const1_rtx);
4017             expand_inc (remainder, op1);
4018             emit_label (label);
4019             return gen_lowpart (mode, rem_flag ? remainder : quotient);
4020           }
4021
4022         /* No luck with division elimination or divmod.  Have to do it
4023            by conditionally adjusting op0 *and* the result.  */
4024         {
4025           rtx label1, label2, label3, label4, label5;
4026           rtx adjusted_op0;
4027           rtx tem;
4028
4029           quotient = gen_reg_rtx (compute_mode);
4030           adjusted_op0 = copy_to_mode_reg (compute_mode, op0);
4031           label1 = gen_label_rtx ();
4032           label2 = gen_label_rtx ();
4033           label3 = gen_label_rtx ();
4034           label4 = gen_label_rtx ();
4035           label5 = gen_label_rtx ();
4036           do_cmp_and_jump (op1, const0_rtx, LT, compute_mode, label2);
4037           do_cmp_and_jump (adjusted_op0, const0_rtx, LT, compute_mode, label1);
4038           tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4039                               quotient, 0, OPTAB_LIB_WIDEN);
4040           if (tem != quotient)
4041             emit_move_insn (quotient, tem);
4042           emit_jump_insn (gen_jump (label5));
4043           emit_barrier ();
4044           emit_label (label1);
4045           expand_inc (adjusted_op0, const1_rtx);
4046           emit_jump_insn (gen_jump (label4));
4047           emit_barrier ();
4048           emit_label (label2);
4049           do_cmp_and_jump (adjusted_op0, const0_rtx, GT, compute_mode, label3);
4050           tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4051                               quotient, 0, OPTAB_LIB_WIDEN);
4052           if (tem != quotient)
4053             emit_move_insn (quotient, tem);
4054           emit_jump_insn (gen_jump (label5));
4055           emit_barrier ();
4056           emit_label (label3);
4057           expand_dec (adjusted_op0, const1_rtx);
4058           emit_label (label4);
4059           tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4060                               quotient, 0, OPTAB_LIB_WIDEN);
4061           if (tem != quotient)
4062             emit_move_insn (quotient, tem);
4063           expand_dec (quotient, const1_rtx);
4064           emit_label (label5);
4065         }
4066         break;
4067
4068       case CEIL_DIV_EXPR:
4069       case CEIL_MOD_EXPR:
4070         if (unsignedp)
4071           {
4072             if (op1_is_constant && EXACT_POWER_OF_2_OR_ZERO_P (INTVAL (op1)))
4073               {
4074                 rtx t1, t2, t3;
4075                 unsigned HOST_WIDE_INT d = INTVAL (op1);
4076                 t1 = expand_shift (RSHIFT_EXPR, compute_mode, op0,
4077                                    build_int_cst (NULL_TREE, floor_log2 (d)),
4078                                    tquotient, 1);
4079                 t2 = expand_binop (compute_mode, and_optab, op0,
4080                                    GEN_INT (d - 1),
4081                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
4082                 t3 = gen_reg_rtx (compute_mode);
4083                 t3 = emit_store_flag (t3, NE, t2, const0_rtx,
4084                                       compute_mode, 1, 1);
4085                 if (t3 == 0)
4086                   {
4087                     rtx lab;
4088                     lab = gen_label_rtx ();
4089                     do_cmp_and_jump (t2, const0_rtx, EQ, compute_mode, lab);
4090                     expand_inc (t1, const1_rtx);
4091                     emit_label (lab);
4092                     quotient = t1;
4093                   }
4094                 else
4095                   quotient = force_operand (gen_rtx_PLUS (compute_mode,
4096                                                           t1, t3),
4097                                             tquotient);
4098                 break;
4099               }
4100
4101             /* Try using an instruction that produces both the quotient and
4102                remainder, using truncation.  We can easily compensate the
4103                quotient or remainder to get ceiling rounding, once we have the
4104                remainder.  Notice that we compute also the final remainder
4105                value here, and return the result right away.  */
4106             if (target == 0 || GET_MODE (target) != compute_mode)
4107               target = gen_reg_rtx (compute_mode);
4108
4109             if (rem_flag)
4110               {
4111                 remainder = (REG_P (target)
4112                              ? target : gen_reg_rtx (compute_mode));
4113                 quotient = gen_reg_rtx (compute_mode);
4114               }
4115             else
4116               {
4117                 quotient = (REG_P (target)
4118                             ? target : gen_reg_rtx (compute_mode));
4119                 remainder = gen_reg_rtx (compute_mode);
4120               }
4121
4122             if (expand_twoval_binop (udivmod_optab, op0, op1, quotient,
4123                                      remainder, 1))
4124               {
4125                 /* This could be computed with a branch-less sequence.
4126                    Save that for later.  */
4127                 rtx label = gen_label_rtx ();
4128                 do_cmp_and_jump (remainder, const0_rtx, EQ,
4129                                  compute_mode, label);
4130                 expand_inc (quotient, const1_rtx);
4131                 expand_dec (remainder, op1);
4132                 emit_label (label);
4133                 return gen_lowpart (mode, rem_flag ? remainder : quotient);
4134               }
4135
4136             /* No luck with division elimination or divmod.  Have to do it
4137                by conditionally adjusting op0 *and* the result.  */
4138             {
4139               rtx label1, label2;
4140               rtx adjusted_op0, tem;
4141
4142               quotient = gen_reg_rtx (compute_mode);
4143               adjusted_op0 = copy_to_mode_reg (compute_mode, op0);
4144               label1 = gen_label_rtx ();
4145               label2 = gen_label_rtx ();
4146               do_cmp_and_jump (adjusted_op0, const0_rtx, NE,
4147                                compute_mode, label1);
4148               emit_move_insn  (quotient, const0_rtx);
4149               emit_jump_insn (gen_jump (label2));
4150               emit_barrier ();
4151               emit_label (label1);
4152               expand_dec (adjusted_op0, const1_rtx);
4153               tem = expand_binop (compute_mode, udiv_optab, adjusted_op0, op1,
4154                                   quotient, 1, OPTAB_LIB_WIDEN);
4155               if (tem != quotient)
4156                 emit_move_insn (quotient, tem);
4157               expand_inc (quotient, const1_rtx);
4158               emit_label (label2);
4159             }
4160           }
4161         else /* signed */
4162           {
4163             if (op1_is_constant && EXACT_POWER_OF_2_OR_ZERO_P (INTVAL (op1))
4164                 && INTVAL (op1) >= 0)
4165               {
4166                 /* This is extremely similar to the code for the unsigned case
4167                    above.  For 2.7 we should merge these variants, but for
4168                    2.6.1 I don't want to touch the code for unsigned since that
4169                    get used in C.  The signed case will only be used by other
4170                    languages (Ada).  */
4171
4172                 rtx t1, t2, t3;
4173                 unsigned HOST_WIDE_INT d = INTVAL (op1);
4174                 t1 = expand_shift (RSHIFT_EXPR, compute_mode, op0,
4175                                    build_int_cst (NULL_TREE, floor_log2 (d)),
4176                                    tquotient, 0);
4177                 t2 = expand_binop (compute_mode, and_optab, op0,
4178                                    GEN_INT (d - 1),
4179                                    NULL_RTX, 1, OPTAB_LIB_WIDEN);
4180                 t3 = gen_reg_rtx (compute_mode);
4181                 t3 = emit_store_flag (t3, NE, t2, const0_rtx,
4182                                       compute_mode, 1, 1);
4183                 if (t3 == 0)
4184                   {
4185                     rtx lab;
4186                     lab = gen_label_rtx ();
4187                     do_cmp_and_jump (t2, const0_rtx, EQ, compute_mode, lab);
4188                     expand_inc (t1, const1_rtx);
4189                     emit_label (lab);
4190                     quotient = t1;
4191                   }
4192                 else
4193                   quotient = force_operand (gen_rtx_PLUS (compute_mode,
4194                                                           t1, t3),
4195                                             tquotient);
4196                 break;
4197               }
4198
4199             /* Try using an instruction that produces both the quotient and
4200                remainder, using truncation.  We can easily compensate the
4201                quotient or remainder to get ceiling rounding, once we have the
4202                remainder.  Notice that we compute also the final remainder
4203                value here, and return the result right away.  */
4204             if (target == 0 || GET_MODE (target) != compute_mode)
4205               target = gen_reg_rtx (compute_mode);
4206             if (rem_flag)
4207               {
4208                 remainder= (REG_P (target)
4209                             ? target : gen_reg_rtx (compute_mode));
4210                 quotient = gen_reg_rtx (compute_mode);
4211               }
4212             else
4213               {
4214                 quotient = (REG_P (target)
4215                             ? target : gen_reg_rtx (compute_mode));
4216                 remainder = gen_reg_rtx (compute_mode);
4217               }
4218
4219             if (expand_twoval_binop (sdivmod_optab, op0, op1, quotient,
4220                                      remainder, 0))
4221               {
4222                 /* This could be computed with a branch-less sequence.
4223                    Save that for later.  */
4224                 rtx tem;
4225                 rtx label = gen_label_rtx ();
4226                 do_cmp_and_jump (remainder, const0_rtx, EQ,
4227                                  compute_mode, label);
4228                 tem = expand_binop (compute_mode, xor_optab, op0, op1,
4229                                     NULL_RTX, 0, OPTAB_WIDEN);
4230                 do_cmp_and_jump (tem, const0_rtx, LT, compute_mode, label);
4231                 expand_inc (quotient, const1_rtx);
4232                 expand_dec (remainder, op1);
4233                 emit_label (label);
4234                 return gen_lowpart (mode, rem_flag ? remainder : quotient);
4235               }
4236
4237             /* No luck with division elimination or divmod.  Have to do it
4238                by conditionally adjusting op0 *and* the result.  */
4239             {
4240               rtx label1, label2, label3, label4, label5;
4241               rtx adjusted_op0;
4242               rtx tem;
4243
4244               quotient = gen_reg_rtx (compute_mode);
4245               adjusted_op0 = copy_to_mode_reg (compute_mode, op0);
4246               label1 = gen_label_rtx ();
4247               label2 = gen_label_rtx ();
4248               label3 = gen_label_rtx ();
4249               label4 = gen_label_rtx ();
4250               label5 = gen_label_rtx ();
4251               do_cmp_and_jump (op1, const0_rtx, LT, compute_mode, label2);
4252               do_cmp_and_jump (adjusted_op0, const0_rtx, GT,
4253                                compute_mode, label1);
4254               tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4255                                   quotient, 0, OPTAB_LIB_WIDEN);
4256               if (tem != quotient)
4257                 emit_move_insn (quotient, tem);
4258               emit_jump_insn (gen_jump (label5));
4259               emit_barrier ();
4260               emit_label (label1);
4261               expand_dec (adjusted_op0, const1_rtx);
4262               emit_jump_insn (gen_jump (label4));
4263               emit_barrier ();
4264               emit_label (label2);
4265               do_cmp_and_jump (adjusted_op0, const0_rtx, LT,
4266                                compute_mode, label3);
4267               tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4268                                   quotient, 0, OPTAB_LIB_WIDEN);
4269               if (tem != quotient)
4270                 emit_move_insn (quotient, tem);
4271               emit_jump_insn (gen_jump (label5));
4272               emit_barrier ();
4273               emit_label (label3);
4274               expand_inc (adjusted_op0, const1_rtx);
4275               emit_label (label4);
4276               tem = expand_binop (compute_mode, sdiv_optab, adjusted_op0, op1,
4277                                   quotient, 0, OPTAB_LIB_WIDEN);
4278               if (tem != quotient)
4279                 emit_move_insn (quotient, tem);
4280               expand_inc (quotient, const1_rtx);
4281               emit_label (label5);
4282             }
4283           }
4284         break;
4285
4286       case EXACT_DIV_EXPR:
4287         if (op1_is_constant && HOST_BITS_PER_WIDE_INT >= size)
4288           {
4289             HOST_WIDE_INT d = INTVAL (op1);
4290             unsigned HOST_WIDE_INT ml;
4291             int pre_shift;
4292             rtx t1;
4293
4294             pre_shift = floor_log2 (d & -d);
4295             ml = invert_mod2n (d >> pre_shift, size);
4296             t1 = expand_shift (RSHIFT_EXPR, compute_mode, op0,
4297                                build_int_cst (NULL_TREE, pre_shift),
4298                                NULL_RTX, unsignedp);
4299             quotient = expand_mult (compute_mode, t1,
4300                                     gen_int_mode (ml, compute_mode),
4301                                     NULL_RTX, 1);
4302
4303             insn = get_last_insn ();
4304             set_unique_reg_note (insn,
4305                                  REG_EQUAL,
4306                                  gen_rtx_fmt_ee (unsignedp ? UDIV : DIV,
4307                                                  compute_mode,
4308                                                  op0, op1));
4309           }
4310         break;
4311
4312       case ROUND_DIV_EXPR:
4313       case ROUND_MOD_EXPR:
4314         if (unsignedp)
4315           {
4316             rtx tem;
4317             rtx label;
4318             label = gen_label_rtx ();
4319             quotient = gen_reg_rtx (compute_mode);
4320             remainder = gen_reg_rtx (compute_mode);
4321             if (expand_twoval_binop (udivmod_optab, op0, op1, quotient, remainder, 1) == 0)
4322               {
4323                 rtx tem;
4324                 quotient = expand_binop (compute_mode, udiv_optab, op0, op1,
4325                                          quotient, 1, OPTAB_LIB_WIDEN);
4326                 tem = expand_mult (compute_mode, quotient, op1, NULL_RTX, 1);
4327                 remainder = expand_binop (compute_mode, sub_optab, op0, tem,
4328                                           remainder, 1, OPTAB_LIB_WIDEN);
4329               }
4330             tem = plus_constant (op1, -1);
4331             tem = expand_shift (RSHIFT_EXPR, compute_mode, tem,
4332                                 build_int_cst (NULL_TREE, 1),
4333                                 NULL_RTX, 1);
4334             do_cmp_and_jump (remainder, tem, LEU, compute_mode, label);
4335             expand_inc (quotient, const1_rtx);
4336             expand_dec (remainder, op1);
4337             emit_label (label);
4338           }
4339         else
4340           {
4341             rtx abs_rem, abs_op1, tem, mask;
4342             rtx label;
4343             label = gen_label_rtx ();
4344             quotient = gen_reg_rtx (compute_mode);
4345             remainder = gen_reg_rtx (compute_mode);
4346             if (expand_twoval_binop (sdivmod_optab, op0, op1, quotient, remainder, 0) == 0)
4347               {
4348                 rtx tem;
4349                 quotient = expand_binop (compute_mode, sdiv_optab, op0, op1,
4350                                          quotient, 0, OPTAB_LIB_WIDEN);
4351                 tem = expand_mult (compute_mode, quotient, op1, NULL_RTX, 0);
4352                 remainder = expand_binop (compute_mode, sub_optab, op0, tem,
4353                                           remainder, 0, OPTAB_LIB_WIDEN);
4354               }
4355             abs_rem = expand_abs (compute_mode, remainder, NULL_RTX, 1, 0);
4356             abs_op1 = expand_abs (compute_mode, op1, NULL_RTX, 1, 0);
4357             tem = expand_shift (LSHIFT_EXPR, compute_mode, abs_rem,
4358                                 build_int_cst (NULL_TREE, 1),
4359                                 NULL_RTX, 1);
4360             do_cmp_and_jump (tem, abs_op1, LTU, compute_mode, label);
4361             tem = expand_binop (compute_mode, xor_optab, op0, op1,
4362                                 NULL_RTX, 0, OPTAB_WIDEN);
4363             mask = expand_shift (RSHIFT_EXPR, compute_mode, tem,
4364                                  build_int_cst (NULL_TREE, size - 1),
4365                                  NULL_RTX, 0);
4366             tem = expand_binop (compute_mode, xor_optab, mask, const1_rtx,
4367                                 NULL_RTX, 0, OPTAB_WIDEN);
4368             tem = expand_binop (compute_mode, sub_optab, tem, mask,
4369                                 NULL_RTX, 0, OPTAB_WIDEN);
4370             expand_inc (quotient, tem);
4371             tem = expand_binop (compute_mode, xor_optab, mask, op1,
4372                                 NULL_RTX, 0, OPTAB_WIDEN);
4373             tem = expand_binop (compute_mode, sub_optab, tem, mask,
4374                                 NULL_RTX, 0, OPTAB_WIDEN);
4375             expand_dec (remainder, tem);
4376             emit_label (label);
4377           }
4378         return gen_lowpart (mode, rem_flag ? remainder : quotient);
4379
4380       default:
4381         gcc_unreachable ();
4382       }
4383
4384   if (quotient == 0)
4385     {
4386       if (target && GET_MODE (target) != compute_mode)
4387         target = 0;
4388
4389       if (rem_flag)
4390         {
4391           /* Try to produce the remainder without producing the quotient.
4392              If we seem to have a divmod pattern that does not require widening,
4393              don't try widening here.  We should really have a WIDEN argument
4394              to expand_twoval_binop, since what we'd really like to do here is
4395              1) try a mod insn in compute_mode
4396              2) try a divmod insn in compute_mode
4397              3) try a div insn in compute_mode and multiply-subtract to get
4398                 remainder
4399              4) try the same things with widening allowed.  */
4400           remainder
4401             = sign_expand_binop (compute_mode, umod_optab, smod_optab,
4402                                  op0, op1, target,
4403                                  unsignedp,
4404                                  ((optab2->handlers[compute_mode].insn_code
4405                                    != CODE_FOR_nothing)
4406                                   ? OPTAB_DIRECT : OPTAB_WIDEN));
4407           if (remainder == 0)
4408             {
4409               /* No luck there.  Can we do remainder and divide at once
4410                  without a library call?  */
4411               remainder = gen_reg_rtx (compute_mode);
4412               if (! expand_twoval_binop ((unsignedp
4413                                           ? udivmod_optab
4414                                           : sdivmod_optab),
4415                                          op0, op1,
4416                                          NULL_RTX, remainder, unsignedp))
4417                 remainder = 0;
4418             }
4419
4420           if (remainder)
4421             return gen_lowpart (mode, remainder);
4422         }
4423
4424       /* Produce the quotient.  Try a quotient insn, but not a library call.
4425          If we have a divmod in this mode, use it in preference to widening
4426          the div (for this test we assume it will not fail). Note that optab2
4427          is set to the one of the two optabs that the call below will use.  */
4428       quotient
4429         = sign_expand_binop (compute_mode, udiv_optab, sdiv_optab,
4430                              op0, op1, rem_flag ? NULL_RTX : target,
4431                              unsignedp,
4432                              ((optab2->handlers[compute_mode].insn_code
4433                                != CODE_FOR_nothing)
4434                               ? OPTAB_DIRECT : OPTAB_WIDEN));
4435
4436       if (quotient == 0)
4437         {
4438           /* No luck there.  Try a quotient-and-remainder insn,
4439              keeping the quotient alone.  */
4440           quotient = gen_reg_rtx (compute_mode);
4441           if (! expand_twoval_binop (unsignedp ? udivmod_optab : sdivmod_optab,
4442                                      op0, op1,
4443                                      quotient, NULL_RTX, unsignedp))
4444             {
4445               quotient = 0;
4446               if (! rem_flag)
4447                 /* Still no luck.  If we are not computing the remainder,
4448                    use a library call for the quotient.  */
4449                 quotient = sign_expand_binop (compute_mode,
4450                                               udiv_optab, sdiv_optab,
4451                                               op0, op1, target,
4452                                               unsignedp, OPTAB_LIB_WIDEN);
4453             }
4454         }
4455     }
4456
4457   if (rem_flag)
4458     {
4459       if (target && GET_MODE (target) != compute_mode)
4460         target = 0;
4461
4462       if (quotient == 0)
4463         {
4464           /* No divide instruction either.  Use library for remainder.  */
4465           remainder = sign_expand_binop (compute_mode, umod_optab, smod_optab,
4466                                          op0, op1, target,
4467                                          unsignedp, OPTAB_LIB_WIDEN);
4468           /* No remainder function.  Try a quotient-and-remainder
4469              function, keeping the remainder.  */
4470           if (!remainder)
4471             {
4472               remainder = gen_reg_rtx (compute_mode);
4473               if (!expand_twoval_binop_libfunc 
4474                   (unsignedp ? udivmod_optab : sdivmod_optab,
4475                    op0, op1,
4476                    NULL_RTX, remainder,
4477                    unsignedp ? UMOD : MOD))
4478                 remainder = NULL_RTX;
4479             }
4480         }
4481       else
4482         {
4483           /* We divided.  Now finish doing X - Y * (X / Y).  */
4484           remainder = expand_mult (compute_mode, quotient, op1,
4485                                    NULL_RTX, unsignedp);
4486           remainder = expand_binop (compute_mode, sub_optab, op0,
4487                                     remainder, target, unsignedp,
4488                                     OPTAB_LIB_WIDEN);
4489         }
4490     }
4491
4492   return gen_lowpart (mode, rem_flag ? remainder : quotient);
4493 }
4494 \f
4495 /* Return a tree node with data type TYPE, describing the value of X.
4496    Usually this is an VAR_DECL, if there is no obvious better choice.
4497    X may be an expression, however we only support those expressions
4498    generated by loop.c.  */
4499
4500 tree
4501 make_tree (tree type, rtx x)
4502 {
4503   tree t;
4504
4505   switch (GET_CODE (x))
4506     {
4507     case CONST_INT:
4508       {
4509         HOST_WIDE_INT hi = 0;
4510
4511         if (INTVAL (x) < 0
4512             && !(TYPE_UNSIGNED (type)
4513                  && (GET_MODE_BITSIZE (TYPE_MODE (type))
4514                      < HOST_BITS_PER_WIDE_INT)))
4515           hi = -1;
4516       
4517         t = build_int_cst_wide (type, INTVAL (x), hi);
4518         
4519         return t;
4520       }
4521       
4522     case CONST_DOUBLE:
4523       if (GET_MODE (x) == VOIDmode)
4524         t = build_int_cst_wide (type,
4525                                 CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x));
4526       else
4527         {
4528           REAL_VALUE_TYPE d;
4529
4530           REAL_VALUE_FROM_CONST_DOUBLE (d, x);
4531           t = build_real (type, d);
4532         }
4533
4534       return t;
4535
4536     case CONST_VECTOR:
4537       {
4538         int i, units;
4539         rtx elt;
4540         tree t = NULL_TREE;
4541
4542         units = CONST_VECTOR_NUNITS (x);
4543
4544         /* Build a tree with vector elements.  */
4545         for (i = units - 1; i >= 0; --i)
4546           {
4547             elt = CONST_VECTOR_ELT (x, i);
4548             t = tree_cons (NULL_TREE, make_tree (type, elt), t);
4549           }
4550
4551         return build_vector (type, t);
4552       }
4553
4554     case PLUS:
4555       return fold (build2 (PLUS_EXPR, type, make_tree (type, XEXP (x, 0)),
4556                            make_tree (type, XEXP (x, 1))));
4557
4558     case MINUS:
4559       return fold (build2 (MINUS_EXPR, type, make_tree (type, XEXP (x, 0)),
4560                            make_tree (type, XEXP (x, 1))));
4561
4562     case NEG:
4563       return fold (build1 (NEGATE_EXPR, type, make_tree (type, XEXP (x, 0))));
4564
4565     case MULT:
4566       return fold (build2 (MULT_EXPR, type, make_tree (type, XEXP (x, 0)),
4567                            make_tree (type, XEXP (x, 1))));
4568
4569     case ASHIFT:
4570       return fold (build2 (LSHIFT_EXPR, type, make_tree (type, XEXP (x, 0)),
4571                            make_tree (type, XEXP (x, 1))));
4572
4573     case LSHIFTRT:
4574       t = lang_hooks.types.unsigned_type (type);
4575       return fold (convert (type,
4576                             build2 (RSHIFT_EXPR, t,
4577                                     make_tree (t, XEXP (x, 0)),
4578                                     make_tree (type, XEXP (x, 1)))));
4579
4580     case ASHIFTRT:
4581       t = lang_hooks.types.signed_type (type);
4582       return fold (convert (type,
4583                             build2 (RSHIFT_EXPR, t,
4584                                     make_tree (t, XEXP (x, 0)),
4585                                     make_tree (type, XEXP (x, 1)))));
4586
4587     case DIV:
4588       if (TREE_CODE (type) != REAL_TYPE)
4589         t = lang_hooks.types.signed_type (type);
4590       else
4591         t = type;
4592
4593       return fold (convert (type,
4594                             build2 (TRUNC_DIV_EXPR, t,
4595                                     make_tree (t, XEXP (x, 0)),
4596                                     make_tree (t, XEXP (x, 1)))));
4597     case UDIV:
4598       t = lang_hooks.types.unsigned_type (type);
4599       return fold (convert (type,
4600                             build2 (TRUNC_DIV_EXPR, t,
4601                                     make_tree (t, XEXP (x, 0)),
4602                                     make_tree (t, XEXP (x, 1)))));
4603
4604     case SIGN_EXTEND:
4605     case ZERO_EXTEND:
4606       t = lang_hooks.types.type_for_mode (GET_MODE (XEXP (x, 0)),
4607                                           GET_CODE (x) == ZERO_EXTEND);
4608       return fold (convert (type, make_tree (t, XEXP (x, 0))));
4609
4610     default:
4611       t = build_decl (VAR_DECL, NULL_TREE, type);
4612
4613       /* If TYPE is a POINTER_TYPE, X might be Pmode with TYPE_MODE being
4614          ptr_mode.  So convert.  */
4615       if (POINTER_TYPE_P (type))
4616         x = convert_memory_address (TYPE_MODE (type), x);
4617
4618       /* Note that we do *not* use SET_DECL_RTL here, because we do not
4619          want set_decl_rtl to go adjusting REG_ATTRS for this temporary.  */
4620       t->decl.rtl = x;
4621
4622       return t;
4623     }
4624 }
4625
4626 /* Check whether the multiplication X * MULT + ADD overflows.
4627    X, MULT and ADD must be CONST_*.
4628    MODE is the machine mode for the computation.
4629    X and MULT must have mode MODE.  ADD may have a different mode.
4630    So can X (defaults to same as MODE).
4631    UNSIGNEDP is nonzero to do unsigned multiplication.  */
4632
4633 bool
4634 const_mult_add_overflow_p (rtx x, rtx mult, rtx add,
4635                            enum machine_mode mode, int unsignedp)
4636 {
4637   tree type, mult_type, add_type, result;
4638
4639   type = lang_hooks.types.type_for_mode (mode, unsignedp);
4640
4641   /* In order to get a proper overflow indication from an unsigned
4642      type, we have to pretend that it's a sizetype.  */
4643   mult_type = type;
4644   if (unsignedp)
4645     {
4646       /* FIXME:It would be nice if we could step directly from this
4647          type to its sizetype equivalent.  */
4648       mult_type = build_distinct_type_copy (type);
4649       TYPE_IS_SIZETYPE (mult_type) = 1;
4650     }
4651
4652   add_type = (GET_MODE (add) == VOIDmode ? mult_type
4653               : lang_hooks.types.type_for_mode (GET_MODE (add), unsignedp));
4654
4655   result = fold (build2 (PLUS_EXPR, mult_type,
4656                          fold (build2 (MULT_EXPR, mult_type,
4657                                        make_tree (mult_type, x),
4658                                        make_tree (mult_type, mult))),
4659                          make_tree (add_type, add)));
4660
4661   return TREE_CONSTANT_OVERFLOW (result);
4662 }
4663
4664 /* Return an rtx representing the value of X * MULT + ADD.
4665    TARGET is a suggestion for where to store the result (an rtx).
4666    MODE is the machine mode for the computation.
4667    X and MULT must have mode MODE.  ADD may have a different mode.
4668    So can X (defaults to same as MODE).
4669    UNSIGNEDP is nonzero to do unsigned multiplication.
4670    This may emit insns.  */
4671
4672 rtx
4673 expand_mult_add (rtx x, rtx target, rtx mult, rtx add, enum machine_mode mode,
4674                  int unsignedp)
4675 {
4676   tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
4677   tree add_type = (GET_MODE (add) == VOIDmode
4678                    ? type: lang_hooks.types.type_for_mode (GET_MODE (add),
4679                                                            unsignedp));
4680   tree result =  fold (build2 (PLUS_EXPR, type,
4681                                fold (build2 (MULT_EXPR, type,
4682                                              make_tree (type, x),
4683                                              make_tree (type, mult))),
4684                                make_tree (add_type, add)));
4685
4686   return expand_expr (result, target, VOIDmode, 0);
4687 }
4688 \f
4689 /* Compute the logical-and of OP0 and OP1, storing it in TARGET
4690    and returning TARGET.
4691
4692    If TARGET is 0, a pseudo-register or constant is returned.  */
4693
4694 rtx
4695 expand_and (enum machine_mode mode, rtx op0, rtx op1, rtx target)
4696 {
4697   rtx tem = 0;
4698
4699   if (GET_MODE (op0) == VOIDmode && GET_MODE (op1) == VOIDmode)
4700     tem = simplify_binary_operation (AND, mode, op0, op1);
4701   if (tem == 0)
4702     tem = expand_binop (mode, and_optab, op0, op1, target, 0, OPTAB_LIB_WIDEN);
4703
4704   if (target == 0)
4705     target = tem;
4706   else if (tem != target)
4707     emit_move_insn (target, tem);
4708   return target;
4709 }
4710 \f
4711 /* Emit a store-flags instruction for comparison CODE on OP0 and OP1
4712    and storing in TARGET.  Normally return TARGET.
4713    Return 0 if that cannot be done.
4714
4715    MODE is the mode to use for OP0 and OP1 should they be CONST_INTs.  If
4716    it is VOIDmode, they cannot both be CONST_INT.
4717
4718    UNSIGNEDP is for the case where we have to widen the operands
4719    to perform the operation.  It says to use zero-extension.
4720
4721    NORMALIZEP is 1 if we should convert the result to be either zero
4722    or one.  Normalize is -1 if we should convert the result to be
4723    either zero or -1.  If NORMALIZEP is zero, the result will be left
4724    "raw" out of the scc insn.  */
4725
4726 rtx
4727 emit_store_flag (rtx target, enum rtx_code code, rtx op0, rtx op1,
4728                  enum machine_mode mode, int unsignedp, int normalizep)
4729 {
4730   rtx subtarget;
4731   enum insn_code icode;
4732   enum machine_mode compare_mode;
4733   enum machine_mode target_mode = GET_MODE (target);
4734   rtx tem;
4735   rtx last = get_last_insn ();
4736   rtx pattern, comparison;
4737
4738   if (unsignedp)
4739     code = unsigned_condition (code);
4740
4741   /* If one operand is constant, make it the second one.  Only do this
4742      if the other operand is not constant as well.  */
4743
4744   if (swap_commutative_operands_p (op0, op1))
4745     {
4746       tem = op0;
4747       op0 = op1;
4748       op1 = tem;
4749       code = swap_condition (code);
4750     }
4751
4752   if (mode == VOIDmode)
4753     mode = GET_MODE (op0);
4754
4755   /* For some comparisons with 1 and -1, we can convert this to
4756      comparisons with zero.  This will often produce more opportunities for
4757      store-flag insns.  */
4758
4759   switch (code)
4760     {
4761     case LT:
4762       if (op1 == const1_rtx)
4763         op1 = const0_rtx, code = LE;
4764       break;
4765     case LE:
4766       if (op1 == constm1_rtx)
4767         op1 = const0_rtx, code = LT;
4768       break;
4769     case GE:
4770       if (op1 == const1_rtx)
4771         op1 = const0_rtx, code = GT;
4772       break;
4773     case GT:
4774       if (op1 == constm1_rtx)
4775         op1 = const0_rtx, code = GE;
4776       break;
4777     case GEU:
4778       if (op1 == const1_rtx)
4779         op1 = const0_rtx, code = NE;
4780       break;
4781     case LTU:
4782       if (op1 == const1_rtx)
4783         op1 = const0_rtx, code = EQ;
4784       break;
4785     default:
4786       break;
4787     }
4788
4789   /* If we are comparing a double-word integer with zero or -1, we can
4790      convert the comparison into one involving a single word.  */
4791   if (GET_MODE_BITSIZE (mode) == BITS_PER_WORD * 2
4792       && GET_MODE_CLASS (mode) == MODE_INT
4793       && (!MEM_P (op0) || ! MEM_VOLATILE_P (op0)))
4794     {
4795       if ((code == EQ || code == NE)
4796           && (op1 == const0_rtx || op1 == constm1_rtx))
4797         {
4798           rtx op00, op01, op0both;
4799
4800           /* Do a logical OR or AND of the two words and compare the result.  */
4801           op00 = simplify_gen_subreg (word_mode, op0, mode, 0);
4802           op01 = simplify_gen_subreg (word_mode, op0, mode, UNITS_PER_WORD);
4803           op0both = expand_binop (word_mode,
4804                                   op1 == const0_rtx ? ior_optab : and_optab,
4805                                   op00, op01, NULL_RTX, unsignedp, OPTAB_DIRECT);
4806
4807           if (op0both != 0)
4808             return emit_store_flag (target, code, op0both, op1, word_mode,
4809                                     unsignedp, normalizep);
4810         }
4811       else if ((code == LT || code == GE) && op1 == const0_rtx)
4812         {
4813           rtx op0h;
4814
4815           /* If testing the sign bit, can just test on high word.  */
4816           op0h = simplify_gen_subreg (word_mode, op0, mode,
4817                                       subreg_highpart_offset (word_mode, mode));
4818           return emit_store_flag (target, code, op0h, op1, word_mode,
4819                                   unsignedp, normalizep);
4820         }
4821     }
4822
4823   /* From now on, we won't change CODE, so set ICODE now.  */
4824   icode = setcc_gen_code[(int) code];
4825
4826   /* If this is A < 0 or A >= 0, we can do this by taking the ones
4827      complement of A (for GE) and shifting the sign bit to the low bit.  */
4828   if (op1 == const0_rtx && (code == LT || code == GE)
4829       && GET_MODE_CLASS (mode) == MODE_INT
4830       && (normalizep || STORE_FLAG_VALUE == 1
4831           || (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4832               && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
4833                   == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1)))))
4834     {
4835       subtarget = target;
4836
4837       /* If the result is to be wider than OP0, it is best to convert it
4838          first.  If it is to be narrower, it is *incorrect* to convert it
4839          first.  */
4840       if (GET_MODE_SIZE (target_mode) > GET_MODE_SIZE (mode))
4841         {
4842           op0 = convert_modes (target_mode, mode, op0, 0);
4843           mode = target_mode;
4844         }
4845
4846       if (target_mode != mode)
4847         subtarget = 0;
4848
4849       if (code == GE)
4850         op0 = expand_unop (mode, one_cmpl_optab, op0,
4851                            ((STORE_FLAG_VALUE == 1 || normalizep)
4852                             ? 0 : subtarget), 0);
4853
4854       if (STORE_FLAG_VALUE == 1 || normalizep)
4855         /* If we are supposed to produce a 0/1 value, we want to do
4856            a logical shift from the sign bit to the low-order bit; for
4857            a -1/0 value, we do an arithmetic shift.  */
4858         op0 = expand_shift (RSHIFT_EXPR, mode, op0,
4859                             size_int (GET_MODE_BITSIZE (mode) - 1),
4860                             subtarget, normalizep != -1);
4861
4862       if (mode != target_mode)
4863         op0 = convert_modes (target_mode, mode, op0, 0);
4864
4865       return op0;
4866     }
4867
4868   if (icode != CODE_FOR_nothing)
4869     {
4870       insn_operand_predicate_fn pred;
4871
4872       /* We think we may be able to do this with a scc insn.  Emit the
4873          comparison and then the scc insn.  */
4874
4875       do_pending_stack_adjust ();
4876       last = get_last_insn ();
4877
4878       comparison
4879         = compare_from_rtx (op0, op1, code, unsignedp, mode, NULL_RTX);
4880       if (CONSTANT_P (comparison))
4881         {
4882           switch (GET_CODE (comparison))
4883             {
4884             case CONST_INT:
4885               if (comparison == const0_rtx)
4886                 return const0_rtx;
4887               break;
4888               
4889 #ifdef FLOAT_STORE_FLAG_VALUE
4890             case CONST_DOUBLE:
4891               if (comparison == CONST0_RTX (GET_MODE (comparison)))
4892                 return const0_rtx;
4893               break;
4894 #endif
4895             default:
4896               gcc_unreachable ();
4897             }
4898           
4899           if (normalizep == 1)
4900             return const1_rtx;
4901           if (normalizep == -1)
4902             return constm1_rtx;
4903           return const_true_rtx;
4904         }
4905
4906       /* The code of COMPARISON may not match CODE if compare_from_rtx
4907          decided to swap its operands and reverse the original code.
4908
4909          We know that compare_from_rtx returns either a CONST_INT or
4910          a new comparison code, so it is safe to just extract the
4911          code from COMPARISON.  */
4912       code = GET_CODE (comparison);
4913
4914       /* Get a reference to the target in the proper mode for this insn.  */
4915       compare_mode = insn_data[(int) icode].operand[0].mode;
4916       subtarget = target;
4917       pred = insn_data[(int) icode].operand[0].predicate;
4918       if (optimize || ! (*pred) (subtarget, compare_mode))
4919         subtarget = gen_reg_rtx (compare_mode);
4920
4921       pattern = GEN_FCN (icode) (subtarget);
4922       if (pattern)
4923         {
4924           emit_insn (pattern);
4925
4926           /* If we are converting to a wider mode, first convert to
4927              TARGET_MODE, then normalize.  This produces better combining
4928              opportunities on machines that have a SIGN_EXTRACT when we are
4929              testing a single bit.  This mostly benefits the 68k.
4930
4931              If STORE_FLAG_VALUE does not have the sign bit set when
4932              interpreted in COMPARE_MODE, we can do this conversion as
4933              unsigned, which is usually more efficient.  */
4934           if (GET_MODE_SIZE (target_mode) > GET_MODE_SIZE (compare_mode))
4935             {
4936               convert_move (target, subtarget,
4937                             (GET_MODE_BITSIZE (compare_mode)
4938                              <= HOST_BITS_PER_WIDE_INT)
4939                             && 0 == (STORE_FLAG_VALUE
4940                                      & ((HOST_WIDE_INT) 1
4941                                         << (GET_MODE_BITSIZE (compare_mode) -1))));
4942               op0 = target;
4943               compare_mode = target_mode;
4944             }
4945           else
4946             op0 = subtarget;
4947
4948           /* If we want to keep subexpressions around, don't reuse our
4949              last target.  */
4950
4951           if (optimize)
4952             subtarget = 0;
4953
4954           /* Now normalize to the proper value in COMPARE_MODE.  Sometimes
4955              we don't have to do anything.  */
4956           if (normalizep == 0 || normalizep == STORE_FLAG_VALUE)
4957             ;
4958           /* STORE_FLAG_VALUE might be the most negative number, so write
4959              the comparison this way to avoid a compiler-time warning.  */
4960           else if (- normalizep == STORE_FLAG_VALUE)
4961             op0 = expand_unop (compare_mode, neg_optab, op0, subtarget, 0);
4962
4963           /* We don't want to use STORE_FLAG_VALUE < 0 below since this
4964              makes it hard to use a value of just the sign bit due to
4965              ANSI integer constant typing rules.  */
4966           else if (GET_MODE_BITSIZE (compare_mode) <= HOST_BITS_PER_WIDE_INT
4967                    && (STORE_FLAG_VALUE
4968                        & ((HOST_WIDE_INT) 1
4969                           << (GET_MODE_BITSIZE (compare_mode) - 1))))
4970             op0 = expand_shift (RSHIFT_EXPR, compare_mode, op0,
4971                                 size_int (GET_MODE_BITSIZE (compare_mode) - 1),
4972                                 subtarget, normalizep == 1);
4973           else
4974             {
4975               gcc_assert (STORE_FLAG_VALUE & 1);
4976               
4977               op0 = expand_and (compare_mode, op0, const1_rtx, subtarget);
4978               if (normalizep == -1)
4979                 op0 = expand_unop (compare_mode, neg_optab, op0, op0, 0);
4980             }
4981
4982           /* If we were converting to a smaller mode, do the
4983              conversion now.  */
4984           if (target_mode != compare_mode)
4985             {
4986               convert_move (target, op0, 0);
4987               return target;
4988             }
4989           else
4990             return op0;
4991         }
4992     }
4993
4994   delete_insns_since (last);
4995
4996   /* If optimizing, use different pseudo registers for each insn, instead
4997      of reusing the same pseudo.  This leads to better CSE, but slows
4998      down the compiler, since there are more pseudos */
4999   subtarget = (!optimize
5000                && (target_mode == mode)) ? target : NULL_RTX;
5001
5002   /* If we reached here, we can't do this with a scc insn.  However, there
5003      are some comparisons that can be done directly.  For example, if
5004      this is an equality comparison of integers, we can try to exclusive-or
5005      (or subtract) the two operands and use a recursive call to try the
5006      comparison with zero.  Don't do any of these cases if branches are
5007      very cheap.  */
5008
5009   if (BRANCH_COST > 0
5010       && GET_MODE_CLASS (mode) == MODE_INT && (code == EQ || code == NE)
5011       && op1 != const0_rtx)
5012     {
5013       tem = expand_binop (mode, xor_optab, op0, op1, subtarget, 1,
5014                           OPTAB_WIDEN);
5015
5016       if (tem == 0)
5017         tem = expand_binop (mode, sub_optab, op0, op1, subtarget, 1,
5018                             OPTAB_WIDEN);
5019       if (tem != 0)
5020         tem = emit_store_flag (target, code, tem, const0_rtx,
5021                                mode, unsignedp, normalizep);
5022       if (tem == 0)
5023         delete_insns_since (last);
5024       return tem;
5025     }
5026
5027   /* Some other cases we can do are EQ, NE, LE, and GT comparisons with
5028      the constant zero.  Reject all other comparisons at this point.  Only
5029      do LE and GT if branches are expensive since they are expensive on
5030      2-operand machines.  */
5031
5032   if (BRANCH_COST == 0
5033       || GET_MODE_CLASS (mode) != MODE_INT || op1 != const0_rtx
5034       || (code != EQ && code != NE
5035           && (BRANCH_COST <= 1 || (code != LE && code != GT))))
5036     return 0;
5037
5038   /* See what we need to return.  We can only return a 1, -1, or the
5039      sign bit.  */
5040
5041   if (normalizep == 0)
5042     {
5043       if (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
5044         normalizep = STORE_FLAG_VALUE;
5045
5046       else if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5047                && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
5048                    == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1)))
5049         ;
5050       else
5051         return 0;
5052     }
5053
5054   /* Try to put the result of the comparison in the sign bit.  Assume we can't
5055      do the necessary operation below.  */
5056
5057   tem = 0;
5058
5059   /* To see if A <= 0, compute (A | (A - 1)).  A <= 0 iff that result has
5060      the sign bit set.  */
5061
5062   if (code == LE)
5063     {
5064       /* This is destructive, so SUBTARGET can't be OP0.  */
5065       if (rtx_equal_p (subtarget, op0))
5066         subtarget = 0;
5067
5068       tem = expand_binop (mode, sub_optab, op0, const1_rtx, subtarget, 0,
5069                           OPTAB_WIDEN);
5070       if (tem)
5071         tem = expand_binop (mode, ior_optab, op0, tem, subtarget, 0,
5072                             OPTAB_WIDEN);
5073     }
5074
5075   /* To see if A > 0, compute (((signed) A) << BITS) - A, where BITS is the
5076      number of bits in the mode of OP0, minus one.  */
5077
5078   if (code == GT)
5079     {
5080       if (rtx_equal_p (subtarget, op0))
5081         subtarget = 0;
5082
5083       tem = expand_shift (RSHIFT_EXPR, mode, op0,
5084                           size_int (GET_MODE_BITSIZE (mode) - 1),
5085                           subtarget, 0);
5086       tem = expand_binop (mode, sub_optab, tem, op0, subtarget, 0,
5087                           OPTAB_WIDEN);
5088     }
5089
5090   if (code == EQ || code == NE)
5091     {
5092       /* For EQ or NE, one way to do the comparison is to apply an operation
5093          that converts the operand into a positive number if it is nonzero
5094          or zero if it was originally zero.  Then, for EQ, we subtract 1 and
5095          for NE we negate.  This puts the result in the sign bit.  Then we
5096          normalize with a shift, if needed.
5097
5098          Two operations that can do the above actions are ABS and FFS, so try
5099          them.  If that doesn't work, and MODE is smaller than a full word,
5100          we can use zero-extension to the wider mode (an unsigned conversion)
5101          as the operation.  */
5102
5103       /* Note that ABS doesn't yield a positive number for INT_MIN, but
5104          that is compensated by the subsequent overflow when subtracting
5105          one / negating.  */
5106
5107       if (abs_optab->handlers[mode].insn_code != CODE_FOR_nothing)
5108         tem = expand_unop (mode, abs_optab, op0, subtarget, 1);
5109       else if (ffs_optab->handlers[mode].insn_code != CODE_FOR_nothing)
5110         tem = expand_unop (mode, ffs_optab, op0, subtarget, 1);
5111       else if (GET_MODE_SIZE (mode) < UNITS_PER_WORD)
5112         {
5113           tem = convert_modes (word_mode, mode, op0, 1);
5114           mode = word_mode;
5115         }
5116
5117       if (tem != 0)
5118         {
5119           if (code == EQ)
5120             tem = expand_binop (mode, sub_optab, tem, const1_rtx, subtarget,
5121                                 0, OPTAB_WIDEN);
5122           else
5123             tem = expand_unop (mode, neg_optab, tem, subtarget, 0);
5124         }
5125
5126       /* If we couldn't do it that way, for NE we can "or" the two's complement
5127          of the value with itself.  For EQ, we take the one's complement of
5128          that "or", which is an extra insn, so we only handle EQ if branches
5129          are expensive.  */
5130
5131       if (tem == 0 && (code == NE || BRANCH_COST > 1))
5132         {
5133           if (rtx_equal_p (subtarget, op0))
5134             subtarget = 0;
5135
5136           tem = expand_unop (mode, neg_optab, op0, subtarget, 0);
5137           tem = expand_binop (mode, ior_optab, tem, op0, subtarget, 0,
5138                               OPTAB_WIDEN);
5139
5140           if (tem && code == EQ)
5141             tem = expand_unop (mode, one_cmpl_optab, tem, subtarget, 0);
5142         }
5143     }
5144
5145   if (tem && normalizep)
5146     tem = expand_shift (RSHIFT_EXPR, mode, tem,
5147                         size_int (GET_MODE_BITSIZE (mode) - 1),
5148                         subtarget, normalizep == 1);
5149
5150   if (tem)
5151     {
5152       if (GET_MODE (tem) != target_mode)
5153         {
5154           convert_move (target, tem, 0);
5155           tem = target;
5156         }
5157       else if (!subtarget)
5158         {
5159           emit_move_insn (target, tem);
5160           tem = target;
5161         }
5162     }
5163   else
5164     delete_insns_since (last);
5165
5166   return tem;
5167 }
5168
5169 /* Like emit_store_flag, but always succeeds.  */
5170
5171 rtx
5172 emit_store_flag_force (rtx target, enum rtx_code code, rtx op0, rtx op1,
5173                        enum machine_mode mode, int unsignedp, int normalizep)
5174 {
5175   rtx tem, label;
5176
5177   /* First see if emit_store_flag can do the job.  */
5178   tem = emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep);
5179   if (tem != 0)
5180     return tem;
5181
5182   if (normalizep == 0)
5183     normalizep = 1;
5184
5185   /* If this failed, we have to do this with set/compare/jump/set code.  */
5186
5187   if (!REG_P (target)
5188       || reg_mentioned_p (target, op0) || reg_mentioned_p (target, op1))
5189     target = gen_reg_rtx (GET_MODE (target));
5190
5191   emit_move_insn (target, const1_rtx);
5192   label = gen_label_rtx ();
5193   do_compare_rtx_and_jump (op0, op1, code, unsignedp, mode, NULL_RTX,
5194                            NULL_RTX, label);
5195
5196   emit_move_insn (target, const0_rtx);
5197   emit_label (label);
5198
5199   return target;
5200 }
5201 \f
5202 /* Perform possibly multi-word comparison and conditional jump to LABEL
5203    if ARG1 OP ARG2 true where ARG1 and ARG2 are of mode MODE
5204
5205    The algorithm is based on the code in expr.c:do_jump.
5206
5207    Note that this does not perform a general comparison.  Only variants
5208    generated within expmed.c are correctly handled, others abort (but could
5209    be handled if needed).  */
5210
5211 static void
5212 do_cmp_and_jump (rtx arg1, rtx arg2, enum rtx_code op, enum machine_mode mode,
5213                  rtx label)
5214 {
5215   /* If this mode is an integer too wide to compare properly,
5216      compare word by word.  Rely on cse to optimize constant cases.  */
5217
5218   if (GET_MODE_CLASS (mode) == MODE_INT
5219       && ! can_compare_p (op, mode, ccp_jump))
5220     {
5221       rtx label2 = gen_label_rtx ();
5222
5223       switch (op)
5224         {
5225         case LTU:
5226           do_jump_by_parts_greater_rtx (mode, 1, arg2, arg1, label2, label);
5227           break;
5228
5229         case LEU:
5230           do_jump_by_parts_greater_rtx (mode, 1, arg1, arg2, label, label2);
5231           break;
5232
5233         case LT:
5234           do_jump_by_parts_greater_rtx (mode, 0, arg2, arg1, label2, label);
5235           break;
5236
5237         case GT:
5238           do_jump_by_parts_greater_rtx (mode, 0, arg1, arg2, label2, label);
5239           break;
5240
5241         case GE:
5242           do_jump_by_parts_greater_rtx (mode, 0, arg2, arg1, label, label2);
5243           break;
5244
5245           /* do_jump_by_parts_equality_rtx compares with zero.  Luckily
5246              that's the only equality operations we do */
5247         case EQ:
5248           gcc_assert (arg2 == const0_rtx && mode == GET_MODE(arg1));
5249           do_jump_by_parts_equality_rtx (arg1, label2, label);
5250           break;
5251
5252         case NE:
5253           gcc_assert (arg2 == const0_rtx && mode == GET_MODE(arg1));
5254           do_jump_by_parts_equality_rtx (arg1, label, label2);
5255           break;
5256
5257         default:
5258           gcc_unreachable ();
5259         }
5260
5261       emit_label (label2);
5262     }
5263   else
5264     emit_cmp_and_jump_insns (arg1, arg2, op, NULL_RTX, mode, 0, label);
5265 }