1 /* Expand builtin functions.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "coretypes.h"
32 #include "hard-reg-set.h"
35 #include "insn-config.h"
41 #include "typeclass.h"
46 #include "langhooks.h"
48 #define CALLED_AS_BUILT_IN(NODE) \
49 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
51 /* Register mappings for target machines without register windows. */
52 #ifndef INCOMING_REGNO
53 #define INCOMING_REGNO(OUT) (OUT)
55 #ifndef OUTGOING_REGNO
56 #define OUTGOING_REGNO(IN) (IN)
59 #ifndef PAD_VARARGS_DOWN
60 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
63 /* Define the names of the builtin function types and codes. */
64 const char *const built_in_class_names
[4]
65 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
67 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA, AT, IM) #X,
68 const char *const built_in_names
[(int) END_BUILTINS
] =
70 #include "builtins.def"
74 /* Setup an array of _DECL trees, make sure each element is
75 initialized to NULL_TREE. */
76 tree built_in_decls
[(int) END_BUILTINS
];
77 /* Declarations used when constructing the builtin implicitly in the compiler.
78 It may be NULL_TREE when this is invalid (for instance runtime is not
79 required to implement the function call in all cases. */
80 tree implicit_built_in_decls
[(int) END_BUILTINS
];
82 /* Trigonometric and mathematical constants used in builtin folding. */
83 static bool builtin_dconsts_init
= 0;
84 static REAL_VALUE_TYPE dconstpi
;
85 static REAL_VALUE_TYPE dconste
;
87 static int get_pointer_alignment (tree
, unsigned int);
88 static tree
c_strlen (tree
, int);
89 static const char *c_getstr (tree
);
90 static rtx
c_readstr (const char *, enum machine_mode
);
91 static int target_char_cast (tree
, char *);
92 static rtx
get_memory_rtx (tree
);
93 static tree
build_string_literal (int, const char *);
94 static int apply_args_size (void);
95 static int apply_result_size (void);
96 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
97 static rtx
result_vector (int, rtx
);
99 static rtx
expand_builtin_setjmp (tree
, rtx
);
100 static void expand_builtin_prefetch (tree
);
101 static rtx
expand_builtin_apply_args (void);
102 static rtx
expand_builtin_apply_args_1 (void);
103 static rtx
expand_builtin_apply (rtx
, rtx
, rtx
);
104 static void expand_builtin_return (rtx
);
105 static enum type_class
type_to_class (tree
);
106 static rtx
expand_builtin_classify_type (tree
);
107 static void expand_errno_check (tree
, rtx
);
108 static rtx
expand_builtin_mathfn (tree
, rtx
, rtx
);
109 static rtx
expand_builtin_mathfn_2 (tree
, rtx
, rtx
);
110 static rtx
expand_builtin_constant_p (tree
, enum machine_mode
);
111 static rtx
expand_builtin_args_info (tree
);
112 static rtx
expand_builtin_next_arg (tree
);
113 static rtx
expand_builtin_va_start (tree
);
114 static rtx
expand_builtin_va_end (tree
);
115 static rtx
expand_builtin_va_copy (tree
);
116 static rtx
expand_builtin_memcmp (tree
, tree
, rtx
, enum machine_mode
);
117 static rtx
expand_builtin_strcmp (tree
, rtx
, enum machine_mode
);
118 static rtx
expand_builtin_strncmp (tree
, rtx
, enum machine_mode
);
119 static rtx
builtin_memcpy_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
120 static rtx
expand_builtin_strcat (tree
, rtx
, enum machine_mode
);
121 static rtx
expand_builtin_strncat (tree
, rtx
, enum machine_mode
);
122 static rtx
expand_builtin_strspn (tree
, rtx
, enum machine_mode
);
123 static rtx
expand_builtin_strcspn (tree
, rtx
, enum machine_mode
);
124 static rtx
expand_builtin_memcpy (tree
, rtx
, enum machine_mode
);
125 static rtx
expand_builtin_mempcpy (tree
, rtx
, enum machine_mode
, int);
126 static rtx
expand_builtin_memmove (tree
, rtx
, enum machine_mode
);
127 static rtx
expand_builtin_bcopy (tree
);
128 static rtx
expand_builtin_strcpy (tree
, rtx
, enum machine_mode
);
129 static rtx
expand_builtin_stpcpy (tree
, rtx
, enum machine_mode
);
130 static rtx
builtin_strncpy_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
131 static rtx
expand_builtin_strncpy (tree
, rtx
, enum machine_mode
);
132 static rtx
builtin_memset_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
133 static rtx
builtin_memset_gen_str (void *, HOST_WIDE_INT
, enum machine_mode
);
134 static rtx
expand_builtin_memset (tree
, rtx
, enum machine_mode
);
135 static rtx
expand_builtin_bzero (tree
);
136 static rtx
expand_builtin_strlen (tree
, rtx
, enum machine_mode
);
137 static rtx
expand_builtin_strstr (tree
, rtx
, enum machine_mode
);
138 static rtx
expand_builtin_strpbrk (tree
, rtx
, enum machine_mode
);
139 static rtx
expand_builtin_strchr (tree
, rtx
, enum machine_mode
);
140 static rtx
expand_builtin_strrchr (tree
, rtx
, enum machine_mode
);
141 static rtx
expand_builtin_alloca (tree
, rtx
);
142 static rtx
expand_builtin_unop (enum machine_mode
, tree
, rtx
, rtx
, optab
);
143 static rtx
expand_builtin_frame_address (tree
, tree
);
144 static rtx
expand_builtin_fputs (tree
, rtx
, bool);
145 static rtx
expand_builtin_printf (tree
, rtx
, enum machine_mode
, bool);
146 static rtx
expand_builtin_fprintf (tree
, rtx
, enum machine_mode
, bool);
147 static rtx
expand_builtin_sprintf (tree
, rtx
, enum machine_mode
);
148 static tree
stabilize_va_list (tree
, int);
149 static rtx
expand_builtin_expect (tree
, rtx
);
150 static tree
fold_builtin_constant_p (tree
);
151 static tree
fold_builtin_classify_type (tree
);
152 static tree
fold_builtin_inf (tree
, int);
153 static tree
fold_builtin_nan (tree
, tree
, int);
154 static int validate_arglist (tree
, ...);
155 static bool integer_valued_real_p (tree
);
156 static tree
fold_trunc_transparent_mathfn (tree
);
157 static bool readonly_data_expr (tree
);
158 static rtx
expand_builtin_fabs (tree
, rtx
, rtx
);
159 static rtx
expand_builtin_cabs (tree
, rtx
);
160 static void init_builtin_dconsts (void);
161 static tree
fold_builtin_cabs (tree
, tree
, tree
);
162 static tree
fold_builtin_trunc (tree
);
163 static tree
fold_builtin_floor (tree
);
164 static tree
fold_builtin_ceil (tree
);
165 static tree
fold_builtin_bitop (tree
);
167 /* Initialize mathematical constants for constant folding builtins.
168 These constants need to be given to at least 160 bits precision. */
171 init_builtin_dconsts (void)
173 real_from_string (&dconstpi
,
174 "3.1415926535897932384626433832795028841971693993751058209749445923078");
175 real_from_string (&dconste
,
176 "2.7182818284590452353602874713526624977572470936999595749669676277241");
178 builtin_dconsts_init
= true;
181 /* Return the alignment in bits of EXP, a pointer valued expression.
182 But don't return more than MAX_ALIGN no matter what.
183 The alignment returned is, by default, the alignment of the thing that
184 EXP points to. If it is not a POINTER_TYPE, 0 is returned.
186 Otherwise, look at the expression to see if we can do better, i.e., if the
187 expression is actually pointing at an object whose alignment is tighter. */
190 get_pointer_alignment (tree exp
, unsigned int max_align
)
192 unsigned int align
, inner
;
194 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
197 align
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
198 align
= MIN (align
, max_align
);
202 switch (TREE_CODE (exp
))
206 case NON_LVALUE_EXPR
:
207 exp
= TREE_OPERAND (exp
, 0);
208 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
211 inner
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
212 align
= MIN (inner
, max_align
);
216 /* If sum of pointer + int, restrict our maximum alignment to that
217 imposed by the integer. If not, we can't do any better than
219 if (! host_integerp (TREE_OPERAND (exp
, 1), 1))
222 while (((tree_low_cst (TREE_OPERAND (exp
, 1), 1))
223 & (max_align
/ BITS_PER_UNIT
- 1))
227 exp
= TREE_OPERAND (exp
, 0);
231 /* See what we are pointing at and look at its alignment. */
232 exp
= TREE_OPERAND (exp
, 0);
233 if (TREE_CODE (exp
) == FUNCTION_DECL
)
234 align
= FUNCTION_BOUNDARY
;
235 else if (DECL_P (exp
))
236 align
= DECL_ALIGN (exp
);
237 #ifdef CONSTANT_ALIGNMENT
238 else if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'c')
239 align
= CONSTANT_ALIGNMENT (exp
, align
);
241 return MIN (align
, max_align
);
249 /* Compute the length of a C string. TREE_STRING_LENGTH is not the right
250 way, because it could contain a zero byte in the middle.
251 TREE_STRING_LENGTH is the size of the character array, not the string.
253 ONLY_VALUE should be nonzero if the result is not going to be emitted
254 into the instruction stream and zero if it is going to be expanded.
255 E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is nonzero, constant 3
256 is returned, otherwise NULL, since
257 len = c_strlen (src, 1); if (len) expand_expr (len, ...); would not
258 evaluate the side-effects.
260 The value returned is of type `ssizetype'.
262 Unfortunately, string_constant can't access the values of const char
263 arrays with initializers, so neither can we do so here. */
266 c_strlen (tree src
, int only_value
)
269 HOST_WIDE_INT offset
;
274 if (TREE_CODE (src
) == COND_EXPR
275 && (only_value
|| !TREE_SIDE_EFFECTS (TREE_OPERAND (src
, 0))))
279 len1
= c_strlen (TREE_OPERAND (src
, 1), only_value
);
280 len2
= c_strlen (TREE_OPERAND (src
, 2), only_value
);
281 if (tree_int_cst_equal (len1
, len2
))
285 if (TREE_CODE (src
) == COMPOUND_EXPR
286 && (only_value
|| !TREE_SIDE_EFFECTS (TREE_OPERAND (src
, 0))))
287 return c_strlen (TREE_OPERAND (src
, 1), only_value
);
289 src
= string_constant (src
, &offset_node
);
293 max
= TREE_STRING_LENGTH (src
) - 1;
294 ptr
= TREE_STRING_POINTER (src
);
296 if (offset_node
&& TREE_CODE (offset_node
) != INTEGER_CST
)
298 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
299 compute the offset to the following null if we don't know where to
300 start searching for it. */
303 for (i
= 0; i
< max
; i
++)
307 /* We don't know the starting offset, but we do know that the string
308 has no internal zero bytes. We can assume that the offset falls
309 within the bounds of the string; otherwise, the programmer deserves
310 what he gets. Subtract the offset from the length of the string,
311 and return that. This would perhaps not be valid if we were dealing
312 with named arrays in addition to literal string constants. */
314 return size_diffop (size_int (max
), offset_node
);
317 /* We have a known offset into the string. Start searching there for
318 a null character if we can represent it as a single HOST_WIDE_INT. */
319 if (offset_node
== 0)
321 else if (! host_integerp (offset_node
, 0))
324 offset
= tree_low_cst (offset_node
, 0);
326 /* If the offset is known to be out of bounds, warn, and call strlen at
328 if (offset
< 0 || offset
> max
)
330 warning ("offset outside bounds of constant string");
334 /* Use strlen to search for the first zero byte. Since any strings
335 constructed with build_string will have nulls appended, we win even
336 if we get handed something like (char[4])"abcd".
338 Since OFFSET is our starting index into the string, no further
339 calculation is needed. */
340 return ssize_int (strlen (ptr
+ offset
));
343 /* Return a char pointer for a C string if it is a string constant
344 or sum of string constant and integer constant. */
351 src
= string_constant (src
, &offset_node
);
355 if (offset_node
== 0)
356 return TREE_STRING_POINTER (src
);
357 else if (!host_integerp (offset_node
, 1)
358 || compare_tree_int (offset_node
, TREE_STRING_LENGTH (src
) - 1) > 0)
361 return TREE_STRING_POINTER (src
) + tree_low_cst (offset_node
, 1);
364 /* Return a CONST_INT or CONST_DOUBLE corresponding to target reading
365 GET_MODE_BITSIZE (MODE) bits from string constant STR. */
368 c_readstr (const char *str
, enum machine_mode mode
)
374 if (GET_MODE_CLASS (mode
) != MODE_INT
)
379 for (i
= 0; i
< GET_MODE_SIZE (mode
); i
++)
382 if (WORDS_BIG_ENDIAN
)
383 j
= GET_MODE_SIZE (mode
) - i
- 1;
384 if (BYTES_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
385 && GET_MODE_SIZE (mode
) > UNITS_PER_WORD
)
386 j
= j
+ UNITS_PER_WORD
- 2 * (j
% UNITS_PER_WORD
) - 1;
388 if (j
> 2 * HOST_BITS_PER_WIDE_INT
)
391 ch
= (unsigned char) str
[i
];
392 c
[j
/ HOST_BITS_PER_WIDE_INT
] |= ch
<< (j
% HOST_BITS_PER_WIDE_INT
);
394 return immed_double_const (c
[0], c
[1], mode
);
397 /* Cast a target constant CST to target CHAR and if that value fits into
398 host char type, return zero and put that value into variable pointed by
402 target_char_cast (tree cst
, char *p
)
404 unsigned HOST_WIDE_INT val
, hostval
;
406 if (!host_integerp (cst
, 1)
407 || CHAR_TYPE_SIZE
> HOST_BITS_PER_WIDE_INT
)
410 val
= tree_low_cst (cst
, 1);
411 if (CHAR_TYPE_SIZE
< HOST_BITS_PER_WIDE_INT
)
412 val
&= (((unsigned HOST_WIDE_INT
) 1) << CHAR_TYPE_SIZE
) - 1;
415 if (HOST_BITS_PER_CHAR
< HOST_BITS_PER_WIDE_INT
)
416 hostval
&= (((unsigned HOST_WIDE_INT
) 1) << HOST_BITS_PER_CHAR
) - 1;
425 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
426 times to get the address of either a higher stack frame, or a return
427 address located within it (depending on FNDECL_CODE). */
430 expand_builtin_return_addr (enum built_in_function fndecl_code
, int count
,
435 /* Some machines need special handling before we can access
436 arbitrary frames. For example, on the sparc, we must first flush
437 all register windows to the stack. */
438 #ifdef SETUP_FRAME_ADDRESSES
440 SETUP_FRAME_ADDRESSES ();
443 /* On the sparc, the return address is not in the frame, it is in a
444 register. There is no way to access it off of the current frame
445 pointer, but it can be accessed off the previous frame pointer by
446 reading the value from the register window save area. */
447 #ifdef RETURN_ADDR_IN_PREVIOUS_FRAME
448 if (fndecl_code
== BUILT_IN_RETURN_ADDRESS
)
452 /* Scan back COUNT frames to the specified frame. */
453 for (i
= 0; i
< count
; i
++)
455 /* Assume the dynamic chain pointer is in the word that the
456 frame address points to, unless otherwise specified. */
457 #ifdef DYNAMIC_CHAIN_ADDRESS
458 tem
= DYNAMIC_CHAIN_ADDRESS (tem
);
460 tem
= memory_address (Pmode
, tem
);
461 tem
= gen_rtx_MEM (Pmode
, tem
);
462 set_mem_alias_set (tem
, get_frame_alias_set ());
463 tem
= copy_to_reg (tem
);
466 /* For __builtin_frame_address, return what we've got. */
467 if (fndecl_code
== BUILT_IN_FRAME_ADDRESS
)
470 /* For __builtin_return_address, Get the return address from that
472 #ifdef RETURN_ADDR_RTX
473 tem
= RETURN_ADDR_RTX (count
, tem
);
475 tem
= memory_address (Pmode
,
476 plus_constant (tem
, GET_MODE_SIZE (Pmode
)));
477 tem
= gen_rtx_MEM (Pmode
, tem
);
478 set_mem_alias_set (tem
, get_frame_alias_set ());
483 /* Alias set used for setjmp buffer. */
484 static HOST_WIDE_INT setjmp_alias_set
= -1;
486 /* Construct the leading half of a __builtin_setjmp call. Control will
487 return to RECEIVER_LABEL. This is used directly by sjlj exception
491 expand_builtin_setjmp_setup (rtx buf_addr
, rtx receiver_label
)
493 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
497 if (setjmp_alias_set
== -1)
498 setjmp_alias_set
= new_alias_set ();
500 #ifdef POINTERS_EXTEND_UNSIGNED
501 if (GET_MODE (buf_addr
) != Pmode
)
502 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
505 buf_addr
= force_reg (Pmode
, force_operand (buf_addr
, NULL_RTX
));
509 /* We store the frame pointer and the address of receiver_label in
510 the buffer and use the rest of it for the stack save area, which
511 is machine-dependent. */
513 #ifndef BUILTIN_SETJMP_FRAME_VALUE
514 #define BUILTIN_SETJMP_FRAME_VALUE virtual_stack_vars_rtx
517 mem
= gen_rtx_MEM (Pmode
, buf_addr
);
518 set_mem_alias_set (mem
, setjmp_alias_set
);
519 emit_move_insn (mem
, BUILTIN_SETJMP_FRAME_VALUE
);
521 mem
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
, GET_MODE_SIZE (Pmode
))),
522 set_mem_alias_set (mem
, setjmp_alias_set
);
524 emit_move_insn (validize_mem (mem
),
525 force_reg (Pmode
, gen_rtx_LABEL_REF (Pmode
, receiver_label
)));
527 stack_save
= gen_rtx_MEM (sa_mode
,
528 plus_constant (buf_addr
,
529 2 * GET_MODE_SIZE (Pmode
)));
530 set_mem_alias_set (stack_save
, setjmp_alias_set
);
531 emit_stack_save (SAVE_NONLOCAL
, &stack_save
, NULL_RTX
);
533 /* If there is further processing to do, do it. */
534 #ifdef HAVE_builtin_setjmp_setup
535 if (HAVE_builtin_setjmp_setup
)
536 emit_insn (gen_builtin_setjmp_setup (buf_addr
));
539 /* Tell optimize_save_area_alloca that extra work is going to
540 need to go on during alloca. */
541 current_function_calls_setjmp
= 1;
543 /* Set this so all the registers get saved in our frame; we need to be
544 able to copy the saved values for any registers from frames we unwind. */
545 current_function_has_nonlocal_label
= 1;
548 /* Construct the trailing part of a __builtin_setjmp call.
549 This is used directly by sjlj exception handling code. */
552 expand_builtin_setjmp_receiver (rtx receiver_label ATTRIBUTE_UNUSED
)
554 /* Clobber the FP when we get here, so we have to make sure it's
555 marked as used by this function. */
556 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
558 /* Mark the static chain as clobbered here so life information
559 doesn't get messed up for it. */
560 emit_insn (gen_rtx_CLOBBER (VOIDmode
, static_chain_rtx
));
562 /* Now put in the code to restore the frame pointer, and argument
563 pointer, if needed. The code below is from expand_end_bindings
564 in stmt.c; see detailed documentation there. */
565 #ifdef HAVE_nonlocal_goto
566 if (! HAVE_nonlocal_goto
)
568 emit_move_insn (virtual_stack_vars_rtx
, hard_frame_pointer_rtx
);
570 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
571 if (fixed_regs
[ARG_POINTER_REGNUM
])
573 #ifdef ELIMINABLE_REGS
575 static const struct elims
{const int from
, to
;} elim_regs
[] = ELIMINABLE_REGS
;
577 for (i
= 0; i
< ARRAY_SIZE (elim_regs
); i
++)
578 if (elim_regs
[i
].from
== ARG_POINTER_REGNUM
579 && elim_regs
[i
].to
== HARD_FRAME_POINTER_REGNUM
)
582 if (i
== ARRAY_SIZE (elim_regs
))
585 /* Now restore our arg pointer from the address at which it
586 was saved in our stack frame. */
587 emit_move_insn (virtual_incoming_args_rtx
,
588 copy_to_reg (get_arg_pointer_save_area (cfun
)));
593 #ifdef HAVE_builtin_setjmp_receiver
594 if (HAVE_builtin_setjmp_receiver
)
595 emit_insn (gen_builtin_setjmp_receiver (receiver_label
));
598 #ifdef HAVE_nonlocal_goto_receiver
599 if (HAVE_nonlocal_goto_receiver
)
600 emit_insn (gen_nonlocal_goto_receiver ());
605 /* @@@ This is a kludge. Not all machine descriptions define a blockage
606 insn, but we must not allow the code we just generated to be reordered
607 by scheduling. Specifically, the update of the frame pointer must
608 happen immediately, not later. So emit an ASM_INPUT to act as blockage
610 emit_insn (gen_rtx_ASM_INPUT (VOIDmode
, ""));
613 /* __builtin_setjmp is passed a pointer to an array of five words (not
614 all will be used on all machines). It operates similarly to the C
615 library function of the same name, but is more efficient. Much of
616 the code below (and for longjmp) is copied from the handling of
619 NOTE: This is intended for use by GNAT and the exception handling
620 scheme in the compiler and will only work in the method used by
624 expand_builtin_setjmp (tree arglist
, rtx target
)
626 rtx buf_addr
, next_lab
, cont_lab
;
628 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
631 if (target
== 0 || GET_CODE (target
) != REG
632 || REGNO (target
) < FIRST_PSEUDO_REGISTER
)
633 target
= gen_reg_rtx (TYPE_MODE (integer_type_node
));
635 buf_addr
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
637 next_lab
= gen_label_rtx ();
638 cont_lab
= gen_label_rtx ();
640 expand_builtin_setjmp_setup (buf_addr
, next_lab
);
642 /* Set TARGET to zero and branch to the continue label. Use emit_jump to
643 ensure that pending stack adjustments are flushed. */
644 emit_move_insn (target
, const0_rtx
);
645 emit_jump (cont_lab
);
647 emit_label (next_lab
);
649 expand_builtin_setjmp_receiver (next_lab
);
651 /* Set TARGET to one. */
652 emit_move_insn (target
, const1_rtx
);
653 emit_label (cont_lab
);
655 /* Tell flow about the strange goings on. Putting `next_lab' on
656 `nonlocal_goto_handler_labels' to indicates that function
657 calls may traverse the arc back to this label. */
659 current_function_has_nonlocal_label
= 1;
660 nonlocal_goto_handler_labels
661 = gen_rtx_EXPR_LIST (VOIDmode
, next_lab
, nonlocal_goto_handler_labels
);
666 /* __builtin_longjmp is passed a pointer to an array of five words (not
667 all will be used on all machines). It operates similarly to the C
668 library function of the same name, but is more efficient. Much of
669 the code below is copied from the handling of non-local gotos.
671 NOTE: This is intended for use by GNAT and the exception handling
672 scheme in the compiler and will only work in the method used by
676 expand_builtin_longjmp (rtx buf_addr
, rtx value
)
678 rtx fp
, lab
, stack
, insn
, last
;
679 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
681 if (setjmp_alias_set
== -1)
682 setjmp_alias_set
= new_alias_set ();
684 #ifdef POINTERS_EXTEND_UNSIGNED
685 if (GET_MODE (buf_addr
) != Pmode
)
686 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
689 buf_addr
= force_reg (Pmode
, buf_addr
);
691 /* We used to store value in static_chain_rtx, but that fails if pointers
692 are smaller than integers. We instead require that the user must pass
693 a second argument of 1, because that is what builtin_setjmp will
694 return. This also makes EH slightly more efficient, since we are no
695 longer copying around a value that we don't care about. */
696 if (value
!= const1_rtx
)
699 current_function_calls_longjmp
= 1;
701 last
= get_last_insn ();
702 #ifdef HAVE_builtin_longjmp
703 if (HAVE_builtin_longjmp
)
704 emit_insn (gen_builtin_longjmp (buf_addr
));
708 fp
= gen_rtx_MEM (Pmode
, buf_addr
);
709 lab
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
,
710 GET_MODE_SIZE (Pmode
)));
712 stack
= gen_rtx_MEM (sa_mode
, plus_constant (buf_addr
,
713 2 * GET_MODE_SIZE (Pmode
)));
714 set_mem_alias_set (fp
, setjmp_alias_set
);
715 set_mem_alias_set (lab
, setjmp_alias_set
);
716 set_mem_alias_set (stack
, setjmp_alias_set
);
718 /* Pick up FP, label, and SP from the block and jump. This code is
719 from expand_goto in stmt.c; see there for detailed comments. */
720 #if HAVE_nonlocal_goto
721 if (HAVE_nonlocal_goto
)
722 /* We have to pass a value to the nonlocal_goto pattern that will
723 get copied into the static_chain pointer, but it does not matter
724 what that value is, because builtin_setjmp does not use it. */
725 emit_insn (gen_nonlocal_goto (value
, lab
, stack
, fp
));
729 lab
= copy_to_reg (lab
);
731 emit_move_insn (hard_frame_pointer_rtx
, fp
);
732 emit_stack_restore (SAVE_NONLOCAL
, stack
, NULL_RTX
);
734 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
735 emit_insn (gen_rtx_USE (VOIDmode
, stack_pointer_rtx
));
736 emit_indirect_jump (lab
);
740 /* Search backwards and mark the jump insn as a non-local goto.
741 Note that this precludes the use of __builtin_longjmp to a
742 __builtin_setjmp target in the same function. However, we've
743 already cautioned the user that these functions are for
744 internal exception handling use only. */
745 for (insn
= get_last_insn (); insn
; insn
= PREV_INSN (insn
))
749 if (GET_CODE (insn
) == JUMP_INSN
)
751 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO
, const0_rtx
,
755 else if (GET_CODE (insn
) == CALL_INSN
)
760 /* Expand a call to __builtin_prefetch. For a target that does not support
761 data prefetch, evaluate the memory address argument in case it has side
765 expand_builtin_prefetch (tree arglist
)
767 tree arg0
, arg1
, arg2
;
770 if (!validate_arglist (arglist
, POINTER_TYPE
, 0))
773 arg0
= TREE_VALUE (arglist
);
774 /* Arguments 1 and 2 are optional; argument 1 (read/write) defaults to
775 zero (read) and argument 2 (locality) defaults to 3 (high degree of
777 if (TREE_CHAIN (arglist
))
779 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
780 if (TREE_CHAIN (TREE_CHAIN (arglist
)))
781 arg2
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
783 arg2
= build_int_2 (3, 0);
787 arg1
= integer_zero_node
;
788 arg2
= build_int_2 (3, 0);
791 /* Argument 0 is an address. */
792 op0
= expand_expr (arg0
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
794 /* Argument 1 (read/write flag) must be a compile-time constant int. */
795 if (TREE_CODE (arg1
) != INTEGER_CST
)
797 error ("second arg to `__builtin_prefetch' must be a constant");
798 arg1
= integer_zero_node
;
800 op1
= expand_expr (arg1
, NULL_RTX
, VOIDmode
, 0);
801 /* Argument 1 must be either zero or one. */
802 if (INTVAL (op1
) != 0 && INTVAL (op1
) != 1)
804 warning ("invalid second arg to __builtin_prefetch; using zero");
808 /* Argument 2 (locality) must be a compile-time constant int. */
809 if (TREE_CODE (arg2
) != INTEGER_CST
)
811 error ("third arg to `__builtin_prefetch' must be a constant");
812 arg2
= integer_zero_node
;
814 op2
= expand_expr (arg2
, NULL_RTX
, VOIDmode
, 0);
815 /* Argument 2 must be 0, 1, 2, or 3. */
816 if (INTVAL (op2
) < 0 || INTVAL (op2
) > 3)
818 warning ("invalid third arg to __builtin_prefetch; using zero");
825 if ((! (*insn_data
[(int) CODE_FOR_prefetch
].operand
[0].predicate
)
827 insn_data
[(int) CODE_FOR_prefetch
].operand
[0].mode
))
828 || (GET_MODE (op0
) != Pmode
))
830 #ifdef POINTERS_EXTEND_UNSIGNED
831 if (GET_MODE (op0
) != Pmode
)
832 op0
= convert_memory_address (Pmode
, op0
);
834 op0
= force_reg (Pmode
, op0
);
836 emit_insn (gen_prefetch (op0
, op1
, op2
));
840 op0
= protect_from_queue (op0
, 0);
841 /* Don't do anything with direct references to volatile memory, but
842 generate code to handle other side effects. */
843 if (GET_CODE (op0
) != MEM
&& side_effects_p (op0
))
847 /* Get a MEM rtx for expression EXP which is the address of an operand
848 to be used to be used in a string instruction (cmpstrsi, movstrsi, ..). */
851 get_memory_rtx (tree exp
)
853 rtx addr
= expand_expr (exp
, NULL_RTX
, ptr_mode
, EXPAND_SUM
);
856 #ifdef POINTERS_EXTEND_UNSIGNED
857 if (GET_MODE (addr
) != Pmode
)
858 addr
= convert_memory_address (Pmode
, addr
);
861 mem
= gen_rtx_MEM (BLKmode
, memory_address (BLKmode
, addr
));
863 /* Get an expression we can use to find the attributes to assign to MEM.
864 If it is an ADDR_EXPR, use the operand. Otherwise, dereference it if
865 we can. First remove any nops. */
866 while ((TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
867 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
868 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp
, 0))))
869 exp
= TREE_OPERAND (exp
, 0);
871 if (TREE_CODE (exp
) == ADDR_EXPR
)
873 exp
= TREE_OPERAND (exp
, 0);
874 set_mem_attributes (mem
, exp
, 0);
876 else if (POINTER_TYPE_P (TREE_TYPE (exp
)))
878 exp
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (exp
)), exp
);
879 /* memcpy, memset and other builtin stringops can alias with anything. */
880 set_mem_alias_set (mem
, 0);
886 /* Built-in functions to perform an untyped call and return. */
888 /* For each register that may be used for calling a function, this
889 gives a mode used to copy the register's value. VOIDmode indicates
890 the register is not used for calling a function. If the machine
891 has register windows, this gives only the outbound registers.
892 INCOMING_REGNO gives the corresponding inbound register. */
893 static enum machine_mode apply_args_mode
[FIRST_PSEUDO_REGISTER
];
895 /* For each register that may be used for returning values, this gives
896 a mode used to copy the register's value. VOIDmode indicates the
897 register is not used for returning values. If the machine has
898 register windows, this gives only the outbound registers.
899 INCOMING_REGNO gives the corresponding inbound register. */
900 static enum machine_mode apply_result_mode
[FIRST_PSEUDO_REGISTER
];
902 /* For each register that may be used for calling a function, this
903 gives the offset of that register into the block returned by
904 __builtin_apply_args. 0 indicates that the register is not
905 used for calling a function. */
906 static int apply_args_reg_offset
[FIRST_PSEUDO_REGISTER
];
908 /* Return the offset of register REGNO into the block returned by
909 __builtin_apply_args. This is not declared static, since it is
910 needed in objc-act.c. */
913 apply_args_register_offset (int regno
)
917 /* Arguments are always put in outgoing registers (in the argument
918 block) if such make sense. */
919 #ifdef OUTGOING_REGNO
920 regno
= OUTGOING_REGNO (regno
);
922 return apply_args_reg_offset
[regno
];
925 /* Return the size required for the block returned by __builtin_apply_args,
926 and initialize apply_args_mode. */
929 apply_args_size (void)
931 static int size
= -1;
934 enum machine_mode mode
;
936 /* The values computed by this function never change. */
939 /* The first value is the incoming arg-pointer. */
940 size
= GET_MODE_SIZE (Pmode
);
942 /* The second value is the structure value address unless this is
943 passed as an "invisible" first argument. */
944 if (targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0))
945 size
+= GET_MODE_SIZE (Pmode
);
947 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
948 if (FUNCTION_ARG_REGNO_P (regno
))
950 /* Search for the proper mode for copying this register's
951 value. I'm not sure this is right, but it works so far. */
952 enum machine_mode best_mode
= VOIDmode
;
954 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
956 mode
= GET_MODE_WIDER_MODE (mode
))
957 if (HARD_REGNO_MODE_OK (regno
, mode
)
958 && HARD_REGNO_NREGS (regno
, mode
) == 1)
961 if (best_mode
== VOIDmode
)
962 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
);
964 mode
= GET_MODE_WIDER_MODE (mode
))
965 if (HARD_REGNO_MODE_OK (regno
, mode
)
966 && have_insn_for (SET
, mode
))
969 if (best_mode
== VOIDmode
)
970 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT
);
972 mode
= GET_MODE_WIDER_MODE (mode
))
973 if (HARD_REGNO_MODE_OK (regno
, mode
)
974 && have_insn_for (SET
, mode
))
977 if (best_mode
== VOIDmode
)
978 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT
);
980 mode
= GET_MODE_WIDER_MODE (mode
))
981 if (HARD_REGNO_MODE_OK (regno
, mode
)
982 && have_insn_for (SET
, mode
))
986 if (mode
== VOIDmode
)
989 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
990 if (size
% align
!= 0)
991 size
= CEIL (size
, align
) * align
;
992 apply_args_reg_offset
[regno
] = size
;
993 size
+= GET_MODE_SIZE (mode
);
994 apply_args_mode
[regno
] = mode
;
998 apply_args_mode
[regno
] = VOIDmode
;
999 apply_args_reg_offset
[regno
] = 0;
1005 /* Return the size required for the block returned by __builtin_apply,
1006 and initialize apply_result_mode. */
1009 apply_result_size (void)
1011 static int size
= -1;
1013 enum machine_mode mode
;
1015 /* The values computed by this function never change. */
1020 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1021 if (FUNCTION_VALUE_REGNO_P (regno
))
1023 /* Search for the proper mode for copying this register's
1024 value. I'm not sure this is right, but it works so far. */
1025 enum machine_mode best_mode
= VOIDmode
;
1027 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
1029 mode
= GET_MODE_WIDER_MODE (mode
))
1030 if (HARD_REGNO_MODE_OK (regno
, mode
))
1033 if (best_mode
== VOIDmode
)
1034 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
);
1036 mode
= GET_MODE_WIDER_MODE (mode
))
1037 if (HARD_REGNO_MODE_OK (regno
, mode
)
1038 && have_insn_for (SET
, mode
))
1041 if (best_mode
== VOIDmode
)
1042 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT
);
1044 mode
= GET_MODE_WIDER_MODE (mode
))
1045 if (HARD_REGNO_MODE_OK (regno
, mode
)
1046 && have_insn_for (SET
, mode
))
1049 if (best_mode
== VOIDmode
)
1050 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT
);
1052 mode
= GET_MODE_WIDER_MODE (mode
))
1053 if (HARD_REGNO_MODE_OK (regno
, mode
)
1054 && have_insn_for (SET
, mode
))
1058 if (mode
== VOIDmode
)
1061 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1062 if (size
% align
!= 0)
1063 size
= CEIL (size
, align
) * align
;
1064 size
+= GET_MODE_SIZE (mode
);
1065 apply_result_mode
[regno
] = mode
;
1068 apply_result_mode
[regno
] = VOIDmode
;
1070 /* Allow targets that use untyped_call and untyped_return to override
1071 the size so that machine-specific information can be stored here. */
1072 #ifdef APPLY_RESULT_SIZE
1073 size
= APPLY_RESULT_SIZE
;
1079 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
1080 /* Create a vector describing the result block RESULT. If SAVEP is true,
1081 the result block is used to save the values; otherwise it is used to
1082 restore the values. */
1085 result_vector (int savep
, rtx result
)
1087 int regno
, size
, align
, nelts
;
1088 enum machine_mode mode
;
1090 rtx
*savevec
= alloca (FIRST_PSEUDO_REGISTER
* sizeof (rtx
));
1093 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1094 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1096 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1097 if (size
% align
!= 0)
1098 size
= CEIL (size
, align
) * align
;
1099 reg
= gen_rtx_REG (mode
, savep
? regno
: INCOMING_REGNO (regno
));
1100 mem
= adjust_address (result
, mode
, size
);
1101 savevec
[nelts
++] = (savep
1102 ? gen_rtx_SET (VOIDmode
, mem
, reg
)
1103 : gen_rtx_SET (VOIDmode
, reg
, mem
));
1104 size
+= GET_MODE_SIZE (mode
);
1106 return gen_rtx_PARALLEL (VOIDmode
, gen_rtvec_v (nelts
, savevec
));
1108 #endif /* HAVE_untyped_call or HAVE_untyped_return */
1110 /* Save the state required to perform an untyped call with the same
1111 arguments as were passed to the current function. */
1114 expand_builtin_apply_args_1 (void)
1117 int size
, align
, regno
;
1118 enum machine_mode mode
;
1119 rtx struct_incoming_value
= targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 1);
1121 /* Create a block where the arg-pointer, structure value address,
1122 and argument registers can be saved. */
1123 registers
= assign_stack_local (BLKmode
, apply_args_size (), -1);
1125 /* Walk past the arg-pointer and structure value address. */
1126 size
= GET_MODE_SIZE (Pmode
);
1127 if (targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0))
1128 size
+= GET_MODE_SIZE (Pmode
);
1130 /* Save each register used in calling a function to the block. */
1131 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1132 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
1136 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1137 if (size
% align
!= 0)
1138 size
= CEIL (size
, align
) * align
;
1140 tem
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
1142 emit_move_insn (adjust_address (registers
, mode
, size
), tem
);
1143 size
+= GET_MODE_SIZE (mode
);
1146 /* Save the arg pointer to the block. */
1147 emit_move_insn (adjust_address (registers
, Pmode
, 0),
1148 copy_to_reg (virtual_incoming_args_rtx
));
1149 size
= GET_MODE_SIZE (Pmode
);
1151 /* Save the structure value address unless this is passed as an
1152 "invisible" first argument. */
1153 if (struct_incoming_value
)
1155 emit_move_insn (adjust_address (registers
, Pmode
, size
),
1156 copy_to_reg (struct_incoming_value
));
1157 size
+= GET_MODE_SIZE (Pmode
);
1160 /* Return the address of the block. */
1161 return copy_addr_to_reg (XEXP (registers
, 0));
1164 /* __builtin_apply_args returns block of memory allocated on
1165 the stack into which is stored the arg pointer, structure
1166 value address, static chain, and all the registers that might
1167 possibly be used in performing a function call. The code is
1168 moved to the start of the function so the incoming values are
1172 expand_builtin_apply_args (void)
1174 /* Don't do __builtin_apply_args more than once in a function.
1175 Save the result of the first call and reuse it. */
1176 if (apply_args_value
!= 0)
1177 return apply_args_value
;
1179 /* When this function is called, it means that registers must be
1180 saved on entry to this function. So we migrate the
1181 call to the first insn of this function. */
1186 temp
= expand_builtin_apply_args_1 ();
1190 apply_args_value
= temp
;
1192 /* Put the insns after the NOTE that starts the function.
1193 If this is inside a start_sequence, make the outer-level insn
1194 chain current, so the code is placed at the start of the
1196 push_topmost_sequence ();
1197 emit_insn_before (seq
, NEXT_INSN (get_insns ()));
1198 pop_topmost_sequence ();
1203 /* Perform an untyped call and save the state required to perform an
1204 untyped return of whatever value was returned by the given function. */
1207 expand_builtin_apply (rtx function
, rtx arguments
, rtx argsize
)
1209 int size
, align
, regno
;
1210 enum machine_mode mode
;
1211 rtx incoming_args
, result
, reg
, dest
, src
, call_insn
;
1212 rtx old_stack_level
= 0;
1213 rtx call_fusage
= 0;
1214 rtx struct_value
= targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0);
1216 #ifdef POINTERS_EXTEND_UNSIGNED
1217 if (GET_MODE (arguments
) != Pmode
)
1218 arguments
= convert_memory_address (Pmode
, arguments
);
1221 /* Create a block where the return registers can be saved. */
1222 result
= assign_stack_local (BLKmode
, apply_result_size (), -1);
1224 /* Fetch the arg pointer from the ARGUMENTS block. */
1225 incoming_args
= gen_reg_rtx (Pmode
);
1226 emit_move_insn (incoming_args
, gen_rtx_MEM (Pmode
, arguments
));
1227 #ifndef STACK_GROWS_DOWNWARD
1228 incoming_args
= expand_simple_binop (Pmode
, MINUS
, incoming_args
, argsize
,
1229 incoming_args
, 0, OPTAB_LIB_WIDEN
);
1232 /* Perform postincrements before actually calling the function. */
1235 /* Push a new argument block and copy the arguments. Do not allow
1236 the (potential) memcpy call below to interfere with our stack
1238 do_pending_stack_adjust ();
1241 /* Save the stack with nonlocal if available. */
1242 #ifdef HAVE_save_stack_nonlocal
1243 if (HAVE_save_stack_nonlocal
)
1244 emit_stack_save (SAVE_NONLOCAL
, &old_stack_level
, NULL_RTX
);
1247 emit_stack_save (SAVE_BLOCK
, &old_stack_level
, NULL_RTX
);
1249 /* Push a block of memory onto the stack to store the memory arguments.
1250 Save the address in a register, and copy the memory arguments. ??? I
1251 haven't figured out how the calling convention macros effect this,
1252 but it's likely that the source and/or destination addresses in
1253 the block copy will need updating in machine specific ways. */
1254 dest
= allocate_dynamic_stack_space (argsize
, 0, BITS_PER_UNIT
);
1255 dest
= gen_rtx_MEM (BLKmode
, dest
);
1256 set_mem_align (dest
, PARM_BOUNDARY
);
1257 src
= gen_rtx_MEM (BLKmode
, incoming_args
);
1258 set_mem_align (src
, PARM_BOUNDARY
);
1259 emit_block_move (dest
, src
, argsize
, BLOCK_OP_NORMAL
);
1261 /* Refer to the argument block. */
1263 arguments
= gen_rtx_MEM (BLKmode
, arguments
);
1264 set_mem_align (arguments
, PARM_BOUNDARY
);
1266 /* Walk past the arg-pointer and structure value address. */
1267 size
= GET_MODE_SIZE (Pmode
);
1269 size
+= GET_MODE_SIZE (Pmode
);
1271 /* Restore each of the registers previously saved. Make USE insns
1272 for each of these registers for use in making the call. */
1273 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1274 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
1276 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1277 if (size
% align
!= 0)
1278 size
= CEIL (size
, align
) * align
;
1279 reg
= gen_rtx_REG (mode
, regno
);
1280 emit_move_insn (reg
, adjust_address (arguments
, mode
, size
));
1281 use_reg (&call_fusage
, reg
);
1282 size
+= GET_MODE_SIZE (mode
);
1285 /* Restore the structure value address unless this is passed as an
1286 "invisible" first argument. */
1287 size
= GET_MODE_SIZE (Pmode
);
1290 rtx value
= gen_reg_rtx (Pmode
);
1291 emit_move_insn (value
, adjust_address (arguments
, Pmode
, size
));
1292 emit_move_insn (struct_value
, value
);
1293 if (GET_CODE (struct_value
) == REG
)
1294 use_reg (&call_fusage
, struct_value
);
1295 size
+= GET_MODE_SIZE (Pmode
);
1298 /* All arguments and registers used for the call are set up by now! */
1299 function
= prepare_call_address (function
, NULL_TREE
, &call_fusage
, 0, 0);
1301 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1302 and we don't want to load it into a register as an optimization,
1303 because prepare_call_address already did it if it should be done. */
1304 if (GET_CODE (function
) != SYMBOL_REF
)
1305 function
= memory_address (FUNCTION_MODE
, function
);
1307 /* Generate the actual call instruction and save the return value. */
1308 #ifdef HAVE_untyped_call
1309 if (HAVE_untyped_call
)
1310 emit_call_insn (gen_untyped_call (gen_rtx_MEM (FUNCTION_MODE
, function
),
1311 result
, result_vector (1, result
)));
1314 #ifdef HAVE_call_value
1315 if (HAVE_call_value
)
1319 /* Locate the unique return register. It is not possible to
1320 express a call that sets more than one return register using
1321 call_value; use untyped_call for that. In fact, untyped_call
1322 only needs to save the return registers in the given block. */
1323 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1324 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1327 abort (); /* HAVE_untyped_call required. */
1328 valreg
= gen_rtx_REG (mode
, regno
);
1331 emit_call_insn (GEN_CALL_VALUE (valreg
,
1332 gen_rtx_MEM (FUNCTION_MODE
, function
),
1333 const0_rtx
, NULL_RTX
, const0_rtx
));
1335 emit_move_insn (adjust_address (result
, GET_MODE (valreg
), 0), valreg
);
1341 /* Find the CALL insn we just emitted, and attach the register usage
1343 call_insn
= last_call_insn ();
1344 add_function_usage_to (call_insn
, call_fusage
);
1346 /* Restore the stack. */
1347 #ifdef HAVE_save_stack_nonlocal
1348 if (HAVE_save_stack_nonlocal
)
1349 emit_stack_restore (SAVE_NONLOCAL
, old_stack_level
, NULL_RTX
);
1352 emit_stack_restore (SAVE_BLOCK
, old_stack_level
, NULL_RTX
);
1356 /* Return the address of the result block. */
1357 return copy_addr_to_reg (XEXP (result
, 0));
1360 /* Perform an untyped return. */
1363 expand_builtin_return (rtx result
)
1365 int size
, align
, regno
;
1366 enum machine_mode mode
;
1368 rtx call_fusage
= 0;
1370 #ifdef POINTERS_EXTEND_UNSIGNED
1371 if (GET_MODE (result
) != Pmode
)
1372 result
= convert_memory_address (Pmode
, result
);
1375 apply_result_size ();
1376 result
= gen_rtx_MEM (BLKmode
, result
);
1378 #ifdef HAVE_untyped_return
1379 if (HAVE_untyped_return
)
1381 emit_jump_insn (gen_untyped_return (result
, result_vector (0, result
)));
1387 /* Restore the return value and note that each value is used. */
1389 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1390 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1392 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1393 if (size
% align
!= 0)
1394 size
= CEIL (size
, align
) * align
;
1395 reg
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
1396 emit_move_insn (reg
, adjust_address (result
, mode
, size
));
1398 push_to_sequence (call_fusage
);
1399 emit_insn (gen_rtx_USE (VOIDmode
, reg
));
1400 call_fusage
= get_insns ();
1402 size
+= GET_MODE_SIZE (mode
);
1405 /* Put the USE insns before the return. */
1406 emit_insn (call_fusage
);
1408 /* Return whatever values was restored by jumping directly to the end
1410 expand_null_return ();
1413 /* Used by expand_builtin_classify_type and fold_builtin_classify_type. */
1415 static enum type_class
1416 type_to_class (tree type
)
1418 switch (TREE_CODE (type
))
1420 case VOID_TYPE
: return void_type_class
;
1421 case INTEGER_TYPE
: return integer_type_class
;
1422 case CHAR_TYPE
: return char_type_class
;
1423 case ENUMERAL_TYPE
: return enumeral_type_class
;
1424 case BOOLEAN_TYPE
: return boolean_type_class
;
1425 case POINTER_TYPE
: return pointer_type_class
;
1426 case REFERENCE_TYPE
: return reference_type_class
;
1427 case OFFSET_TYPE
: return offset_type_class
;
1428 case REAL_TYPE
: return real_type_class
;
1429 case COMPLEX_TYPE
: return complex_type_class
;
1430 case FUNCTION_TYPE
: return function_type_class
;
1431 case METHOD_TYPE
: return method_type_class
;
1432 case RECORD_TYPE
: return record_type_class
;
1434 case QUAL_UNION_TYPE
: return union_type_class
;
1435 case ARRAY_TYPE
: return (TYPE_STRING_FLAG (type
)
1436 ? string_type_class
: array_type_class
);
1437 case SET_TYPE
: return set_type_class
;
1438 case FILE_TYPE
: return file_type_class
;
1439 case LANG_TYPE
: return lang_type_class
;
1440 default: return no_type_class
;
1444 /* Expand a call to __builtin_classify_type with arguments found in
1448 expand_builtin_classify_type (tree arglist
)
1451 return GEN_INT (type_to_class (TREE_TYPE (TREE_VALUE (arglist
))));
1452 return GEN_INT (no_type_class
);
1455 /* Expand expression EXP, which is a call to __builtin_constant_p. */
1458 expand_builtin_constant_p (tree arglist
, enum machine_mode target_mode
)
1464 arglist
= TREE_VALUE (arglist
);
1466 /* We have taken care of the easy cases during constant folding. This
1467 case is not obvious, so emit (constant_p_rtx (ARGLIST)) and let CSE
1468 get a chance to see if it can deduce whether ARGLIST is constant.
1469 If CSE isn't going to run, of course, don't bother waiting. */
1471 if (cse_not_expected
)
1474 current_function_calls_constant_p
= 1;
1476 tmp
= expand_expr (arglist
, NULL_RTX
, VOIDmode
, 0);
1477 tmp
= gen_rtx_CONSTANT_P_RTX (target_mode
, tmp
);
1481 /* This helper macro, meant to be used in mathfn_built_in below,
1482 determines which among a set of three builtin math functions is
1483 appropriate for a given type mode. The `F' and `L' cases are
1484 automatically generated from the `double' case. */
1485 #define CASE_MATHFN(BUILT_IN_MATHFN) \
1486 case BUILT_IN_MATHFN: case BUILT_IN_MATHFN##F: case BUILT_IN_MATHFN##L: \
1487 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1488 fcodel = BUILT_IN_MATHFN##L ; break;
1490 /* Return mathematic function equivalent to FN but operating directly
1491 on TYPE, if available. If we can't do the conversion, return zero. */
1493 mathfn_built_in (tree type
, enum built_in_function fn
)
1495 const enum machine_mode type_mode
= TYPE_MODE (type
);
1496 enum built_in_function fcode
, fcodef
, fcodel
;
1500 CASE_MATHFN (BUILT_IN_ACOS
)
1501 CASE_MATHFN (BUILT_IN_ACOSH
)
1502 CASE_MATHFN (BUILT_IN_ASIN
)
1503 CASE_MATHFN (BUILT_IN_ASINH
)
1504 CASE_MATHFN (BUILT_IN_ATAN
)
1505 CASE_MATHFN (BUILT_IN_ATAN2
)
1506 CASE_MATHFN (BUILT_IN_ATANH
)
1507 CASE_MATHFN (BUILT_IN_CBRT
)
1508 CASE_MATHFN (BUILT_IN_CEIL
)
1509 CASE_MATHFN (BUILT_IN_COPYSIGN
)
1510 CASE_MATHFN (BUILT_IN_COS
)
1511 CASE_MATHFN (BUILT_IN_COSH
)
1512 CASE_MATHFN (BUILT_IN_DREM
)
1513 CASE_MATHFN (BUILT_IN_ERF
)
1514 CASE_MATHFN (BUILT_IN_ERFC
)
1515 CASE_MATHFN (BUILT_IN_EXP
)
1516 CASE_MATHFN (BUILT_IN_EXP10
)
1517 CASE_MATHFN (BUILT_IN_EXP2
)
1518 CASE_MATHFN (BUILT_IN_EXPM1
)
1519 CASE_MATHFN (BUILT_IN_FABS
)
1520 CASE_MATHFN (BUILT_IN_FDIM
)
1521 CASE_MATHFN (BUILT_IN_FLOOR
)
1522 CASE_MATHFN (BUILT_IN_FMA
)
1523 CASE_MATHFN (BUILT_IN_FMAX
)
1524 CASE_MATHFN (BUILT_IN_FMIN
)
1525 CASE_MATHFN (BUILT_IN_FMOD
)
1526 CASE_MATHFN (BUILT_IN_FREXP
)
1527 CASE_MATHFN (BUILT_IN_GAMMA
)
1528 CASE_MATHFN (BUILT_IN_HUGE_VAL
)
1529 CASE_MATHFN (BUILT_IN_HYPOT
)
1530 CASE_MATHFN (BUILT_IN_ILOGB
)
1531 CASE_MATHFN (BUILT_IN_INF
)
1532 CASE_MATHFN (BUILT_IN_J0
)
1533 CASE_MATHFN (BUILT_IN_J1
)
1534 CASE_MATHFN (BUILT_IN_JN
)
1535 CASE_MATHFN (BUILT_IN_LDEXP
)
1536 CASE_MATHFN (BUILT_IN_LGAMMA
)
1537 CASE_MATHFN (BUILT_IN_LLRINT
)
1538 CASE_MATHFN (BUILT_IN_LLROUND
)
1539 CASE_MATHFN (BUILT_IN_LOG
)
1540 CASE_MATHFN (BUILT_IN_LOG10
)
1541 CASE_MATHFN (BUILT_IN_LOG1P
)
1542 CASE_MATHFN (BUILT_IN_LOG2
)
1543 CASE_MATHFN (BUILT_IN_LOGB
)
1544 CASE_MATHFN (BUILT_IN_LRINT
)
1545 CASE_MATHFN (BUILT_IN_LROUND
)
1546 CASE_MATHFN (BUILT_IN_MODF
)
1547 CASE_MATHFN (BUILT_IN_NAN
)
1548 CASE_MATHFN (BUILT_IN_NANS
)
1549 CASE_MATHFN (BUILT_IN_NEARBYINT
)
1550 CASE_MATHFN (BUILT_IN_NEXTAFTER
)
1551 CASE_MATHFN (BUILT_IN_NEXTTOWARD
)
1552 CASE_MATHFN (BUILT_IN_POW
)
1553 CASE_MATHFN (BUILT_IN_POW10
)
1554 CASE_MATHFN (BUILT_IN_REMAINDER
)
1555 CASE_MATHFN (BUILT_IN_REMQUO
)
1556 CASE_MATHFN (BUILT_IN_RINT
)
1557 CASE_MATHFN (BUILT_IN_ROUND
)
1558 CASE_MATHFN (BUILT_IN_SCALB
)
1559 CASE_MATHFN (BUILT_IN_SCALBLN
)
1560 CASE_MATHFN (BUILT_IN_SCALBN
)
1561 CASE_MATHFN (BUILT_IN_SIGNIFICAND
)
1562 CASE_MATHFN (BUILT_IN_SIN
)
1563 CASE_MATHFN (BUILT_IN_SINCOS
)
1564 CASE_MATHFN (BUILT_IN_SINH
)
1565 CASE_MATHFN (BUILT_IN_SQRT
)
1566 CASE_MATHFN (BUILT_IN_TAN
)
1567 CASE_MATHFN (BUILT_IN_TANH
)
1568 CASE_MATHFN (BUILT_IN_TGAMMA
)
1569 CASE_MATHFN (BUILT_IN_TRUNC
)
1570 CASE_MATHFN (BUILT_IN_Y0
)
1571 CASE_MATHFN (BUILT_IN_Y1
)
1572 CASE_MATHFN (BUILT_IN_YN
)
1578 if (type_mode
== TYPE_MODE (double_type_node
))
1579 return implicit_built_in_decls
[fcode
];
1580 else if (type_mode
== TYPE_MODE (float_type_node
))
1581 return implicit_built_in_decls
[fcodef
];
1582 else if (type_mode
== TYPE_MODE (long_double_type_node
))
1583 return implicit_built_in_decls
[fcodel
];
1588 /* If errno must be maintained, expand the RTL to check if the result,
1589 TARGET, of a built-in function call, EXP, is NaN, and if so set
1593 expand_errno_check (tree exp
, rtx target
)
1595 rtx lab
= gen_label_rtx ();
1597 /* Test the result; if it is NaN, set errno=EDOM because
1598 the argument was not in the domain. */
1599 emit_cmp_and_jump_insns (target
, target
, EQ
, 0, GET_MODE (target
),
1603 /* If this built-in doesn't throw an exception, set errno directly. */
1604 if (TREE_NOTHROW (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0)))
1606 #ifdef GEN_ERRNO_RTX
1607 rtx errno_rtx
= GEN_ERRNO_RTX
;
1610 = gen_rtx_MEM (word_mode
, gen_rtx_SYMBOL_REF (Pmode
, "errno"));
1612 emit_move_insn (errno_rtx
, GEN_INT (TARGET_EDOM
));
1618 /* We can't set errno=EDOM directly; let the library call do it.
1619 Pop the arguments right away in case the call gets deleted. */
1621 expand_call (exp
, target
, 0);
1627 /* Expand a call to one of the builtin math functions (sin, cos, or sqrt).
1628 Return 0 if a normal call should be emitted rather than expanding the
1629 function in-line. EXP is the expression that is a call to the builtin
1630 function; if convenient, the result should be placed in TARGET.
1631 SUBTARGET may be used as the target for computing one of EXP's operands. */
1634 expand_builtin_mathfn (tree exp
, rtx target
, rtx subtarget
)
1636 optab builtin_optab
;
1637 rtx op0
, insns
, before_call
;
1638 tree fndecl
= get_callee_fndecl (exp
);
1639 tree arglist
= TREE_OPERAND (exp
, 1);
1640 enum machine_mode mode
;
1641 bool errno_set
= false;
1644 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
1647 arg
= TREE_VALUE (arglist
);
1649 switch (DECL_FUNCTION_CODE (fndecl
))
1654 builtin_optab
= sin_optab
; break;
1658 builtin_optab
= cos_optab
; break;
1660 case BUILT_IN_SQRTF
:
1661 case BUILT_IN_SQRTL
:
1662 errno_set
= ! tree_expr_nonnegative_p (arg
);
1663 builtin_optab
= sqrt_optab
;
1668 errno_set
= true; builtin_optab
= exp_optab
; break;
1672 errno_set
= true; builtin_optab
= log_optab
; break;
1676 builtin_optab
= tan_optab
; break;
1678 case BUILT_IN_ATANF
:
1679 case BUILT_IN_ATANL
:
1680 builtin_optab
= atan_optab
; break;
1681 case BUILT_IN_FLOOR
:
1682 case BUILT_IN_FLOORF
:
1683 case BUILT_IN_FLOORL
:
1684 builtin_optab
= floor_optab
; break;
1686 case BUILT_IN_CEILF
:
1687 case BUILT_IN_CEILL
:
1688 builtin_optab
= ceil_optab
; break;
1689 case BUILT_IN_TRUNC
:
1690 case BUILT_IN_TRUNCF
:
1691 case BUILT_IN_TRUNCL
:
1692 builtin_optab
= trunc_optab
; break;
1693 case BUILT_IN_ROUND
:
1694 case BUILT_IN_ROUNDF
:
1695 case BUILT_IN_ROUNDL
:
1696 builtin_optab
= round_optab
; break;
1697 case BUILT_IN_NEARBYINT
:
1698 case BUILT_IN_NEARBYINTF
:
1699 case BUILT_IN_NEARBYINTL
:
1700 builtin_optab
= nearbyint_optab
; break;
1705 /* Make a suitable register to place result in. */
1706 mode
= TYPE_MODE (TREE_TYPE (exp
));
1708 if (! flag_errno_math
|| ! HONOR_NANS (mode
))
1711 /* Before working hard, check whether the instruction is available. */
1712 if (builtin_optab
->handlers
[(int) mode
].insn_code
!= CODE_FOR_nothing
)
1714 target
= gen_reg_rtx (mode
);
1716 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
1717 need to expand the argument again. This way, we will not perform
1718 side-effects more the once. */
1719 narg
= save_expr (arg
);
1722 arglist
= build_tree_list (NULL_TREE
, arg
);
1723 exp
= build_function_call_expr (fndecl
, arglist
);
1726 op0
= expand_expr (arg
, subtarget
, VOIDmode
, 0);
1731 /* Compute into TARGET.
1732 Set TARGET to wherever the result comes back. */
1733 target
= expand_unop (mode
, builtin_optab
, op0
, target
, 0);
1738 expand_errno_check (exp
, target
);
1740 /* Output the entire sequence. */
1741 insns
= get_insns ();
1747 /* If we were unable to expand via the builtin, stop the sequence
1748 (without outputting the insns) and call to the library function
1749 with the stabilized argument list. */
1753 before_call
= get_last_insn ();
1755 target
= expand_call (exp
, target
, target
== const0_rtx
);
1757 /* If this is a sqrt operation and we don't care about errno, try to
1758 attach a REG_EQUAL note with a SQRT rtx to the emitted libcall.
1759 This allows the semantics of the libcall to be visible to the RTL
1761 if (builtin_optab
== sqrt_optab
&& !errno_set
)
1763 /* Search backwards through the insns emitted by expand_call looking
1764 for the instruction with the REG_RETVAL note. */
1765 rtx last
= get_last_insn ();
1766 while (last
!= before_call
)
1768 if (find_reg_note (last
, REG_RETVAL
, NULL
))
1770 rtx note
= find_reg_note (last
, REG_EQUAL
, NULL
);
1771 /* Check that the REQ_EQUAL note is an EXPR_LIST with
1772 two elements, i.e. symbol_ref(sqrt) and the operand. */
1774 && GET_CODE (note
) == EXPR_LIST
1775 && GET_CODE (XEXP (note
, 0)) == EXPR_LIST
1776 && XEXP (XEXP (note
, 0), 1) != NULL_RTX
1777 && XEXP (XEXP (XEXP (note
, 0), 1), 1) == NULL_RTX
)
1779 rtx operand
= XEXP (XEXP (XEXP (note
, 0), 1), 0);
1780 /* Check operand is a register with expected mode. */
1782 && GET_CODE (operand
) == REG
1783 && GET_MODE (operand
) == mode
)
1785 /* Replace the REG_EQUAL note with a SQRT rtx. */
1786 rtx equiv
= gen_rtx_SQRT (mode
, operand
);
1787 set_unique_reg_note (last
, REG_EQUAL
, equiv
);
1792 last
= PREV_INSN (last
);
1799 /* Expand a call to the builtin binary math functions (pow and atan2).
1800 Return 0 if a normal call should be emitted rather than expanding the
1801 function in-line. EXP is the expression that is a call to the builtin
1802 function; if convenient, the result should be placed in TARGET.
1803 SUBTARGET may be used as the target for computing one of EXP's
1807 expand_builtin_mathfn_2 (tree exp
, rtx target
, rtx subtarget
)
1809 optab builtin_optab
;
1810 rtx op0
, op1
, insns
;
1811 tree fndecl
= get_callee_fndecl (exp
);
1812 tree arglist
= TREE_OPERAND (exp
, 1);
1813 tree arg0
, arg1
, temp
, narg
;
1814 enum machine_mode mode
;
1815 bool errno_set
= true;
1818 if (!validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
1821 arg0
= TREE_VALUE (arglist
);
1822 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
1824 switch (DECL_FUNCTION_CODE (fndecl
))
1829 builtin_optab
= pow_optab
; break;
1830 case BUILT_IN_ATAN2
:
1831 case BUILT_IN_ATAN2F
:
1832 case BUILT_IN_ATAN2L
:
1833 builtin_optab
= atan2_optab
; break;
1838 /* Make a suitable register to place result in. */
1839 mode
= TYPE_MODE (TREE_TYPE (exp
));
1841 /* Before working hard, check whether the instruction is available. */
1842 if (builtin_optab
->handlers
[(int) mode
].insn_code
== CODE_FOR_nothing
)
1845 target
= gen_reg_rtx (mode
);
1847 if (! flag_errno_math
|| ! HONOR_NANS (mode
))
1850 /* Alway stabilize the argument list. */
1851 narg
= save_expr (arg1
);
1854 temp
= build_tree_list (NULL_TREE
, narg
);
1858 temp
= TREE_CHAIN (arglist
);
1860 narg
= save_expr (arg0
);
1863 arglist
= tree_cons (NULL_TREE
, narg
, temp
);
1867 arglist
= tree_cons (NULL_TREE
, arg0
, temp
);
1870 exp
= build_function_call_expr (fndecl
, arglist
);
1872 op0
= expand_expr (arg0
, subtarget
, VOIDmode
, 0);
1873 op1
= expand_expr (arg1
, 0, VOIDmode
, 0);
1878 /* Compute into TARGET.
1879 Set TARGET to wherever the result comes back. */
1880 target
= expand_binop (mode
, builtin_optab
, op0
, op1
,
1881 target
, 0, OPTAB_DIRECT
);
1883 /* If we were unable to expand via the builtin, stop the sequence
1884 (without outputting the insns) and call to the library function
1885 with the stabilized argument list. */
1889 return expand_call (exp
, target
, target
== const0_rtx
);
1893 expand_errno_check (exp
, target
);
1895 /* Output the entire sequence. */
1896 insns
= get_insns ();
1903 /* To evaluate powi(x,n), the floating point value x raised to the
1904 constant integer exponent n, we use a hybrid algorithm that
1905 combines the "window method" with look-up tables. For an
1906 introduction to exponentiation algorithms and "addition chains",
1907 see section 4.6.3, "Evaluation of Powers" of Donald E. Knuth,
1908 "Seminumerical Algorithms", Vol. 2, "The Art of Computer Programming",
1909 3rd Edition, 1998, and Daniel M. Gordon, "A Survey of Fast Exponentiation
1910 Methods", Journal of Algorithms, Vol. 27, pp. 129-146, 1998. */
1912 /* Provide a default value for POWI_MAX_MULTS, the maximum number of
1913 multiplications to inline before calling the system library's pow
1914 function. powi(x,n) requires at worst 2*bits(n)-2 multiplications,
1915 so this default never requires calling pow, powf or powl. */
1917 #ifndef POWI_MAX_MULTS
1918 #define POWI_MAX_MULTS (2*HOST_BITS_PER_WIDE_INT-2)
1921 /* The size of the "optimal power tree" lookup table. All
1922 exponents less than this value are simply looked up in the
1923 powi_table below. This threshold is also used to size the
1924 cache of pseudo registers that hold intermediate results. */
1925 #define POWI_TABLE_SIZE 256
1927 /* The size, in bits of the window, used in the "window method"
1928 exponentiation algorithm. This is equivalent to a radix of
1929 (1<<POWI_WINDOW_SIZE) in the corresponding "m-ary method". */
1930 #define POWI_WINDOW_SIZE 3
1932 /* The following table is an efficient representation of an
1933 "optimal power tree". For each value, i, the corresponding
1934 value, j, in the table states than an optimal evaluation
1935 sequence for calculating pow(x,i) can be found by evaluating
1936 pow(x,j)*pow(x,i-j). An optimal power tree for the first
1937 100 integers is given in Knuth's "Seminumerical algorithms". */
1939 static const unsigned char powi_table
[POWI_TABLE_SIZE
] =
1941 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
1942 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
1943 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
1944 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
1945 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
1946 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
1947 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
1948 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
1949 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
1950 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
1951 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
1952 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
1953 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
1954 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
1955 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
1956 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
1957 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
1958 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
1959 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
1960 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
1961 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
1962 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
1963 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
1964 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
1965 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
1966 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
1967 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
1968 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
1969 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
1970 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
1971 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
1972 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
1976 /* Return the number of multiplications required to calculate
1977 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
1978 subroutine of powi_cost. CACHE is an array indicating
1979 which exponents have already been calculated. */
1982 powi_lookup_cost (unsigned HOST_WIDE_INT n
, bool *cache
)
1984 /* If we've already calculated this exponent, then this evaluation
1985 doesn't require any additional multiplications. */
1990 return powi_lookup_cost (n
- powi_table
[n
], cache
)
1991 + powi_lookup_cost (powi_table
[n
], cache
) + 1;
1994 /* Return the number of multiplications required to calculate
1995 powi(x,n) for an arbitrary x, given the exponent N. This
1996 function needs to be kept in sync with expand_powi below. */
1999 powi_cost (HOST_WIDE_INT n
)
2001 bool cache
[POWI_TABLE_SIZE
];
2002 unsigned HOST_WIDE_INT digit
;
2003 unsigned HOST_WIDE_INT val
;
2009 /* Ignore the reciprocal when calculating the cost. */
2010 val
= (n
< 0) ? -n
: n
;
2012 /* Initialize the exponent cache. */
2013 memset (cache
, 0, POWI_TABLE_SIZE
* sizeof (bool));
2018 while (val
>= POWI_TABLE_SIZE
)
2022 digit
= val
& ((1 << POWI_WINDOW_SIZE
) - 1);
2023 result
+= powi_lookup_cost (digit
, cache
)
2024 + POWI_WINDOW_SIZE
+ 1;
2025 val
>>= POWI_WINDOW_SIZE
;
2034 return result
+ powi_lookup_cost (val
, cache
);
2037 /* Recursive subroutine of expand_powi. This function takes the array,
2038 CACHE, of already calculated exponents and an exponent N and returns
2039 an RTX that corresponds to CACHE[1]**N, as calculated in mode MODE. */
2042 expand_powi_1 (enum machine_mode mode
, unsigned HOST_WIDE_INT n
, rtx
*cache
)
2044 unsigned HOST_WIDE_INT digit
;
2048 if (n
< POWI_TABLE_SIZE
)
2053 target
= gen_reg_rtx (mode
);
2056 op0
= expand_powi_1 (mode
, n
- powi_table
[n
], cache
);
2057 op1
= expand_powi_1 (mode
, powi_table
[n
], cache
);
2061 target
= gen_reg_rtx (mode
);
2062 digit
= n
& ((1 << POWI_WINDOW_SIZE
) - 1);
2063 op0
= expand_powi_1 (mode
, n
- digit
, cache
);
2064 op1
= expand_powi_1 (mode
, digit
, cache
);
2068 target
= gen_reg_rtx (mode
);
2069 op0
= expand_powi_1 (mode
, n
>> 1, cache
);
2073 result
= expand_mult (mode
, op0
, op1
, target
, 0);
2074 if (result
!= target
)
2075 emit_move_insn (target
, result
);
2079 /* Expand the RTL to evaluate powi(x,n) in mode MODE. X is the
2080 floating point operand in mode MODE, and N is the exponent. This
2081 function needs to be kept in sync with powi_cost above. */
2084 expand_powi (rtx x
, enum machine_mode mode
, HOST_WIDE_INT n
)
2086 unsigned HOST_WIDE_INT val
;
2087 rtx cache
[POWI_TABLE_SIZE
];
2091 return CONST1_RTX (mode
);
2093 val
= (n
< 0) ? -n
: n
;
2095 memset (cache
, 0, sizeof (cache
));
2098 result
= expand_powi_1 (mode
, (n
< 0) ? -n
: n
, cache
);
2100 /* If the original exponent was negative, reciprocate the result. */
2102 result
= expand_binop (mode
, sdiv_optab
, CONST1_RTX (mode
),
2103 result
, NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
2108 /* Expand a call to the pow built-in mathematical function. Return 0 if
2109 a normal call should be emitted rather than expanding the function
2110 in-line. EXP is the expression that is a call to the builtin
2111 function; if convenient, the result should be placed in TARGET. */
2114 expand_builtin_pow (tree exp
, rtx target
, rtx subtarget
)
2116 tree arglist
= TREE_OPERAND (exp
, 1);
2119 if (! validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
2122 arg0
= TREE_VALUE (arglist
);
2123 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
2125 if (TREE_CODE (arg1
) == REAL_CST
2126 && ! TREE_CONSTANT_OVERFLOW (arg1
))
2128 REAL_VALUE_TYPE cint
;
2132 c
= TREE_REAL_CST (arg1
);
2133 n
= real_to_integer (&c
);
2134 real_from_integer (&cint
, VOIDmode
, n
, n
< 0 ? -1 : 0, 0);
2135 if (real_identical (&c
, &cint
))
2137 /* If the exponent is -1, 0, 1 or 2, then expand_powi is exact.
2138 Otherwise, check the number of multiplications required.
2139 Note that pow never sets errno for an integer exponent. */
2140 if ((n
>= -1 && n
<= 2)
2141 || (flag_unsafe_math_optimizations
2143 && powi_cost (n
) <= POWI_MAX_MULTS
))
2145 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (exp
));
2146 rtx op
= expand_expr (arg0
, subtarget
, VOIDmode
, 0);
2147 op
= force_reg (mode
, op
);
2148 return expand_powi (op
, mode
, n
);
2152 return expand_builtin_mathfn_2 (exp
, target
, NULL_RTX
);
2155 /* Expand expression EXP which is a call to the strlen builtin. Return 0
2156 if we failed the caller should emit a normal call, otherwise
2157 try to get the result in TARGET, if convenient. */
2160 expand_builtin_strlen (tree arglist
, rtx target
,
2161 enum machine_mode target_mode
)
2163 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
2168 tree len
, src
= TREE_VALUE (arglist
);
2169 rtx result
, src_reg
, char_rtx
, before_strlen
;
2170 enum machine_mode insn_mode
= target_mode
, char_mode
;
2171 enum insn_code icode
= CODE_FOR_nothing
;
2174 /* If the length can be computed at compile-time, return it. */
2175 len
= c_strlen (src
, 0);
2177 return expand_expr (len
, target
, target_mode
, EXPAND_NORMAL
);
2179 /* If the length can be computed at compile-time and is constant
2180 integer, but there are side-effects in src, evaluate
2181 src for side-effects, then return len.
2182 E.g. x = strlen (i++ ? "xfoo" + 1 : "bar");
2183 can be optimized into: i++; x = 3; */
2184 len
= c_strlen (src
, 1);
2185 if (len
&& TREE_CODE (len
) == INTEGER_CST
)
2187 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2188 return expand_expr (len
, target
, target_mode
, EXPAND_NORMAL
);
2191 align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
2193 /* If SRC is not a pointer type, don't do this operation inline. */
2197 /* Bail out if we can't compute strlen in the right mode. */
2198 while (insn_mode
!= VOIDmode
)
2200 icode
= strlen_optab
->handlers
[(int) insn_mode
].insn_code
;
2201 if (icode
!= CODE_FOR_nothing
)
2204 insn_mode
= GET_MODE_WIDER_MODE (insn_mode
);
2206 if (insn_mode
== VOIDmode
)
2209 /* Make a place to write the result of the instruction. */
2212 && GET_CODE (result
) == REG
2213 && GET_MODE (result
) == insn_mode
2214 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
2215 result
= gen_reg_rtx (insn_mode
);
2217 /* Make a place to hold the source address. We will not expand
2218 the actual source until we are sure that the expansion will
2219 not fail -- there are trees that cannot be expanded twice. */
2220 src_reg
= gen_reg_rtx (Pmode
);
2222 /* Mark the beginning of the strlen sequence so we can emit the
2223 source operand later. */
2224 before_strlen
= get_last_insn ();
2226 char_rtx
= const0_rtx
;
2227 char_mode
= insn_data
[(int) icode
].operand
[2].mode
;
2228 if (! (*insn_data
[(int) icode
].operand
[2].predicate
) (char_rtx
,
2230 char_rtx
= copy_to_mode_reg (char_mode
, char_rtx
);
2232 pat
= GEN_FCN (icode
) (result
, gen_rtx_MEM (BLKmode
, src_reg
),
2233 char_rtx
, GEN_INT (align
));
2238 /* Now that we are assured of success, expand the source. */
2240 pat
= memory_address (BLKmode
,
2241 expand_expr (src
, src_reg
, ptr_mode
, EXPAND_SUM
));
2243 emit_move_insn (src_reg
, pat
);
2248 emit_insn_after (pat
, before_strlen
);
2250 emit_insn_before (pat
, get_insns ());
2252 /* Return the value in the proper mode for this function. */
2253 if (GET_MODE (result
) == target_mode
)
2255 else if (target
!= 0)
2256 convert_move (target
, result
, 0);
2258 target
= convert_to_mode (target_mode
, result
, 0);
2264 /* Expand a call to the strstr builtin. Return 0 if we failed the
2265 caller should emit a normal call, otherwise try to get the result
2266 in TARGET, if convenient (and in mode MODE if that's convenient). */
2269 expand_builtin_strstr (tree arglist
, rtx target
, enum machine_mode mode
)
2271 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2275 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2277 const char *p1
, *p2
;
2286 const char *r
= strstr (p1
, p2
);
2291 /* Return an offset into the constant string argument. */
2292 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
2293 s1
, ssize_int (r
- p1
))),
2294 target
, mode
, EXPAND_NORMAL
);
2298 return expand_expr (s1
, target
, mode
, EXPAND_NORMAL
);
2303 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2307 /* New argument list transforming strstr(s1, s2) to
2308 strchr(s1, s2[0]). */
2310 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
2311 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
2312 return expand_expr (build_function_call_expr (fn
, arglist
),
2313 target
, mode
, EXPAND_NORMAL
);
2317 /* Expand a call to the strchr builtin. Return 0 if we failed the
2318 caller should emit a normal call, otherwise try to get the result
2319 in TARGET, if convenient (and in mode MODE if that's convenient). */
2322 expand_builtin_strchr (tree arglist
, rtx target
, enum machine_mode mode
)
2324 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2328 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2331 if (TREE_CODE (s2
) != INTEGER_CST
)
2340 if (target_char_cast (s2
, &c
))
2348 /* Return an offset into the constant string argument. */
2349 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
2350 s1
, ssize_int (r
- p1
))),
2351 target
, mode
, EXPAND_NORMAL
);
2354 /* FIXME: Should use here strchrM optab so that ports can optimize
2360 /* Expand a call to the strrchr builtin. Return 0 if we failed the
2361 caller should emit a normal call, otherwise try to get the result
2362 in TARGET, if convenient (and in mode MODE if that's convenient). */
2365 expand_builtin_strrchr (tree arglist
, rtx target
, enum machine_mode mode
)
2367 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2371 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2375 if (TREE_CODE (s2
) != INTEGER_CST
)
2384 if (target_char_cast (s2
, &c
))
2387 r
= strrchr (p1
, c
);
2392 /* Return an offset into the constant string argument. */
2393 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
2394 s1
, ssize_int (r
- p1
))),
2395 target
, mode
, EXPAND_NORMAL
);
2398 if (! integer_zerop (s2
))
2401 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2405 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
2406 return expand_expr (build_function_call_expr (fn
, arglist
),
2407 target
, mode
, EXPAND_NORMAL
);
2411 /* Expand a call to the strpbrk builtin. Return 0 if we failed the
2412 caller should emit a normal call, otherwise try to get the result
2413 in TARGET, if convenient (and in mode MODE if that's convenient). */
2416 expand_builtin_strpbrk (tree arglist
, rtx target
, enum machine_mode mode
)
2418 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2422 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2424 const char *p1
, *p2
;
2433 const char *r
= strpbrk (p1
, p2
);
2438 /* Return an offset into the constant string argument. */
2439 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
2440 s1
, ssize_int (r
- p1
))),
2441 target
, mode
, EXPAND_NORMAL
);
2446 /* strpbrk(x, "") == NULL.
2447 Evaluate and ignore the arguments in case they had
2449 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2454 return 0; /* Really call strpbrk. */
2456 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2460 /* New argument list transforming strpbrk(s1, s2) to
2461 strchr(s1, s2[0]). */
2463 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
2464 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
2465 return expand_expr (build_function_call_expr (fn
, arglist
),
2466 target
, mode
, EXPAND_NORMAL
);
2470 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2471 bytes from constant string DATA + OFFSET and return it as target
2475 builtin_memcpy_read_str (void *data
, HOST_WIDE_INT offset
,
2476 enum machine_mode mode
)
2478 const char *str
= (const char *) data
;
2481 || ((unsigned HOST_WIDE_INT
) offset
+ GET_MODE_SIZE (mode
)
2482 > strlen (str
) + 1))
2483 abort (); /* Attempt to read past the end of constant string. */
2485 return c_readstr (str
+ offset
, mode
);
2488 /* Expand a call to the memcpy builtin, with arguments in ARGLIST.
2489 Return 0 if we failed, the caller should emit a normal call,
2490 otherwise try to get the result in TARGET, if convenient (and in
2491 mode MODE if that's convenient). */
2493 expand_builtin_memcpy (tree arglist
, rtx target
, enum machine_mode mode
)
2495 if (!validate_arglist (arglist
,
2496 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2500 tree dest
= TREE_VALUE (arglist
);
2501 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2502 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2503 const char *src_str
;
2504 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2505 unsigned int dest_align
2506 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2507 rtx dest_mem
, src_mem
, dest_addr
, len_rtx
;
2509 /* If DEST is not a pointer type, call the normal function. */
2510 if (dest_align
== 0)
2513 /* If the LEN parameter is zero, return DEST. */
2514 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 0)
2516 /* Evaluate and ignore SRC in case it has side-effects. */
2517 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2518 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2521 /* If either SRC is not a pointer type, don't do this
2522 operation in-line. */
2526 dest_mem
= get_memory_rtx (dest
);
2527 set_mem_align (dest_mem
, dest_align
);
2528 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2529 src_str
= c_getstr (src
);
2531 /* If SRC is a string constant and block move would be done
2532 by pieces, we can avoid loading the string from memory
2533 and only stored the computed constants. */
2535 && GET_CODE (len_rtx
) == CONST_INT
2536 && (unsigned HOST_WIDE_INT
) INTVAL (len_rtx
) <= strlen (src_str
) + 1
2537 && can_store_by_pieces (INTVAL (len_rtx
), builtin_memcpy_read_str
,
2538 (void *) src_str
, dest_align
))
2540 dest_mem
= store_by_pieces (dest_mem
, INTVAL (len_rtx
),
2541 builtin_memcpy_read_str
,
2542 (void *) src_str
, dest_align
, 0);
2543 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2544 #ifdef POINTERS_EXTEND_UNSIGNED
2545 if (GET_MODE (dest_mem
) != ptr_mode
)
2546 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2551 src_mem
= get_memory_rtx (src
);
2552 set_mem_align (src_mem
, src_align
);
2554 /* Copy word part most expediently. */
2555 dest_addr
= emit_block_move (dest_mem
, src_mem
, len_rtx
,
2560 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2561 #ifdef POINTERS_EXTEND_UNSIGNED
2562 if (GET_MODE (dest_addr
) != ptr_mode
)
2563 dest_addr
= convert_memory_address (ptr_mode
, dest_addr
);
2570 /* Expand a call to the mempcpy builtin, with arguments in ARGLIST.
2571 Return 0 if we failed the caller should emit a normal call,
2572 otherwise try to get the result in TARGET, if convenient (and in
2573 mode MODE if that's convenient). If ENDP is 0 return the
2574 destination pointer, if ENDP is 1 return the end pointer ala
2575 mempcpy, and if ENDP is 2 return the end pointer minus one ala
2579 expand_builtin_mempcpy (tree arglist
, rtx target
, enum machine_mode mode
,
2582 if (!validate_arglist (arglist
,
2583 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2585 /* If return value is ignored, transform mempcpy into memcpy. */
2586 else if (target
== const0_rtx
)
2588 tree fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2593 return expand_expr (build_function_call_expr (fn
, arglist
),
2594 target
, mode
, EXPAND_NORMAL
);
2598 tree dest
= TREE_VALUE (arglist
);
2599 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2600 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2601 const char *src_str
;
2602 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2603 unsigned int dest_align
2604 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2605 rtx dest_mem
, src_mem
, len_rtx
;
2607 /* If DEST is not a pointer type or LEN is not constant,
2608 call the normal function. */
2609 if (dest_align
== 0 || !host_integerp (len
, 1))
2612 /* If the LEN parameter is zero, return DEST. */
2613 if (tree_low_cst (len
, 1) == 0)
2615 /* Evaluate and ignore SRC in case it has side-effects. */
2616 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2617 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2620 /* If either SRC is not a pointer type, don't do this
2621 operation in-line. */
2625 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2626 src_str
= c_getstr (src
);
2628 /* If SRC is a string constant and block move would be done
2629 by pieces, we can avoid loading the string from memory
2630 and only stored the computed constants. */
2632 && GET_CODE (len_rtx
) == CONST_INT
2633 && (unsigned HOST_WIDE_INT
) INTVAL (len_rtx
) <= strlen (src_str
) + 1
2634 && can_store_by_pieces (INTVAL (len_rtx
), builtin_memcpy_read_str
,
2635 (void *) src_str
, dest_align
))
2637 dest_mem
= get_memory_rtx (dest
);
2638 set_mem_align (dest_mem
, dest_align
);
2639 dest_mem
= store_by_pieces (dest_mem
, INTVAL (len_rtx
),
2640 builtin_memcpy_read_str
,
2641 (void *) src_str
, dest_align
, endp
);
2642 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2643 #ifdef POINTERS_EXTEND_UNSIGNED
2644 if (GET_MODE (dest_mem
) != ptr_mode
)
2645 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2650 if (GET_CODE (len_rtx
) == CONST_INT
2651 && can_move_by_pieces (INTVAL (len_rtx
),
2652 MIN (dest_align
, src_align
)))
2654 dest_mem
= get_memory_rtx (dest
);
2655 set_mem_align (dest_mem
, dest_align
);
2656 src_mem
= get_memory_rtx (src
);
2657 set_mem_align (src_mem
, src_align
);
2658 dest_mem
= move_by_pieces (dest_mem
, src_mem
, INTVAL (len_rtx
),
2659 MIN (dest_align
, src_align
), endp
);
2660 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2661 #ifdef POINTERS_EXTEND_UNSIGNED
2662 if (GET_MODE (dest_mem
) != ptr_mode
)
2663 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2672 /* Expand expression EXP, which is a call to the memmove builtin. Return 0
2673 if we failed the caller should emit a normal call. */
2676 expand_builtin_memmove (tree arglist
, rtx target
, enum machine_mode mode
)
2678 if (!validate_arglist (arglist
,
2679 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2683 tree dest
= TREE_VALUE (arglist
);
2684 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2685 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2687 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2688 unsigned int dest_align
2689 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2691 /* If DEST is not a pointer type, call the normal function. */
2692 if (dest_align
== 0)
2695 /* If the LEN parameter is zero, return DEST. */
2696 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 0)
2698 /* Evaluate and ignore SRC in case it has side-effects. */
2699 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2700 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2703 /* If either SRC is not a pointer type, don't do this
2704 operation in-line. */
2708 /* If src is categorized for a readonly section we can use
2710 if (readonly_data_expr (src
))
2712 tree
const fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2715 return expand_expr (build_function_call_expr (fn
, arglist
),
2716 target
, mode
, EXPAND_NORMAL
);
2719 /* Otherwise, call the normal function. */
2724 /* Expand expression EXP, which is a call to the bcopy builtin. Return 0
2725 if we failed the caller should emit a normal call. */
2728 expand_builtin_bcopy (tree arglist
)
2730 tree src
, dest
, size
, newarglist
;
2732 if (!validate_arglist (arglist
,
2733 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2736 src
= TREE_VALUE (arglist
);
2737 dest
= TREE_VALUE (TREE_CHAIN (arglist
));
2738 size
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2740 /* New argument list transforming bcopy(ptr x, ptr y, int z) to
2741 memmove(ptr y, ptr x, size_t z). This is done this way
2742 so that if it isn't expanded inline, we fallback to
2743 calling bcopy instead of memmove. */
2745 newarglist
= build_tree_list (NULL_TREE
, convert (sizetype
, size
));
2746 newarglist
= tree_cons (NULL_TREE
, src
, newarglist
);
2747 newarglist
= tree_cons (NULL_TREE
, dest
, newarglist
);
2749 return expand_builtin_memmove (newarglist
, const0_rtx
, VOIDmode
);
2752 /* Expand expression EXP, which is a call to the strcpy builtin. Return 0
2753 if we failed the caller should emit a normal call, otherwise try to get
2754 the result in TARGET, if convenient (and in mode MODE if that's
2758 expand_builtin_strcpy (tree arglist
, rtx target
, enum machine_mode mode
)
2760 tree fn
, len
, src
, dst
;
2762 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2765 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2769 src
= TREE_VALUE (TREE_CHAIN (arglist
));
2770 len
= c_strlen (src
, 1);
2771 if (len
== 0 || TREE_SIDE_EFFECTS (len
))
2774 dst
= TREE_VALUE (arglist
);
2775 len
= size_binop (PLUS_EXPR
, len
, ssize_int (1));
2776 arglist
= build_tree_list (NULL_TREE
, len
);
2777 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
2778 arglist
= tree_cons (NULL_TREE
, dst
, arglist
);
2779 return expand_expr (build_function_call_expr (fn
, arglist
),
2780 target
, mode
, EXPAND_NORMAL
);
2783 /* Expand a call to the stpcpy builtin, with arguments in ARGLIST.
2784 Return 0 if we failed the caller should emit a normal call,
2785 otherwise try to get the result in TARGET, if convenient (and in
2786 mode MODE if that's convenient). */
2789 expand_builtin_stpcpy (tree arglist
, rtx target
, enum machine_mode mode
)
2791 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2797 /* If return value is ignored, transform stpcpy into strcpy. */
2798 if (target
== const0_rtx
)
2800 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
2804 return expand_expr (build_function_call_expr (fn
, arglist
),
2805 target
, mode
, EXPAND_NORMAL
);
2808 /* Ensure we get an actual string whose length can be evaluated at
2809 compile-time, not an expression containing a string. This is
2810 because the latter will potentially produce pessimized code
2811 when used to produce the return value. */
2812 src
= TREE_VALUE (TREE_CHAIN (arglist
));
2813 if (! c_getstr (src
) || ! (len
= c_strlen (src
, 0)))
2816 dst
= TREE_VALUE (arglist
);
2817 len
= fold (size_binop (PLUS_EXPR
, len
, ssize_int (1)));
2818 arglist
= build_tree_list (NULL_TREE
, len
);
2819 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
2820 arglist
= tree_cons (NULL_TREE
, dst
, arglist
);
2821 return expand_builtin_mempcpy (arglist
, target
, mode
, /*endp=*/2);
2825 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2826 bytes from constant string DATA + OFFSET and return it as target
2830 builtin_strncpy_read_str (void *data
, HOST_WIDE_INT offset
,
2831 enum machine_mode mode
)
2833 const char *str
= (const char *) data
;
2835 if ((unsigned HOST_WIDE_INT
) offset
> strlen (str
))
2838 return c_readstr (str
+ offset
, mode
);
2841 /* Expand expression EXP, which is a call to the strncpy builtin. Return 0
2842 if we failed the caller should emit a normal call. */
2845 expand_builtin_strncpy (tree arglist
, rtx target
, enum machine_mode mode
)
2847 if (!validate_arglist (arglist
,
2848 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2852 tree slen
= c_strlen (TREE_VALUE (TREE_CHAIN (arglist
)), 1);
2853 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2856 /* We must be passed a constant len parameter. */
2857 if (TREE_CODE (len
) != INTEGER_CST
)
2860 /* If the len parameter is zero, return the dst parameter. */
2861 if (integer_zerop (len
))
2863 /* Evaluate and ignore the src argument in case it has
2865 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
2866 VOIDmode
, EXPAND_NORMAL
);
2867 /* Return the dst parameter. */
2868 return expand_expr (TREE_VALUE (arglist
), target
, mode
,
2872 /* Now, we must be passed a constant src ptr parameter. */
2873 if (slen
== 0 || TREE_CODE (slen
) != INTEGER_CST
)
2876 slen
= size_binop (PLUS_EXPR
, slen
, ssize_int (1));
2878 /* We're required to pad with trailing zeros if the requested
2879 len is greater than strlen(s2)+1. In that case try to
2880 use store_by_pieces, if it fails, punt. */
2881 if (tree_int_cst_lt (slen
, len
))
2883 tree dest
= TREE_VALUE (arglist
);
2884 unsigned int dest_align
2885 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2886 const char *p
= c_getstr (TREE_VALUE (TREE_CHAIN (arglist
)));
2889 if (!p
|| dest_align
== 0 || !host_integerp (len
, 1)
2890 || !can_store_by_pieces (tree_low_cst (len
, 1),
2891 builtin_strncpy_read_str
,
2892 (void *) p
, dest_align
))
2895 dest_mem
= get_memory_rtx (dest
);
2896 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
2897 builtin_strncpy_read_str
,
2898 (void *) p
, dest_align
, 0);
2899 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2900 #ifdef POINTERS_EXTEND_UNSIGNED
2901 if (GET_MODE (dest_mem
) != ptr_mode
)
2902 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2907 /* OK transform into builtin memcpy. */
2908 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2911 return expand_expr (build_function_call_expr (fn
, arglist
),
2912 target
, mode
, EXPAND_NORMAL
);
2916 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2917 bytes from constant string DATA + OFFSET and return it as target
2921 builtin_memset_read_str (void *data
, HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
2922 enum machine_mode mode
)
2924 const char *c
= (const char *) data
;
2925 char *p
= alloca (GET_MODE_SIZE (mode
));
2927 memset (p
, *c
, GET_MODE_SIZE (mode
));
2929 return c_readstr (p
, mode
);
2932 /* Callback routine for store_by_pieces. Return the RTL of a register
2933 containing GET_MODE_SIZE (MODE) consecutive copies of the unsigned
2934 char value given in the RTL register data. For example, if mode is
2935 4 bytes wide, return the RTL for 0x01010101*data. */
2938 builtin_memset_gen_str (void *data
, HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
2939 enum machine_mode mode
)
2945 size
= GET_MODE_SIZE (mode
);
2950 memset (p
, 1, size
);
2951 coeff
= c_readstr (p
, mode
);
2953 target
= convert_to_mode (mode
, (rtx
) data
, 1);
2954 target
= expand_mult (mode
, target
, coeff
, NULL_RTX
, 1);
2955 return force_reg (mode
, target
);
2958 /* Expand expression EXP, which is a call to the memset builtin. Return 0
2959 if we failed the caller should emit a normal call, otherwise try to get
2960 the result in TARGET, if convenient (and in mode MODE if that's
2964 expand_builtin_memset (tree arglist
, rtx target
, enum machine_mode mode
)
2966 if (!validate_arglist (arglist
,
2967 POINTER_TYPE
, INTEGER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2971 tree dest
= TREE_VALUE (arglist
);
2972 tree val
= TREE_VALUE (TREE_CHAIN (arglist
));
2973 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2976 unsigned int dest_align
2977 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2978 rtx dest_mem
, dest_addr
, len_rtx
;
2980 /* If DEST is not a pointer type, don't do this
2981 operation in-line. */
2982 if (dest_align
== 0)
2985 /* If the LEN parameter is zero, return DEST. */
2986 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 0)
2988 /* Evaluate and ignore VAL in case it has side-effects. */
2989 expand_expr (val
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2990 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2993 if (TREE_CODE (val
) != INTEGER_CST
)
2997 if (!host_integerp (len
, 1))
3000 if (optimize_size
&& tree_low_cst (len
, 1) > 1)
3003 /* Assume that we can memset by pieces if we can store the
3004 * the coefficients by pieces (in the required modes).
3005 * We can't pass builtin_memset_gen_str as that emits RTL. */
3007 if (!can_store_by_pieces (tree_low_cst (len
, 1),
3008 builtin_memset_read_str
,
3012 val
= fold (build1 (CONVERT_EXPR
, unsigned_char_type_node
, val
));
3013 val_rtx
= expand_expr (val
, NULL_RTX
, VOIDmode
, 0);
3014 val_rtx
= force_reg (TYPE_MODE (unsigned_char_type_node
),
3016 dest_mem
= get_memory_rtx (dest
);
3017 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
3018 builtin_memset_gen_str
,
3019 val_rtx
, dest_align
, 0);
3020 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3021 #ifdef POINTERS_EXTEND_UNSIGNED
3022 if (GET_MODE (dest_mem
) != ptr_mode
)
3023 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
3028 if (target_char_cast (val
, &c
))
3033 if (!host_integerp (len
, 1))
3035 if (!can_store_by_pieces (tree_low_cst (len
, 1),
3036 builtin_memset_read_str
, &c
,
3040 dest_mem
= get_memory_rtx (dest
);
3041 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
3042 builtin_memset_read_str
,
3044 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3045 #ifdef POINTERS_EXTEND_UNSIGNED
3046 if (GET_MODE (dest_mem
) != ptr_mode
)
3047 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
3052 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3054 dest_mem
= get_memory_rtx (dest
);
3055 set_mem_align (dest_mem
, dest_align
);
3056 dest_addr
= clear_storage (dest_mem
, len_rtx
);
3060 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3061 #ifdef POINTERS_EXTEND_UNSIGNED
3062 if (GET_MODE (dest_addr
) != ptr_mode
)
3063 dest_addr
= convert_memory_address (ptr_mode
, dest_addr
);
3071 /* Expand expression EXP, which is a call to the bzero builtin. Return 0
3072 if we failed the caller should emit a normal call. */
3075 expand_builtin_bzero (tree arglist
)
3077 tree dest
, size
, newarglist
;
3079 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3082 dest
= TREE_VALUE (arglist
);
3083 size
= TREE_VALUE (TREE_CHAIN (arglist
));
3085 /* New argument list transforming bzero(ptr x, int y) to
3086 memset(ptr x, int 0, size_t y). This is done this way
3087 so that if it isn't expanded inline, we fallback to
3088 calling bzero instead of memset. */
3090 newarglist
= build_tree_list (NULL_TREE
, convert (sizetype
, size
));
3091 newarglist
= tree_cons (NULL_TREE
, integer_zero_node
, newarglist
);
3092 newarglist
= tree_cons (NULL_TREE
, dest
, newarglist
);
3094 return expand_builtin_memset (newarglist
, const0_rtx
, VOIDmode
);
3097 /* Expand expression EXP, which is a call to the memcmp built-in function.
3098 ARGLIST is the argument list for this call. Return 0 if we failed and the
3099 caller should emit a normal call, otherwise try to get the result in
3100 TARGET, if convenient (and in mode MODE, if that's convenient). */
3103 expand_builtin_memcmp (tree exp ATTRIBUTE_UNUSED
, tree arglist
, rtx target
,
3104 enum machine_mode mode
)
3106 tree arg1
, arg2
, len
;
3107 const char *p1
, *p2
;
3109 if (!validate_arglist (arglist
,
3110 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3113 arg1
= TREE_VALUE (arglist
);
3114 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3115 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3117 /* If the len parameter is zero, return zero. */
3118 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 0)
3120 /* Evaluate and ignore arg1 and arg2 in case they have
3122 expand_expr (arg1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3123 expand_expr (arg2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3127 p1
= c_getstr (arg1
);
3128 p2
= c_getstr (arg2
);
3130 /* If all arguments are constant, and the value of len is not greater
3131 than the lengths of arg1 and arg2, evaluate at compile-time. */
3132 if (host_integerp (len
, 1) && p1
&& p2
3133 && compare_tree_int (len
, strlen (p1
) + 1) <= 0
3134 && compare_tree_int (len
, strlen (p2
) + 1) <= 0)
3136 const int r
= memcmp (p1
, p2
, tree_low_cst (len
, 1));
3138 return (r
< 0 ? constm1_rtx
: (r
> 0 ? const1_rtx
: const0_rtx
));
3141 /* If len parameter is one, return an expression corresponding to
3142 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
3143 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 1)
3145 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3146 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3148 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3149 build1 (INDIRECT_REF
, cst_uchar_node
,
3150 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
3152 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3153 build1 (INDIRECT_REF
, cst_uchar_node
,
3154 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
3155 tree result
= fold (build (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3156 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3159 #if defined HAVE_cmpmemsi || defined HAVE_cmpstrsi
3161 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3166 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3168 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3169 enum machine_mode insn_mode
;
3171 #ifdef HAVE_cmpmemsi
3173 insn_mode
= insn_data
[(int) CODE_FOR_cmpmemsi
].operand
[0].mode
;
3176 #ifdef HAVE_cmpstrsi
3178 insn_mode
= insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3183 /* If we don't have POINTER_TYPE, call the function. */
3184 if (arg1_align
== 0 || arg2_align
== 0)
3187 /* Make a place to write the result of the instruction. */
3190 && GET_CODE (result
) == REG
&& GET_MODE (result
) == insn_mode
3191 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3192 result
= gen_reg_rtx (insn_mode
);
3194 arg1_rtx
= get_memory_rtx (arg1
);
3195 arg2_rtx
= get_memory_rtx (arg2
);
3196 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3197 #ifdef HAVE_cmpmemsi
3199 insn
= gen_cmpmemsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3200 GEN_INT (MIN (arg1_align
, arg2_align
)));
3203 #ifdef HAVE_cmpstrsi
3205 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3206 GEN_INT (MIN (arg1_align
, arg2_align
)));
3214 emit_library_call_value (memcmp_libfunc
, result
, LCT_PURE_MAKE_BLOCK
,
3215 TYPE_MODE (integer_type_node
), 3,
3216 XEXP (arg1_rtx
, 0), Pmode
,
3217 XEXP (arg2_rtx
, 0), Pmode
,
3218 convert_to_mode (TYPE_MODE (sizetype
), arg3_rtx
,
3219 TREE_UNSIGNED (sizetype
)),
3220 TYPE_MODE (sizetype
));
3222 /* Return the value in the proper mode for this function. */
3223 mode
= TYPE_MODE (TREE_TYPE (exp
));
3224 if (GET_MODE (result
) == mode
)
3226 else if (target
!= 0)
3228 convert_move (target
, result
, 0);
3232 return convert_to_mode (mode
, result
, 0);
3239 /* Expand expression EXP, which is a call to the strcmp builtin. Return 0
3240 if we failed the caller should emit a normal call, otherwise try to get
3241 the result in TARGET, if convenient. */
3244 expand_builtin_strcmp (tree exp
, rtx target
, enum machine_mode mode
)
3246 tree arglist
= TREE_OPERAND (exp
, 1);
3248 const char *p1
, *p2
;
3250 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3253 arg1
= TREE_VALUE (arglist
);
3254 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3256 p1
= c_getstr (arg1
);
3257 p2
= c_getstr (arg2
);
3261 const int i
= strcmp (p1
, p2
);
3262 return (i
< 0 ? constm1_rtx
: (i
> 0 ? const1_rtx
: const0_rtx
));
3265 /* If either arg is "", return an expression corresponding to
3266 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
3267 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
3269 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3270 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3272 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3273 build1 (INDIRECT_REF
, cst_uchar_node
,
3274 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
3276 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3277 build1 (INDIRECT_REF
, cst_uchar_node
,
3278 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
3279 tree result
= fold (build (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3280 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3283 #ifdef HAVE_cmpstrsi
3286 tree len
, len1
, len2
;
3287 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3291 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3293 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3294 enum machine_mode insn_mode
3295 = insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3297 len1
= c_strlen (arg1
, 1);
3298 len2
= c_strlen (arg2
, 1);
3301 len1
= size_binop (PLUS_EXPR
, ssize_int (1), len1
);
3303 len2
= size_binop (PLUS_EXPR
, ssize_int (1), len2
);
3305 /* If we don't have a constant length for the first, use the length
3306 of the second, if we know it. We don't require a constant for
3307 this case; some cost analysis could be done if both are available
3308 but neither is constant. For now, assume they're equally cheap,
3309 unless one has side effects. If both strings have constant lengths,
3316 else if (TREE_SIDE_EFFECTS (len1
))
3318 else if (TREE_SIDE_EFFECTS (len2
))
3320 else if (TREE_CODE (len1
) != INTEGER_CST
)
3322 else if (TREE_CODE (len2
) != INTEGER_CST
)
3324 else if (tree_int_cst_lt (len1
, len2
))
3329 /* If both arguments have side effects, we cannot optimize. */
3330 if (!len
|| TREE_SIDE_EFFECTS (len
))
3333 /* If we don't have POINTER_TYPE, call the function. */
3334 if (arg1_align
== 0 || arg2_align
== 0)
3337 /* Make a place to write the result of the instruction. */
3340 && GET_CODE (result
) == REG
&& GET_MODE (result
) == insn_mode
3341 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3342 result
= gen_reg_rtx (insn_mode
);
3344 arg1_rtx
= get_memory_rtx (arg1
);
3345 arg2_rtx
= get_memory_rtx (arg2
);
3346 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3347 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3348 GEN_INT (MIN (arg1_align
, arg2_align
)));
3354 /* Return the value in the proper mode for this function. */
3355 mode
= TYPE_MODE (TREE_TYPE (exp
));
3356 if (GET_MODE (result
) == mode
)
3359 return convert_to_mode (mode
, result
, 0);
3360 convert_move (target
, result
, 0);
3367 /* Expand expression EXP, which is a call to the strncmp builtin. Return 0
3368 if we failed the caller should emit a normal call, otherwise try to get
3369 the result in TARGET, if convenient. */
3372 expand_builtin_strncmp (tree exp
, rtx target
, enum machine_mode mode
)
3374 tree arglist
= TREE_OPERAND (exp
, 1);
3375 tree arg1
, arg2
, arg3
;
3376 const char *p1
, *p2
;
3378 if (!validate_arglist (arglist
,
3379 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3382 arg1
= TREE_VALUE (arglist
);
3383 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3384 arg3
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3386 /* If the len parameter is zero, return zero. */
3387 if (host_integerp (arg3
, 1) && tree_low_cst (arg3
, 1) == 0)
3389 /* Evaluate and ignore arg1 and arg2 in case they have
3391 expand_expr (arg1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3392 expand_expr (arg2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3396 p1
= c_getstr (arg1
);
3397 p2
= c_getstr (arg2
);
3399 /* If all arguments are constant, evaluate at compile-time. */
3400 if (host_integerp (arg3
, 1) && p1
&& p2
)
3402 const int r
= strncmp (p1
, p2
, tree_low_cst (arg3
, 1));
3403 return (r
< 0 ? constm1_rtx
: (r
> 0 ? const1_rtx
: const0_rtx
));
3406 /* If len == 1 or (either string parameter is "" and (len >= 1)),
3407 return (*(const u_char*)arg1 - *(const u_char*)arg2). */
3408 if (host_integerp (arg3
, 1)
3409 && (tree_low_cst (arg3
, 1) == 1
3410 || (tree_low_cst (arg3
, 1) > 1
3411 && ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0')))))
3413 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3414 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3416 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3417 build1 (INDIRECT_REF
, cst_uchar_node
,
3418 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
3420 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3421 build1 (INDIRECT_REF
, cst_uchar_node
,
3422 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
3423 tree result
= fold (build (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3424 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3427 /* If c_strlen can determine an expression for one of the string
3428 lengths, and it doesn't have side effects, then emit cmpstrsi
3429 using length MIN(strlen(string)+1, arg3). */
3430 #ifdef HAVE_cmpstrsi
3433 tree len
, len1
, len2
;
3434 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3438 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3440 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3441 enum machine_mode insn_mode
3442 = insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3444 len1
= c_strlen (arg1
, 1);
3445 len2
= c_strlen (arg2
, 1);
3448 len1
= size_binop (PLUS_EXPR
, ssize_int (1), len1
);
3450 len2
= size_binop (PLUS_EXPR
, ssize_int (1), len2
);
3452 /* If we don't have a constant length for the first, use the length
3453 of the second, if we know it. We don't require a constant for
3454 this case; some cost analysis could be done if both are available
3455 but neither is constant. For now, assume they're equally cheap,
3456 unless one has side effects. If both strings have constant lengths,
3463 else if (TREE_SIDE_EFFECTS (len1
))
3465 else if (TREE_SIDE_EFFECTS (len2
))
3467 else if (TREE_CODE (len1
) != INTEGER_CST
)
3469 else if (TREE_CODE (len2
) != INTEGER_CST
)
3471 else if (tree_int_cst_lt (len1
, len2
))
3476 /* If both arguments have side effects, we cannot optimize. */
3477 if (!len
|| TREE_SIDE_EFFECTS (len
))
3480 /* The actual new length parameter is MIN(len,arg3). */
3481 len
= fold (build (MIN_EXPR
, TREE_TYPE (len
), len
, arg3
));
3483 /* If we don't have POINTER_TYPE, call the function. */
3484 if (arg1_align
== 0 || arg2_align
== 0)
3487 /* Make a place to write the result of the instruction. */
3490 && GET_CODE (result
) == REG
&& GET_MODE (result
) == insn_mode
3491 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3492 result
= gen_reg_rtx (insn_mode
);
3494 arg1_rtx
= get_memory_rtx (arg1
);
3495 arg2_rtx
= get_memory_rtx (arg2
);
3496 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3497 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3498 GEN_INT (MIN (arg1_align
, arg2_align
)));
3504 /* Return the value in the proper mode for this function. */
3505 mode
= TYPE_MODE (TREE_TYPE (exp
));
3506 if (GET_MODE (result
) == mode
)
3509 return convert_to_mode (mode
, result
, 0);
3510 convert_move (target
, result
, 0);
3517 /* Expand expression EXP, which is a call to the strcat builtin.
3518 Return 0 if we failed the caller should emit a normal call,
3519 otherwise try to get the result in TARGET, if convenient. */
3522 expand_builtin_strcat (tree arglist
, rtx target
, enum machine_mode mode
)
3524 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3528 tree dst
= TREE_VALUE (arglist
),
3529 src
= TREE_VALUE (TREE_CHAIN (arglist
));
3530 const char *p
= c_getstr (src
);
3534 /* If the string length is zero, return the dst parameter. */
3536 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3537 else if (!optimize_size
)
3539 /* Otherwise if !optimize_size, see if we can store by
3540 pieces into (dst + strlen(dst)). */
3541 tree newdst
, arglist
,
3542 strlen_fn
= implicit_built_in_decls
[BUILT_IN_STRLEN
];
3544 /* This is the length argument. */
3545 arglist
= build_tree_list (NULL_TREE
,
3546 fold (size_binop (PLUS_EXPR
,
3549 /* Prepend src argument. */
3550 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
3552 /* We're going to use dst more than once. */
3553 dst
= save_expr (dst
);
3555 /* Create strlen (dst). */
3557 fold (build_function_call_expr (strlen_fn
,
3558 build_tree_list (NULL_TREE
,
3560 /* Create (dst + strlen (dst)). */
3561 newdst
= fold (build (PLUS_EXPR
, TREE_TYPE (dst
), dst
, newdst
));
3563 /* Prepend the new dst argument. */
3564 arglist
= tree_cons (NULL_TREE
, newdst
, arglist
);
3566 /* We don't want to get turned into a memcpy if the
3567 target is const0_rtx, i.e. when the return value
3568 isn't used. That would produce pessimized code so
3569 pass in a target of zero, it should never actually be
3570 used. If this was successful return the original
3571 dst, not the result of mempcpy. */
3572 if (expand_builtin_mempcpy (arglist
, /*target=*/0, mode
, /*endp=*/0))
3573 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3583 /* Expand expression EXP, which is a call to the strncat builtin.
3584 Return 0 if we failed the caller should emit a normal call,
3585 otherwise try to get the result in TARGET, if convenient. */
3588 expand_builtin_strncat (tree arglist
, rtx target
, enum machine_mode mode
)
3590 if (!validate_arglist (arglist
,
3591 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3595 tree dst
= TREE_VALUE (arglist
),
3596 src
= TREE_VALUE (TREE_CHAIN (arglist
)),
3597 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3598 const char *p
= c_getstr (src
);
3600 /* If the requested length is zero, or the src parameter string
3601 length is zero, return the dst parameter. */
3602 if (integer_zerop (len
) || (p
&& *p
== '\0'))
3604 /* Evaluate and ignore the src and len parameters in case
3605 they have side-effects. */
3606 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3607 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3608 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3611 /* If the requested len is greater than or equal to the string
3612 length, call strcat. */
3613 if (TREE_CODE (len
) == INTEGER_CST
&& p
3614 && compare_tree_int (len
, strlen (p
)) >= 0)
3617 = tree_cons (NULL_TREE
, dst
, build_tree_list (NULL_TREE
, src
));
3618 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCAT
];
3620 /* If the replacement _DECL isn't initialized, don't do the
3625 return expand_expr (build_function_call_expr (fn
, newarglist
),
3626 target
, mode
, EXPAND_NORMAL
);
3632 /* Expand expression EXP, which is a call to the strspn builtin.
3633 Return 0 if we failed the caller should emit a normal call,
3634 otherwise try to get the result in TARGET, if convenient. */
3637 expand_builtin_strspn (tree arglist
, rtx target
, enum machine_mode mode
)
3639 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3643 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
3644 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
3646 /* If both arguments are constants, evaluate at compile-time. */
3649 const size_t r
= strspn (p1
, p2
);
3650 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
3653 /* If either argument is "", return 0. */
3654 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
3656 /* Evaluate and ignore both arguments in case either one has
3658 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3659 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3666 /* Expand expression EXP, which is a call to the strcspn builtin.
3667 Return 0 if we failed the caller should emit a normal call,
3668 otherwise try to get the result in TARGET, if convenient. */
3671 expand_builtin_strcspn (tree arglist
, rtx target
, enum machine_mode mode
)
3673 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3677 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
3678 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
3680 /* If both arguments are constants, evaluate at compile-time. */
3683 const size_t r
= strcspn (p1
, p2
);
3684 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
3687 /* If the first argument is "", return 0. */
3688 if (p1
&& *p1
== '\0')
3690 /* Evaluate and ignore argument s2 in case it has
3692 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3696 /* If the second argument is "", return __builtin_strlen(s1). */
3697 if (p2
&& *p2
== '\0')
3699 tree newarglist
= build_tree_list (NULL_TREE
, s1
),
3700 fn
= implicit_built_in_decls
[BUILT_IN_STRLEN
];
3702 /* If the replacement _DECL isn't initialized, don't do the
3707 return expand_expr (build_function_call_expr (fn
, newarglist
),
3708 target
, mode
, EXPAND_NORMAL
);
3714 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
3715 if that's convenient. */
3718 expand_builtin_saveregs (void)
3722 /* Don't do __builtin_saveregs more than once in a function.
3723 Save the result of the first call and reuse it. */
3724 if (saveregs_value
!= 0)
3725 return saveregs_value
;
3727 /* When this function is called, it means that registers must be
3728 saved on entry to this function. So we migrate the call to the
3729 first insn of this function. */
3733 /* Do whatever the machine needs done in this case. */
3734 val
= targetm
.calls
.expand_builtin_saveregs ();
3739 saveregs_value
= val
;
3741 /* Put the insns after the NOTE that starts the function. If this
3742 is inside a start_sequence, make the outer-level insn chain current, so
3743 the code is placed at the start of the function. */
3744 push_topmost_sequence ();
3745 emit_insn_after (seq
, get_insns ());
3746 pop_topmost_sequence ();
3751 /* __builtin_args_info (N) returns word N of the arg space info
3752 for the current function. The number and meanings of words
3753 is controlled by the definition of CUMULATIVE_ARGS. */
3756 expand_builtin_args_info (tree arglist
)
3758 int nwords
= sizeof (CUMULATIVE_ARGS
) / sizeof (int);
3759 int *word_ptr
= (int *) ¤t_function_args_info
;
3761 if (sizeof (CUMULATIVE_ARGS
) % sizeof (int) != 0)
3766 if (!host_integerp (TREE_VALUE (arglist
), 0))
3767 error ("argument of `__builtin_args_info' must be constant");
3770 HOST_WIDE_INT wordnum
= tree_low_cst (TREE_VALUE (arglist
), 0);
3772 if (wordnum
< 0 || wordnum
>= nwords
)
3773 error ("argument of `__builtin_args_info' out of range");
3775 return GEN_INT (word_ptr
[wordnum
]);
3779 error ("missing argument in `__builtin_args_info'");
3784 /* Expand ARGLIST, from a call to __builtin_next_arg. */
3787 expand_builtin_next_arg (tree arglist
)
3789 tree fntype
= TREE_TYPE (current_function_decl
);
3791 if (TYPE_ARG_TYPES (fntype
) == 0
3792 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype
)))
3795 error ("`va_start' used in function with fixed args");
3801 tree last_parm
= tree_last (DECL_ARGUMENTS (current_function_decl
));
3802 tree arg
= TREE_VALUE (arglist
);
3804 /* Strip off all nops for the sake of the comparison. This
3805 is not quite the same as STRIP_NOPS. It does more.
3806 We must also strip off INDIRECT_EXPR for C++ reference
3808 while (TREE_CODE (arg
) == NOP_EXPR
3809 || TREE_CODE (arg
) == CONVERT_EXPR
3810 || TREE_CODE (arg
) == NON_LVALUE_EXPR
3811 || TREE_CODE (arg
) == INDIRECT_REF
)
3812 arg
= TREE_OPERAND (arg
, 0);
3813 if (arg
!= last_parm
)
3814 warning ("second parameter of `va_start' not last named argument");
3817 /* Evidently an out of date version of <stdarg.h>; can't validate
3818 va_start's second argument, but can still work as intended. */
3819 warning ("`__builtin_next_arg' called without an argument");
3821 return expand_binop (Pmode
, add_optab
,
3822 current_function_internal_arg_pointer
,
3823 current_function_arg_offset_rtx
,
3824 NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
3827 /* Make it easier for the backends by protecting the valist argument
3828 from multiple evaluations. */
3831 stabilize_va_list (tree valist
, int needs_lvalue
)
3833 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
3835 if (TREE_SIDE_EFFECTS (valist
))
3836 valist
= save_expr (valist
);
3838 /* For this case, the backends will be expecting a pointer to
3839 TREE_TYPE (va_list_type_node), but it's possible we've
3840 actually been given an array (an actual va_list_type_node).
3842 if (TREE_CODE (TREE_TYPE (valist
)) == ARRAY_TYPE
)
3844 tree p1
= build_pointer_type (TREE_TYPE (va_list_type_node
));
3845 tree p2
= build_pointer_type (va_list_type_node
);
3847 valist
= build1 (ADDR_EXPR
, p2
, valist
);
3848 valist
= fold (build1 (NOP_EXPR
, p1
, valist
));
3857 if (! TREE_SIDE_EFFECTS (valist
))
3860 pt
= build_pointer_type (va_list_type_node
);
3861 valist
= fold (build1 (ADDR_EXPR
, pt
, valist
));
3862 TREE_SIDE_EFFECTS (valist
) = 1;
3865 if (TREE_SIDE_EFFECTS (valist
))
3866 valist
= save_expr (valist
);
3867 valist
= fold (build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (valist
)),
3874 /* The "standard" implementation of va_start: just assign `nextarg' to
3878 std_expand_builtin_va_start (tree valist
, rtx nextarg
)
3882 t
= build (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
3883 make_tree (ptr_type_node
, nextarg
));
3884 TREE_SIDE_EFFECTS (t
) = 1;
3886 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3889 /* Expand ARGLIST, from a call to __builtin_va_start. */
3892 expand_builtin_va_start (tree arglist
)
3897 chain
= TREE_CHAIN (arglist
);
3899 if (TREE_CHAIN (chain
))
3900 error ("too many arguments to function `va_start'");
3902 nextarg
= expand_builtin_next_arg (chain
);
3903 valist
= stabilize_va_list (TREE_VALUE (arglist
), 1);
3905 #ifdef EXPAND_BUILTIN_VA_START
3906 EXPAND_BUILTIN_VA_START (valist
, nextarg
);
3908 std_expand_builtin_va_start (valist
, nextarg
);
3914 /* The "standard" implementation of va_arg: read the value from the
3915 current (padded) address and increment by the (padded) size. */
3918 std_expand_builtin_va_arg (tree valist
, tree type
)
3920 tree addr_tree
, t
, type_size
= NULL
;
3921 tree align
, alignm1
;
3925 /* Compute the rounded size of the type. */
3926 align
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
);
3927 alignm1
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
- 1);
3928 if (type
== error_mark_node
3929 || (type_size
= TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type
))) == NULL
3930 || TREE_OVERFLOW (type_size
))
3931 rounded_size
= size_zero_node
;
3933 rounded_size
= fold (build (MULT_EXPR
, sizetype
,
3934 fold (build (TRUNC_DIV_EXPR
, sizetype
,
3935 fold (build (PLUS_EXPR
, sizetype
,
3936 type_size
, alignm1
)),
3942 if (PAD_VARARGS_DOWN
&& ! integer_zerop (rounded_size
))
3944 /* Small args are padded downward. */
3945 addr_tree
= fold (build (PLUS_EXPR
, TREE_TYPE (addr_tree
), addr_tree
,
3946 fold (build (COND_EXPR
, sizetype
,
3947 fold (build (GT_EXPR
, sizetype
,
3951 fold (build (MINUS_EXPR
, sizetype
,
3956 addr
= expand_expr (addr_tree
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
3957 addr
= copy_to_reg (addr
);
3959 /* Compute new value for AP. */
3960 if (! integer_zerop (rounded_size
))
3962 t
= build (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
3963 build (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
3965 TREE_SIDE_EFFECTS (t
) = 1;
3966 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3972 /* Expand __builtin_va_arg, which is not really a builtin function, but
3973 a very special sort of operator. */
3976 expand_builtin_va_arg (tree valist
, tree type
)
3979 tree promoted_type
, want_va_type
, have_va_type
;
3981 /* Verify that valist is of the proper type. */
3983 want_va_type
= va_list_type_node
;
3984 have_va_type
= TREE_TYPE (valist
);
3985 if (TREE_CODE (want_va_type
) == ARRAY_TYPE
)
3987 /* If va_list is an array type, the argument may have decayed
3988 to a pointer type, e.g. by being passed to another function.
3989 In that case, unwrap both types so that we can compare the
3990 underlying records. */
3991 if (TREE_CODE (have_va_type
) == ARRAY_TYPE
3992 || TREE_CODE (have_va_type
) == POINTER_TYPE
)
3994 want_va_type
= TREE_TYPE (want_va_type
);
3995 have_va_type
= TREE_TYPE (have_va_type
);
3998 if (TYPE_MAIN_VARIANT (want_va_type
) != TYPE_MAIN_VARIANT (have_va_type
))
4000 error ("first argument to `va_arg' not of type `va_list'");
4004 /* Generate a diagnostic for requesting data of a type that cannot
4005 be passed through `...' due to type promotion at the call site. */
4006 else if ((promoted_type
= (*lang_hooks
.types
.type_promotes_to
) (type
))
4009 const char *name
= "<anonymous type>", *pname
= 0;
4010 static bool gave_help
;
4012 if (TYPE_NAME (type
))
4014 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
4015 name
= IDENTIFIER_POINTER (TYPE_NAME (type
));
4016 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
4017 && DECL_NAME (TYPE_NAME (type
)))
4018 name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
4020 if (TYPE_NAME (promoted_type
))
4022 if (TREE_CODE (TYPE_NAME (promoted_type
)) == IDENTIFIER_NODE
)
4023 pname
= IDENTIFIER_POINTER (TYPE_NAME (promoted_type
));
4024 else if (TREE_CODE (TYPE_NAME (promoted_type
)) == TYPE_DECL
4025 && DECL_NAME (TYPE_NAME (promoted_type
)))
4026 pname
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (promoted_type
)));
4029 /* Unfortunately, this is merely undefined, rather than a constraint
4030 violation, so we cannot make this an error. If this call is never
4031 executed, the program is still strictly conforming. */
4032 warning ("`%s' is promoted to `%s' when passed through `...'",
4037 warning ("(so you should pass `%s' not `%s' to `va_arg')",
4041 /* We can, however, treat "undefined" any way we please.
4042 Call abort to encourage the user to fix the program. */
4043 expand_builtin_trap ();
4045 /* This is dead code, but go ahead and finish so that the
4046 mode of the result comes out right. */
4051 /* Make it easier for the backends by protecting the valist argument
4052 from multiple evaluations. */
4053 valist
= stabilize_va_list (valist
, 0);
4055 #ifdef EXPAND_BUILTIN_VA_ARG
4056 addr
= EXPAND_BUILTIN_VA_ARG (valist
, type
);
4058 addr
= std_expand_builtin_va_arg (valist
, type
);
4062 #ifdef POINTERS_EXTEND_UNSIGNED
4063 if (GET_MODE (addr
) != Pmode
)
4064 addr
= convert_memory_address (Pmode
, addr
);
4067 result
= gen_rtx_MEM (TYPE_MODE (type
), addr
);
4068 set_mem_alias_set (result
, get_varargs_alias_set ());
4073 /* Expand ARGLIST, from a call to __builtin_va_end. */
4076 expand_builtin_va_end (tree arglist
)
4078 tree valist
= TREE_VALUE (arglist
);
4080 #ifdef EXPAND_BUILTIN_VA_END
4081 valist
= stabilize_va_list (valist
, 0);
4082 EXPAND_BUILTIN_VA_END (arglist
);
4084 /* Evaluate for side effects, if needed. I hate macros that don't
4086 if (TREE_SIDE_EFFECTS (valist
))
4087 expand_expr (valist
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4093 /* Expand ARGLIST, from a call to __builtin_va_copy. We do this as a
4094 builtin rather than just as an assignment in stdarg.h because of the
4095 nastiness of array-type va_list types. */
4098 expand_builtin_va_copy (tree arglist
)
4102 dst
= TREE_VALUE (arglist
);
4103 src
= TREE_VALUE (TREE_CHAIN (arglist
));
4105 dst
= stabilize_va_list (dst
, 1);
4106 src
= stabilize_va_list (src
, 0);
4108 if (TREE_CODE (va_list_type_node
) != ARRAY_TYPE
)
4110 t
= build (MODIFY_EXPR
, va_list_type_node
, dst
, src
);
4111 TREE_SIDE_EFFECTS (t
) = 1;
4112 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4116 rtx dstb
, srcb
, size
;
4118 /* Evaluate to pointers. */
4119 dstb
= expand_expr (dst
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
4120 srcb
= expand_expr (src
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
4121 size
= expand_expr (TYPE_SIZE_UNIT (va_list_type_node
), NULL_RTX
,
4122 VOIDmode
, EXPAND_NORMAL
);
4124 #ifdef POINTERS_EXTEND_UNSIGNED
4125 if (GET_MODE (dstb
) != Pmode
)
4126 dstb
= convert_memory_address (Pmode
, dstb
);
4128 if (GET_MODE (srcb
) != Pmode
)
4129 srcb
= convert_memory_address (Pmode
, srcb
);
4132 /* "Dereference" to BLKmode memories. */
4133 dstb
= gen_rtx_MEM (BLKmode
, dstb
);
4134 set_mem_alias_set (dstb
, get_alias_set (TREE_TYPE (TREE_TYPE (dst
))));
4135 set_mem_align (dstb
, TYPE_ALIGN (va_list_type_node
));
4136 srcb
= gen_rtx_MEM (BLKmode
, srcb
);
4137 set_mem_alias_set (srcb
, get_alias_set (TREE_TYPE (TREE_TYPE (src
))));
4138 set_mem_align (srcb
, TYPE_ALIGN (va_list_type_node
));
4141 emit_block_move (dstb
, srcb
, size
, BLOCK_OP_NORMAL
);
4147 /* Expand a call to one of the builtin functions __builtin_frame_address or
4148 __builtin_return_address. */
4151 expand_builtin_frame_address (tree fndecl
, tree arglist
)
4153 /* The argument must be a nonnegative integer constant.
4154 It counts the number of frames to scan up the stack.
4155 The value is the return address saved in that frame. */
4157 /* Warning about missing arg was already issued. */
4159 else if (! host_integerp (TREE_VALUE (arglist
), 1))
4161 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4162 error ("invalid arg to `__builtin_frame_address'");
4164 error ("invalid arg to `__builtin_return_address'");
4170 = expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl
),
4171 tree_low_cst (TREE_VALUE (arglist
), 1),
4172 hard_frame_pointer_rtx
);
4174 /* Some ports cannot access arbitrary stack frames. */
4177 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4178 warning ("unsupported arg to `__builtin_frame_address'");
4180 warning ("unsupported arg to `__builtin_return_address'");
4184 /* For __builtin_frame_address, return what we've got. */
4185 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4188 if (GET_CODE (tem
) != REG
4189 && ! CONSTANT_P (tem
))
4190 tem
= copy_to_mode_reg (Pmode
, tem
);
4195 /* Expand a call to the alloca builtin, with arguments ARGLIST. Return 0 if
4196 we failed and the caller should emit a normal call, otherwise try to get
4197 the result in TARGET, if convenient. */
4200 expand_builtin_alloca (tree arglist
, rtx target
)
4205 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
4208 /* Compute the argument. */
4209 op0
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
4211 /* Allocate the desired space. */
4212 result
= allocate_dynamic_stack_space (op0
, target
, BITS_PER_UNIT
);
4214 #ifdef POINTERS_EXTEND_UNSIGNED
4215 if (GET_MODE (result
) != ptr_mode
)
4216 result
= convert_memory_address (ptr_mode
, result
);
4222 /* Expand a call to a unary builtin. The arguments are in ARGLIST.
4223 Return 0 if a normal call should be emitted rather than expanding the
4224 function in-line. If convenient, the result should be placed in TARGET.
4225 SUBTARGET may be used as the target for computing one of EXP's operands. */
4228 expand_builtin_unop (enum machine_mode target_mode
, tree arglist
, rtx target
,
4229 rtx subtarget
, optab op_optab
)
4232 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
4235 /* Compute the argument. */
4236 op0
= expand_expr (TREE_VALUE (arglist
), subtarget
, VOIDmode
, 0);
4237 /* Compute op, into TARGET if possible.
4238 Set TARGET to wherever the result comes back. */
4239 target
= expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist
))),
4240 op_optab
, op0
, target
, 1);
4244 return convert_to_mode (target_mode
, target
, 0);
4247 /* If the string passed to fputs is a constant and is one character
4248 long, we attempt to transform this call into __builtin_fputc(). */
4251 expand_builtin_fputs (tree arglist
, rtx target
, bool unlocked
)
4254 tree fn_fputc
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTC_UNLOCKED
]
4255 : implicit_built_in_decls
[BUILT_IN_FPUTC
];
4256 tree fn_fwrite
= unlocked
? implicit_built_in_decls
[BUILT_IN_FWRITE_UNLOCKED
]
4257 : implicit_built_in_decls
[BUILT_IN_FWRITE
];
4259 /* If the return value is used, or the replacement _DECL isn't
4260 initialized, don't do the transformation. */
4261 if (target
!= const0_rtx
|| !fn_fputc
|| !fn_fwrite
)
4264 /* Verify the arguments in the original call. */
4265 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
4268 /* Get the length of the string passed to fputs. If the length
4269 can't be determined, punt. */
4270 if (!(len
= c_strlen (TREE_VALUE (arglist
), 1))
4271 || TREE_CODE (len
) != INTEGER_CST
)
4274 switch (compare_tree_int (len
, 1))
4276 case -1: /* length is 0, delete the call entirely . */
4278 /* Evaluate and ignore the argument in case it has
4280 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
4281 VOIDmode
, EXPAND_NORMAL
);
4284 case 0: /* length is 1, call fputc. */
4286 const char *p
= c_getstr (TREE_VALUE (arglist
));
4290 /* New argument list transforming fputs(string, stream) to
4291 fputc(string[0], stream). */
4293 build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
4295 tree_cons (NULL_TREE
, build_int_2 (p
[0], 0), arglist
);
4301 case 1: /* length is greater than 1, call fwrite. */
4305 /* If optimizing for size keep fputs. */
4308 string_arg
= TREE_VALUE (arglist
);
4309 /* New argument list transforming fputs(string, stream) to
4310 fwrite(string, 1, len, stream). */
4311 arglist
= build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
4312 arglist
= tree_cons (NULL_TREE
, len
, arglist
);
4313 arglist
= tree_cons (NULL_TREE
, size_one_node
, arglist
);
4314 arglist
= tree_cons (NULL_TREE
, string_arg
, arglist
);
4322 return expand_expr (build_function_call_expr (fn
, arglist
),
4323 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4326 /* Expand a call to __builtin_expect. We return our argument and emit a
4327 NOTE_INSN_EXPECTED_VALUE note. This is the expansion of __builtin_expect in
4328 a non-jump context. */
4331 expand_builtin_expect (tree arglist
, rtx target
)
4336 if (arglist
== NULL_TREE
4337 || TREE_CHAIN (arglist
) == NULL_TREE
)
4339 exp
= TREE_VALUE (arglist
);
4340 c
= TREE_VALUE (TREE_CHAIN (arglist
));
4342 if (TREE_CODE (c
) != INTEGER_CST
)
4344 error ("second arg to `__builtin_expect' must be a constant");
4345 c
= integer_zero_node
;
4348 target
= expand_expr (exp
, target
, VOIDmode
, EXPAND_NORMAL
);
4350 /* Don't bother with expected value notes for integral constants. */
4351 if (flag_guess_branch_prob
&& GET_CODE (target
) != CONST_INT
)
4353 /* We do need to force this into a register so that we can be
4354 moderately sure to be able to correctly interpret the branch
4356 target
= force_reg (GET_MODE (target
), target
);
4358 rtx_c
= expand_expr (c
, NULL_RTX
, GET_MODE (target
), EXPAND_NORMAL
);
4360 note
= emit_note (NOTE_INSN_EXPECTED_VALUE
);
4361 NOTE_EXPECTED_VALUE (note
) = gen_rtx_EQ (VOIDmode
, target
, rtx_c
);
4367 /* Like expand_builtin_expect, except do this in a jump context. This is
4368 called from do_jump if the conditional is a __builtin_expect. Return either
4369 a list of insns to emit the jump or NULL if we cannot optimize
4370 __builtin_expect. We need to optimize this at jump time so that machines
4371 like the PowerPC don't turn the test into a SCC operation, and then jump
4372 based on the test being 0/1. */
4375 expand_builtin_expect_jump (tree exp
, rtx if_false_label
, rtx if_true_label
)
4377 tree arglist
= TREE_OPERAND (exp
, 1);
4378 tree arg0
= TREE_VALUE (arglist
);
4379 tree arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
4382 /* Only handle __builtin_expect (test, 0) and
4383 __builtin_expect (test, 1). */
4384 if (TREE_CODE (TREE_TYPE (arg1
)) == INTEGER_TYPE
4385 && (integer_zerop (arg1
) || integer_onep (arg1
)))
4388 int save_pending_stack_adjust
= pending_stack_adjust
;
4391 /* If we fail to locate an appropriate conditional jump, we'll
4392 fall back to normal evaluation. Ensure that the expression
4393 can be re-evaluated. */
4394 switch (unsafe_for_reeval (arg0
))
4399 case 1: /* Mildly unsafe. */
4400 arg0
= unsave_expr (arg0
);
4403 case 2: /* Wildly unsafe. */
4407 /* Expand the jump insns. */
4409 do_jump (arg0
, if_false_label
, if_true_label
);
4413 /* Now that the __builtin_expect has been validated, go through and add
4414 the expect's to each of the conditional jumps. If we run into an
4415 error, just give up and generate the 'safe' code of doing a SCC
4416 operation and then doing a branch on that. */
4418 while (insn
!= NULL_RTX
)
4420 rtx next
= NEXT_INSN (insn
);
4422 if (GET_CODE (insn
) == JUMP_INSN
&& any_condjump_p (insn
))
4424 rtx ifelse
= SET_SRC (pc_set (insn
));
4428 if (GET_CODE (XEXP (ifelse
, 1)) == LABEL_REF
)
4431 label
= XEXP (XEXP (ifelse
, 1), 0);
4433 /* An inverted jump reverses the probabilities. */
4434 else if (GET_CODE (XEXP (ifelse
, 2)) == LABEL_REF
)
4437 label
= XEXP (XEXP (ifelse
, 2), 0);
4439 /* We shouldn't have to worry about conditional returns during
4440 the expansion stage, but handle it gracefully anyway. */
4441 else if (GET_CODE (XEXP (ifelse
, 1)) == RETURN
)
4446 /* An inverted return reverses the probabilities. */
4447 else if (GET_CODE (XEXP (ifelse
, 2)) == RETURN
)
4455 /* If the test is expected to fail, reverse the
4457 if (integer_zerop (arg1
))
4460 /* If we are jumping to the false label, reverse the
4462 if (label
== NULL_RTX
)
4463 ; /* conditional return */
4464 else if (label
== if_false_label
)
4466 else if (label
!= if_true_label
)
4470 predict_insn_def (insn
, PRED_BUILTIN_EXPECT
, taken
);
4477 /* If no jumps were modified, fail and do __builtin_expect the normal
4482 pending_stack_adjust
= save_pending_stack_adjust
;
4490 expand_builtin_trap (void)
4494 emit_insn (gen_trap ());
4497 emit_library_call (abort_libfunc
, LCT_NORETURN
, VOIDmode
, 0);
4501 /* Expand a call to fabs, fabsf or fabsl with arguments ARGLIST.
4502 Return 0 if a normal call should be emitted rather than expanding
4503 the function inline. If convenient, the result should be placed
4504 in TARGET. SUBTARGET may be used as the target for computing
4508 expand_builtin_fabs (tree arglist
, rtx target
, rtx subtarget
)
4510 enum machine_mode mode
;
4514 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
4517 arg
= TREE_VALUE (arglist
);
4518 mode
= TYPE_MODE (TREE_TYPE (arg
));
4519 op0
= expand_expr (arg
, subtarget
, VOIDmode
, 0);
4520 return expand_abs (mode
, op0
, target
, 0, safe_from_p (target
, arg
, 1));
4523 /* Expand a call to cabs, cabsf or cabsl with arguments ARGLIST.
4524 Return 0 if a normal call should be emitted rather than expanding
4525 the function inline. If convenient, the result should be placed
4529 expand_builtin_cabs (tree arglist
, rtx target
)
4531 enum machine_mode mode
;
4535 if (arglist
== 0 || TREE_CHAIN (arglist
))
4537 arg
= TREE_VALUE (arglist
);
4538 if (TREE_CODE (TREE_TYPE (arg
)) != COMPLEX_TYPE
4539 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != REAL_TYPE
)
4542 mode
= TYPE_MODE (TREE_TYPE (arg
));
4543 op0
= expand_expr (arg
, NULL_RTX
, VOIDmode
, 0);
4544 return expand_complex_abs (mode
, op0
, target
, 0);
4547 /* Create a new constant string literal and return a char* pointer to it.
4548 The STRING_CST value is the LEN characters at STR. */
4550 build_string_literal (int len
, const char *str
)
4552 tree t
, elem
, index
, type
;
4554 t
= build_string (len
, str
);
4555 elem
= build_type_variant (char_type_node
, 1, 0);
4556 index
= build_index_type (build_int_2 (len
- 1, 0));
4557 type
= build_array_type (elem
, index
);
4558 TREE_TYPE (t
) = type
;
4559 TREE_CONSTANT (t
) = 1;
4560 TREE_READONLY (t
) = 1;
4561 TREE_STATIC (t
) = 1;
4563 type
= build_pointer_type (type
);
4564 t
= build1 (ADDR_EXPR
, type
, t
);
4566 type
= build_pointer_type (elem
);
4567 t
= build1 (NOP_EXPR
, type
, t
);
4571 /* Expand a call to printf or printf_unlocked with argument list ARGLIST.
4572 Return 0 if a normal call should be emitted rather than transforming
4573 the function inline. If convenient, the result should be placed in
4574 TARGET with mode MODE. UNLOCKED indicates this is a printf_unlocked
4577 expand_builtin_printf (tree arglist
, rtx target
, enum machine_mode mode
,
4580 tree fn_putchar
= unlocked
4581 ? implicit_built_in_decls
[BUILT_IN_PUTCHAR_UNLOCKED
]
4582 : implicit_built_in_decls
[BUILT_IN_PUTCHAR
];
4583 tree fn_puts
= unlocked
? implicit_built_in_decls
[BUILT_IN_PUTS_UNLOCKED
]
4584 : implicit_built_in_decls
[BUILT_IN_PUTS
];
4585 const char *fmt_str
;
4588 /* If the return value is used, don't do the transformation. */
4589 if (target
!= const0_rtx
)
4592 /* Verify the required arguments in the original call. */
4595 fmt
= TREE_VALUE (arglist
);
4596 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
4598 arglist
= TREE_CHAIN (arglist
);
4600 /* Check whether the format is a literal string constant. */
4601 fmt_str
= c_getstr (fmt
);
4602 if (fmt_str
== NULL
)
4605 /* If the format specifier was "%s\n", call __builtin_puts(arg). */
4606 if (strcmp (fmt_str
, "%s\n") == 0)
4609 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != POINTER_TYPE
4610 || TREE_CHAIN (arglist
))
4614 /* If the format specifier was "%c", call __builtin_putchar(arg). */
4615 else if (strcmp (fmt_str
, "%c") == 0)
4618 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != INTEGER_TYPE
4619 || TREE_CHAIN (arglist
))
4625 /* We can't handle anything else with % args or %% ... yet. */
4626 if (strchr (fmt_str
, '%'))
4632 /* If the format specifier was "", printf does nothing. */
4633 if (fmt_str
[0] == '\0')
4635 /* If the format specifier has length of 1, call putchar. */
4636 if (fmt_str
[1] == '\0')
4638 /* Given printf("c"), (where c is any one character,)
4639 convert "c"[0] to an int and pass that to the replacement
4641 arg
= build_int_2 (fmt_str
[0], 0);
4642 arglist
= build_tree_list (NULL_TREE
, arg
);
4647 /* If the format specifier was "string\n", call puts("string"). */
4648 size_t len
= strlen (fmt_str
);
4649 if (fmt_str
[len
- 1] == '\n')
4651 /* Create a NUL-terminated string that's one char shorter
4652 than the original, stripping off the trailing '\n'. */
4653 char *newstr
= (char *) alloca (len
);
4654 memcpy (newstr
, fmt_str
, len
- 1);
4655 newstr
[len
- 1] = 0;
4657 arg
= build_string_literal (len
, newstr
);
4658 arglist
= build_tree_list (NULL_TREE
, arg
);
4662 /* We'd like to arrange to call fputs(string,stdout) here,
4663 but we need stdout and don't have a way to get it yet. */
4670 return expand_expr (build_function_call_expr (fn
, arglist
),
4671 target
, mode
, EXPAND_NORMAL
);
4674 /* Expand a call to fprintf or fprintf_unlocked with argument list ARGLIST.
4675 Return 0 if a normal call should be emitted rather than transforming
4676 the function inline. If convenient, the result should be placed in
4677 TARGET with mode MODE. UNLOCKED indicates this is a fprintf_unlocked
4680 expand_builtin_fprintf (tree arglist
, rtx target
, enum machine_mode mode
,
4683 tree fn_fputc
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTC_UNLOCKED
]
4684 : implicit_built_in_decls
[BUILT_IN_FPUTC
];
4685 tree fn_fputs
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTS_UNLOCKED
]
4686 : implicit_built_in_decls
[BUILT_IN_FPUTS
];
4687 const char *fmt_str
;
4688 tree fn
, fmt
, fp
, arg
;
4690 /* If the return value is used, don't do the transformation. */
4691 if (target
!= const0_rtx
)
4694 /* Verify the required arguments in the original call. */
4697 fp
= TREE_VALUE (arglist
);
4698 if (TREE_CODE (TREE_TYPE (fp
)) != POINTER_TYPE
)
4700 arglist
= TREE_CHAIN (arglist
);
4703 fmt
= TREE_VALUE (arglist
);
4704 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
4706 arglist
= TREE_CHAIN (arglist
);
4708 /* Check whether the format is a literal string constant. */
4709 fmt_str
= c_getstr (fmt
);
4710 if (fmt_str
== NULL
)
4713 /* If the format specifier was "%s", call __builtin_fputs(arg,fp). */
4714 if (strcmp (fmt_str
, "%s") == 0)
4717 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != POINTER_TYPE
4718 || TREE_CHAIN (arglist
))
4720 arg
= TREE_VALUE (arglist
);
4721 arglist
= build_tree_list (NULL_TREE
, fp
);
4722 arglist
= tree_cons (NULL_TREE
, arg
, arglist
);
4725 /* If the format specifier was "%c", call __builtin_fputc(arg,fp). */
4726 else if (strcmp (fmt_str
, "%c") == 0)
4729 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != INTEGER_TYPE
4730 || TREE_CHAIN (arglist
))
4732 arg
= TREE_VALUE (arglist
);
4733 arglist
= build_tree_list (NULL_TREE
, fp
);
4734 arglist
= tree_cons (NULL_TREE
, arg
, arglist
);
4739 /* We can't handle anything else with % args or %% ... yet. */
4740 if (strchr (fmt_str
, '%'))
4746 /* If the format specifier was "", fprintf does nothing. */
4747 if (fmt_str
[0] == '\0')
4749 /* Evaluate and ignore FILE* argument for side-effects. */
4750 expand_expr (fp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4754 /* When "string" doesn't contain %, replace all cases of
4755 fprintf(stream,string) with fputs(string,stream). The fputs
4756 builtin will take care of special cases like length == 1. */
4757 arglist
= build_tree_list (NULL_TREE
, fp
);
4758 arglist
= tree_cons (NULL_TREE
, fmt
, arglist
);
4764 return expand_expr (build_function_call_expr (fn
, arglist
),
4765 target
, mode
, EXPAND_NORMAL
);
4768 /* Expand a call to sprintf with argument list ARGLIST. Return 0 if
4769 a normal call should be emitted rather than expanding the function
4770 inline. If convenient, the result should be placed in TARGET with
4774 expand_builtin_sprintf (tree arglist
, rtx target
, enum machine_mode mode
)
4776 tree orig_arglist
, dest
, fmt
;
4777 const char *fmt_str
;
4779 orig_arglist
= arglist
;
4781 /* Verify the required arguments in the original call. */
4784 dest
= TREE_VALUE (arglist
);
4785 if (TREE_CODE (TREE_TYPE (dest
)) != POINTER_TYPE
)
4787 arglist
= TREE_CHAIN (arglist
);
4790 fmt
= TREE_VALUE (arglist
);
4791 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
4793 arglist
= TREE_CHAIN (arglist
);
4795 /* Check whether the format is a literal string constant. */
4796 fmt_str
= c_getstr (fmt
);
4797 if (fmt_str
== NULL
)
4800 /* If the format doesn't contain % args or %%, use strcpy. */
4801 if (strchr (fmt_str
, '%') == 0)
4803 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
4806 if (arglist
|| ! fn
)
4808 expand_expr (build_function_call_expr (fn
, orig_arglist
),
4809 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4810 if (target
== const0_rtx
)
4812 exp
= build_int_2 (strlen (fmt_str
), 0);
4813 exp
= fold (build1 (NOP_EXPR
, integer_type_node
, exp
));
4814 return expand_expr (exp
, target
, mode
, EXPAND_NORMAL
);
4816 /* If the format is "%s", use strcpy if the result isn't used. */
4817 else if (strcmp (fmt_str
, "%s") == 0)
4820 fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
4825 if (! arglist
|| TREE_CHAIN (arglist
))
4827 arg
= TREE_VALUE (arglist
);
4828 if (TREE_CODE (TREE_TYPE (arg
)) != POINTER_TYPE
)
4831 if (target
!= const0_rtx
)
4833 len
= c_strlen (arg
, 1);
4834 if (! len
|| TREE_CODE (len
) != INTEGER_CST
)
4840 arglist
= build_tree_list (NULL_TREE
, arg
);
4841 arglist
= tree_cons (NULL_TREE
, dest
, arglist
);
4842 expand_expr (build_function_call_expr (fn
, arglist
),
4843 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4845 if (target
== const0_rtx
)
4847 return expand_expr (len
, target
, mode
, EXPAND_NORMAL
);
4853 /* Expand an expression EXP that calls a built-in function,
4854 with result going to TARGET if that's convenient
4855 (and in mode MODE if that's convenient).
4856 SUBTARGET may be used as the target for computing one of EXP's operands.
4857 IGNORE is nonzero if the value is to be ignored. */
4860 expand_builtin (tree exp
, rtx target
, rtx subtarget
, enum machine_mode mode
,
4863 tree fndecl
= get_callee_fndecl (exp
);
4864 tree arglist
= TREE_OPERAND (exp
, 1);
4865 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
4866 enum machine_mode target_mode
= TYPE_MODE (TREE_TYPE (exp
));
4868 /* Perform postincrements before expanding builtin functions. */
4871 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
4872 return (*targetm
.expand_builtin
) (exp
, target
, subtarget
, mode
, ignore
);
4874 /* When not optimizing, generate calls to library functions for a certain
4877 && !CALLED_AS_BUILT_IN (fndecl
)
4878 && DECL_ASSEMBLER_NAME_SET_P (fndecl
)
4879 && fcode
!= BUILT_IN_ALLOCA
)
4880 return expand_call (exp
, target
, ignore
);
4882 /* The built-in function expanders test for target == const0_rtx
4883 to determine whether the function's result will be ignored. */
4885 target
= const0_rtx
;
4887 /* If the result of a pure or const built-in function is ignored, and
4888 none of its arguments are volatile, we can avoid expanding the
4889 built-in call and just evaluate the arguments for side-effects. */
4890 if (target
== const0_rtx
4891 && (DECL_IS_PURE (fndecl
) || TREE_READONLY (fndecl
)))
4893 bool volatilep
= false;
4896 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
4897 if (TREE_THIS_VOLATILE (TREE_VALUE (arg
)))
4905 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
4906 expand_expr (TREE_VALUE (arg
), const0_rtx
,
4907 VOIDmode
, EXPAND_NORMAL
);
4916 case BUILT_IN_LLABS
:
4917 case BUILT_IN_IMAXABS
:
4918 /* build_function_call changes these into ABS_EXPR. */
4922 case BUILT_IN_FABSF
:
4923 case BUILT_IN_FABSL
:
4924 target
= expand_builtin_fabs (arglist
, target
, subtarget
);
4930 case BUILT_IN_CABSF
:
4931 case BUILT_IN_CABSL
:
4932 if (flag_unsafe_math_optimizations
)
4934 target
= expand_builtin_cabs (arglist
, target
);
4941 case BUILT_IN_CONJF
:
4942 case BUILT_IN_CONJL
:
4943 case BUILT_IN_CREAL
:
4944 case BUILT_IN_CREALF
:
4945 case BUILT_IN_CREALL
:
4946 case BUILT_IN_CIMAG
:
4947 case BUILT_IN_CIMAGF
:
4948 case BUILT_IN_CIMAGL
:
4949 /* expand_tree_builtin changes these into CONJ_EXPR, REALPART_EXPR
4950 and IMAGPART_EXPR. */
4969 case BUILT_IN_ATANF
:
4970 case BUILT_IN_ATANL
:
4971 /* Treat these like sqrt only if unsafe math optimizations are allowed,
4972 because of possible accuracy problems. */
4973 if (! flag_unsafe_math_optimizations
)
4976 case BUILT_IN_SQRTF
:
4977 case BUILT_IN_SQRTL
:
4978 case BUILT_IN_FLOOR
:
4979 case BUILT_IN_FLOORF
:
4980 case BUILT_IN_FLOORL
:
4982 case BUILT_IN_CEILF
:
4983 case BUILT_IN_CEILL
:
4984 case BUILT_IN_TRUNC
:
4985 case BUILT_IN_TRUNCF
:
4986 case BUILT_IN_TRUNCL
:
4987 case BUILT_IN_ROUND
:
4988 case BUILT_IN_ROUNDF
:
4989 case BUILT_IN_ROUNDL
:
4990 case BUILT_IN_NEARBYINT
:
4991 case BUILT_IN_NEARBYINTF
:
4992 case BUILT_IN_NEARBYINTL
:
4993 target
= expand_builtin_mathfn (exp
, target
, subtarget
);
5001 if (! flag_unsafe_math_optimizations
)
5003 target
= expand_builtin_pow (exp
, target
, subtarget
);
5008 case BUILT_IN_ATAN2
:
5009 case BUILT_IN_ATAN2F
:
5010 case BUILT_IN_ATAN2L
:
5011 if (! flag_unsafe_math_optimizations
)
5013 target
= expand_builtin_mathfn_2 (exp
, target
, subtarget
);
5018 case BUILT_IN_APPLY_ARGS
:
5019 return expand_builtin_apply_args ();
5021 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
5022 FUNCTION with a copy of the parameters described by
5023 ARGUMENTS, and ARGSIZE. It returns a block of memory
5024 allocated on the stack into which is stored all the registers
5025 that might possibly be used for returning the result of a
5026 function. ARGUMENTS is the value returned by
5027 __builtin_apply_args. ARGSIZE is the number of bytes of
5028 arguments that must be copied. ??? How should this value be
5029 computed? We'll also need a safe worst case value for varargs
5031 case BUILT_IN_APPLY
:
5032 if (!validate_arglist (arglist
, POINTER_TYPE
,
5033 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
)
5034 && !validate_arglist (arglist
, REFERENCE_TYPE
,
5035 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
5043 for (t
= arglist
, i
= 0; t
; t
= TREE_CHAIN (t
), i
++)
5044 ops
[i
] = expand_expr (TREE_VALUE (t
), NULL_RTX
, VOIDmode
, 0);
5046 return expand_builtin_apply (ops
[0], ops
[1], ops
[2]);
5049 /* __builtin_return (RESULT) causes the function to return the
5050 value described by RESULT. RESULT is address of the block of
5051 memory returned by __builtin_apply. */
5052 case BUILT_IN_RETURN
:
5053 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
5054 expand_builtin_return (expand_expr (TREE_VALUE (arglist
),
5055 NULL_RTX
, VOIDmode
, 0));
5058 case BUILT_IN_SAVEREGS
:
5059 return expand_builtin_saveregs ();
5061 case BUILT_IN_ARGS_INFO
:
5062 return expand_builtin_args_info (arglist
);
5064 /* Return the address of the first anonymous stack arg. */
5065 case BUILT_IN_NEXT_ARG
:
5066 return expand_builtin_next_arg (arglist
);
5068 case BUILT_IN_CLASSIFY_TYPE
:
5069 return expand_builtin_classify_type (arglist
);
5071 case BUILT_IN_CONSTANT_P
:
5072 return expand_builtin_constant_p (arglist
, target_mode
);
5074 case BUILT_IN_FRAME_ADDRESS
:
5075 case BUILT_IN_RETURN_ADDRESS
:
5076 return expand_builtin_frame_address (fndecl
, arglist
);
5078 /* Returns the address of the area where the structure is returned.
5080 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS
:
5082 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl
)))
5083 || GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl
))) != MEM
)
5086 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl
)), 0);
5088 case BUILT_IN_ALLOCA
:
5089 target
= expand_builtin_alloca (arglist
, target
);
5096 case BUILT_IN_FFSLL
:
5097 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5098 subtarget
, ffs_optab
);
5105 case BUILT_IN_CLZLL
:
5106 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5107 subtarget
, clz_optab
);
5114 case BUILT_IN_CTZLL
:
5115 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5116 subtarget
, ctz_optab
);
5121 case BUILT_IN_POPCOUNT
:
5122 case BUILT_IN_POPCOUNTL
:
5123 case BUILT_IN_POPCOUNTLL
:
5124 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5125 subtarget
, popcount_optab
);
5130 case BUILT_IN_PARITY
:
5131 case BUILT_IN_PARITYL
:
5132 case BUILT_IN_PARITYLL
:
5133 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5134 subtarget
, parity_optab
);
5139 case BUILT_IN_STRLEN
:
5140 target
= expand_builtin_strlen (arglist
, target
, target_mode
);
5145 case BUILT_IN_STRCPY
:
5146 target
= expand_builtin_strcpy (arglist
, target
, mode
);
5151 case BUILT_IN_STRNCPY
:
5152 target
= expand_builtin_strncpy (arglist
, target
, mode
);
5157 case BUILT_IN_STPCPY
:
5158 target
= expand_builtin_stpcpy (arglist
, target
, mode
);
5163 case BUILT_IN_STRCAT
:
5164 target
= expand_builtin_strcat (arglist
, target
, mode
);
5169 case BUILT_IN_STRNCAT
:
5170 target
= expand_builtin_strncat (arglist
, target
, mode
);
5175 case BUILT_IN_STRSPN
:
5176 target
= expand_builtin_strspn (arglist
, target
, mode
);
5181 case BUILT_IN_STRCSPN
:
5182 target
= expand_builtin_strcspn (arglist
, target
, mode
);
5187 case BUILT_IN_STRSTR
:
5188 target
= expand_builtin_strstr (arglist
, target
, mode
);
5193 case BUILT_IN_STRPBRK
:
5194 target
= expand_builtin_strpbrk (arglist
, target
, mode
);
5199 case BUILT_IN_INDEX
:
5200 case BUILT_IN_STRCHR
:
5201 target
= expand_builtin_strchr (arglist
, target
, mode
);
5206 case BUILT_IN_RINDEX
:
5207 case BUILT_IN_STRRCHR
:
5208 target
= expand_builtin_strrchr (arglist
, target
, mode
);
5213 case BUILT_IN_MEMCPY
:
5214 target
= expand_builtin_memcpy (arglist
, target
, mode
);
5219 case BUILT_IN_MEMPCPY
:
5220 target
= expand_builtin_mempcpy (arglist
, target
, mode
, /*endp=*/ 1);
5225 case BUILT_IN_MEMMOVE
:
5226 target
= expand_builtin_memmove (arglist
, target
, mode
);
5231 case BUILT_IN_BCOPY
:
5232 target
= expand_builtin_bcopy (arglist
);
5237 case BUILT_IN_MEMSET
:
5238 target
= expand_builtin_memset (arglist
, target
, mode
);
5243 case BUILT_IN_BZERO
:
5244 target
= expand_builtin_bzero (arglist
);
5249 case BUILT_IN_STRCMP
:
5250 target
= expand_builtin_strcmp (exp
, target
, mode
);
5255 case BUILT_IN_STRNCMP
:
5256 target
= expand_builtin_strncmp (exp
, target
, mode
);
5262 case BUILT_IN_MEMCMP
:
5263 target
= expand_builtin_memcmp (exp
, arglist
, target
, mode
);
5268 case BUILT_IN_SETJMP
:
5269 target
= expand_builtin_setjmp (arglist
, target
);
5274 /* __builtin_longjmp is passed a pointer to an array of five words.
5275 It's similar to the C library longjmp function but works with
5276 __builtin_setjmp above. */
5277 case BUILT_IN_LONGJMP
:
5278 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
5282 rtx buf_addr
= expand_expr (TREE_VALUE (arglist
), subtarget
,
5284 rtx value
= expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)),
5285 NULL_RTX
, VOIDmode
, 0);
5287 if (value
!= const1_rtx
)
5289 error ("__builtin_longjmp second argument must be 1");
5293 expand_builtin_longjmp (buf_addr
, value
);
5298 expand_builtin_trap ();
5301 case BUILT_IN_PRINTF
:
5302 target
= expand_builtin_printf (arglist
, target
, mode
, false);
5307 case BUILT_IN_PRINTF_UNLOCKED
:
5308 target
= expand_builtin_printf (arglist
, target
, mode
, true);
5313 case BUILT_IN_FPUTS
:
5314 target
= expand_builtin_fputs (arglist
, target
, false);
5319 case BUILT_IN_FPUTS_UNLOCKED
:
5320 target
= expand_builtin_fputs (arglist
, target
, true);
5325 case BUILT_IN_FPRINTF
:
5326 target
= expand_builtin_fprintf (arglist
, target
, mode
, false);
5331 case BUILT_IN_FPRINTF_UNLOCKED
:
5332 target
= expand_builtin_fprintf (arglist
, target
, mode
, true);
5337 case BUILT_IN_SPRINTF
:
5338 target
= expand_builtin_sprintf (arglist
, target
, mode
);
5343 /* Various hooks for the DWARF 2 __throw routine. */
5344 case BUILT_IN_UNWIND_INIT
:
5345 expand_builtin_unwind_init ();
5347 case BUILT_IN_DWARF_CFA
:
5348 return virtual_cfa_rtx
;
5349 #ifdef DWARF2_UNWIND_INFO
5350 case BUILT_IN_DWARF_SP_COLUMN
:
5351 return expand_builtin_dwarf_sp_column ();
5352 case BUILT_IN_INIT_DWARF_REG_SIZES
:
5353 expand_builtin_init_dwarf_reg_sizes (TREE_VALUE (arglist
));
5356 case BUILT_IN_FROB_RETURN_ADDR
:
5357 return expand_builtin_frob_return_addr (TREE_VALUE (arglist
));
5358 case BUILT_IN_EXTRACT_RETURN_ADDR
:
5359 return expand_builtin_extract_return_addr (TREE_VALUE (arglist
));
5360 case BUILT_IN_EH_RETURN
:
5361 expand_builtin_eh_return (TREE_VALUE (arglist
),
5362 TREE_VALUE (TREE_CHAIN (arglist
)));
5364 #ifdef EH_RETURN_DATA_REGNO
5365 case BUILT_IN_EH_RETURN_DATA_REGNO
:
5366 return expand_builtin_eh_return_data_regno (arglist
);
5368 case BUILT_IN_VA_START
:
5369 case BUILT_IN_STDARG_START
:
5370 return expand_builtin_va_start (arglist
);
5371 case BUILT_IN_VA_END
:
5372 return expand_builtin_va_end (arglist
);
5373 case BUILT_IN_VA_COPY
:
5374 return expand_builtin_va_copy (arglist
);
5375 case BUILT_IN_EXPECT
:
5376 return expand_builtin_expect (arglist
, target
);
5377 case BUILT_IN_PREFETCH
:
5378 expand_builtin_prefetch (arglist
);
5382 default: /* just do library call, if unknown builtin */
5383 if (!DECL_ASSEMBLER_NAME_SET_P (fndecl
))
5384 error ("built-in function `%s' not currently supported",
5385 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
5388 /* The switch statement above can drop through to cause the function
5389 to be called normally. */
5390 return expand_call (exp
, target
, ignore
);
5393 /* Determine whether a tree node represents a call to a built-in
5394 math function. If the tree T is a call to a built-in function
5395 taking a single real argument, then the return value is the
5396 DECL_FUNCTION_CODE of the call, e.g. BUILT_IN_SQRT. Otherwise
5397 the return value is END_BUILTINS. */
5399 enum built_in_function
5400 builtin_mathfn_code (tree t
)
5402 tree fndecl
, arglist
;
5404 if (TREE_CODE (t
) != CALL_EXPR
5405 || TREE_CODE (TREE_OPERAND (t
, 0)) != ADDR_EXPR
)
5406 return END_BUILTINS
;
5408 fndecl
= get_callee_fndecl (t
);
5409 if (fndecl
== NULL_TREE
5410 || ! DECL_BUILT_IN (fndecl
)
5411 || DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
5412 return END_BUILTINS
;
5414 arglist
= TREE_OPERAND (t
, 1);
5416 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != REAL_TYPE
)
5417 return END_BUILTINS
;
5419 arglist
= TREE_CHAIN (arglist
);
5420 switch (DECL_FUNCTION_CODE (fndecl
))
5425 case BUILT_IN_ATAN2
:
5426 case BUILT_IN_ATAN2F
:
5427 case BUILT_IN_ATAN2L
:
5429 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != REAL_TYPE
5430 || TREE_CHAIN (arglist
))
5431 return END_BUILTINS
;
5436 return END_BUILTINS
;
5440 return DECL_FUNCTION_CODE (fndecl
);
5443 /* Fold a call to __builtin_constant_p, if we know it will evaluate to a
5444 constant. ARGLIST is the argument list of the call. */
5447 fold_builtin_constant_p (tree arglist
)
5452 arglist
= TREE_VALUE (arglist
);
5454 /* We return 1 for a numeric type that's known to be a constant
5455 value at compile-time or for an aggregate type that's a
5456 literal constant. */
5457 STRIP_NOPS (arglist
);
5459 /* If we know this is a constant, emit the constant of one. */
5460 if (TREE_CODE_CLASS (TREE_CODE (arglist
)) == 'c'
5461 || (TREE_CODE (arglist
) == CONSTRUCTOR
5462 && TREE_CONSTANT (arglist
))
5463 || (TREE_CODE (arglist
) == ADDR_EXPR
5464 && TREE_CODE (TREE_OPERAND (arglist
, 0)) == STRING_CST
))
5465 return integer_one_node
;
5467 /* If this expression has side effects, show we don't know it to be a
5468 constant. Likewise if it's a pointer or aggregate type since in
5469 those case we only want literals, since those are only optimized
5470 when generating RTL, not later.
5471 And finally, if we are compiling an initializer, not code, we
5472 need to return a definite result now; there's not going to be any
5473 more optimization done. */
5474 if (TREE_SIDE_EFFECTS (arglist
)
5475 || AGGREGATE_TYPE_P (TREE_TYPE (arglist
))
5476 || POINTER_TYPE_P (TREE_TYPE (arglist
))
5478 return integer_zero_node
;
5483 /* Fold a call to __builtin_classify_type. */
5486 fold_builtin_classify_type (tree arglist
)
5489 return build_int_2 (no_type_class
, 0);
5491 return build_int_2 (type_to_class (TREE_TYPE (TREE_VALUE (arglist
))), 0);
5494 /* Fold a call to __builtin_inf or __builtin_huge_val. */
5497 fold_builtin_inf (tree type
, int warn
)
5499 REAL_VALUE_TYPE real
;
5501 if (!MODE_HAS_INFINITIES (TYPE_MODE (type
)) && warn
)
5502 warning ("target format does not support infinity");
5505 return build_real (type
, real
);
5508 /* Fold a call to __builtin_nan or __builtin_nans. */
5511 fold_builtin_nan (tree arglist
, tree type
, int quiet
)
5513 REAL_VALUE_TYPE real
;
5516 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
5518 str
= c_getstr (TREE_VALUE (arglist
));
5522 if (!real_nan (&real
, str
, quiet
, TYPE_MODE (type
)))
5525 return build_real (type
, real
);
5528 /* Return true if the floating point expression T has an integer value.
5529 We also allow +Inf, -Inf and NaN to be considered integer values. */
5532 integer_valued_real_p (tree t
)
5534 switch (TREE_CODE (t
))
5541 case NON_LVALUE_EXPR
:
5542 return integer_valued_real_p (TREE_OPERAND (t
, 0));
5547 return integer_valued_real_p (TREE_OPERAND (t
, 1));
5554 return integer_valued_real_p (TREE_OPERAND (t
, 0))
5555 && integer_valued_real_p (TREE_OPERAND (t
, 1));
5558 return integer_valued_real_p (TREE_OPERAND (t
, 1))
5559 && integer_valued_real_p (TREE_OPERAND (t
, 2));
5562 if (! TREE_CONSTANT_OVERFLOW (t
))
5564 REAL_VALUE_TYPE c
, cint
;
5566 c
= TREE_REAL_CST (t
);
5567 real_trunc (&cint
, TYPE_MODE (TREE_TYPE (t
)), &c
);
5568 return real_identical (&c
, &cint
);
5573 tree type
= TREE_TYPE (TREE_OPERAND (t
, 0));
5574 if (TREE_CODE (type
) == INTEGER_TYPE
)
5576 if (TREE_CODE (type
) == REAL_TYPE
)
5577 return integer_valued_real_p (TREE_OPERAND (t
, 0));
5582 switch (builtin_mathfn_code (t
))
5585 case BUILT_IN_CEILF
:
5586 case BUILT_IN_CEILL
:
5587 case BUILT_IN_FLOOR
:
5588 case BUILT_IN_FLOORF
:
5589 case BUILT_IN_FLOORL
:
5590 case BUILT_IN_NEARBYINT
:
5591 case BUILT_IN_NEARBYINTF
:
5592 case BUILT_IN_NEARBYINTL
:
5593 case BUILT_IN_ROUND
:
5594 case BUILT_IN_ROUNDF
:
5595 case BUILT_IN_ROUNDL
:
5596 case BUILT_IN_TRUNC
:
5597 case BUILT_IN_TRUNCF
:
5598 case BUILT_IN_TRUNCL
:
5612 /* EXP is assumed to be builtin call where truncation can be propagated
5613 across (for instance floor((double)f) == (double)floorf (f).
5614 Do the transformation. */
5617 fold_trunc_transparent_mathfn (tree exp
)
5619 tree fndecl
= get_callee_fndecl (exp
);
5620 tree arglist
= TREE_OPERAND (exp
, 1);
5621 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
5624 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5627 arg
= TREE_VALUE (arglist
);
5628 /* Integer rounding functions are idempotent. */
5629 if (fcode
== builtin_mathfn_code (arg
))
5632 /* If argument is already integer valued, and we don't need to worry
5633 about setting errno, there's no need to perform rounding. */
5634 if (! flag_errno_math
&& integer_valued_real_p (arg
))
5639 tree arg0
= strip_float_extensions (arg
);
5640 tree ftype
= TREE_TYPE (exp
);
5641 tree newtype
= TREE_TYPE (arg0
);
5644 if (TYPE_PRECISION (newtype
) < TYPE_PRECISION (ftype
)
5645 && (decl
= mathfn_built_in (newtype
, fcode
)))
5648 build_tree_list (NULL_TREE
, fold (convert (newtype
, arg0
)));
5649 return convert (ftype
,
5650 build_function_call_expr (decl
, arglist
));
5656 /* Fold function call to builtin cabs, cabsf or cabsl. FNDECL is the
5657 function's DECL, ARGLIST is the argument list and TYPE is the return
5658 type. Return NULL_TREE if no simplification can be made. */
5661 fold_builtin_cabs (tree fndecl
, tree arglist
, tree type
)
5665 if (!arglist
|| TREE_CHAIN (arglist
))
5668 arg
= TREE_VALUE (arglist
);
5669 if (TREE_CODE (TREE_TYPE (arg
)) != COMPLEX_TYPE
5670 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != REAL_TYPE
)
5673 /* Evaluate cabs of a constant at compile-time. */
5674 if (flag_unsafe_math_optimizations
5675 && TREE_CODE (arg
) == COMPLEX_CST
5676 && TREE_CODE (TREE_REALPART (arg
)) == REAL_CST
5677 && TREE_CODE (TREE_IMAGPART (arg
)) == REAL_CST
5678 && ! TREE_CONSTANT_OVERFLOW (TREE_REALPART (arg
))
5679 && ! TREE_CONSTANT_OVERFLOW (TREE_IMAGPART (arg
)))
5681 REAL_VALUE_TYPE r
, i
;
5683 r
= TREE_REAL_CST (TREE_REALPART (arg
));
5684 i
= TREE_REAL_CST (TREE_IMAGPART (arg
));
5686 real_arithmetic (&r
, MULT_EXPR
, &r
, &r
);
5687 real_arithmetic (&i
, MULT_EXPR
, &i
, &i
);
5688 real_arithmetic (&r
, PLUS_EXPR
, &r
, &i
);
5689 if (real_sqrt (&r
, TYPE_MODE (type
), &r
)
5690 || ! flag_trapping_math
)
5691 return build_real (type
, r
);
5694 /* If either part is zero, cabs is fabs of the other. */
5695 if (TREE_CODE (arg
) == COMPLEX_EXPR
5696 && real_zerop (TREE_OPERAND (arg
, 0)))
5697 return fold (build1 (ABS_EXPR
, type
, TREE_OPERAND (arg
, 1)));
5698 if (TREE_CODE (arg
) == COMPLEX_EXPR
5699 && real_zerop (TREE_OPERAND (arg
, 1)))
5700 return fold (build1 (ABS_EXPR
, type
, TREE_OPERAND (arg
, 0)));
5702 if (flag_unsafe_math_optimizations
)
5704 enum built_in_function fcode
;
5707 fcode
= DECL_FUNCTION_CODE (fndecl
);
5708 if (fcode
== BUILT_IN_CABS
)
5709 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRT
];
5710 else if (fcode
== BUILT_IN_CABSF
)
5711 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRTF
];
5712 else if (fcode
== BUILT_IN_CABSL
)
5713 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRTL
];
5717 if (sqrtfn
!= NULL_TREE
)
5719 tree rpart
, ipart
, result
, arglist
;
5721 arg
= save_expr (arg
);
5723 rpart
= fold (build1 (REALPART_EXPR
, type
, arg
));
5724 ipart
= fold (build1 (IMAGPART_EXPR
, type
, arg
));
5726 rpart
= save_expr (rpart
);
5727 ipart
= save_expr (ipart
);
5729 result
= fold (build (PLUS_EXPR
, type
,
5730 fold (build (MULT_EXPR
, type
,
5732 fold (build (MULT_EXPR
, type
,
5735 arglist
= build_tree_list (NULL_TREE
, result
);
5736 return build_function_call_expr (sqrtfn
, arglist
);
5743 /* Fold function call to builtin trunc, truncf or truncl. Return
5744 NULL_TREE if no simplification can be made. */
5747 fold_builtin_trunc (tree exp
)
5749 tree arglist
= TREE_OPERAND (exp
, 1);
5752 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5755 /* Optimize trunc of constant value. */
5756 arg
= TREE_VALUE (arglist
);
5757 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
5759 REAL_VALUE_TYPE r
, x
;
5760 tree type
= TREE_TYPE (exp
);
5762 x
= TREE_REAL_CST (arg
);
5763 real_trunc (&r
, TYPE_MODE (type
), &x
);
5764 return build_real (type
, r
);
5767 return fold_trunc_transparent_mathfn (exp
);
5770 /* Fold function call to builtin floor, floorf or floorl. Return
5771 NULL_TREE if no simplification can be made. */
5774 fold_builtin_floor (tree exp
)
5776 tree arglist
= TREE_OPERAND (exp
, 1);
5779 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5782 /* Optimize floor of constant value. */
5783 arg
= TREE_VALUE (arglist
);
5784 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
5788 x
= TREE_REAL_CST (arg
);
5789 if (! REAL_VALUE_ISNAN (x
) || ! flag_errno_math
)
5791 tree type
= TREE_TYPE (exp
);
5794 real_floor (&r
, TYPE_MODE (type
), &x
);
5795 return build_real (type
, r
);
5799 return fold_trunc_transparent_mathfn (exp
);
5802 /* Fold function call to builtin ceil, ceilf or ceill. Return
5803 NULL_TREE if no simplification can be made. */
5806 fold_builtin_ceil (tree exp
)
5808 tree arglist
= TREE_OPERAND (exp
, 1);
5811 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5814 /* Optimize ceil of constant value. */
5815 arg
= TREE_VALUE (arglist
);
5816 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
5820 x
= TREE_REAL_CST (arg
);
5821 if (! REAL_VALUE_ISNAN (x
) || ! flag_errno_math
)
5823 tree type
= TREE_TYPE (exp
);
5826 real_ceil (&r
, TYPE_MODE (type
), &x
);
5827 return build_real (type
, r
);
5831 return fold_trunc_transparent_mathfn (exp
);
5834 /* Fold function call to builtin ffs, clz, ctz, popcount and parity
5835 and their long and long long variants (i.e. ffsl and ffsll).
5836 Return NULL_TREE if no simplification can be made. */
5839 fold_builtin_bitop (tree exp
)
5841 tree fndecl
= get_callee_fndecl (exp
);
5842 tree arglist
= TREE_OPERAND (exp
, 1);
5845 if (! validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
5848 /* Optimize for constant argument. */
5849 arg
= TREE_VALUE (arglist
);
5850 if (TREE_CODE (arg
) == INTEGER_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
5852 HOST_WIDE_INT hi
, width
, result
;
5853 unsigned HOST_WIDE_INT lo
;
5856 type
= TREE_TYPE (arg
);
5857 width
= TYPE_PRECISION (type
);
5858 lo
= TREE_INT_CST_LOW (arg
);
5860 /* Clear all the bits that are beyond the type's precision. */
5861 if (width
> HOST_BITS_PER_WIDE_INT
)
5863 hi
= TREE_INT_CST_HIGH (arg
);
5864 if (width
< 2 * HOST_BITS_PER_WIDE_INT
)
5865 hi
&= ~((HOST_WIDE_INT
) (-1) >> (width
- HOST_BITS_PER_WIDE_INT
));
5870 if (width
< HOST_BITS_PER_WIDE_INT
)
5871 lo
&= ~((unsigned HOST_WIDE_INT
) (-1) << width
);
5874 switch (DECL_FUNCTION_CODE (fndecl
))
5878 case BUILT_IN_FFSLL
:
5880 result
= exact_log2 (lo
& -lo
) + 1;
5882 result
= HOST_BITS_PER_WIDE_INT
+ exact_log2 (hi
& -hi
) + 1;
5889 case BUILT_IN_CLZLL
:
5891 result
= width
- floor_log2 (hi
) - 1 - HOST_BITS_PER_WIDE_INT
;
5893 result
= width
- floor_log2 (lo
) - 1;
5894 else if (! CLZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type
), result
))
5900 case BUILT_IN_CTZLL
:
5902 result
= exact_log2 (lo
& -lo
);
5904 result
= HOST_BITS_PER_WIDE_INT
+ exact_log2 (hi
& -hi
);
5905 else if (! CTZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type
), result
))
5909 case BUILT_IN_POPCOUNT
:
5910 case BUILT_IN_POPCOUNTL
:
5911 case BUILT_IN_POPCOUNTLL
:
5914 result
++, lo
&= lo
- 1;
5916 result
++, hi
&= hi
- 1;
5919 case BUILT_IN_PARITY
:
5920 case BUILT_IN_PARITYL
:
5921 case BUILT_IN_PARITYLL
:
5924 result
++, lo
&= lo
- 1;
5926 result
++, hi
&= hi
- 1;
5934 t
= build_int_2 (result
, 0);
5935 TREE_TYPE (t
) = TREE_TYPE (exp
);
5942 /* Used by constant folding to eliminate some builtin calls early. EXP is
5943 the CALL_EXPR of a call to a builtin function. */
5946 fold_builtin (tree exp
)
5948 tree fndecl
= get_callee_fndecl (exp
);
5949 tree arglist
= TREE_OPERAND (exp
, 1);
5950 tree type
= TREE_TYPE (TREE_TYPE (fndecl
));
5952 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
5955 switch (DECL_FUNCTION_CODE (fndecl
))
5957 case BUILT_IN_CONSTANT_P
:
5958 return fold_builtin_constant_p (arglist
);
5960 case BUILT_IN_CLASSIFY_TYPE
:
5961 return fold_builtin_classify_type (arglist
);
5963 case BUILT_IN_STRLEN
:
5964 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
5966 tree len
= c_strlen (TREE_VALUE (arglist
), 0);
5969 /* Convert from the internal "sizetype" type to "size_t". */
5971 len
= convert (size_type_node
, len
);
5978 case BUILT_IN_FABSF
:
5979 case BUILT_IN_FABSL
:
5980 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5981 return fold (build1 (ABS_EXPR
, type
, TREE_VALUE (arglist
)));
5985 case BUILT_IN_CABSF
:
5986 case BUILT_IN_CABSL
:
5987 return fold_builtin_cabs (fndecl
, arglist
, type
);
5990 case BUILT_IN_SQRTF
:
5991 case BUILT_IN_SQRTL
:
5992 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5994 enum built_in_function fcode
;
5995 tree arg
= TREE_VALUE (arglist
);
5997 /* Optimize sqrt of constant value. */
5998 if (TREE_CODE (arg
) == REAL_CST
5999 && ! TREE_CONSTANT_OVERFLOW (arg
))
6001 REAL_VALUE_TYPE r
, x
;
6003 x
= TREE_REAL_CST (arg
);
6004 if (real_sqrt (&r
, TYPE_MODE (type
), &x
)
6005 || (!flag_trapping_math
&& !flag_errno_math
))
6006 return build_real (type
, r
);
6009 /* Optimize sqrt(exp(x)) = exp(x*0.5). */
6010 fcode
= builtin_mathfn_code (arg
);
6011 if (flag_unsafe_math_optimizations
6012 && (fcode
== BUILT_IN_EXP
6013 || fcode
== BUILT_IN_EXPF
6014 || fcode
== BUILT_IN_EXPL
))
6016 tree expfn
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
6017 arg
= fold (build (MULT_EXPR
, type
,
6018 TREE_VALUE (TREE_OPERAND (arg
, 1)),
6019 build_real (type
, dconsthalf
)));
6020 arglist
= build_tree_list (NULL_TREE
, arg
);
6021 return build_function_call_expr (expfn
, arglist
);
6024 /* Optimize sqrt(pow(x,y)) = pow(x,y*0.5). */
6025 if (flag_unsafe_math_optimizations
6026 && (fcode
== BUILT_IN_POW
6027 || fcode
== BUILT_IN_POWF
6028 || fcode
== BUILT_IN_POWL
))
6030 tree powfn
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
6031 tree arg0
= TREE_VALUE (TREE_OPERAND (arg
, 1));
6032 tree arg1
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg
, 1)));
6033 tree narg1
= fold (build (MULT_EXPR
, type
, arg1
,
6034 build_real (type
, dconsthalf
)));
6035 arglist
= tree_cons (NULL_TREE
, arg0
,
6036 build_tree_list (NULL_TREE
, narg1
));
6037 return build_function_call_expr (powfn
, arglist
);
6045 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6047 tree arg
= TREE_VALUE (arglist
);
6049 /* Optimize sin(0.0) = 0.0. */
6050 if (real_zerop (arg
))
6058 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6060 tree arg
= TREE_VALUE (arglist
);
6062 /* Optimize cos(0.0) = 1.0. */
6063 if (real_zerop (arg
))
6064 return build_real (type
, dconst1
);
6066 /* Optimize cos(-x) into cos(x). */
6067 if (TREE_CODE (arg
) == NEGATE_EXPR
)
6069 tree arglist
= build_tree_list (NULL_TREE
,
6070 TREE_OPERAND (arg
, 0));
6071 return build_function_call_expr (fndecl
, arglist
);
6079 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6081 enum built_in_function fcode
;
6082 tree arg
= TREE_VALUE (arglist
);
6084 /* Optimize exp(0.0) = 1.0. */
6085 if (real_zerop (arg
))
6086 return build_real (type
, dconst1
);
6088 /* Optimize exp(1.0) = e. */
6089 if (real_onep (arg
))
6091 REAL_VALUE_TYPE cst
;
6093 if (! builtin_dconsts_init
)
6094 init_builtin_dconsts ();
6095 real_convert (&cst
, TYPE_MODE (type
), &dconste
);
6096 return build_real (type
, cst
);
6099 /* Attempt to evaluate exp at compile-time. */
6100 if (flag_unsafe_math_optimizations
6101 && TREE_CODE (arg
) == REAL_CST
6102 && ! TREE_CONSTANT_OVERFLOW (arg
))
6104 REAL_VALUE_TYPE cint
;
6108 c
= TREE_REAL_CST (arg
);
6109 n
= real_to_integer (&c
);
6110 real_from_integer (&cint
, VOIDmode
, n
,
6112 if (real_identical (&c
, &cint
))
6116 if (! builtin_dconsts_init
)
6117 init_builtin_dconsts ();
6118 real_powi (&x
, TYPE_MODE (type
), &dconste
, n
);
6119 return build_real (type
, x
);
6123 /* Optimize exp(log(x)) = x. */
6124 fcode
= builtin_mathfn_code (arg
);
6125 if (flag_unsafe_math_optimizations
6126 && (fcode
== BUILT_IN_LOG
6127 || fcode
== BUILT_IN_LOGF
6128 || fcode
== BUILT_IN_LOGL
))
6129 return TREE_VALUE (TREE_OPERAND (arg
, 1));
6136 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6138 enum built_in_function fcode
;
6139 tree arg
= TREE_VALUE (arglist
);
6141 /* Optimize log(1.0) = 0.0. */
6142 if (real_onep (arg
))
6143 return build_real (type
, dconst0
);
6145 /* Optimize log(exp(x)) = x. */
6146 fcode
= builtin_mathfn_code (arg
);
6147 if (flag_unsafe_math_optimizations
6148 && (fcode
== BUILT_IN_EXP
6149 || fcode
== BUILT_IN_EXPF
6150 || fcode
== BUILT_IN_EXPL
))
6151 return TREE_VALUE (TREE_OPERAND (arg
, 1));
6153 /* Optimize log(sqrt(x)) = log(x)*0.5. */
6154 if (flag_unsafe_math_optimizations
6155 && (fcode
== BUILT_IN_SQRT
6156 || fcode
== BUILT_IN_SQRTF
6157 || fcode
== BUILT_IN_SQRTL
))
6159 tree logfn
= build_function_call_expr (fndecl
,
6160 TREE_OPERAND (arg
, 1));
6161 return fold (build (MULT_EXPR
, type
, logfn
,
6162 build_real (type
, dconsthalf
)));
6165 /* Optimize log(pow(x,y)) = y*log(x). */
6166 if (flag_unsafe_math_optimizations
6167 && (fcode
== BUILT_IN_POW
6168 || fcode
== BUILT_IN_POWF
6169 || fcode
== BUILT_IN_POWL
))
6171 tree arg0
, arg1
, logfn
;
6173 arg0
= TREE_VALUE (TREE_OPERAND (arg
, 1));
6174 arg1
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg
, 1)));
6175 arglist
= build_tree_list (NULL_TREE
, arg0
);
6176 logfn
= build_function_call_expr (fndecl
, arglist
);
6177 return fold (build (MULT_EXPR
, type
, arg1
, logfn
));
6185 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6187 enum built_in_function fcode
;
6188 tree arg
= TREE_VALUE (arglist
);
6190 /* Optimize tan(0.0) = 0.0. */
6191 if (real_zerop (arg
))
6194 /* Optimize tan(atan(x)) = x. */
6195 fcode
= builtin_mathfn_code (arg
);
6196 if (flag_unsafe_math_optimizations
6197 && (fcode
== BUILT_IN_ATAN
6198 || fcode
== BUILT_IN_ATANF
6199 || fcode
== BUILT_IN_ATANL
))
6200 return TREE_VALUE (TREE_OPERAND (arg
, 1));
6205 case BUILT_IN_ATANF
:
6206 case BUILT_IN_ATANL
:
6207 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6209 tree arg
= TREE_VALUE (arglist
);
6211 /* Optimize atan(0.0) = 0.0. */
6212 if (real_zerop (arg
))
6215 /* Optimize atan(1.0) = pi/4. */
6216 if (real_onep (arg
))
6218 REAL_VALUE_TYPE cst
;
6220 if (! builtin_dconsts_init
)
6221 init_builtin_dconsts ();
6222 real_convert (&cst
, TYPE_MODE (type
), &dconstpi
);
6224 return build_real (type
, cst
);
6232 if (validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
6234 enum built_in_function fcode
;
6235 tree arg0
= TREE_VALUE (arglist
);
6236 tree arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
6238 /* Optimize pow(1.0,y) = 1.0. */
6239 if (real_onep (arg0
))
6240 return omit_one_operand (type
, build_real (type
, dconst1
), arg1
);
6242 if (TREE_CODE (arg1
) == REAL_CST
6243 && ! TREE_CONSTANT_OVERFLOW (arg1
))
6246 c
= TREE_REAL_CST (arg1
);
6248 /* Optimize pow(x,0.0) = 1.0. */
6249 if (REAL_VALUES_EQUAL (c
, dconst0
))
6250 return omit_one_operand (type
, build_real (type
, dconst1
),
6253 /* Optimize pow(x,1.0) = x. */
6254 if (REAL_VALUES_EQUAL (c
, dconst1
))
6257 /* Optimize pow(x,-1.0) = 1.0/x. */
6258 if (REAL_VALUES_EQUAL (c
, dconstm1
))
6259 return fold (build (RDIV_EXPR
, type
,
6260 build_real (type
, dconst1
),
6263 /* Optimize pow(x,0.5) = sqrt(x). */
6264 if (flag_unsafe_math_optimizations
6265 && REAL_VALUES_EQUAL (c
, dconsthalf
))
6269 fcode
= DECL_FUNCTION_CODE (fndecl
);
6270 if (fcode
== BUILT_IN_POW
)
6271 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRT
];
6272 else if (fcode
== BUILT_IN_POWF
)
6273 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRTF
];
6274 else if (fcode
== BUILT_IN_POWL
)
6275 sqrtfn
= implicit_built_in_decls
[BUILT_IN_SQRTL
];
6279 if (sqrtfn
!= NULL_TREE
)
6281 tree arglist
= build_tree_list (NULL_TREE
, arg0
);
6282 return build_function_call_expr (sqrtfn
, arglist
);
6286 /* Attempt to evaluate pow at compile-time. */
6287 if (TREE_CODE (arg0
) == REAL_CST
6288 && ! TREE_CONSTANT_OVERFLOW (arg0
))
6290 REAL_VALUE_TYPE cint
;
6293 n
= real_to_integer (&c
);
6294 real_from_integer (&cint
, VOIDmode
, n
,
6296 if (real_identical (&c
, &cint
))
6301 x
= TREE_REAL_CST (arg0
);
6302 inexact
= real_powi (&x
, TYPE_MODE (type
), &x
, n
);
6303 if (flag_unsafe_math_optimizations
|| !inexact
)
6304 return build_real (type
, x
);
6309 /* Optimize pow(exp(x),y) = exp(x*y). */
6310 fcode
= builtin_mathfn_code (arg0
);
6311 if (flag_unsafe_math_optimizations
6312 && (fcode
== BUILT_IN_EXP
6313 || fcode
== BUILT_IN_EXPF
6314 || fcode
== BUILT_IN_EXPL
))
6316 tree expfn
= TREE_OPERAND (TREE_OPERAND (arg0
, 0), 0);
6317 tree arg
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
6318 arg
= fold (build (MULT_EXPR
, type
, arg
, arg1
));
6319 arglist
= build_tree_list (NULL_TREE
, arg
);
6320 return build_function_call_expr (expfn
, arglist
);
6323 /* Optimize pow(sqrt(x),y) = pow(x,y*0.5). */
6324 if (flag_unsafe_math_optimizations
6325 && (fcode
== BUILT_IN_SQRT
6326 || fcode
== BUILT_IN_SQRTF
6327 || fcode
== BUILT_IN_SQRTL
))
6329 tree narg0
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
6330 tree narg1
= fold (build (MULT_EXPR
, type
, arg1
,
6331 build_real (type
, dconsthalf
)));
6333 arglist
= tree_cons (NULL_TREE
, narg0
,
6334 build_tree_list (NULL_TREE
, narg1
));
6335 return build_function_call_expr (fndecl
, arglist
);
6338 /* Optimize pow(pow(x,y),z) = pow(x,y*z). */
6339 if (flag_unsafe_math_optimizations
6340 && (fcode
== BUILT_IN_POW
6341 || fcode
== BUILT_IN_POWF
6342 || fcode
== BUILT_IN_POWL
))
6344 tree arg00
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
6345 tree arg01
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0
, 1)));
6346 tree narg1
= fold (build (MULT_EXPR
, type
, arg01
, arg1
));
6347 arglist
= tree_cons (NULL_TREE
, arg00
,
6348 build_tree_list (NULL_TREE
, narg1
));
6349 return build_function_call_expr (fndecl
, arglist
);
6357 return fold_builtin_inf (type
, true);
6359 case BUILT_IN_HUGE_VAL
:
6360 case BUILT_IN_HUGE_VALF
:
6361 case BUILT_IN_HUGE_VALL
:
6362 return fold_builtin_inf (type
, false);
6367 return fold_builtin_nan (arglist
, type
, true);
6370 case BUILT_IN_NANSF
:
6371 case BUILT_IN_NANSL
:
6372 return fold_builtin_nan (arglist
, type
, false);
6374 case BUILT_IN_FLOOR
:
6375 case BUILT_IN_FLOORF
:
6376 case BUILT_IN_FLOORL
:
6377 return fold_builtin_floor (exp
);
6380 case BUILT_IN_CEILF
:
6381 case BUILT_IN_CEILL
:
6382 return fold_builtin_ceil (exp
);
6384 case BUILT_IN_TRUNC
:
6385 case BUILT_IN_TRUNCF
:
6386 case BUILT_IN_TRUNCL
:
6387 return fold_builtin_trunc (exp
);
6389 case BUILT_IN_ROUND
:
6390 case BUILT_IN_ROUNDF
:
6391 case BUILT_IN_ROUNDL
:
6392 case BUILT_IN_NEARBYINT
:
6393 case BUILT_IN_NEARBYINTF
:
6394 case BUILT_IN_NEARBYINTL
:
6395 return fold_trunc_transparent_mathfn (exp
);
6399 case BUILT_IN_FFSLL
:
6402 case BUILT_IN_CLZLL
:
6405 case BUILT_IN_CTZLL
:
6406 case BUILT_IN_POPCOUNT
:
6407 case BUILT_IN_POPCOUNTL
:
6408 case BUILT_IN_POPCOUNTLL
:
6409 case BUILT_IN_PARITY
:
6410 case BUILT_IN_PARITYL
:
6411 case BUILT_IN_PARITYLL
:
6412 return fold_builtin_bitop (exp
);
6421 /* Conveniently construct a function call expression. */
6424 build_function_call_expr (tree fn
, tree arglist
)
6428 call_expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (fn
)), fn
);
6429 call_expr
= build (CALL_EXPR
, TREE_TYPE (TREE_TYPE (fn
)),
6430 call_expr
, arglist
);
6431 return fold (call_expr
);
6434 /* This function validates the types of a function call argument list
6435 represented as a tree chain of parameters against a specified list
6436 of tree_codes. If the last specifier is a 0, that represents an
6437 ellipses, otherwise the last specifier must be a VOID_TYPE. */
6440 validate_arglist (tree arglist
, ...)
6442 enum tree_code code
;
6446 va_start (ap
, arglist
);
6450 code
= va_arg (ap
, enum tree_code
);
6454 /* This signifies an ellipses, any further arguments are all ok. */
6458 /* This signifies an endlink, if no arguments remain, return
6459 true, otherwise return false. */
6463 /* If no parameters remain or the parameter's code does not
6464 match the specified code, return false. Otherwise continue
6465 checking any remaining arguments. */
6467 || code
!= TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))))
6471 arglist
= TREE_CHAIN (arglist
);
6475 /* We need gotos here since we can only have one VA_CLOSE in a
6483 /* Default version of target-specific builtin setup that does nothing. */
6486 default_init_builtins (void)
6490 /* Default target-specific builtin expander that does nothing. */
6493 default_expand_builtin (tree exp ATTRIBUTE_UNUSED
,
6494 rtx target ATTRIBUTE_UNUSED
,
6495 rtx subtarget ATTRIBUTE_UNUSED
,
6496 enum machine_mode mode ATTRIBUTE_UNUSED
,
6497 int ignore ATTRIBUTE_UNUSED
)
6502 /* Instantiate all remaining CONSTANT_P_RTX nodes. */
6505 purge_builtin_constant_p (void)
6507 rtx insn
, set
, arg
, new, note
;
6509 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
6511 && (set
= single_set (insn
)) != NULL_RTX
6512 && (GET_CODE (arg
= SET_SRC (set
)) == CONSTANT_P_RTX
6513 || (GET_CODE (arg
) == SUBREG
6514 && (GET_CODE (arg
= SUBREG_REG (arg
))
6515 == CONSTANT_P_RTX
))))
6517 arg
= XEXP (arg
, 0);
6518 new = CONSTANT_P (arg
) ? const1_rtx
: const0_rtx
;
6519 validate_change (insn
, &SET_SRC (set
), new, 0);
6521 /* Remove the REG_EQUAL note from the insn. */
6522 if ((note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
)) != 0)
6523 remove_note (insn
, note
);
6527 /* Returns true is EXP represents data that would potentially reside
6528 in a readonly section. */
6531 readonly_data_expr (tree exp
)
6535 if (TREE_CODE (exp
) == ADDR_EXPR
)
6536 return decl_readonly_section (TREE_OPERAND (exp
, 0), 0);