1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 2012 Free Software Foundation, Inc.
6 This file is part of GCC.
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 3, or (at your option) any later
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
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
31 #include "hard-reg-set.h"
34 #include "insn-config.h"
35 #include "insn-attr.h"
36 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
42 #include "typeclass.h"
44 #include "langhooks.h"
47 #include "tree-iterator.h"
48 #include "tree-flow.h"
50 #include "common/common-target.h"
53 #include "diagnostic.h"
54 #include "ssaexpand.h"
55 #include "target-globals.h"
58 /* Decide whether a function's arguments should be processed
59 from first to last or from last to first.
61 They should if the stack and args grow in opposite directions, but
62 only if we have push insns. */
66 #ifndef PUSH_ARGS_REVERSED
67 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
68 #define PUSH_ARGS_REVERSED /* If it's last to first. */
74 #ifndef STACK_PUSH_CODE
75 #ifdef STACK_GROWS_DOWNWARD
76 #define STACK_PUSH_CODE PRE_DEC
78 #define STACK_PUSH_CODE PRE_INC
83 /* If this is nonzero, we do not bother generating VOLATILE
84 around volatile memory references, and we are willing to
85 output indirect addresses. If cse is to follow, we reject
86 indirect addresses so a useful potential cse is generated;
87 if it is used only once, instruction combination will produce
88 the same indirect address eventually. */
91 /* This structure is used by move_by_pieces to describe the move to
93 struct move_by_pieces_d
102 int explicit_inc_from
;
103 unsigned HOST_WIDE_INT len
;
104 HOST_WIDE_INT offset
;
108 /* This structure is used by store_by_pieces to describe the clear to
111 struct store_by_pieces_d
117 unsigned HOST_WIDE_INT len
;
118 HOST_WIDE_INT offset
;
119 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
);
124 static void move_by_pieces_1 (rtx (*) (rtx
, ...), enum machine_mode
,
125 struct move_by_pieces_d
*);
126 static bool block_move_libcall_safe_for_call_parm (void);
127 static bool emit_block_move_via_movmem (rtx
, rtx
, rtx
, unsigned, unsigned, HOST_WIDE_INT
);
128 static tree
emit_block_move_libcall_fn (int);
129 static void emit_block_move_via_loop (rtx
, rtx
, rtx
, unsigned);
130 static rtx
clear_by_pieces_1 (void *, HOST_WIDE_INT
, enum machine_mode
);
131 static void clear_by_pieces (rtx
, unsigned HOST_WIDE_INT
, unsigned int);
132 static void store_by_pieces_1 (struct store_by_pieces_d
*, unsigned int);
133 static void store_by_pieces_2 (rtx (*) (rtx
, ...), enum machine_mode
,
134 struct store_by_pieces_d
*);
135 static tree
clear_storage_libcall_fn (int);
136 static rtx
compress_float_constant (rtx
, rtx
);
137 static rtx
get_subtarget (rtx
);
138 static void store_constructor_field (rtx
, unsigned HOST_WIDE_INT
,
139 HOST_WIDE_INT
, enum machine_mode
,
140 tree
, tree
, int, alias_set_type
);
141 static void store_constructor (tree
, rtx
, int, HOST_WIDE_INT
);
142 static rtx
store_field (rtx
, HOST_WIDE_INT
, HOST_WIDE_INT
,
143 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
,
145 tree
, tree
, alias_set_type
, bool);
147 static unsigned HOST_WIDE_INT
highest_pow2_factor_for_target (const_tree
, const_tree
);
149 static int is_aligning_offset (const_tree
, const_tree
);
150 static void expand_operands (tree
, tree
, rtx
, rtx
*, rtx
*,
151 enum expand_modifier
);
152 static rtx
reduce_to_bit_field_precision (rtx
, rtx
, tree
);
153 static rtx
do_store_flag (sepops
, rtx
, enum machine_mode
);
155 static void emit_single_push_insn (enum machine_mode
, rtx
, tree
);
157 static void do_tablejump (rtx
, enum machine_mode
, rtx
, rtx
, rtx
);
158 static rtx
const_vector_from_tree (tree
);
159 static void write_complex_part (rtx
, rtx
, bool);
161 /* This macro is used to determine whether move_by_pieces should be called
162 to perform a structure copy. */
163 #ifndef MOVE_BY_PIECES_P
164 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
165 (move_by_pieces_ninsns (SIZE, ALIGN, MOVE_MAX_PIECES + 1) \
166 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
169 /* This macro is used to determine whether clear_by_pieces should be
170 called to clear storage. */
171 #ifndef CLEAR_BY_PIECES_P
172 #define CLEAR_BY_PIECES_P(SIZE, ALIGN) \
173 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
174 < (unsigned int) CLEAR_RATIO (optimize_insn_for_speed_p ()))
177 /* This macro is used to determine whether store_by_pieces should be
178 called to "memset" storage with byte values other than zero. */
179 #ifndef SET_BY_PIECES_P
180 #define SET_BY_PIECES_P(SIZE, ALIGN) \
181 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
182 < (unsigned int) SET_RATIO (optimize_insn_for_speed_p ()))
185 /* This macro is used to determine whether store_by_pieces should be
186 called to "memcpy" storage when the source is a constant string. */
187 #ifndef STORE_BY_PIECES_P
188 #define STORE_BY_PIECES_P(SIZE, ALIGN) \
189 (move_by_pieces_ninsns (SIZE, ALIGN, STORE_MAX_PIECES + 1) \
190 < (unsigned int) MOVE_RATIO (optimize_insn_for_speed_p ()))
193 /* SLOW_UNALIGNED_ACCESS is nonzero if unaligned accesses are very slow. */
195 #ifndef SLOW_UNALIGNED_ACCESS
196 #define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
199 /* This is run to set up which modes can be used
200 directly in memory and to initialize the block move optab. It is run
201 at the beginning of compilation and when the target is reinitialized. */
204 init_expr_target (void)
207 enum machine_mode mode
;
212 /* Try indexing by frame ptr and try by stack ptr.
213 It is known that on the Convex the stack ptr isn't a valid index.
214 With luck, one or the other is valid on any machine. */
215 mem
= gen_rtx_MEM (VOIDmode
, stack_pointer_rtx
);
216 mem1
= gen_rtx_MEM (VOIDmode
, frame_pointer_rtx
);
218 /* A scratch register we can modify in-place below to avoid
219 useless RTL allocations. */
220 reg
= gen_rtx_REG (VOIDmode
, -1);
222 insn
= rtx_alloc (INSN
);
223 pat
= gen_rtx_SET (VOIDmode
, NULL_RTX
, NULL_RTX
);
224 PATTERN (insn
) = pat
;
226 for (mode
= VOIDmode
; (int) mode
< NUM_MACHINE_MODES
;
227 mode
= (enum machine_mode
) ((int) mode
+ 1))
231 direct_load
[(int) mode
] = direct_store
[(int) mode
] = 0;
232 PUT_MODE (mem
, mode
);
233 PUT_MODE (mem1
, mode
);
234 PUT_MODE (reg
, mode
);
236 /* See if there is some register that can be used in this mode and
237 directly loaded or stored from memory. */
239 if (mode
!= VOIDmode
&& mode
!= BLKmode
)
240 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
241 && (direct_load
[(int) mode
] == 0 || direct_store
[(int) mode
] == 0);
244 if (! HARD_REGNO_MODE_OK (regno
, mode
))
247 SET_REGNO (reg
, regno
);
250 SET_DEST (pat
) = reg
;
251 if (recog (pat
, insn
, &num_clobbers
) >= 0)
252 direct_load
[(int) mode
] = 1;
254 SET_SRC (pat
) = mem1
;
255 SET_DEST (pat
) = reg
;
256 if (recog (pat
, insn
, &num_clobbers
) >= 0)
257 direct_load
[(int) mode
] = 1;
260 SET_DEST (pat
) = mem
;
261 if (recog (pat
, insn
, &num_clobbers
) >= 0)
262 direct_store
[(int) mode
] = 1;
265 SET_DEST (pat
) = mem1
;
266 if (recog (pat
, insn
, &num_clobbers
) >= 0)
267 direct_store
[(int) mode
] = 1;
271 mem
= gen_rtx_MEM (VOIDmode
, gen_rtx_raw_REG (Pmode
, 10000));
273 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
274 mode
= GET_MODE_WIDER_MODE (mode
))
276 enum machine_mode srcmode
;
277 for (srcmode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); srcmode
!= mode
;
278 srcmode
= GET_MODE_WIDER_MODE (srcmode
))
282 ic
= can_extend_p (mode
, srcmode
, 0);
283 if (ic
== CODE_FOR_nothing
)
286 PUT_MODE (mem
, srcmode
);
288 if (insn_operand_matches (ic
, 1, mem
))
289 float_extend_from_mem
[mode
][srcmode
] = true;
294 /* This is run at the start of compiling a function. */
299 memset (&crtl
->expr
, 0, sizeof (crtl
->expr
));
302 /* Copy data from FROM to TO, where the machine modes are not the same.
303 Both modes may be integer, or both may be floating, or both may be
305 UNSIGNEDP should be nonzero if FROM is an unsigned type.
306 This causes zero-extension instead of sign-extension. */
309 convert_move (rtx to
, rtx from
, int unsignedp
)
311 enum machine_mode to_mode
= GET_MODE (to
);
312 enum machine_mode from_mode
= GET_MODE (from
);
313 int to_real
= SCALAR_FLOAT_MODE_P (to_mode
);
314 int from_real
= SCALAR_FLOAT_MODE_P (from_mode
);
318 /* rtx code for making an equivalent value. */
319 enum rtx_code equiv_code
= (unsignedp
< 0 ? UNKNOWN
320 : (unsignedp
? ZERO_EXTEND
: SIGN_EXTEND
));
323 gcc_assert (to_real
== from_real
);
324 gcc_assert (to_mode
!= BLKmode
);
325 gcc_assert (from_mode
!= BLKmode
);
327 /* If the source and destination are already the same, then there's
332 /* If FROM is a SUBREG that indicates that we have already done at least
333 the required extension, strip it. We don't handle such SUBREGs as
336 if (GET_CODE (from
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (from
)
337 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (from
)))
338 >= GET_MODE_PRECISION (to_mode
))
339 && SUBREG_PROMOTED_UNSIGNED_P (from
) == unsignedp
)
340 from
= gen_lowpart (to_mode
, from
), from_mode
= to_mode
;
342 gcc_assert (GET_CODE (to
) != SUBREG
|| !SUBREG_PROMOTED_VAR_P (to
));
344 if (to_mode
== from_mode
345 || (from_mode
== VOIDmode
&& CONSTANT_P (from
)))
347 emit_move_insn (to
, from
);
351 if (VECTOR_MODE_P (to_mode
) || VECTOR_MODE_P (from_mode
))
353 gcc_assert (GET_MODE_BITSIZE (from_mode
) == GET_MODE_BITSIZE (to_mode
));
355 if (VECTOR_MODE_P (to_mode
))
356 from
= simplify_gen_subreg (to_mode
, from
, GET_MODE (from
), 0);
358 to
= simplify_gen_subreg (from_mode
, to
, GET_MODE (to
), 0);
360 emit_move_insn (to
, from
);
364 if (GET_CODE (to
) == CONCAT
&& GET_CODE (from
) == CONCAT
)
366 convert_move (XEXP (to
, 0), XEXP (from
, 0), unsignedp
);
367 convert_move (XEXP (to
, 1), XEXP (from
, 1), unsignedp
);
376 gcc_assert ((GET_MODE_PRECISION (from_mode
)
377 != GET_MODE_PRECISION (to_mode
))
378 || (DECIMAL_FLOAT_MODE_P (from_mode
)
379 != DECIMAL_FLOAT_MODE_P (to_mode
)));
381 if (GET_MODE_PRECISION (from_mode
) == GET_MODE_PRECISION (to_mode
))
382 /* Conversion between decimal float and binary float, same size. */
383 tab
= DECIMAL_FLOAT_MODE_P (from_mode
) ? trunc_optab
: sext_optab
;
384 else if (GET_MODE_PRECISION (from_mode
) < GET_MODE_PRECISION (to_mode
))
389 /* Try converting directly if the insn is supported. */
391 code
= convert_optab_handler (tab
, to_mode
, from_mode
);
392 if (code
!= CODE_FOR_nothing
)
394 emit_unop_insn (code
, to
, from
,
395 tab
== sext_optab
? FLOAT_EXTEND
: FLOAT_TRUNCATE
);
399 /* Otherwise use a libcall. */
400 libcall
= convert_optab_libfunc (tab
, to_mode
, from_mode
);
402 /* Is this conversion implemented yet? */
403 gcc_assert (libcall
);
406 value
= emit_library_call_value (libcall
, NULL_RTX
, LCT_CONST
, to_mode
,
408 insns
= get_insns ();
410 emit_libcall_block (insns
, to
, value
,
411 tab
== trunc_optab
? gen_rtx_FLOAT_TRUNCATE (to_mode
,
413 : gen_rtx_FLOAT_EXTEND (to_mode
, from
));
417 /* Handle pointer conversion. */ /* SPEE 900220. */
418 /* Targets are expected to provide conversion insns between PxImode and
419 xImode for all MODE_PARTIAL_INT modes they use, but no others. */
420 if (GET_MODE_CLASS (to_mode
) == MODE_PARTIAL_INT
)
422 enum machine_mode full_mode
423 = smallest_mode_for_size (GET_MODE_BITSIZE (to_mode
), MODE_INT
);
425 gcc_assert (convert_optab_handler (trunc_optab
, to_mode
, full_mode
)
426 != CODE_FOR_nothing
);
428 if (full_mode
!= from_mode
)
429 from
= convert_to_mode (full_mode
, from
, unsignedp
);
430 emit_unop_insn (convert_optab_handler (trunc_optab
, to_mode
, full_mode
),
434 if (GET_MODE_CLASS (from_mode
) == MODE_PARTIAL_INT
)
437 enum machine_mode full_mode
438 = smallest_mode_for_size (GET_MODE_BITSIZE (from_mode
), MODE_INT
);
439 convert_optab ctab
= unsignedp
? zext_optab
: sext_optab
;
440 enum insn_code icode
;
442 icode
= convert_optab_handler (ctab
, full_mode
, from_mode
);
443 gcc_assert (icode
!= CODE_FOR_nothing
);
445 if (to_mode
== full_mode
)
447 emit_unop_insn (icode
, to
, from
, UNKNOWN
);
451 new_from
= gen_reg_rtx (full_mode
);
452 emit_unop_insn (icode
, new_from
, from
, UNKNOWN
);
454 /* else proceed to integer conversions below. */
455 from_mode
= full_mode
;
459 /* Make sure both are fixed-point modes or both are not. */
460 gcc_assert (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode
) ==
461 ALL_SCALAR_FIXED_POINT_MODE_P (to_mode
));
462 if (ALL_SCALAR_FIXED_POINT_MODE_P (from_mode
))
464 /* If we widen from_mode to to_mode and they are in the same class,
465 we won't saturate the result.
466 Otherwise, always saturate the result to play safe. */
467 if (GET_MODE_CLASS (from_mode
) == GET_MODE_CLASS (to_mode
)
468 && GET_MODE_SIZE (from_mode
) < GET_MODE_SIZE (to_mode
))
469 expand_fixed_convert (to
, from
, 0, 0);
471 expand_fixed_convert (to
, from
, 0, 1);
475 /* Now both modes are integers. */
477 /* Handle expanding beyond a word. */
478 if (GET_MODE_PRECISION (from_mode
) < GET_MODE_PRECISION (to_mode
)
479 && GET_MODE_PRECISION (to_mode
) > BITS_PER_WORD
)
486 enum machine_mode lowpart_mode
;
487 int nwords
= CEIL (GET_MODE_SIZE (to_mode
), UNITS_PER_WORD
);
489 /* Try converting directly if the insn is supported. */
490 if ((code
= can_extend_p (to_mode
, from_mode
, unsignedp
))
493 /* If FROM is a SUBREG, put it into a register. Do this
494 so that we always generate the same set of insns for
495 better cse'ing; if an intermediate assignment occurred,
496 we won't be doing the operation directly on the SUBREG. */
497 if (optimize
> 0 && GET_CODE (from
) == SUBREG
)
498 from
= force_reg (from_mode
, from
);
499 emit_unop_insn (code
, to
, from
, equiv_code
);
502 /* Next, try converting via full word. */
503 else if (GET_MODE_PRECISION (from_mode
) < BITS_PER_WORD
504 && ((code
= can_extend_p (to_mode
, word_mode
, unsignedp
))
505 != CODE_FOR_nothing
))
507 rtx word_to
= gen_reg_rtx (word_mode
);
510 if (reg_overlap_mentioned_p (to
, from
))
511 from
= force_reg (from_mode
, from
);
514 convert_move (word_to
, from
, unsignedp
);
515 emit_unop_insn (code
, to
, word_to
, equiv_code
);
519 /* No special multiword conversion insn; do it by hand. */
522 /* Since we will turn this into a no conflict block, we must ensure the
523 the source does not overlap the target so force it into an isolated
524 register when maybe so. Likewise for any MEM input, since the
525 conversion sequence might require several references to it and we
526 must ensure we're getting the same value every time. */
528 if (MEM_P (from
) || reg_overlap_mentioned_p (to
, from
))
529 from
= force_reg (from_mode
, from
);
531 /* Get a copy of FROM widened to a word, if necessary. */
532 if (GET_MODE_PRECISION (from_mode
) < BITS_PER_WORD
)
533 lowpart_mode
= word_mode
;
535 lowpart_mode
= from_mode
;
537 lowfrom
= convert_to_mode (lowpart_mode
, from
, unsignedp
);
539 lowpart
= gen_lowpart (lowpart_mode
, to
);
540 emit_move_insn (lowpart
, lowfrom
);
542 /* Compute the value to put in each remaining word. */
544 fill_value
= const0_rtx
;
546 fill_value
= emit_store_flag (gen_reg_rtx (word_mode
),
547 LT
, lowfrom
, const0_rtx
,
550 /* Fill the remaining words. */
551 for (i
= GET_MODE_SIZE (lowpart_mode
) / UNITS_PER_WORD
; i
< nwords
; i
++)
553 int index
= (WORDS_BIG_ENDIAN
? nwords
- i
- 1 : i
);
554 rtx subword
= operand_subword (to
, index
, 1, to_mode
);
556 gcc_assert (subword
);
558 if (fill_value
!= subword
)
559 emit_move_insn (subword
, fill_value
);
562 insns
= get_insns ();
569 /* Truncating multi-word to a word or less. */
570 if (GET_MODE_PRECISION (from_mode
) > BITS_PER_WORD
571 && GET_MODE_PRECISION (to_mode
) <= BITS_PER_WORD
)
574 && ! MEM_VOLATILE_P (from
)
575 && direct_load
[(int) to_mode
]
576 && ! mode_dependent_address_p (XEXP (from
, 0)))
578 || GET_CODE (from
) == SUBREG
))
579 from
= force_reg (from_mode
, from
);
580 convert_move (to
, gen_lowpart (word_mode
, from
), 0);
584 /* Now follow all the conversions between integers
585 no more than a word long. */
587 /* For truncation, usually we can just refer to FROM in a narrower mode. */
588 if (GET_MODE_BITSIZE (to_mode
) < GET_MODE_BITSIZE (from_mode
)
589 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode
, from_mode
))
592 && ! MEM_VOLATILE_P (from
)
593 && direct_load
[(int) to_mode
]
594 && ! mode_dependent_address_p (XEXP (from
, 0)))
596 || GET_CODE (from
) == SUBREG
))
597 from
= force_reg (from_mode
, from
);
598 if (REG_P (from
) && REGNO (from
) < FIRST_PSEUDO_REGISTER
599 && ! HARD_REGNO_MODE_OK (REGNO (from
), to_mode
))
600 from
= copy_to_reg (from
);
601 emit_move_insn (to
, gen_lowpart (to_mode
, from
));
605 /* Handle extension. */
606 if (GET_MODE_PRECISION (to_mode
) > GET_MODE_PRECISION (from_mode
))
608 /* Convert directly if that works. */
609 if ((code
= can_extend_p (to_mode
, from_mode
, unsignedp
))
612 emit_unop_insn (code
, to
, from
, equiv_code
);
617 enum machine_mode intermediate
;
621 /* Search for a mode to convert via. */
622 for (intermediate
= from_mode
; intermediate
!= VOIDmode
;
623 intermediate
= GET_MODE_WIDER_MODE (intermediate
))
624 if (((can_extend_p (to_mode
, intermediate
, unsignedp
)
626 || (GET_MODE_SIZE (to_mode
) < GET_MODE_SIZE (intermediate
)
627 && TRULY_NOOP_TRUNCATION_MODES_P (to_mode
, intermediate
)))
628 && (can_extend_p (intermediate
, from_mode
, unsignedp
)
629 != CODE_FOR_nothing
))
631 convert_move (to
, convert_to_mode (intermediate
, from
,
632 unsignedp
), unsignedp
);
636 /* No suitable intermediate mode.
637 Generate what we need with shifts. */
638 shift_amount
= (GET_MODE_PRECISION (to_mode
)
639 - GET_MODE_PRECISION (from_mode
));
640 from
= gen_lowpart (to_mode
, force_reg (from_mode
, from
));
641 tmp
= expand_shift (LSHIFT_EXPR
, to_mode
, from
, shift_amount
,
643 tmp
= expand_shift (RSHIFT_EXPR
, to_mode
, tmp
, shift_amount
,
646 emit_move_insn (to
, tmp
);
651 /* Support special truncate insns for certain modes. */
652 if (convert_optab_handler (trunc_optab
, to_mode
,
653 from_mode
) != CODE_FOR_nothing
)
655 emit_unop_insn (convert_optab_handler (trunc_optab
, to_mode
, from_mode
),
660 /* Handle truncation of volatile memrefs, and so on;
661 the things that couldn't be truncated directly,
662 and for which there was no special instruction.
664 ??? Code above formerly short-circuited this, for most integer
665 mode pairs, with a force_reg in from_mode followed by a recursive
666 call to this routine. Appears always to have been wrong. */
667 if (GET_MODE_PRECISION (to_mode
) < GET_MODE_PRECISION (from_mode
))
669 rtx temp
= force_reg (to_mode
, gen_lowpart (to_mode
, from
));
670 emit_move_insn (to
, temp
);
674 /* Mode combination is not recognized. */
678 /* Return an rtx for a value that would result
679 from converting X to mode MODE.
680 Both X and MODE may be floating, or both integer.
681 UNSIGNEDP is nonzero if X is an unsigned value.
682 This can be done by referring to a part of X in place
683 or by copying to a new temporary with conversion. */
686 convert_to_mode (enum machine_mode mode
, rtx x
, int unsignedp
)
688 return convert_modes (mode
, VOIDmode
, x
, unsignedp
);
691 /* Return an rtx for a value that would result
692 from converting X from mode OLDMODE to mode MODE.
693 Both modes may be floating, or both integer.
694 UNSIGNEDP is nonzero if X is an unsigned value.
696 This can be done by referring to a part of X in place
697 or by copying to a new temporary with conversion.
699 You can give VOIDmode for OLDMODE, if you are sure X has a nonvoid mode. */
702 convert_modes (enum machine_mode mode
, enum machine_mode oldmode
, rtx x
, int unsignedp
)
706 /* If FROM is a SUBREG that indicates that we have already done at least
707 the required extension, strip it. */
709 if (GET_CODE (x
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (x
)
710 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
))) >= GET_MODE_SIZE (mode
)
711 && SUBREG_PROMOTED_UNSIGNED_P (x
) == unsignedp
)
712 x
= gen_lowpart (mode
, x
);
714 if (GET_MODE (x
) != VOIDmode
)
715 oldmode
= GET_MODE (x
);
720 /* There is one case that we must handle specially: If we are converting
721 a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
722 we are to interpret the constant as unsigned, gen_lowpart will do
723 the wrong if the constant appears negative. What we want to do is
724 make the high-order word of the constant zero, not all ones. */
726 if (unsignedp
&& GET_MODE_CLASS (mode
) == MODE_INT
727 && GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_DOUBLE_INT
728 && CONST_INT_P (x
) && INTVAL (x
) < 0)
730 double_int val
= uhwi_to_double_int (INTVAL (x
));
732 /* We need to zero extend VAL. */
733 if (oldmode
!= VOIDmode
)
734 val
= double_int_zext (val
, GET_MODE_BITSIZE (oldmode
));
736 return immed_double_int_const (val
, mode
);
739 /* We can do this with a gen_lowpart if both desired and current modes
740 are integer, and this is either a constant integer, a register, or a
741 non-volatile MEM. Except for the constant case where MODE is no
742 wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand. */
745 && GET_MODE_PRECISION (mode
) <= HOST_BITS_PER_WIDE_INT
)
746 || (GET_MODE_CLASS (mode
) == MODE_INT
747 && GET_MODE_CLASS (oldmode
) == MODE_INT
748 && (CONST_DOUBLE_AS_INT_P (x
)
749 || (GET_MODE_PRECISION (mode
) <= GET_MODE_PRECISION (oldmode
)
750 && ((MEM_P (x
) && ! MEM_VOLATILE_P (x
)
751 && direct_load
[(int) mode
])
753 && (! HARD_REGISTER_P (x
)
754 || HARD_REGNO_MODE_OK (REGNO (x
), mode
))
755 && TRULY_NOOP_TRUNCATION_MODES_P (mode
,
758 /* ?? If we don't know OLDMODE, we have to assume here that
759 X does not need sign- or zero-extension. This may not be
760 the case, but it's the best we can do. */
761 if (CONST_INT_P (x
) && oldmode
!= VOIDmode
762 && GET_MODE_PRECISION (mode
) > GET_MODE_PRECISION (oldmode
))
764 HOST_WIDE_INT val
= INTVAL (x
);
766 /* We must sign or zero-extend in this case. Start by
767 zero-extending, then sign extend if we need to. */
768 val
&= GET_MODE_MASK (oldmode
);
770 && val_signbit_known_set_p (oldmode
, val
))
771 val
|= ~GET_MODE_MASK (oldmode
);
773 return gen_int_mode (val
, mode
);
776 return gen_lowpart (mode
, x
);
779 /* Converting from integer constant into mode is always equivalent to an
781 if (VECTOR_MODE_P (mode
) && GET_MODE (x
) == VOIDmode
)
783 gcc_assert (GET_MODE_BITSIZE (mode
) == GET_MODE_BITSIZE (oldmode
));
784 return simplify_gen_subreg (mode
, x
, oldmode
, 0);
787 temp
= gen_reg_rtx (mode
);
788 convert_move (temp
, x
, unsignedp
);
792 /* Return the largest alignment we can use for doing a move (or store)
793 of MAX_PIECES. ALIGN is the largest alignment we could use. */
796 alignment_for_piecewise_move (unsigned int max_pieces
, unsigned int align
)
798 enum machine_mode tmode
;
800 tmode
= mode_for_size (max_pieces
* BITS_PER_UNIT
, MODE_INT
, 1);
801 if (align
>= GET_MODE_ALIGNMENT (tmode
))
802 align
= GET_MODE_ALIGNMENT (tmode
);
805 enum machine_mode tmode
, xmode
;
807 for (tmode
= GET_CLASS_NARROWEST_MODE (MODE_INT
), xmode
= tmode
;
809 xmode
= tmode
, tmode
= GET_MODE_WIDER_MODE (tmode
))
810 if (GET_MODE_SIZE (tmode
) > max_pieces
811 || SLOW_UNALIGNED_ACCESS (tmode
, align
))
814 align
= MAX (align
, GET_MODE_ALIGNMENT (xmode
));
820 /* Return the widest integer mode no wider than SIZE. If no such mode
821 can be found, return VOIDmode. */
823 static enum machine_mode
824 widest_int_mode_for_size (unsigned int size
)
826 enum machine_mode tmode
, mode
= VOIDmode
;
828 for (tmode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
829 tmode
!= VOIDmode
; tmode
= GET_MODE_WIDER_MODE (tmode
))
830 if (GET_MODE_SIZE (tmode
) < size
)
836 /* STORE_MAX_PIECES is the number of bytes at a time that we can
837 store efficiently. Due to internal GCC limitations, this is
838 MOVE_MAX_PIECES limited by the number of bytes GCC can represent
839 for an immediate constant. */
841 #define STORE_MAX_PIECES MIN (MOVE_MAX_PIECES, 2 * sizeof (HOST_WIDE_INT))
843 /* Determine whether the LEN bytes can be moved by using several move
844 instructions. Return nonzero if a call to move_by_pieces should
848 can_move_by_pieces (unsigned HOST_WIDE_INT len
,
849 unsigned int align ATTRIBUTE_UNUSED
)
851 return MOVE_BY_PIECES_P (len
, align
);
854 /* Generate several move instructions to copy LEN bytes from block FROM to
855 block TO. (These are MEM rtx's with BLKmode).
857 If PUSH_ROUNDING is defined and TO is NULL, emit_single_push_insn is
858 used to push FROM to the stack.
860 ALIGN is maximum stack alignment we can assume.
862 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
863 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
867 move_by_pieces (rtx to
, rtx from
, unsigned HOST_WIDE_INT len
,
868 unsigned int align
, int endp
)
870 struct move_by_pieces_d data
;
871 enum machine_mode to_addr_mode
;
872 enum machine_mode from_addr_mode
= get_address_mode (from
);
873 rtx to_addr
, from_addr
= XEXP (from
, 0);
874 unsigned int max_size
= MOVE_MAX_PIECES
+ 1;
875 enum insn_code icode
;
877 align
= MIN (to
? MEM_ALIGN (to
) : align
, MEM_ALIGN (from
));
880 data
.from_addr
= from_addr
;
883 to_addr_mode
= get_address_mode (to
);
884 to_addr
= XEXP (to
, 0);
887 = (GET_CODE (to_addr
) == PRE_INC
|| GET_CODE (to_addr
) == PRE_DEC
888 || GET_CODE (to_addr
) == POST_INC
|| GET_CODE (to_addr
) == POST_DEC
);
890 = (GET_CODE (to_addr
) == PRE_DEC
|| GET_CODE (to_addr
) == POST_DEC
);
894 to_addr_mode
= VOIDmode
;
898 #ifdef STACK_GROWS_DOWNWARD
904 data
.to_addr
= to_addr
;
907 = (GET_CODE (from_addr
) == PRE_INC
|| GET_CODE (from_addr
) == PRE_DEC
908 || GET_CODE (from_addr
) == POST_INC
909 || GET_CODE (from_addr
) == POST_DEC
);
911 data
.explicit_inc_from
= 0;
912 data
.explicit_inc_to
= 0;
913 if (data
.reverse
) data
.offset
= len
;
916 /* If copying requires more than two move insns,
917 copy addresses to registers (to make displacements shorter)
918 and use post-increment if available. */
919 if (!(data
.autinc_from
&& data
.autinc_to
)
920 && move_by_pieces_ninsns (len
, align
, max_size
) > 2)
922 /* Find the mode of the largest move...
923 MODE might not be used depending on the definitions of the
924 USE_* macros below. */
925 enum machine_mode mode ATTRIBUTE_UNUSED
926 = widest_int_mode_for_size (max_size
);
928 if (USE_LOAD_PRE_DECREMENT (mode
) && data
.reverse
&& ! data
.autinc_from
)
930 data
.from_addr
= copy_to_mode_reg (from_addr_mode
,
931 plus_constant (from_addr_mode
,
933 data
.autinc_from
= 1;
934 data
.explicit_inc_from
= -1;
936 if (USE_LOAD_POST_INCREMENT (mode
) && ! data
.autinc_from
)
938 data
.from_addr
= copy_to_mode_reg (from_addr_mode
, from_addr
);
939 data
.autinc_from
= 1;
940 data
.explicit_inc_from
= 1;
942 if (!data
.autinc_from
&& CONSTANT_P (from_addr
))
943 data
.from_addr
= copy_to_mode_reg (from_addr_mode
, from_addr
);
944 if (USE_STORE_PRE_DECREMENT (mode
) && data
.reverse
&& ! data
.autinc_to
)
946 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
947 plus_constant (to_addr_mode
,
950 data
.explicit_inc_to
= -1;
952 if (USE_STORE_POST_INCREMENT (mode
) && ! data
.reverse
&& ! data
.autinc_to
)
954 data
.to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
956 data
.explicit_inc_to
= 1;
958 if (!data
.autinc_to
&& CONSTANT_P (to_addr
))
959 data
.to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
962 align
= alignment_for_piecewise_move (MOVE_MAX_PIECES
, align
);
964 /* First move what we can in the largest integer mode, then go to
965 successively smaller modes. */
969 enum machine_mode mode
= widest_int_mode_for_size (max_size
);
971 if (mode
== VOIDmode
)
974 icode
= optab_handler (mov_optab
, mode
);
975 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
976 move_by_pieces_1 (GEN_FCN (icode
), mode
, &data
);
978 max_size
= GET_MODE_SIZE (mode
);
981 /* The code above should have handled everything. */
982 gcc_assert (!data
.len
);
988 gcc_assert (!data
.reverse
);
993 if (HAVE_POST_INCREMENT
&& data
.explicit_inc_to
> 0)
994 emit_insn (gen_add2_insn (data
.to_addr
, constm1_rtx
));
996 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
997 plus_constant (to_addr_mode
,
1001 to1
= adjust_automodify_address (data
.to
, QImode
, data
.to_addr
,
1008 to1
= adjust_address (data
.to
, QImode
, data
.offset
);
1016 /* Return number of insns required to move L bytes by pieces.
1017 ALIGN (in bits) is maximum alignment we can assume. */
1019 unsigned HOST_WIDE_INT
1020 move_by_pieces_ninsns (unsigned HOST_WIDE_INT l
, unsigned int align
,
1021 unsigned int max_size
)
1023 unsigned HOST_WIDE_INT n_insns
= 0;
1025 align
= alignment_for_piecewise_move (MOVE_MAX_PIECES
, align
);
1027 while (max_size
> 1)
1029 enum machine_mode mode
;
1030 enum insn_code icode
;
1032 mode
= widest_int_mode_for_size (max_size
);
1034 if (mode
== VOIDmode
)
1037 icode
= optab_handler (mov_optab
, mode
);
1038 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
1039 n_insns
+= l
/ GET_MODE_SIZE (mode
), l
%= GET_MODE_SIZE (mode
);
1041 max_size
= GET_MODE_SIZE (mode
);
1048 /* Subroutine of move_by_pieces. Move as many bytes as appropriate
1049 with move instructions for mode MODE. GENFUN is the gen_... function
1050 to make a move insn for that mode. DATA has all the other info. */
1053 move_by_pieces_1 (rtx (*genfun
) (rtx
, ...), enum machine_mode mode
,
1054 struct move_by_pieces_d
*data
)
1056 unsigned int size
= GET_MODE_SIZE (mode
);
1057 rtx to1
= NULL_RTX
, from1
;
1059 while (data
->len
>= size
)
1062 data
->offset
-= size
;
1066 if (data
->autinc_to
)
1067 to1
= adjust_automodify_address (data
->to
, mode
, data
->to_addr
,
1070 to1
= adjust_address (data
->to
, mode
, data
->offset
);
1073 if (data
->autinc_from
)
1074 from1
= adjust_automodify_address (data
->from
, mode
, data
->from_addr
,
1077 from1
= adjust_address (data
->from
, mode
, data
->offset
);
1079 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_to
< 0)
1080 emit_insn (gen_add2_insn (data
->to_addr
,
1081 GEN_INT (-(HOST_WIDE_INT
)size
)));
1082 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_from
< 0)
1083 emit_insn (gen_add2_insn (data
->from_addr
,
1084 GEN_INT (-(HOST_WIDE_INT
)size
)));
1087 emit_insn ((*genfun
) (to1
, from1
));
1090 #ifdef PUSH_ROUNDING
1091 emit_single_push_insn (mode
, from1
, NULL
);
1097 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_to
> 0)
1098 emit_insn (gen_add2_insn (data
->to_addr
, GEN_INT (size
)));
1099 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_from
> 0)
1100 emit_insn (gen_add2_insn (data
->from_addr
, GEN_INT (size
)));
1102 if (! data
->reverse
)
1103 data
->offset
+= size
;
1109 /* Emit code to move a block Y to a block X. This may be done with
1110 string-move instructions, with multiple scalar move instructions,
1111 or with a library call.
1113 Both X and Y must be MEM rtx's (perhaps inside VOLATILE) with mode BLKmode.
1114 SIZE is an rtx that says how long they are.
1115 ALIGN is the maximum alignment we can assume they have.
1116 METHOD describes what kind of copy this is, and what mechanisms may be used.
1118 Return the address of the new block, if memcpy is called and returns it,
1122 emit_block_move_hints (rtx x
, rtx y
, rtx size
, enum block_op_methods method
,
1123 unsigned int expected_align
, HOST_WIDE_INT expected_size
)
1130 if (CONST_INT_P (size
)
1131 && INTVAL (size
) == 0)
1136 case BLOCK_OP_NORMAL
:
1137 case BLOCK_OP_TAILCALL
:
1138 may_use_call
= true;
1141 case BLOCK_OP_CALL_PARM
:
1142 may_use_call
= block_move_libcall_safe_for_call_parm ();
1144 /* Make inhibit_defer_pop nonzero around the library call
1145 to force it to pop the arguments right away. */
1149 case BLOCK_OP_NO_LIBCALL
:
1150 may_use_call
= false;
1157 gcc_assert (MEM_P (x
) && MEM_P (y
));
1158 align
= MIN (MEM_ALIGN (x
), MEM_ALIGN (y
));
1159 gcc_assert (align
>= BITS_PER_UNIT
);
1161 /* Make sure we've got BLKmode addresses; store_one_arg can decide that
1162 block copy is more efficient for other large modes, e.g. DCmode. */
1163 x
= adjust_address (x
, BLKmode
, 0);
1164 y
= adjust_address (y
, BLKmode
, 0);
1166 /* Set MEM_SIZE as appropriate for this block copy. The main place this
1167 can be incorrect is coming from __builtin_memcpy. */
1168 if (CONST_INT_P (size
))
1170 x
= shallow_copy_rtx (x
);
1171 y
= shallow_copy_rtx (y
);
1172 set_mem_size (x
, INTVAL (size
));
1173 set_mem_size (y
, INTVAL (size
));
1176 if (CONST_INT_P (size
) && MOVE_BY_PIECES_P (INTVAL (size
), align
))
1177 move_by_pieces (x
, y
, INTVAL (size
), align
, 0);
1178 else if (emit_block_move_via_movmem (x
, y
, size
, align
,
1179 expected_align
, expected_size
))
1181 else if (may_use_call
1182 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (x
))
1183 && ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (y
)))
1185 /* Since x and y are passed to a libcall, mark the corresponding
1186 tree EXPR as addressable. */
1187 tree y_expr
= MEM_EXPR (y
);
1188 tree x_expr
= MEM_EXPR (x
);
1190 mark_addressable (y_expr
);
1192 mark_addressable (x_expr
);
1193 retval
= emit_block_move_via_libcall (x
, y
, size
,
1194 method
== BLOCK_OP_TAILCALL
);
1198 emit_block_move_via_loop (x
, y
, size
, align
);
1200 if (method
== BLOCK_OP_CALL_PARM
)
1207 emit_block_move (rtx x
, rtx y
, rtx size
, enum block_op_methods method
)
1209 return emit_block_move_hints (x
, y
, size
, method
, 0, -1);
1212 /* A subroutine of emit_block_move. Returns true if calling the
1213 block move libcall will not clobber any parameters which may have
1214 already been placed on the stack. */
1217 block_move_libcall_safe_for_call_parm (void)
1219 #if defined (REG_PARM_STACK_SPACE)
1223 /* If arguments are pushed on the stack, then they're safe. */
1227 /* If registers go on the stack anyway, any argument is sure to clobber
1228 an outgoing argument. */
1229 #if defined (REG_PARM_STACK_SPACE)
1230 fn
= emit_block_move_libcall_fn (false);
1231 /* Avoid set but not used warning if *REG_PARM_STACK_SPACE doesn't
1232 depend on its argument. */
1234 if (OUTGOING_REG_PARM_STACK_SPACE ((!fn
? NULL_TREE
: TREE_TYPE (fn
)))
1235 && REG_PARM_STACK_SPACE (fn
) != 0)
1239 /* If any argument goes in memory, then it might clobber an outgoing
1242 CUMULATIVE_ARGS args_so_far_v
;
1243 cumulative_args_t args_so_far
;
1246 fn
= emit_block_move_libcall_fn (false);
1247 INIT_CUMULATIVE_ARGS (args_so_far_v
, TREE_TYPE (fn
), NULL_RTX
, 0, 3);
1248 args_so_far
= pack_cumulative_args (&args_so_far_v
);
1250 arg
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1251 for ( ; arg
!= void_list_node
; arg
= TREE_CHAIN (arg
))
1253 enum machine_mode mode
= TYPE_MODE (TREE_VALUE (arg
));
1254 rtx tmp
= targetm
.calls
.function_arg (args_so_far
, mode
,
1256 if (!tmp
|| !REG_P (tmp
))
1258 if (targetm
.calls
.arg_partial_bytes (args_so_far
, mode
, NULL
, 1))
1260 targetm
.calls
.function_arg_advance (args_so_far
, mode
,
1267 /* A subroutine of emit_block_move. Expand a movmem pattern;
1268 return true if successful. */
1271 emit_block_move_via_movmem (rtx x
, rtx y
, rtx size
, unsigned int align
,
1272 unsigned int expected_align
, HOST_WIDE_INT expected_size
)
1274 int save_volatile_ok
= volatile_ok
;
1275 enum machine_mode mode
;
1277 if (expected_align
< align
)
1278 expected_align
= align
;
1280 /* Since this is a move insn, we don't care about volatility. */
1283 /* Try the most limited insn first, because there's no point
1284 including more than one in the machine description unless
1285 the more limited one has some advantage. */
1287 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
1288 mode
= GET_MODE_WIDER_MODE (mode
))
1290 enum insn_code code
= direct_optab_handler (movmem_optab
, mode
);
1292 if (code
!= CODE_FOR_nothing
1293 /* We don't need MODE to be narrower than BITS_PER_HOST_WIDE_INT
1294 here because if SIZE is less than the mode mask, as it is
1295 returned by the macro, it will definitely be less than the
1296 actual mode mask. */
1297 && ((CONST_INT_P (size
)
1298 && ((unsigned HOST_WIDE_INT
) INTVAL (size
)
1299 <= (GET_MODE_MASK (mode
) >> 1)))
1300 || GET_MODE_BITSIZE (mode
) >= BITS_PER_WORD
))
1302 struct expand_operand ops
[6];
1305 /* ??? When called via emit_block_move_for_call, it'd be
1306 nice if there were some way to inform the backend, so
1307 that it doesn't fail the expansion because it thinks
1308 emitting the libcall would be more efficient. */
1309 nops
= insn_data
[(int) code
].n_generator_args
;
1310 gcc_assert (nops
== 4 || nops
== 6);
1312 create_fixed_operand (&ops
[0], x
);
1313 create_fixed_operand (&ops
[1], y
);
1314 /* The check above guarantees that this size conversion is valid. */
1315 create_convert_operand_to (&ops
[2], size
, mode
, true);
1316 create_integer_operand (&ops
[3], align
/ BITS_PER_UNIT
);
1319 create_integer_operand (&ops
[4], expected_align
/ BITS_PER_UNIT
);
1320 create_integer_operand (&ops
[5], expected_size
);
1322 if (maybe_expand_insn (code
, nops
, ops
))
1324 volatile_ok
= save_volatile_ok
;
1330 volatile_ok
= save_volatile_ok
;
1334 /* A subroutine of emit_block_move. Expand a call to memcpy.
1335 Return the return value from memcpy, 0 otherwise. */
1338 emit_block_move_via_libcall (rtx dst
, rtx src
, rtx size
, bool tailcall
)
1340 rtx dst_addr
, src_addr
;
1341 tree call_expr
, fn
, src_tree
, dst_tree
, size_tree
;
1342 enum machine_mode size_mode
;
1345 /* Emit code to copy the addresses of DST and SRC and SIZE into new
1346 pseudos. We can then place those new pseudos into a VAR_DECL and
1349 dst_addr
= copy_addr_to_reg (XEXP (dst
, 0));
1350 src_addr
= copy_addr_to_reg (XEXP (src
, 0));
1352 dst_addr
= convert_memory_address (ptr_mode
, dst_addr
);
1353 src_addr
= convert_memory_address (ptr_mode
, src_addr
);
1355 dst_tree
= make_tree (ptr_type_node
, dst_addr
);
1356 src_tree
= make_tree (ptr_type_node
, src_addr
);
1358 size_mode
= TYPE_MODE (sizetype
);
1360 size
= convert_to_mode (size_mode
, size
, 1);
1361 size
= copy_to_mode_reg (size_mode
, size
);
1363 /* It is incorrect to use the libcall calling conventions to call
1364 memcpy in this context. This could be a user call to memcpy and
1365 the user may wish to examine the return value from memcpy. For
1366 targets where libcalls and normal calls have different conventions
1367 for returning pointers, we could end up generating incorrect code. */
1369 size_tree
= make_tree (sizetype
, size
);
1371 fn
= emit_block_move_libcall_fn (true);
1372 call_expr
= build_call_expr (fn
, 3, dst_tree
, src_tree
, size_tree
);
1373 CALL_EXPR_TAILCALL (call_expr
) = tailcall
;
1375 retval
= expand_normal (call_expr
);
1380 /* A subroutine of emit_block_move_via_libcall. Create the tree node
1381 for the function we use for block copies. */
1383 static GTY(()) tree block_move_fn
;
1386 init_block_move_fn (const char *asmspec
)
1390 tree args
, fn
, attrs
, attr_args
;
1392 fn
= get_identifier ("memcpy");
1393 args
= build_function_type_list (ptr_type_node
, ptr_type_node
,
1394 const_ptr_type_node
, sizetype
,
1397 fn
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
, fn
, args
);
1398 DECL_EXTERNAL (fn
) = 1;
1399 TREE_PUBLIC (fn
) = 1;
1400 DECL_ARTIFICIAL (fn
) = 1;
1401 TREE_NOTHROW (fn
) = 1;
1402 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
1403 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
1405 attr_args
= build_tree_list (NULL_TREE
, build_string (1, "1"));
1406 attrs
= tree_cons (get_identifier ("fn spec"), attr_args
, NULL
);
1408 decl_attributes (&fn
, attrs
, ATTR_FLAG_BUILT_IN
);
1414 set_user_assembler_name (block_move_fn
, asmspec
);
1418 emit_block_move_libcall_fn (int for_call
)
1420 static bool emitted_extern
;
1423 init_block_move_fn (NULL
);
1425 if (for_call
&& !emitted_extern
)
1427 emitted_extern
= true;
1428 make_decl_rtl (block_move_fn
);
1431 return block_move_fn
;
1434 /* A subroutine of emit_block_move. Copy the data via an explicit
1435 loop. This is used only when libcalls are forbidden. */
1436 /* ??? It'd be nice to copy in hunks larger than QImode. */
1439 emit_block_move_via_loop (rtx x
, rtx y
, rtx size
,
1440 unsigned int align ATTRIBUTE_UNUSED
)
1442 rtx cmp_label
, top_label
, iter
, x_addr
, y_addr
, tmp
;
1443 enum machine_mode x_addr_mode
= get_address_mode (x
);
1444 enum machine_mode y_addr_mode
= get_address_mode (y
);
1445 enum machine_mode iter_mode
;
1447 iter_mode
= GET_MODE (size
);
1448 if (iter_mode
== VOIDmode
)
1449 iter_mode
= word_mode
;
1451 top_label
= gen_label_rtx ();
1452 cmp_label
= gen_label_rtx ();
1453 iter
= gen_reg_rtx (iter_mode
);
1455 emit_move_insn (iter
, const0_rtx
);
1457 x_addr
= force_operand (XEXP (x
, 0), NULL_RTX
);
1458 y_addr
= force_operand (XEXP (y
, 0), NULL_RTX
);
1459 do_pending_stack_adjust ();
1461 emit_jump (cmp_label
);
1462 emit_label (top_label
);
1464 tmp
= convert_modes (x_addr_mode
, iter_mode
, iter
, true);
1465 x_addr
= gen_rtx_PLUS (x_addr_mode
, x_addr
, tmp
);
1467 if (x_addr_mode
!= y_addr_mode
)
1468 tmp
= convert_modes (y_addr_mode
, iter_mode
, iter
, true);
1469 y_addr
= gen_rtx_PLUS (y_addr_mode
, y_addr
, tmp
);
1471 x
= change_address (x
, QImode
, x_addr
);
1472 y
= change_address (y
, QImode
, y_addr
);
1474 emit_move_insn (x
, y
);
1476 tmp
= expand_simple_binop (iter_mode
, PLUS
, iter
, const1_rtx
, iter
,
1477 true, OPTAB_LIB_WIDEN
);
1479 emit_move_insn (iter
, tmp
);
1481 emit_label (cmp_label
);
1483 emit_cmp_and_jump_insns (iter
, size
, LT
, NULL_RTX
, iter_mode
,
1487 /* Copy all or part of a value X into registers starting at REGNO.
1488 The number of registers to be filled is NREGS. */
1491 move_block_to_reg (int regno
, rtx x
, int nregs
, enum machine_mode mode
)
1494 #ifdef HAVE_load_multiple
1502 if (CONSTANT_P (x
) && !targetm
.legitimate_constant_p (mode
, x
))
1503 x
= validize_mem (force_const_mem (mode
, x
));
1505 /* See if the machine can do this with a load multiple insn. */
1506 #ifdef HAVE_load_multiple
1507 if (HAVE_load_multiple
)
1509 last
= get_last_insn ();
1510 pat
= gen_load_multiple (gen_rtx_REG (word_mode
, regno
), x
,
1518 delete_insns_since (last
);
1522 for (i
= 0; i
< nregs
; i
++)
1523 emit_move_insn (gen_rtx_REG (word_mode
, regno
+ i
),
1524 operand_subword_force (x
, i
, mode
));
1527 /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
1528 The number of registers to be filled is NREGS. */
1531 move_block_from_reg (int regno
, rtx x
, int nregs
)
1538 /* See if the machine can do this with a store multiple insn. */
1539 #ifdef HAVE_store_multiple
1540 if (HAVE_store_multiple
)
1542 rtx last
= get_last_insn ();
1543 rtx pat
= gen_store_multiple (x
, gen_rtx_REG (word_mode
, regno
),
1551 delete_insns_since (last
);
1555 for (i
= 0; i
< nregs
; i
++)
1557 rtx tem
= operand_subword (x
, i
, 1, BLKmode
);
1561 emit_move_insn (tem
, gen_rtx_REG (word_mode
, regno
+ i
));
1565 /* Generate a PARALLEL rtx for a new non-consecutive group of registers from
1566 ORIG, where ORIG is a non-consecutive group of registers represented by
1567 a PARALLEL. The clone is identical to the original except in that the
1568 original set of registers is replaced by a new set of pseudo registers.
1569 The new set has the same modes as the original set. */
1572 gen_group_rtx (rtx orig
)
1577 gcc_assert (GET_CODE (orig
) == PARALLEL
);
1579 length
= XVECLEN (orig
, 0);
1580 tmps
= XALLOCAVEC (rtx
, length
);
1582 /* Skip a NULL entry in first slot. */
1583 i
= XEXP (XVECEXP (orig
, 0, 0), 0) ? 0 : 1;
1588 for (; i
< length
; i
++)
1590 enum machine_mode mode
= GET_MODE (XEXP (XVECEXP (orig
, 0, i
), 0));
1591 rtx offset
= XEXP (XVECEXP (orig
, 0, i
), 1);
1593 tmps
[i
] = gen_rtx_EXPR_LIST (VOIDmode
, gen_reg_rtx (mode
), offset
);
1596 return gen_rtx_PARALLEL (GET_MODE (orig
), gen_rtvec_v (length
, tmps
));
1599 /* A subroutine of emit_group_load. Arguments as for emit_group_load,
1600 except that values are placed in TMPS[i], and must later be moved
1601 into corresponding XEXP (XVECEXP (DST, 0, i), 0) element. */
1604 emit_group_load_1 (rtx
*tmps
, rtx dst
, rtx orig_src
, tree type
, int ssize
)
1608 enum machine_mode m
= GET_MODE (orig_src
);
1610 gcc_assert (GET_CODE (dst
) == PARALLEL
);
1613 && !SCALAR_INT_MODE_P (m
)
1614 && !MEM_P (orig_src
)
1615 && GET_CODE (orig_src
) != CONCAT
)
1617 enum machine_mode imode
= int_mode_for_mode (GET_MODE (orig_src
));
1618 if (imode
== BLKmode
)
1619 src
= assign_stack_temp (GET_MODE (orig_src
), ssize
);
1621 src
= gen_reg_rtx (imode
);
1622 if (imode
!= BLKmode
)
1623 src
= gen_lowpart (GET_MODE (orig_src
), src
);
1624 emit_move_insn (src
, orig_src
);
1625 /* ...and back again. */
1626 if (imode
!= BLKmode
)
1627 src
= gen_lowpart (imode
, src
);
1628 emit_group_load_1 (tmps
, dst
, src
, type
, ssize
);
1632 /* Check for a NULL entry, used to indicate that the parameter goes
1633 both on the stack and in registers. */
1634 if (XEXP (XVECEXP (dst
, 0, 0), 0))
1639 /* Process the pieces. */
1640 for (i
= start
; i
< XVECLEN (dst
, 0); i
++)
1642 enum machine_mode mode
= GET_MODE (XEXP (XVECEXP (dst
, 0, i
), 0));
1643 HOST_WIDE_INT bytepos
= INTVAL (XEXP (XVECEXP (dst
, 0, i
), 1));
1644 unsigned int bytelen
= GET_MODE_SIZE (mode
);
1647 /* Handle trailing fragments that run over the size of the struct. */
1648 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
1650 /* Arrange to shift the fragment to where it belongs.
1651 extract_bit_field loads to the lsb of the reg. */
1653 #ifdef BLOCK_REG_PADDING
1654 BLOCK_REG_PADDING (GET_MODE (orig_src
), type
, i
== start
)
1655 == (BYTES_BIG_ENDIAN
? upward
: downward
)
1660 shift
= (bytelen
- (ssize
- bytepos
)) * BITS_PER_UNIT
;
1661 bytelen
= ssize
- bytepos
;
1662 gcc_assert (bytelen
> 0);
1665 /* If we won't be loading directly from memory, protect the real source
1666 from strange tricks we might play; but make sure that the source can
1667 be loaded directly into the destination. */
1669 if (!MEM_P (orig_src
)
1670 && (!CONSTANT_P (orig_src
)
1671 || (GET_MODE (orig_src
) != mode
1672 && GET_MODE (orig_src
) != VOIDmode
)))
1674 if (GET_MODE (orig_src
) == VOIDmode
)
1675 src
= gen_reg_rtx (mode
);
1677 src
= gen_reg_rtx (GET_MODE (orig_src
));
1679 emit_move_insn (src
, orig_src
);
1682 /* Optimize the access just a bit. */
1684 && (! SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (src
))
1685 || MEM_ALIGN (src
) >= GET_MODE_ALIGNMENT (mode
))
1686 && bytepos
* BITS_PER_UNIT
% GET_MODE_ALIGNMENT (mode
) == 0
1687 && bytelen
== GET_MODE_SIZE (mode
))
1689 tmps
[i
] = gen_reg_rtx (mode
);
1690 emit_move_insn (tmps
[i
], adjust_address (src
, mode
, bytepos
));
1692 else if (COMPLEX_MODE_P (mode
)
1693 && GET_MODE (src
) == mode
1694 && bytelen
== GET_MODE_SIZE (mode
))
1695 /* Let emit_move_complex do the bulk of the work. */
1697 else if (GET_CODE (src
) == CONCAT
)
1699 unsigned int slen
= GET_MODE_SIZE (GET_MODE (src
));
1700 unsigned int slen0
= GET_MODE_SIZE (GET_MODE (XEXP (src
, 0)));
1702 if ((bytepos
== 0 && bytelen
== slen0
)
1703 || (bytepos
!= 0 && bytepos
+ bytelen
<= slen
))
1705 /* The following assumes that the concatenated objects all
1706 have the same size. In this case, a simple calculation
1707 can be used to determine the object and the bit field
1709 tmps
[i
] = XEXP (src
, bytepos
/ slen0
);
1710 if (! CONSTANT_P (tmps
[i
])
1711 && (!REG_P (tmps
[i
]) || GET_MODE (tmps
[i
]) != mode
))
1712 tmps
[i
] = extract_bit_field (tmps
[i
], bytelen
* BITS_PER_UNIT
,
1713 (bytepos
% slen0
) * BITS_PER_UNIT
,
1714 1, false, NULL_RTX
, mode
, mode
);
1720 gcc_assert (!bytepos
);
1721 mem
= assign_stack_temp (GET_MODE (src
), slen
);
1722 emit_move_insn (mem
, src
);
1723 tmps
[i
] = extract_bit_field (mem
, bytelen
* BITS_PER_UNIT
,
1724 0, 1, false, NULL_RTX
, mode
, mode
);
1727 /* FIXME: A SIMD parallel will eventually lead to a subreg of a
1728 SIMD register, which is currently broken. While we get GCC
1729 to emit proper RTL for these cases, let's dump to memory. */
1730 else if (VECTOR_MODE_P (GET_MODE (dst
))
1733 int slen
= GET_MODE_SIZE (GET_MODE (src
));
1736 mem
= assign_stack_temp (GET_MODE (src
), slen
);
1737 emit_move_insn (mem
, src
);
1738 tmps
[i
] = adjust_address (mem
, mode
, (int) bytepos
);
1740 else if (CONSTANT_P (src
) && GET_MODE (dst
) != BLKmode
1741 && XVECLEN (dst
, 0) > 1)
1742 tmps
[i
] = simplify_gen_subreg (mode
, src
, GET_MODE(dst
), bytepos
);
1743 else if (CONSTANT_P (src
))
1745 HOST_WIDE_INT len
= (HOST_WIDE_INT
) bytelen
;
1753 gcc_assert (2 * len
== ssize
);
1754 split_double (src
, &first
, &second
);
1761 else if (REG_P (src
) && GET_MODE (src
) == mode
)
1764 tmps
[i
] = extract_bit_field (src
, bytelen
* BITS_PER_UNIT
,
1765 bytepos
* BITS_PER_UNIT
, 1, false, NULL_RTX
,
1769 tmps
[i
] = expand_shift (LSHIFT_EXPR
, mode
, tmps
[i
],
1774 /* Emit code to move a block SRC of type TYPE to a block DST,
1775 where DST is non-consecutive registers represented by a PARALLEL.
1776 SSIZE represents the total size of block ORIG_SRC in bytes, or -1
1780 emit_group_load (rtx dst
, rtx src
, tree type
, int ssize
)
1785 tmps
= XALLOCAVEC (rtx
, XVECLEN (dst
, 0));
1786 emit_group_load_1 (tmps
, dst
, src
, type
, ssize
);
1788 /* Copy the extracted pieces into the proper (probable) hard regs. */
1789 for (i
= 0; i
< XVECLEN (dst
, 0); i
++)
1791 rtx d
= XEXP (XVECEXP (dst
, 0, i
), 0);
1794 emit_move_insn (d
, tmps
[i
]);
1798 /* Similar, but load SRC into new pseudos in a format that looks like
1799 PARALLEL. This can later be fed to emit_group_move to get things
1800 in the right place. */
1803 emit_group_load_into_temps (rtx parallel
, rtx src
, tree type
, int ssize
)
1808 vec
= rtvec_alloc (XVECLEN (parallel
, 0));
1809 emit_group_load_1 (&RTVEC_ELT (vec
, 0), parallel
, src
, type
, ssize
);
1811 /* Convert the vector to look just like the original PARALLEL, except
1812 with the computed values. */
1813 for (i
= 0; i
< XVECLEN (parallel
, 0); i
++)
1815 rtx e
= XVECEXP (parallel
, 0, i
);
1816 rtx d
= XEXP (e
, 0);
1820 d
= force_reg (GET_MODE (d
), RTVEC_ELT (vec
, i
));
1821 e
= alloc_EXPR_LIST (REG_NOTE_KIND (e
), d
, XEXP (e
, 1));
1823 RTVEC_ELT (vec
, i
) = e
;
1826 return gen_rtx_PARALLEL (GET_MODE (parallel
), vec
);
1829 /* Emit code to move a block SRC to block DST, where SRC and DST are
1830 non-consecutive groups of registers, each represented by a PARALLEL. */
1833 emit_group_move (rtx dst
, rtx src
)
1837 gcc_assert (GET_CODE (src
) == PARALLEL
1838 && GET_CODE (dst
) == PARALLEL
1839 && XVECLEN (src
, 0) == XVECLEN (dst
, 0));
1841 /* Skip first entry if NULL. */
1842 for (i
= XEXP (XVECEXP (src
, 0, 0), 0) ? 0 : 1; i
< XVECLEN (src
, 0); i
++)
1843 emit_move_insn (XEXP (XVECEXP (dst
, 0, i
), 0),
1844 XEXP (XVECEXP (src
, 0, i
), 0));
1847 /* Move a group of registers represented by a PARALLEL into pseudos. */
1850 emit_group_move_into_temps (rtx src
)
1852 rtvec vec
= rtvec_alloc (XVECLEN (src
, 0));
1855 for (i
= 0; i
< XVECLEN (src
, 0); i
++)
1857 rtx e
= XVECEXP (src
, 0, i
);
1858 rtx d
= XEXP (e
, 0);
1861 e
= alloc_EXPR_LIST (REG_NOTE_KIND (e
), copy_to_reg (d
), XEXP (e
, 1));
1862 RTVEC_ELT (vec
, i
) = e
;
1865 return gen_rtx_PARALLEL (GET_MODE (src
), vec
);
1868 /* Emit code to move a block SRC to a block ORIG_DST of type TYPE,
1869 where SRC is non-consecutive registers represented by a PARALLEL.
1870 SSIZE represents the total size of block ORIG_DST, or -1 if not
1874 emit_group_store (rtx orig_dst
, rtx src
, tree type ATTRIBUTE_UNUSED
, int ssize
)
1877 int start
, finish
, i
;
1878 enum machine_mode m
= GET_MODE (orig_dst
);
1880 gcc_assert (GET_CODE (src
) == PARALLEL
);
1882 if (!SCALAR_INT_MODE_P (m
)
1883 && !MEM_P (orig_dst
) && GET_CODE (orig_dst
) != CONCAT
)
1885 enum machine_mode imode
= int_mode_for_mode (GET_MODE (orig_dst
));
1886 if (imode
== BLKmode
)
1887 dst
= assign_stack_temp (GET_MODE (orig_dst
), ssize
);
1889 dst
= gen_reg_rtx (imode
);
1890 emit_group_store (dst
, src
, type
, ssize
);
1891 if (imode
!= BLKmode
)
1892 dst
= gen_lowpart (GET_MODE (orig_dst
), dst
);
1893 emit_move_insn (orig_dst
, dst
);
1897 /* Check for a NULL entry, used to indicate that the parameter goes
1898 both on the stack and in registers. */
1899 if (XEXP (XVECEXP (src
, 0, 0), 0))
1903 finish
= XVECLEN (src
, 0);
1905 tmps
= XALLOCAVEC (rtx
, finish
);
1907 /* Copy the (probable) hard regs into pseudos. */
1908 for (i
= start
; i
< finish
; i
++)
1910 rtx reg
= XEXP (XVECEXP (src
, 0, i
), 0);
1911 if (!REG_P (reg
) || REGNO (reg
) < FIRST_PSEUDO_REGISTER
)
1913 tmps
[i
] = gen_reg_rtx (GET_MODE (reg
));
1914 emit_move_insn (tmps
[i
], reg
);
1920 /* If we won't be storing directly into memory, protect the real destination
1921 from strange tricks we might play. */
1923 if (GET_CODE (dst
) == PARALLEL
)
1927 /* We can get a PARALLEL dst if there is a conditional expression in
1928 a return statement. In that case, the dst and src are the same,
1929 so no action is necessary. */
1930 if (rtx_equal_p (dst
, src
))
1933 /* It is unclear if we can ever reach here, but we may as well handle
1934 it. Allocate a temporary, and split this into a store/load to/from
1937 temp
= assign_stack_temp (GET_MODE (dst
), ssize
);
1938 emit_group_store (temp
, src
, type
, ssize
);
1939 emit_group_load (dst
, temp
, type
, ssize
);
1942 else if (!MEM_P (dst
) && GET_CODE (dst
) != CONCAT
)
1944 enum machine_mode outer
= GET_MODE (dst
);
1945 enum machine_mode inner
;
1946 HOST_WIDE_INT bytepos
;
1950 if (!REG_P (dst
) || REGNO (dst
) < FIRST_PSEUDO_REGISTER
)
1951 dst
= gen_reg_rtx (outer
);
1953 /* Make life a bit easier for combine. */
1954 /* If the first element of the vector is the low part
1955 of the destination mode, use a paradoxical subreg to
1956 initialize the destination. */
1959 inner
= GET_MODE (tmps
[start
]);
1960 bytepos
= subreg_lowpart_offset (inner
, outer
);
1961 if (INTVAL (XEXP (XVECEXP (src
, 0, start
), 1)) == bytepos
)
1963 temp
= simplify_gen_subreg (outer
, tmps
[start
],
1967 emit_move_insn (dst
, temp
);
1974 /* If the first element wasn't the low part, try the last. */
1976 && start
< finish
- 1)
1978 inner
= GET_MODE (tmps
[finish
- 1]);
1979 bytepos
= subreg_lowpart_offset (inner
, outer
);
1980 if (INTVAL (XEXP (XVECEXP (src
, 0, finish
- 1), 1)) == bytepos
)
1982 temp
= simplify_gen_subreg (outer
, tmps
[finish
- 1],
1986 emit_move_insn (dst
, temp
);
1993 /* Otherwise, simply initialize the result to zero. */
1995 emit_move_insn (dst
, CONST0_RTX (outer
));
1998 /* Process the pieces. */
1999 for (i
= start
; i
< finish
; i
++)
2001 HOST_WIDE_INT bytepos
= INTVAL (XEXP (XVECEXP (src
, 0, i
), 1));
2002 enum machine_mode mode
= GET_MODE (tmps
[i
]);
2003 unsigned int bytelen
= GET_MODE_SIZE (mode
);
2004 unsigned int adj_bytelen
= bytelen
;
2007 /* Handle trailing fragments that run over the size of the struct. */
2008 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
2009 adj_bytelen
= ssize
- bytepos
;
2011 if (GET_CODE (dst
) == CONCAT
)
2013 if (bytepos
+ adj_bytelen
2014 <= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0))))
2015 dest
= XEXP (dst
, 0);
2016 else if (bytepos
>= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0))))
2018 bytepos
-= GET_MODE_SIZE (GET_MODE (XEXP (dst
, 0)));
2019 dest
= XEXP (dst
, 1);
2023 enum machine_mode dest_mode
= GET_MODE (dest
);
2024 enum machine_mode tmp_mode
= GET_MODE (tmps
[i
]);
2026 gcc_assert (bytepos
== 0 && XVECLEN (src
, 0));
2028 if (GET_MODE_ALIGNMENT (dest_mode
)
2029 >= GET_MODE_ALIGNMENT (tmp_mode
))
2031 dest
= assign_stack_temp (dest_mode
,
2032 GET_MODE_SIZE (dest_mode
));
2033 emit_move_insn (adjust_address (dest
,
2041 dest
= assign_stack_temp (tmp_mode
,
2042 GET_MODE_SIZE (tmp_mode
));
2043 emit_move_insn (dest
, tmps
[i
]);
2044 dst
= adjust_address (dest
, dest_mode
, bytepos
);
2050 if (ssize
>= 0 && bytepos
+ (HOST_WIDE_INT
) bytelen
> ssize
)
2052 /* store_bit_field always takes its value from the lsb.
2053 Move the fragment to the lsb if it's not already there. */
2055 #ifdef BLOCK_REG_PADDING
2056 BLOCK_REG_PADDING (GET_MODE (orig_dst
), type
, i
== start
)
2057 == (BYTES_BIG_ENDIAN
? upward
: downward
)
2063 int shift
= (bytelen
- (ssize
- bytepos
)) * BITS_PER_UNIT
;
2064 tmps
[i
] = expand_shift (RSHIFT_EXPR
, mode
, tmps
[i
],
2067 bytelen
= adj_bytelen
;
2070 /* Optimize the access just a bit. */
2072 && (! SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (dest
))
2073 || MEM_ALIGN (dest
) >= GET_MODE_ALIGNMENT (mode
))
2074 && bytepos
* BITS_PER_UNIT
% GET_MODE_ALIGNMENT (mode
) == 0
2075 && bytelen
== GET_MODE_SIZE (mode
))
2076 emit_move_insn (adjust_address (dest
, mode
, bytepos
), tmps
[i
]);
2078 store_bit_field (dest
, bytelen
* BITS_PER_UNIT
, bytepos
* BITS_PER_UNIT
,
2079 0, 0, mode
, tmps
[i
]);
2082 /* Copy from the pseudo into the (probable) hard reg. */
2083 if (orig_dst
!= dst
)
2084 emit_move_insn (orig_dst
, dst
);
2087 /* Generate code to copy a BLKmode object of TYPE out of a
2088 set of registers starting with SRCREG into TGTBLK. If TGTBLK
2089 is null, a stack temporary is created. TGTBLK is returned.
2091 The purpose of this routine is to handle functions that return
2092 BLKmode structures in registers. Some machines (the PA for example)
2093 want to return all small structures in registers regardless of the
2094 structure's alignment. */
2097 copy_blkmode_from_reg (rtx tgtblk
, rtx srcreg
, tree type
)
2099 unsigned HOST_WIDE_INT bytes
= int_size_in_bytes (type
);
2100 rtx src
= NULL
, dst
= NULL
;
2101 unsigned HOST_WIDE_INT bitsize
= MIN (TYPE_ALIGN (type
), BITS_PER_WORD
);
2102 unsigned HOST_WIDE_INT bitpos
, xbitpos
, padding_correction
= 0;
2103 enum machine_mode copy_mode
;
2107 tgtblk
= assign_temp (build_qualified_type (type
,
2109 | TYPE_QUAL_CONST
)),
2111 preserve_temp_slots (tgtblk
);
2114 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2115 into a new pseudo which is a full word. */
2117 if (GET_MODE (srcreg
) != BLKmode
2118 && GET_MODE_SIZE (GET_MODE (srcreg
)) < UNITS_PER_WORD
)
2119 srcreg
= convert_to_mode (word_mode
, srcreg
, TYPE_UNSIGNED (type
));
2121 /* If the structure doesn't take up a whole number of words, see whether
2122 SRCREG is padded on the left or on the right. If it's on the left,
2123 set PADDING_CORRECTION to the number of bits to skip.
2125 In most ABIs, the structure will be returned at the least end of
2126 the register, which translates to right padding on little-endian
2127 targets and left padding on big-endian targets. The opposite
2128 holds if the structure is returned at the most significant
2129 end of the register. */
2130 if (bytes
% UNITS_PER_WORD
!= 0
2131 && (targetm
.calls
.return_in_msb (type
)
2133 : BYTES_BIG_ENDIAN
))
2135 = (BITS_PER_WORD
- ((bytes
% UNITS_PER_WORD
) * BITS_PER_UNIT
));
2137 /* Copy the structure BITSIZE bits at a time. If the target lives in
2138 memory, take care of not reading/writing past its end by selecting
2139 a copy mode suited to BITSIZE. This should always be possible given
2142 We could probably emit more efficient code for machines which do not use
2143 strict alignment, but it doesn't seem worth the effort at the current
2146 copy_mode
= word_mode
;
2149 enum machine_mode mem_mode
= mode_for_size (bitsize
, MODE_INT
, 1);
2150 if (mem_mode
!= BLKmode
)
2151 copy_mode
= mem_mode
;
2154 for (bitpos
= 0, xbitpos
= padding_correction
;
2155 bitpos
< bytes
* BITS_PER_UNIT
;
2156 bitpos
+= bitsize
, xbitpos
+= bitsize
)
2158 /* We need a new source operand each time xbitpos is on a
2159 word boundary and when xbitpos == padding_correction
2160 (the first time through). */
2161 if (xbitpos
% BITS_PER_WORD
== 0
2162 || xbitpos
== padding_correction
)
2163 src
= operand_subword_force (srcreg
, xbitpos
/ BITS_PER_WORD
,
2166 /* We need a new destination operand each time bitpos is on
2168 if (bitpos
% BITS_PER_WORD
== 0)
2169 dst
= operand_subword (tgtblk
, bitpos
/ BITS_PER_WORD
, 1, BLKmode
);
2171 /* Use xbitpos for the source extraction (right justified) and
2172 bitpos for the destination store (left justified). */
2173 store_bit_field (dst
, bitsize
, bitpos
% BITS_PER_WORD
, 0, 0, copy_mode
,
2174 extract_bit_field (src
, bitsize
,
2175 xbitpos
% BITS_PER_WORD
, 1, false,
2176 NULL_RTX
, copy_mode
, copy_mode
));
2182 /* Copy BLKmode value SRC into a register of mode MODE. Return the
2183 register if it contains any data, otherwise return null.
2185 This is used on targets that return BLKmode values in registers. */
2188 copy_blkmode_to_reg (enum machine_mode mode
, tree src
)
2191 unsigned HOST_WIDE_INT bitpos
, xbitpos
, padding_correction
= 0, bytes
;
2192 unsigned int bitsize
;
2193 rtx
*dst_words
, dst
, x
, src_word
= NULL_RTX
, dst_word
= NULL_RTX
;
2194 enum machine_mode dst_mode
;
2196 gcc_assert (TYPE_MODE (TREE_TYPE (src
)) == BLKmode
);
2198 x
= expand_normal (src
);
2200 bytes
= int_size_in_bytes (TREE_TYPE (src
));
2204 /* If the structure doesn't take up a whole number of words, see
2205 whether the register value should be padded on the left or on
2206 the right. Set PADDING_CORRECTION to the number of padding
2207 bits needed on the left side.
2209 In most ABIs, the structure will be returned at the least end of
2210 the register, which translates to right padding on little-endian
2211 targets and left padding on big-endian targets. The opposite
2212 holds if the structure is returned at the most significant
2213 end of the register. */
2214 if (bytes
% UNITS_PER_WORD
!= 0
2215 && (targetm
.calls
.return_in_msb (TREE_TYPE (src
))
2217 : BYTES_BIG_ENDIAN
))
2218 padding_correction
= (BITS_PER_WORD
- ((bytes
% UNITS_PER_WORD
)
2221 n_regs
= (bytes
+ UNITS_PER_WORD
- 1) / UNITS_PER_WORD
;
2222 dst_words
= XALLOCAVEC (rtx
, n_regs
);
2223 bitsize
= MIN (TYPE_ALIGN (TREE_TYPE (src
)), BITS_PER_WORD
);
2225 /* Copy the structure BITSIZE bits at a time. */
2226 for (bitpos
= 0, xbitpos
= padding_correction
;
2227 bitpos
< bytes
* BITS_PER_UNIT
;
2228 bitpos
+= bitsize
, xbitpos
+= bitsize
)
2230 /* We need a new destination pseudo each time xbitpos is
2231 on a word boundary and when xbitpos == padding_correction
2232 (the first time through). */
2233 if (xbitpos
% BITS_PER_WORD
== 0
2234 || xbitpos
== padding_correction
)
2236 /* Generate an appropriate register. */
2237 dst_word
= gen_reg_rtx (word_mode
);
2238 dst_words
[xbitpos
/ BITS_PER_WORD
] = dst_word
;
2240 /* Clear the destination before we move anything into it. */
2241 emit_move_insn (dst_word
, CONST0_RTX (word_mode
));
2244 /* We need a new source operand each time bitpos is on a word
2246 if (bitpos
% BITS_PER_WORD
== 0)
2247 src_word
= operand_subword_force (x
, bitpos
/ BITS_PER_WORD
, BLKmode
);
2249 /* Use bitpos for the source extraction (left justified) and
2250 xbitpos for the destination store (right justified). */
2251 store_bit_field (dst_word
, bitsize
, xbitpos
% BITS_PER_WORD
,
2253 extract_bit_field (src_word
, bitsize
,
2254 bitpos
% BITS_PER_WORD
, 1, false,
2255 NULL_RTX
, word_mode
, word_mode
));
2258 if (mode
== BLKmode
)
2260 /* Find the smallest integer mode large enough to hold the
2261 entire structure. */
2262 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
2264 mode
= GET_MODE_WIDER_MODE (mode
))
2265 /* Have we found a large enough mode? */
2266 if (GET_MODE_SIZE (mode
) >= bytes
)
2269 /* A suitable mode should have been found. */
2270 gcc_assert (mode
!= VOIDmode
);
2273 if (GET_MODE_SIZE (mode
) < GET_MODE_SIZE (word_mode
))
2274 dst_mode
= word_mode
;
2277 dst
= gen_reg_rtx (dst_mode
);
2279 for (i
= 0; i
< n_regs
; i
++)
2280 emit_move_insn (operand_subword (dst
, i
, 0, dst_mode
), dst_words
[i
]);
2282 if (mode
!= dst_mode
)
2283 dst
= gen_lowpart (mode
, dst
);
2288 /* Add a USE expression for REG to the (possibly empty) list pointed
2289 to by CALL_FUSAGE. REG must denote a hard register. */
2292 use_reg_mode (rtx
*call_fusage
, rtx reg
, enum machine_mode mode
)
2294 gcc_assert (REG_P (reg
) && REGNO (reg
) < FIRST_PSEUDO_REGISTER
);
2297 = gen_rtx_EXPR_LIST (mode
, gen_rtx_USE (VOIDmode
, reg
), *call_fusage
);
2300 /* Add USE expressions to *CALL_FUSAGE for each of NREGS consecutive regs,
2301 starting at REGNO. All of these registers must be hard registers. */
2304 use_regs (rtx
*call_fusage
, int regno
, int nregs
)
2308 gcc_assert (regno
+ nregs
<= FIRST_PSEUDO_REGISTER
);
2310 for (i
= 0; i
< nregs
; i
++)
2311 use_reg (call_fusage
, regno_reg_rtx
[regno
+ i
]);
2314 /* Add USE expressions to *CALL_FUSAGE for each REG contained in the
2315 PARALLEL REGS. This is for calls that pass values in multiple
2316 non-contiguous locations. The Irix 6 ABI has examples of this. */
2319 use_group_regs (rtx
*call_fusage
, rtx regs
)
2323 for (i
= 0; i
< XVECLEN (regs
, 0); i
++)
2325 rtx reg
= XEXP (XVECEXP (regs
, 0, i
), 0);
2327 /* A NULL entry means the parameter goes both on the stack and in
2328 registers. This can also be a MEM for targets that pass values
2329 partially on the stack and partially in registers. */
2330 if (reg
!= 0 && REG_P (reg
))
2331 use_reg (call_fusage
, reg
);
2335 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2336 assigment and the code of the expresion on the RHS is CODE. Return
2340 get_def_for_expr (tree name
, enum tree_code code
)
2344 if (TREE_CODE (name
) != SSA_NAME
)
2347 def_stmt
= get_gimple_for_ssa_name (name
);
2349 || gimple_assign_rhs_code (def_stmt
) != code
)
2355 #ifdef HAVE_conditional_move
2356 /* Return the defining gimple statement for SSA_NAME NAME if it is an
2357 assigment and the class of the expresion on the RHS is CLASS. Return
2361 get_def_for_expr_class (tree name
, enum tree_code_class tclass
)
2365 if (TREE_CODE (name
) != SSA_NAME
)
2368 def_stmt
= get_gimple_for_ssa_name (name
);
2370 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt
)) != tclass
)
2378 /* Determine whether the LEN bytes generated by CONSTFUN can be
2379 stored to memory using several move instructions. CONSTFUNDATA is
2380 a pointer which will be passed as argument in every CONSTFUN call.
2381 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2382 a memset operation and false if it's a copy of a constant string.
2383 Return nonzero if a call to store_by_pieces should succeed. */
2386 can_store_by_pieces (unsigned HOST_WIDE_INT len
,
2387 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
),
2388 void *constfundata
, unsigned int align
, bool memsetp
)
2390 unsigned HOST_WIDE_INT l
;
2391 unsigned int max_size
;
2392 HOST_WIDE_INT offset
= 0;
2393 enum machine_mode mode
;
2394 enum insn_code icode
;
2396 /* cst is set but not used if LEGITIMATE_CONSTANT doesn't use it. */
2397 rtx cst ATTRIBUTE_UNUSED
;
2403 ? SET_BY_PIECES_P (len
, align
)
2404 : STORE_BY_PIECES_P (len
, align
)))
2407 align
= alignment_for_piecewise_move (STORE_MAX_PIECES
, align
);
2409 /* We would first store what we can in the largest integer mode, then go to
2410 successively smaller modes. */
2413 reverse
<= (HAVE_PRE_DECREMENT
|| HAVE_POST_DECREMENT
);
2417 max_size
= STORE_MAX_PIECES
+ 1;
2418 while (max_size
> 1)
2420 mode
= widest_int_mode_for_size (max_size
);
2422 if (mode
== VOIDmode
)
2425 icode
= optab_handler (mov_optab
, mode
);
2426 if (icode
!= CODE_FOR_nothing
2427 && align
>= GET_MODE_ALIGNMENT (mode
))
2429 unsigned int size
= GET_MODE_SIZE (mode
);
2436 cst
= (*constfun
) (constfundata
, offset
, mode
);
2437 if (!targetm
.legitimate_constant_p (mode
, cst
))
2447 max_size
= GET_MODE_SIZE (mode
);
2450 /* The code above should have handled everything. */
2457 /* Generate several move instructions to store LEN bytes generated by
2458 CONSTFUN to block TO. (A MEM rtx with BLKmode). CONSTFUNDATA is a
2459 pointer which will be passed as argument in every CONSTFUN call.
2460 ALIGN is maximum alignment we can assume. MEMSETP is true if this is
2461 a memset operation and false if it's a copy of a constant string.
2462 If ENDP is 0 return to, if ENDP is 1 return memory at the end ala
2463 mempcpy, and if ENDP is 2 return memory the end minus one byte ala
2467 store_by_pieces (rtx to
, unsigned HOST_WIDE_INT len
,
2468 rtx (*constfun
) (void *, HOST_WIDE_INT
, enum machine_mode
),
2469 void *constfundata
, unsigned int align
, bool memsetp
, int endp
)
2471 enum machine_mode to_addr_mode
= get_address_mode (to
);
2472 struct store_by_pieces_d data
;
2476 gcc_assert (endp
!= 2);
2481 ? SET_BY_PIECES_P (len
, align
)
2482 : STORE_BY_PIECES_P (len
, align
));
2483 data
.constfun
= constfun
;
2484 data
.constfundata
= constfundata
;
2487 store_by_pieces_1 (&data
, align
);
2492 gcc_assert (!data
.reverse
);
2497 if (HAVE_POST_INCREMENT
&& data
.explicit_inc_to
> 0)
2498 emit_insn (gen_add2_insn (data
.to_addr
, constm1_rtx
));
2500 data
.to_addr
= copy_to_mode_reg (to_addr_mode
,
2501 plus_constant (to_addr_mode
,
2505 to1
= adjust_automodify_address (data
.to
, QImode
, data
.to_addr
,
2512 to1
= adjust_address (data
.to
, QImode
, data
.offset
);
2520 /* Generate several move instructions to clear LEN bytes of block TO. (A MEM
2521 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2524 clear_by_pieces (rtx to
, unsigned HOST_WIDE_INT len
, unsigned int align
)
2526 struct store_by_pieces_d data
;
2531 data
.constfun
= clear_by_pieces_1
;
2532 data
.constfundata
= NULL
;
2535 store_by_pieces_1 (&data
, align
);
2538 /* Callback routine for clear_by_pieces.
2539 Return const0_rtx unconditionally. */
2542 clear_by_pieces_1 (void *data ATTRIBUTE_UNUSED
,
2543 HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
2544 enum machine_mode mode ATTRIBUTE_UNUSED
)
2549 /* Subroutine of clear_by_pieces and store_by_pieces.
2550 Generate several move instructions to store LEN bytes of block TO. (A MEM
2551 rtx with BLKmode). ALIGN is maximum alignment we can assume. */
2554 store_by_pieces_1 (struct store_by_pieces_d
*data ATTRIBUTE_UNUSED
,
2555 unsigned int align ATTRIBUTE_UNUSED
)
2557 enum machine_mode to_addr_mode
= get_address_mode (data
->to
);
2558 rtx to_addr
= XEXP (data
->to
, 0);
2559 unsigned int max_size
= STORE_MAX_PIECES
+ 1;
2560 enum insn_code icode
;
2563 data
->to_addr
= to_addr
;
2565 = (GET_CODE (to_addr
) == PRE_INC
|| GET_CODE (to_addr
) == PRE_DEC
2566 || GET_CODE (to_addr
) == POST_INC
|| GET_CODE (to_addr
) == POST_DEC
);
2568 data
->explicit_inc_to
= 0;
2570 = (GET_CODE (to_addr
) == PRE_DEC
|| GET_CODE (to_addr
) == POST_DEC
);
2572 data
->offset
= data
->len
;
2574 /* If storing requires more than two move insns,
2575 copy addresses to registers (to make displacements shorter)
2576 and use post-increment if available. */
2577 if (!data
->autinc_to
2578 && move_by_pieces_ninsns (data
->len
, align
, max_size
) > 2)
2580 /* Determine the main mode we'll be using.
2581 MODE might not be used depending on the definitions of the
2582 USE_* macros below. */
2583 enum machine_mode mode ATTRIBUTE_UNUSED
2584 = widest_int_mode_for_size (max_size
);
2586 if (USE_STORE_PRE_DECREMENT (mode
) && data
->reverse
&& ! data
->autinc_to
)
2588 data
->to_addr
= copy_to_mode_reg (to_addr_mode
,
2589 plus_constant (to_addr_mode
,
2592 data
->autinc_to
= 1;
2593 data
->explicit_inc_to
= -1;
2596 if (USE_STORE_POST_INCREMENT (mode
) && ! data
->reverse
2597 && ! data
->autinc_to
)
2599 data
->to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
2600 data
->autinc_to
= 1;
2601 data
->explicit_inc_to
= 1;
2604 if ( !data
->autinc_to
&& CONSTANT_P (to_addr
))
2605 data
->to_addr
= copy_to_mode_reg (to_addr_mode
, to_addr
);
2608 align
= alignment_for_piecewise_move (STORE_MAX_PIECES
, align
);
2610 /* First store what we can in the largest integer mode, then go to
2611 successively smaller modes. */
2613 while (max_size
> 1)
2615 enum machine_mode mode
= widest_int_mode_for_size (max_size
);
2617 if (mode
== VOIDmode
)
2620 icode
= optab_handler (mov_optab
, mode
);
2621 if (icode
!= CODE_FOR_nothing
&& align
>= GET_MODE_ALIGNMENT (mode
))
2622 store_by_pieces_2 (GEN_FCN (icode
), mode
, data
);
2624 max_size
= GET_MODE_SIZE (mode
);
2627 /* The code above should have handled everything. */
2628 gcc_assert (!data
->len
);
2631 /* Subroutine of store_by_pieces_1. Store as many bytes as appropriate
2632 with move instructions for mode MODE. GENFUN is the gen_... function
2633 to make a move insn for that mode. DATA has all the other info. */
2636 store_by_pieces_2 (rtx (*genfun
) (rtx
, ...), enum machine_mode mode
,
2637 struct store_by_pieces_d
*data
)
2639 unsigned int size
= GET_MODE_SIZE (mode
);
2642 while (data
->len
>= size
)
2645 data
->offset
-= size
;
2647 if (data
->autinc_to
)
2648 to1
= adjust_automodify_address (data
->to
, mode
, data
->to_addr
,
2651 to1
= adjust_address (data
->to
, mode
, data
->offset
);
2653 if (HAVE_PRE_DECREMENT
&& data
->explicit_inc_to
< 0)
2654 emit_insn (gen_add2_insn (data
->to_addr
,
2655 GEN_INT (-(HOST_WIDE_INT
) size
)));
2657 cst
= (*data
->constfun
) (data
->constfundata
, data
->offset
, mode
);
2658 emit_insn ((*genfun
) (to1
, cst
));
2660 if (HAVE_POST_INCREMENT
&& data
->explicit_inc_to
> 0)
2661 emit_insn (gen_add2_insn (data
->to_addr
, GEN_INT (size
)));
2663 if (! data
->reverse
)
2664 data
->offset
+= size
;
2670 /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is
2671 its length in bytes. */
2674 clear_storage_hints (rtx object
, rtx size
, enum block_op_methods method
,
2675 unsigned int expected_align
, HOST_WIDE_INT expected_size
)
2677 enum machine_mode mode
= GET_MODE (object
);
2680 gcc_assert (method
== BLOCK_OP_NORMAL
|| method
== BLOCK_OP_TAILCALL
);
2682 /* If OBJECT is not BLKmode and SIZE is the same size as its mode,
2683 just move a zero. Otherwise, do this a piece at a time. */
2685 && CONST_INT_P (size
)
2686 && INTVAL (size
) == (HOST_WIDE_INT
) GET_MODE_SIZE (mode
))
2688 rtx zero
= CONST0_RTX (mode
);
2691 emit_move_insn (object
, zero
);
2695 if (COMPLEX_MODE_P (mode
))
2697 zero
= CONST0_RTX (GET_MODE_INNER (mode
));
2700 write_complex_part (object
, zero
, 0);
2701 write_complex_part (object
, zero
, 1);
2707 if (size
== const0_rtx
)
2710 align
= MEM_ALIGN (object
);
2712 if (CONST_INT_P (size
)
2713 && CLEAR_BY_PIECES_P (INTVAL (size
), align
))
2714 clear_by_pieces (object
, INTVAL (size
), align
);
2715 else if (set_storage_via_setmem (object
, size
, const0_rtx
, align
,
2716 expected_align
, expected_size
))
2718 else if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (object
)))
2719 return set_storage_via_libcall (object
, size
, const0_rtx
,
2720 method
== BLOCK_OP_TAILCALL
);
2728 clear_storage (rtx object
, rtx size
, enum block_op_methods method
)
2730 return clear_storage_hints (object
, size
, method
, 0, -1);
2734 /* A subroutine of clear_storage. Expand a call to memset.
2735 Return the return value of memset, 0 otherwise. */
2738 set_storage_via_libcall (rtx object
, rtx size
, rtx val
, bool tailcall
)
2740 tree call_expr
, fn
, object_tree
, size_tree
, val_tree
;
2741 enum machine_mode size_mode
;
2744 /* Emit code to copy OBJECT and SIZE into new pseudos. We can then
2745 place those into new pseudos into a VAR_DECL and use them later. */
2747 object
= copy_addr_to_reg (XEXP (object
, 0));
2749 size_mode
= TYPE_MODE (sizetype
);
2750 size
= convert_to_mode (size_mode
, size
, 1);
2751 size
= copy_to_mode_reg (size_mode
, size
);
2753 /* It is incorrect to use the libcall calling conventions to call
2754 memset in this context. This could be a user call to memset and
2755 the user may wish to examine the return value from memset. For
2756 targets where libcalls and normal calls have different conventions
2757 for returning pointers, we could end up generating incorrect code. */
2759 object_tree
= make_tree (ptr_type_node
, object
);
2760 if (!CONST_INT_P (val
))
2761 val
= convert_to_mode (TYPE_MODE (integer_type_node
), val
, 1);
2762 size_tree
= make_tree (sizetype
, size
);
2763 val_tree
= make_tree (integer_type_node
, val
);
2765 fn
= clear_storage_libcall_fn (true);
2766 call_expr
= build_call_expr (fn
, 3, object_tree
, val_tree
, size_tree
);
2767 CALL_EXPR_TAILCALL (call_expr
) = tailcall
;
2769 retval
= expand_normal (call_expr
);
2774 /* A subroutine of set_storage_via_libcall. Create the tree node
2775 for the function we use for block clears. */
2777 tree block_clear_fn
;
2780 init_block_clear_fn (const char *asmspec
)
2782 if (!block_clear_fn
)
2786 fn
= get_identifier ("memset");
2787 args
= build_function_type_list (ptr_type_node
, ptr_type_node
,
2788 integer_type_node
, sizetype
,
2791 fn
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
, fn
, args
);
2792 DECL_EXTERNAL (fn
) = 1;
2793 TREE_PUBLIC (fn
) = 1;
2794 DECL_ARTIFICIAL (fn
) = 1;
2795 TREE_NOTHROW (fn
) = 1;
2796 DECL_VISIBILITY (fn
) = VISIBILITY_DEFAULT
;
2797 DECL_VISIBILITY_SPECIFIED (fn
) = 1;
2799 block_clear_fn
= fn
;
2803 set_user_assembler_name (block_clear_fn
, asmspec
);
2807 clear_storage_libcall_fn (int for_call
)
2809 static bool emitted_extern
;
2811 if (!block_clear_fn
)
2812 init_block_clear_fn (NULL
);
2814 if (for_call
&& !emitted_extern
)
2816 emitted_extern
= true;
2817 make_decl_rtl (block_clear_fn
);
2820 return block_clear_fn
;
2823 /* Expand a setmem pattern; return true if successful. */
2826 set_storage_via_setmem (rtx object
, rtx size
, rtx val
, unsigned int align
,
2827 unsigned int expected_align
, HOST_WIDE_INT expected_size
)
2829 /* Try the most limited insn first, because there's no point
2830 including more than one in the machine description unless
2831 the more limited one has some advantage. */
2833 enum machine_mode mode
;
2835 if (expected_align
< align
)
2836 expected_align
= align
;
2838 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
); mode
!= VOIDmode
;
2839 mode
= GET_MODE_WIDER_MODE (mode
))
2841 enum insn_code code
= direct_optab_handler (setmem_optab
, mode
);
2843 if (code
!= CODE_FOR_nothing
2844 /* We don't need MODE to be narrower than
2845 BITS_PER_HOST_WIDE_INT here because if SIZE is less than
2846 the mode mask, as it is returned by the macro, it will
2847 definitely be less than the actual mode mask. */
2848 && ((CONST_INT_P (size
)
2849 && ((unsigned HOST_WIDE_INT
) INTVAL (size
)
2850 <= (GET_MODE_MASK (mode
) >> 1)))
2851 || GET_MODE_BITSIZE (mode
) >= BITS_PER_WORD
))
2853 struct expand_operand ops
[6];
2856 nops
= insn_data
[(int) code
].n_generator_args
;
2857 gcc_assert (nops
== 4 || nops
== 6);
2859 create_fixed_operand (&ops
[0], object
);
2860 /* The check above guarantees that this size conversion is valid. */
2861 create_convert_operand_to (&ops
[1], size
, mode
, true);
2862 create_convert_operand_from (&ops
[2], val
, byte_mode
, true);
2863 create_integer_operand (&ops
[3], align
/ BITS_PER_UNIT
);
2866 create_integer_operand (&ops
[4], expected_align
/ BITS_PER_UNIT
);
2867 create_integer_operand (&ops
[5], expected_size
);
2869 if (maybe_expand_insn (code
, nops
, ops
))
2878 /* Write to one of the components of the complex value CPLX. Write VAL to
2879 the real part if IMAG_P is false, and the imaginary part if its true. */
2882 write_complex_part (rtx cplx
, rtx val
, bool imag_p
)
2884 enum machine_mode cmode
;
2885 enum machine_mode imode
;
2888 if (GET_CODE (cplx
) == CONCAT
)
2890 emit_move_insn (XEXP (cplx
, imag_p
), val
);
2894 cmode
= GET_MODE (cplx
);
2895 imode
= GET_MODE_INNER (cmode
);
2896 ibitsize
= GET_MODE_BITSIZE (imode
);
2898 /* For MEMs simplify_gen_subreg may generate an invalid new address
2899 because, e.g., the original address is considered mode-dependent
2900 by the target, which restricts simplify_subreg from invoking
2901 adjust_address_nv. Instead of preparing fallback support for an
2902 invalid address, we call adjust_address_nv directly. */
2905 emit_move_insn (adjust_address_nv (cplx
, imode
,
2906 imag_p
? GET_MODE_SIZE (imode
) : 0),
2911 /* If the sub-object is at least word sized, then we know that subregging
2912 will work. This special case is important, since store_bit_field
2913 wants to operate on integer modes, and there's rarely an OImode to
2914 correspond to TCmode. */
2915 if (ibitsize
>= BITS_PER_WORD
2916 /* For hard regs we have exact predicates. Assume we can split
2917 the original object if it spans an even number of hard regs.
2918 This special case is important for SCmode on 64-bit platforms
2919 where the natural size of floating-point regs is 32-bit. */
2921 && REGNO (cplx
) < FIRST_PSEUDO_REGISTER
2922 && hard_regno_nregs
[REGNO (cplx
)][cmode
] % 2 == 0))
2924 rtx part
= simplify_gen_subreg (imode
, cplx
, cmode
,
2925 imag_p
? GET_MODE_SIZE (imode
) : 0);
2928 emit_move_insn (part
, val
);
2932 /* simplify_gen_subreg may fail for sub-word MEMs. */
2933 gcc_assert (MEM_P (cplx
) && ibitsize
< BITS_PER_WORD
);
2936 store_bit_field (cplx
, ibitsize
, imag_p
? ibitsize
: 0, 0, 0, imode
, val
);
2939 /* Extract one of the components of the complex value CPLX. Extract the
2940 real part if IMAG_P is false, and the imaginary part if it's true. */
2943 read_complex_part (rtx cplx
, bool imag_p
)
2945 enum machine_mode cmode
, imode
;
2948 if (GET_CODE (cplx
) == CONCAT
)
2949 return XEXP (cplx
, imag_p
);
2951 cmode
= GET_MODE (cplx
);
2952 imode
= GET_MODE_INNER (cmode
);
2953 ibitsize
= GET_MODE_BITSIZE (imode
);
2955 /* Special case reads from complex constants that got spilled to memory. */
2956 if (MEM_P (cplx
) && GET_CODE (XEXP (cplx
, 0)) == SYMBOL_REF
)
2958 tree decl
= SYMBOL_REF_DECL (XEXP (cplx
, 0));
2959 if (decl
&& TREE_CODE (decl
) == COMPLEX_CST
)
2961 tree part
= imag_p
? TREE_IMAGPART (decl
) : TREE_REALPART (decl
);
2962 if (CONSTANT_CLASS_P (part
))
2963 return expand_expr (part
, NULL_RTX
, imode
, EXPAND_NORMAL
);
2967 /* For MEMs simplify_gen_subreg may generate an invalid new address
2968 because, e.g., the original address is considered mode-dependent
2969 by the target, which restricts simplify_subreg from invoking
2970 adjust_address_nv. Instead of preparing fallback support for an
2971 invalid address, we call adjust_address_nv directly. */
2973 return adjust_address_nv (cplx
, imode
,
2974 imag_p
? GET_MODE_SIZE (imode
) : 0);
2976 /* If the sub-object is at least word sized, then we know that subregging
2977 will work. This special case is important, since extract_bit_field
2978 wants to operate on integer modes, and there's rarely an OImode to
2979 correspond to TCmode. */
2980 if (ibitsize
>= BITS_PER_WORD
2981 /* For hard regs we have exact predicates. Assume we can split
2982 the original object if it spans an even number of hard regs.
2983 This special case is important for SCmode on 64-bit platforms
2984 where the natural size of floating-point regs is 32-bit. */
2986 && REGNO (cplx
) < FIRST_PSEUDO_REGISTER
2987 && hard_regno_nregs
[REGNO (cplx
)][cmode
] % 2 == 0))
2989 rtx ret
= simplify_gen_subreg (imode
, cplx
, cmode
,
2990 imag_p
? GET_MODE_SIZE (imode
) : 0);
2994 /* simplify_gen_subreg may fail for sub-word MEMs. */
2995 gcc_assert (MEM_P (cplx
) && ibitsize
< BITS_PER_WORD
);
2998 return extract_bit_field (cplx
, ibitsize
, imag_p
? ibitsize
: 0,
2999 true, false, NULL_RTX
, imode
, imode
);
3002 /* A subroutine of emit_move_insn_1. Yet another lowpart generator.
3003 NEW_MODE and OLD_MODE are the same size. Return NULL if X cannot be
3004 represented in NEW_MODE. If FORCE is true, this will never happen, as
3005 we'll force-create a SUBREG if needed. */
3008 emit_move_change_mode (enum machine_mode new_mode
,
3009 enum machine_mode old_mode
, rtx x
, bool force
)
3013 if (push_operand (x
, GET_MODE (x
)))
3015 ret
= gen_rtx_MEM (new_mode
, XEXP (x
, 0));
3016 MEM_COPY_ATTRIBUTES (ret
, x
);
3020 /* We don't have to worry about changing the address since the
3021 size in bytes is supposed to be the same. */
3022 if (reload_in_progress
)
3024 /* Copy the MEM to change the mode and move any
3025 substitutions from the old MEM to the new one. */
3026 ret
= adjust_address_nv (x
, new_mode
, 0);
3027 copy_replacements (x
, ret
);
3030 ret
= adjust_address (x
, new_mode
, 0);
3034 /* Note that we do want simplify_subreg's behavior of validating
3035 that the new mode is ok for a hard register. If we were to use
3036 simplify_gen_subreg, we would create the subreg, but would
3037 probably run into the target not being able to implement it. */
3038 /* Except, of course, when FORCE is true, when this is exactly what
3039 we want. Which is needed for CCmodes on some targets. */
3041 ret
= simplify_gen_subreg (new_mode
, x
, old_mode
, 0);
3043 ret
= simplify_subreg (new_mode
, x
, old_mode
, 0);
3049 /* A subroutine of emit_move_insn_1. Generate a move from Y into X using
3050 an integer mode of the same size as MODE. Returns the instruction
3051 emitted, or NULL if such a move could not be generated. */
3054 emit_move_via_integer (enum machine_mode mode
, rtx x
, rtx y
, bool force
)
3056 enum machine_mode imode
;
3057 enum insn_code code
;
3059 /* There must exist a mode of the exact size we require. */
3060 imode
= int_mode_for_mode (mode
);
3061 if (imode
== BLKmode
)
3064 /* The target must support moves in this mode. */
3065 code
= optab_handler (mov_optab
, imode
);
3066 if (code
== CODE_FOR_nothing
)
3069 x
= emit_move_change_mode (imode
, mode
, x
, force
);
3072 y
= emit_move_change_mode (imode
, mode
, y
, force
);
3075 return emit_insn (GEN_FCN (code
) (x
, y
));
3078 /* A subroutine of emit_move_insn_1. X is a push_operand in MODE.
3079 Return an equivalent MEM that does not use an auto-increment. */
3082 emit_move_resolve_push (enum machine_mode mode
, rtx x
)
3084 enum rtx_code code
= GET_CODE (XEXP (x
, 0));
3085 HOST_WIDE_INT adjust
;
3088 adjust
= GET_MODE_SIZE (mode
);
3089 #ifdef PUSH_ROUNDING
3090 adjust
= PUSH_ROUNDING (adjust
);
3092 if (code
== PRE_DEC
|| code
== POST_DEC
)
3094 else if (code
== PRE_MODIFY
|| code
== POST_MODIFY
)
3096 rtx expr
= XEXP (XEXP (x
, 0), 1);
3099 gcc_assert (GET_CODE (expr
) == PLUS
|| GET_CODE (expr
) == MINUS
);
3100 gcc_assert (CONST_INT_P (XEXP (expr
, 1)));
3101 val
= INTVAL (XEXP (expr
, 1));
3102 if (GET_CODE (expr
) == MINUS
)
3104 gcc_assert (adjust
== val
|| adjust
== -val
);
3108 /* Do not use anti_adjust_stack, since we don't want to update
3109 stack_pointer_delta. */
3110 temp
= expand_simple_binop (Pmode
, PLUS
, stack_pointer_rtx
,
3111 GEN_INT (adjust
), stack_pointer_rtx
,
3112 0, OPTAB_LIB_WIDEN
);
3113 if (temp
!= stack_pointer_rtx
)
3114 emit_move_insn (stack_pointer_rtx
, temp
);
3121 temp
= stack_pointer_rtx
;
3126 temp
= plus_constant (Pmode
, stack_pointer_rtx
, -adjust
);
3132 return replace_equiv_address (x
, temp
);
3135 /* A subroutine of emit_move_complex. Generate a move from Y into X.
3136 X is known to satisfy push_operand, and MODE is known to be complex.
3137 Returns the last instruction emitted. */
3140 emit_move_complex_push (enum machine_mode mode
, rtx x
, rtx y
)
3142 enum machine_mode submode
= GET_MODE_INNER (mode
);
3145 #ifdef PUSH_ROUNDING
3146 unsigned int submodesize
= GET_MODE_SIZE (submode
);
3148 /* In case we output to the stack, but the size is smaller than the
3149 machine can push exactly, we need to use move instructions. */
3150 if (PUSH_ROUNDING (submodesize
) != submodesize
)
3152 x
= emit_move_resolve_push (mode
, x
);
3153 return emit_move_insn (x
, y
);
3157 /* Note that the real part always precedes the imag part in memory
3158 regardless of machine's endianness. */
3159 switch (GET_CODE (XEXP (x
, 0)))
3173 emit_move_insn (gen_rtx_MEM (submode
, XEXP (x
, 0)),
3174 read_complex_part (y
, imag_first
));
3175 return emit_move_insn (gen_rtx_MEM (submode
, XEXP (x
, 0)),
3176 read_complex_part (y
, !imag_first
));
3179 /* A subroutine of emit_move_complex. Perform the move from Y to X
3180 via two moves of the parts. Returns the last instruction emitted. */
3183 emit_move_complex_parts (rtx x
, rtx y
)
3185 /* Show the output dies here. This is necessary for SUBREGs
3186 of pseudos since we cannot track their lifetimes correctly;
3187 hard regs shouldn't appear here except as return values. */
3188 if (!reload_completed
&& !reload_in_progress
3189 && REG_P (x
) && !reg_overlap_mentioned_p (x
, y
))
3192 write_complex_part (x
, read_complex_part (y
, false), false);
3193 write_complex_part (x
, read_complex_part (y
, true), true);
3195 return get_last_insn ();
3198 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3199 MODE is known to be complex. Returns the last instruction emitted. */
3202 emit_move_complex (enum machine_mode mode
, rtx x
, rtx y
)
3206 /* Need to take special care for pushes, to maintain proper ordering
3207 of the data, and possibly extra padding. */
3208 if (push_operand (x
, mode
))
3209 return emit_move_complex_push (mode
, x
, y
);
3211 /* See if we can coerce the target into moving both values at once. */
3213 /* Move floating point as parts. */
3214 if (GET_MODE_CLASS (mode
) == MODE_COMPLEX_FLOAT
3215 && optab_handler (mov_optab
, GET_MODE_INNER (mode
)) != CODE_FOR_nothing
)
3217 /* Not possible if the values are inherently not adjacent. */
3218 else if (GET_CODE (x
) == CONCAT
|| GET_CODE (y
) == CONCAT
)
3220 /* Is possible if both are registers (or subregs of registers). */
3221 else if (register_operand (x
, mode
) && register_operand (y
, mode
))
3223 /* If one of the operands is a memory, and alignment constraints
3224 are friendly enough, we may be able to do combined memory operations.
3225 We do not attempt this if Y is a constant because that combination is
3226 usually better with the by-parts thing below. */
3227 else if ((MEM_P (x
) ? !CONSTANT_P (y
) : MEM_P (y
))
3228 && (!STRICT_ALIGNMENT
3229 || get_mode_alignment (mode
) == BIGGEST_ALIGNMENT
))
3238 /* For memory to memory moves, optimal behavior can be had with the
3239 existing block move logic. */
3240 if (MEM_P (x
) && MEM_P (y
))
3242 emit_block_move (x
, y
, GEN_INT (GET_MODE_SIZE (mode
)),
3243 BLOCK_OP_NO_LIBCALL
);
3244 return get_last_insn ();
3247 ret
= emit_move_via_integer (mode
, x
, y
, true);
3252 return emit_move_complex_parts (x
, y
);
3255 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3256 MODE is known to be MODE_CC. Returns the last instruction emitted. */
3259 emit_move_ccmode (enum machine_mode mode
, rtx x
, rtx y
)
3263 /* Assume all MODE_CC modes are equivalent; if we have movcc, use it. */
3266 enum insn_code code
= optab_handler (mov_optab
, CCmode
);
3267 if (code
!= CODE_FOR_nothing
)
3269 x
= emit_move_change_mode (CCmode
, mode
, x
, true);
3270 y
= emit_move_change_mode (CCmode
, mode
, y
, true);
3271 return emit_insn (GEN_FCN (code
) (x
, y
));
3275 /* Otherwise, find the MODE_INT mode of the same width. */
3276 ret
= emit_move_via_integer (mode
, x
, y
, false);
3277 gcc_assert (ret
!= NULL
);
3281 /* Return true if word I of OP lies entirely in the
3282 undefined bits of a paradoxical subreg. */
3285 undefined_operand_subword_p (const_rtx op
, int i
)
3287 enum machine_mode innermode
, innermostmode
;
3289 if (GET_CODE (op
) != SUBREG
)
3291 innermode
= GET_MODE (op
);
3292 innermostmode
= GET_MODE (SUBREG_REG (op
));
3293 offset
= i
* UNITS_PER_WORD
+ SUBREG_BYTE (op
);
3294 /* The SUBREG_BYTE represents offset, as if the value were stored in
3295 memory, except for a paradoxical subreg where we define
3296 SUBREG_BYTE to be 0; undo this exception as in
3298 if (SUBREG_BYTE (op
) == 0
3299 && GET_MODE_SIZE (innermostmode
) < GET_MODE_SIZE (innermode
))
3301 int difference
= (GET_MODE_SIZE (innermostmode
) - GET_MODE_SIZE (innermode
));
3302 if (WORDS_BIG_ENDIAN
)
3303 offset
+= (difference
/ UNITS_PER_WORD
) * UNITS_PER_WORD
;
3304 if (BYTES_BIG_ENDIAN
)
3305 offset
+= difference
% UNITS_PER_WORD
;
3307 if (offset
>= GET_MODE_SIZE (innermostmode
)
3308 || offset
<= -GET_MODE_SIZE (word_mode
))
3313 /* A subroutine of emit_move_insn_1. Generate a move from Y into X.
3314 MODE is any multi-word or full-word mode that lacks a move_insn
3315 pattern. Note that you will get better code if you define such
3316 patterns, even if they must turn into multiple assembler instructions. */
3319 emit_move_multi_word (enum machine_mode mode
, rtx x
, rtx y
)
3326 gcc_assert (GET_MODE_SIZE (mode
) >= UNITS_PER_WORD
);
3328 /* If X is a push on the stack, do the push now and replace
3329 X with a reference to the stack pointer. */
3330 if (push_operand (x
, mode
))
3331 x
= emit_move_resolve_push (mode
, x
);
3333 /* If we are in reload, see if either operand is a MEM whose address
3334 is scheduled for replacement. */
3335 if (reload_in_progress
&& MEM_P (x
)
3336 && (inner
= find_replacement (&XEXP (x
, 0))) != XEXP (x
, 0))
3337 x
= replace_equiv_address_nv (x
, inner
);
3338 if (reload_in_progress
&& MEM_P (y
)
3339 && (inner
= find_replacement (&XEXP (y
, 0))) != XEXP (y
, 0))
3340 y
= replace_equiv_address_nv (y
, inner
);
3344 need_clobber
= false;
3346 i
< (GET_MODE_SIZE (mode
) + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
;
3349 rtx xpart
= operand_subword (x
, i
, 1, mode
);
3352 /* Do not generate code for a move if it would come entirely
3353 from the undefined bits of a paradoxical subreg. */
3354 if (undefined_operand_subword_p (y
, i
))
3357 ypart
= operand_subword (y
, i
, 1, mode
);
3359 /* If we can't get a part of Y, put Y into memory if it is a
3360 constant. Otherwise, force it into a register. Then we must
3361 be able to get a part of Y. */
3362 if (ypart
== 0 && CONSTANT_P (y
))
3364 y
= use_anchored_address (force_const_mem (mode
, y
));
3365 ypart
= operand_subword (y
, i
, 1, mode
);
3367 else if (ypart
== 0)
3368 ypart
= operand_subword_force (y
, i
, mode
);
3370 gcc_assert (xpart
&& ypart
);
3372 need_clobber
|= (GET_CODE (xpart
) == SUBREG
);
3374 last_insn
= emit_move_insn (xpart
, ypart
);
3380 /* Show the output dies here. This is necessary for SUBREGs
3381 of pseudos since we cannot track their lifetimes correctly;
3382 hard regs shouldn't appear here except as return values.
3383 We never want to emit such a clobber after reload. */
3385 && ! (reload_in_progress
|| reload_completed
)
3386 && need_clobber
!= 0)
3394 /* Low level part of emit_move_insn.
3395 Called just like emit_move_insn, but assumes X and Y
3396 are basically valid. */
3399 emit_move_insn_1 (rtx x
, rtx y
)
3401 enum machine_mode mode
= GET_MODE (x
);
3402 enum insn_code code
;
3404 gcc_assert ((unsigned int) mode
< (unsigned int) MAX_MACHINE_MODE
);
3406 code
= optab_handler (mov_optab
, mode
);
3407 if (code
!= CODE_FOR_nothing
)
3408 return emit_insn (GEN_FCN (code
) (x
, y
));
3410 /* Expand complex moves by moving real part and imag part. */
3411 if (COMPLEX_MODE_P (mode
))
3412 return emit_move_complex (mode
, x
, y
);
3414 if (GET_MODE_CLASS (mode
) == MODE_DECIMAL_FLOAT
3415 || ALL_FIXED_POINT_MODE_P (mode
))
3417 rtx result
= emit_move_via_integer (mode
, x
, y
, true);
3419 /* If we can't find an integer mode, use multi words. */
3423 return emit_move_multi_word (mode
, x
, y
);
3426 if (GET_MODE_CLASS (mode
) == MODE_CC
)
3427 return emit_move_ccmode (mode
, x
, y
);
3429 /* Try using a move pattern for the corresponding integer mode. This is
3430 only safe when simplify_subreg can convert MODE constants into integer
3431 constants. At present, it can only do this reliably if the value
3432 fits within a HOST_WIDE_INT. */
3433 if (!CONSTANT_P (y
) || GET_MODE_BITSIZE (mode
) <= HOST_BITS_PER_WIDE_INT
)
3435 rtx ret
= emit_move_via_integer (mode
, x
, y
, false);
3440 return emit_move_multi_word (mode
, x
, y
);
3443 /* Generate code to copy Y into X.
3444 Both Y and X must have the same mode, except that
3445 Y can be a constant with VOIDmode.
3446 This mode cannot be BLKmode; use emit_block_move for that.
3448 Return the last instruction emitted. */
3451 emit_move_insn (rtx x
, rtx y
)
3453 enum machine_mode mode
= GET_MODE (x
);
3454 rtx y_cst
= NULL_RTX
;
3457 gcc_assert (mode
!= BLKmode
3458 && (GET_MODE (y
) == mode
|| GET_MODE (y
) == VOIDmode
));
3463 && SCALAR_FLOAT_MODE_P (GET_MODE (x
))
3464 && (last_insn
= compress_float_constant (x
, y
)))
3469 if (!targetm
.legitimate_constant_p (mode
, y
))
3471 y
= force_const_mem (mode
, y
);
3473 /* If the target's cannot_force_const_mem prevented the spill,
3474 assume that the target's move expanders will also take care
3475 of the non-legitimate constant. */
3479 y
= use_anchored_address (y
);
3483 /* If X or Y are memory references, verify that their addresses are valid
3486 && (! memory_address_addr_space_p (GET_MODE (x
), XEXP (x
, 0),
3488 && ! push_operand (x
, GET_MODE (x
))))
3489 x
= validize_mem (x
);
3492 && ! memory_address_addr_space_p (GET_MODE (y
), XEXP (y
, 0),
3493 MEM_ADDR_SPACE (y
)))
3494 y
= validize_mem (y
);
3496 gcc_assert (mode
!= BLKmode
);
3498 last_insn
= emit_move_insn_1 (x
, y
);
3500 if (y_cst
&& REG_P (x
)
3501 && (set
= single_set (last_insn
)) != NULL_RTX
3502 && SET_DEST (set
) == x
3503 && ! rtx_equal_p (y_cst
, SET_SRC (set
)))
3504 set_unique_reg_note (last_insn
, REG_EQUAL
, copy_rtx (y_cst
));
3509 /* If Y is representable exactly in a narrower mode, and the target can
3510 perform the extension directly from constant or memory, then emit the
3511 move as an extension. */
3514 compress_float_constant (rtx x
, rtx y
)
3516 enum machine_mode dstmode
= GET_MODE (x
);
3517 enum machine_mode orig_srcmode
= GET_MODE (y
);
3518 enum machine_mode srcmode
;
3520 int oldcost
, newcost
;
3521 bool speed
= optimize_insn_for_speed_p ();
3523 REAL_VALUE_FROM_CONST_DOUBLE (r
, y
);
3525 if (targetm
.legitimate_constant_p (dstmode
, y
))
3526 oldcost
= set_src_cost (y
, speed
);
3528 oldcost
= set_src_cost (force_const_mem (dstmode
, y
), speed
);
3530 for (srcmode
= GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_srcmode
));
3531 srcmode
!= orig_srcmode
;
3532 srcmode
= GET_MODE_WIDER_MODE (srcmode
))
3535 rtx trunc_y
, last_insn
;
3537 /* Skip if the target can't extend this way. */
3538 ic
= can_extend_p (dstmode
, srcmode
, 0);
3539 if (ic
== CODE_FOR_nothing
)
3542 /* Skip if the narrowed value isn't exact. */
3543 if (! exact_real_truncate (srcmode
, &r
))
3546 trunc_y
= CONST_DOUBLE_FROM_REAL_VALUE (r
, srcmode
);
3548 if (targetm
.legitimate_constant_p (srcmode
, trunc_y
))
3550 /* Skip if the target needs extra instructions to perform
3552 if (!insn_operand_matches (ic
, 1, trunc_y
))
3554 /* This is valid, but may not be cheaper than the original. */
3555 newcost
= set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode
, trunc_y
),
3557 if (oldcost
< newcost
)
3560 else if (float_extend_from_mem
[dstmode
][srcmode
])
3562 trunc_y
= force_const_mem (srcmode
, trunc_y
);
3563 /* This is valid, but may not be cheaper than the original. */
3564 newcost
= set_src_cost (gen_rtx_FLOAT_EXTEND (dstmode
, trunc_y
),
3566 if (oldcost
< newcost
)
3568 trunc_y
= validize_mem (trunc_y
);
3573 /* For CSE's benefit, force the compressed constant pool entry
3574 into a new pseudo. This constant may be used in different modes,
3575 and if not, combine will put things back together for us. */
3576 trunc_y
= force_reg (srcmode
, trunc_y
);
3577 emit_unop_insn (ic
, x
, trunc_y
, UNKNOWN
);
3578 last_insn
= get_last_insn ();
3581 set_unique_reg_note (last_insn
, REG_EQUAL
, y
);
3589 /* Pushing data onto the stack. */
3591 /* Push a block of length SIZE (perhaps variable)
3592 and return an rtx to address the beginning of the block.
3593 The value may be virtual_outgoing_args_rtx.
3595 EXTRA is the number of bytes of padding to push in addition to SIZE.
3596 BELOW nonzero means this padding comes at low addresses;
3597 otherwise, the padding comes at high addresses. */
3600 push_block (rtx size
, int extra
, int below
)
3604 size
= convert_modes (Pmode
, ptr_mode
, size
, 1);
3605 if (CONSTANT_P (size
))
3606 anti_adjust_stack (plus_constant (Pmode
, size
, extra
));
3607 else if (REG_P (size
) && extra
== 0)
3608 anti_adjust_stack (size
);
3611 temp
= copy_to_mode_reg (Pmode
, size
);
3613 temp
= expand_binop (Pmode
, add_optab
, temp
, GEN_INT (extra
),
3614 temp
, 0, OPTAB_LIB_WIDEN
);
3615 anti_adjust_stack (temp
);
3618 #ifndef STACK_GROWS_DOWNWARD
3624 temp
= virtual_outgoing_args_rtx
;
3625 if (extra
!= 0 && below
)
3626 temp
= plus_constant (Pmode
, temp
, extra
);
3630 if (CONST_INT_P (size
))
3631 temp
= plus_constant (Pmode
, virtual_outgoing_args_rtx
,
3632 -INTVAL (size
) - (below
? 0 : extra
));
3633 else if (extra
!= 0 && !below
)
3634 temp
= gen_rtx_PLUS (Pmode
, virtual_outgoing_args_rtx
,
3635 negate_rtx (Pmode
, plus_constant (Pmode
, size
,
3638 temp
= gen_rtx_PLUS (Pmode
, virtual_outgoing_args_rtx
,
3639 negate_rtx (Pmode
, size
));
3642 return memory_address (GET_CLASS_NARROWEST_MODE (MODE_INT
), temp
);
3645 /* A utility routine that returns the base of an auto-inc memory, or NULL. */
3648 mem_autoinc_base (rtx mem
)
3652 rtx addr
= XEXP (mem
, 0);
3653 if (GET_RTX_CLASS (GET_CODE (addr
)) == RTX_AUTOINC
)
3654 return XEXP (addr
, 0);
3659 /* A utility routine used here, in reload, and in try_split. The insns
3660 after PREV up to and including LAST are known to adjust the stack,
3661 with a final value of END_ARGS_SIZE. Iterate backward from LAST
3662 placing notes as appropriate. PREV may be NULL, indicating the
3663 entire insn sequence prior to LAST should be scanned.
3665 The set of allowed stack pointer modifications is small:
3666 (1) One or more auto-inc style memory references (aka pushes),
3667 (2) One or more addition/subtraction with the SP as destination,
3668 (3) A single move insn with the SP as destination,
3669 (4) A call_pop insn,
3670 (5) Noreturn call insns if !ACCUMULATE_OUTGOING_ARGS.
3672 Insns in the sequence that do not modify the SP are ignored,
3673 except for noreturn calls.
3675 The return value is the amount of adjustment that can be trivially
3676 verified, via immediate operand or auto-inc. If the adjustment
3677 cannot be trivially extracted, the return value is INT_MIN. */
3680 find_args_size_adjust (rtx insn
)
3685 pat
= PATTERN (insn
);
3688 /* Look for a call_pop pattern. */
3691 /* We have to allow non-call_pop patterns for the case
3692 of emit_single_push_insn of a TLS address. */
3693 if (GET_CODE (pat
) != PARALLEL
)
3696 /* All call_pop have a stack pointer adjust in the parallel.
3697 The call itself is always first, and the stack adjust is
3698 usually last, so search from the end. */
3699 for (i
= XVECLEN (pat
, 0) - 1; i
> 0; --i
)
3701 set
= XVECEXP (pat
, 0, i
);
3702 if (GET_CODE (set
) != SET
)
3704 dest
= SET_DEST (set
);
3705 if (dest
== stack_pointer_rtx
)
3708 /* We'd better have found the stack pointer adjust. */
3711 /* Fall through to process the extracted SET and DEST
3712 as if it was a standalone insn. */
3714 else if (GET_CODE (pat
) == SET
)
3716 else if ((set
= single_set (insn
)) != NULL
)
3718 else if (GET_CODE (pat
) == PARALLEL
)
3720 /* ??? Some older ports use a parallel with a stack adjust
3721 and a store for a PUSH_ROUNDING pattern, rather than a
3722 PRE/POST_MODIFY rtx. Don't force them to update yet... */
3723 /* ??? See h8300 and m68k, pushqi1. */
3724 for (i
= XVECLEN (pat
, 0) - 1; i
>= 0; --i
)
3726 set
= XVECEXP (pat
, 0, i
);
3727 if (GET_CODE (set
) != SET
)
3729 dest
= SET_DEST (set
);
3730 if (dest
== stack_pointer_rtx
)
3733 /* We do not expect an auto-inc of the sp in the parallel. */
3734 gcc_checking_assert (mem_autoinc_base (dest
) != stack_pointer_rtx
);
3735 gcc_checking_assert (mem_autoinc_base (SET_SRC (set
))
3736 != stack_pointer_rtx
);
3744 dest
= SET_DEST (set
);
3746 /* Look for direct modifications of the stack pointer. */
3747 if (REG_P (dest
) && REGNO (dest
) == STACK_POINTER_REGNUM
)
3749 /* Look for a trivial adjustment, otherwise assume nothing. */
3750 /* Note that the SPU restore_stack_block pattern refers to
3751 the stack pointer in V4SImode. Consider that non-trivial. */
3752 if (SCALAR_INT_MODE_P (GET_MODE (dest
))
3753 && GET_CODE (SET_SRC (set
)) == PLUS
3754 && XEXP (SET_SRC (set
), 0) == stack_pointer_rtx
3755 && CONST_INT_P (XEXP (SET_SRC (set
), 1)))
3756 return INTVAL (XEXP (SET_SRC (set
), 1));
3757 /* ??? Reload can generate no-op moves, which will be cleaned
3758 up later. Recognize it and continue searching. */
3759 else if (rtx_equal_p (dest
, SET_SRC (set
)))
3762 return HOST_WIDE_INT_MIN
;
3768 /* Otherwise only think about autoinc patterns. */
3769 if (mem_autoinc_base (dest
) == stack_pointer_rtx
)
3772 gcc_checking_assert (mem_autoinc_base (SET_SRC (set
))
3773 != stack_pointer_rtx
);
3775 else if (mem_autoinc_base (SET_SRC (set
)) == stack_pointer_rtx
)
3776 mem
= SET_SRC (set
);
3780 addr
= XEXP (mem
, 0);
3781 switch (GET_CODE (addr
))
3785 return GET_MODE_SIZE (GET_MODE (mem
));
3788 return -GET_MODE_SIZE (GET_MODE (mem
));
3791 addr
= XEXP (addr
, 1);
3792 gcc_assert (GET_CODE (addr
) == PLUS
);
3793 gcc_assert (XEXP (addr
, 0) == stack_pointer_rtx
);
3794 gcc_assert (CONST_INT_P (XEXP (addr
, 1)));
3795 return INTVAL (XEXP (addr
, 1));
3803 fixup_args_size_notes (rtx prev
, rtx last
, int end_args_size
)
3805 int args_size
= end_args_size
;
3806 bool saw_unknown
= false;
3809 for (insn
= last
; insn
!= prev
; insn
= PREV_INSN (insn
))
3811 HOST_WIDE_INT this_delta
;
3813 if (!NONDEBUG_INSN_P (insn
))
3816 this_delta
= find_args_size_adjust (insn
);
3817 if (this_delta
== 0)
3820 || ACCUMULATE_OUTGOING_ARGS
3821 || find_reg_note (insn
, REG_NORETURN
, NULL_RTX
) == NULL_RTX
)
3825 gcc_assert (!saw_unknown
);
3826 if (this_delta
== HOST_WIDE_INT_MIN
)
3829 add_reg_note (insn
, REG_ARGS_SIZE
, GEN_INT (args_size
));
3830 #ifdef STACK_GROWS_DOWNWARD
3831 this_delta
= -(unsigned HOST_WIDE_INT
) this_delta
;
3833 args_size
-= this_delta
;
3836 return saw_unknown
? INT_MIN
: args_size
;
3839 #ifdef PUSH_ROUNDING
3840 /* Emit single push insn. */
3843 emit_single_push_insn_1 (enum machine_mode mode
, rtx x
, tree type
)
3846 unsigned rounded_size
= PUSH_ROUNDING (GET_MODE_SIZE (mode
));
3848 enum insn_code icode
;
3850 stack_pointer_delta
+= PUSH_ROUNDING (GET_MODE_SIZE (mode
));
3851 /* If there is push pattern, use it. Otherwise try old way of throwing
3852 MEM representing push operation to move expander. */
3853 icode
= optab_handler (push_optab
, mode
);
3854 if (icode
!= CODE_FOR_nothing
)
3856 struct expand_operand ops
[1];
3858 create_input_operand (&ops
[0], x
, mode
);
3859 if (maybe_expand_insn (icode
, 1, ops
))
3862 if (GET_MODE_SIZE (mode
) == rounded_size
)
3863 dest_addr
= gen_rtx_fmt_e (STACK_PUSH_CODE
, Pmode
, stack_pointer_rtx
);
3864 /* If we are to pad downward, adjust the stack pointer first and
3865 then store X into the stack location using an offset. This is
3866 because emit_move_insn does not know how to pad; it does not have
3868 else if (FUNCTION_ARG_PADDING (mode
, type
) == downward
)
3870 unsigned padding_size
= rounded_size
- GET_MODE_SIZE (mode
);
3871 HOST_WIDE_INT offset
;
3873 emit_move_insn (stack_pointer_rtx
,
3874 expand_binop (Pmode
,
3875 #ifdef STACK_GROWS_DOWNWARD
3881 GEN_INT (rounded_size
),
3882 NULL_RTX
, 0, OPTAB_LIB_WIDEN
));
3884 offset
= (HOST_WIDE_INT
) padding_size
;
3885 #ifdef STACK_GROWS_DOWNWARD
3886 if (STACK_PUSH_CODE
== POST_DEC
)
3887 /* We have already decremented the stack pointer, so get the
3889 offset
+= (HOST_WIDE_INT
) rounded_size
;
3891 if (STACK_PUSH_CODE
== POST_INC
)
3892 /* We have already incremented the stack pointer, so get the
3894 offset
-= (HOST_WIDE_INT
) rounded_size
;
3896 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
, GEN_INT (offset
));
3900 #ifdef STACK_GROWS_DOWNWARD
3901 /* ??? This seems wrong if STACK_PUSH_CODE == POST_DEC. */
3902 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
,
3903 GEN_INT (-(HOST_WIDE_INT
) rounded_size
));
3905 /* ??? This seems wrong if STACK_PUSH_CODE == POST_INC. */
3906 dest_addr
= gen_rtx_PLUS (Pmode
, stack_pointer_rtx
,
3907 GEN_INT (rounded_size
));
3909 dest_addr
= gen_rtx_PRE_MODIFY (Pmode
, stack_pointer_rtx
, dest_addr
);
3912 dest
= gen_rtx_MEM (mode
, dest_addr
);
3916 set_mem_attributes (dest
, type
, 1);
3918 if (flag_optimize_sibling_calls
)
3919 /* Function incoming arguments may overlap with sibling call
3920 outgoing arguments and we cannot allow reordering of reads
3921 from function arguments with stores to outgoing arguments
3922 of sibling calls. */
3923 set_mem_alias_set (dest
, 0);
3925 emit_move_insn (dest
, x
);
3928 /* Emit and annotate a single push insn. */
3931 emit_single_push_insn (enum machine_mode mode
, rtx x
, tree type
)
3933 int delta
, old_delta
= stack_pointer_delta
;
3934 rtx prev
= get_last_insn ();
3937 emit_single_push_insn_1 (mode
, x
, type
);
3939 last
= get_last_insn ();
3941 /* Notice the common case where we emitted exactly one insn. */
3942 if (PREV_INSN (last
) == prev
)
3944 add_reg_note (last
, REG_ARGS_SIZE
, GEN_INT (stack_pointer_delta
));
3948 delta
= fixup_args_size_notes (prev
, last
, stack_pointer_delta
);
3949 gcc_assert (delta
== INT_MIN
|| delta
== old_delta
);
3953 /* Generate code to push X onto the stack, assuming it has mode MODE and
3955 MODE is redundant except when X is a CONST_INT (since they don't
3957 SIZE is an rtx for the size of data to be copied (in bytes),
3958 needed only if X is BLKmode.
3960 ALIGN (in bits) is maximum alignment we can assume.
3962 If PARTIAL and REG are both nonzero, then copy that many of the first
3963 bytes of X into registers starting with REG, and push the rest of X.
3964 The amount of space pushed is decreased by PARTIAL bytes.
3965 REG must be a hard register in this case.
3966 If REG is zero but PARTIAL is not, take any all others actions for an
3967 argument partially in registers, but do not actually load any
3970 EXTRA is the amount in bytes of extra space to leave next to this arg.
3971 This is ignored if an argument block has already been allocated.
3973 On a machine that lacks real push insns, ARGS_ADDR is the address of
3974 the bottom of the argument block for this call. We use indexing off there
3975 to store the arg. On machines with push insns, ARGS_ADDR is 0 when a
3976 argument block has not been preallocated.
3978 ARGS_SO_FAR is the size of args previously pushed for this call.
3980 REG_PARM_STACK_SPACE is nonzero if functions require stack space
3981 for arguments passed in registers. If nonzero, it will be the number
3982 of bytes required. */
3985 emit_push_insn (rtx x
, enum machine_mode mode
, tree type
, rtx size
,
3986 unsigned int align
, int partial
, rtx reg
, int extra
,
3987 rtx args_addr
, rtx args_so_far
, int reg_parm_stack_space
,
3991 enum direction stack_direction
3992 #ifdef STACK_GROWS_DOWNWARD
3998 /* Decide where to pad the argument: `downward' for below,
3999 `upward' for above, or `none' for don't pad it.
4000 Default is below for small data on big-endian machines; else above. */
4001 enum direction where_pad
= FUNCTION_ARG_PADDING (mode
, type
);
4003 /* Invert direction if stack is post-decrement.
4005 if (STACK_PUSH_CODE
== POST_DEC
)
4006 if (where_pad
!= none
)
4007 where_pad
= (where_pad
== downward
? upward
: downward
);
4012 || (STRICT_ALIGNMENT
&& align
< GET_MODE_ALIGNMENT (mode
)))
4014 /* Copy a block into the stack, entirely or partially. */
4021 offset
= partial
% (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4022 used
= partial
- offset
;
4024 if (mode
!= BLKmode
)
4026 /* A value is to be stored in an insufficiently aligned
4027 stack slot; copy via a suitably aligned slot if
4029 size
= GEN_INT (GET_MODE_SIZE (mode
));
4030 if (!MEM_P (xinner
))
4032 temp
= assign_temp (type
, 1, 1);
4033 emit_move_insn (temp
, xinner
);
4040 /* USED is now the # of bytes we need not copy to the stack
4041 because registers will take care of them. */
4044 xinner
= adjust_address (xinner
, BLKmode
, used
);
4046 /* If the partial register-part of the arg counts in its stack size,
4047 skip the part of stack space corresponding to the registers.
4048 Otherwise, start copying to the beginning of the stack space,
4049 by setting SKIP to 0. */
4050 skip
= (reg_parm_stack_space
== 0) ? 0 : used
;
4052 #ifdef PUSH_ROUNDING
4053 /* Do it with several push insns if that doesn't take lots of insns
4054 and if there is no difficulty with push insns that skip bytes
4055 on the stack for alignment purposes. */
4058 && CONST_INT_P (size
)
4060 && MEM_ALIGN (xinner
) >= align
4061 && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size
) - used
, align
))
4062 /* Here we avoid the case of a structure whose weak alignment
4063 forces many pushes of a small amount of data,
4064 and such small pushes do rounding that causes trouble. */
4065 && ((! SLOW_UNALIGNED_ACCESS (word_mode
, align
))
4066 || align
>= BIGGEST_ALIGNMENT
4067 || (PUSH_ROUNDING (align
/ BITS_PER_UNIT
)
4068 == (align
/ BITS_PER_UNIT
)))
4069 && (HOST_WIDE_INT
) PUSH_ROUNDING (INTVAL (size
)) == INTVAL (size
))
4071 /* Push padding now if padding above and stack grows down,
4072 or if padding below and stack grows up.
4073 But if space already allocated, this has already been done. */
4074 if (extra
&& args_addr
== 0
4075 && where_pad
!= none
&& where_pad
!= stack_direction
)
4076 anti_adjust_stack (GEN_INT (extra
));
4078 move_by_pieces (NULL
, xinner
, INTVAL (size
) - used
, align
, 0);
4081 #endif /* PUSH_ROUNDING */
4085 /* Otherwise make space on the stack and copy the data
4086 to the address of that space. */
4088 /* Deduct words put into registers from the size we must copy. */
4091 if (CONST_INT_P (size
))
4092 size
= GEN_INT (INTVAL (size
) - used
);
4094 size
= expand_binop (GET_MODE (size
), sub_optab
, size
,
4095 GEN_INT (used
), NULL_RTX
, 0,
4099 /* Get the address of the stack space.
4100 In this case, we do not deal with EXTRA separately.
4101 A single stack adjust will do. */
4104 temp
= push_block (size
, extra
, where_pad
== downward
);
4107 else if (CONST_INT_P (args_so_far
))
4108 temp
= memory_address (BLKmode
,
4109 plus_constant (Pmode
, args_addr
,
4110 skip
+ INTVAL (args_so_far
)));
4112 temp
= memory_address (BLKmode
,
4113 plus_constant (Pmode
,
4114 gen_rtx_PLUS (Pmode
,
4119 if (!ACCUMULATE_OUTGOING_ARGS
)
4121 /* If the source is referenced relative to the stack pointer,
4122 copy it to another register to stabilize it. We do not need
4123 to do this if we know that we won't be changing sp. */
4125 if (reg_mentioned_p (virtual_stack_dynamic_rtx
, temp
)
4126 || reg_mentioned_p (virtual_outgoing_args_rtx
, temp
))
4127 temp
= copy_to_reg (temp
);
4130 target
= gen_rtx_MEM (BLKmode
, temp
);
4132 /* We do *not* set_mem_attributes here, because incoming arguments
4133 may overlap with sibling call outgoing arguments and we cannot
4134 allow reordering of reads from function arguments with stores
4135 to outgoing arguments of sibling calls. We do, however, want
4136 to record the alignment of the stack slot. */
4137 /* ALIGN may well be better aligned than TYPE, e.g. due to
4138 PARM_BOUNDARY. Assume the caller isn't lying. */
4139 set_mem_align (target
, align
);
4141 emit_block_move (target
, xinner
, size
, BLOCK_OP_CALL_PARM
);
4144 else if (partial
> 0)
4146 /* Scalar partly in registers. */
4148 int size
= GET_MODE_SIZE (mode
) / UNITS_PER_WORD
;
4151 /* # bytes of start of argument
4152 that we must make space for but need not store. */
4153 int offset
= partial
% (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4154 int args_offset
= INTVAL (args_so_far
);
4157 /* Push padding now if padding above and stack grows down,
4158 or if padding below and stack grows up.
4159 But if space already allocated, this has already been done. */
4160 if (extra
&& args_addr
== 0
4161 && where_pad
!= none
&& where_pad
!= stack_direction
)
4162 anti_adjust_stack (GEN_INT (extra
));
4164 /* If we make space by pushing it, we might as well push
4165 the real data. Otherwise, we can leave OFFSET nonzero
4166 and leave the space uninitialized. */
4170 /* Now NOT_STACK gets the number of words that we don't need to
4171 allocate on the stack. Convert OFFSET to words too. */
4172 not_stack
= (partial
- offset
) / UNITS_PER_WORD
;
4173 offset
/= UNITS_PER_WORD
;
4175 /* If the partial register-part of the arg counts in its stack size,
4176 skip the part of stack space corresponding to the registers.
4177 Otherwise, start copying to the beginning of the stack space,
4178 by setting SKIP to 0. */
4179 skip
= (reg_parm_stack_space
== 0) ? 0 : not_stack
;
4181 if (CONSTANT_P (x
) && !targetm
.legitimate_constant_p (mode
, x
))
4182 x
= validize_mem (force_const_mem (mode
, x
));
4184 /* If X is a hard register in a non-integer mode, copy it into a pseudo;
4185 SUBREGs of such registers are not allowed. */
4186 if ((REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
4187 && GET_MODE_CLASS (GET_MODE (x
)) != MODE_INT
))
4188 x
= copy_to_reg (x
);
4190 /* Loop over all the words allocated on the stack for this arg. */
4191 /* We can do it by words, because any scalar bigger than a word
4192 has a size a multiple of a word. */
4193 #ifndef PUSH_ARGS_REVERSED
4194 for (i
= not_stack
; i
< size
; i
++)
4196 for (i
= size
- 1; i
>= not_stack
; i
--)
4198 if (i
>= not_stack
+ offset
)
4199 emit_push_insn (operand_subword_force (x
, i
, mode
),
4200 word_mode
, NULL_TREE
, NULL_RTX
, align
, 0, NULL_RTX
,
4202 GEN_INT (args_offset
+ ((i
- not_stack
+ skip
)
4204 reg_parm_stack_space
, alignment_pad
);
4211 /* Push padding now if padding above and stack grows down,
4212 or if padding below and stack grows up.
4213 But if space already allocated, this has already been done. */
4214 if (extra
&& args_addr
== 0
4215 && where_pad
!= none
&& where_pad
!= stack_direction
)
4216 anti_adjust_stack (GEN_INT (extra
));
4218 #ifdef PUSH_ROUNDING
4219 if (args_addr
== 0 && PUSH_ARGS
)
4220 emit_single_push_insn (mode
, x
, type
);
4224 if (CONST_INT_P (args_so_far
))
4226 = memory_address (mode
,
4227 plus_constant (Pmode
, args_addr
,
4228 INTVAL (args_so_far
)));
4230 addr
= memory_address (mode
, gen_rtx_PLUS (Pmode
, args_addr
,
4232 dest
= gen_rtx_MEM (mode
, addr
);
4234 /* We do *not* set_mem_attributes here, because incoming arguments
4235 may overlap with sibling call outgoing arguments and we cannot
4236 allow reordering of reads from function arguments with stores
4237 to outgoing arguments of sibling calls. We do, however, want
4238 to record the alignment of the stack slot. */
4239 /* ALIGN may well be better aligned than TYPE, e.g. due to
4240 PARM_BOUNDARY. Assume the caller isn't lying. */
4241 set_mem_align (dest
, align
);
4243 emit_move_insn (dest
, x
);
4247 /* If part should go in registers, copy that part
4248 into the appropriate registers. Do this now, at the end,
4249 since mem-to-mem copies above may do function calls. */
4250 if (partial
> 0 && reg
!= 0)
4252 /* Handle calls that pass values in multiple non-contiguous locations.
4253 The Irix 6 ABI has examples of this. */
4254 if (GET_CODE (reg
) == PARALLEL
)
4255 emit_group_load (reg
, x
, type
, -1);
4258 gcc_assert (partial
% UNITS_PER_WORD
== 0);
4259 move_block_to_reg (REGNO (reg
), x
, partial
/ UNITS_PER_WORD
, mode
);
4263 if (extra
&& args_addr
== 0 && where_pad
== stack_direction
)
4264 anti_adjust_stack (GEN_INT (extra
));
4266 if (alignment_pad
&& args_addr
== 0)
4267 anti_adjust_stack (alignment_pad
);
4270 /* Return X if X can be used as a subtarget in a sequence of arithmetic
4274 get_subtarget (rtx x
)
4278 /* Only registers can be subtargets. */
4280 /* Don't use hard regs to avoid extending their life. */
4281 || REGNO (x
) < FIRST_PSEUDO_REGISTER
4285 /* A subroutine of expand_assignment. Optimize FIELD op= VAL, where
4286 FIELD is a bitfield. Returns true if the optimization was successful,
4287 and there's nothing else to do. */
4290 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize
,
4291 unsigned HOST_WIDE_INT bitpos
,
4292 unsigned HOST_WIDE_INT bitregion_start
,
4293 unsigned HOST_WIDE_INT bitregion_end
,
4294 enum machine_mode mode1
, rtx str_rtx
,
4297 enum machine_mode str_mode
= GET_MODE (str_rtx
);
4298 unsigned int str_bitsize
= GET_MODE_BITSIZE (str_mode
);
4303 enum tree_code code
;
4305 if (mode1
!= VOIDmode
4306 || bitsize
>= BITS_PER_WORD
4307 || str_bitsize
> BITS_PER_WORD
4308 || TREE_SIDE_EFFECTS (to
)
4309 || TREE_THIS_VOLATILE (to
))
4313 if (TREE_CODE (src
) != SSA_NAME
)
4315 if (TREE_CODE (TREE_TYPE (src
)) != INTEGER_TYPE
)
4318 srcstmt
= get_gimple_for_ssa_name (src
);
4320 || TREE_CODE_CLASS (gimple_assign_rhs_code (srcstmt
)) != tcc_binary
)
4323 code
= gimple_assign_rhs_code (srcstmt
);
4325 op0
= gimple_assign_rhs1 (srcstmt
);
4327 /* If OP0 is an SSA_NAME, then we want to walk the use-def chain
4328 to find its initialization. Hopefully the initialization will
4329 be from a bitfield load. */
4330 if (TREE_CODE (op0
) == SSA_NAME
)
4332 gimple op0stmt
= get_gimple_for_ssa_name (op0
);
4334 /* We want to eventually have OP0 be the same as TO, which
4335 should be a bitfield. */
4337 || !is_gimple_assign (op0stmt
)
4338 || gimple_assign_rhs_code (op0stmt
) != TREE_CODE (to
))
4340 op0
= gimple_assign_rhs1 (op0stmt
);
4343 op1
= gimple_assign_rhs2 (srcstmt
);
4345 if (!operand_equal_p (to
, op0
, 0))
4348 if (MEM_P (str_rtx
))
4350 unsigned HOST_WIDE_INT offset1
;
4352 if (str_bitsize
== 0 || str_bitsize
> BITS_PER_WORD
)
4353 str_mode
= word_mode
;
4354 str_mode
= get_best_mode (bitsize
, bitpos
,
4355 bitregion_start
, bitregion_end
,
4356 MEM_ALIGN (str_rtx
), str_mode
, 0);
4357 if (str_mode
== VOIDmode
)
4359 str_bitsize
= GET_MODE_BITSIZE (str_mode
);
4362 bitpos
%= str_bitsize
;
4363 offset1
= (offset1
- bitpos
) / BITS_PER_UNIT
;
4364 str_rtx
= adjust_address (str_rtx
, str_mode
, offset1
);
4366 else if (!REG_P (str_rtx
) && GET_CODE (str_rtx
) != SUBREG
)
4369 /* If the bit field covers the whole REG/MEM, store_field
4370 will likely generate better code. */
4371 if (bitsize
>= str_bitsize
)
4374 /* We can't handle fields split across multiple entities. */
4375 if (bitpos
+ bitsize
> str_bitsize
)
4378 if (BYTES_BIG_ENDIAN
)
4379 bitpos
= str_bitsize
- bitpos
- bitsize
;
4385 /* For now, just optimize the case of the topmost bitfield
4386 where we don't need to do any masking and also
4387 1 bit bitfields where xor can be used.
4388 We might win by one instruction for the other bitfields
4389 too if insv/extv instructions aren't used, so that
4390 can be added later. */
4391 if (bitpos
+ bitsize
!= str_bitsize
4392 && (bitsize
!= 1 || TREE_CODE (op1
) != INTEGER_CST
))
4395 value
= expand_expr (op1
, NULL_RTX
, str_mode
, EXPAND_NORMAL
);
4396 value
= convert_modes (str_mode
,
4397 TYPE_MODE (TREE_TYPE (op1
)), value
,
4398 TYPE_UNSIGNED (TREE_TYPE (op1
)));
4400 /* We may be accessing data outside the field, which means
4401 we can alias adjacent data. */
4402 if (MEM_P (str_rtx
))
4404 str_rtx
= shallow_copy_rtx (str_rtx
);
4405 set_mem_alias_set (str_rtx
, 0);
4406 set_mem_expr (str_rtx
, 0);
4409 binop
= code
== PLUS_EXPR
? add_optab
: sub_optab
;
4410 if (bitsize
== 1 && bitpos
+ bitsize
!= str_bitsize
)
4412 value
= expand_and (str_mode
, value
, const1_rtx
, NULL
);
4415 value
= expand_shift (LSHIFT_EXPR
, str_mode
, value
, bitpos
, NULL_RTX
, 1);
4416 result
= expand_binop (str_mode
, binop
, str_rtx
,
4417 value
, str_rtx
, 1, OPTAB_WIDEN
);
4418 if (result
!= str_rtx
)
4419 emit_move_insn (str_rtx
, result
);
4424 if (TREE_CODE (op1
) != INTEGER_CST
)
4426 value
= expand_expr (op1
, NULL_RTX
, str_mode
, EXPAND_NORMAL
);
4427 value
= convert_modes (str_mode
,
4428 TYPE_MODE (TREE_TYPE (op1
)), value
,
4429 TYPE_UNSIGNED (TREE_TYPE (op1
)));
4431 /* We may be accessing data outside the field, which means
4432 we can alias adjacent data. */
4433 if (MEM_P (str_rtx
))
4435 str_rtx
= shallow_copy_rtx (str_rtx
);
4436 set_mem_alias_set (str_rtx
, 0);
4437 set_mem_expr (str_rtx
, 0);
4440 binop
= code
== BIT_IOR_EXPR
? ior_optab
: xor_optab
;
4441 if (bitpos
+ bitsize
!= str_bitsize
)
4443 rtx mask
= GEN_INT (((unsigned HOST_WIDE_INT
) 1 << bitsize
) - 1);
4444 value
= expand_and (str_mode
, value
, mask
, NULL_RTX
);
4446 value
= expand_shift (LSHIFT_EXPR
, str_mode
, value
, bitpos
, NULL_RTX
, 1);
4447 result
= expand_binop (str_mode
, binop
, str_rtx
,
4448 value
, str_rtx
, 1, OPTAB_WIDEN
);
4449 if (result
!= str_rtx
)
4450 emit_move_insn (str_rtx
, result
);
4460 /* In the C++ memory model, consecutive bit fields in a structure are
4461 considered one memory location.
4463 Given a COMPONENT_REF EXP at position (BITPOS, OFFSET), this function
4464 returns the bit range of consecutive bits in which this COMPONENT_REF
4465 belongs. The values are returned in *BITSTART and *BITEND. *BITPOS
4466 and *OFFSET may be adjusted in the process.
4468 If the access does not need to be restricted, 0 is returned in both
4469 *BITSTART and *BITEND. */
4472 get_bit_range (unsigned HOST_WIDE_INT
*bitstart
,
4473 unsigned HOST_WIDE_INT
*bitend
,
4475 HOST_WIDE_INT
*bitpos
,
4478 HOST_WIDE_INT bitoffset
;
4481 gcc_assert (TREE_CODE (exp
) == COMPONENT_REF
);
4483 field
= TREE_OPERAND (exp
, 1);
4484 repr
= DECL_BIT_FIELD_REPRESENTATIVE (field
);
4485 /* If we do not have a DECL_BIT_FIELD_REPRESENTATIVE there is no
4486 need to limit the range we can access. */
4489 *bitstart
= *bitend
= 0;
4493 /* If we have a DECL_BIT_FIELD_REPRESENTATIVE but the enclosing record is
4494 part of a larger bit field, then the representative does not serve any
4495 useful purpose. This can occur in Ada. */
4496 if (handled_component_p (TREE_OPERAND (exp
, 0)))
4498 enum machine_mode rmode
;
4499 HOST_WIDE_INT rbitsize
, rbitpos
;
4503 get_inner_reference (TREE_OPERAND (exp
, 0), &rbitsize
, &rbitpos
,
4504 &roffset
, &rmode
, &unsignedp
, &volatilep
, false);
4505 if ((rbitpos
% BITS_PER_UNIT
) != 0)
4507 *bitstart
= *bitend
= 0;
4512 /* Compute the adjustment to bitpos from the offset of the field
4513 relative to the representative. DECL_FIELD_OFFSET of field and
4514 repr are the same by construction if they are not constants,
4515 see finish_bitfield_layout. */
4516 if (host_integerp (DECL_FIELD_OFFSET (field
), 1)
4517 && host_integerp (DECL_FIELD_OFFSET (repr
), 1))
4518 bitoffset
= (tree_low_cst (DECL_FIELD_OFFSET (field
), 1)
4519 - tree_low_cst (DECL_FIELD_OFFSET (repr
), 1)) * BITS_PER_UNIT
;
4522 bitoffset
+= (tree_low_cst (DECL_FIELD_BIT_OFFSET (field
), 1)
4523 - tree_low_cst (DECL_FIELD_BIT_OFFSET (repr
), 1));
4525 /* If the adjustment is larger than bitpos, we would have a negative bit
4526 position for the lower bound and this may wreak havoc later. This can
4527 occur only if we have a non-null offset, so adjust offset and bitpos
4528 to make the lower bound non-negative. */
4529 if (bitoffset
> *bitpos
)
4531 HOST_WIDE_INT adjust
= bitoffset
- *bitpos
;
4533 gcc_assert ((adjust
% BITS_PER_UNIT
) == 0);
4534 gcc_assert (*offset
!= NULL_TREE
);
4538 = size_binop (MINUS_EXPR
, *offset
, size_int (adjust
/ BITS_PER_UNIT
));
4542 *bitstart
= *bitpos
- bitoffset
;
4544 *bitend
= *bitstart
+ tree_low_cst (DECL_SIZE (repr
), 1) - 1;
4547 /* Returns true if the MEM_REF REF refers to an object that does not
4548 reside in memory and has non-BLKmode. */
4551 mem_ref_refers_to_non_mem_p (tree ref
)
4553 tree base
= TREE_OPERAND (ref
, 0);
4554 if (TREE_CODE (base
) != ADDR_EXPR
)
4556 base
= TREE_OPERAND (base
, 0);
4557 return (DECL_P (base
)
4558 && !TREE_ADDRESSABLE (base
)
4559 && DECL_MODE (base
) != BLKmode
4560 && DECL_RTL_SET_P (base
)
4561 && !MEM_P (DECL_RTL (base
)));
4564 /* Expand an assignment that stores the value of FROM into TO. If NONTEMPORAL
4565 is true, try generating a nontemporal store. */
4568 expand_assignment (tree to
, tree from
, bool nontemporal
)
4572 enum machine_mode mode
;
4574 enum insn_code icode
;
4576 /* Don't crash if the lhs of the assignment was erroneous. */
4577 if (TREE_CODE (to
) == ERROR_MARK
)
4579 expand_normal (from
);
4583 /* Optimize away no-op moves without side-effects. */
4584 if (operand_equal_p (to
, from
, 0))
4587 /* Handle misaligned stores. */
4588 mode
= TYPE_MODE (TREE_TYPE (to
));
4589 if ((TREE_CODE (to
) == MEM_REF
4590 || TREE_CODE (to
) == TARGET_MEM_REF
)
4592 && !mem_ref_refers_to_non_mem_p (to
)
4593 && ((align
= get_object_alignment (to
))
4594 < GET_MODE_ALIGNMENT (mode
))
4595 && (((icode
= optab_handler (movmisalign_optab
, mode
))
4596 != CODE_FOR_nothing
)
4597 || SLOW_UNALIGNED_ACCESS (mode
, align
)))
4601 reg
= expand_expr (from
, NULL_RTX
, VOIDmode
, EXPAND_NORMAL
);
4602 reg
= force_not_mem (reg
);
4603 mem
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4605 if (icode
!= CODE_FOR_nothing
)
4607 struct expand_operand ops
[2];
4609 create_fixed_operand (&ops
[0], mem
);
4610 create_input_operand (&ops
[1], reg
, mode
);
4611 /* The movmisalign<mode> pattern cannot fail, else the assignment
4612 would silently be omitted. */
4613 expand_insn (icode
, 2, ops
);
4616 store_bit_field (mem
, GET_MODE_BITSIZE (mode
),
4617 0, 0, 0, mode
, reg
);
4621 /* Assignment of a structure component needs special treatment
4622 if the structure component's rtx is not simply a MEM.
4623 Assignment of an array element at a constant index, and assignment of
4624 an array element in an unaligned packed structure field, has the same
4625 problem. Same for (partially) storing into a non-memory object. */
4626 if (handled_component_p (to
)
4627 || (TREE_CODE (to
) == MEM_REF
4628 && mem_ref_refers_to_non_mem_p (to
))
4629 || TREE_CODE (TREE_TYPE (to
)) == ARRAY_TYPE
)
4631 enum machine_mode mode1
;
4632 HOST_WIDE_INT bitsize
, bitpos
;
4633 unsigned HOST_WIDE_INT bitregion_start
= 0;
4634 unsigned HOST_WIDE_INT bitregion_end
= 0;
4643 tem
= get_inner_reference (to
, &bitsize
, &bitpos
, &offset
, &mode1
,
4644 &unsignedp
, &volatilep
, true);
4646 if (TREE_CODE (to
) == COMPONENT_REF
4647 && DECL_BIT_FIELD_TYPE (TREE_OPERAND (to
, 1)))
4648 get_bit_range (&bitregion_start
, &bitregion_end
, to
, &bitpos
, &offset
);
4650 /* If we are going to use store_bit_field and extract_bit_field,
4651 make sure to_rtx will be safe for multiple use. */
4652 mode
= TYPE_MODE (TREE_TYPE (tem
));
4653 if (TREE_CODE (tem
) == MEM_REF
4655 && ((align
= get_object_alignment (tem
))
4656 < GET_MODE_ALIGNMENT (mode
))
4657 && ((icode
= optab_handler (movmisalign_optab
, mode
))
4658 != CODE_FOR_nothing
))
4660 struct expand_operand ops
[2];
4663 to_rtx
= gen_reg_rtx (mode
);
4664 mem
= expand_expr (tem
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4666 /* If the misaligned store doesn't overwrite all bits, perform
4667 rmw cycle on MEM. */
4668 if (bitsize
!= GET_MODE_BITSIZE (mode
))
4670 create_input_operand (&ops
[0], to_rtx
, mode
);
4671 create_fixed_operand (&ops
[1], mem
);
4672 /* The movmisalign<mode> pattern cannot fail, else the assignment
4673 would silently be omitted. */
4674 expand_insn (icode
, 2, ops
);
4676 mem
= copy_rtx (mem
);
4682 to_rtx
= expand_expr (tem
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4685 /* If the bitfield is volatile, we want to access it in the
4686 field's mode, not the computed mode.
4687 If a MEM has VOIDmode (external with incomplete type),
4688 use BLKmode for it instead. */
4691 if (volatilep
&& flag_strict_volatile_bitfields
> 0)
4692 to_rtx
= adjust_address (to_rtx
, mode1
, 0);
4693 else if (GET_MODE (to_rtx
) == VOIDmode
)
4694 to_rtx
= adjust_address (to_rtx
, BLKmode
, 0);
4699 enum machine_mode address_mode
;
4702 if (!MEM_P (to_rtx
))
4704 /* We can get constant negative offsets into arrays with broken
4705 user code. Translate this to a trap instead of ICEing. */
4706 gcc_assert (TREE_CODE (offset
) == INTEGER_CST
);
4707 expand_builtin_trap ();
4708 to_rtx
= gen_rtx_MEM (BLKmode
, const0_rtx
);
4711 offset_rtx
= expand_expr (offset
, NULL_RTX
, VOIDmode
, EXPAND_SUM
);
4712 address_mode
= get_address_mode (to_rtx
);
4713 if (GET_MODE (offset_rtx
) != address_mode
)
4714 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
4716 /* A constant address in TO_RTX can have VOIDmode, we must not try
4717 to call force_reg for that case. Avoid that case. */
4719 && GET_MODE (to_rtx
) == BLKmode
4720 && GET_MODE (XEXP (to_rtx
, 0)) != VOIDmode
4722 && (bitpos
% bitsize
) == 0
4723 && (bitsize
% GET_MODE_ALIGNMENT (mode1
)) == 0
4724 && MEM_ALIGN (to_rtx
) == GET_MODE_ALIGNMENT (mode1
))
4726 to_rtx
= adjust_address (to_rtx
, mode1
, bitpos
/ BITS_PER_UNIT
);
4730 to_rtx
= offset_address (to_rtx
, offset_rtx
,
4731 highest_pow2_factor_for_target (to
,
4735 /* No action is needed if the target is not a memory and the field
4736 lies completely outside that target. This can occur if the source
4737 code contains an out-of-bounds access to a small array. */
4739 && GET_MODE (to_rtx
) != BLKmode
4740 && (unsigned HOST_WIDE_INT
) bitpos
4741 >= GET_MODE_PRECISION (GET_MODE (to_rtx
)))
4743 expand_normal (from
);
4746 /* Handle expand_expr of a complex value returning a CONCAT. */
4747 else if (GET_CODE (to_rtx
) == CONCAT
)
4749 unsigned short mode_bitsize
= GET_MODE_BITSIZE (GET_MODE (to_rtx
));
4750 if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from
)))
4752 && bitsize
== mode_bitsize
)
4753 result
= store_expr (from
, to_rtx
, false, nontemporal
);
4754 else if (bitsize
== mode_bitsize
/ 2
4755 && (bitpos
== 0 || bitpos
== mode_bitsize
/ 2))
4756 result
= store_expr (from
, XEXP (to_rtx
, bitpos
!= 0), false,
4758 else if (bitpos
+ bitsize
<= mode_bitsize
/ 2)
4759 result
= store_field (XEXP (to_rtx
, 0), bitsize
, bitpos
,
4760 bitregion_start
, bitregion_end
,
4761 mode1
, from
, TREE_TYPE (tem
),
4762 get_alias_set (to
), nontemporal
);
4763 else if (bitpos
>= mode_bitsize
/ 2)
4764 result
= store_field (XEXP (to_rtx
, 1), bitsize
,
4765 bitpos
- mode_bitsize
/ 2,
4766 bitregion_start
, bitregion_end
,
4768 TREE_TYPE (tem
), get_alias_set (to
),
4770 else if (bitpos
== 0 && bitsize
== mode_bitsize
)
4773 result
= expand_normal (from
);
4774 from_rtx
= simplify_gen_subreg (GET_MODE (to_rtx
), result
,
4775 TYPE_MODE (TREE_TYPE (from
)), 0);
4776 emit_move_insn (XEXP (to_rtx
, 0),
4777 read_complex_part (from_rtx
, false));
4778 emit_move_insn (XEXP (to_rtx
, 1),
4779 read_complex_part (from_rtx
, true));
4783 rtx temp
= assign_stack_temp (GET_MODE (to_rtx
),
4784 GET_MODE_SIZE (GET_MODE (to_rtx
)));
4785 write_complex_part (temp
, XEXP (to_rtx
, 0), false);
4786 write_complex_part (temp
, XEXP (to_rtx
, 1), true);
4787 result
= store_field (temp
, bitsize
, bitpos
,
4788 bitregion_start
, bitregion_end
,
4790 TREE_TYPE (tem
), get_alias_set (to
),
4792 emit_move_insn (XEXP (to_rtx
, 0), read_complex_part (temp
, false));
4793 emit_move_insn (XEXP (to_rtx
, 1), read_complex_part (temp
, true));
4800 /* If the field is at offset zero, we could have been given the
4801 DECL_RTX of the parent struct. Don't munge it. */
4802 to_rtx
= shallow_copy_rtx (to_rtx
);
4804 set_mem_attributes_minus_bitpos (to_rtx
, to
, 0, bitpos
);
4806 /* Deal with volatile and readonly fields. The former is only
4807 done for MEM. Also set MEM_KEEP_ALIAS_SET_P if needed. */
4809 MEM_VOLATILE_P (to_rtx
) = 1;
4810 if (component_uses_parent_alias_set (to
))
4811 MEM_KEEP_ALIAS_SET_P (to_rtx
) = 1;
4814 if (optimize_bitfield_assignment_op (bitsize
, bitpos
,
4815 bitregion_start
, bitregion_end
,
4820 result
= store_field (to_rtx
, bitsize
, bitpos
,
4821 bitregion_start
, bitregion_end
,
4823 TREE_TYPE (tem
), get_alias_set (to
),
4829 struct expand_operand ops
[2];
4831 create_fixed_operand (&ops
[0], mem
);
4832 create_input_operand (&ops
[1], to_rtx
, mode
);
4833 /* The movmisalign<mode> pattern cannot fail, else the assignment
4834 would silently be omitted. */
4835 expand_insn (icode
, 2, ops
);
4839 preserve_temp_slots (result
);
4844 /* If the rhs is a function call and its value is not an aggregate,
4845 call the function before we start to compute the lhs.
4846 This is needed for correct code for cases such as
4847 val = setjmp (buf) on machines where reference to val
4848 requires loading up part of an address in a separate insn.
4850 Don't do this if TO is a VAR_DECL or PARM_DECL whose DECL_RTL is REG
4851 since it might be a promoted variable where the zero- or sign- extension
4852 needs to be done. Handling this in the normal way is safe because no
4853 computation is done before the call. The same is true for SSA names. */
4854 if (TREE_CODE (from
) == CALL_EXPR
&& ! aggregate_value_p (from
, from
)
4855 && COMPLETE_TYPE_P (TREE_TYPE (from
))
4856 && TREE_CODE (TYPE_SIZE (TREE_TYPE (from
))) == INTEGER_CST
4857 && ! (((TREE_CODE (to
) == VAR_DECL
4858 || TREE_CODE (to
) == PARM_DECL
4859 || TREE_CODE (to
) == RESULT_DECL
)
4860 && REG_P (DECL_RTL (to
)))
4861 || TREE_CODE (to
) == SSA_NAME
))
4866 value
= expand_normal (from
);
4868 to_rtx
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4870 /* Handle calls that return values in multiple non-contiguous locations.
4871 The Irix 6 ABI has examples of this. */
4872 if (GET_CODE (to_rtx
) == PARALLEL
)
4873 emit_group_load (to_rtx
, value
, TREE_TYPE (from
),
4874 int_size_in_bytes (TREE_TYPE (from
)));
4875 else if (GET_MODE (to_rtx
) == BLKmode
)
4876 emit_block_move (to_rtx
, value
, expr_size (from
), BLOCK_OP_NORMAL
);
4879 if (POINTER_TYPE_P (TREE_TYPE (to
)))
4880 value
= convert_memory_address_addr_space
4881 (GET_MODE (to_rtx
), value
,
4882 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (to
))));
4884 emit_move_insn (to_rtx
, value
);
4886 preserve_temp_slots (to_rtx
);
4891 /* Ordinary treatment. Expand TO to get a REG or MEM rtx. */
4892 to_rtx
= expand_expr (to
, NULL_RTX
, VOIDmode
, EXPAND_WRITE
);
4894 /* Don't move directly into a return register. */
4895 if (TREE_CODE (to
) == RESULT_DECL
4896 && (REG_P (to_rtx
) || GET_CODE (to_rtx
) == PARALLEL
))
4901 if (REG_P (to_rtx
) && TYPE_MODE (TREE_TYPE (from
)) == BLKmode
)
4902 temp
= copy_blkmode_to_reg (GET_MODE (to_rtx
), from
);
4904 temp
= expand_expr (from
, NULL_RTX
, GET_MODE (to_rtx
), EXPAND_NORMAL
);
4906 if (GET_CODE (to_rtx
) == PARALLEL
)
4907 emit_group_load (to_rtx
, temp
, TREE_TYPE (from
),
4908 int_size_in_bytes (TREE_TYPE (from
)));
4910 emit_move_insn (to_rtx
, temp
);
4912 preserve_temp_slots (to_rtx
);
4917 /* In case we are returning the contents of an object which overlaps
4918 the place the value is being stored, use a safe function when copying
4919 a value through a pointer into a structure value return block. */
4920 if (TREE_CODE (to
) == RESULT_DECL
4921 && TREE_CODE (from
) == INDIRECT_REF
4922 && ADDR_SPACE_GENERIC_P
4923 (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (from
, 0)))))
4924 && refs_may_alias_p (to
, from
)
4925 && cfun
->returns_struct
4926 && !cfun
->returns_pcc_struct
)
4931 size
= expr_size (from
);
4932 from_rtx
= expand_normal (from
);
4934 emit_library_call (memmove_libfunc
, LCT_NORMAL
,
4935 VOIDmode
, 3, XEXP (to_rtx
, 0), Pmode
,
4936 XEXP (from_rtx
, 0), Pmode
,
4937 convert_to_mode (TYPE_MODE (sizetype
),
4938 size
, TYPE_UNSIGNED (sizetype
)),
4939 TYPE_MODE (sizetype
));
4941 preserve_temp_slots (to_rtx
);
4946 /* Compute FROM and store the value in the rtx we got. */
4949 result
= store_expr (from
, to_rtx
, 0, nontemporal
);
4950 preserve_temp_slots (result
);
4955 /* Emits nontemporal store insn that moves FROM to TO. Returns true if this
4956 succeeded, false otherwise. */
4959 emit_storent_insn (rtx to
, rtx from
)
4961 struct expand_operand ops
[2];
4962 enum machine_mode mode
= GET_MODE (to
);
4963 enum insn_code code
= optab_handler (storent_optab
, mode
);
4965 if (code
== CODE_FOR_nothing
)
4968 create_fixed_operand (&ops
[0], to
);
4969 create_input_operand (&ops
[1], from
, mode
);
4970 return maybe_expand_insn (code
, 2, ops
);
4973 /* Generate code for computing expression EXP,
4974 and storing the value into TARGET.
4976 If the mode is BLKmode then we may return TARGET itself.
4977 It turns out that in BLKmode it doesn't cause a problem.
4978 because C has no operators that could combine two different
4979 assignments into the same BLKmode object with different values
4980 with no sequence point. Will other languages need this to
4983 If CALL_PARAM_P is nonzero, this is a store into a call param on the
4984 stack, and block moves may need to be treated specially.
4986 If NONTEMPORAL is true, try using a nontemporal store instruction. */
4989 store_expr (tree exp
, rtx target
, int call_param_p
, bool nontemporal
)
4992 rtx alt_rtl
= NULL_RTX
;
4993 location_t loc
= EXPR_LOCATION (exp
);
4995 if (VOID_TYPE_P (TREE_TYPE (exp
)))
4997 /* C++ can generate ?: expressions with a throw expression in one
4998 branch and an rvalue in the other. Here, we resolve attempts to
4999 store the throw expression's nonexistent result. */
5000 gcc_assert (!call_param_p
);
5001 expand_expr (exp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
5004 if (TREE_CODE (exp
) == COMPOUND_EXPR
)
5006 /* Perform first part of compound expression, then assign from second
5008 expand_expr (TREE_OPERAND (exp
, 0), const0_rtx
, VOIDmode
,
5009 call_param_p
? EXPAND_STACK_PARM
: EXPAND_NORMAL
);
5010 return store_expr (TREE_OPERAND (exp
, 1), target
, call_param_p
,
5013 else if (TREE_CODE (exp
) == COND_EXPR
&& GET_MODE (target
) == BLKmode
)
5015 /* For conditional expression, get safe form of the target. Then
5016 test the condition, doing the appropriate assignment on either
5017 side. This avoids the creation of unnecessary temporaries.
5018 For non-BLKmode, it is more efficient not to do this. */
5020 rtx lab1
= gen_label_rtx (), lab2
= gen_label_rtx ();
5022 do_pending_stack_adjust ();
5024 jumpifnot (TREE_OPERAND (exp
, 0), lab1
, -1);
5025 store_expr (TREE_OPERAND (exp
, 1), target
, call_param_p
,
5027 emit_jump_insn (gen_jump (lab2
));
5030 store_expr (TREE_OPERAND (exp
, 2), target
, call_param_p
,
5037 else if (GET_CODE (target
) == SUBREG
&& SUBREG_PROMOTED_VAR_P (target
))
5038 /* If this is a scalar in a register that is stored in a wider mode
5039 than the declared mode, compute the result into its declared mode
5040 and then convert to the wider mode. Our value is the computed
5043 rtx inner_target
= 0;
5045 /* We can do the conversion inside EXP, which will often result
5046 in some optimizations. Do the conversion in two steps: first
5047 change the signedness, if needed, then the extend. But don't
5048 do this if the type of EXP is a subtype of something else
5049 since then the conversion might involve more than just
5050 converting modes. */
5051 if (INTEGRAL_TYPE_P (TREE_TYPE (exp
))
5052 && TREE_TYPE (TREE_TYPE (exp
)) == 0
5053 && GET_MODE_PRECISION (GET_MODE (target
))
5054 == TYPE_PRECISION (TREE_TYPE (exp
)))
5056 if (TYPE_UNSIGNED (TREE_TYPE (exp
))
5057 != SUBREG_PROMOTED_UNSIGNED_P (target
))
5059 /* Some types, e.g. Fortran's logical*4, won't have a signed
5060 version, so use the mode instead. */
5062 = (signed_or_unsigned_type_for
5063 (SUBREG_PROMOTED_UNSIGNED_P (target
), TREE_TYPE (exp
)));
5065 ntype
= lang_hooks
.types
.type_for_mode
5066 (TYPE_MODE (TREE_TYPE (exp
)),
5067 SUBREG_PROMOTED_UNSIGNED_P (target
));
5069 exp
= fold_convert_loc (loc
, ntype
, exp
);
5072 exp
= fold_convert_loc (loc
, lang_hooks
.types
.type_for_mode
5073 (GET_MODE (SUBREG_REG (target
)),
5074 SUBREG_PROMOTED_UNSIGNED_P (target
)),
5077 inner_target
= SUBREG_REG (target
);
5080 temp
= expand_expr (exp
, inner_target
, VOIDmode
,
5081 call_param_p
? EXPAND_STACK_PARM
: EXPAND_NORMAL
);
5083 /* If TEMP is a VOIDmode constant, use convert_modes to make
5084 sure that we properly convert it. */
5085 if (CONSTANT_P (temp
) && GET_MODE (temp
) == VOIDmode
)
5087 temp
= convert_modes (GET_MODE (target
), TYPE_MODE (TREE_TYPE (exp
)),
5088 temp
, SUBREG_PROMOTED_UNSIGNED_P (target
));
5089 temp
= convert_modes (GET_MODE (SUBREG_REG (target
)),
5090 GET_MODE (target
), temp
,
5091 SUBREG_PROMOTED_UNSIGNED_P (target
));
5094 convert_move (SUBREG_REG (target
), temp
,
5095 SUBREG_PROMOTED_UNSIGNED_P (target
));
5099 else if ((TREE_CODE (exp
) == STRING_CST
5100 || (TREE_CODE (exp
) == MEM_REF
5101 && TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
5102 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
5104 && integer_zerop (TREE_OPERAND (exp
, 1))))
5105 && !nontemporal
&& !call_param_p
5108 /* Optimize initialization of an array with a STRING_CST. */
5109 HOST_WIDE_INT exp_len
, str_copy_len
;
5111 tree str
= TREE_CODE (exp
) == STRING_CST
5112 ? exp
: TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
5114 exp_len
= int_expr_size (exp
);
5118 if (TREE_STRING_LENGTH (str
) <= 0)
5121 str_copy_len
= strlen (TREE_STRING_POINTER (str
));
5122 if (str_copy_len
< TREE_STRING_LENGTH (str
) - 1)
5125 str_copy_len
= TREE_STRING_LENGTH (str
);
5126 if ((STORE_MAX_PIECES
& (STORE_MAX_PIECES
- 1)) == 0
5127 && TREE_STRING_POINTER (str
)[TREE_STRING_LENGTH (str
) - 1] == '\0')
5129 str_copy_len
+= STORE_MAX_PIECES
- 1;
5130 str_copy_len
&= ~(STORE_MAX_PIECES
- 1);
5132 str_copy_len
= MIN (str_copy_len
, exp_len
);
5133 if (!can_store_by_pieces (str_copy_len
, builtin_strncpy_read_str
,
5134 CONST_CAST (char *, TREE_STRING_POINTER (str
)),
5135 MEM_ALIGN (target
), false))
5140 dest_mem
= store_by_pieces (dest_mem
,
5141 str_copy_len
, builtin_strncpy_read_str
,
5143 TREE_STRING_POINTER (str
)),
5144 MEM_ALIGN (target
), false,
5145 exp_len
> str_copy_len
? 1 : 0);
5146 if (exp_len
> str_copy_len
)
5147 clear_storage (adjust_address (dest_mem
, BLKmode
, 0),
5148 GEN_INT (exp_len
- str_copy_len
),
5157 /* If we want to use a nontemporal store, force the value to
5159 tmp_target
= nontemporal
? NULL_RTX
: target
;
5160 temp
= expand_expr_real (exp
, tmp_target
, GET_MODE (target
),
5162 ? EXPAND_STACK_PARM
: EXPAND_NORMAL
),
5166 /* If TEMP is a VOIDmode constant and the mode of the type of EXP is not
5167 the same as that of TARGET, adjust the constant. This is needed, for
5168 example, in case it is a CONST_DOUBLE and we want only a word-sized
5170 if (CONSTANT_P (temp
) && GET_MODE (temp
) == VOIDmode
5171 && TREE_CODE (exp
) != ERROR_MARK
5172 && GET_MODE (target
) != TYPE_MODE (TREE_TYPE (exp
)))
5173 temp
= convert_modes (GET_MODE (target
), TYPE_MODE (TREE_TYPE (exp
)),
5174 temp
, TYPE_UNSIGNED (TREE_TYPE (exp
)));
5176 /* If value was not generated in the target, store it there.
5177 Convert the value to TARGET's type first if necessary and emit the
5178 pending incrementations that have been queued when expanding EXP.
5179 Note that we cannot emit the whole queue blindly because this will
5180 effectively disable the POST_INC optimization later.
5182 If TEMP and TARGET compare equal according to rtx_equal_p, but
5183 one or both of them are volatile memory refs, we have to distinguish
5185 - expand_expr has used TARGET. In this case, we must not generate
5186 another copy. This can be detected by TARGET being equal according
5188 - expand_expr has not used TARGET - that means that the source just
5189 happens to have the same RTX form. Since temp will have been created
5190 by expand_expr, it will compare unequal according to == .
5191 We must generate a copy in this case, to reach the correct number
5192 of volatile memory references. */
5194 if ((! rtx_equal_p (temp
, target
)
5195 || (temp
!= target
&& (side_effects_p (temp
)
5196 || side_effects_p (target
))))
5197 && TREE_CODE (exp
) != ERROR_MARK
5198 /* If store_expr stores a DECL whose DECL_RTL(exp) == TARGET,
5199 but TARGET is not valid memory reference, TEMP will differ
5200 from TARGET although it is really the same location. */
5202 && rtx_equal_p (alt_rtl
, target
)
5203 && !side_effects_p (alt_rtl
)
5204 && !side_effects_p (target
))
5205 /* If there's nothing to copy, don't bother. Don't call
5206 expr_size unless necessary, because some front-ends (C++)
5207 expr_size-hook must not be given objects that are not
5208 supposed to be bit-copied or bit-initialized. */
5209 && expr_size (exp
) != const0_rtx
)
5211 if (GET_MODE (temp
) != GET_MODE (target
)
5212 && GET_MODE (temp
) != VOIDmode
)
5214 int unsignedp
= TYPE_UNSIGNED (TREE_TYPE (exp
));
5215 if (GET_MODE (target
) == BLKmode
5216 && GET_MODE (temp
) == BLKmode
)
5217 emit_block_move (target
, temp
, expr_size (exp
),
5219 ? BLOCK_OP_CALL_PARM
5220 : BLOCK_OP_NORMAL
));
5221 else if (GET_MODE (target
) == BLKmode
)
5222 store_bit_field (target
, INTVAL (expr_size (exp
)) * BITS_PER_UNIT
,
5223 0, 0, 0, GET_MODE (temp
), temp
);
5225 convert_move (target
, temp
, unsignedp
);
5228 else if (GET_MODE (temp
) == BLKmode
&& TREE_CODE (exp
) == STRING_CST
)
5230 /* Handle copying a string constant into an array. The string
5231 constant may be shorter than the array. So copy just the string's
5232 actual length, and clear the rest. First get the size of the data
5233 type of the string, which is actually the size of the target. */
5234 rtx size
= expr_size (exp
);
5236 if (CONST_INT_P (size
)
5237 && INTVAL (size
) < TREE_STRING_LENGTH (exp
))
5238 emit_block_move (target
, temp
, size
,
5240 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5243 enum machine_mode pointer_mode
5244 = targetm
.addr_space
.pointer_mode (MEM_ADDR_SPACE (target
));
5245 enum machine_mode address_mode
= get_address_mode (target
);
5247 /* Compute the size of the data to copy from the string. */
5249 = size_binop_loc (loc
, MIN_EXPR
,
5250 make_tree (sizetype
, size
),
5251 size_int (TREE_STRING_LENGTH (exp
)));
5253 = expand_expr (copy_size
, NULL_RTX
, VOIDmode
,
5255 ? EXPAND_STACK_PARM
: EXPAND_NORMAL
));
5258 /* Copy that much. */
5259 copy_size_rtx
= convert_to_mode (pointer_mode
, copy_size_rtx
,
5260 TYPE_UNSIGNED (sizetype
));
5261 emit_block_move (target
, temp
, copy_size_rtx
,
5263 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5265 /* Figure out how much is left in TARGET that we have to clear.
5266 Do all calculations in pointer_mode. */
5267 if (CONST_INT_P (copy_size_rtx
))
5269 size
= plus_constant (address_mode
, size
,
5270 -INTVAL (copy_size_rtx
));
5271 target
= adjust_address (target
, BLKmode
,
5272 INTVAL (copy_size_rtx
));
5276 size
= expand_binop (TYPE_MODE (sizetype
), sub_optab
, size
,
5277 copy_size_rtx
, NULL_RTX
, 0,
5280 if (GET_MODE (copy_size_rtx
) != address_mode
)
5281 copy_size_rtx
= convert_to_mode (address_mode
,
5283 TYPE_UNSIGNED (sizetype
));
5285 target
= offset_address (target
, copy_size_rtx
,
5286 highest_pow2_factor (copy_size
));
5287 label
= gen_label_rtx ();
5288 emit_cmp_and_jump_insns (size
, const0_rtx
, LT
, NULL_RTX
,
5289 GET_MODE (size
), 0, label
);
5292 if (size
!= const0_rtx
)
5293 clear_storage (target
, size
, BLOCK_OP_NORMAL
);
5299 /* Handle calls that return values in multiple non-contiguous locations.
5300 The Irix 6 ABI has examples of this. */
5301 else if (GET_CODE (target
) == PARALLEL
)
5302 emit_group_load (target
, temp
, TREE_TYPE (exp
),
5303 int_size_in_bytes (TREE_TYPE (exp
)));
5304 else if (GET_MODE (temp
) == BLKmode
)
5305 emit_block_move (target
, temp
, expr_size (exp
),
5307 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
5308 else if (nontemporal
5309 && emit_storent_insn (target
, temp
))
5310 /* If we managed to emit a nontemporal store, there is nothing else to
5315 temp
= force_operand (temp
, target
);
5317 emit_move_insn (target
, temp
);
5324 /* Return true if field F of structure TYPE is a flexible array. */
5327 flexible_array_member_p (const_tree f
, const_tree type
)
5332 return (DECL_CHAIN (f
) == NULL
5333 && TREE_CODE (tf
) == ARRAY_TYPE
5335 && TYPE_MIN_VALUE (TYPE_DOMAIN (tf
))
5336 && integer_zerop (TYPE_MIN_VALUE (TYPE_DOMAIN (tf
)))
5337 && !TYPE_MAX_VALUE (TYPE_DOMAIN (tf
))
5338 && int_size_in_bytes (type
) >= 0);
5341 /* If FOR_CTOR_P, return the number of top-level elements that a constructor
5342 must have in order for it to completely initialize a value of type TYPE.
5343 Return -1 if the number isn't known.
5345 If !FOR_CTOR_P, return an estimate of the number of scalars in TYPE. */
5347 static HOST_WIDE_INT
5348 count_type_elements (const_tree type
, bool for_ctor_p
)
5350 switch (TREE_CODE (type
))
5356 nelts
= array_type_nelts (type
);
5357 if (nelts
&& host_integerp (nelts
, 1))
5359 unsigned HOST_WIDE_INT n
;
5361 n
= tree_low_cst (nelts
, 1) + 1;
5362 if (n
== 0 || for_ctor_p
)
5365 return n
* count_type_elements (TREE_TYPE (type
), false);
5367 return for_ctor_p
? -1 : 1;
5372 unsigned HOST_WIDE_INT n
;
5376 for (f
= TYPE_FIELDS (type
); f
; f
= DECL_CHAIN (f
))
5377 if (TREE_CODE (f
) == FIELD_DECL
)
5380 n
+= count_type_elements (TREE_TYPE (f
), false);
5381 else if (!flexible_array_member_p (f
, type
))
5382 /* Don't count flexible arrays, which are not supposed
5383 to be initialized. */
5391 case QUAL_UNION_TYPE
:
5396 gcc_assert (!for_ctor_p
);
5397 /* Estimate the number of scalars in each field and pick the
5398 maximum. Other estimates would do instead; the idea is simply
5399 to make sure that the estimate is not sensitive to the ordering
5402 for (f
= TYPE_FIELDS (type
); f
; f
= DECL_CHAIN (f
))
5403 if (TREE_CODE (f
) == FIELD_DECL
)
5405 m
= count_type_elements (TREE_TYPE (f
), false);
5406 /* If the field doesn't span the whole union, add an extra
5407 scalar for the rest. */
5408 if (simple_cst_equal (TYPE_SIZE (TREE_TYPE (f
)),
5409 TYPE_SIZE (type
)) != 1)
5421 return TYPE_VECTOR_SUBPARTS (type
);
5425 case FIXED_POINT_TYPE
:
5430 case REFERENCE_TYPE
:
5446 /* Helper for categorize_ctor_elements. Identical interface. */
5449 categorize_ctor_elements_1 (const_tree ctor
, HOST_WIDE_INT
*p_nz_elts
,
5450 HOST_WIDE_INT
*p_init_elts
, bool *p_complete
)
5452 unsigned HOST_WIDE_INT idx
;
5453 HOST_WIDE_INT nz_elts
, init_elts
, num_fields
;
5454 tree value
, purpose
, elt_type
;
5456 /* Whether CTOR is a valid constant initializer, in accordance with what
5457 initializer_constant_valid_p does. If inferred from the constructor
5458 elements, true until proven otherwise. */
5459 bool const_from_elts_p
= constructor_static_from_elts_p (ctor
);
5460 bool const_p
= const_from_elts_p
? true : TREE_STATIC (ctor
);
5465 elt_type
= NULL_TREE
;
5467 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor
), idx
, purpose
, value
)
5469 HOST_WIDE_INT mult
= 1;
5471 if (TREE_CODE (purpose
) == RANGE_EXPR
)
5473 tree lo_index
= TREE_OPERAND (purpose
, 0);
5474 tree hi_index
= TREE_OPERAND (purpose
, 1);
5476 if (host_integerp (lo_index
, 1) && host_integerp (hi_index
, 1))
5477 mult
= (tree_low_cst (hi_index
, 1)
5478 - tree_low_cst (lo_index
, 1) + 1);
5481 elt_type
= TREE_TYPE (value
);
5483 switch (TREE_CODE (value
))
5487 HOST_WIDE_INT nz
= 0, ic
= 0;
5489 bool const_elt_p
= categorize_ctor_elements_1 (value
, &nz
, &ic
,
5492 nz_elts
+= mult
* nz
;
5493 init_elts
+= mult
* ic
;
5495 if (const_from_elts_p
&& const_p
)
5496 const_p
= const_elt_p
;
5503 if (!initializer_zerop (value
))
5509 nz_elts
+= mult
* TREE_STRING_LENGTH (value
);
5510 init_elts
+= mult
* TREE_STRING_LENGTH (value
);
5514 if (!initializer_zerop (TREE_REALPART (value
)))
5516 if (!initializer_zerop (TREE_IMAGPART (value
)))
5524 for (i
= 0; i
< VECTOR_CST_NELTS (value
); ++i
)
5526 tree v
= VECTOR_CST_ELT (value
, i
);
5527 if (!initializer_zerop (v
))
5536 HOST_WIDE_INT tc
= count_type_elements (elt_type
, false);
5537 nz_elts
+= mult
* tc
;
5538 init_elts
+= mult
* tc
;
5540 if (const_from_elts_p
&& const_p
)
5541 const_p
= initializer_constant_valid_p (value
, elt_type
)
5548 if (*p_complete
&& !complete_ctor_at_level_p (TREE_TYPE (ctor
),
5549 num_fields
, elt_type
))
5550 *p_complete
= false;
5552 *p_nz_elts
+= nz_elts
;
5553 *p_init_elts
+= init_elts
;
5558 /* Examine CTOR to discover:
5559 * how many scalar fields are set to nonzero values,
5560 and place it in *P_NZ_ELTS;
5561 * how many scalar fields in total are in CTOR,
5562 and place it in *P_ELT_COUNT.
5563 * whether the constructor is complete -- in the sense that every
5564 meaningful byte is explicitly given a value --
5565 and place it in *P_COMPLETE.
5567 Return whether or not CTOR is a valid static constant initializer, the same
5568 as "initializer_constant_valid_p (CTOR, TREE_TYPE (CTOR)) != 0". */
5571 categorize_ctor_elements (const_tree ctor
, HOST_WIDE_INT
*p_nz_elts
,
5572 HOST_WIDE_INT
*p_init_elts
, bool *p_complete
)
5578 return categorize_ctor_elements_1 (ctor
, p_nz_elts
, p_init_elts
, p_complete
);
5581 /* TYPE is initialized by a constructor with NUM_ELTS elements, the last
5582 of which had type LAST_TYPE. Each element was itself a complete
5583 initializer, in the sense that every meaningful byte was explicitly
5584 given a value. Return true if the same is true for the constructor
5588 complete_ctor_at_level_p (const_tree type
, HOST_WIDE_INT num_elts
,
5589 const_tree last_type
)
5591 if (TREE_CODE (type
) == UNION_TYPE
5592 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
5597 gcc_assert (num_elts
== 1 && last_type
);
5599 /* ??? We could look at each element of the union, and find the
5600 largest element. Which would avoid comparing the size of the
5601 initialized element against any tail padding in the union.
5602 Doesn't seem worth the effort... */
5603 return simple_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (last_type
)) == 1;
5606 return count_type_elements (type
, true) == num_elts
;
5609 /* Return 1 if EXP contains mostly (3/4) zeros. */
5612 mostly_zeros_p (const_tree exp
)
5614 if (TREE_CODE (exp
) == CONSTRUCTOR
)
5616 HOST_WIDE_INT nz_elts
, init_elts
;
5619 categorize_ctor_elements (exp
, &nz_elts
, &init_elts
, &complete_p
);
5620 return !complete_p
|| nz_elts
< init_elts
/ 4;
5623 return initializer_zerop (exp
);
5626 /* Return 1 if EXP contains all zeros. */
5629 all_zeros_p (const_tree exp
)
5631 if (TREE_CODE (exp
) == CONSTRUCTOR
)
5633 HOST_WIDE_INT nz_elts
, init_elts
;
5636 categorize_ctor_elements (exp
, &nz_elts
, &init_elts
, &complete_p
);
5637 return nz_elts
== 0;
5640 return initializer_zerop (exp
);
5643 /* Helper function for store_constructor.
5644 TARGET, BITSIZE, BITPOS, MODE, EXP are as for store_field.
5645 TYPE is the type of the CONSTRUCTOR, not the element type.
5646 CLEARED is as for store_constructor.
5647 ALIAS_SET is the alias set to use for any stores.
5649 This provides a recursive shortcut back to store_constructor when it isn't
5650 necessary to go through store_field. This is so that we can pass through
5651 the cleared field to let store_constructor know that we may not have to
5652 clear a substructure if the outer structure has already been cleared. */
5655 store_constructor_field (rtx target
, unsigned HOST_WIDE_INT bitsize
,
5656 HOST_WIDE_INT bitpos
, enum machine_mode mode
,
5657 tree exp
, tree type
, int cleared
,
5658 alias_set_type alias_set
)
5660 if (TREE_CODE (exp
) == CONSTRUCTOR
5661 /* We can only call store_constructor recursively if the size and
5662 bit position are on a byte boundary. */
5663 && bitpos
% BITS_PER_UNIT
== 0
5664 && (bitsize
> 0 && bitsize
% BITS_PER_UNIT
== 0)
5665 /* If we have a nonzero bitpos for a register target, then we just
5666 let store_field do the bitfield handling. This is unlikely to
5667 generate unnecessary clear instructions anyways. */
5668 && (bitpos
== 0 || MEM_P (target
)))
5672 = adjust_address (target
,
5673 GET_MODE (target
) == BLKmode
5675 % GET_MODE_ALIGNMENT (GET_MODE (target
)))
5676 ? BLKmode
: VOIDmode
, bitpos
/ BITS_PER_UNIT
);
5679 /* Update the alias set, if required. */
5680 if (MEM_P (target
) && ! MEM_KEEP_ALIAS_SET_P (target
)
5681 && MEM_ALIAS_SET (target
) != 0)
5683 target
= copy_rtx (target
);
5684 set_mem_alias_set (target
, alias_set
);
5687 store_constructor (exp
, target
, cleared
, bitsize
/ BITS_PER_UNIT
);
5690 store_field (target
, bitsize
, bitpos
, 0, 0, mode
, exp
, type
, alias_set
,
5694 /* Store the value of constructor EXP into the rtx TARGET.
5695 TARGET is either a REG or a MEM; we know it cannot conflict, since
5696 safe_from_p has been called.
5697 CLEARED is true if TARGET is known to have been zero'd.
5698 SIZE is the number of bytes of TARGET we are allowed to modify: this
5699 may not be the same as the size of EXP if we are assigning to a field
5700 which has been packed to exclude padding bits. */
5703 store_constructor (tree exp
, rtx target
, int cleared
, HOST_WIDE_INT size
)
5705 tree type
= TREE_TYPE (exp
);
5706 #ifdef WORD_REGISTER_OPERATIONS
5707 HOST_WIDE_INT exp_size
= int_size_in_bytes (type
);
5710 switch (TREE_CODE (type
))
5714 case QUAL_UNION_TYPE
:
5716 unsigned HOST_WIDE_INT idx
;
5719 /* If size is zero or the target is already cleared, do nothing. */
5720 if (size
== 0 || cleared
)
5722 /* We either clear the aggregate or indicate the value is dead. */
5723 else if ((TREE_CODE (type
) == UNION_TYPE
5724 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
5725 && ! CONSTRUCTOR_ELTS (exp
))
5726 /* If the constructor is empty, clear the union. */
5728 clear_storage (target
, expr_size (exp
), BLOCK_OP_NORMAL
);
5732 /* If we are building a static constructor into a register,
5733 set the initial value as zero so we can fold the value into
5734 a constant. But if more than one register is involved,
5735 this probably loses. */
5736 else if (REG_P (target
) && TREE_STATIC (exp
)
5737 && GET_MODE_SIZE (GET_MODE (target
)) <= UNITS_PER_WORD
)
5739 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
5743 /* If the constructor has fewer fields than the structure or
5744 if we are initializing the structure to mostly zeros, clear
5745 the whole structure first. Don't do this if TARGET is a
5746 register whose mode size isn't equal to SIZE since
5747 clear_storage can't handle this case. */
5749 && (((int)VEC_length (constructor_elt
, CONSTRUCTOR_ELTS (exp
))
5750 != fields_length (type
))
5751 || mostly_zeros_p (exp
))
5753 || ((HOST_WIDE_INT
) GET_MODE_SIZE (GET_MODE (target
))
5756 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
5760 if (REG_P (target
) && !cleared
)
5761 emit_clobber (target
);
5763 /* Store each element of the constructor into the
5764 corresponding field of TARGET. */
5765 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), idx
, field
, value
)
5767 enum machine_mode mode
;
5768 HOST_WIDE_INT bitsize
;
5769 HOST_WIDE_INT bitpos
= 0;
5771 rtx to_rtx
= target
;
5773 /* Just ignore missing fields. We cleared the whole
5774 structure, above, if any fields are missing. */
5778 if (cleared
&& initializer_zerop (value
))
5781 if (host_integerp (DECL_SIZE (field
), 1))
5782 bitsize
= tree_low_cst (DECL_SIZE (field
), 1);
5786 mode
= DECL_MODE (field
);
5787 if (DECL_BIT_FIELD (field
))
5790 offset
= DECL_FIELD_OFFSET (field
);
5791 if (host_integerp (offset
, 0)
5792 && host_integerp (bit_position (field
), 0))
5794 bitpos
= int_bit_position (field
);
5798 bitpos
= tree_low_cst (DECL_FIELD_BIT_OFFSET (field
), 0);
5802 enum machine_mode address_mode
;
5806 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (offset
,
5807 make_tree (TREE_TYPE (exp
),
5810 offset_rtx
= expand_normal (offset
);
5811 gcc_assert (MEM_P (to_rtx
));
5813 address_mode
= get_address_mode (to_rtx
);
5814 if (GET_MODE (offset_rtx
) != address_mode
)
5815 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
5817 to_rtx
= offset_address (to_rtx
, offset_rtx
,
5818 highest_pow2_factor (offset
));
5821 #ifdef WORD_REGISTER_OPERATIONS
5822 /* If this initializes a field that is smaller than a
5823 word, at the start of a word, try to widen it to a full
5824 word. This special case allows us to output C++ member
5825 function initializations in a form that the optimizers
5828 && bitsize
< BITS_PER_WORD
5829 && bitpos
% BITS_PER_WORD
== 0
5830 && GET_MODE_CLASS (mode
) == MODE_INT
5831 && TREE_CODE (value
) == INTEGER_CST
5833 && bitpos
+ BITS_PER_WORD
<= exp_size
* BITS_PER_UNIT
)
5835 tree type
= TREE_TYPE (value
);
5837 if (TYPE_PRECISION (type
) < BITS_PER_WORD
)
5839 type
= lang_hooks
.types
.type_for_mode
5840 (word_mode
, TYPE_UNSIGNED (type
));
5841 value
= fold_convert (type
, value
);
5844 if (BYTES_BIG_ENDIAN
)
5846 = fold_build2 (LSHIFT_EXPR
, type
, value
,
5847 build_int_cst (type
,
5848 BITS_PER_WORD
- bitsize
));
5849 bitsize
= BITS_PER_WORD
;
5854 if (MEM_P (to_rtx
) && !MEM_KEEP_ALIAS_SET_P (to_rtx
)
5855 && DECL_NONADDRESSABLE_P (field
))
5857 to_rtx
= copy_rtx (to_rtx
);
5858 MEM_KEEP_ALIAS_SET_P (to_rtx
) = 1;
5861 store_constructor_field (to_rtx
, bitsize
, bitpos
, mode
,
5862 value
, type
, cleared
,
5863 get_alias_set (TREE_TYPE (field
)));
5870 unsigned HOST_WIDE_INT i
;
5873 tree elttype
= TREE_TYPE (type
);
5875 HOST_WIDE_INT minelt
= 0;
5876 HOST_WIDE_INT maxelt
= 0;
5878 domain
= TYPE_DOMAIN (type
);
5879 const_bounds_p
= (TYPE_MIN_VALUE (domain
)
5880 && TYPE_MAX_VALUE (domain
)
5881 && host_integerp (TYPE_MIN_VALUE (domain
), 0)
5882 && host_integerp (TYPE_MAX_VALUE (domain
), 0));
5884 /* If we have constant bounds for the range of the type, get them. */
5887 minelt
= tree_low_cst (TYPE_MIN_VALUE (domain
), 0);
5888 maxelt
= tree_low_cst (TYPE_MAX_VALUE (domain
), 0);
5891 /* If the constructor has fewer elements than the array, clear
5892 the whole array first. Similarly if this is static
5893 constructor of a non-BLKmode object. */
5896 else if (REG_P (target
) && TREE_STATIC (exp
))
5900 unsigned HOST_WIDE_INT idx
;
5902 HOST_WIDE_INT count
= 0, zero_count
= 0;
5903 need_to_clear
= ! const_bounds_p
;
5905 /* This loop is a more accurate version of the loop in
5906 mostly_zeros_p (it handles RANGE_EXPR in an index). It
5907 is also needed to check for missing elements. */
5908 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), idx
, index
, value
)
5910 HOST_WIDE_INT this_node_count
;
5915 if (index
!= NULL_TREE
&& TREE_CODE (index
) == RANGE_EXPR
)
5917 tree lo_index
= TREE_OPERAND (index
, 0);
5918 tree hi_index
= TREE_OPERAND (index
, 1);
5920 if (! host_integerp (lo_index
, 1)
5921 || ! host_integerp (hi_index
, 1))
5927 this_node_count
= (tree_low_cst (hi_index
, 1)
5928 - tree_low_cst (lo_index
, 1) + 1);
5931 this_node_count
= 1;
5933 count
+= this_node_count
;
5934 if (mostly_zeros_p (value
))
5935 zero_count
+= this_node_count
;
5938 /* Clear the entire array first if there are any missing
5939 elements, or if the incidence of zero elements is >=
5942 && (count
< maxelt
- minelt
+ 1
5943 || 4 * zero_count
>= 3 * count
))
5947 if (need_to_clear
&& size
> 0)
5950 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
5952 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
5956 if (!cleared
&& REG_P (target
))
5957 /* Inform later passes that the old value is dead. */
5958 emit_clobber (target
);
5960 /* Store each element of the constructor into the
5961 corresponding element of TARGET, determined by counting the
5963 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), i
, index
, value
)
5965 enum machine_mode mode
;
5966 HOST_WIDE_INT bitsize
;
5967 HOST_WIDE_INT bitpos
;
5968 rtx xtarget
= target
;
5970 if (cleared
&& initializer_zerop (value
))
5973 mode
= TYPE_MODE (elttype
);
5974 if (mode
== BLKmode
)
5975 bitsize
= (host_integerp (TYPE_SIZE (elttype
), 1)
5976 ? tree_low_cst (TYPE_SIZE (elttype
), 1)
5979 bitsize
= GET_MODE_BITSIZE (mode
);
5981 if (index
!= NULL_TREE
&& TREE_CODE (index
) == RANGE_EXPR
)
5983 tree lo_index
= TREE_OPERAND (index
, 0);
5984 tree hi_index
= TREE_OPERAND (index
, 1);
5985 rtx index_r
, pos_rtx
;
5986 HOST_WIDE_INT lo
, hi
, count
;
5989 /* If the range is constant and "small", unroll the loop. */
5991 && host_integerp (lo_index
, 0)
5992 && host_integerp (hi_index
, 0)
5993 && (lo
= tree_low_cst (lo_index
, 0),
5994 hi
= tree_low_cst (hi_index
, 0),
5995 count
= hi
- lo
+ 1,
5998 || (host_integerp (TYPE_SIZE (elttype
), 1)
5999 && (tree_low_cst (TYPE_SIZE (elttype
), 1) * count
6002 lo
-= minelt
; hi
-= minelt
;
6003 for (; lo
<= hi
; lo
++)
6005 bitpos
= lo
* tree_low_cst (TYPE_SIZE (elttype
), 0);
6008 && !MEM_KEEP_ALIAS_SET_P (target
)
6009 && TREE_CODE (type
) == ARRAY_TYPE
6010 && TYPE_NONALIASED_COMPONENT (type
))
6012 target
= copy_rtx (target
);
6013 MEM_KEEP_ALIAS_SET_P (target
) = 1;
6016 store_constructor_field
6017 (target
, bitsize
, bitpos
, mode
, value
, type
, cleared
,
6018 get_alias_set (elttype
));
6023 rtx loop_start
= gen_label_rtx ();
6024 rtx loop_end
= gen_label_rtx ();
6027 expand_normal (hi_index
);
6029 index
= build_decl (EXPR_LOCATION (exp
),
6030 VAR_DECL
, NULL_TREE
, domain
);
6031 index_r
= gen_reg_rtx (promote_decl_mode (index
, NULL
));
6032 SET_DECL_RTL (index
, index_r
);
6033 store_expr (lo_index
, index_r
, 0, false);
6035 /* Build the head of the loop. */
6036 do_pending_stack_adjust ();
6037 emit_label (loop_start
);
6039 /* Assign value to element index. */
6041 fold_convert (ssizetype
,
6042 fold_build2 (MINUS_EXPR
,
6045 TYPE_MIN_VALUE (domain
)));
6048 size_binop (MULT_EXPR
, position
,
6049 fold_convert (ssizetype
,
6050 TYPE_SIZE_UNIT (elttype
)));
6052 pos_rtx
= expand_normal (position
);
6053 xtarget
= offset_address (target
, pos_rtx
,
6054 highest_pow2_factor (position
));
6055 xtarget
= adjust_address (xtarget
, mode
, 0);
6056 if (TREE_CODE (value
) == CONSTRUCTOR
)
6057 store_constructor (value
, xtarget
, cleared
,
6058 bitsize
/ BITS_PER_UNIT
);
6060 store_expr (value
, xtarget
, 0, false);
6062 /* Generate a conditional jump to exit the loop. */
6063 exit_cond
= build2 (LT_EXPR
, integer_type_node
,
6065 jumpif (exit_cond
, loop_end
, -1);
6067 /* Update the loop counter, and jump to the head of
6069 expand_assignment (index
,
6070 build2 (PLUS_EXPR
, TREE_TYPE (index
),
6071 index
, integer_one_node
),
6074 emit_jump (loop_start
);
6076 /* Build the end of the loop. */
6077 emit_label (loop_end
);
6080 else if ((index
!= 0 && ! host_integerp (index
, 0))
6081 || ! host_integerp (TYPE_SIZE (elttype
), 1))
6086 index
= ssize_int (1);
6089 index
= fold_convert (ssizetype
,
6090 fold_build2 (MINUS_EXPR
,
6093 TYPE_MIN_VALUE (domain
)));
6096 size_binop (MULT_EXPR
, index
,
6097 fold_convert (ssizetype
,
6098 TYPE_SIZE_UNIT (elttype
)));
6099 xtarget
= offset_address (target
,
6100 expand_normal (position
),
6101 highest_pow2_factor (position
));
6102 xtarget
= adjust_address (xtarget
, mode
, 0);
6103 store_expr (value
, xtarget
, 0, false);
6108 bitpos
= ((tree_low_cst (index
, 0) - minelt
)
6109 * tree_low_cst (TYPE_SIZE (elttype
), 1));
6111 bitpos
= (i
* tree_low_cst (TYPE_SIZE (elttype
), 1));
6113 if (MEM_P (target
) && !MEM_KEEP_ALIAS_SET_P (target
)
6114 && TREE_CODE (type
) == ARRAY_TYPE
6115 && TYPE_NONALIASED_COMPONENT (type
))
6117 target
= copy_rtx (target
);
6118 MEM_KEEP_ALIAS_SET_P (target
) = 1;
6120 store_constructor_field (target
, bitsize
, bitpos
, mode
, value
,
6121 type
, cleared
, get_alias_set (elttype
));
6129 unsigned HOST_WIDE_INT idx
;
6130 constructor_elt
*ce
;
6133 int icode
= CODE_FOR_nothing
;
6134 tree elttype
= TREE_TYPE (type
);
6135 int elt_size
= tree_low_cst (TYPE_SIZE (elttype
), 1);
6136 enum machine_mode eltmode
= TYPE_MODE (elttype
);
6137 HOST_WIDE_INT bitsize
;
6138 HOST_WIDE_INT bitpos
;
6139 rtvec vector
= NULL
;
6141 alias_set_type alias
;
6143 gcc_assert (eltmode
!= BLKmode
);
6145 n_elts
= TYPE_VECTOR_SUBPARTS (type
);
6146 if (REG_P (target
) && VECTOR_MODE_P (GET_MODE (target
)))
6148 enum machine_mode mode
= GET_MODE (target
);
6150 icode
= (int) optab_handler (vec_init_optab
, mode
);
6151 if (icode
!= CODE_FOR_nothing
)
6155 vector
= rtvec_alloc (n_elts
);
6156 for (i
= 0; i
< n_elts
; i
++)
6157 RTVEC_ELT (vector
, i
) = CONST0_RTX (GET_MODE_INNER (mode
));
6161 /* If the constructor has fewer elements than the vector,
6162 clear the whole array first. Similarly if this is static
6163 constructor of a non-BLKmode object. */
6166 else if (REG_P (target
) && TREE_STATIC (exp
))
6170 unsigned HOST_WIDE_INT count
= 0, zero_count
= 0;
6173 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
6175 int n_elts_here
= tree_low_cst
6176 (int_const_binop (TRUNC_DIV_EXPR
,
6177 TYPE_SIZE (TREE_TYPE (value
)),
6178 TYPE_SIZE (elttype
)), 1);
6180 count
+= n_elts_here
;
6181 if (mostly_zeros_p (value
))
6182 zero_count
+= n_elts_here
;
6185 /* Clear the entire vector first if there are any missing elements,
6186 or if the incidence of zero elements is >= 75%. */
6187 need_to_clear
= (count
< n_elts
|| 4 * zero_count
>= 3 * count
);
6190 if (need_to_clear
&& size
> 0 && !vector
)
6193 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
6195 clear_storage (target
, GEN_INT (size
), BLOCK_OP_NORMAL
);
6199 /* Inform later passes that the old value is dead. */
6200 if (!cleared
&& !vector
&& REG_P (target
))
6201 emit_move_insn (target
, CONST0_RTX (GET_MODE (target
)));
6204 alias
= MEM_ALIAS_SET (target
);
6206 alias
= get_alias_set (elttype
);
6208 /* Store each element of the constructor into the corresponding
6209 element of TARGET, determined by counting the elements. */
6210 for (idx
= 0, i
= 0;
6211 VEC_iterate (constructor_elt
, CONSTRUCTOR_ELTS (exp
), idx
, ce
);
6212 idx
++, i
+= bitsize
/ elt_size
)
6214 HOST_WIDE_INT eltpos
;
6215 tree value
= ce
->value
;
6217 bitsize
= tree_low_cst (TYPE_SIZE (TREE_TYPE (value
)), 1);
6218 if (cleared
&& initializer_zerop (value
))
6222 eltpos
= tree_low_cst (ce
->index
, 1);
6228 /* Vector CONSTRUCTORs should only be built from smaller
6229 vectors in the case of BLKmode vectors. */
6230 gcc_assert (TREE_CODE (TREE_TYPE (value
)) != VECTOR_TYPE
);
6231 RTVEC_ELT (vector
, eltpos
)
6232 = expand_normal (value
);
6236 enum machine_mode value_mode
=
6237 TREE_CODE (TREE_TYPE (value
)) == VECTOR_TYPE
6238 ? TYPE_MODE (TREE_TYPE (value
))
6240 bitpos
= eltpos
* elt_size
;
6241 store_constructor_field (target
, bitsize
, bitpos
,
6242 value_mode
, value
, type
,
6248 emit_insn (GEN_FCN (icode
)
6250 gen_rtx_PARALLEL (GET_MODE (target
), vector
)));
6259 /* Store the value of EXP (an expression tree)
6260 into a subfield of TARGET which has mode MODE and occupies
6261 BITSIZE bits, starting BITPOS bits from the start of TARGET.
6262 If MODE is VOIDmode, it means that we are storing into a bit-field.
6264 BITREGION_START is bitpos of the first bitfield in this region.
6265 BITREGION_END is the bitpos of the ending bitfield in this region.
6266 These two fields are 0, if the C++ memory model does not apply,
6267 or we are not interested in keeping track of bitfield regions.
6269 Always return const0_rtx unless we have something particular to
6272 TYPE is the type of the underlying object,
6274 ALIAS_SET is the alias set for the destination. This value will
6275 (in general) be different from that for TARGET, since TARGET is a
6276 reference to the containing structure.
6278 If NONTEMPORAL is true, try generating a nontemporal store. */
6281 store_field (rtx target
, HOST_WIDE_INT bitsize
, HOST_WIDE_INT bitpos
,
6282 unsigned HOST_WIDE_INT bitregion_start
,
6283 unsigned HOST_WIDE_INT bitregion_end
,
6284 enum machine_mode mode
, tree exp
, tree type
,
6285 alias_set_type alias_set
, bool nontemporal
)
6287 if (TREE_CODE (exp
) == ERROR_MARK
)
6290 /* If we have nothing to store, do nothing unless the expression has
6293 return expand_expr (exp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
6295 /* If we are storing into an unaligned field of an aligned union that is
6296 in a register, we may have the mode of TARGET being an integer mode but
6297 MODE == BLKmode. In that case, get an aligned object whose size and
6298 alignment are the same as TARGET and store TARGET into it (we can avoid
6299 the store if the field being stored is the entire width of TARGET). Then
6300 call ourselves recursively to store the field into a BLKmode version of
6301 that object. Finally, load from the object into TARGET. This is not
6302 very efficient in general, but should only be slightly more expensive
6303 than the otherwise-required unaligned accesses. Perhaps this can be
6304 cleaned up later. It's tempting to make OBJECT readonly, but it's set
6305 twice, once with emit_move_insn and once via store_field. */
6308 && (REG_P (target
) || GET_CODE (target
) == SUBREG
))
6310 rtx object
= assign_temp (type
, 1, 1);
6311 rtx blk_object
= adjust_address (object
, BLKmode
, 0);
6313 if (bitsize
!= (HOST_WIDE_INT
) GET_MODE_BITSIZE (GET_MODE (target
)))
6314 emit_move_insn (object
, target
);
6316 store_field (blk_object
, bitsize
, bitpos
,
6317 bitregion_start
, bitregion_end
,
6318 mode
, exp
, type
, MEM_ALIAS_SET (blk_object
), nontemporal
);
6320 emit_move_insn (target
, object
);
6322 /* We want to return the BLKmode version of the data. */
6326 if (GET_CODE (target
) == CONCAT
)
6328 /* We're storing into a struct containing a single __complex. */
6330 gcc_assert (!bitpos
);
6331 return store_expr (exp
, target
, 0, nontemporal
);
6334 /* If the structure is in a register or if the component
6335 is a bit field, we cannot use addressing to access it.
6336 Use bit-field techniques or SUBREG to store in it. */
6338 if (mode
== VOIDmode
6339 || (mode
!= BLKmode
&& ! direct_store
[(int) mode
]
6340 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
6341 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
)
6343 || GET_CODE (target
) == SUBREG
6344 /* If the field isn't aligned enough to store as an ordinary memref,
6345 store it as a bit field. */
6347 && ((((MEM_ALIGN (target
) < GET_MODE_ALIGNMENT (mode
))
6348 || bitpos
% GET_MODE_ALIGNMENT (mode
))
6349 && SLOW_UNALIGNED_ACCESS (mode
, MEM_ALIGN (target
)))
6350 || (bitpos
% BITS_PER_UNIT
!= 0)))
6351 || (bitsize
>= 0 && mode
!= BLKmode
6352 && GET_MODE_BITSIZE (mode
) > bitsize
)
6353 /* If the RHS and field are a constant size and the size of the
6354 RHS isn't the same size as the bitfield, we must use bitfield
6357 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) == INTEGER_CST
6358 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp
)), bitsize
) != 0)
6359 /* If we are expanding a MEM_REF of a non-BLKmode non-addressable
6360 decl we must use bitfield operations. */
6362 && TREE_CODE (exp
) == MEM_REF
6363 && TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
6364 && DECL_P (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
6365 && !TREE_ADDRESSABLE (TREE_OPERAND (TREE_OPERAND (exp
, 0),0 ))
6366 && DECL_MODE (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0)) != BLKmode
))
6371 /* If EXP is a NOP_EXPR of precision less than its mode, then that
6372 implies a mask operation. If the precision is the same size as
6373 the field we're storing into, that mask is redundant. This is
6374 particularly common with bit field assignments generated by the
6376 nop_def
= get_def_for_expr (exp
, NOP_EXPR
);
6379 tree type
= TREE_TYPE (exp
);
6380 if (INTEGRAL_TYPE_P (type
)
6381 && TYPE_PRECISION (type
) < GET_MODE_BITSIZE (TYPE_MODE (type
))
6382 && bitsize
== TYPE_PRECISION (type
))
6384 tree op
= gimple_assign_rhs1 (nop_def
);
6385 type
= TREE_TYPE (op
);
6386 if (INTEGRAL_TYPE_P (type
) && TYPE_PRECISION (type
) >= bitsize
)
6391 temp
= expand_normal (exp
);
6393 /* If BITSIZE is narrower than the size of the type of EXP
6394 we will be narrowing TEMP. Normally, what's wanted are the
6395 low-order bits. However, if EXP's type is a record and this is
6396 big-endian machine, we want the upper BITSIZE bits. */
6397 if (BYTES_BIG_ENDIAN
&& GET_MODE_CLASS (GET_MODE (temp
)) == MODE_INT
6398 && bitsize
< (HOST_WIDE_INT
) GET_MODE_BITSIZE (GET_MODE (temp
))
6399 && TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
6400 temp
= expand_shift (RSHIFT_EXPR
, GET_MODE (temp
), temp
,
6401 GET_MODE_BITSIZE (GET_MODE (temp
)) - bitsize
,
6404 /* Unless MODE is VOIDmode or BLKmode, convert TEMP to MODE. */
6405 if (mode
!= VOIDmode
&& mode
!= BLKmode
6406 && mode
!= TYPE_MODE (TREE_TYPE (exp
)))
6407 temp
= convert_modes (mode
, TYPE_MODE (TREE_TYPE (exp
)), temp
, 1);
6409 /* If the modes of TEMP and TARGET are both BLKmode, both
6410 must be in memory and BITPOS must be aligned on a byte
6411 boundary. If so, we simply do a block copy. Likewise
6412 for a BLKmode-like TARGET. */
6413 if (GET_MODE (temp
) == BLKmode
6414 && (GET_MODE (target
) == BLKmode
6416 && GET_MODE_CLASS (GET_MODE (target
)) == MODE_INT
6417 && (bitpos
% BITS_PER_UNIT
) == 0
6418 && (bitsize
% BITS_PER_UNIT
) == 0)))
6420 gcc_assert (MEM_P (target
) && MEM_P (temp
)
6421 && (bitpos
% BITS_PER_UNIT
) == 0);
6423 target
= adjust_address (target
, VOIDmode
, bitpos
/ BITS_PER_UNIT
);
6424 emit_block_move (target
, temp
,
6425 GEN_INT ((bitsize
+ BITS_PER_UNIT
- 1)
6432 /* Store the value in the bitfield. */
6433 store_bit_field (target
, bitsize
, bitpos
,
6434 bitregion_start
, bitregion_end
,
6441 /* Now build a reference to just the desired component. */
6442 rtx to_rtx
= adjust_address (target
, mode
, bitpos
/ BITS_PER_UNIT
);
6444 if (to_rtx
== target
)
6445 to_rtx
= copy_rtx (to_rtx
);
6447 if (!MEM_KEEP_ALIAS_SET_P (to_rtx
) && MEM_ALIAS_SET (to_rtx
) != 0)
6448 set_mem_alias_set (to_rtx
, alias_set
);
6450 return store_expr (exp
, to_rtx
, 0, nontemporal
);
6454 /* Given an expression EXP that may be a COMPONENT_REF, a BIT_FIELD_REF,
6455 an ARRAY_REF, or an ARRAY_RANGE_REF, look for nested operations of these
6456 codes and find the ultimate containing object, which we return.
6458 We set *PBITSIZE to the size in bits that we want, *PBITPOS to the
6459 bit position, and *PUNSIGNEDP to the signedness of the field.
6460 If the position of the field is variable, we store a tree
6461 giving the variable offset (in units) in *POFFSET.
6462 This offset is in addition to the bit position.
6463 If the position is not variable, we store 0 in *POFFSET.
6465 If any of the extraction expressions is volatile,
6466 we store 1 in *PVOLATILEP. Otherwise we don't change that.
6468 If the field is a non-BLKmode bit-field, *PMODE is set to VOIDmode.
6469 Otherwise, it is a mode that can be used to access the field.
6471 If the field describes a variable-sized object, *PMODE is set to
6472 BLKmode and *PBITSIZE is set to -1. An access cannot be made in
6473 this case, but the address of the object can be found.
6475 If KEEP_ALIGNING is true and the target is STRICT_ALIGNMENT, we don't
6476 look through nodes that serve as markers of a greater alignment than
6477 the one that can be deduced from the expression. These nodes make it
6478 possible for front-ends to prevent temporaries from being created by
6479 the middle-end on alignment considerations. For that purpose, the
6480 normal operating mode at high-level is to always pass FALSE so that
6481 the ultimate containing object is really returned; moreover, the
6482 associated predicate handled_component_p will always return TRUE
6483 on these nodes, thus indicating that they are essentially handled
6484 by get_inner_reference. TRUE should only be passed when the caller
6485 is scanning the expression in order to build another representation
6486 and specifically knows how to handle these nodes; as such, this is
6487 the normal operating mode in the RTL expanders. */
6490 get_inner_reference (tree exp
, HOST_WIDE_INT
*pbitsize
,
6491 HOST_WIDE_INT
*pbitpos
, tree
*poffset
,
6492 enum machine_mode
*pmode
, int *punsignedp
,
6493 int *pvolatilep
, bool keep_aligning
)
6496 enum machine_mode mode
= VOIDmode
;
6497 bool blkmode_bitfield
= false;
6498 tree offset
= size_zero_node
;
6499 double_int bit_offset
= double_int_zero
;
6501 /* First get the mode, signedness, and size. We do this from just the
6502 outermost expression. */
6504 if (TREE_CODE (exp
) == COMPONENT_REF
)
6506 tree field
= TREE_OPERAND (exp
, 1);
6507 size_tree
= DECL_SIZE (field
);
6508 if (!DECL_BIT_FIELD (field
))
6509 mode
= DECL_MODE (field
);
6510 else if (DECL_MODE (field
) == BLKmode
)
6511 blkmode_bitfield
= true;
6512 else if (TREE_THIS_VOLATILE (exp
)
6513 && flag_strict_volatile_bitfields
> 0)
6514 /* Volatile bitfields should be accessed in the mode of the
6515 field's type, not the mode computed based on the bit
6517 mode
= TYPE_MODE (DECL_BIT_FIELD_TYPE (field
));
6519 *punsignedp
= DECL_UNSIGNED (field
);
6521 else if (TREE_CODE (exp
) == BIT_FIELD_REF
)
6523 size_tree
= TREE_OPERAND (exp
, 1);
6524 *punsignedp
= (! INTEGRAL_TYPE_P (TREE_TYPE (exp
))
6525 || TYPE_UNSIGNED (TREE_TYPE (exp
)));
6527 /* For vector types, with the correct size of access, use the mode of
6529 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp
, 0))) == VECTOR_TYPE
6530 && TREE_TYPE (exp
) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)))
6531 && tree_int_cst_equal (size_tree
, TYPE_SIZE (TREE_TYPE (exp
))))
6532 mode
= TYPE_MODE (TREE_TYPE (exp
));
6536 mode
= TYPE_MODE (TREE_TYPE (exp
));
6537 *punsignedp
= TYPE_UNSIGNED (TREE_TYPE (exp
));
6539 if (mode
== BLKmode
)
6540 size_tree
= TYPE_SIZE (TREE_TYPE (exp
));
6542 *pbitsize
= GET_MODE_BITSIZE (mode
);
6547 if (! host_integerp (size_tree
, 1))
6548 mode
= BLKmode
, *pbitsize
= -1;
6550 *pbitsize
= tree_low_cst (size_tree
, 1);
6553 /* Compute cumulative bit-offset for nested component-refs and array-refs,
6554 and find the ultimate containing object. */
6557 switch (TREE_CODE (exp
))
6561 = double_int_add (bit_offset
,
6562 tree_to_double_int (TREE_OPERAND (exp
, 2)));
6567 tree field
= TREE_OPERAND (exp
, 1);
6568 tree this_offset
= component_ref_field_offset (exp
);
6570 /* If this field hasn't been filled in yet, don't go past it.
6571 This should only happen when folding expressions made during
6572 type construction. */
6573 if (this_offset
== 0)
6576 offset
= size_binop (PLUS_EXPR
, offset
, this_offset
);
6577 bit_offset
= double_int_add (bit_offset
,
6579 (DECL_FIELD_BIT_OFFSET (field
)));
6581 /* ??? Right now we don't do anything with DECL_OFFSET_ALIGN. */
6586 case ARRAY_RANGE_REF
:
6588 tree index
= TREE_OPERAND (exp
, 1);
6589 tree low_bound
= array_ref_low_bound (exp
);
6590 tree unit_size
= array_ref_element_size (exp
);
6592 /* We assume all arrays have sizes that are a multiple of a byte.
6593 First subtract the lower bound, if any, in the type of the
6594 index, then convert to sizetype and multiply by the size of
6595 the array element. */
6596 if (! integer_zerop (low_bound
))
6597 index
= fold_build2 (MINUS_EXPR
, TREE_TYPE (index
),
6600 offset
= size_binop (PLUS_EXPR
, offset
,
6601 size_binop (MULT_EXPR
,
6602 fold_convert (sizetype
, index
),
6611 bit_offset
= double_int_add (bit_offset
,
6612 uhwi_to_double_int (*pbitsize
));
6615 case VIEW_CONVERT_EXPR
:
6616 if (keep_aligning
&& STRICT_ALIGNMENT
6617 && (TYPE_ALIGN (TREE_TYPE (exp
))
6618 > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp
, 0))))
6619 && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp
, 0)))
6620 < BIGGEST_ALIGNMENT
)
6621 && (TYPE_ALIGN_OK (TREE_TYPE (exp
))
6622 || TYPE_ALIGN_OK (TREE_TYPE (TREE_OPERAND (exp
, 0)))))
6627 /* Hand back the decl for MEM[&decl, off]. */
6628 if (TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
)
6630 tree off
= TREE_OPERAND (exp
, 1);
6631 if (!integer_zerop (off
))
6633 double_int boff
, coff
= mem_ref_offset (exp
);
6634 boff
= double_int_lshift (coff
,
6636 ? 3 : exact_log2 (BITS_PER_UNIT
),
6637 HOST_BITS_PER_DOUBLE_INT
, true);
6638 bit_offset
= double_int_add (bit_offset
, boff
);
6640 exp
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
6648 /* If any reference in the chain is volatile, the effect is volatile. */
6649 if (TREE_THIS_VOLATILE (exp
))
6652 exp
= TREE_OPERAND (exp
, 0);
6656 /* If OFFSET is constant, see if we can return the whole thing as a
6657 constant bit position. Make sure to handle overflow during
6659 if (TREE_CODE (offset
) == INTEGER_CST
)
6661 double_int tem
= tree_to_double_int (offset
);
6662 tem
= double_int_sext (tem
, TYPE_PRECISION (sizetype
));
6663 tem
= double_int_lshift (tem
,
6665 ? 3 : exact_log2 (BITS_PER_UNIT
),
6666 HOST_BITS_PER_DOUBLE_INT
, true);
6667 tem
= double_int_add (tem
, bit_offset
);
6668 if (double_int_fits_in_shwi_p (tem
))
6670 *pbitpos
= double_int_to_shwi (tem
);
6671 *poffset
= offset
= NULL_TREE
;
6675 /* Otherwise, split it up. */
6678 /* Avoid returning a negative bitpos as this may wreak havoc later. */
6679 if (double_int_negative_p (bit_offset
))
6682 = double_int_mask (BITS_PER_UNIT
== 8
6683 ? 3 : exact_log2 (BITS_PER_UNIT
));
6684 double_int tem
= double_int_and_not (bit_offset
, mask
);
6685 /* TEM is the bitpos rounded to BITS_PER_UNIT towards -Inf.
6686 Subtract it to BIT_OFFSET and add it (scaled) to OFFSET. */
6687 bit_offset
= double_int_sub (bit_offset
, tem
);
6688 tem
= double_int_rshift (tem
,
6690 ? 3 : exact_log2 (BITS_PER_UNIT
),
6691 HOST_BITS_PER_DOUBLE_INT
, true);
6692 offset
= size_binop (PLUS_EXPR
, offset
,
6693 double_int_to_tree (sizetype
, tem
));
6696 *pbitpos
= double_int_to_shwi (bit_offset
);
6700 /* We can use BLKmode for a byte-aligned BLKmode bitfield. */
6701 if (mode
== VOIDmode
6703 && (*pbitpos
% BITS_PER_UNIT
) == 0
6704 && (*pbitsize
% BITS_PER_UNIT
) == 0)
6712 /* Return a tree of sizetype representing the size, in bytes, of the element
6713 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6716 array_ref_element_size (tree exp
)
6718 tree aligned_size
= TREE_OPERAND (exp
, 3);
6719 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6720 location_t loc
= EXPR_LOCATION (exp
);
6722 /* If a size was specified in the ARRAY_REF, it's the size measured
6723 in alignment units of the element type. So multiply by that value. */
6726 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6727 sizetype from another type of the same width and signedness. */
6728 if (TREE_TYPE (aligned_size
) != sizetype
)
6729 aligned_size
= fold_convert_loc (loc
, sizetype
, aligned_size
);
6730 return size_binop_loc (loc
, MULT_EXPR
, aligned_size
,
6731 size_int (TYPE_ALIGN_UNIT (elmt_type
)));
6734 /* Otherwise, take the size from that of the element type. Substitute
6735 any PLACEHOLDER_EXPR that we have. */
6737 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type
), exp
);
6740 /* Return a tree representing the lower bound of the array mentioned in
6741 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6744 array_ref_low_bound (tree exp
)
6746 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6748 /* If a lower bound is specified in EXP, use it. */
6749 if (TREE_OPERAND (exp
, 2))
6750 return TREE_OPERAND (exp
, 2);
6752 /* Otherwise, if there is a domain type and it has a lower bound, use it,
6753 substituting for a PLACEHOLDER_EXPR as needed. */
6754 if (domain_type
&& TYPE_MIN_VALUE (domain_type
))
6755 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type
), exp
);
6757 /* Otherwise, return a zero of the appropriate type. */
6758 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp
, 1)), 0);
6761 /* Returns true if REF is an array reference to an array at the end of
6762 a structure. If this is the case, the array may be allocated larger
6763 than its upper bound implies. */
6766 array_at_struct_end_p (tree ref
)
6768 if (TREE_CODE (ref
) != ARRAY_REF
6769 && TREE_CODE (ref
) != ARRAY_RANGE_REF
)
6772 while (handled_component_p (ref
))
6774 /* If the reference chain contains a component reference to a
6775 non-union type and there follows another field the reference
6776 is not at the end of a structure. */
6777 if (TREE_CODE (ref
) == COMPONENT_REF
6778 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref
, 0))) == RECORD_TYPE
)
6780 tree nextf
= DECL_CHAIN (TREE_OPERAND (ref
, 1));
6781 while (nextf
&& TREE_CODE (nextf
) != FIELD_DECL
)
6782 nextf
= DECL_CHAIN (nextf
);
6787 ref
= TREE_OPERAND (ref
, 0);
6790 /* If the reference is based on a declared entity, the size of the array
6791 is constrained by its given domain. */
6798 /* Return a tree representing the upper bound of the array mentioned in
6799 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
6802 array_ref_up_bound (tree exp
)
6804 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
6806 /* If there is a domain type and it has an upper bound, use it, substituting
6807 for a PLACEHOLDER_EXPR as needed. */
6808 if (domain_type
&& TYPE_MAX_VALUE (domain_type
))
6809 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type
), exp
);
6811 /* Otherwise fail. */
6815 /* Return a tree representing the offset, in bytes, of the field referenced
6816 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
6819 component_ref_field_offset (tree exp
)
6821 tree aligned_offset
= TREE_OPERAND (exp
, 2);
6822 tree field
= TREE_OPERAND (exp
, 1);
6823 location_t loc
= EXPR_LOCATION (exp
);
6825 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
6826 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
6830 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
6831 sizetype from another type of the same width and signedness. */
6832 if (TREE_TYPE (aligned_offset
) != sizetype
)
6833 aligned_offset
= fold_convert_loc (loc
, sizetype
, aligned_offset
);
6834 return size_binop_loc (loc
, MULT_EXPR
, aligned_offset
,
6835 size_int (DECL_OFFSET_ALIGN (field
)
6839 /* Otherwise, take the offset from that of the field. Substitute
6840 any PLACEHOLDER_EXPR that we have. */
6842 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field
), exp
);
6845 /* Alignment in bits the TARGET of an assignment may be assumed to have. */
6847 static unsigned HOST_WIDE_INT
6848 target_align (const_tree target
)
6850 /* We might have a chain of nested references with intermediate misaligning
6851 bitfields components, so need to recurse to find out. */
6853 unsigned HOST_WIDE_INT this_align
, outer_align
;
6855 switch (TREE_CODE (target
))
6861 this_align
= DECL_ALIGN (TREE_OPERAND (target
, 1));
6862 outer_align
= target_align (TREE_OPERAND (target
, 0));
6863 return MIN (this_align
, outer_align
);
6866 case ARRAY_RANGE_REF
:
6867 this_align
= TYPE_ALIGN (TREE_TYPE (target
));
6868 outer_align
= target_align (TREE_OPERAND (target
, 0));
6869 return MIN (this_align
, outer_align
);
6872 case NON_LVALUE_EXPR
:
6873 case VIEW_CONVERT_EXPR
:
6874 this_align
= TYPE_ALIGN (TREE_TYPE (target
));
6875 outer_align
= target_align (TREE_OPERAND (target
, 0));
6876 return MAX (this_align
, outer_align
);
6879 return TYPE_ALIGN (TREE_TYPE (target
));
6884 /* Given an rtx VALUE that may contain additions and multiplications, return
6885 an equivalent value that just refers to a register, memory, or constant.
6886 This is done by generating instructions to perform the arithmetic and
6887 returning a pseudo-register containing the value.
6889 The returned value may be a REG, SUBREG, MEM or constant. */
6892 force_operand (rtx value
, rtx target
)
6895 /* Use subtarget as the target for operand 0 of a binary operation. */
6896 rtx subtarget
= get_subtarget (target
);
6897 enum rtx_code code
= GET_CODE (value
);
6899 /* Check for subreg applied to an expression produced by loop optimizer. */
6901 && !REG_P (SUBREG_REG (value
))
6902 && !MEM_P (SUBREG_REG (value
)))
6905 = simplify_gen_subreg (GET_MODE (value
),
6906 force_reg (GET_MODE (SUBREG_REG (value
)),
6907 force_operand (SUBREG_REG (value
),
6909 GET_MODE (SUBREG_REG (value
)),
6910 SUBREG_BYTE (value
));
6911 code
= GET_CODE (value
);
6914 /* Check for a PIC address load. */
6915 if ((code
== PLUS
|| code
== MINUS
)
6916 && XEXP (value
, 0) == pic_offset_table_rtx
6917 && (GET_CODE (XEXP (value
, 1)) == SYMBOL_REF
6918 || GET_CODE (XEXP (value
, 1)) == LABEL_REF
6919 || GET_CODE (XEXP (value
, 1)) == CONST
))
6922 subtarget
= gen_reg_rtx (GET_MODE (value
));
6923 emit_move_insn (subtarget
, value
);
6927 if (ARITHMETIC_P (value
))
6929 op2
= XEXP (value
, 1);
6930 if (!CONSTANT_P (op2
) && !(REG_P (op2
) && op2
!= subtarget
))
6932 if (code
== MINUS
&& CONST_INT_P (op2
))
6935 op2
= negate_rtx (GET_MODE (value
), op2
);
6938 /* Check for an addition with OP2 a constant integer and our first
6939 operand a PLUS of a virtual register and something else. In that
6940 case, we want to emit the sum of the virtual register and the
6941 constant first and then add the other value. This allows virtual
6942 register instantiation to simply modify the constant rather than
6943 creating another one around this addition. */
6944 if (code
== PLUS
&& CONST_INT_P (op2
)
6945 && GET_CODE (XEXP (value
, 0)) == PLUS
6946 && REG_P (XEXP (XEXP (value
, 0), 0))
6947 && REGNO (XEXP (XEXP (value
, 0), 0)) >= FIRST_VIRTUAL_REGISTER
6948 && REGNO (XEXP (XEXP (value
, 0), 0)) <= LAST_VIRTUAL_REGISTER
)
6950 rtx temp
= expand_simple_binop (GET_MODE (value
), code
,
6951 XEXP (XEXP (value
, 0), 0), op2
,
6952 subtarget
, 0, OPTAB_LIB_WIDEN
);
6953 return expand_simple_binop (GET_MODE (value
), code
, temp
,
6954 force_operand (XEXP (XEXP (value
,
6956 target
, 0, OPTAB_LIB_WIDEN
);
6959 op1
= force_operand (XEXP (value
, 0), subtarget
);
6960 op2
= force_operand (op2
, NULL_RTX
);
6964 return expand_mult (GET_MODE (value
), op1
, op2
, target
, 1);
6966 if (!INTEGRAL_MODE_P (GET_MODE (value
)))
6967 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
6968 target
, 1, OPTAB_LIB_WIDEN
);
6970 return expand_divmod (0,
6971 FLOAT_MODE_P (GET_MODE (value
))
6972 ? RDIV_EXPR
: TRUNC_DIV_EXPR
,
6973 GET_MODE (value
), op1
, op2
, target
, 0);
6975 return expand_divmod (1, TRUNC_MOD_EXPR
, GET_MODE (value
), op1
, op2
,
6978 return expand_divmod (0, TRUNC_DIV_EXPR
, GET_MODE (value
), op1
, op2
,
6981 return expand_divmod (1, TRUNC_MOD_EXPR
, GET_MODE (value
), op1
, op2
,
6984 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
6985 target
, 0, OPTAB_LIB_WIDEN
);
6987 return expand_simple_binop (GET_MODE (value
), code
, op1
, op2
,
6988 target
, 1, OPTAB_LIB_WIDEN
);
6991 if (UNARY_P (value
))
6994 target
= gen_reg_rtx (GET_MODE (value
));
6995 op1
= force_operand (XEXP (value
, 0), NULL_RTX
);
7002 case FLOAT_TRUNCATE
:
7003 convert_move (target
, op1
, code
== ZERO_EXTEND
);
7008 expand_fix (target
, op1
, code
== UNSIGNED_FIX
);
7012 case UNSIGNED_FLOAT
:
7013 expand_float (target
, op1
, code
== UNSIGNED_FLOAT
);
7017 return expand_simple_unop (GET_MODE (value
), code
, op1
, target
, 0);
7021 #ifdef INSN_SCHEDULING
7022 /* On machines that have insn scheduling, we want all memory reference to be
7023 explicit, so we need to deal with such paradoxical SUBREGs. */
7024 if (paradoxical_subreg_p (value
) && MEM_P (SUBREG_REG (value
)))
7026 = simplify_gen_subreg (GET_MODE (value
),
7027 force_reg (GET_MODE (SUBREG_REG (value
)),
7028 force_operand (SUBREG_REG (value
),
7030 GET_MODE (SUBREG_REG (value
)),
7031 SUBREG_BYTE (value
));
7037 /* Subroutine of expand_expr: return nonzero iff there is no way that
7038 EXP can reference X, which is being modified. TOP_P is nonzero if this
7039 call is going to be used to determine whether we need a temporary
7040 for EXP, as opposed to a recursive call to this function.
7042 It is always safe for this routine to return zero since it merely
7043 searches for optimization opportunities. */
7046 safe_from_p (const_rtx x
, tree exp
, int top_p
)
7052 /* If EXP has varying size, we MUST use a target since we currently
7053 have no way of allocating temporaries of variable size
7054 (except for arrays that have TYPE_ARRAY_MAX_SIZE set).
7055 So we assume here that something at a higher level has prevented a
7056 clash. This is somewhat bogus, but the best we can do. Only
7057 do this when X is BLKmode and when we are at the top level. */
7058 || (top_p
&& TREE_TYPE (exp
) != 0 && COMPLETE_TYPE_P (TREE_TYPE (exp
))
7059 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) != INTEGER_CST
7060 && (TREE_CODE (TREE_TYPE (exp
)) != ARRAY_TYPE
7061 || TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp
)) == NULL_TREE
7062 || TREE_CODE (TYPE_ARRAY_MAX_SIZE (TREE_TYPE (exp
)))
7064 && GET_MODE (x
) == BLKmode
)
7065 /* If X is in the outgoing argument area, it is always safe. */
7067 && (XEXP (x
, 0) == virtual_outgoing_args_rtx
7068 || (GET_CODE (XEXP (x
, 0)) == PLUS
7069 && XEXP (XEXP (x
, 0), 0) == virtual_outgoing_args_rtx
))))
7072 /* If this is a subreg of a hard register, declare it unsafe, otherwise,
7073 find the underlying pseudo. */
7074 if (GET_CODE (x
) == SUBREG
)
7077 if (REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
7081 /* Now look at our tree code and possibly recurse. */
7082 switch (TREE_CODE_CLASS (TREE_CODE (exp
)))
7084 case tcc_declaration
:
7085 exp_rtl
= DECL_RTL_IF_SET (exp
);
7091 case tcc_exceptional
:
7092 if (TREE_CODE (exp
) == TREE_LIST
)
7096 if (TREE_VALUE (exp
) && !safe_from_p (x
, TREE_VALUE (exp
), 0))
7098 exp
= TREE_CHAIN (exp
);
7101 if (TREE_CODE (exp
) != TREE_LIST
)
7102 return safe_from_p (x
, exp
, 0);
7105 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
7107 constructor_elt
*ce
;
7108 unsigned HOST_WIDE_INT idx
;
7110 FOR_EACH_VEC_ELT (constructor_elt
, CONSTRUCTOR_ELTS (exp
), idx
, ce
)
7111 if ((ce
->index
!= NULL_TREE
&& !safe_from_p (x
, ce
->index
, 0))
7112 || !safe_from_p (x
, ce
->value
, 0))
7116 else if (TREE_CODE (exp
) == ERROR_MARK
)
7117 return 1; /* An already-visited SAVE_EXPR? */
7122 /* The only case we look at here is the DECL_INITIAL inside a
7124 return (TREE_CODE (exp
) != DECL_EXPR
7125 || TREE_CODE (DECL_EXPR_DECL (exp
)) != VAR_DECL
7126 || !DECL_INITIAL (DECL_EXPR_DECL (exp
))
7127 || safe_from_p (x
, DECL_INITIAL (DECL_EXPR_DECL (exp
)), 0));
7130 case tcc_comparison
:
7131 if (!safe_from_p (x
, TREE_OPERAND (exp
, 1), 0))
7136 return safe_from_p (x
, TREE_OPERAND (exp
, 0), 0);
7138 case tcc_expression
:
7141 /* Now do code-specific tests. EXP_RTL is set to any rtx we find in
7142 the expression. If it is set, we conflict iff we are that rtx or
7143 both are in memory. Otherwise, we check all operands of the
7144 expression recursively. */
7146 switch (TREE_CODE (exp
))
7149 /* If the operand is static or we are static, we can't conflict.
7150 Likewise if we don't conflict with the operand at all. */
7151 if (staticp (TREE_OPERAND (exp
, 0))
7152 || TREE_STATIC (exp
)
7153 || safe_from_p (x
, TREE_OPERAND (exp
, 0), 0))
7156 /* Otherwise, the only way this can conflict is if we are taking
7157 the address of a DECL a that address if part of X, which is
7159 exp
= TREE_OPERAND (exp
, 0);
7162 if (!DECL_RTL_SET_P (exp
)
7163 || !MEM_P (DECL_RTL (exp
)))
7166 exp_rtl
= XEXP (DECL_RTL (exp
), 0);
7172 && alias_sets_conflict_p (MEM_ALIAS_SET (x
),
7173 get_alias_set (exp
)))
7178 /* Assume that the call will clobber all hard registers and
7180 if ((REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
)
7185 case WITH_CLEANUP_EXPR
:
7186 case CLEANUP_POINT_EXPR
:
7187 /* Lowered by gimplify.c. */
7191 return safe_from_p (x
, TREE_OPERAND (exp
, 0), 0);
7197 /* If we have an rtx, we do not need to scan our operands. */
7201 nops
= TREE_OPERAND_LENGTH (exp
);
7202 for (i
= 0; i
< nops
; i
++)
7203 if (TREE_OPERAND (exp
, i
) != 0
7204 && ! safe_from_p (x
, TREE_OPERAND (exp
, i
), 0))
7210 /* Should never get a type here. */
7214 /* If we have an rtl, find any enclosed object. Then see if we conflict
7218 if (GET_CODE (exp_rtl
) == SUBREG
)
7220 exp_rtl
= SUBREG_REG (exp_rtl
);
7222 && REGNO (exp_rtl
) < FIRST_PSEUDO_REGISTER
)
7226 /* If the rtl is X, then it is not safe. Otherwise, it is unless both
7227 are memory and they conflict. */
7228 return ! (rtx_equal_p (x
, exp_rtl
)
7229 || (MEM_P (x
) && MEM_P (exp_rtl
)
7230 && true_dependence (exp_rtl
, VOIDmode
, x
)));
7233 /* If we reach here, it is safe. */
7238 /* Return the highest power of two that EXP is known to be a multiple of.
7239 This is used in updating alignment of MEMs in array references. */
7241 unsigned HOST_WIDE_INT
7242 highest_pow2_factor (const_tree exp
)
7244 unsigned HOST_WIDE_INT c0
, c1
;
7246 switch (TREE_CODE (exp
))
7249 /* We can find the lowest bit that's a one. If the low
7250 HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
7251 We need to handle this case since we can find it in a COND_EXPR,
7252 a MIN_EXPR, or a MAX_EXPR. If the constant overflows, we have an
7253 erroneous program, so return BIGGEST_ALIGNMENT to avoid any
7255 if (TREE_OVERFLOW (exp
))
7256 return BIGGEST_ALIGNMENT
;
7259 /* Note: tree_low_cst is intentionally not used here,
7260 we don't care about the upper bits. */
7261 c0
= TREE_INT_CST_LOW (exp
);
7263 return c0
? c0
: BIGGEST_ALIGNMENT
;
7267 case PLUS_EXPR
: case MINUS_EXPR
: case MIN_EXPR
: case MAX_EXPR
:
7268 c0
= highest_pow2_factor (TREE_OPERAND (exp
, 0));
7269 c1
= highest_pow2_factor (TREE_OPERAND (exp
, 1));
7270 return MIN (c0
, c1
);
7273 c0
= highest_pow2_factor (TREE_OPERAND (exp
, 0));
7274 c1
= highest_pow2_factor (TREE_OPERAND (exp
, 1));
7277 case ROUND_DIV_EXPR
: case TRUNC_DIV_EXPR
: case FLOOR_DIV_EXPR
:
7279 if (integer_pow2p (TREE_OPERAND (exp
, 1))
7280 && host_integerp (TREE_OPERAND (exp
, 1), 1))
7282 c0
= highest_pow2_factor (TREE_OPERAND (exp
, 0));
7283 c1
= tree_low_cst (TREE_OPERAND (exp
, 1), 1);
7284 return MAX (1, c0
/ c1
);
7289 /* The highest power of two of a bit-and expression is the maximum of
7290 that of its operands. We typically get here for a complex LHS and
7291 a constant negative power of two on the RHS to force an explicit
7292 alignment, so don't bother looking at the LHS. */
7293 return highest_pow2_factor (TREE_OPERAND (exp
, 1));
7297 return highest_pow2_factor (TREE_OPERAND (exp
, 0));
7300 return highest_pow2_factor (TREE_OPERAND (exp
, 1));
7303 c0
= highest_pow2_factor (TREE_OPERAND (exp
, 1));
7304 c1
= highest_pow2_factor (TREE_OPERAND (exp
, 2));
7305 return MIN (c0
, c1
);
7314 /* Similar, except that the alignment requirements of TARGET are
7315 taken into account. Assume it is at least as aligned as its
7316 type, unless it is a COMPONENT_REF in which case the layout of
7317 the structure gives the alignment. */
7319 static unsigned HOST_WIDE_INT
7320 highest_pow2_factor_for_target (const_tree target
, const_tree exp
)
7322 unsigned HOST_WIDE_INT talign
= target_align (target
) / BITS_PER_UNIT
;
7323 unsigned HOST_WIDE_INT factor
= highest_pow2_factor (exp
);
7325 return MAX (factor
, talign
);
7328 #ifdef HAVE_conditional_move
7329 /* Convert the tree comparison code TCODE to the rtl one where the
7330 signedness is UNSIGNEDP. */
7332 static enum rtx_code
7333 convert_tree_comp_to_rtx (enum tree_code tcode
, int unsignedp
)
7345 code
= unsignedp
? LTU
: LT
;
7348 code
= unsignedp
? LEU
: LE
;
7351 code
= unsignedp
? GTU
: GT
;
7354 code
= unsignedp
? GEU
: GE
;
7356 case UNORDERED_EXPR
:
7388 /* Subroutine of expand_expr. Expand the two operands of a binary
7389 expression EXP0 and EXP1 placing the results in OP0 and OP1.
7390 The value may be stored in TARGET if TARGET is nonzero. The
7391 MODIFIER argument is as documented by expand_expr. */
7394 expand_operands (tree exp0
, tree exp1
, rtx target
, rtx
*op0
, rtx
*op1
,
7395 enum expand_modifier modifier
)
7397 if (! safe_from_p (target
, exp1
, 1))
7399 if (operand_equal_p (exp0
, exp1
, 0))
7401 *op0
= expand_expr (exp0
, target
, VOIDmode
, modifier
);
7402 *op1
= copy_rtx (*op0
);
7406 /* If we need to preserve evaluation order, copy exp0 into its own
7407 temporary variable so that it can't be clobbered by exp1. */
7408 if (flag_evaluation_order
&& TREE_SIDE_EFFECTS (exp1
))
7409 exp0
= save_expr (exp0
);
7410 *op0
= expand_expr (exp0
, target
, VOIDmode
, modifier
);
7411 *op1
= expand_expr (exp1
, NULL_RTX
, VOIDmode
, modifier
);
7416 /* Return a MEM that contains constant EXP. DEFER is as for
7417 output_constant_def and MODIFIER is as for expand_expr. */
7420 expand_expr_constant (tree exp
, int defer
, enum expand_modifier modifier
)
7424 mem
= output_constant_def (exp
, defer
);
7425 if (modifier
!= EXPAND_INITIALIZER
)
7426 mem
= use_anchored_address (mem
);
7430 /* A subroutine of expand_expr_addr_expr. Evaluate the address of EXP.
7431 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7434 expand_expr_addr_expr_1 (tree exp
, rtx target
, enum machine_mode tmode
,
7435 enum expand_modifier modifier
, addr_space_t as
)
7437 rtx result
, subtarget
;
7439 HOST_WIDE_INT bitsize
, bitpos
;
7440 int volatilep
, unsignedp
;
7441 enum machine_mode mode1
;
7443 /* If we are taking the address of a constant and are at the top level,
7444 we have to use output_constant_def since we can't call force_const_mem
7446 /* ??? This should be considered a front-end bug. We should not be
7447 generating ADDR_EXPR of something that isn't an LVALUE. The only
7448 exception here is STRING_CST. */
7449 if (CONSTANT_CLASS_P (exp
))
7451 result
= XEXP (expand_expr_constant (exp
, 0, modifier
), 0);
7452 if (modifier
< EXPAND_SUM
)
7453 result
= force_operand (result
, target
);
7457 /* Everything must be something allowed by is_gimple_addressable. */
7458 switch (TREE_CODE (exp
))
7461 /* This case will happen via recursion for &a->b. */
7462 return expand_expr (TREE_OPERAND (exp
, 0), target
, tmode
, modifier
);
7466 tree tem
= TREE_OPERAND (exp
, 0);
7467 if (!integer_zerop (TREE_OPERAND (exp
, 1)))
7468 tem
= fold_build_pointer_plus (tem
, TREE_OPERAND (exp
, 1));
7469 return expand_expr (tem
, target
, tmode
, modifier
);
7473 /* Expand the initializer like constants above. */
7474 result
= XEXP (expand_expr_constant (DECL_INITIAL (exp
),
7476 if (modifier
< EXPAND_SUM
)
7477 result
= force_operand (result
, target
);
7481 /* The real part of the complex number is always first, therefore
7482 the address is the same as the address of the parent object. */
7485 inner
= TREE_OPERAND (exp
, 0);
7489 /* The imaginary part of the complex number is always second.
7490 The expression is therefore always offset by the size of the
7493 bitpos
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp
)));
7494 inner
= TREE_OPERAND (exp
, 0);
7498 /* If the object is a DECL, then expand it for its rtl. Don't bypass
7499 expand_expr, as that can have various side effects; LABEL_DECLs for
7500 example, may not have their DECL_RTL set yet. Expand the rtl of
7501 CONSTRUCTORs too, which should yield a memory reference for the
7502 constructor's contents. Assume language specific tree nodes can
7503 be expanded in some interesting way. */
7504 gcc_assert (TREE_CODE (exp
) < LAST_AND_UNUSED_TREE_CODE
);
7506 || TREE_CODE (exp
) == CONSTRUCTOR
7507 || TREE_CODE (exp
) == COMPOUND_LITERAL_EXPR
)
7509 result
= expand_expr (exp
, target
, tmode
,
7510 modifier
== EXPAND_INITIALIZER
7511 ? EXPAND_INITIALIZER
: EXPAND_CONST_ADDRESS
);
7513 /* If the DECL isn't in memory, then the DECL wasn't properly
7514 marked TREE_ADDRESSABLE, which will be either a front-end
7515 or a tree optimizer bug. */
7517 if (TREE_ADDRESSABLE (exp
)
7519 && ! targetm
.calls
.allocate_stack_slots_for_args())
7521 error ("local frame unavailable (naked function?)");
7525 gcc_assert (MEM_P (result
));
7526 result
= XEXP (result
, 0);
7528 /* ??? Is this needed anymore? */
7530 TREE_USED (exp
) = 1;
7532 if (modifier
!= EXPAND_INITIALIZER
7533 && modifier
!= EXPAND_CONST_ADDRESS
7534 && modifier
!= EXPAND_SUM
)
7535 result
= force_operand (result
, target
);
7539 /* Pass FALSE as the last argument to get_inner_reference although
7540 we are expanding to RTL. The rationale is that we know how to
7541 handle "aligning nodes" here: we can just bypass them because
7542 they won't change the final object whose address will be returned
7543 (they actually exist only for that purpose). */
7544 inner
= get_inner_reference (exp
, &bitsize
, &bitpos
, &offset
,
7545 &mode1
, &unsignedp
, &volatilep
, false);
7549 /* We must have made progress. */
7550 gcc_assert (inner
!= exp
);
7552 subtarget
= offset
|| bitpos
? NULL_RTX
: target
;
7553 /* For VIEW_CONVERT_EXPR, where the outer alignment is bigger than
7554 inner alignment, force the inner to be sufficiently aligned. */
7555 if (CONSTANT_CLASS_P (inner
)
7556 && TYPE_ALIGN (TREE_TYPE (inner
)) < TYPE_ALIGN (TREE_TYPE (exp
)))
7558 inner
= copy_node (inner
);
7559 TREE_TYPE (inner
) = copy_node (TREE_TYPE (inner
));
7560 TYPE_ALIGN (TREE_TYPE (inner
)) = TYPE_ALIGN (TREE_TYPE (exp
));
7561 TYPE_USER_ALIGN (TREE_TYPE (inner
)) = 1;
7563 result
= expand_expr_addr_expr_1 (inner
, subtarget
, tmode
, modifier
, as
);
7569 if (modifier
!= EXPAND_NORMAL
)
7570 result
= force_operand (result
, NULL
);
7571 tmp
= expand_expr (offset
, NULL_RTX
, tmode
,
7572 modifier
== EXPAND_INITIALIZER
7573 ? EXPAND_INITIALIZER
: EXPAND_NORMAL
);
7575 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7576 tmp
= convert_memory_address_addr_space (tmode
, tmp
, as
);
7578 if (modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
7579 result
= simplify_gen_binary (PLUS
, tmode
, result
, tmp
);
7582 subtarget
= bitpos
? NULL_RTX
: target
;
7583 result
= expand_simple_binop (tmode
, PLUS
, result
, tmp
, subtarget
,
7584 1, OPTAB_LIB_WIDEN
);
7590 /* Someone beforehand should have rejected taking the address
7591 of such an object. */
7592 gcc_assert ((bitpos
% BITS_PER_UNIT
) == 0);
7594 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7595 result
= plus_constant (tmode
, result
, bitpos
/ BITS_PER_UNIT
);
7596 if (modifier
< EXPAND_SUM
)
7597 result
= force_operand (result
, target
);
7603 /* A subroutine of expand_expr. Evaluate EXP, which is an ADDR_EXPR.
7604 The TARGET, TMODE and MODIFIER arguments are as for expand_expr. */
7607 expand_expr_addr_expr (tree exp
, rtx target
, enum machine_mode tmode
,
7608 enum expand_modifier modifier
)
7610 addr_space_t as
= ADDR_SPACE_GENERIC
;
7611 enum machine_mode address_mode
= Pmode
;
7612 enum machine_mode pointer_mode
= ptr_mode
;
7613 enum machine_mode rmode
;
7616 /* Target mode of VOIDmode says "whatever's natural". */
7617 if (tmode
== VOIDmode
)
7618 tmode
= TYPE_MODE (TREE_TYPE (exp
));
7620 if (POINTER_TYPE_P (TREE_TYPE (exp
)))
7622 as
= TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)));
7623 address_mode
= targetm
.addr_space
.address_mode (as
);
7624 pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7627 /* We can get called with some Weird Things if the user does silliness
7628 like "(short) &a". In that case, convert_memory_address won't do
7629 the right thing, so ignore the given target mode. */
7630 if (tmode
!= address_mode
&& tmode
!= pointer_mode
)
7631 tmode
= address_mode
;
7633 result
= expand_expr_addr_expr_1 (TREE_OPERAND (exp
, 0), target
,
7634 tmode
, modifier
, as
);
7636 /* Despite expand_expr claims concerning ignoring TMODE when not
7637 strictly convenient, stuff breaks if we don't honor it. Note
7638 that combined with the above, we only do this for pointer modes. */
7639 rmode
= GET_MODE (result
);
7640 if (rmode
== VOIDmode
)
7643 result
= convert_memory_address_addr_space (tmode
, result
, as
);
7648 /* Generate code for computing CONSTRUCTOR EXP.
7649 An rtx for the computed value is returned. If AVOID_TEMP_MEM
7650 is TRUE, instead of creating a temporary variable in memory
7651 NULL is returned and the caller needs to handle it differently. */
7654 expand_constructor (tree exp
, rtx target
, enum expand_modifier modifier
,
7655 bool avoid_temp_mem
)
7657 tree type
= TREE_TYPE (exp
);
7658 enum machine_mode mode
= TYPE_MODE (type
);
7660 /* Try to avoid creating a temporary at all. This is possible
7661 if all of the initializer is zero.
7662 FIXME: try to handle all [0..255] initializers we can handle
7664 if (TREE_STATIC (exp
)
7665 && !TREE_ADDRESSABLE (exp
)
7666 && target
!= 0 && mode
== BLKmode
7667 && all_zeros_p (exp
))
7669 clear_storage (target
, expr_size (exp
), BLOCK_OP_NORMAL
);
7673 /* All elts simple constants => refer to a constant in memory. But
7674 if this is a non-BLKmode mode, let it store a field at a time
7675 since that should make a CONST_INT or CONST_DOUBLE when we
7676 fold. Likewise, if we have a target we can use, it is best to
7677 store directly into the target unless the type is large enough
7678 that memcpy will be used. If we are making an initializer and
7679 all operands are constant, put it in memory as well.
7681 FIXME: Avoid trying to fill vector constructors piece-meal.
7682 Output them with output_constant_def below unless we're sure
7683 they're zeros. This should go away when vector initializers
7684 are treated like VECTOR_CST instead of arrays. */
7685 if ((TREE_STATIC (exp
)
7686 && ((mode
== BLKmode
7687 && ! (target
!= 0 && safe_from_p (target
, exp
, 1)))
7688 || TREE_ADDRESSABLE (exp
)
7689 || (host_integerp (TYPE_SIZE_UNIT (type
), 1)
7690 && (! MOVE_BY_PIECES_P
7691 (tree_low_cst (TYPE_SIZE_UNIT (type
), 1),
7693 && ! mostly_zeros_p (exp
))))
7694 || ((modifier
== EXPAND_INITIALIZER
|| modifier
== EXPAND_CONST_ADDRESS
)
7695 && TREE_CONSTANT (exp
)))
7702 constructor
= expand_expr_constant (exp
, 1, modifier
);
7704 if (modifier
!= EXPAND_CONST_ADDRESS
7705 && modifier
!= EXPAND_INITIALIZER
7706 && modifier
!= EXPAND_SUM
)
7707 constructor
= validize_mem (constructor
);
7712 /* Handle calls that pass values in multiple non-contiguous
7713 locations. The Irix 6 ABI has examples of this. */
7714 if (target
== 0 || ! safe_from_p (target
, exp
, 1)
7715 || GET_CODE (target
) == PARALLEL
|| modifier
== EXPAND_STACK_PARM
)
7721 = assign_temp (build_qualified_type (type
, (TYPE_QUALS (type
)
7722 | (TREE_READONLY (exp
)
7723 * TYPE_QUAL_CONST
))),
7724 TREE_ADDRESSABLE (exp
), 1);
7727 store_constructor (exp
, target
, 0, int_expr_size (exp
));
7732 /* expand_expr: generate code for computing expression EXP.
7733 An rtx for the computed value is returned. The value is never null.
7734 In the case of a void EXP, const0_rtx is returned.
7736 The value may be stored in TARGET if TARGET is nonzero.
7737 TARGET is just a suggestion; callers must assume that
7738 the rtx returned may not be the same as TARGET.
7740 If TARGET is CONST0_RTX, it means that the value will be ignored.
7742 If TMODE is not VOIDmode, it suggests generating the
7743 result in mode TMODE. But this is done only when convenient.
7744 Otherwise, TMODE is ignored and the value generated in its natural mode.
7745 TMODE is just a suggestion; callers must assume that
7746 the rtx returned may not have mode TMODE.
7748 Note that TARGET may have neither TMODE nor MODE. In that case, it
7749 probably will not be used.
7751 If MODIFIER is EXPAND_SUM then when EXP is an addition
7752 we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
7753 or a nest of (PLUS ...) and (MINUS ...) where the terms are
7754 products as above, or REG or MEM, or constant.
7755 Ordinarily in such cases we would output mul or add instructions
7756 and then return a pseudo reg containing the sum.
7758 EXPAND_INITIALIZER is much like EXPAND_SUM except that
7759 it also marks a label as absolutely required (it can't be dead).
7760 It also makes a ZERO_EXTEND or SIGN_EXTEND instead of emitting extend insns.
7761 This is used for outputting expressions used in initializers.
7763 EXPAND_CONST_ADDRESS says that it is okay to return a MEM
7764 with a constant address even if that address is not normally legitimate.
7765 EXPAND_INITIALIZER and EXPAND_SUM also have this effect.
7767 EXPAND_STACK_PARM is used when expanding to a TARGET on the stack for
7768 a call parameter. Such targets require special care as we haven't yet
7769 marked TARGET so that it's safe from being trashed by libcalls. We
7770 don't want to use TARGET for anything but the final result;
7771 Intermediate values must go elsewhere. Additionally, calls to
7772 emit_block_move will be flagged with BLOCK_OP_CALL_PARM.
7774 If EXP is a VAR_DECL whose DECL_RTL was a MEM with an invalid
7775 address, and ALT_RTL is non-NULL, then *ALT_RTL is set to the
7776 DECL_RTL of the VAR_DECL. *ALT_RTL is also set if EXP is a
7777 COMPOUND_EXPR whose second argument is such a VAR_DECL, and so on
7781 expand_expr_real (tree exp
, rtx target
, enum machine_mode tmode
,
7782 enum expand_modifier modifier
, rtx
*alt_rtl
)
7786 /* Handle ERROR_MARK before anybody tries to access its type. */
7787 if (TREE_CODE (exp
) == ERROR_MARK
7788 || (TREE_CODE (TREE_TYPE (exp
)) == ERROR_MARK
))
7790 ret
= CONST0_RTX (tmode
);
7791 return ret
? ret
: const0_rtx
;
7794 /* If this is an expression of some kind and it has an associated line
7795 number, then emit the line number before expanding the expression.
7797 We need to save and restore the file and line information so that
7798 errors discovered during expansion are emitted with the right
7799 information. It would be better of the diagnostic routines
7800 used the file/line information embedded in the tree nodes rather
7802 if (cfun
&& EXPR_HAS_LOCATION (exp
))
7804 location_t saved_location
= input_location
;
7805 location_t saved_curr_loc
= get_curr_insn_source_location ();
7806 tree saved_block
= get_curr_insn_block ();
7807 input_location
= EXPR_LOCATION (exp
);
7808 set_curr_insn_source_location (input_location
);
7810 /* Record where the insns produced belong. */
7811 set_curr_insn_block (TREE_BLOCK (exp
));
7813 ret
= expand_expr_real_1 (exp
, target
, tmode
, modifier
, alt_rtl
);
7815 input_location
= saved_location
;
7816 set_curr_insn_block (saved_block
);
7817 set_curr_insn_source_location (saved_curr_loc
);
7821 ret
= expand_expr_real_1 (exp
, target
, tmode
, modifier
, alt_rtl
);
7827 /* Try to expand the conditional expression which is represented by
7828 TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If succeseds
7829 return the rtl reg which repsents the result. Otherwise return
7833 expand_cond_expr_using_cmove (tree treeop0 ATTRIBUTE_UNUSED
,
7834 tree treeop1 ATTRIBUTE_UNUSED
,
7835 tree treeop2 ATTRIBUTE_UNUSED
)
7837 #ifdef HAVE_conditional_move
7839 rtx op00
, op01
, op1
, op2
;
7840 enum rtx_code comparison_code
;
7841 enum machine_mode comparison_mode
;
7844 tree type
= TREE_TYPE (treeop1
);
7845 int unsignedp
= TYPE_UNSIGNED (type
);
7846 enum machine_mode mode
= TYPE_MODE (type
);
7848 temp
= assign_temp (type
, 0, 1);
7850 /* If we cannot do a conditional move on the mode, try doing it
7851 with the promoted mode. */
7852 if (!can_conditionally_move_p (mode
))
7853 mode
= promote_mode (type
, mode
, &unsignedp
);
7855 if (!can_conditionally_move_p (mode
))
7859 expand_operands (treeop1
, treeop2
,
7860 temp
, &op1
, &op2
, EXPAND_NORMAL
);
7862 if (TREE_CODE (treeop0
) == SSA_NAME
7863 && (srcstmt
= get_def_for_expr_class (treeop0
, tcc_comparison
)))
7865 tree type
= TREE_TYPE (gimple_assign_rhs1 (srcstmt
));
7866 enum tree_code cmpcode
= gimple_assign_rhs_code (srcstmt
);
7867 op00
= expand_normal (gimple_assign_rhs1 (srcstmt
));
7868 op01
= expand_normal (gimple_assign_rhs2 (srcstmt
));
7869 comparison_mode
= TYPE_MODE (type
);
7870 unsignedp
= TYPE_UNSIGNED (type
);
7871 comparison_code
= convert_tree_comp_to_rtx (cmpcode
, unsignedp
);
7873 else if (TREE_CODE_CLASS (TREE_CODE (treeop0
)) == tcc_comparison
)
7875 tree type
= TREE_TYPE (TREE_OPERAND (treeop0
, 0));
7876 enum tree_code cmpcode
= TREE_CODE (treeop0
);
7877 op00
= expand_normal (TREE_OPERAND (treeop0
, 0));
7878 op01
= expand_normal (TREE_OPERAND (treeop0
, 1));
7879 unsignedp
= TYPE_UNSIGNED (type
);
7880 comparison_mode
= TYPE_MODE (type
);
7881 comparison_code
= convert_tree_comp_to_rtx (cmpcode
, unsignedp
);
7885 op00
= expand_normal (treeop0
);
7887 comparison_code
= NE
;
7888 comparison_mode
= TYPE_MODE (TREE_TYPE (treeop0
));
7891 if (GET_MODE (op1
) != mode
)
7892 op1
= gen_lowpart (mode
, op1
);
7894 if (GET_MODE (op2
) != mode
)
7895 op2
= gen_lowpart (mode
, op2
);
7897 /* Try to emit the conditional move. */
7898 insn
= emit_conditional_move (temp
, comparison_code
,
7899 op00
, op01
, comparison_mode
,
7903 /* If we could do the conditional move, emit the sequence,
7907 rtx seq
= get_insns ();
7913 /* Otherwise discard the sequence and fall back to code with
7921 expand_expr_real_2 (sepops ops
, rtx target
, enum machine_mode tmode
,
7922 enum expand_modifier modifier
)
7924 rtx op0
, op1
, op2
, temp
;
7927 enum machine_mode mode
;
7928 enum tree_code code
= ops
->code
;
7930 rtx subtarget
, original_target
;
7932 bool reduce_bit_field
;
7933 location_t loc
= ops
->location
;
7934 tree treeop0
, treeop1
, treeop2
;
7935 #define REDUCE_BIT_FIELD(expr) (reduce_bit_field \
7936 ? reduce_to_bit_field_precision ((expr), \
7942 mode
= TYPE_MODE (type
);
7943 unsignedp
= TYPE_UNSIGNED (type
);
7949 /* We should be called only on simple (binary or unary) expressions,
7950 exactly those that are valid in gimple expressions that aren't
7951 GIMPLE_SINGLE_RHS (or invalid). */
7952 gcc_assert (get_gimple_rhs_class (code
) == GIMPLE_UNARY_RHS
7953 || get_gimple_rhs_class (code
) == GIMPLE_BINARY_RHS
7954 || get_gimple_rhs_class (code
) == GIMPLE_TERNARY_RHS
);
7956 ignore
= (target
== const0_rtx
7957 || ((CONVERT_EXPR_CODE_P (code
)
7958 || code
== COND_EXPR
|| code
== VIEW_CONVERT_EXPR
)
7959 && TREE_CODE (type
) == VOID_TYPE
));
7961 /* We should be called only if we need the result. */
7962 gcc_assert (!ignore
);
7964 /* An operation in what may be a bit-field type needs the
7965 result to be reduced to the precision of the bit-field type,
7966 which is narrower than that of the type's mode. */
7967 reduce_bit_field
= (INTEGRAL_TYPE_P (type
)
7968 && GET_MODE_PRECISION (mode
) > TYPE_PRECISION (type
));
7970 if (reduce_bit_field
&& modifier
== EXPAND_STACK_PARM
)
7973 /* Use subtarget as the target for operand 0 of a binary operation. */
7974 subtarget
= get_subtarget (target
);
7975 original_target
= target
;
7979 case NON_LVALUE_EXPR
:
7982 if (treeop0
== error_mark_node
)
7985 if (TREE_CODE (type
) == UNION_TYPE
)
7987 tree valtype
= TREE_TYPE (treeop0
);
7989 /* If both input and output are BLKmode, this conversion isn't doing
7990 anything except possibly changing memory attribute. */
7991 if (mode
== BLKmode
&& TYPE_MODE (valtype
) == BLKmode
)
7993 rtx result
= expand_expr (treeop0
, target
, tmode
,
7996 result
= copy_rtx (result
);
7997 set_mem_attributes (result
, type
, 0);
8003 if (TYPE_MODE (type
) != BLKmode
)
8004 target
= gen_reg_rtx (TYPE_MODE (type
));
8006 target
= assign_temp (type
, 1, 1);
8010 /* Store data into beginning of memory target. */
8011 store_expr (treeop0
,
8012 adjust_address (target
, TYPE_MODE (valtype
), 0),
8013 modifier
== EXPAND_STACK_PARM
,
8018 gcc_assert (REG_P (target
));
8020 /* Store this field into a union of the proper type. */
8021 store_field (target
,
8022 MIN ((int_size_in_bytes (TREE_TYPE
8025 (HOST_WIDE_INT
) GET_MODE_BITSIZE (mode
)),
8026 0, 0, 0, TYPE_MODE (valtype
), treeop0
,
8030 /* Return the entire union. */
8034 if (mode
== TYPE_MODE (TREE_TYPE (treeop0
)))
8036 op0
= expand_expr (treeop0
, target
, VOIDmode
,
8039 /* If the signedness of the conversion differs and OP0 is
8040 a promoted SUBREG, clear that indication since we now
8041 have to do the proper extension. */
8042 if (TYPE_UNSIGNED (TREE_TYPE (treeop0
)) != unsignedp
8043 && GET_CODE (op0
) == SUBREG
)
8044 SUBREG_PROMOTED_VAR_P (op0
) = 0;
8046 return REDUCE_BIT_FIELD (op0
);
8049 op0
= expand_expr (treeop0
, NULL_RTX
, mode
,
8050 modifier
== EXPAND_SUM
? EXPAND_NORMAL
: modifier
);
8051 if (GET_MODE (op0
) == mode
)
8054 /* If OP0 is a constant, just convert it into the proper mode. */
8055 else if (CONSTANT_P (op0
))
8057 tree inner_type
= TREE_TYPE (treeop0
);
8058 enum machine_mode inner_mode
= GET_MODE (op0
);
8060 if (inner_mode
== VOIDmode
)
8061 inner_mode
= TYPE_MODE (inner_type
);
8063 if (modifier
== EXPAND_INITIALIZER
)
8064 op0
= simplify_gen_subreg (mode
, op0
, inner_mode
,
8065 subreg_lowpart_offset (mode
,
8068 op0
= convert_modes (mode
, inner_mode
, op0
,
8069 TYPE_UNSIGNED (inner_type
));
8072 else if (modifier
== EXPAND_INITIALIZER
)
8073 op0
= gen_rtx_fmt_e (unsignedp
? ZERO_EXTEND
: SIGN_EXTEND
, mode
, op0
);
8075 else if (target
== 0)
8076 op0
= convert_to_mode (mode
, op0
,
8077 TYPE_UNSIGNED (TREE_TYPE
8081 convert_move (target
, op0
,
8082 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
8086 return REDUCE_BIT_FIELD (op0
);
8088 case ADDR_SPACE_CONVERT_EXPR
:
8090 tree treeop0_type
= TREE_TYPE (treeop0
);
8092 addr_space_t as_from
;
8094 gcc_assert (POINTER_TYPE_P (type
));
8095 gcc_assert (POINTER_TYPE_P (treeop0_type
));
8097 as_to
= TYPE_ADDR_SPACE (TREE_TYPE (type
));
8098 as_from
= TYPE_ADDR_SPACE (TREE_TYPE (treeop0_type
));
8100 /* Conversions between pointers to the same address space should
8101 have been implemented via CONVERT_EXPR / NOP_EXPR. */
8102 gcc_assert (as_to
!= as_from
);
8104 /* Ask target code to handle conversion between pointers
8105 to overlapping address spaces. */
8106 if (targetm
.addr_space
.subset_p (as_to
, as_from
)
8107 || targetm
.addr_space
.subset_p (as_from
, as_to
))
8109 op0
= expand_expr (treeop0
, NULL_RTX
, VOIDmode
, modifier
);
8110 op0
= targetm
.addr_space
.convert (op0
, treeop0_type
, type
);
8115 /* For disjoint address spaces, converting anything but
8116 a null pointer invokes undefined behaviour. We simply
8117 always return a null pointer here. */
8118 return CONST0_RTX (mode
);
8121 case POINTER_PLUS_EXPR
:
8122 /* Even though the sizetype mode and the pointer's mode can be different
8123 expand is able to handle this correctly and get the correct result out
8124 of the PLUS_EXPR code. */
8125 /* Make sure to sign-extend the sizetype offset in a POINTER_PLUS_EXPR
8126 if sizetype precision is smaller than pointer precision. */
8127 if (TYPE_PRECISION (sizetype
) < TYPE_PRECISION (type
))
8128 treeop1
= fold_convert_loc (loc
, type
,
8129 fold_convert_loc (loc
, ssizetype
,
8131 /* If sizetype precision is larger than pointer precision, truncate the
8132 offset to have matching modes. */
8133 else if (TYPE_PRECISION (sizetype
) > TYPE_PRECISION (type
))
8134 treeop1
= fold_convert_loc (loc
, type
, treeop1
);
8137 /* If we are adding a constant, a VAR_DECL that is sp, fp, or ap, and
8138 something else, make sure we add the register to the constant and
8139 then to the other thing. This case can occur during strength
8140 reduction and doing it this way will produce better code if the
8141 frame pointer or argument pointer is eliminated.
8143 fold-const.c will ensure that the constant is always in the inner
8144 PLUS_EXPR, so the only case we need to do anything about is if
8145 sp, ap, or fp is our second argument, in which case we must swap
8146 the innermost first argument and our second argument. */
8148 if (TREE_CODE (treeop0
) == PLUS_EXPR
8149 && TREE_CODE (TREE_OPERAND (treeop0
, 1)) == INTEGER_CST
8150 && TREE_CODE (treeop1
) == VAR_DECL
8151 && (DECL_RTL (treeop1
) == frame_pointer_rtx
8152 || DECL_RTL (treeop1
) == stack_pointer_rtx
8153 || DECL_RTL (treeop1
) == arg_pointer_rtx
))
8158 /* If the result is to be ptr_mode and we are adding an integer to
8159 something, we might be forming a constant. So try to use
8160 plus_constant. If it produces a sum and we can't accept it,
8161 use force_operand. This allows P = &ARR[const] to generate
8162 efficient code on machines where a SYMBOL_REF is not a valid
8165 If this is an EXPAND_SUM call, always return the sum. */
8166 if (modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
8167 || (mode
== ptr_mode
&& (unsignedp
|| ! flag_trapv
)))
8169 if (modifier
== EXPAND_STACK_PARM
)
8171 if (TREE_CODE (treeop0
) == INTEGER_CST
8172 && GET_MODE_PRECISION (mode
) <= HOST_BITS_PER_WIDE_INT
8173 && TREE_CONSTANT (treeop1
))
8177 op1
= expand_expr (treeop1
, subtarget
, VOIDmode
,
8179 /* Use immed_double_const to ensure that the constant is
8180 truncated according to the mode of OP1, then sign extended
8181 to a HOST_WIDE_INT. Using the constant directly can result
8182 in non-canonical RTL in a 64x32 cross compile. */
8184 = immed_double_const (TREE_INT_CST_LOW (treeop0
),
8186 TYPE_MODE (TREE_TYPE (treeop1
)));
8187 op1
= plus_constant (mode
, op1
, INTVAL (constant_part
));
8188 if (modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8189 op1
= force_operand (op1
, target
);
8190 return REDUCE_BIT_FIELD (op1
);
8193 else if (TREE_CODE (treeop1
) == INTEGER_CST
8194 && GET_MODE_PRECISION (mode
) <= HOST_BITS_PER_WIDE_INT
8195 && TREE_CONSTANT (treeop0
))
8199 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
,
8200 (modifier
== EXPAND_INITIALIZER
8201 ? EXPAND_INITIALIZER
: EXPAND_SUM
));
8202 if (! CONSTANT_P (op0
))
8204 op1
= expand_expr (treeop1
, NULL_RTX
,
8205 VOIDmode
, modifier
);
8206 /* Return a PLUS if modifier says it's OK. */
8207 if (modifier
== EXPAND_SUM
8208 || modifier
== EXPAND_INITIALIZER
)
8209 return simplify_gen_binary (PLUS
, mode
, op0
, op1
);
8212 /* Use immed_double_const to ensure that the constant is
8213 truncated according to the mode of OP1, then sign extended
8214 to a HOST_WIDE_INT. Using the constant directly can result
8215 in non-canonical RTL in a 64x32 cross compile. */
8217 = immed_double_const (TREE_INT_CST_LOW (treeop1
),
8219 TYPE_MODE (TREE_TYPE (treeop0
)));
8220 op0
= plus_constant (mode
, op0
, INTVAL (constant_part
));
8221 if (modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8222 op0
= force_operand (op0
, target
);
8223 return REDUCE_BIT_FIELD (op0
);
8227 /* Use TER to expand pointer addition of a negated value
8228 as pointer subtraction. */
8229 if ((POINTER_TYPE_P (TREE_TYPE (treeop0
))
8230 || (TREE_CODE (TREE_TYPE (treeop0
)) == VECTOR_TYPE
8231 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (treeop0
)))))
8232 && TREE_CODE (treeop1
) == SSA_NAME
8233 && TYPE_MODE (TREE_TYPE (treeop0
))
8234 == TYPE_MODE (TREE_TYPE (treeop1
)))
8236 gimple def
= get_def_for_expr (treeop1
, NEGATE_EXPR
);
8239 treeop1
= gimple_assign_rhs1 (def
);
8245 /* No sense saving up arithmetic to be done
8246 if it's all in the wrong mode to form part of an address.
8247 And force_operand won't know whether to sign-extend or
8249 if ((modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8250 || mode
!= ptr_mode
)
8252 expand_operands (treeop0
, treeop1
,
8253 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8254 if (op0
== const0_rtx
)
8256 if (op1
== const0_rtx
)
8261 expand_operands (treeop0
, treeop1
,
8262 subtarget
, &op0
, &op1
, modifier
);
8263 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS
, mode
, op0
, op1
));
8267 /* For initializers, we are allowed to return a MINUS of two
8268 symbolic constants. Here we handle all cases when both operands
8270 /* Handle difference of two symbolic constants,
8271 for the sake of an initializer. */
8272 if ((modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
8273 && really_constant_p (treeop0
)
8274 && really_constant_p (treeop1
))
8276 expand_operands (treeop0
, treeop1
,
8277 NULL_RTX
, &op0
, &op1
, modifier
);
8279 /* If the last operand is a CONST_INT, use plus_constant of
8280 the negated constant. Else make the MINUS. */
8281 if (CONST_INT_P (op1
))
8282 return REDUCE_BIT_FIELD (plus_constant (mode
, op0
,
8285 return REDUCE_BIT_FIELD (gen_rtx_MINUS (mode
, op0
, op1
));
8288 /* No sense saving up arithmetic to be done
8289 if it's all in the wrong mode to form part of an address.
8290 And force_operand won't know whether to sign-extend or
8292 if ((modifier
!= EXPAND_SUM
&& modifier
!= EXPAND_INITIALIZER
)
8293 || mode
!= ptr_mode
)
8296 expand_operands (treeop0
, treeop1
,
8297 subtarget
, &op0
, &op1
, modifier
);
8299 /* Convert A - const to A + (-const). */
8300 if (CONST_INT_P (op1
))
8302 op1
= negate_rtx (mode
, op1
);
8303 return REDUCE_BIT_FIELD (simplify_gen_binary (PLUS
, mode
, op0
, op1
));
8308 case WIDEN_MULT_PLUS_EXPR
:
8309 case WIDEN_MULT_MINUS_EXPR
:
8310 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8311 op2
= expand_normal (treeop2
);
8312 target
= expand_widen_pattern_expr (ops
, op0
, op1
, op2
,
8316 case WIDEN_MULT_EXPR
:
8317 /* If first operand is constant, swap them.
8318 Thus the following special case checks need only
8319 check the second operand. */
8320 if (TREE_CODE (treeop0
) == INTEGER_CST
)
8327 /* First, check if we have a multiplication of one signed and one
8328 unsigned operand. */
8329 if (TREE_CODE (treeop1
) != INTEGER_CST
8330 && (TYPE_UNSIGNED (TREE_TYPE (treeop0
))
8331 != TYPE_UNSIGNED (TREE_TYPE (treeop1
))))
8333 enum machine_mode innermode
= TYPE_MODE (TREE_TYPE (treeop0
));
8334 this_optab
= usmul_widen_optab
;
8335 if (find_widening_optab_handler (this_optab
, mode
, innermode
, 0)
8336 != CODE_FOR_nothing
)
8338 if (TYPE_UNSIGNED (TREE_TYPE (treeop0
)))
8339 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
,
8342 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op1
, &op0
,
8347 /* Check for a multiplication with matching signedness. */
8348 else if ((TREE_CODE (treeop1
) == INTEGER_CST
8349 && int_fits_type_p (treeop1
, TREE_TYPE (treeop0
)))
8350 || (TYPE_UNSIGNED (TREE_TYPE (treeop1
))
8351 == TYPE_UNSIGNED (TREE_TYPE (treeop0
))))
8353 tree op0type
= TREE_TYPE (treeop0
);
8354 enum machine_mode innermode
= TYPE_MODE (op0type
);
8355 bool zextend_p
= TYPE_UNSIGNED (op0type
);
8356 optab other_optab
= zextend_p
? smul_widen_optab
: umul_widen_optab
;
8357 this_optab
= zextend_p
? umul_widen_optab
: smul_widen_optab
;
8359 if (TREE_CODE (treeop0
) != INTEGER_CST
)
8361 if (find_widening_optab_handler (this_optab
, mode
, innermode
, 0)
8362 != CODE_FOR_nothing
)
8364 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
,
8366 temp
= expand_widening_mult (mode
, op0
, op1
, target
,
8367 unsignedp
, this_optab
);
8368 return REDUCE_BIT_FIELD (temp
);
8370 if (find_widening_optab_handler (other_optab
, mode
, innermode
, 0)
8372 && innermode
== word_mode
)
8375 op0
= expand_normal (treeop0
);
8376 if (TREE_CODE (treeop1
) == INTEGER_CST
)
8377 op1
= convert_modes (innermode
, mode
,
8378 expand_normal (treeop1
), unsignedp
);
8380 op1
= expand_normal (treeop1
);
8381 temp
= expand_binop (mode
, other_optab
, op0
, op1
, target
,
8382 unsignedp
, OPTAB_LIB_WIDEN
);
8383 hipart
= gen_highpart (innermode
, temp
);
8384 htem
= expand_mult_highpart_adjust (innermode
, hipart
,
8388 emit_move_insn (hipart
, htem
);
8389 return REDUCE_BIT_FIELD (temp
);
8393 treeop0
= fold_build1 (CONVERT_EXPR
, type
, treeop0
);
8394 treeop1
= fold_build1 (CONVERT_EXPR
, type
, treeop1
);
8395 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8396 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
, target
, unsignedp
));
8400 optab opt
= fma_optab
;
8403 /* If there is no insn for FMA, emit it as __builtin_fma{,f,l}
8405 if (optab_handler (fma_optab
, mode
) == CODE_FOR_nothing
)
8407 tree fn
= mathfn_built_in (TREE_TYPE (treeop0
), BUILT_IN_FMA
);
8410 gcc_assert (fn
!= NULL_TREE
);
8411 call_expr
= build_call_expr (fn
, 3, treeop0
, treeop1
, treeop2
);
8412 return expand_builtin (call_expr
, target
, subtarget
, mode
, false);
8415 def0
= get_def_for_expr (treeop0
, NEGATE_EXPR
);
8416 def2
= get_def_for_expr (treeop2
, NEGATE_EXPR
);
8421 && optab_handler (fnms_optab
, mode
) != CODE_FOR_nothing
)
8424 op0
= expand_normal (gimple_assign_rhs1 (def0
));
8425 op2
= expand_normal (gimple_assign_rhs1 (def2
));
8428 && optab_handler (fnma_optab
, mode
) != CODE_FOR_nothing
)
8431 op0
= expand_normal (gimple_assign_rhs1 (def0
));
8434 && optab_handler (fms_optab
, mode
) != CODE_FOR_nothing
)
8437 op2
= expand_normal (gimple_assign_rhs1 (def2
));
8441 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
, EXPAND_NORMAL
);
8443 op2
= expand_normal (treeop2
);
8444 op1
= expand_normal (treeop1
);
8446 return expand_ternary_op (TYPE_MODE (type
), opt
,
8447 op0
, op1
, op2
, target
, 0);
8451 /* If this is a fixed-point operation, then we cannot use the code
8452 below because "expand_mult" doesn't support sat/no-sat fixed-point
8454 if (ALL_FIXED_POINT_MODE_P (mode
))
8457 /* If first operand is constant, swap them.
8458 Thus the following special case checks need only
8459 check the second operand. */
8460 if (TREE_CODE (treeop0
) == INTEGER_CST
)
8467 /* Attempt to return something suitable for generating an
8468 indexed address, for machines that support that. */
8470 if (modifier
== EXPAND_SUM
&& mode
== ptr_mode
8471 && host_integerp (treeop1
, 0))
8473 tree exp1
= treeop1
;
8475 op0
= expand_expr (treeop0
, subtarget
, VOIDmode
,
8479 op0
= force_operand (op0
, NULL_RTX
);
8481 op0
= copy_to_mode_reg (mode
, op0
);
8483 return REDUCE_BIT_FIELD (gen_rtx_MULT (mode
, op0
,
8484 gen_int_mode (tree_low_cst (exp1
, 0),
8485 TYPE_MODE (TREE_TYPE (exp1
)))));
8488 if (modifier
== EXPAND_STACK_PARM
)
8491 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8492 return REDUCE_BIT_FIELD (expand_mult (mode
, op0
, op1
, target
, unsignedp
));
8494 case TRUNC_DIV_EXPR
:
8495 case FLOOR_DIV_EXPR
:
8497 case ROUND_DIV_EXPR
:
8498 case EXACT_DIV_EXPR
:
8499 /* If this is a fixed-point operation, then we cannot use the code
8500 below because "expand_divmod" doesn't support sat/no-sat fixed-point
8502 if (ALL_FIXED_POINT_MODE_P (mode
))
8505 if (modifier
== EXPAND_STACK_PARM
)
8507 /* Possible optimization: compute the dividend with EXPAND_SUM
8508 then if the divisor is constant can optimize the case
8509 where some terms of the dividend have coeffs divisible by it. */
8510 expand_operands (treeop0
, treeop1
,
8511 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8512 return expand_divmod (0, code
, mode
, op0
, op1
, target
, unsignedp
);
8517 case MULT_HIGHPART_EXPR
:
8518 expand_operands (treeop0
, treeop1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8519 temp
= expand_mult_highpart (mode
, op0
, op1
, target
, unsignedp
);
8523 case TRUNC_MOD_EXPR
:
8524 case FLOOR_MOD_EXPR
:
8526 case ROUND_MOD_EXPR
:
8527 if (modifier
== EXPAND_STACK_PARM
)
8529 expand_operands (treeop0
, treeop1
,
8530 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
8531 return expand_divmod (1, code
, mode
, op0
, op1
, target
, unsignedp
);
8533 case FIXED_CONVERT_EXPR
:
8534 op0
= expand_normal (treeop0
);
8535 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8536 target
= gen_reg_rtx (mode
);
8538 if ((TREE_CODE (TREE_TYPE (treeop0
)) == INTEGER_TYPE
8539 && TYPE_UNSIGNED (TREE_TYPE (treeop0
)))
8540 || (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
)))
8541 expand_fixed_convert (target
, op0
, 1, TYPE_SATURATING (type
));
8543 expand_fixed_convert (target
, op0
, 0, TYPE_SATURATING (type
));
8546 case FIX_TRUNC_EXPR
:
8547 op0
= expand_normal (treeop0
);
8548 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8549 target
= gen_reg_rtx (mode
);
8550 expand_fix (target
, op0
, unsignedp
);
8554 op0
= expand_normal (treeop0
);
8555 if (target
== 0 || modifier
== EXPAND_STACK_PARM
)
8556 target
= gen_reg_rtx (mode
);
8557 /* expand_float can't figure out what to do if FROM has VOIDmode.
8558 So give it the correct mode. With -O, cse will optimize this. */
8559 if (GET_MODE (op0
) == VOIDmode
)
8560 op0
= copy_to_mode_reg (TYPE_MODE (TREE_TYPE (treeop0
)),
8562 expand_float (target
, op0
,
8563 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
8567 op0
= expand_expr (treeop0
, subtarget
,
8568 VOIDmode
, EXPAND_NORMAL
);
8569 if (modifier
== EXPAND_STACK_PARM
)
8571 temp
= expand_unop (mode
,
8572 optab_for_tree_code (NEGATE_EXPR
, type
,
8576 return REDUCE_BIT_FIELD (temp
);
8579 op0
= expand_expr (treeop0
, subtarget
,
8580 VOIDmode
, EXPAND_NORMAL
);
8581 if (modifier
== EXPAND_STACK_PARM
)
8584 /* ABS_EXPR is not valid for complex arguments. */
8585 gcc_assert (GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
8586 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
);
8588 /* Unsigned abs is simply the operand. Testing here means we don't
8589 risk generating incorrect code below. */
8590 if (TYPE_UNSIGNED (type
))
8593 return expand_abs (mode
, op0
, target
, unsignedp
,
8594 safe_from_p (target
, treeop0
, 1));
8598 target
= original_target
;
8600 || modifier
== EXPAND_STACK_PARM
8601 || (MEM_P (target
) && MEM_VOLATILE_P (target
))
8602 || GET_MODE (target
) != mode
8604 && REGNO (target
) < FIRST_PSEUDO_REGISTER
))
8605 target
= gen_reg_rtx (mode
);
8606 expand_operands (treeop0
, treeop1
,
8607 target
, &op0
, &op1
, EXPAND_NORMAL
);
8609 /* First try to do it with a special MIN or MAX instruction.
8610 If that does not win, use a conditional jump to select the proper
8612 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
8613 temp
= expand_binop (mode
, this_optab
, op0
, op1
, target
, unsignedp
,
8618 /* At this point, a MEM target is no longer useful; we will get better
8621 if (! REG_P (target
))
8622 target
= gen_reg_rtx (mode
);
8624 /* If op1 was placed in target, swap op0 and op1. */
8625 if (target
!= op0
&& target
== op1
)
8632 /* We generate better code and avoid problems with op1 mentioning
8633 target by forcing op1 into a pseudo if it isn't a constant. */
8634 if (! CONSTANT_P (op1
))
8635 op1
= force_reg (mode
, op1
);
8638 enum rtx_code comparison_code
;
8641 if (code
== MAX_EXPR
)
8642 comparison_code
= unsignedp
? GEU
: GE
;
8644 comparison_code
= unsignedp
? LEU
: LE
;
8646 /* Canonicalize to comparisons against 0. */
8647 if (op1
== const1_rtx
)
8649 /* Converting (a >= 1 ? a : 1) into (a > 0 ? a : 1)
8650 or (a != 0 ? a : 1) for unsigned.
8651 For MIN we are safe converting (a <= 1 ? a : 1)
8652 into (a <= 0 ? a : 1) */
8653 cmpop1
= const0_rtx
;
8654 if (code
== MAX_EXPR
)
8655 comparison_code
= unsignedp
? NE
: GT
;
8657 if (op1
== constm1_rtx
&& !unsignedp
)
8659 /* Converting (a >= -1 ? a : -1) into (a >= 0 ? a : -1)
8660 and (a <= -1 ? a : -1) into (a < 0 ? a : -1) */
8661 cmpop1
= const0_rtx
;
8662 if (code
== MIN_EXPR
)
8663 comparison_code
= LT
;
8665 #ifdef HAVE_conditional_move
8666 /* Use a conditional move if possible. */
8667 if (can_conditionally_move_p (mode
))
8671 /* ??? Same problem as in expmed.c: emit_conditional_move
8672 forces a stack adjustment via compare_from_rtx, and we
8673 lose the stack adjustment if the sequence we are about
8674 to create is discarded. */
8675 do_pending_stack_adjust ();
8679 /* Try to emit the conditional move. */
8680 insn
= emit_conditional_move (target
, comparison_code
,
8685 /* If we could do the conditional move, emit the sequence,
8689 rtx seq
= get_insns ();
8695 /* Otherwise discard the sequence and fall back to code with
8701 emit_move_insn (target
, op0
);
8703 temp
= gen_label_rtx ();
8704 do_compare_rtx_and_jump (target
, cmpop1
, comparison_code
,
8705 unsignedp
, mode
, NULL_RTX
, NULL_RTX
, temp
,
8708 emit_move_insn (target
, op1
);
8713 op0
= expand_expr (treeop0
, subtarget
,
8714 VOIDmode
, EXPAND_NORMAL
);
8715 if (modifier
== EXPAND_STACK_PARM
)
8717 /* In case we have to reduce the result to bitfield precision
8718 for unsigned bitfield expand this as XOR with a proper constant
8720 if (reduce_bit_field
&& TYPE_UNSIGNED (type
))
8721 temp
= expand_binop (mode
, xor_optab
, op0
,
8722 immed_double_int_const
8723 (double_int_mask (TYPE_PRECISION (type
)), mode
),
8724 target
, 1, OPTAB_LIB_WIDEN
);
8726 temp
= expand_unop (mode
, one_cmpl_optab
, op0
, target
, 1);
8730 /* ??? Can optimize bitwise operations with one arg constant.
8731 Can optimize (a bitwise1 n) bitwise2 (a bitwise3 b)
8732 and (a bitwise1 b) bitwise2 b (etc)
8733 but that is probably not worth while. */
8742 gcc_assert (VECTOR_MODE_P (TYPE_MODE (type
))
8743 || (GET_MODE_PRECISION (TYPE_MODE (type
))
8744 == TYPE_PRECISION (type
)));
8749 /* If this is a fixed-point operation, then we cannot use the code
8750 below because "expand_shift" doesn't support sat/no-sat fixed-point
8752 if (ALL_FIXED_POINT_MODE_P (mode
))
8755 if (! safe_from_p (subtarget
, treeop1
, 1))
8757 if (modifier
== EXPAND_STACK_PARM
)
8759 op0
= expand_expr (treeop0
, subtarget
,
8760 VOIDmode
, EXPAND_NORMAL
);
8761 temp
= expand_variable_shift (code
, mode
, op0
, treeop1
, target
,
8763 if (code
== LSHIFT_EXPR
)
8764 temp
= REDUCE_BIT_FIELD (temp
);
8767 /* Could determine the answer when only additive constants differ. Also,
8768 the addition of one can be handled by changing the condition. */
8775 case UNORDERED_EXPR
:
8783 temp
= do_store_flag (ops
,
8784 modifier
!= EXPAND_STACK_PARM
? target
: NULL_RTX
,
8785 tmode
!= VOIDmode
? tmode
: mode
);
8789 /* Use a compare and a jump for BLKmode comparisons, or for function
8790 type comparisons is HAVE_canonicalize_funcptr_for_compare. */
8793 || modifier
== EXPAND_STACK_PARM
8794 || ! safe_from_p (target
, treeop0
, 1)
8795 || ! safe_from_p (target
, treeop1
, 1)
8796 /* Make sure we don't have a hard reg (such as function's return
8797 value) live across basic blocks, if not optimizing. */
8798 || (!optimize
&& REG_P (target
)
8799 && REGNO (target
) < FIRST_PSEUDO_REGISTER
)))
8800 target
= gen_reg_rtx (tmode
!= VOIDmode
? tmode
: mode
);
8802 emit_move_insn (target
, const0_rtx
);
8804 op1
= gen_label_rtx ();
8805 jumpifnot_1 (code
, treeop0
, treeop1
, op1
, -1);
8807 if (TYPE_PRECISION (type
) == 1 && !TYPE_UNSIGNED (type
))
8808 emit_move_insn (target
, constm1_rtx
);
8810 emit_move_insn (target
, const1_rtx
);
8816 /* Get the rtx code of the operands. */
8817 op0
= expand_normal (treeop0
);
8818 op1
= expand_normal (treeop1
);
8821 target
= gen_reg_rtx (TYPE_MODE (type
));
8823 /* Move the real (op0) and imaginary (op1) parts to their location. */
8824 write_complex_part (target
, op0
, false);
8825 write_complex_part (target
, op1
, true);
8829 case WIDEN_SUM_EXPR
:
8831 tree oprnd0
= treeop0
;
8832 tree oprnd1
= treeop1
;
8834 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8835 target
= expand_widen_pattern_expr (ops
, op0
, NULL_RTX
, op1
,
8840 case REDUC_MAX_EXPR
:
8841 case REDUC_MIN_EXPR
:
8842 case REDUC_PLUS_EXPR
:
8844 op0
= expand_normal (treeop0
);
8845 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
8846 temp
= expand_unop (mode
, this_optab
, op0
, target
, unsignedp
);
8851 case VEC_LSHIFT_EXPR
:
8852 case VEC_RSHIFT_EXPR
:
8854 target
= expand_vec_shift_expr (ops
, target
);
8858 case VEC_UNPACK_HI_EXPR
:
8859 case VEC_UNPACK_LO_EXPR
:
8861 op0
= expand_normal (treeop0
);
8862 temp
= expand_widen_pattern_expr (ops
, op0
, NULL_RTX
, NULL_RTX
,
8868 case VEC_UNPACK_FLOAT_HI_EXPR
:
8869 case VEC_UNPACK_FLOAT_LO_EXPR
:
8871 op0
= expand_normal (treeop0
);
8872 /* The signedness is determined from input operand. */
8873 temp
= expand_widen_pattern_expr
8874 (ops
, op0
, NULL_RTX
, NULL_RTX
,
8875 target
, TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
8881 case VEC_WIDEN_MULT_HI_EXPR
:
8882 case VEC_WIDEN_MULT_LO_EXPR
:
8883 case VEC_WIDEN_MULT_EVEN_EXPR
:
8884 case VEC_WIDEN_MULT_ODD_EXPR
:
8885 case VEC_WIDEN_LSHIFT_HI_EXPR
:
8886 case VEC_WIDEN_LSHIFT_LO_EXPR
:
8887 expand_operands (treeop0
, treeop1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8888 target
= expand_widen_pattern_expr (ops
, op0
, op1
, NULL_RTX
,
8890 gcc_assert (target
);
8893 case VEC_PACK_TRUNC_EXPR
:
8894 case VEC_PACK_SAT_EXPR
:
8895 case VEC_PACK_FIX_TRUNC_EXPR
:
8896 mode
= TYPE_MODE (TREE_TYPE (treeop0
));
8900 expand_operands (treeop0
, treeop1
, target
, &op0
, &op1
, EXPAND_NORMAL
);
8901 op2
= expand_normal (treeop2
);
8903 /* Careful here: if the target doesn't support integral vector modes,
8904 a constant selection vector could wind up smooshed into a normal
8905 integral constant. */
8906 if (CONSTANT_P (op2
) && GET_CODE (op2
) != CONST_VECTOR
)
8908 tree sel_type
= TREE_TYPE (treeop2
);
8909 enum machine_mode vmode
8910 = mode_for_vector (TYPE_MODE (TREE_TYPE (sel_type
)),
8911 TYPE_VECTOR_SUBPARTS (sel_type
));
8912 gcc_assert (GET_MODE_CLASS (vmode
) == MODE_VECTOR_INT
);
8913 op2
= simplify_subreg (vmode
, op2
, TYPE_MODE (sel_type
), 0);
8914 gcc_assert (op2
&& GET_CODE (op2
) == CONST_VECTOR
);
8917 gcc_assert (GET_MODE_CLASS (GET_MODE (op2
)) == MODE_VECTOR_INT
);
8919 temp
= expand_vec_perm (mode
, op0
, op1
, op2
, target
);
8925 tree oprnd0
= treeop0
;
8926 tree oprnd1
= treeop1
;
8927 tree oprnd2
= treeop2
;
8930 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8931 op2
= expand_normal (oprnd2
);
8932 target
= expand_widen_pattern_expr (ops
, op0
, op1
, op2
,
8937 case REALIGN_LOAD_EXPR
:
8939 tree oprnd0
= treeop0
;
8940 tree oprnd1
= treeop1
;
8941 tree oprnd2
= treeop2
;
8944 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
8945 expand_operands (oprnd0
, oprnd1
, NULL_RTX
, &op0
, &op1
, EXPAND_NORMAL
);
8946 op2
= expand_normal (oprnd2
);
8947 temp
= expand_ternary_op (mode
, this_optab
, op0
, op1
, op2
,
8954 /* A COND_EXPR with its type being VOID_TYPE represents a
8955 conditional jump and is handled in
8956 expand_gimple_cond_expr. */
8957 gcc_assert (!VOID_TYPE_P (type
));
8959 /* Note that COND_EXPRs whose type is a structure or union
8960 are required to be constructed to contain assignments of
8961 a temporary variable, so that we can evaluate them here
8962 for side effect only. If type is void, we must do likewise. */
8964 gcc_assert (!TREE_ADDRESSABLE (type
)
8966 && TREE_TYPE (treeop1
) != void_type_node
8967 && TREE_TYPE (treeop2
) != void_type_node
);
8969 temp
= expand_cond_expr_using_cmove (treeop0
, treeop1
, treeop2
);
8973 /* If we are not to produce a result, we have no target. Otherwise,
8974 if a target was specified use it; it will not be used as an
8975 intermediate target unless it is safe. If no target, use a
8978 if (modifier
!= EXPAND_STACK_PARM
8980 && safe_from_p (original_target
, treeop0
, 1)
8981 && GET_MODE (original_target
) == mode
8982 && !MEM_P (original_target
))
8983 temp
= original_target
;
8985 temp
= assign_temp (type
, 0, 1);
8987 do_pending_stack_adjust ();
8989 op0
= gen_label_rtx ();
8990 op1
= gen_label_rtx ();
8991 jumpifnot (treeop0
, op0
, -1);
8992 store_expr (treeop1
, temp
,
8993 modifier
== EXPAND_STACK_PARM
,
8996 emit_jump_insn (gen_jump (op1
));
8999 store_expr (treeop2
, temp
,
9000 modifier
== EXPAND_STACK_PARM
,
9008 target
= expand_vec_cond_expr (type
, treeop0
, treeop1
, treeop2
, target
);
9015 /* Here to do an ordinary binary operator. */
9017 expand_operands (treeop0
, treeop1
,
9018 subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
9020 this_optab
= optab_for_tree_code (code
, type
, optab_default
);
9022 if (modifier
== EXPAND_STACK_PARM
)
9024 temp
= expand_binop (mode
, this_optab
, op0
, op1
, target
,
9025 unsignedp
, OPTAB_LIB_WIDEN
);
9027 /* Bitwise operations do not need bitfield reduction as we expect their
9028 operands being properly truncated. */
9029 if (code
== BIT_XOR_EXPR
9030 || code
== BIT_AND_EXPR
9031 || code
== BIT_IOR_EXPR
)
9033 return REDUCE_BIT_FIELD (temp
);
9035 #undef REDUCE_BIT_FIELD
9038 expand_expr_real_1 (tree exp
, rtx target
, enum machine_mode tmode
,
9039 enum expand_modifier modifier
, rtx
*alt_rtl
)
9041 rtx op0
, op1
, temp
, decl_rtl
;
9044 enum machine_mode mode
;
9045 enum tree_code code
= TREE_CODE (exp
);
9046 rtx subtarget
, original_target
;
9049 bool reduce_bit_field
;
9050 location_t loc
= EXPR_LOCATION (exp
);
9051 struct separate_ops ops
;
9052 tree treeop0
, treeop1
, treeop2
;
9053 tree ssa_name
= NULL_TREE
;
9056 type
= TREE_TYPE (exp
);
9057 mode
= TYPE_MODE (type
);
9058 unsignedp
= TYPE_UNSIGNED (type
);
9060 treeop0
= treeop1
= treeop2
= NULL_TREE
;
9061 if (!VL_EXP_CLASS_P (exp
))
9062 switch (TREE_CODE_LENGTH (code
))
9065 case 3: treeop2
= TREE_OPERAND (exp
, 2);
9066 case 2: treeop1
= TREE_OPERAND (exp
, 1);
9067 case 1: treeop0
= TREE_OPERAND (exp
, 0);
9077 ignore
= (target
== const0_rtx
9078 || ((CONVERT_EXPR_CODE_P (code
)
9079 || code
== COND_EXPR
|| code
== VIEW_CONVERT_EXPR
)
9080 && TREE_CODE (type
) == VOID_TYPE
));
9082 /* An operation in what may be a bit-field type needs the
9083 result to be reduced to the precision of the bit-field type,
9084 which is narrower than that of the type's mode. */
9085 reduce_bit_field
= (!ignore
9086 && INTEGRAL_TYPE_P (type
)
9087 && GET_MODE_PRECISION (mode
) > TYPE_PRECISION (type
));
9089 /* If we are going to ignore this result, we need only do something
9090 if there is a side-effect somewhere in the expression. If there
9091 is, short-circuit the most common cases here. Note that we must
9092 not call expand_expr with anything but const0_rtx in case this
9093 is an initial expansion of a size that contains a PLACEHOLDER_EXPR. */
9097 if (! TREE_SIDE_EFFECTS (exp
))
9100 /* Ensure we reference a volatile object even if value is ignored, but
9101 don't do this if all we are doing is taking its address. */
9102 if (TREE_THIS_VOLATILE (exp
)
9103 && TREE_CODE (exp
) != FUNCTION_DECL
9104 && mode
!= VOIDmode
&& mode
!= BLKmode
9105 && modifier
!= EXPAND_CONST_ADDRESS
)
9107 temp
= expand_expr (exp
, NULL_RTX
, VOIDmode
, modifier
);
9113 if (TREE_CODE_CLASS (code
) == tcc_unary
9114 || code
== BIT_FIELD_REF
9115 || code
== COMPONENT_REF
9116 || code
== INDIRECT_REF
)
9117 return expand_expr (treeop0
, const0_rtx
, VOIDmode
,
9120 else if (TREE_CODE_CLASS (code
) == tcc_binary
9121 || TREE_CODE_CLASS (code
) == tcc_comparison
9122 || code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
9124 expand_expr (treeop0
, const0_rtx
, VOIDmode
, modifier
);
9125 expand_expr (treeop1
, const0_rtx
, VOIDmode
, modifier
);
9132 if (reduce_bit_field
&& modifier
== EXPAND_STACK_PARM
)
9135 /* Use subtarget as the target for operand 0 of a binary operation. */
9136 subtarget
= get_subtarget (target
);
9137 original_target
= target
;
9143 tree function
= decl_function_context (exp
);
9145 temp
= label_rtx (exp
);
9146 temp
= gen_rtx_LABEL_REF (Pmode
, temp
);
9148 if (function
!= current_function_decl
9150 LABEL_REF_NONLOCAL_P (temp
) = 1;
9152 temp
= gen_rtx_MEM (FUNCTION_MODE
, temp
);
9157 /* ??? ivopts calls expander, without any preparation from
9158 out-of-ssa. So fake instructions as if this was an access to the
9159 base variable. This unnecessarily allocates a pseudo, see how we can
9160 reuse it, if partition base vars have it set already. */
9161 if (!currently_expanding_to_rtl
)
9163 tree var
= SSA_NAME_VAR (exp
);
9164 if (var
&& DECL_RTL_SET_P (var
))
9165 return DECL_RTL (var
);
9166 return gen_raw_REG (TYPE_MODE (TREE_TYPE (exp
)),
9167 LAST_VIRTUAL_REGISTER
+ 1);
9170 g
= get_gimple_for_ssa_name (exp
);
9171 /* For EXPAND_INITIALIZER try harder to get something simpler. */
9173 && modifier
== EXPAND_INITIALIZER
9174 && !SSA_NAME_IS_DEFAULT_DEF (exp
)
9175 && (optimize
|| DECL_IGNORED_P (SSA_NAME_VAR (exp
)))
9176 && stmt_is_replaceable_p (SSA_NAME_DEF_STMT (exp
)))
9177 g
= SSA_NAME_DEF_STMT (exp
);
9180 rtx r
= expand_expr_real (gimple_assign_rhs_to_tree (g
), target
,
9181 tmode
, modifier
, NULL
);
9182 if (REG_P (r
) && !REG_EXPR (r
))
9183 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (exp
), r
);
9188 decl_rtl
= get_rtx_for_ssa_name (ssa_name
);
9189 exp
= SSA_NAME_VAR (ssa_name
);
9190 goto expand_decl_rtl
;
9194 /* If a static var's type was incomplete when the decl was written,
9195 but the type is complete now, lay out the decl now. */
9196 if (DECL_SIZE (exp
) == 0
9197 && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (TREE_TYPE (exp
))
9198 && (TREE_STATIC (exp
) || DECL_EXTERNAL (exp
)))
9199 layout_decl (exp
, 0);
9201 /* ... fall through ... */
9205 decl_rtl
= DECL_RTL (exp
);
9207 gcc_assert (decl_rtl
);
9208 decl_rtl
= copy_rtx (decl_rtl
);
9209 /* Record writes to register variables. */
9210 if (modifier
== EXPAND_WRITE
9212 && HARD_REGISTER_P (decl_rtl
))
9213 add_to_hard_reg_set (&crtl
->asm_clobbers
,
9214 GET_MODE (decl_rtl
), REGNO (decl_rtl
));
9216 /* Ensure variable marked as used even if it doesn't go through
9217 a parser. If it hasn't be used yet, write out an external
9219 TREE_USED (exp
) = 1;
9221 /* Show we haven't gotten RTL for this yet. */
9224 /* Variables inherited from containing functions should have
9225 been lowered by this point. */
9226 context
= decl_function_context (exp
);
9227 gcc_assert (!context
9228 || context
== current_function_decl
9229 || TREE_STATIC (exp
)
9230 || DECL_EXTERNAL (exp
)
9231 /* ??? C++ creates functions that are not TREE_STATIC. */
9232 || TREE_CODE (exp
) == FUNCTION_DECL
);
9234 /* This is the case of an array whose size is to be determined
9235 from its initializer, while the initializer is still being parsed.
9236 ??? We aren't parsing while expanding anymore. */
9238 if (MEM_P (decl_rtl
) && REG_P (XEXP (decl_rtl
, 0)))
9239 temp
= validize_mem (decl_rtl
);
9241 /* If DECL_RTL is memory, we are in the normal case and the
9242 address is not valid, get the address into a register. */
9244 else if (MEM_P (decl_rtl
) && modifier
!= EXPAND_INITIALIZER
)
9247 *alt_rtl
= decl_rtl
;
9248 decl_rtl
= use_anchored_address (decl_rtl
);
9249 if (modifier
!= EXPAND_CONST_ADDRESS
9250 && modifier
!= EXPAND_SUM
9251 && !memory_address_addr_space_p (DECL_MODE (exp
),
9253 MEM_ADDR_SPACE (decl_rtl
)))
9254 temp
= replace_equiv_address (decl_rtl
,
9255 copy_rtx (XEXP (decl_rtl
, 0)));
9258 /* If we got something, return it. But first, set the alignment
9259 if the address is a register. */
9262 if (MEM_P (temp
) && REG_P (XEXP (temp
, 0)))
9263 mark_reg_pointer (XEXP (temp
, 0), DECL_ALIGN (exp
));
9268 /* If the mode of DECL_RTL does not match that of the decl,
9269 there are two cases: we are dealing with a BLKmode value
9270 that is returned in a register, or we are dealing with
9271 a promoted value. In the latter case, return a SUBREG
9272 of the wanted mode, but mark it so that we know that it
9273 was already extended. */
9274 if (REG_P (decl_rtl
)
9275 && DECL_MODE (exp
) != BLKmode
9276 && GET_MODE (decl_rtl
) != DECL_MODE (exp
))
9278 enum machine_mode pmode
;
9280 /* Get the signedness to be used for this variable. Ensure we get
9281 the same mode we got when the variable was declared. */
9282 if (code
== SSA_NAME
9283 && (g
= SSA_NAME_DEF_STMT (ssa_name
))
9284 && gimple_code (g
) == GIMPLE_CALL
)
9286 gcc_assert (!gimple_call_internal_p (g
));
9287 pmode
= promote_function_mode (type
, mode
, &unsignedp
,
9288 gimple_call_fntype (g
),
9292 pmode
= promote_decl_mode (exp
, &unsignedp
);
9293 gcc_assert (GET_MODE (decl_rtl
) == pmode
);
9295 temp
= gen_lowpart_SUBREG (mode
, decl_rtl
);
9296 SUBREG_PROMOTED_VAR_P (temp
) = 1;
9297 SUBREG_PROMOTED_UNSIGNED_SET (temp
, unsignedp
);
9304 temp
= immed_double_const (TREE_INT_CST_LOW (exp
),
9305 TREE_INT_CST_HIGH (exp
), mode
);
9311 tree tmp
= NULL_TREE
;
9312 if (GET_MODE_CLASS (mode
) == MODE_VECTOR_INT
9313 || GET_MODE_CLASS (mode
) == MODE_VECTOR_FLOAT
9314 || GET_MODE_CLASS (mode
) == MODE_VECTOR_FRACT
9315 || GET_MODE_CLASS (mode
) == MODE_VECTOR_UFRACT
9316 || GET_MODE_CLASS (mode
) == MODE_VECTOR_ACCUM
9317 || GET_MODE_CLASS (mode
) == MODE_VECTOR_UACCUM
)
9318 return const_vector_from_tree (exp
);
9319 if (GET_MODE_CLASS (mode
) == MODE_INT
)
9321 tree type_for_mode
= lang_hooks
.types
.type_for_mode (mode
, 1);
9323 tmp
= fold_unary_loc (loc
, VIEW_CONVERT_EXPR
, type_for_mode
, exp
);
9327 VEC(constructor_elt
,gc
) *v
;
9329 v
= VEC_alloc (constructor_elt
, gc
, VECTOR_CST_NELTS (exp
));
9330 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
9331 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, VECTOR_CST_ELT (exp
, i
));
9332 tmp
= build_constructor (type
, v
);
9334 return expand_expr (tmp
, ignore
? const0_rtx
: target
,
9339 return expand_expr (DECL_INITIAL (exp
), target
, VOIDmode
, modifier
);
9342 /* If optimized, generate immediate CONST_DOUBLE
9343 which will be turned into memory by reload if necessary.
9345 We used to force a register so that loop.c could see it. But
9346 this does not allow gen_* patterns to perform optimizations with
9347 the constants. It also produces two insns in cases like "x = 1.0;".
9348 On most machines, floating-point constants are not permitted in
9349 many insns, so we'd end up copying it to a register in any case.
9351 Now, we do the copying in expand_binop, if appropriate. */
9352 return CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (exp
),
9353 TYPE_MODE (TREE_TYPE (exp
)));
9356 return CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (exp
),
9357 TYPE_MODE (TREE_TYPE (exp
)));
9360 /* Handle evaluating a complex constant in a CONCAT target. */
9361 if (original_target
&& GET_CODE (original_target
) == CONCAT
)
9363 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
9366 rtarg
= XEXP (original_target
, 0);
9367 itarg
= XEXP (original_target
, 1);
9369 /* Move the real and imaginary parts separately. */
9370 op0
= expand_expr (TREE_REALPART (exp
), rtarg
, mode
, EXPAND_NORMAL
);
9371 op1
= expand_expr (TREE_IMAGPART (exp
), itarg
, mode
, EXPAND_NORMAL
);
9374 emit_move_insn (rtarg
, op0
);
9376 emit_move_insn (itarg
, op1
);
9378 return original_target
;
9381 /* ... fall through ... */
9384 temp
= expand_expr_constant (exp
, 1, modifier
);
9386 /* temp contains a constant address.
9387 On RISC machines where a constant address isn't valid,
9388 make some insns to get that address into a register. */
9389 if (modifier
!= EXPAND_CONST_ADDRESS
9390 && modifier
!= EXPAND_INITIALIZER
9391 && modifier
!= EXPAND_SUM
9392 && ! memory_address_addr_space_p (mode
, XEXP (temp
, 0),
9393 MEM_ADDR_SPACE (temp
)))
9394 return replace_equiv_address (temp
,
9395 copy_rtx (XEXP (temp
, 0)));
9401 rtx ret
= expand_expr_real_1 (val
, target
, tmode
, modifier
, alt_rtl
);
9403 if (!SAVE_EXPR_RESOLVED_P (exp
))
9405 /* We can indeed still hit this case, typically via builtin
9406 expanders calling save_expr immediately before expanding
9407 something. Assume this means that we only have to deal
9408 with non-BLKmode values. */
9409 gcc_assert (GET_MODE (ret
) != BLKmode
);
9411 val
= build_decl (EXPR_LOCATION (exp
),
9412 VAR_DECL
, NULL
, TREE_TYPE (exp
));
9413 DECL_ARTIFICIAL (val
) = 1;
9414 DECL_IGNORED_P (val
) = 1;
9416 TREE_OPERAND (exp
, 0) = treeop0
;
9417 SAVE_EXPR_RESOLVED_P (exp
) = 1;
9419 if (!CONSTANT_P (ret
))
9420 ret
= copy_to_reg (ret
);
9421 SET_DECL_RTL (val
, ret
);
9429 /* If we don't need the result, just ensure we evaluate any
9433 unsigned HOST_WIDE_INT idx
;
9436 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
9437 expand_expr (value
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
9442 return expand_constructor (exp
, target
, modifier
, false);
9444 case TARGET_MEM_REF
:
9447 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0))));
9448 struct mem_address addr
;
9449 enum insn_code icode
;
9452 get_address_description (exp
, &addr
);
9453 op0
= addr_for_mem_ref (&addr
, as
, true);
9454 op0
= memory_address_addr_space (mode
, op0
, as
);
9455 temp
= gen_rtx_MEM (mode
, op0
);
9456 set_mem_attributes (temp
, exp
, 0);
9457 set_mem_addr_space (temp
, as
);
9458 align
= get_object_alignment (exp
);
9459 if (modifier
!= EXPAND_WRITE
9461 && align
< GET_MODE_ALIGNMENT (mode
)
9462 /* If the target does not have special handling for unaligned
9463 loads of mode then it can use regular moves for them. */
9464 && ((icode
= optab_handler (movmisalign_optab
, mode
))
9465 != CODE_FOR_nothing
))
9467 struct expand_operand ops
[2];
9469 /* We've already validated the memory, and we're creating a
9470 new pseudo destination. The predicates really can't fail,
9471 nor can the generator. */
9472 create_output_operand (&ops
[0], NULL_RTX
, mode
);
9473 create_fixed_operand (&ops
[1], temp
);
9474 expand_insn (icode
, 2, ops
);
9475 return ops
[0].value
;
9483 = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0))));
9484 enum machine_mode address_mode
;
9485 tree base
= TREE_OPERAND (exp
, 0);
9487 enum insn_code icode
;
9489 /* Handle expansion of non-aliased memory with non-BLKmode. That
9490 might end up in a register. */
9491 if (mem_ref_refers_to_non_mem_p (exp
))
9493 HOST_WIDE_INT offset
= mem_ref_offset (exp
).low
;
9496 base
= TREE_OPERAND (base
, 0);
9498 && host_integerp (TYPE_SIZE (TREE_TYPE (exp
)), 1)
9499 && (GET_MODE_BITSIZE (DECL_MODE (base
))
9500 == TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (exp
)))))
9501 return expand_expr (build1 (VIEW_CONVERT_EXPR
,
9502 TREE_TYPE (exp
), base
),
9503 target
, tmode
, modifier
);
9504 bit_offset
= bitsize_int (offset
* BITS_PER_UNIT
);
9505 bftype
= TREE_TYPE (base
);
9506 if (TYPE_MODE (TREE_TYPE (exp
)) != BLKmode
)
9507 bftype
= TREE_TYPE (exp
);
9510 temp
= assign_stack_temp (DECL_MODE (base
),
9511 GET_MODE_SIZE (DECL_MODE (base
)));
9512 store_expr (base
, temp
, 0, false);
9513 temp
= adjust_address (temp
, BLKmode
, offset
);
9514 set_mem_size (temp
, int_size_in_bytes (TREE_TYPE (exp
)));
9517 return expand_expr (build3 (BIT_FIELD_REF
, bftype
,
9519 TYPE_SIZE (TREE_TYPE (exp
)),
9521 target
, tmode
, modifier
);
9523 address_mode
= targetm
.addr_space
.address_mode (as
);
9524 base
= TREE_OPERAND (exp
, 0);
9525 if ((def_stmt
= get_def_for_expr (base
, BIT_AND_EXPR
)))
9527 tree mask
= gimple_assign_rhs2 (def_stmt
);
9528 base
= build2 (BIT_AND_EXPR
, TREE_TYPE (base
),
9529 gimple_assign_rhs1 (def_stmt
), mask
);
9530 TREE_OPERAND (exp
, 0) = base
;
9532 align
= get_object_alignment (exp
);
9533 op0
= expand_expr (base
, NULL_RTX
, VOIDmode
, EXPAND_SUM
);
9534 op0
= memory_address_addr_space (address_mode
, op0
, as
);
9535 if (!integer_zerop (TREE_OPERAND (exp
, 1)))
9538 = immed_double_int_const (mem_ref_offset (exp
), address_mode
);
9539 op0
= simplify_gen_binary (PLUS
, address_mode
, op0
, off
);
9541 op0
= memory_address_addr_space (mode
, op0
, as
);
9542 temp
= gen_rtx_MEM (mode
, op0
);
9543 set_mem_attributes (temp
, exp
, 0);
9544 set_mem_addr_space (temp
, as
);
9545 if (TREE_THIS_VOLATILE (exp
))
9546 MEM_VOLATILE_P (temp
) = 1;
9547 if (modifier
!= EXPAND_WRITE
9549 && align
< GET_MODE_ALIGNMENT (mode
))
9551 if ((icode
= optab_handler (movmisalign_optab
, mode
))
9552 != CODE_FOR_nothing
)
9554 struct expand_operand ops
[2];
9556 /* We've already validated the memory, and we're creating a
9557 new pseudo destination. The predicates really can't fail,
9558 nor can the generator. */
9559 create_output_operand (&ops
[0], NULL_RTX
, mode
);
9560 create_fixed_operand (&ops
[1], temp
);
9561 expand_insn (icode
, 2, ops
);
9562 return ops
[0].value
;
9564 else if (SLOW_UNALIGNED_ACCESS (mode
, align
))
9565 temp
= extract_bit_field (temp
, GET_MODE_BITSIZE (mode
),
9566 0, TYPE_UNSIGNED (TREE_TYPE (exp
)),
9567 true, (modifier
== EXPAND_STACK_PARM
9568 ? NULL_RTX
: target
),
9577 tree array
= treeop0
;
9578 tree index
= treeop1
;
9580 /* Fold an expression like: "foo"[2].
9581 This is not done in fold so it won't happen inside &.
9582 Don't fold if this is for wide characters since it's too
9583 difficult to do correctly and this is a very rare case. */
9585 if (modifier
!= EXPAND_CONST_ADDRESS
9586 && modifier
!= EXPAND_INITIALIZER
9587 && modifier
!= EXPAND_MEMORY
)
9589 tree t
= fold_read_from_constant_string (exp
);
9592 return expand_expr (t
, target
, tmode
, modifier
);
9595 /* If this is a constant index into a constant array,
9596 just get the value from the array. Handle both the cases when
9597 we have an explicit constructor and when our operand is a variable
9598 that was declared const. */
9600 if (modifier
!= EXPAND_CONST_ADDRESS
9601 && modifier
!= EXPAND_INITIALIZER
9602 && modifier
!= EXPAND_MEMORY
9603 && TREE_CODE (array
) == CONSTRUCTOR
9604 && ! TREE_SIDE_EFFECTS (array
)
9605 && TREE_CODE (index
) == INTEGER_CST
)
9607 unsigned HOST_WIDE_INT ix
;
9610 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (array
), ix
,
9612 if (tree_int_cst_equal (field
, index
))
9614 if (!TREE_SIDE_EFFECTS (value
))
9615 return expand_expr (fold (value
), target
, tmode
, modifier
);
9620 else if (optimize
>= 1
9621 && modifier
!= EXPAND_CONST_ADDRESS
9622 && modifier
!= EXPAND_INITIALIZER
9623 && modifier
!= EXPAND_MEMORY
9624 && TREE_READONLY (array
) && ! TREE_SIDE_EFFECTS (array
)
9625 && TREE_CODE (array
) == VAR_DECL
&& DECL_INITIAL (array
)
9626 && TREE_CODE (DECL_INITIAL (array
)) != ERROR_MARK
9627 && const_value_known_p (array
))
9629 if (TREE_CODE (index
) == INTEGER_CST
)
9631 tree init
= DECL_INITIAL (array
);
9633 if (TREE_CODE (init
) == CONSTRUCTOR
)
9635 unsigned HOST_WIDE_INT ix
;
9638 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init
), ix
,
9640 if (tree_int_cst_equal (field
, index
))
9642 if (TREE_SIDE_EFFECTS (value
))
9645 if (TREE_CODE (value
) == CONSTRUCTOR
)
9647 /* If VALUE is a CONSTRUCTOR, this
9648 optimization is only useful if
9649 this doesn't store the CONSTRUCTOR
9650 into memory. If it does, it is more
9651 efficient to just load the data from
9652 the array directly. */
9653 rtx ret
= expand_constructor (value
, target
,
9655 if (ret
== NULL_RTX
)
9659 return expand_expr (fold (value
), target
, tmode
,
9663 else if(TREE_CODE (init
) == STRING_CST
)
9665 tree index1
= index
;
9666 tree low_bound
= array_ref_low_bound (exp
);
9667 index1
= fold_convert_loc (loc
, sizetype
,
9670 /* Optimize the special-case of a zero lower bound.
9672 We convert the low_bound to sizetype to avoid some problems
9673 with constant folding. (E.g. suppose the lower bound is 1,
9674 and its mode is QI. Without the conversion,l (ARRAY
9675 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
9676 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
9678 if (! integer_zerop (low_bound
))
9679 index1
= size_diffop_loc (loc
, index1
,
9680 fold_convert_loc (loc
, sizetype
,
9683 if (0 > compare_tree_int (index1
,
9684 TREE_STRING_LENGTH (init
)))
9686 tree type
= TREE_TYPE (TREE_TYPE (init
));
9687 enum machine_mode mode
= TYPE_MODE (type
);
9689 if (GET_MODE_CLASS (mode
) == MODE_INT
9690 && GET_MODE_SIZE (mode
) == 1)
9691 return gen_int_mode (TREE_STRING_POINTER (init
)
9692 [TREE_INT_CST_LOW (index1
)],
9699 goto normal_inner_ref
;
9702 /* If the operand is a CONSTRUCTOR, we can just extract the
9703 appropriate field if it is present. */
9704 if (TREE_CODE (treeop0
) == CONSTRUCTOR
)
9706 unsigned HOST_WIDE_INT idx
;
9709 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (treeop0
),
9711 if (field
== treeop1
9712 /* We can normally use the value of the field in the
9713 CONSTRUCTOR. However, if this is a bitfield in
9714 an integral mode that we can fit in a HOST_WIDE_INT,
9715 we must mask only the number of bits in the bitfield,
9716 since this is done implicitly by the constructor. If
9717 the bitfield does not meet either of those conditions,
9718 we can't do this optimization. */
9719 && (! DECL_BIT_FIELD (field
)
9720 || ((GET_MODE_CLASS (DECL_MODE (field
)) == MODE_INT
)
9721 && (GET_MODE_PRECISION (DECL_MODE (field
))
9722 <= HOST_BITS_PER_WIDE_INT
))))
9724 if (DECL_BIT_FIELD (field
)
9725 && modifier
== EXPAND_STACK_PARM
)
9727 op0
= expand_expr (value
, target
, tmode
, modifier
);
9728 if (DECL_BIT_FIELD (field
))
9730 HOST_WIDE_INT bitsize
= TREE_INT_CST_LOW (DECL_SIZE (field
));
9731 enum machine_mode imode
= TYPE_MODE (TREE_TYPE (field
));
9733 if (TYPE_UNSIGNED (TREE_TYPE (field
)))
9735 op1
= GEN_INT (((HOST_WIDE_INT
) 1 << bitsize
) - 1);
9736 op0
= expand_and (imode
, op0
, op1
, target
);
9740 int count
= GET_MODE_PRECISION (imode
) - bitsize
;
9742 op0
= expand_shift (LSHIFT_EXPR
, imode
, op0
, count
,
9744 op0
= expand_shift (RSHIFT_EXPR
, imode
, op0
, count
,
9752 goto normal_inner_ref
;
9755 case ARRAY_RANGE_REF
:
9758 enum machine_mode mode1
, mode2
;
9759 HOST_WIDE_INT bitsize
, bitpos
;
9761 int volatilep
= 0, must_force_mem
;
9762 bool packedp
= false;
9763 tree tem
= get_inner_reference (exp
, &bitsize
, &bitpos
, &offset
,
9764 &mode1
, &unsignedp
, &volatilep
, true);
9765 rtx orig_op0
, memloc
;
9766 bool mem_attrs_from_type
= false;
9768 /* If we got back the original object, something is wrong. Perhaps
9769 we are evaluating an expression too early. In any event, don't
9770 infinitely recurse. */
9771 gcc_assert (tem
!= exp
);
9773 if (TYPE_PACKED (TREE_TYPE (TREE_OPERAND (exp
, 0)))
9774 || (TREE_CODE (TREE_OPERAND (exp
, 1)) == FIELD_DECL
9775 && DECL_PACKED (TREE_OPERAND (exp
, 1))))
9778 /* If TEM's type is a union of variable size, pass TARGET to the inner
9779 computation, since it will need a temporary and TARGET is known
9780 to have to do. This occurs in unchecked conversion in Ada. */
9783 (TREE_CODE (TREE_TYPE (tem
)) == UNION_TYPE
9784 && COMPLETE_TYPE_P (TREE_TYPE (tem
))
9785 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem
)))
9787 && modifier
!= EXPAND_STACK_PARM
9788 ? target
: NULL_RTX
),
9790 (modifier
== EXPAND_INITIALIZER
9791 || modifier
== EXPAND_CONST_ADDRESS
9792 || modifier
== EXPAND_STACK_PARM
)
9793 ? modifier
: EXPAND_NORMAL
);
9796 /* If the bitfield is volatile, we want to access it in the
9797 field's mode, not the computed mode.
9798 If a MEM has VOIDmode (external with incomplete type),
9799 use BLKmode for it instead. */
9802 if (volatilep
&& flag_strict_volatile_bitfields
> 0)
9803 op0
= adjust_address (op0
, mode1
, 0);
9804 else if (GET_MODE (op0
) == VOIDmode
)
9805 op0
= adjust_address (op0
, BLKmode
, 0);
9809 = CONSTANT_P (op0
) ? TYPE_MODE (TREE_TYPE (tem
)) : GET_MODE (op0
);
9811 /* If we have either an offset, a BLKmode result, or a reference
9812 outside the underlying object, we must force it to memory.
9813 Such a case can occur in Ada if we have unchecked conversion
9814 of an expression from a scalar type to an aggregate type or
9815 for an ARRAY_RANGE_REF whose type is BLKmode, or if we were
9816 passed a partially uninitialized object or a view-conversion
9817 to a larger size. */
9818 must_force_mem
= (offset
9820 || bitpos
+ bitsize
> GET_MODE_BITSIZE (mode2
));
9822 /* Handle CONCAT first. */
9823 if (GET_CODE (op0
) == CONCAT
&& !must_force_mem
)
9826 && bitsize
== GET_MODE_BITSIZE (GET_MODE (op0
)))
9829 && bitsize
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 0)))
9832 op0
= XEXP (op0
, 0);
9833 mode2
= GET_MODE (op0
);
9835 else if (bitpos
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 0)))
9836 && bitsize
== GET_MODE_BITSIZE (GET_MODE (XEXP (op0
, 1)))
9840 op0
= XEXP (op0
, 1);
9842 mode2
= GET_MODE (op0
);
9845 /* Otherwise force into memory. */
9849 /* If this is a constant, put it in a register if it is a legitimate
9850 constant and we don't need a memory reference. */
9851 if (CONSTANT_P (op0
)
9853 && targetm
.legitimate_constant_p (mode2
, op0
)
9855 op0
= force_reg (mode2
, op0
);
9857 /* Otherwise, if this is a constant, try to force it to the constant
9858 pool. Note that back-ends, e.g. MIPS, may refuse to do so if it
9859 is a legitimate constant. */
9860 else if (CONSTANT_P (op0
) && (memloc
= force_const_mem (mode2
, op0
)))
9861 op0
= validize_mem (memloc
);
9863 /* Otherwise, if this is a constant or the object is not in memory
9864 and need be, put it there. */
9865 else if (CONSTANT_P (op0
) || (!MEM_P (op0
) && must_force_mem
))
9867 tree nt
= build_qualified_type (TREE_TYPE (tem
),
9868 (TYPE_QUALS (TREE_TYPE (tem
))
9869 | TYPE_QUAL_CONST
));
9870 memloc
= assign_temp (nt
, 1, 1);
9871 emit_move_insn (memloc
, op0
);
9873 mem_attrs_from_type
= true;
9878 enum machine_mode address_mode
;
9879 rtx offset_rtx
= expand_expr (offset
, NULL_RTX
, VOIDmode
,
9882 gcc_assert (MEM_P (op0
));
9884 address_mode
= get_address_mode (op0
);
9885 if (GET_MODE (offset_rtx
) != address_mode
)
9886 offset_rtx
= convert_to_mode (address_mode
, offset_rtx
, 0);
9888 if (GET_MODE (op0
) == BLKmode
9889 /* A constant address in OP0 can have VOIDmode, we must
9890 not try to call force_reg in that case. */
9891 && GET_MODE (XEXP (op0
, 0)) != VOIDmode
9893 && (bitpos
% bitsize
) == 0
9894 && (bitsize
% GET_MODE_ALIGNMENT (mode1
)) == 0
9895 && MEM_ALIGN (op0
) == GET_MODE_ALIGNMENT (mode1
))
9897 op0
= adjust_address (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
9901 op0
= offset_address (op0
, offset_rtx
,
9902 highest_pow2_factor (offset
));
9905 /* If OFFSET is making OP0 more aligned than BIGGEST_ALIGNMENT,
9906 record its alignment as BIGGEST_ALIGNMENT. */
9907 if (MEM_P (op0
) && bitpos
== 0 && offset
!= 0
9908 && is_aligning_offset (offset
, tem
))
9909 set_mem_align (op0
, BIGGEST_ALIGNMENT
);
9911 /* Don't forget about volatility even if this is a bitfield. */
9912 if (MEM_P (op0
) && volatilep
&& ! MEM_VOLATILE_P (op0
))
9914 if (op0
== orig_op0
)
9915 op0
= copy_rtx (op0
);
9917 MEM_VOLATILE_P (op0
) = 1;
9920 /* In cases where an aligned union has an unaligned object
9921 as a field, we might be extracting a BLKmode value from
9922 an integer-mode (e.g., SImode) object. Handle this case
9923 by doing the extract into an object as wide as the field
9924 (which we know to be the width of a basic mode), then
9925 storing into memory, and changing the mode to BLKmode. */
9926 if (mode1
== VOIDmode
9927 || REG_P (op0
) || GET_CODE (op0
) == SUBREG
9928 || (mode1
!= BLKmode
&& ! direct_load
[(int) mode1
]
9929 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_INT
9930 && GET_MODE_CLASS (mode
) != MODE_COMPLEX_FLOAT
9931 && modifier
!= EXPAND_CONST_ADDRESS
9932 && modifier
!= EXPAND_INITIALIZER
)
9933 /* If the field is volatile, we always want an aligned
9934 access. Do this in following two situations:
9935 1. the access is not already naturally
9936 aligned, otherwise "normal" (non-bitfield) volatile fields
9937 become non-addressable.
9938 2. the bitsize is narrower than the access size. Need
9939 to extract bitfields from the access. */
9940 || (volatilep
&& flag_strict_volatile_bitfields
> 0
9941 && (bitpos
% GET_MODE_ALIGNMENT (mode
) != 0
9942 || (mode1
!= BLKmode
9943 && bitsize
< GET_MODE_SIZE (mode1
) * BITS_PER_UNIT
)))
9944 /* If the field isn't aligned enough to fetch as a memref,
9945 fetch it as a bit field. */
9946 || (mode1
!= BLKmode
9947 && (((TYPE_ALIGN (TREE_TYPE (tem
)) < GET_MODE_ALIGNMENT (mode
)
9948 || (bitpos
% GET_MODE_ALIGNMENT (mode
) != 0)
9950 && (MEM_ALIGN (op0
) < GET_MODE_ALIGNMENT (mode1
)
9951 || (bitpos
% GET_MODE_ALIGNMENT (mode1
) != 0))))
9952 && ((modifier
== EXPAND_CONST_ADDRESS
9953 || modifier
== EXPAND_INITIALIZER
)
9955 : SLOW_UNALIGNED_ACCESS (mode1
, MEM_ALIGN (op0
))))
9956 || (bitpos
% BITS_PER_UNIT
!= 0)))
9957 /* If the type and the field are a constant size and the
9958 size of the type isn't the same size as the bitfield,
9959 we must use bitfield operations. */
9961 && TYPE_SIZE (TREE_TYPE (exp
))
9962 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) == INTEGER_CST
9963 && 0 != compare_tree_int (TYPE_SIZE (TREE_TYPE (exp
)),
9966 enum machine_mode ext_mode
= mode
;
9968 if (ext_mode
== BLKmode
9969 && ! (target
!= 0 && MEM_P (op0
)
9971 && bitpos
% BITS_PER_UNIT
== 0))
9972 ext_mode
= mode_for_size (bitsize
, MODE_INT
, 1);
9974 if (ext_mode
== BLKmode
)
9977 target
= assign_temp (type
, 1, 1);
9982 /* In this case, BITPOS must start at a byte boundary and
9983 TARGET, if specified, must be a MEM. */
9984 gcc_assert (MEM_P (op0
)
9985 && (!target
|| MEM_P (target
))
9986 && !(bitpos
% BITS_PER_UNIT
));
9988 emit_block_move (target
,
9989 adjust_address (op0
, VOIDmode
,
9990 bitpos
/ BITS_PER_UNIT
),
9991 GEN_INT ((bitsize
+ BITS_PER_UNIT
- 1)
9993 (modifier
== EXPAND_STACK_PARM
9994 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
9999 op0
= validize_mem (op0
);
10001 if (MEM_P (op0
) && REG_P (XEXP (op0
, 0)))
10002 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10004 op0
= extract_bit_field (op0
, bitsize
, bitpos
, unsignedp
, packedp
,
10005 (modifier
== EXPAND_STACK_PARM
10006 ? NULL_RTX
: target
),
10007 ext_mode
, ext_mode
);
10009 /* If the result is a record type and BITSIZE is narrower than
10010 the mode of OP0, an integral mode, and this is a big endian
10011 machine, we must put the field into the high-order bits. */
10012 if (TREE_CODE (type
) == RECORD_TYPE
&& BYTES_BIG_ENDIAN
10013 && GET_MODE_CLASS (GET_MODE (op0
)) == MODE_INT
10014 && bitsize
< (HOST_WIDE_INT
) GET_MODE_BITSIZE (GET_MODE (op0
)))
10015 op0
= expand_shift (LSHIFT_EXPR
, GET_MODE (op0
), op0
,
10016 GET_MODE_BITSIZE (GET_MODE (op0
))
10017 - bitsize
, op0
, 1);
10019 /* If the result type is BLKmode, store the data into a temporary
10020 of the appropriate type, but with the mode corresponding to the
10021 mode for the data we have (op0's mode). It's tempting to make
10022 this a constant type, since we know it's only being stored once,
10023 but that can cause problems if we are taking the address of this
10024 COMPONENT_REF because the MEM of any reference via that address
10025 will have flags corresponding to the type, which will not
10026 necessarily be constant. */
10027 if (mode
== BLKmode
)
10031 new_rtx
= assign_stack_temp_for_type (ext_mode
,
10032 GET_MODE_BITSIZE (ext_mode
),
10034 emit_move_insn (new_rtx
, op0
);
10035 op0
= copy_rtx (new_rtx
);
10036 PUT_MODE (op0
, BLKmode
);
10042 /* If the result is BLKmode, use that to access the object
10044 if (mode
== BLKmode
)
10047 /* Get a reference to just this component. */
10048 if (modifier
== EXPAND_CONST_ADDRESS
10049 || modifier
== EXPAND_SUM
|| modifier
== EXPAND_INITIALIZER
)
10050 op0
= adjust_address_nv (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
10052 op0
= adjust_address (op0
, mode1
, bitpos
/ BITS_PER_UNIT
);
10054 if (op0
== orig_op0
)
10055 op0
= copy_rtx (op0
);
10057 /* If op0 is a temporary because of forcing to memory, pass only the
10058 type to set_mem_attributes so that the original expression is never
10059 marked as ADDRESSABLE through MEM_EXPR of the temporary. */
10060 if (mem_attrs_from_type
)
10061 set_mem_attributes (op0
, type
, 0);
10063 set_mem_attributes (op0
, exp
, 0);
10065 if (REG_P (XEXP (op0
, 0)))
10066 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10068 MEM_VOLATILE_P (op0
) |= volatilep
;
10069 if (mode
== mode1
|| mode1
== BLKmode
|| mode1
== tmode
10070 || modifier
== EXPAND_CONST_ADDRESS
10071 || modifier
== EXPAND_INITIALIZER
)
10073 else if (target
== 0)
10074 target
= gen_reg_rtx (tmode
!= VOIDmode
? tmode
: mode
);
10076 convert_move (target
, op0
, unsignedp
);
10081 return expand_expr (OBJ_TYPE_REF_EXPR (exp
), target
, tmode
, modifier
);
10084 /* All valid uses of __builtin_va_arg_pack () are removed during
10086 if (CALL_EXPR_VA_ARG_PACK (exp
))
10087 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp
);
10089 tree fndecl
= get_callee_fndecl (exp
), attr
;
10092 && (attr
= lookup_attribute ("error",
10093 DECL_ATTRIBUTES (fndecl
))) != NULL
)
10094 error ("%Kcall to %qs declared with attribute error: %s",
10095 exp
, identifier_to_locale (lang_hooks
.decl_printable_name (fndecl
, 1)),
10096 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
))));
10098 && (attr
= lookup_attribute ("warning",
10099 DECL_ATTRIBUTES (fndecl
))) != NULL
)
10100 warning_at (tree_nonartificial_location (exp
),
10101 0, "%Kcall to %qs declared with attribute warning: %s",
10102 exp
, identifier_to_locale (lang_hooks
.decl_printable_name (fndecl
, 1)),
10103 TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
))));
10105 /* Check for a built-in function. */
10106 if (fndecl
&& DECL_BUILT_IN (fndecl
))
10108 gcc_assert (DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_FRONTEND
);
10109 return expand_builtin (exp
, target
, subtarget
, tmode
, ignore
);
10112 return expand_call (exp
, target
, ignore
);
10114 case VIEW_CONVERT_EXPR
:
10117 /* If we are converting to BLKmode, try to avoid an intermediate
10118 temporary by fetching an inner memory reference. */
10119 if (mode
== BLKmode
10120 && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp
))) == INTEGER_CST
10121 && TYPE_MODE (TREE_TYPE (treeop0
)) != BLKmode
10122 && handled_component_p (treeop0
))
10124 enum machine_mode mode1
;
10125 HOST_WIDE_INT bitsize
, bitpos
;
10130 = get_inner_reference (treeop0
, &bitsize
, &bitpos
,
10131 &offset
, &mode1
, &unsignedp
, &volatilep
,
10135 /* ??? We should work harder and deal with non-zero offsets. */
10137 && (bitpos
% BITS_PER_UNIT
) == 0
10139 && compare_tree_int (TYPE_SIZE (TREE_TYPE (exp
)), bitsize
) == 0)
10141 /* See the normal_inner_ref case for the rationale. */
10143 = expand_expr (tem
,
10144 (TREE_CODE (TREE_TYPE (tem
)) == UNION_TYPE
10145 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (tem
)))
10147 && modifier
!= EXPAND_STACK_PARM
10148 ? target
: NULL_RTX
),
10150 (modifier
== EXPAND_INITIALIZER
10151 || modifier
== EXPAND_CONST_ADDRESS
10152 || modifier
== EXPAND_STACK_PARM
)
10153 ? modifier
: EXPAND_NORMAL
);
10155 if (MEM_P (orig_op0
))
10159 /* Get a reference to just this component. */
10160 if (modifier
== EXPAND_CONST_ADDRESS
10161 || modifier
== EXPAND_SUM
10162 || modifier
== EXPAND_INITIALIZER
)
10163 op0
= adjust_address_nv (op0
, mode
, bitpos
/ BITS_PER_UNIT
);
10165 op0
= adjust_address (op0
, mode
, bitpos
/ BITS_PER_UNIT
);
10167 if (op0
== orig_op0
)
10168 op0
= copy_rtx (op0
);
10170 set_mem_attributes (op0
, treeop0
, 0);
10171 if (REG_P (XEXP (op0
, 0)))
10172 mark_reg_pointer (XEXP (op0
, 0), MEM_ALIGN (op0
));
10174 MEM_VOLATILE_P (op0
) |= volatilep
;
10180 op0
= expand_expr (treeop0
,
10181 NULL_RTX
, VOIDmode
, modifier
);
10183 /* If the input and output modes are both the same, we are done. */
10184 if (mode
== GET_MODE (op0
))
10186 /* If neither mode is BLKmode, and both modes are the same size
10187 then we can use gen_lowpart. */
10188 else if (mode
!= BLKmode
&& GET_MODE (op0
) != BLKmode
10189 && (GET_MODE_PRECISION (mode
)
10190 == GET_MODE_PRECISION (GET_MODE (op0
)))
10191 && !COMPLEX_MODE_P (GET_MODE (op0
)))
10193 if (GET_CODE (op0
) == SUBREG
)
10194 op0
= force_reg (GET_MODE (op0
), op0
);
10195 temp
= gen_lowpart_common (mode
, op0
);
10200 if (!REG_P (op0
) && !MEM_P (op0
))
10201 op0
= force_reg (GET_MODE (op0
), op0
);
10202 op0
= gen_lowpart (mode
, op0
);
10205 /* If both types are integral, convert from one mode to the other. */
10206 else if (INTEGRAL_TYPE_P (type
) && INTEGRAL_TYPE_P (TREE_TYPE (treeop0
)))
10207 op0
= convert_modes (mode
, GET_MODE (op0
), op0
,
10208 TYPE_UNSIGNED (TREE_TYPE (treeop0
)));
10209 /* As a last resort, spill op0 to memory, and reload it in a
10211 else if (!MEM_P (op0
))
10213 /* If the operand is not a MEM, force it into memory. Since we
10214 are going to be changing the mode of the MEM, don't call
10215 force_const_mem for constants because we don't allow pool
10216 constants to change mode. */
10217 tree inner_type
= TREE_TYPE (treeop0
);
10219 gcc_assert (!TREE_ADDRESSABLE (exp
));
10221 if (target
== 0 || GET_MODE (target
) != TYPE_MODE (inner_type
))
10223 = assign_stack_temp_for_type
10224 (TYPE_MODE (inner_type
),
10225 GET_MODE_SIZE (TYPE_MODE (inner_type
)), inner_type
);
10227 emit_move_insn (target
, op0
);
10231 /* At this point, OP0 is in the correct mode. If the output type is
10232 such that the operand is known to be aligned, indicate that it is.
10233 Otherwise, we need only be concerned about alignment for non-BLKmode
10237 enum insn_code icode
;
10239 op0
= copy_rtx (op0
);
10241 if (TYPE_ALIGN_OK (type
))
10242 set_mem_align (op0
, MAX (MEM_ALIGN (op0
), TYPE_ALIGN (type
)));
10243 else if (mode
!= BLKmode
10244 && MEM_ALIGN (op0
) < GET_MODE_ALIGNMENT (mode
)
10245 /* If the target does have special handling for unaligned
10246 loads of mode then use them. */
10247 && ((icode
= optab_handler (movmisalign_optab
, mode
))
10248 != CODE_FOR_nothing
))
10252 op0
= adjust_address (op0
, mode
, 0);
10253 /* We've already validated the memory, and we're creating a
10254 new pseudo destination. The predicates really can't
10256 reg
= gen_reg_rtx (mode
);
10258 /* Nor can the insn generator. */
10259 insn
= GEN_FCN (icode
) (reg
, op0
);
10263 else if (STRICT_ALIGNMENT
10265 && MEM_ALIGN (op0
) < GET_MODE_ALIGNMENT (mode
))
10267 tree inner_type
= TREE_TYPE (treeop0
);
10268 HOST_WIDE_INT temp_size
10269 = MAX (int_size_in_bytes (inner_type
),
10270 (HOST_WIDE_INT
) GET_MODE_SIZE (mode
));
10272 = assign_stack_temp_for_type (mode
, temp_size
, type
);
10273 rtx new_with_op0_mode
10274 = adjust_address (new_rtx
, GET_MODE (op0
), 0);
10276 gcc_assert (!TREE_ADDRESSABLE (exp
));
10278 if (GET_MODE (op0
) == BLKmode
)
10279 emit_block_move (new_with_op0_mode
, op0
,
10280 GEN_INT (GET_MODE_SIZE (mode
)),
10281 (modifier
== EXPAND_STACK_PARM
10282 ? BLOCK_OP_CALL_PARM
: BLOCK_OP_NORMAL
));
10284 emit_move_insn (new_with_op0_mode
, op0
);
10289 op0
= adjust_address (op0
, mode
, 0);
10296 tree lhs
= treeop0
;
10297 tree rhs
= treeop1
;
10298 gcc_assert (ignore
);
10300 /* Check for |= or &= of a bitfield of size one into another bitfield
10301 of size 1. In this case, (unless we need the result of the
10302 assignment) we can do this more efficiently with a
10303 test followed by an assignment, if necessary.
10305 ??? At this point, we can't get a BIT_FIELD_REF here. But if
10306 things change so we do, this code should be enhanced to
10308 if (TREE_CODE (lhs
) == COMPONENT_REF
10309 && (TREE_CODE (rhs
) == BIT_IOR_EXPR
10310 || TREE_CODE (rhs
) == BIT_AND_EXPR
)
10311 && TREE_OPERAND (rhs
, 0) == lhs
10312 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == COMPONENT_REF
10313 && integer_onep (DECL_SIZE (TREE_OPERAND (lhs
, 1)))
10314 && integer_onep (DECL_SIZE (TREE_OPERAND (TREE_OPERAND (rhs
, 1), 1))))
10316 rtx label
= gen_label_rtx ();
10317 int value
= TREE_CODE (rhs
) == BIT_IOR_EXPR
;
10318 do_jump (TREE_OPERAND (rhs
, 1),
10320 value
? 0 : label
, -1);
10321 expand_assignment (lhs
, build_int_cst (TREE_TYPE (rhs
), value
),
10322 MOVE_NONTEMPORAL (exp
));
10323 do_pending_stack_adjust ();
10324 emit_label (label
);
10328 expand_assignment (lhs
, rhs
, MOVE_NONTEMPORAL (exp
));
10333 return expand_expr_addr_expr (exp
, target
, tmode
, modifier
);
10335 case REALPART_EXPR
:
10336 op0
= expand_normal (treeop0
);
10337 return read_complex_part (op0
, false);
10339 case IMAGPART_EXPR
:
10340 op0
= expand_normal (treeop0
);
10341 return read_complex_part (op0
, true);
10348 /* Expanded in cfgexpand.c. */
10349 gcc_unreachable ();
10351 case TRY_CATCH_EXPR
:
10353 case EH_FILTER_EXPR
:
10354 case TRY_FINALLY_EXPR
:
10355 /* Lowered by tree-eh.c. */
10356 gcc_unreachable ();
10358 case WITH_CLEANUP_EXPR
:
10359 case CLEANUP_POINT_EXPR
:
10361 case CASE_LABEL_EXPR
:
10366 case COMPOUND_EXPR
:
10367 case PREINCREMENT_EXPR
:
10368 case PREDECREMENT_EXPR
:
10369 case POSTINCREMENT_EXPR
:
10370 case POSTDECREMENT_EXPR
:
10373 case COMPOUND_LITERAL_EXPR
:
10374 /* Lowered by gimplify.c. */
10375 gcc_unreachable ();
10378 /* Function descriptors are not valid except for as
10379 initialization constants, and should not be expanded. */
10380 gcc_unreachable ();
10382 case WITH_SIZE_EXPR
:
10383 /* WITH_SIZE_EXPR expands to its first argument. The caller should
10384 have pulled out the size to use in whatever context it needed. */
10385 return expand_expr_real (treeop0
, original_target
, tmode
,
10386 modifier
, alt_rtl
);
10389 return expand_expr_real_2 (&ops
, target
, tmode
, modifier
);
10393 /* Subroutine of above: reduce EXP to the precision of TYPE (in the
10394 signedness of TYPE), possibly returning the result in TARGET. */
10396 reduce_to_bit_field_precision (rtx exp
, rtx target
, tree type
)
10398 HOST_WIDE_INT prec
= TYPE_PRECISION (type
);
10399 if (target
&& GET_MODE (target
) != GET_MODE (exp
))
10401 /* For constant values, reduce using build_int_cst_type. */
10402 if (CONST_INT_P (exp
))
10404 HOST_WIDE_INT value
= INTVAL (exp
);
10405 tree t
= build_int_cst_type (type
, value
);
10406 return expand_expr (t
, target
, VOIDmode
, EXPAND_NORMAL
);
10408 else if (TYPE_UNSIGNED (type
))
10410 rtx mask
= immed_double_int_const (double_int_mask (prec
),
10412 return expand_and (GET_MODE (exp
), exp
, mask
, target
);
10416 int count
= GET_MODE_PRECISION (GET_MODE (exp
)) - prec
;
10417 exp
= expand_shift (LSHIFT_EXPR
, GET_MODE (exp
),
10418 exp
, count
, target
, 0);
10419 return expand_shift (RSHIFT_EXPR
, GET_MODE (exp
),
10420 exp
, count
, target
, 0);
10424 /* Subroutine of above: returns 1 if OFFSET corresponds to an offset that
10425 when applied to the address of EXP produces an address known to be
10426 aligned more than BIGGEST_ALIGNMENT. */
10429 is_aligning_offset (const_tree offset
, const_tree exp
)
10431 /* Strip off any conversions. */
10432 while (CONVERT_EXPR_P (offset
))
10433 offset
= TREE_OPERAND (offset
, 0);
10435 /* We must now have a BIT_AND_EXPR with a constant that is one less than
10436 power of 2 and which is larger than BIGGEST_ALIGNMENT. */
10437 if (TREE_CODE (offset
) != BIT_AND_EXPR
10438 || !host_integerp (TREE_OPERAND (offset
, 1), 1)
10439 || compare_tree_int (TREE_OPERAND (offset
, 1),
10440 BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) <= 0
10441 || !exact_log2 (tree_low_cst (TREE_OPERAND (offset
, 1), 1) + 1) < 0)
10444 /* Look at the first operand of BIT_AND_EXPR and strip any conversion.
10445 It must be NEGATE_EXPR. Then strip any more conversions. */
10446 offset
= TREE_OPERAND (offset
, 0);
10447 while (CONVERT_EXPR_P (offset
))
10448 offset
= TREE_OPERAND (offset
, 0);
10450 if (TREE_CODE (offset
) != NEGATE_EXPR
)
10453 offset
= TREE_OPERAND (offset
, 0);
10454 while (CONVERT_EXPR_P (offset
))
10455 offset
= TREE_OPERAND (offset
, 0);
10457 /* This must now be the address of EXP. */
10458 return TREE_CODE (offset
) == ADDR_EXPR
&& TREE_OPERAND (offset
, 0) == exp
;
10461 /* Return the tree node if an ARG corresponds to a string constant or zero
10462 if it doesn't. If we return nonzero, set *PTR_OFFSET to the offset
10463 in bytes within the string that ARG is accessing. The type of the
10464 offset will be `sizetype'. */
10467 string_constant (tree arg
, tree
*ptr_offset
)
10469 tree array
, offset
, lower_bound
;
10472 if (TREE_CODE (arg
) == ADDR_EXPR
)
10474 if (TREE_CODE (TREE_OPERAND (arg
, 0)) == STRING_CST
)
10476 *ptr_offset
= size_zero_node
;
10477 return TREE_OPERAND (arg
, 0);
10479 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == VAR_DECL
)
10481 array
= TREE_OPERAND (arg
, 0);
10482 offset
= size_zero_node
;
10484 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == ARRAY_REF
)
10486 array
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
10487 offset
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 1);
10488 if (TREE_CODE (array
) != STRING_CST
10489 && TREE_CODE (array
) != VAR_DECL
)
10492 /* Check if the array has a nonzero lower bound. */
10493 lower_bound
= array_ref_low_bound (TREE_OPERAND (arg
, 0));
10494 if (!integer_zerop (lower_bound
))
10496 /* If the offset and base aren't both constants, return 0. */
10497 if (TREE_CODE (lower_bound
) != INTEGER_CST
)
10499 if (TREE_CODE (offset
) != INTEGER_CST
)
10501 /* Adjust offset by the lower bound. */
10502 offset
= size_diffop (fold_convert (sizetype
, offset
),
10503 fold_convert (sizetype
, lower_bound
));
10506 else if (TREE_CODE (TREE_OPERAND (arg
, 0)) == MEM_REF
)
10508 array
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
10509 offset
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 1);
10510 if (TREE_CODE (array
) != ADDR_EXPR
)
10512 array
= TREE_OPERAND (array
, 0);
10513 if (TREE_CODE (array
) != STRING_CST
10514 && TREE_CODE (array
) != VAR_DECL
)
10520 else if (TREE_CODE (arg
) == PLUS_EXPR
|| TREE_CODE (arg
) == POINTER_PLUS_EXPR
)
10522 tree arg0
= TREE_OPERAND (arg
, 0);
10523 tree arg1
= TREE_OPERAND (arg
, 1);
10528 if (TREE_CODE (arg0
) == ADDR_EXPR
10529 && (TREE_CODE (TREE_OPERAND (arg0
, 0)) == STRING_CST
10530 || TREE_CODE (TREE_OPERAND (arg0
, 0)) == VAR_DECL
))
10532 array
= TREE_OPERAND (arg0
, 0);
10535 else if (TREE_CODE (arg1
) == ADDR_EXPR
10536 && (TREE_CODE (TREE_OPERAND (arg1
, 0)) == STRING_CST
10537 || TREE_CODE (TREE_OPERAND (arg1
, 0)) == VAR_DECL
))
10539 array
= TREE_OPERAND (arg1
, 0);
10548 if (TREE_CODE (array
) == STRING_CST
)
10550 *ptr_offset
= fold_convert (sizetype
, offset
);
10553 else if (TREE_CODE (array
) == VAR_DECL
10554 || TREE_CODE (array
) == CONST_DECL
)
10558 /* Variables initialized to string literals can be handled too. */
10559 if (!const_value_known_p (array
)
10560 || !DECL_INITIAL (array
)
10561 || TREE_CODE (DECL_INITIAL (array
)) != STRING_CST
)
10564 /* Avoid const char foo[4] = "abcde"; */
10565 if (DECL_SIZE_UNIT (array
) == NULL_TREE
10566 || TREE_CODE (DECL_SIZE_UNIT (array
)) != INTEGER_CST
10567 || (length
= TREE_STRING_LENGTH (DECL_INITIAL (array
))) <= 0
10568 || compare_tree_int (DECL_SIZE_UNIT (array
), length
) < 0)
10571 /* If variable is bigger than the string literal, OFFSET must be constant
10572 and inside of the bounds of the string literal. */
10573 offset
= fold_convert (sizetype
, offset
);
10574 if (compare_tree_int (DECL_SIZE_UNIT (array
), length
) > 0
10575 && (! host_integerp (offset
, 1)
10576 || compare_tree_int (offset
, length
) >= 0))
10579 *ptr_offset
= offset
;
10580 return DECL_INITIAL (array
);
10586 /* Generate code to calculate OPS, and exploded expression
10587 using a store-flag instruction and return an rtx for the result.
10588 OPS reflects a comparison.
10590 If TARGET is nonzero, store the result there if convenient.
10592 Return zero if there is no suitable set-flag instruction
10593 available on this machine.
10595 Once expand_expr has been called on the arguments of the comparison,
10596 we are committed to doing the store flag, since it is not safe to
10597 re-evaluate the expression. We emit the store-flag insn by calling
10598 emit_store_flag, but only expand the arguments if we have a reason
10599 to believe that emit_store_flag will be successful. If we think that
10600 it will, but it isn't, we have to simulate the store-flag with a
10601 set/jump/set sequence. */
10604 do_store_flag (sepops ops
, rtx target
, enum machine_mode mode
)
10606 enum rtx_code code
;
10607 tree arg0
, arg1
, type
;
10609 enum machine_mode operand_mode
;
10612 rtx subtarget
= target
;
10613 location_t loc
= ops
->location
;
10618 /* Don't crash if the comparison was erroneous. */
10619 if (arg0
== error_mark_node
|| arg1
== error_mark_node
)
10622 type
= TREE_TYPE (arg0
);
10623 operand_mode
= TYPE_MODE (type
);
10624 unsignedp
= TYPE_UNSIGNED (type
);
10626 /* We won't bother with BLKmode store-flag operations because it would mean
10627 passing a lot of information to emit_store_flag. */
10628 if (operand_mode
== BLKmode
)
10631 /* We won't bother with store-flag operations involving function pointers
10632 when function pointers must be canonicalized before comparisons. */
10633 #ifdef HAVE_canonicalize_funcptr_for_compare
10634 if (HAVE_canonicalize_funcptr_for_compare
10635 && ((TREE_CODE (TREE_TYPE (arg0
)) == POINTER_TYPE
10636 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg0
)))
10638 || (TREE_CODE (TREE_TYPE (arg1
)) == POINTER_TYPE
10639 && (TREE_CODE (TREE_TYPE (TREE_TYPE (arg1
)))
10640 == FUNCTION_TYPE
))))
10647 /* For vector typed comparisons emit code to generate the desired
10648 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
10649 expander for this. */
10650 if (TREE_CODE (ops
->type
) == VECTOR_TYPE
)
10652 tree ifexp
= build2 (ops
->code
, ops
->type
, arg0
, arg1
);
10653 tree if_true
= constant_boolean_node (true, ops
->type
);
10654 tree if_false
= constant_boolean_node (false, ops
->type
);
10655 return expand_vec_cond_expr (ops
->type
, ifexp
, if_true
, if_false
, target
);
10658 /* For vector typed comparisons emit code to generate the desired
10659 all-ones or all-zeros mask. Conveniently use the VEC_COND_EXPR
10660 expander for this. */
10661 if (TREE_CODE (ops
->type
) == VECTOR_TYPE
)
10663 tree ifexp
= build2 (ops
->code
, ops
->type
, arg0
, arg1
);
10664 tree if_true
= constant_boolean_node (true, ops
->type
);
10665 tree if_false
= constant_boolean_node (false, ops
->type
);
10666 return expand_vec_cond_expr (ops
->type
, ifexp
, if_true
, if_false
, target
);
10669 /* Get the rtx comparison code to use. We know that EXP is a comparison
10670 operation of some type. Some comparisons against 1 and -1 can be
10671 converted to comparisons with zero. Do so here so that the tests
10672 below will be aware that we have a comparison with zero. These
10673 tests will not catch constants in the first operand, but constants
10674 are rarely passed as the first operand. */
10685 if (integer_onep (arg1
))
10686 arg1
= integer_zero_node
, code
= unsignedp
? LEU
: LE
;
10688 code
= unsignedp
? LTU
: LT
;
10691 if (! unsignedp
&& integer_all_onesp (arg1
))
10692 arg1
= integer_zero_node
, code
= LT
;
10694 code
= unsignedp
? LEU
: LE
;
10697 if (! unsignedp
&& integer_all_onesp (arg1
))
10698 arg1
= integer_zero_node
, code
= GE
;
10700 code
= unsignedp
? GTU
: GT
;
10703 if (integer_onep (arg1
))
10704 arg1
= integer_zero_node
, code
= unsignedp
? GTU
: GT
;
10706 code
= unsignedp
? GEU
: GE
;
10709 case UNORDERED_EXPR
:
10735 gcc_unreachable ();
10738 /* Put a constant second. */
10739 if (TREE_CODE (arg0
) == REAL_CST
|| TREE_CODE (arg0
) == INTEGER_CST
10740 || TREE_CODE (arg0
) == FIXED_CST
)
10742 tem
= arg0
; arg0
= arg1
; arg1
= tem
;
10743 code
= swap_condition (code
);
10746 /* If this is an equality or inequality test of a single bit, we can
10747 do this by shifting the bit being tested to the low-order bit and
10748 masking the result with the constant 1. If the condition was EQ,
10749 we xor it with 1. This does not require an scc insn and is faster
10750 than an scc insn even if we have it.
10752 The code to make this transformation was moved into fold_single_bit_test,
10753 so we just call into the folder and expand its result. */
10755 if ((code
== NE
|| code
== EQ
)
10756 && integer_zerop (arg1
)
10757 && (TYPE_PRECISION (ops
->type
) != 1 || TYPE_UNSIGNED (ops
->type
)))
10759 gimple srcstmt
= get_def_for_expr (arg0
, BIT_AND_EXPR
);
10761 && integer_pow2p (gimple_assign_rhs2 (srcstmt
)))
10763 enum tree_code tcode
= code
== NE
? NE_EXPR
: EQ_EXPR
;
10764 tree type
= lang_hooks
.types
.type_for_mode (mode
, unsignedp
);
10765 tree temp
= fold_build2_loc (loc
, BIT_AND_EXPR
, TREE_TYPE (arg1
),
10766 gimple_assign_rhs1 (srcstmt
),
10767 gimple_assign_rhs2 (srcstmt
));
10768 temp
= fold_single_bit_test (loc
, tcode
, temp
, arg1
, type
);
10770 return expand_expr (temp
, target
, VOIDmode
, EXPAND_NORMAL
);
10774 if (! get_subtarget (target
)
10775 || GET_MODE (subtarget
) != operand_mode
)
10778 expand_operands (arg0
, arg1
, subtarget
, &op0
, &op1
, EXPAND_NORMAL
);
10781 target
= gen_reg_rtx (mode
);
10783 /* Try a cstore if possible. */
10784 return emit_store_flag_force (target
, code
, op0
, op1
,
10785 operand_mode
, unsignedp
,
10786 (TYPE_PRECISION (ops
->type
) == 1
10787 && !TYPE_UNSIGNED (ops
->type
)) ? -1 : 1);
10791 /* Stubs in case we haven't got a casesi insn. */
10792 #ifndef HAVE_casesi
10793 # define HAVE_casesi 0
10794 # define gen_casesi(a, b, c, d, e) (0)
10795 # define CODE_FOR_casesi CODE_FOR_nothing
10798 /* Attempt to generate a casesi instruction. Returns 1 if successful,
10799 0 otherwise (i.e. if there is no casesi instruction). */
10801 try_casesi (tree index_type
, tree index_expr
, tree minval
, tree range
,
10802 rtx table_label
, rtx default_label
, rtx fallback_label
)
10804 struct expand_operand ops
[5];
10805 enum machine_mode index_mode
= SImode
;
10806 rtx op1
, op2
, index
;
10811 /* Convert the index to SImode. */
10812 if (GET_MODE_BITSIZE (TYPE_MODE (index_type
)) > GET_MODE_BITSIZE (index_mode
))
10814 enum machine_mode omode
= TYPE_MODE (index_type
);
10815 rtx rangertx
= expand_normal (range
);
10817 /* We must handle the endpoints in the original mode. */
10818 index_expr
= build2 (MINUS_EXPR
, index_type
,
10819 index_expr
, minval
);
10820 minval
= integer_zero_node
;
10821 index
= expand_normal (index_expr
);
10823 emit_cmp_and_jump_insns (rangertx
, index
, LTU
, NULL_RTX
,
10824 omode
, 1, default_label
);
10825 /* Now we can safely truncate. */
10826 index
= convert_to_mode (index_mode
, index
, 0);
10830 if (TYPE_MODE (index_type
) != index_mode
)
10832 index_type
= lang_hooks
.types
.type_for_mode (index_mode
, 0);
10833 index_expr
= fold_convert (index_type
, index_expr
);
10836 index
= expand_normal (index_expr
);
10839 do_pending_stack_adjust ();
10841 op1
= expand_normal (minval
);
10842 op2
= expand_normal (range
);
10844 create_input_operand (&ops
[0], index
, index_mode
);
10845 create_convert_operand_from_type (&ops
[1], op1
, TREE_TYPE (minval
));
10846 create_convert_operand_from_type (&ops
[2], op2
, TREE_TYPE (range
));
10847 create_fixed_operand (&ops
[3], table_label
);
10848 create_fixed_operand (&ops
[4], (default_label
10850 : fallback_label
));
10851 expand_jump_insn (CODE_FOR_casesi
, 5, ops
);
10855 /* Attempt to generate a tablejump instruction; same concept. */
10856 #ifndef HAVE_tablejump
10857 #define HAVE_tablejump 0
10858 #define gen_tablejump(x, y) (0)
10861 /* Subroutine of the next function.
10863 INDEX is the value being switched on, with the lowest value
10864 in the table already subtracted.
10865 MODE is its expected mode (needed if INDEX is constant).
10866 RANGE is the length of the jump table.
10867 TABLE_LABEL is a CODE_LABEL rtx for the table itself.
10869 DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
10870 index value is out of range. */
10873 do_tablejump (rtx index
, enum machine_mode mode
, rtx range
, rtx table_label
,
10878 if (INTVAL (range
) > cfun
->cfg
->max_jumptable_ents
)
10879 cfun
->cfg
->max_jumptable_ents
= INTVAL (range
);
10881 /* Do an unsigned comparison (in the proper mode) between the index
10882 expression and the value which represents the length of the range.
10883 Since we just finished subtracting the lower bound of the range
10884 from the index expression, this comparison allows us to simultaneously
10885 check that the original index expression value is both greater than
10886 or equal to the minimum value of the range and less than or equal to
10887 the maximum value of the range. */
10890 emit_cmp_and_jump_insns (index
, range
, GTU
, NULL_RTX
, mode
, 1,
10893 /* If index is in range, it must fit in Pmode.
10894 Convert to Pmode so we can index with it. */
10896 index
= convert_to_mode (Pmode
, index
, 1);
10898 /* Don't let a MEM slip through, because then INDEX that comes
10899 out of PIC_CASE_VECTOR_ADDRESS won't be a valid address,
10900 and break_out_memory_refs will go to work on it and mess it up. */
10901 #ifdef PIC_CASE_VECTOR_ADDRESS
10902 if (flag_pic
&& !REG_P (index
))
10903 index
= copy_to_mode_reg (Pmode
, index
);
10906 /* ??? The only correct use of CASE_VECTOR_MODE is the one inside the
10907 GET_MODE_SIZE, because this indicates how large insns are. The other
10908 uses should all be Pmode, because they are addresses. This code
10909 could fail if addresses and insns are not the same size. */
10910 index
= gen_rtx_PLUS (Pmode
,
10911 gen_rtx_MULT (Pmode
, index
,
10912 GEN_INT (GET_MODE_SIZE (CASE_VECTOR_MODE
))),
10913 gen_rtx_LABEL_REF (Pmode
, table_label
));
10914 #ifdef PIC_CASE_VECTOR_ADDRESS
10916 index
= PIC_CASE_VECTOR_ADDRESS (index
);
10919 index
= memory_address (CASE_VECTOR_MODE
, index
);
10920 temp
= gen_reg_rtx (CASE_VECTOR_MODE
);
10921 vector
= gen_const_mem (CASE_VECTOR_MODE
, index
);
10922 convert_move (temp
, vector
, 0);
10924 emit_jump_insn (gen_tablejump (temp
, table_label
));
10926 /* If we are generating PIC code or if the table is PC-relative, the
10927 table and JUMP_INSN must be adjacent, so don't output a BARRIER. */
10928 if (! CASE_VECTOR_PC_RELATIVE
&& ! flag_pic
)
10933 try_tablejump (tree index_type
, tree index_expr
, tree minval
, tree range
,
10934 rtx table_label
, rtx default_label
)
10938 if (! HAVE_tablejump
)
10941 index_expr
= fold_build2 (MINUS_EXPR
, index_type
,
10942 fold_convert (index_type
, index_expr
),
10943 fold_convert (index_type
, minval
));
10944 index
= expand_normal (index_expr
);
10945 do_pending_stack_adjust ();
10947 do_tablejump (index
, TYPE_MODE (index_type
),
10948 convert_modes (TYPE_MODE (index_type
),
10949 TYPE_MODE (TREE_TYPE (range
)),
10950 expand_normal (range
),
10951 TYPE_UNSIGNED (TREE_TYPE (range
))),
10952 table_label
, default_label
);
10956 /* Return a CONST_VECTOR rtx for a VECTOR_CST tree. */
10958 const_vector_from_tree (tree exp
)
10964 enum machine_mode inner
, mode
;
10966 mode
= TYPE_MODE (TREE_TYPE (exp
));
10968 if (initializer_zerop (exp
))
10969 return CONST0_RTX (mode
);
10971 units
= GET_MODE_NUNITS (mode
);
10972 inner
= GET_MODE_INNER (mode
);
10974 v
= rtvec_alloc (units
);
10976 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
10978 elt
= VECTOR_CST_ELT (exp
, i
);
10980 if (TREE_CODE (elt
) == REAL_CST
)
10981 RTVEC_ELT (v
, i
) = CONST_DOUBLE_FROM_REAL_VALUE (TREE_REAL_CST (elt
),
10983 else if (TREE_CODE (elt
) == FIXED_CST
)
10984 RTVEC_ELT (v
, i
) = CONST_FIXED_FROM_FIXED_VALUE (TREE_FIXED_CST (elt
),
10987 RTVEC_ELT (v
, i
) = immed_double_int_const (tree_to_double_int (elt
),
10991 return gen_rtx_CONST_VECTOR (mode
, v
);
10994 /* Build a decl for a personality function given a language prefix. */
10997 build_personality_function (const char *lang
)
10999 const char *unwind_and_version
;
11003 switch (targetm_common
.except_unwind_info (&global_options
))
11008 unwind_and_version
= "_sj0";
11012 unwind_and_version
= "_v0";
11015 unwind_and_version
= "_seh0";
11018 gcc_unreachable ();
11021 name
= ACONCAT (("__", lang
, "_personality", unwind_and_version
, NULL
));
11023 type
= build_function_type_list (integer_type_node
, integer_type_node
,
11024 long_long_unsigned_type_node
,
11025 ptr_type_node
, ptr_type_node
, NULL_TREE
);
11026 decl
= build_decl (UNKNOWN_LOCATION
, FUNCTION_DECL
,
11027 get_identifier (name
), type
);
11028 DECL_ARTIFICIAL (decl
) = 1;
11029 DECL_EXTERNAL (decl
) = 1;
11030 TREE_PUBLIC (decl
) = 1;
11032 /* Zap the nonsensical SYMBOL_REF_DECL for this. What we're left with
11033 are the flags assigned by targetm.encode_section_info. */
11034 SET_SYMBOL_REF_DECL (XEXP (DECL_RTL (decl
), 0), NULL
);
11039 /* Extracts the personality function of DECL and returns the corresponding
11043 get_personality_function (tree decl
)
11045 tree personality
= DECL_FUNCTION_PERSONALITY (decl
);
11046 enum eh_personality_kind pk
;
11048 pk
= function_needs_eh_personality (DECL_STRUCT_FUNCTION (decl
));
11049 if (pk
== eh_personality_none
)
11053 && pk
== eh_personality_any
)
11054 personality
= lang_hooks
.eh_personality ();
11056 if (pk
== eh_personality_lang
)
11057 gcc_assert (personality
!= NULL_TREE
);
11059 return XEXP (DECL_RTL (personality
), 0);
11062 #include "gt-expr.h"