1 /* Expand builtin functions.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004 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"
30 #include "tree-gimple.h"
33 #include "hard-reg-set.h"
36 #include "insn-config.h"
42 #include "typeclass.h"
47 #include "langhooks.h"
48 #include "basic-block.h"
50 #define CALLED_AS_BUILT_IN(NODE) \
51 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
53 #ifndef PAD_VARARGS_DOWN
54 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
57 /* Define the names of the builtin function types and codes. */
58 const char *const built_in_class_names
[4]
59 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
61 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA, AT, IM) #X,
62 const char *const built_in_names
[(int) END_BUILTINS
] =
64 #include "builtins.def"
68 /* Setup an array of _DECL trees, make sure each element is
69 initialized to NULL_TREE. */
70 tree built_in_decls
[(int) END_BUILTINS
];
71 /* Declarations used when constructing the builtin implicitly in the compiler.
72 It may be NULL_TREE when this is invalid (for instance runtime is not
73 required to implement the function call in all cases). */
74 tree implicit_built_in_decls
[(int) END_BUILTINS
];
76 static int get_pointer_alignment (tree
, unsigned int);
77 static const char *c_getstr (tree
);
78 static rtx
c_readstr (const char *, enum machine_mode
);
79 static int target_char_cast (tree
, char *);
80 static rtx
get_memory_rtx (tree
);
81 static tree
build_string_literal (int, const char *);
82 static int apply_args_size (void);
83 static int apply_result_size (void);
84 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
85 static rtx
result_vector (int, rtx
);
87 static rtx
expand_builtin_setjmp (tree
, rtx
);
88 static void expand_builtin_update_setjmp_buf (rtx
);
89 static void expand_builtin_prefetch (tree
);
90 static rtx
expand_builtin_apply_args (void);
91 static rtx
expand_builtin_apply_args_1 (void);
92 static rtx
expand_builtin_apply (rtx
, rtx
, rtx
);
93 static void expand_builtin_return (rtx
);
94 static enum type_class
type_to_class (tree
);
95 static rtx
expand_builtin_classify_type (tree
);
96 static void expand_errno_check (tree
, rtx
);
97 static rtx
expand_builtin_mathfn (tree
, rtx
, rtx
);
98 static rtx
expand_builtin_mathfn_2 (tree
, rtx
, rtx
);
99 static rtx
expand_builtin_mathfn_3 (tree
, rtx
, rtx
);
100 static rtx
expand_builtin_args_info (tree
);
101 static rtx
expand_builtin_next_arg (tree
);
102 static rtx
expand_builtin_va_start (tree
);
103 static rtx
expand_builtin_va_end (tree
);
104 static rtx
expand_builtin_va_copy (tree
);
105 static rtx
expand_builtin_memcmp (tree
, tree
, rtx
, enum machine_mode
);
106 static rtx
expand_builtin_strcmp (tree
, rtx
, enum machine_mode
);
107 static rtx
expand_builtin_strncmp (tree
, rtx
, enum machine_mode
);
108 static rtx
builtin_memcpy_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
109 static rtx
expand_builtin_strcat (tree
, rtx
, enum machine_mode
);
110 static rtx
expand_builtin_strncat (tree
, rtx
, enum machine_mode
);
111 static rtx
expand_builtin_strspn (tree
, rtx
, enum machine_mode
);
112 static rtx
expand_builtin_strcspn (tree
, rtx
, enum machine_mode
);
113 static rtx
expand_builtin_memcpy (tree
, rtx
, enum machine_mode
);
114 static rtx
expand_builtin_mempcpy (tree
, rtx
, enum machine_mode
, int);
115 static rtx
expand_builtin_memmove (tree
, rtx
, enum machine_mode
);
116 static rtx
expand_builtin_bcopy (tree
);
117 static rtx
expand_builtin_strcpy (tree
, rtx
, enum machine_mode
);
118 static rtx
expand_builtin_stpcpy (tree
, rtx
, enum machine_mode
);
119 static rtx
builtin_strncpy_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
120 static rtx
expand_builtin_strncpy (tree
, rtx
, enum machine_mode
);
121 static rtx
builtin_memset_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
122 static rtx
builtin_memset_gen_str (void *, HOST_WIDE_INT
, enum machine_mode
);
123 static rtx
expand_builtin_memset (tree
, rtx
, enum machine_mode
);
124 static rtx
expand_builtin_bzero (tree
);
125 static rtx
expand_builtin_strlen (tree
, rtx
, enum machine_mode
);
126 static rtx
expand_builtin_strstr (tree
, rtx
, enum machine_mode
);
127 static rtx
expand_builtin_strpbrk (tree
, rtx
, enum machine_mode
);
128 static rtx
expand_builtin_strchr (tree
, rtx
, enum machine_mode
);
129 static rtx
expand_builtin_strrchr (tree
, rtx
, enum machine_mode
);
130 static rtx
expand_builtin_alloca (tree
, rtx
);
131 static rtx
expand_builtin_unop (enum machine_mode
, tree
, rtx
, rtx
, optab
);
132 static rtx
expand_builtin_frame_address (tree
, tree
);
133 static rtx
expand_builtin_fputs (tree
, rtx
, bool);
134 static rtx
expand_builtin_printf (tree
, rtx
, enum machine_mode
, bool);
135 static rtx
expand_builtin_fprintf (tree
, rtx
, enum machine_mode
, bool);
136 static rtx
expand_builtin_sprintf (tree
, rtx
, enum machine_mode
);
137 static tree
stabilize_va_list (tree
, int);
138 static rtx
expand_builtin_expect (tree
, rtx
);
139 static tree
fold_builtin_constant_p (tree
);
140 static tree
fold_builtin_classify_type (tree
);
141 static tree
fold_builtin_inf (tree
, int);
142 static tree
fold_builtin_nan (tree
, tree
, int);
143 static int validate_arglist (tree
, ...);
144 static bool integer_valued_real_p (tree
);
145 static tree
fold_trunc_transparent_mathfn (tree
);
146 static bool readonly_data_expr (tree
);
147 static rtx
expand_builtin_fabs (tree
, rtx
, rtx
);
148 static rtx
expand_builtin_cabs (tree
, rtx
);
149 static rtx
expand_builtin_signbit (tree
, rtx
);
150 static tree
fold_builtin_cabs (tree
, tree
);
151 static tree
fold_builtin_trunc (tree
);
152 static tree
fold_builtin_floor (tree
);
153 static tree
fold_builtin_ceil (tree
);
154 static tree
fold_builtin_round (tree
);
155 static tree
fold_builtin_bitop (tree
);
156 static tree
fold_builtin_memcpy (tree
);
157 static tree
fold_builtin_mempcpy (tree
);
158 static tree
fold_builtin_memmove (tree
);
159 static tree
fold_builtin_strcpy (tree
);
160 static tree
fold_builtin_strncpy (tree
);
161 static tree
fold_builtin_strchr (tree
, bool);
162 static tree
fold_builtin_memcmp (tree
);
163 static tree
fold_builtin_strcmp (tree
);
164 static tree
fold_builtin_strncmp (tree
);
165 static tree
fold_builtin_signbit (tree
);
166 static tree
fold_builtin_copysign (tree
, tree
);
167 static tree
fold_builtin_isascii (tree
);
168 static tree
fold_builtin_toascii (tree
);
169 static tree
fold_builtin_isdigit (tree
);
170 static tree
fold_builtin_fabs (tree
, tree
);
171 static tree
fold_builtin_abs (tree
, tree
);
172 static tree
fold_builtin_unordered_cmp (tree
, enum tree_code
, enum tree_code
);
174 static tree
simplify_builtin_memcmp (tree
);
175 static tree
simplify_builtin_strcmp (tree
);
176 static tree
simplify_builtin_strncmp (tree
);
177 static tree
simplify_builtin_strpbrk (tree
);
178 static tree
simplify_builtin_strstr (tree
);
179 static tree
simplify_builtin_strchr (tree
);
180 static tree
simplify_builtin_strrchr (tree
);
181 static tree
simplify_builtin_strcat (tree
);
182 static tree
simplify_builtin_strncat (tree
);
183 static tree
simplify_builtin_strspn (tree
);
184 static tree
simplify_builtin_strcspn (tree
);
185 static void simplify_builtin_next_arg (tree
);
186 static void simplify_builtin_va_start (tree
);
187 static tree
simplify_builtin_sprintf (tree
, int);
190 /* Return the alignment in bits of EXP, a pointer valued expression.
191 But don't return more than MAX_ALIGN no matter what.
192 The alignment returned is, by default, the alignment of the thing that
193 EXP points to. If it is not a POINTER_TYPE, 0 is returned.
195 Otherwise, look at the expression to see if we can do better, i.e., if the
196 expression is actually pointing at an object whose alignment is tighter. */
199 get_pointer_alignment (tree exp
, unsigned int max_align
)
201 unsigned int align
, inner
;
203 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
206 align
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
207 align
= MIN (align
, max_align
);
211 switch (TREE_CODE (exp
))
215 case NON_LVALUE_EXPR
:
216 exp
= TREE_OPERAND (exp
, 0);
217 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
220 inner
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
221 align
= MIN (inner
, max_align
);
225 /* If sum of pointer + int, restrict our maximum alignment to that
226 imposed by the integer. If not, we can't do any better than
228 if (! host_integerp (TREE_OPERAND (exp
, 1), 1))
231 while (((tree_low_cst (TREE_OPERAND (exp
, 1), 1))
232 & (max_align
/ BITS_PER_UNIT
- 1))
236 exp
= TREE_OPERAND (exp
, 0);
240 /* See what we are pointing at and look at its alignment. */
241 exp
= TREE_OPERAND (exp
, 0);
242 if (TREE_CODE (exp
) == FUNCTION_DECL
)
243 align
= FUNCTION_BOUNDARY
;
244 else if (DECL_P (exp
))
245 align
= DECL_ALIGN (exp
);
246 #ifdef CONSTANT_ALIGNMENT
247 else if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'c')
248 align
= CONSTANT_ALIGNMENT (exp
, align
);
250 return MIN (align
, max_align
);
258 /* Compute the length of a C string. TREE_STRING_LENGTH is not the right
259 way, because it could contain a zero byte in the middle.
260 TREE_STRING_LENGTH is the size of the character array, not the string.
262 ONLY_VALUE should be nonzero if the result is not going to be emitted
263 into the instruction stream and zero if it is going to be expanded.
264 E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is nonzero, constant 3
265 is returned, otherwise NULL, since
266 len = c_strlen (src, 1); if (len) expand_expr (len, ...); would not
267 evaluate the side-effects.
269 The value returned is of type `ssizetype'.
271 Unfortunately, string_constant can't access the values of const char
272 arrays with initializers, so neither can we do so here. */
275 c_strlen (tree src
, int only_value
)
278 HOST_WIDE_INT offset
;
283 if (TREE_CODE (src
) == COND_EXPR
284 && (only_value
|| !TREE_SIDE_EFFECTS (TREE_OPERAND (src
, 0))))
288 len1
= c_strlen (TREE_OPERAND (src
, 1), only_value
);
289 len2
= c_strlen (TREE_OPERAND (src
, 2), only_value
);
290 if (tree_int_cst_equal (len1
, len2
))
294 if (TREE_CODE (src
) == COMPOUND_EXPR
295 && (only_value
|| !TREE_SIDE_EFFECTS (TREE_OPERAND (src
, 0))))
296 return c_strlen (TREE_OPERAND (src
, 1), only_value
);
298 src
= string_constant (src
, &offset_node
);
302 max
= TREE_STRING_LENGTH (src
) - 1;
303 ptr
= TREE_STRING_POINTER (src
);
305 if (offset_node
&& TREE_CODE (offset_node
) != INTEGER_CST
)
307 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
308 compute the offset to the following null if we don't know where to
309 start searching for it. */
312 for (i
= 0; i
< max
; i
++)
316 /* We don't know the starting offset, but we do know that the string
317 has no internal zero bytes. We can assume that the offset falls
318 within the bounds of the string; otherwise, the programmer deserves
319 what he gets. Subtract the offset from the length of the string,
320 and return that. This would perhaps not be valid if we were dealing
321 with named arrays in addition to literal string constants. */
323 return size_diffop (size_int (max
), offset_node
);
326 /* We have a known offset into the string. Start searching there for
327 a null character if we can represent it as a single HOST_WIDE_INT. */
328 if (offset_node
== 0)
330 else if (! host_integerp (offset_node
, 0))
333 offset
= tree_low_cst (offset_node
, 0);
335 /* If the offset is known to be out of bounds, warn, and call strlen at
337 if (offset
< 0 || offset
> max
)
339 warning ("offset outside bounds of constant string");
343 /* Use strlen to search for the first zero byte. Since any strings
344 constructed with build_string will have nulls appended, we win even
345 if we get handed something like (char[4])"abcd".
347 Since OFFSET is our starting index into the string, no further
348 calculation is needed. */
349 return ssize_int (strlen (ptr
+ offset
));
352 /* Return a char pointer for a C string if it is a string constant
353 or sum of string constant and integer constant. */
360 src
= string_constant (src
, &offset_node
);
364 if (offset_node
== 0)
365 return TREE_STRING_POINTER (src
);
366 else if (!host_integerp (offset_node
, 1)
367 || compare_tree_int (offset_node
, TREE_STRING_LENGTH (src
) - 1) > 0)
370 return TREE_STRING_POINTER (src
) + tree_low_cst (offset_node
, 1);
373 /* Return a CONST_INT or CONST_DOUBLE corresponding to target reading
374 GET_MODE_BITSIZE (MODE) bits from string constant STR. */
377 c_readstr (const char *str
, enum machine_mode mode
)
383 if (GET_MODE_CLASS (mode
) != MODE_INT
)
388 for (i
= 0; i
< GET_MODE_SIZE (mode
); i
++)
391 if (WORDS_BIG_ENDIAN
)
392 j
= GET_MODE_SIZE (mode
) - i
- 1;
393 if (BYTES_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
394 && GET_MODE_SIZE (mode
) > UNITS_PER_WORD
)
395 j
= j
+ UNITS_PER_WORD
- 2 * (j
% UNITS_PER_WORD
) - 1;
397 if (j
> 2 * HOST_BITS_PER_WIDE_INT
)
400 ch
= (unsigned char) str
[i
];
401 c
[j
/ HOST_BITS_PER_WIDE_INT
] |= ch
<< (j
% HOST_BITS_PER_WIDE_INT
);
403 return immed_double_const (c
[0], c
[1], mode
);
406 /* Cast a target constant CST to target CHAR and if that value fits into
407 host char type, return zero and put that value into variable pointed by
411 target_char_cast (tree cst
, char *p
)
413 unsigned HOST_WIDE_INT val
, hostval
;
415 if (!host_integerp (cst
, 1)
416 || CHAR_TYPE_SIZE
> HOST_BITS_PER_WIDE_INT
)
419 val
= tree_low_cst (cst
, 1);
420 if (CHAR_TYPE_SIZE
< HOST_BITS_PER_WIDE_INT
)
421 val
&= (((unsigned HOST_WIDE_INT
) 1) << CHAR_TYPE_SIZE
) - 1;
424 if (HOST_BITS_PER_CHAR
< HOST_BITS_PER_WIDE_INT
)
425 hostval
&= (((unsigned HOST_WIDE_INT
) 1) << HOST_BITS_PER_CHAR
) - 1;
434 /* Similar to save_expr, but assumes that arbitrary code is not executed
435 in between the multiple evaluations. In particular, we assume that a
436 non-addressable local variable will not be modified. */
439 builtin_save_expr (tree exp
)
441 if (TREE_ADDRESSABLE (exp
) == 0
442 && (TREE_CODE (exp
) == PARM_DECL
443 || (TREE_CODE (exp
) == VAR_DECL
&& !TREE_STATIC (exp
))))
446 return save_expr (exp
);
449 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
450 times to get the address of either a higher stack frame, or a return
451 address located within it (depending on FNDECL_CODE). */
454 expand_builtin_return_addr (enum built_in_function fndecl_code
, int count
,
459 /* Some machines need special handling before we can access
460 arbitrary frames. For example, on the sparc, we must first flush
461 all register windows to the stack. */
462 #ifdef SETUP_FRAME_ADDRESSES
464 SETUP_FRAME_ADDRESSES ();
467 /* On the sparc, the return address is not in the frame, it is in a
468 register. There is no way to access it off of the current frame
469 pointer, but it can be accessed off the previous frame pointer by
470 reading the value from the register window save area. */
471 #ifdef RETURN_ADDR_IN_PREVIOUS_FRAME
472 if (fndecl_code
== BUILT_IN_RETURN_ADDRESS
)
476 /* Scan back COUNT frames to the specified frame. */
477 for (i
= 0; i
< count
; i
++)
479 /* Assume the dynamic chain pointer is in the word that the
480 frame address points to, unless otherwise specified. */
481 #ifdef DYNAMIC_CHAIN_ADDRESS
482 tem
= DYNAMIC_CHAIN_ADDRESS (tem
);
484 tem
= memory_address (Pmode
, tem
);
485 tem
= gen_rtx_MEM (Pmode
, tem
);
486 set_mem_alias_set (tem
, get_frame_alias_set ());
487 tem
= copy_to_reg (tem
);
490 /* For __builtin_frame_address, return what we've got. */
491 if (fndecl_code
== BUILT_IN_FRAME_ADDRESS
)
494 /* For __builtin_return_address, Get the return address from that
496 #ifdef RETURN_ADDR_RTX
497 tem
= RETURN_ADDR_RTX (count
, tem
);
499 tem
= memory_address (Pmode
,
500 plus_constant (tem
, GET_MODE_SIZE (Pmode
)));
501 tem
= gen_rtx_MEM (Pmode
, tem
);
502 set_mem_alias_set (tem
, get_frame_alias_set ());
507 /* Alias set used for setjmp buffer. */
508 static HOST_WIDE_INT setjmp_alias_set
= -1;
510 /* Construct the leading half of a __builtin_setjmp call. Control will
511 return to RECEIVER_LABEL. This is used directly by sjlj exception
515 expand_builtin_setjmp_setup (rtx buf_addr
, rtx receiver_label
)
517 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
521 if (setjmp_alias_set
== -1)
522 setjmp_alias_set
= new_alias_set ();
524 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
526 buf_addr
= force_reg (Pmode
, force_operand (buf_addr
, NULL_RTX
));
530 /* We store the frame pointer and the address of receiver_label in
531 the buffer and use the rest of it for the stack save area, which
532 is machine-dependent. */
534 mem
= gen_rtx_MEM (Pmode
, buf_addr
);
535 set_mem_alias_set (mem
, setjmp_alias_set
);
536 emit_move_insn (mem
, targetm
.builtin_setjmp_frame_value ());
538 mem
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
, GET_MODE_SIZE (Pmode
))),
539 set_mem_alias_set (mem
, setjmp_alias_set
);
541 emit_move_insn (validize_mem (mem
),
542 force_reg (Pmode
, gen_rtx_LABEL_REF (Pmode
, receiver_label
)));
544 stack_save
= gen_rtx_MEM (sa_mode
,
545 plus_constant (buf_addr
,
546 2 * GET_MODE_SIZE (Pmode
)));
547 set_mem_alias_set (stack_save
, setjmp_alias_set
);
548 emit_stack_save (SAVE_NONLOCAL
, &stack_save
, NULL_RTX
);
550 /* If there is further processing to do, do it. */
551 #ifdef HAVE_builtin_setjmp_setup
552 if (HAVE_builtin_setjmp_setup
)
553 emit_insn (gen_builtin_setjmp_setup (buf_addr
));
556 /* Tell optimize_save_area_alloca that extra work is going to
557 need to go on during alloca. */
558 current_function_calls_setjmp
= 1;
560 /* Set this so all the registers get saved in our frame; we need to be
561 able to copy the saved values for any registers from frames we unwind. */
562 current_function_has_nonlocal_label
= 1;
565 /* Construct the trailing part of a __builtin_setjmp call.
566 This is used directly by sjlj exception handling code. */
569 expand_builtin_setjmp_receiver (rtx receiver_label ATTRIBUTE_UNUSED
)
571 /* Clobber the FP when we get here, so we have to make sure it's
572 marked as used by this function. */
573 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
575 /* Mark the static chain as clobbered here so life information
576 doesn't get messed up for it. */
577 emit_insn (gen_rtx_CLOBBER (VOIDmode
, static_chain_rtx
));
579 /* Now put in the code to restore the frame pointer, and argument
580 pointer, if needed. The code below is from expand_end_bindings
581 in stmt.c; see detailed documentation there. */
582 #ifdef HAVE_nonlocal_goto
583 if (! HAVE_nonlocal_goto
)
585 emit_move_insn (virtual_stack_vars_rtx
, hard_frame_pointer_rtx
);
587 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
588 if (fixed_regs
[ARG_POINTER_REGNUM
])
590 #ifdef ELIMINABLE_REGS
592 static const struct elims
{const int from
, to
;} elim_regs
[] = ELIMINABLE_REGS
;
594 for (i
= 0; i
< ARRAY_SIZE (elim_regs
); i
++)
595 if (elim_regs
[i
].from
== ARG_POINTER_REGNUM
596 && elim_regs
[i
].to
== HARD_FRAME_POINTER_REGNUM
)
599 if (i
== ARRAY_SIZE (elim_regs
))
602 /* Now restore our arg pointer from the address at which it
603 was saved in our stack frame. */
604 emit_move_insn (virtual_incoming_args_rtx
,
605 copy_to_reg (get_arg_pointer_save_area (cfun
)));
610 #ifdef HAVE_builtin_setjmp_receiver
611 if (HAVE_builtin_setjmp_receiver
)
612 emit_insn (gen_builtin_setjmp_receiver (receiver_label
));
615 #ifdef HAVE_nonlocal_goto_receiver
616 if (HAVE_nonlocal_goto_receiver
)
617 emit_insn (gen_nonlocal_goto_receiver ());
622 /* @@@ This is a kludge. Not all machine descriptions define a blockage
623 insn, but we must not allow the code we just generated to be reordered
624 by scheduling. Specifically, the update of the frame pointer must
625 happen immediately, not later. So emit an ASM_INPUT to act as blockage
627 emit_insn (gen_rtx_ASM_INPUT (VOIDmode
, ""));
630 /* __builtin_setjmp is passed a pointer to an array of five words (not
631 all will be used on all machines). It operates similarly to the C
632 library function of the same name, but is more efficient. Much of
633 the code below (and for longjmp) is copied from the handling of
636 NOTE: This is intended for use by GNAT and the exception handling
637 scheme in the compiler and will only work in the method used by
641 expand_builtin_setjmp (tree arglist
, rtx target
)
643 rtx buf_addr
, next_lab
, cont_lab
;
645 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
648 if (target
== 0 || !REG_P (target
)
649 || REGNO (target
) < FIRST_PSEUDO_REGISTER
)
650 target
= gen_reg_rtx (TYPE_MODE (integer_type_node
));
652 buf_addr
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
654 next_lab
= gen_label_rtx ();
655 cont_lab
= gen_label_rtx ();
657 expand_builtin_setjmp_setup (buf_addr
, next_lab
);
659 /* Set TARGET to zero and branch to the continue label. Use emit_jump to
660 ensure that pending stack adjustments are flushed. */
661 emit_move_insn (target
, const0_rtx
);
662 emit_jump (cont_lab
);
664 emit_label (next_lab
);
666 expand_builtin_setjmp_receiver (next_lab
);
668 /* Set TARGET to one. */
669 emit_move_insn (target
, const1_rtx
);
670 emit_label (cont_lab
);
672 /* Tell flow about the strange goings on. Putting `next_lab' on
673 `nonlocal_goto_handler_labels' to indicates that function
674 calls may traverse the arc back to this label. */
676 current_function_has_nonlocal_label
= 1;
677 nonlocal_goto_handler_labels
678 = gen_rtx_EXPR_LIST (VOIDmode
, next_lab
, nonlocal_goto_handler_labels
);
683 /* __builtin_longjmp is passed a pointer to an array of five words (not
684 all will be used on all machines). It operates similarly to the C
685 library function of the same name, but is more efficient. Much of
686 the code below is copied from the handling of non-local gotos.
688 NOTE: This is intended for use by GNAT and the exception handling
689 scheme in the compiler and will only work in the method used by
693 expand_builtin_longjmp (rtx buf_addr
, rtx value
)
695 rtx fp
, lab
, stack
, insn
, last
;
696 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
698 if (setjmp_alias_set
== -1)
699 setjmp_alias_set
= new_alias_set ();
701 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
703 buf_addr
= force_reg (Pmode
, buf_addr
);
705 /* We used to store value in static_chain_rtx, but that fails if pointers
706 are smaller than integers. We instead require that the user must pass
707 a second argument of 1, because that is what builtin_setjmp will
708 return. This also makes EH slightly more efficient, since we are no
709 longer copying around a value that we don't care about. */
710 if (value
!= const1_rtx
)
713 current_function_calls_longjmp
= 1;
715 last
= get_last_insn ();
716 #ifdef HAVE_builtin_longjmp
717 if (HAVE_builtin_longjmp
)
718 emit_insn (gen_builtin_longjmp (buf_addr
));
722 fp
= gen_rtx_MEM (Pmode
, buf_addr
);
723 lab
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
,
724 GET_MODE_SIZE (Pmode
)));
726 stack
= gen_rtx_MEM (sa_mode
, plus_constant (buf_addr
,
727 2 * GET_MODE_SIZE (Pmode
)));
728 set_mem_alias_set (fp
, setjmp_alias_set
);
729 set_mem_alias_set (lab
, setjmp_alias_set
);
730 set_mem_alias_set (stack
, setjmp_alias_set
);
732 /* Pick up FP, label, and SP from the block and jump. This code is
733 from expand_goto in stmt.c; see there for detailed comments. */
734 #if HAVE_nonlocal_goto
735 if (HAVE_nonlocal_goto
)
736 /* We have to pass a value to the nonlocal_goto pattern that will
737 get copied into the static_chain pointer, but it does not matter
738 what that value is, because builtin_setjmp does not use it. */
739 emit_insn (gen_nonlocal_goto (value
, lab
, stack
, fp
));
743 lab
= copy_to_reg (lab
);
745 emit_insn (gen_rtx_CLOBBER (VOIDmode
,
746 gen_rtx_MEM (BLKmode
,
747 gen_rtx_SCRATCH (VOIDmode
))));
748 emit_insn (gen_rtx_CLOBBER (VOIDmode
,
749 gen_rtx_MEM (BLKmode
,
750 hard_frame_pointer_rtx
)));
752 emit_move_insn (hard_frame_pointer_rtx
, fp
);
753 emit_stack_restore (SAVE_NONLOCAL
, stack
, NULL_RTX
);
755 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
756 emit_insn (gen_rtx_USE (VOIDmode
, stack_pointer_rtx
));
757 emit_indirect_jump (lab
);
761 /* Search backwards and mark the jump insn as a non-local goto.
762 Note that this precludes the use of __builtin_longjmp to a
763 __builtin_setjmp target in the same function. However, we've
764 already cautioned the user that these functions are for
765 internal exception handling use only. */
766 for (insn
= get_last_insn (); insn
; insn
= PREV_INSN (insn
))
770 if (GET_CODE (insn
) == JUMP_INSN
)
772 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO
, const0_rtx
,
776 else if (GET_CODE (insn
) == CALL_INSN
)
781 /* Expand a call to __builtin_nonlocal_goto. We're passed the target label
782 and the address of the save area. */
785 expand_builtin_nonlocal_goto (tree arglist
)
787 tree t_label
, t_save_area
;
788 rtx r_label
, r_save_area
, r_fp
, r_sp
, insn
;
790 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
793 t_label
= TREE_VALUE (arglist
);
794 arglist
= TREE_CHAIN (arglist
);
795 t_save_area
= TREE_VALUE (arglist
);
797 r_label
= expand_expr (t_label
, NULL_RTX
, VOIDmode
, 0);
798 r_save_area
= expand_expr (t_save_area
, NULL_RTX
, VOIDmode
, 0);
799 r_fp
= gen_rtx_MEM (Pmode
, r_save_area
);
800 r_sp
= gen_rtx_MEM (STACK_SAVEAREA_MODE (SAVE_NONLOCAL
),
801 plus_constant (r_save_area
, GET_MODE_SIZE (Pmode
)));
803 current_function_has_nonlocal_goto
= 1;
805 #if HAVE_nonlocal_goto
806 /* ??? We no longer need to pass the static chain value, afaik. */
807 if (HAVE_nonlocal_goto
)
808 emit_insn (gen_nonlocal_goto (const0_rtx
, r_label
, r_sp
, r_fp
));
812 r_label
= copy_to_reg (r_label
);
814 emit_insn (gen_rtx_CLOBBER (VOIDmode
,
815 gen_rtx_MEM (BLKmode
,
816 gen_rtx_SCRATCH (VOIDmode
))));
818 emit_insn (gen_rtx_CLOBBER (VOIDmode
,
819 gen_rtx_MEM (BLKmode
,
820 hard_frame_pointer_rtx
)));
822 /* Restore frame pointer for containing function.
823 This sets the actual hard register used for the frame pointer
824 to the location of the function's incoming static chain info.
825 The non-local goto handler will then adjust it to contain the
826 proper value and reload the argument pointer, if needed. */
827 emit_move_insn (hard_frame_pointer_rtx
, r_fp
);
828 emit_stack_restore (SAVE_NONLOCAL
, r_sp
, NULL_RTX
);
830 /* USE of hard_frame_pointer_rtx added for consistency;
831 not clear if really needed. */
832 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
833 emit_insn (gen_rtx_USE (VOIDmode
, stack_pointer_rtx
));
834 emit_indirect_jump (r_label
);
837 /* Search backwards to the jump insn and mark it as a
839 for (insn
= get_last_insn (); insn
; insn
= PREV_INSN (insn
))
841 if (GET_CODE (insn
) == JUMP_INSN
)
843 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO
,
844 const0_rtx
, REG_NOTES (insn
));
847 else if (GET_CODE (insn
) == CALL_INSN
)
854 /* __builtin_update_setjmp_buf is passed a pointer to an array of five words
855 (not all will be used on all machines) that was passed to __builtin_setjmp.
856 It updates the stack pointer in that block to correspond to the current
860 expand_builtin_update_setjmp_buf (rtx buf_addr
)
862 enum machine_mode sa_mode
= Pmode
;
866 #ifdef HAVE_save_stack_nonlocal
867 if (HAVE_save_stack_nonlocal
)
868 sa_mode
= insn_data
[(int) CODE_FOR_save_stack_nonlocal
].operand
[0].mode
;
870 #ifdef STACK_SAVEAREA_MODE
871 sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
875 = gen_rtx_MEM (sa_mode
,
878 plus_constant (buf_addr
, 2 * GET_MODE_SIZE (Pmode
))));
882 emit_insn (gen_setjmp ());
885 emit_stack_save (SAVE_NONLOCAL
, &stack_save
, NULL_RTX
);
888 /* Expand a call to __builtin_prefetch. For a target that does not support
889 data prefetch, evaluate the memory address argument in case it has side
893 expand_builtin_prefetch (tree arglist
)
895 tree arg0
, arg1
, arg2
;
898 if (!validate_arglist (arglist
, POINTER_TYPE
, 0))
901 arg0
= TREE_VALUE (arglist
);
902 /* Arguments 1 and 2 are optional; argument 1 (read/write) defaults to
903 zero (read) and argument 2 (locality) defaults to 3 (high degree of
905 if (TREE_CHAIN (arglist
))
907 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
908 if (TREE_CHAIN (TREE_CHAIN (arglist
)))
909 arg2
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
911 arg2
= build_int_2 (3, 0);
915 arg1
= integer_zero_node
;
916 arg2
= build_int_2 (3, 0);
919 /* Argument 0 is an address. */
920 op0
= expand_expr (arg0
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
922 /* Argument 1 (read/write flag) must be a compile-time constant int. */
923 if (TREE_CODE (arg1
) != INTEGER_CST
)
925 error ("second arg to `__builtin_prefetch' must be a constant");
926 arg1
= integer_zero_node
;
928 op1
= expand_expr (arg1
, NULL_RTX
, VOIDmode
, 0);
929 /* Argument 1 must be either zero or one. */
930 if (INTVAL (op1
) != 0 && INTVAL (op1
) != 1)
932 warning ("invalid second arg to __builtin_prefetch; using zero");
936 /* Argument 2 (locality) must be a compile-time constant int. */
937 if (TREE_CODE (arg2
) != INTEGER_CST
)
939 error ("third arg to `__builtin_prefetch' must be a constant");
940 arg2
= integer_zero_node
;
942 op2
= expand_expr (arg2
, NULL_RTX
, VOIDmode
, 0);
943 /* Argument 2 must be 0, 1, 2, or 3. */
944 if (INTVAL (op2
) < 0 || INTVAL (op2
) > 3)
946 warning ("invalid third arg to __builtin_prefetch; using zero");
953 if ((! (*insn_data
[(int) CODE_FOR_prefetch
].operand
[0].predicate
)
955 insn_data
[(int) CODE_FOR_prefetch
].operand
[0].mode
))
956 || (GET_MODE (op0
) != Pmode
))
958 op0
= convert_memory_address (Pmode
, op0
);
959 op0
= force_reg (Pmode
, op0
);
961 emit_insn (gen_prefetch (op0
, op1
, op2
));
965 op0
= protect_from_queue (op0
, 0);
966 /* Don't do anything with direct references to volatile memory, but
967 generate code to handle other side effects. */
968 if (GET_CODE (op0
) != MEM
&& side_effects_p (op0
))
972 /* Get a MEM rtx for expression EXP which is the address of an operand
973 to be used to be used in a string instruction (cmpstrsi, movstrsi, ..). */
976 get_memory_rtx (tree exp
)
978 rtx addr
= expand_expr (exp
, NULL_RTX
, ptr_mode
, EXPAND_SUM
);
981 addr
= convert_memory_address (Pmode
, addr
);
983 mem
= gen_rtx_MEM (BLKmode
, memory_address (BLKmode
, addr
));
985 /* Get an expression we can use to find the attributes to assign to MEM.
986 If it is an ADDR_EXPR, use the operand. Otherwise, dereference it if
987 we can. First remove any nops. */
988 while ((TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
989 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
990 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp
, 0))))
991 exp
= TREE_OPERAND (exp
, 0);
993 if (TREE_CODE (exp
) == ADDR_EXPR
)
995 exp
= TREE_OPERAND (exp
, 0);
996 set_mem_attributes (mem
, exp
, 0);
998 else if (POINTER_TYPE_P (TREE_TYPE (exp
)))
1000 exp
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (exp
)), exp
);
1001 /* memcpy, memset and other builtin stringops can alias with anything. */
1002 set_mem_alias_set (mem
, 0);
1008 /* Built-in functions to perform an untyped call and return. */
1010 /* For each register that may be used for calling a function, this
1011 gives a mode used to copy the register's value. VOIDmode indicates
1012 the register is not used for calling a function. If the machine
1013 has register windows, this gives only the outbound registers.
1014 INCOMING_REGNO gives the corresponding inbound register. */
1015 static enum machine_mode apply_args_mode
[FIRST_PSEUDO_REGISTER
];
1017 /* For each register that may be used for returning values, this gives
1018 a mode used to copy the register's value. VOIDmode indicates the
1019 register is not used for returning values. If the machine has
1020 register windows, this gives only the outbound registers.
1021 INCOMING_REGNO gives the corresponding inbound register. */
1022 static enum machine_mode apply_result_mode
[FIRST_PSEUDO_REGISTER
];
1024 /* For each register that may be used for calling a function, this
1025 gives the offset of that register into the block returned by
1026 __builtin_apply_args. 0 indicates that the register is not
1027 used for calling a function. */
1028 static int apply_args_reg_offset
[FIRST_PSEUDO_REGISTER
];
1030 /* Return the size required for the block returned by __builtin_apply_args,
1031 and initialize apply_args_mode. */
1034 apply_args_size (void)
1036 static int size
= -1;
1039 enum machine_mode mode
;
1041 /* The values computed by this function never change. */
1044 /* The first value is the incoming arg-pointer. */
1045 size
= GET_MODE_SIZE (Pmode
);
1047 /* The second value is the structure value address unless this is
1048 passed as an "invisible" first argument. */
1049 if (targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0))
1050 size
+= GET_MODE_SIZE (Pmode
);
1052 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1053 if (FUNCTION_ARG_REGNO_P (regno
))
1055 mode
= reg_raw_mode
[regno
];
1057 if (mode
== VOIDmode
)
1060 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1061 if (size
% align
!= 0)
1062 size
= CEIL (size
, align
) * align
;
1063 apply_args_reg_offset
[regno
] = size
;
1064 size
+= GET_MODE_SIZE (mode
);
1065 apply_args_mode
[regno
] = mode
;
1069 apply_args_mode
[regno
] = VOIDmode
;
1070 apply_args_reg_offset
[regno
] = 0;
1076 /* Return the size required for the block returned by __builtin_apply,
1077 and initialize apply_result_mode. */
1080 apply_result_size (void)
1082 static int size
= -1;
1084 enum machine_mode mode
;
1086 /* The values computed by this function never change. */
1091 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1092 if (FUNCTION_VALUE_REGNO_P (regno
))
1094 mode
= reg_raw_mode
[regno
];
1096 if (mode
== VOIDmode
)
1099 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1100 if (size
% align
!= 0)
1101 size
= CEIL (size
, align
) * align
;
1102 size
+= GET_MODE_SIZE (mode
);
1103 apply_result_mode
[regno
] = mode
;
1106 apply_result_mode
[regno
] = VOIDmode
;
1108 /* Allow targets that use untyped_call and untyped_return to override
1109 the size so that machine-specific information can be stored here. */
1110 #ifdef APPLY_RESULT_SIZE
1111 size
= APPLY_RESULT_SIZE
;
1117 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
1118 /* Create a vector describing the result block RESULT. If SAVEP is true,
1119 the result block is used to save the values; otherwise it is used to
1120 restore the values. */
1123 result_vector (int savep
, rtx result
)
1125 int regno
, size
, align
, nelts
;
1126 enum machine_mode mode
;
1128 rtx
*savevec
= alloca (FIRST_PSEUDO_REGISTER
* sizeof (rtx
));
1131 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1132 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1134 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1135 if (size
% align
!= 0)
1136 size
= CEIL (size
, align
) * align
;
1137 reg
= gen_rtx_REG (mode
, savep
? regno
: INCOMING_REGNO (regno
));
1138 mem
= adjust_address (result
, mode
, size
);
1139 savevec
[nelts
++] = (savep
1140 ? gen_rtx_SET (VOIDmode
, mem
, reg
)
1141 : gen_rtx_SET (VOIDmode
, reg
, mem
));
1142 size
+= GET_MODE_SIZE (mode
);
1144 return gen_rtx_PARALLEL (VOIDmode
, gen_rtvec_v (nelts
, savevec
));
1146 #endif /* HAVE_untyped_call or HAVE_untyped_return */
1148 /* Save the state required to perform an untyped call with the same
1149 arguments as were passed to the current function. */
1152 expand_builtin_apply_args_1 (void)
1155 int size
, align
, regno
;
1156 enum machine_mode mode
;
1157 rtx struct_incoming_value
= targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 1);
1159 /* Create a block where the arg-pointer, structure value address,
1160 and argument registers can be saved. */
1161 registers
= assign_stack_local (BLKmode
, apply_args_size (), -1);
1163 /* Walk past the arg-pointer and structure value address. */
1164 size
= GET_MODE_SIZE (Pmode
);
1165 if (targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0))
1166 size
+= GET_MODE_SIZE (Pmode
);
1168 /* Save each register used in calling a function to the block. */
1169 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1170 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
1172 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1173 if (size
% align
!= 0)
1174 size
= CEIL (size
, align
) * align
;
1176 tem
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
1178 emit_move_insn (adjust_address (registers
, mode
, size
), tem
);
1179 size
+= GET_MODE_SIZE (mode
);
1182 /* Save the arg pointer to the block. */
1183 tem
= copy_to_reg (virtual_incoming_args_rtx
);
1184 #ifdef STACK_GROWS_DOWNWARD
1185 /* We need the pointer as the caller actually passed them to us, not
1186 as we might have pretended they were passed. Make sure it's a valid
1187 operand, as emit_move_insn isn't expected to handle a PLUS. */
1189 = force_operand (plus_constant (tem
, current_function_pretend_args_size
),
1192 emit_move_insn (adjust_address (registers
, Pmode
, 0), tem
);
1194 size
= GET_MODE_SIZE (Pmode
);
1196 /* Save the structure value address unless this is passed as an
1197 "invisible" first argument. */
1198 if (struct_incoming_value
)
1200 emit_move_insn (adjust_address (registers
, Pmode
, size
),
1201 copy_to_reg (struct_incoming_value
));
1202 size
+= GET_MODE_SIZE (Pmode
);
1205 /* Return the address of the block. */
1206 return copy_addr_to_reg (XEXP (registers
, 0));
1209 /* __builtin_apply_args returns block of memory allocated on
1210 the stack into which is stored the arg pointer, structure
1211 value address, static chain, and all the registers that might
1212 possibly be used in performing a function call. The code is
1213 moved to the start of the function so the incoming values are
1217 expand_builtin_apply_args (void)
1219 /* Don't do __builtin_apply_args more than once in a function.
1220 Save the result of the first call and reuse it. */
1221 if (apply_args_value
!= 0)
1222 return apply_args_value
;
1224 /* When this function is called, it means that registers must be
1225 saved on entry to this function. So we migrate the
1226 call to the first insn of this function. */
1231 temp
= expand_builtin_apply_args_1 ();
1235 apply_args_value
= temp
;
1237 /* Put the insns after the NOTE that starts the function.
1238 If this is inside a start_sequence, make the outer-level insn
1239 chain current, so the code is placed at the start of the
1241 push_topmost_sequence ();
1242 emit_insn_before (seq
, NEXT_INSN (entry_of_function ()));
1243 pop_topmost_sequence ();
1248 /* Perform an untyped call and save the state required to perform an
1249 untyped return of whatever value was returned by the given function. */
1252 expand_builtin_apply (rtx function
, rtx arguments
, rtx argsize
)
1254 int size
, align
, regno
;
1255 enum machine_mode mode
;
1256 rtx incoming_args
, result
, reg
, dest
, src
, call_insn
;
1257 rtx old_stack_level
= 0;
1258 rtx call_fusage
= 0;
1259 rtx struct_value
= targetm
.calls
.struct_value_rtx (cfun
? TREE_TYPE (cfun
->decl
) : 0, 0);
1261 arguments
= convert_memory_address (Pmode
, arguments
);
1263 /* Create a block where the return registers can be saved. */
1264 result
= assign_stack_local (BLKmode
, apply_result_size (), -1);
1266 /* Fetch the arg pointer from the ARGUMENTS block. */
1267 incoming_args
= gen_reg_rtx (Pmode
);
1268 emit_move_insn (incoming_args
, gen_rtx_MEM (Pmode
, arguments
));
1269 #ifndef STACK_GROWS_DOWNWARD
1270 incoming_args
= expand_simple_binop (Pmode
, MINUS
, incoming_args
, argsize
,
1271 incoming_args
, 0, OPTAB_LIB_WIDEN
);
1274 /* Perform postincrements before actually calling the function. */
1277 /* Push a new argument block and copy the arguments. Do not allow
1278 the (potential) memcpy call below to interfere with our stack
1280 do_pending_stack_adjust ();
1283 /* Save the stack with nonlocal if available. */
1284 #ifdef HAVE_save_stack_nonlocal
1285 if (HAVE_save_stack_nonlocal
)
1286 emit_stack_save (SAVE_NONLOCAL
, &old_stack_level
, NULL_RTX
);
1289 emit_stack_save (SAVE_BLOCK
, &old_stack_level
, NULL_RTX
);
1291 /* Allocate a block of memory onto the stack and copy the memory
1292 arguments to the outgoing arguments address. */
1293 allocate_dynamic_stack_space (argsize
, 0, BITS_PER_UNIT
);
1294 dest
= virtual_outgoing_args_rtx
;
1295 #ifndef STACK_GROWS_DOWNWARD
1296 if (GET_CODE (argsize
) == CONST_INT
)
1297 dest
= plus_constant (dest
, -INTVAL (argsize
));
1299 dest
= gen_rtx_PLUS (Pmode
, dest
, negate_rtx (Pmode
, argsize
));
1301 dest
= gen_rtx_MEM (BLKmode
, dest
);
1302 set_mem_align (dest
, PARM_BOUNDARY
);
1303 src
= gen_rtx_MEM (BLKmode
, incoming_args
);
1304 set_mem_align (src
, PARM_BOUNDARY
);
1305 emit_block_move (dest
, src
, argsize
, BLOCK_OP_NORMAL
);
1307 /* Refer to the argument block. */
1309 arguments
= gen_rtx_MEM (BLKmode
, arguments
);
1310 set_mem_align (arguments
, PARM_BOUNDARY
);
1312 /* Walk past the arg-pointer and structure value address. */
1313 size
= GET_MODE_SIZE (Pmode
);
1315 size
+= GET_MODE_SIZE (Pmode
);
1317 /* Restore each of the registers previously saved. Make USE insns
1318 for each of these registers for use in making the call. */
1319 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1320 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
1322 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1323 if (size
% align
!= 0)
1324 size
= CEIL (size
, align
) * align
;
1325 reg
= gen_rtx_REG (mode
, regno
);
1326 emit_move_insn (reg
, adjust_address (arguments
, mode
, size
));
1327 use_reg (&call_fusage
, reg
);
1328 size
+= GET_MODE_SIZE (mode
);
1331 /* Restore the structure value address unless this is passed as an
1332 "invisible" first argument. */
1333 size
= GET_MODE_SIZE (Pmode
);
1336 rtx value
= gen_reg_rtx (Pmode
);
1337 emit_move_insn (value
, adjust_address (arguments
, Pmode
, size
));
1338 emit_move_insn (struct_value
, value
);
1339 if (REG_P (struct_value
))
1340 use_reg (&call_fusage
, struct_value
);
1341 size
+= GET_MODE_SIZE (Pmode
);
1344 /* All arguments and registers used for the call are set up by now! */
1345 function
= prepare_call_address (function
, NULL
, &call_fusage
, 0, 0);
1347 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1348 and we don't want to load it into a register as an optimization,
1349 because prepare_call_address already did it if it should be done. */
1350 if (GET_CODE (function
) != SYMBOL_REF
)
1351 function
= memory_address (FUNCTION_MODE
, function
);
1353 /* Generate the actual call instruction and save the return value. */
1354 #ifdef HAVE_untyped_call
1355 if (HAVE_untyped_call
)
1356 emit_call_insn (gen_untyped_call (gen_rtx_MEM (FUNCTION_MODE
, function
),
1357 result
, result_vector (1, result
)));
1360 #ifdef HAVE_call_value
1361 if (HAVE_call_value
)
1365 /* Locate the unique return register. It is not possible to
1366 express a call that sets more than one return register using
1367 call_value; use untyped_call for that. In fact, untyped_call
1368 only needs to save the return registers in the given block. */
1369 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1370 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1373 abort (); /* HAVE_untyped_call required. */
1374 valreg
= gen_rtx_REG (mode
, regno
);
1377 emit_call_insn (GEN_CALL_VALUE (valreg
,
1378 gen_rtx_MEM (FUNCTION_MODE
, function
),
1379 const0_rtx
, NULL_RTX
, const0_rtx
));
1381 emit_move_insn (adjust_address (result
, GET_MODE (valreg
), 0), valreg
);
1387 /* Find the CALL insn we just emitted, and attach the register usage
1389 call_insn
= last_call_insn ();
1390 add_function_usage_to (call_insn
, call_fusage
);
1392 /* Restore the stack. */
1393 #ifdef HAVE_save_stack_nonlocal
1394 if (HAVE_save_stack_nonlocal
)
1395 emit_stack_restore (SAVE_NONLOCAL
, old_stack_level
, NULL_RTX
);
1398 emit_stack_restore (SAVE_BLOCK
, old_stack_level
, NULL_RTX
);
1402 /* Return the address of the result block. */
1403 result
= copy_addr_to_reg (XEXP (result
, 0));
1404 return convert_memory_address (ptr_mode
, result
);
1407 /* Perform an untyped return. */
1410 expand_builtin_return (rtx result
)
1412 int size
, align
, regno
;
1413 enum machine_mode mode
;
1415 rtx call_fusage
= 0;
1417 result
= convert_memory_address (Pmode
, result
);
1419 apply_result_size ();
1420 result
= gen_rtx_MEM (BLKmode
, result
);
1422 #ifdef HAVE_untyped_return
1423 if (HAVE_untyped_return
)
1425 emit_jump_insn (gen_untyped_return (result
, result_vector (0, result
)));
1431 /* Restore the return value and note that each value is used. */
1433 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1434 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1436 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1437 if (size
% align
!= 0)
1438 size
= CEIL (size
, align
) * align
;
1439 reg
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
1440 emit_move_insn (reg
, adjust_address (result
, mode
, size
));
1442 push_to_sequence (call_fusage
);
1443 emit_insn (gen_rtx_USE (VOIDmode
, reg
));
1444 call_fusage
= get_insns ();
1446 size
+= GET_MODE_SIZE (mode
);
1449 /* Put the USE insns before the return. */
1450 emit_insn (call_fusage
);
1452 /* Return whatever values was restored by jumping directly to the end
1454 expand_naked_return ();
1457 /* Used by expand_builtin_classify_type and fold_builtin_classify_type. */
1459 static enum type_class
1460 type_to_class (tree type
)
1462 switch (TREE_CODE (type
))
1464 case VOID_TYPE
: return void_type_class
;
1465 case INTEGER_TYPE
: return integer_type_class
;
1466 case CHAR_TYPE
: return char_type_class
;
1467 case ENUMERAL_TYPE
: return enumeral_type_class
;
1468 case BOOLEAN_TYPE
: return boolean_type_class
;
1469 case POINTER_TYPE
: return pointer_type_class
;
1470 case REFERENCE_TYPE
: return reference_type_class
;
1471 case OFFSET_TYPE
: return offset_type_class
;
1472 case REAL_TYPE
: return real_type_class
;
1473 case COMPLEX_TYPE
: return complex_type_class
;
1474 case FUNCTION_TYPE
: return function_type_class
;
1475 case METHOD_TYPE
: return method_type_class
;
1476 case RECORD_TYPE
: return record_type_class
;
1478 case QUAL_UNION_TYPE
: return union_type_class
;
1479 case ARRAY_TYPE
: return (TYPE_STRING_FLAG (type
)
1480 ? string_type_class
: array_type_class
);
1481 case SET_TYPE
: return set_type_class
;
1482 case FILE_TYPE
: return file_type_class
;
1483 case LANG_TYPE
: return lang_type_class
;
1484 default: return no_type_class
;
1488 /* Expand a call to __builtin_classify_type with arguments found in
1492 expand_builtin_classify_type (tree arglist
)
1495 return GEN_INT (type_to_class (TREE_TYPE (TREE_VALUE (arglist
))));
1496 return GEN_INT (no_type_class
);
1499 /* This helper macro, meant to be used in mathfn_built_in below,
1500 determines which among a set of three builtin math functions is
1501 appropriate for a given type mode. The `F' and `L' cases are
1502 automatically generated from the `double' case. */
1503 #define CASE_MATHFN(BUILT_IN_MATHFN) \
1504 case BUILT_IN_MATHFN: case BUILT_IN_MATHFN##F: case BUILT_IN_MATHFN##L: \
1505 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1506 fcodel = BUILT_IN_MATHFN##L ; break;
1508 /* Return mathematic function equivalent to FN but operating directly
1509 on TYPE, if available. If we can't do the conversion, return zero. */
1511 mathfn_built_in (tree type
, enum built_in_function fn
)
1513 enum built_in_function fcode
, fcodef
, fcodel
;
1517 CASE_MATHFN (BUILT_IN_ACOS
)
1518 CASE_MATHFN (BUILT_IN_ACOSH
)
1519 CASE_MATHFN (BUILT_IN_ASIN
)
1520 CASE_MATHFN (BUILT_IN_ASINH
)
1521 CASE_MATHFN (BUILT_IN_ATAN
)
1522 CASE_MATHFN (BUILT_IN_ATAN2
)
1523 CASE_MATHFN (BUILT_IN_ATANH
)
1524 CASE_MATHFN (BUILT_IN_CBRT
)
1525 CASE_MATHFN (BUILT_IN_CEIL
)
1526 CASE_MATHFN (BUILT_IN_COPYSIGN
)
1527 CASE_MATHFN (BUILT_IN_COS
)
1528 CASE_MATHFN (BUILT_IN_COSH
)
1529 CASE_MATHFN (BUILT_IN_DREM
)
1530 CASE_MATHFN (BUILT_IN_ERF
)
1531 CASE_MATHFN (BUILT_IN_ERFC
)
1532 CASE_MATHFN (BUILT_IN_EXP
)
1533 CASE_MATHFN (BUILT_IN_EXP10
)
1534 CASE_MATHFN (BUILT_IN_EXP2
)
1535 CASE_MATHFN (BUILT_IN_EXPM1
)
1536 CASE_MATHFN (BUILT_IN_FABS
)
1537 CASE_MATHFN (BUILT_IN_FDIM
)
1538 CASE_MATHFN (BUILT_IN_FLOOR
)
1539 CASE_MATHFN (BUILT_IN_FMA
)
1540 CASE_MATHFN (BUILT_IN_FMAX
)
1541 CASE_MATHFN (BUILT_IN_FMIN
)
1542 CASE_MATHFN (BUILT_IN_FMOD
)
1543 CASE_MATHFN (BUILT_IN_FREXP
)
1544 CASE_MATHFN (BUILT_IN_GAMMA
)
1545 CASE_MATHFN (BUILT_IN_HUGE_VAL
)
1546 CASE_MATHFN (BUILT_IN_HYPOT
)
1547 CASE_MATHFN (BUILT_IN_ILOGB
)
1548 CASE_MATHFN (BUILT_IN_INF
)
1549 CASE_MATHFN (BUILT_IN_J0
)
1550 CASE_MATHFN (BUILT_IN_J1
)
1551 CASE_MATHFN (BUILT_IN_JN
)
1552 CASE_MATHFN (BUILT_IN_LDEXP
)
1553 CASE_MATHFN (BUILT_IN_LGAMMA
)
1554 CASE_MATHFN (BUILT_IN_LLRINT
)
1555 CASE_MATHFN (BUILT_IN_LLROUND
)
1556 CASE_MATHFN (BUILT_IN_LOG
)
1557 CASE_MATHFN (BUILT_IN_LOG10
)
1558 CASE_MATHFN (BUILT_IN_LOG1P
)
1559 CASE_MATHFN (BUILT_IN_LOG2
)
1560 CASE_MATHFN (BUILT_IN_LOGB
)
1561 CASE_MATHFN (BUILT_IN_LRINT
)
1562 CASE_MATHFN (BUILT_IN_LROUND
)
1563 CASE_MATHFN (BUILT_IN_MODF
)
1564 CASE_MATHFN (BUILT_IN_NAN
)
1565 CASE_MATHFN (BUILT_IN_NANS
)
1566 CASE_MATHFN (BUILT_IN_NEARBYINT
)
1567 CASE_MATHFN (BUILT_IN_NEXTAFTER
)
1568 CASE_MATHFN (BUILT_IN_NEXTTOWARD
)
1569 CASE_MATHFN (BUILT_IN_POW
)
1570 CASE_MATHFN (BUILT_IN_POW10
)
1571 CASE_MATHFN (BUILT_IN_REMAINDER
)
1572 CASE_MATHFN (BUILT_IN_REMQUO
)
1573 CASE_MATHFN (BUILT_IN_RINT
)
1574 CASE_MATHFN (BUILT_IN_ROUND
)
1575 CASE_MATHFN (BUILT_IN_SCALB
)
1576 CASE_MATHFN (BUILT_IN_SCALBLN
)
1577 CASE_MATHFN (BUILT_IN_SCALBN
)
1578 CASE_MATHFN (BUILT_IN_SIGNIFICAND
)
1579 CASE_MATHFN (BUILT_IN_SIN
)
1580 CASE_MATHFN (BUILT_IN_SINCOS
)
1581 CASE_MATHFN (BUILT_IN_SINH
)
1582 CASE_MATHFN (BUILT_IN_SQRT
)
1583 CASE_MATHFN (BUILT_IN_TAN
)
1584 CASE_MATHFN (BUILT_IN_TANH
)
1585 CASE_MATHFN (BUILT_IN_TGAMMA
)
1586 CASE_MATHFN (BUILT_IN_TRUNC
)
1587 CASE_MATHFN (BUILT_IN_Y0
)
1588 CASE_MATHFN (BUILT_IN_Y1
)
1589 CASE_MATHFN (BUILT_IN_YN
)
1595 if (TYPE_MAIN_VARIANT (type
) == double_type_node
)
1596 return implicit_built_in_decls
[fcode
];
1597 else if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
1598 return implicit_built_in_decls
[fcodef
];
1599 else if (TYPE_MAIN_VARIANT (type
) == long_double_type_node
)
1600 return implicit_built_in_decls
[fcodel
];
1605 /* If errno must be maintained, expand the RTL to check if the result,
1606 TARGET, of a built-in function call, EXP, is NaN, and if so set
1610 expand_errno_check (tree exp
, rtx target
)
1612 rtx lab
= gen_label_rtx ();
1614 /* Test the result; if it is NaN, set errno=EDOM because
1615 the argument was not in the domain. */
1616 emit_cmp_and_jump_insns (target
, target
, EQ
, 0, GET_MODE (target
),
1620 /* If this built-in doesn't throw an exception, set errno directly. */
1621 if (TREE_NOTHROW (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0)))
1623 #ifdef GEN_ERRNO_RTX
1624 rtx errno_rtx
= GEN_ERRNO_RTX
;
1627 = gen_rtx_MEM (word_mode
, gen_rtx_SYMBOL_REF (Pmode
, "errno"));
1629 emit_move_insn (errno_rtx
, GEN_INT (TARGET_EDOM
));
1635 /* We can't set errno=EDOM directly; let the library call do it.
1636 Pop the arguments right away in case the call gets deleted. */
1638 expand_call (exp
, target
, 0);
1644 /* Expand a call to one of the builtin math functions (sqrt, exp, or log).
1645 Return 0 if a normal call should be emitted rather than expanding the
1646 function in-line. EXP is the expression that is a call to the builtin
1647 function; if convenient, the result should be placed in TARGET.
1648 SUBTARGET may be used as the target for computing one of EXP's operands. */
1651 expand_builtin_mathfn (tree exp
, rtx target
, rtx subtarget
)
1653 optab builtin_optab
;
1654 rtx op0
, insns
, before_call
;
1655 tree fndecl
= get_callee_fndecl (exp
);
1656 tree arglist
= TREE_OPERAND (exp
, 1);
1657 enum machine_mode mode
;
1658 bool errno_set
= false;
1661 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
1664 arg
= TREE_VALUE (arglist
);
1666 switch (DECL_FUNCTION_CODE (fndecl
))
1669 case BUILT_IN_SQRTF
:
1670 case BUILT_IN_SQRTL
:
1671 errno_set
= ! tree_expr_nonnegative_p (arg
);
1672 builtin_optab
= sqrt_optab
;
1677 errno_set
= true; builtin_optab
= exp_optab
; break;
1678 case BUILT_IN_EXP10
:
1679 case BUILT_IN_EXP10F
:
1680 case BUILT_IN_EXP10L
:
1681 case BUILT_IN_POW10
:
1682 case BUILT_IN_POW10F
:
1683 case BUILT_IN_POW10L
:
1684 errno_set
= true; builtin_optab
= exp10_optab
; break;
1686 case BUILT_IN_EXP2F
:
1687 case BUILT_IN_EXP2L
:
1688 errno_set
= true; builtin_optab
= exp2_optab
; break;
1689 case BUILT_IN_EXPM1
:
1690 case BUILT_IN_EXPM1F
:
1691 case BUILT_IN_EXPM1L
:
1692 errno_set
= true; builtin_optab
= expm1_optab
; break;
1694 case BUILT_IN_LOGBF
:
1695 case BUILT_IN_LOGBL
:
1696 errno_set
= true; builtin_optab
= logb_optab
; break;
1697 case BUILT_IN_ILOGB
:
1698 case BUILT_IN_ILOGBF
:
1699 case BUILT_IN_ILOGBL
:
1700 errno_set
= true; builtin_optab
= ilogb_optab
; break;
1704 errno_set
= true; builtin_optab
= log_optab
; break;
1705 case BUILT_IN_LOG10
:
1706 case BUILT_IN_LOG10F
:
1707 case BUILT_IN_LOG10L
:
1708 errno_set
= true; builtin_optab
= log10_optab
; break;
1710 case BUILT_IN_LOG2F
:
1711 case BUILT_IN_LOG2L
:
1712 errno_set
= true; builtin_optab
= log2_optab
; break;
1713 case BUILT_IN_LOG1P
:
1714 case BUILT_IN_LOG1PF
:
1715 case BUILT_IN_LOG1PL
:
1716 errno_set
= true; builtin_optab
= log1p_optab
; break;
1718 case BUILT_IN_ASINF
:
1719 case BUILT_IN_ASINL
:
1720 builtin_optab
= asin_optab
; break;
1722 case BUILT_IN_ACOSF
:
1723 case BUILT_IN_ACOSL
:
1724 builtin_optab
= acos_optab
; break;
1728 builtin_optab
= tan_optab
; break;
1730 case BUILT_IN_ATANF
:
1731 case BUILT_IN_ATANL
:
1732 builtin_optab
= atan_optab
; break;
1733 case BUILT_IN_FLOOR
:
1734 case BUILT_IN_FLOORF
:
1735 case BUILT_IN_FLOORL
:
1736 builtin_optab
= floor_optab
; break;
1738 case BUILT_IN_CEILF
:
1739 case BUILT_IN_CEILL
:
1740 builtin_optab
= ceil_optab
; break;
1741 case BUILT_IN_TRUNC
:
1742 case BUILT_IN_TRUNCF
:
1743 case BUILT_IN_TRUNCL
:
1744 builtin_optab
= btrunc_optab
; break;
1745 case BUILT_IN_ROUND
:
1746 case BUILT_IN_ROUNDF
:
1747 case BUILT_IN_ROUNDL
:
1748 builtin_optab
= round_optab
; break;
1749 case BUILT_IN_NEARBYINT
:
1750 case BUILT_IN_NEARBYINTF
:
1751 case BUILT_IN_NEARBYINTL
:
1752 builtin_optab
= nearbyint_optab
; break;
1757 /* Make a suitable register to place result in. */
1758 mode
= TYPE_MODE (TREE_TYPE (exp
));
1760 if (! flag_errno_math
|| ! HONOR_NANS (mode
))
1763 /* Before working hard, check whether the instruction is available. */
1764 if (builtin_optab
->handlers
[(int) mode
].insn_code
!= CODE_FOR_nothing
)
1766 target
= gen_reg_rtx (mode
);
1768 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
1769 need to expand the argument again. This way, we will not perform
1770 side-effects more the once. */
1771 narg
= builtin_save_expr (arg
);
1774 arglist
= build_tree_list (NULL_TREE
, arg
);
1775 exp
= build_function_call_expr (fndecl
, arglist
);
1778 op0
= expand_expr (arg
, subtarget
, VOIDmode
, 0);
1783 /* Compute into TARGET.
1784 Set TARGET to wherever the result comes back. */
1785 target
= expand_unop (mode
, builtin_optab
, op0
, target
, 0);
1790 expand_errno_check (exp
, target
);
1792 /* Output the entire sequence. */
1793 insns
= get_insns ();
1799 /* If we were unable to expand via the builtin, stop the sequence
1800 (without outputting the insns) and call to the library function
1801 with the stabilized argument list. */
1805 before_call
= get_last_insn ();
1807 target
= expand_call (exp
, target
, target
== const0_rtx
);
1809 /* If this is a sqrt operation and we don't care about errno, try to
1810 attach a REG_EQUAL note with a SQRT rtx to the emitted libcall.
1811 This allows the semantics of the libcall to be visible to the RTL
1813 if (builtin_optab
== sqrt_optab
&& !errno_set
)
1815 /* Search backwards through the insns emitted by expand_call looking
1816 for the instruction with the REG_RETVAL note. */
1817 rtx last
= get_last_insn ();
1818 while (last
!= before_call
)
1820 if (find_reg_note (last
, REG_RETVAL
, NULL
))
1822 rtx note
= find_reg_note (last
, REG_EQUAL
, NULL
);
1823 /* Check that the REQ_EQUAL note is an EXPR_LIST with
1824 two elements, i.e. symbol_ref(sqrt) and the operand. */
1826 && GET_CODE (note
) == EXPR_LIST
1827 && GET_CODE (XEXP (note
, 0)) == EXPR_LIST
1828 && XEXP (XEXP (note
, 0), 1) != NULL_RTX
1829 && XEXP (XEXP (XEXP (note
, 0), 1), 1) == NULL_RTX
)
1831 rtx operand
= XEXP (XEXP (XEXP (note
, 0), 1), 0);
1832 /* Check operand is a register with expected mode. */
1835 && GET_MODE (operand
) == mode
)
1837 /* Replace the REG_EQUAL note with a SQRT rtx. */
1838 rtx equiv
= gen_rtx_SQRT (mode
, operand
);
1839 set_unique_reg_note (last
, REG_EQUAL
, equiv
);
1844 last
= PREV_INSN (last
);
1851 /* Expand a call to the builtin binary math functions (pow and atan2).
1852 Return 0 if a normal call should be emitted rather than expanding the
1853 function in-line. EXP is the expression that is a call to the builtin
1854 function; if convenient, the result should be placed in TARGET.
1855 SUBTARGET may be used as the target for computing one of EXP's
1859 expand_builtin_mathfn_2 (tree exp
, rtx target
, rtx subtarget
)
1861 optab builtin_optab
;
1862 rtx op0
, op1
, insns
;
1863 tree fndecl
= get_callee_fndecl (exp
);
1864 tree arglist
= TREE_OPERAND (exp
, 1);
1865 tree arg0
, arg1
, temp
, narg
;
1866 enum machine_mode mode
;
1867 bool errno_set
= true;
1870 if (!validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
1873 arg0
= TREE_VALUE (arglist
);
1874 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
1876 switch (DECL_FUNCTION_CODE (fndecl
))
1881 builtin_optab
= pow_optab
; break;
1882 case BUILT_IN_ATAN2
:
1883 case BUILT_IN_ATAN2F
:
1884 case BUILT_IN_ATAN2L
:
1885 builtin_optab
= atan2_optab
; break;
1887 case BUILT_IN_FMODF
:
1888 case BUILT_IN_FMODL
:
1889 builtin_optab
= fmod_optab
; break;
1891 case BUILT_IN_DREMF
:
1892 case BUILT_IN_DREML
:
1893 builtin_optab
= drem_optab
; break;
1898 /* Make a suitable register to place result in. */
1899 mode
= TYPE_MODE (TREE_TYPE (exp
));
1901 /* Before working hard, check whether the instruction is available. */
1902 if (builtin_optab
->handlers
[(int) mode
].insn_code
== CODE_FOR_nothing
)
1905 target
= gen_reg_rtx (mode
);
1907 if (! flag_errno_math
|| ! HONOR_NANS (mode
))
1910 /* Always stabilize the argument list. */
1911 narg
= builtin_save_expr (arg1
);
1914 temp
= build_tree_list (NULL_TREE
, narg
);
1918 temp
= TREE_CHAIN (arglist
);
1920 narg
= builtin_save_expr (arg0
);
1923 arglist
= tree_cons (NULL_TREE
, narg
, temp
);
1927 arglist
= tree_cons (NULL_TREE
, arg0
, temp
);
1930 exp
= build_function_call_expr (fndecl
, arglist
);
1932 op0
= expand_expr (arg0
, subtarget
, VOIDmode
, 0);
1933 op1
= expand_expr (arg1
, 0, VOIDmode
, 0);
1938 /* Compute into TARGET.
1939 Set TARGET to wherever the result comes back. */
1940 target
= expand_binop (mode
, builtin_optab
, op0
, op1
,
1941 target
, 0, OPTAB_DIRECT
);
1943 /* If we were unable to expand via the builtin, stop the sequence
1944 (without outputting the insns) and call to the library function
1945 with the stabilized argument list. */
1949 return expand_call (exp
, target
, target
== const0_rtx
);
1953 expand_errno_check (exp
, target
);
1955 /* Output the entire sequence. */
1956 insns
= get_insns ();
1963 /* Expand a call to the builtin sin and cos math functions.
1964 Return 0 if a normal call should be emitted rather than expanding the
1965 function in-line. EXP is the expression that is a call to the builtin
1966 function; if convenient, the result should be placed in TARGET.
1967 SUBTARGET may be used as the target for computing one of EXP's
1971 expand_builtin_mathfn_3 (tree exp
, rtx target
, rtx subtarget
)
1973 optab builtin_optab
;
1974 rtx op0
, insns
, before_call
;
1975 tree fndecl
= get_callee_fndecl (exp
);
1976 tree arglist
= TREE_OPERAND (exp
, 1);
1977 enum machine_mode mode
;
1978 bool errno_set
= false;
1981 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
1984 arg
= TREE_VALUE (arglist
);
1986 switch (DECL_FUNCTION_CODE (fndecl
))
1994 builtin_optab
= sincos_optab
; break;
1999 /* Make a suitable register to place result in. */
2000 mode
= TYPE_MODE (TREE_TYPE (exp
));
2002 if (! flag_errno_math
|| ! HONOR_NANS (mode
))
2005 /* Check if sincos insn is available, otherwise fallback
2006 to sin or cos insn. */
2007 if (builtin_optab
->handlers
[(int) mode
].insn_code
== CODE_FOR_nothing
) {
2008 switch (DECL_FUNCTION_CODE (fndecl
))
2013 builtin_optab
= sin_optab
; break;
2017 builtin_optab
= cos_optab
; break;
2023 /* Before working hard, check whether the instruction is available. */
2024 if (builtin_optab
->handlers
[(int) mode
].insn_code
!= CODE_FOR_nothing
)
2026 target
= gen_reg_rtx (mode
);
2028 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2029 need to expand the argument again. This way, we will not perform
2030 side-effects more the once. */
2031 narg
= save_expr (arg
);
2034 arglist
= build_tree_list (NULL_TREE
, arg
);
2035 exp
= build_function_call_expr (fndecl
, arglist
);
2038 op0
= expand_expr (arg
, subtarget
, VOIDmode
, 0);
2043 /* Compute into TARGET.
2044 Set TARGET to wherever the result comes back. */
2045 if (builtin_optab
== sincos_optab
)
2047 switch (DECL_FUNCTION_CODE (fndecl
))
2052 if (!expand_twoval_unop (builtin_optab
, op0
, 0, target
, 0))
2058 if (!expand_twoval_unop (builtin_optab
, op0
, target
, 0, 0))
2067 target
= expand_unop (mode
, builtin_optab
, op0
, target
, 0);
2073 expand_errno_check (exp
, target
);
2075 /* Output the entire sequence. */
2076 insns
= get_insns ();
2082 /* If we were unable to expand via the builtin, stop the sequence
2083 (without outputting the insns) and call to the library function
2084 with the stabilized argument list. */
2088 before_call
= get_last_insn ();
2090 target
= expand_call (exp
, target
, target
== const0_rtx
);
2095 /* To evaluate powi(x,n), the floating point value x raised to the
2096 constant integer exponent n, we use a hybrid algorithm that
2097 combines the "window method" with look-up tables. For an
2098 introduction to exponentiation algorithms and "addition chains",
2099 see section 4.6.3, "Evaluation of Powers" of Donald E. Knuth,
2100 "Seminumerical Algorithms", Vol. 2, "The Art of Computer Programming",
2101 3rd Edition, 1998, and Daniel M. Gordon, "A Survey of Fast Exponentiation
2102 Methods", Journal of Algorithms, Vol. 27, pp. 129-146, 1998. */
2104 /* Provide a default value for POWI_MAX_MULTS, the maximum number of
2105 multiplications to inline before calling the system library's pow
2106 function. powi(x,n) requires at worst 2*bits(n)-2 multiplications,
2107 so this default never requires calling pow, powf or powl. */
2109 #ifndef POWI_MAX_MULTS
2110 #define POWI_MAX_MULTS (2*HOST_BITS_PER_WIDE_INT-2)
2113 /* The size of the "optimal power tree" lookup table. All
2114 exponents less than this value are simply looked up in the
2115 powi_table below. This threshold is also used to size the
2116 cache of pseudo registers that hold intermediate results. */
2117 #define POWI_TABLE_SIZE 256
2119 /* The size, in bits of the window, used in the "window method"
2120 exponentiation algorithm. This is equivalent to a radix of
2121 (1<<POWI_WINDOW_SIZE) in the corresponding "m-ary method". */
2122 #define POWI_WINDOW_SIZE 3
2124 /* The following table is an efficient representation of an
2125 "optimal power tree". For each value, i, the corresponding
2126 value, j, in the table states than an optimal evaluation
2127 sequence for calculating pow(x,i) can be found by evaluating
2128 pow(x,j)*pow(x,i-j). An optimal power tree for the first
2129 100 integers is given in Knuth's "Seminumerical algorithms". */
2131 static const unsigned char powi_table
[POWI_TABLE_SIZE
] =
2133 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
2134 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
2135 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
2136 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
2137 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
2138 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
2139 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
2140 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
2141 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
2142 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
2143 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
2144 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
2145 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
2146 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
2147 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
2148 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
2149 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
2150 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
2151 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
2152 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
2153 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
2154 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
2155 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
2156 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
2157 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
2158 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
2159 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
2160 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
2161 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
2162 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
2163 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
2164 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
2168 /* Return the number of multiplications required to calculate
2169 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
2170 subroutine of powi_cost. CACHE is an array indicating
2171 which exponents have already been calculated. */
2174 powi_lookup_cost (unsigned HOST_WIDE_INT n
, bool *cache
)
2176 /* If we've already calculated this exponent, then this evaluation
2177 doesn't require any additional multiplications. */
2182 return powi_lookup_cost (n
- powi_table
[n
], cache
)
2183 + powi_lookup_cost (powi_table
[n
], cache
) + 1;
2186 /* Return the number of multiplications required to calculate
2187 powi(x,n) for an arbitrary x, given the exponent N. This
2188 function needs to be kept in sync with expand_powi below. */
2191 powi_cost (HOST_WIDE_INT n
)
2193 bool cache
[POWI_TABLE_SIZE
];
2194 unsigned HOST_WIDE_INT digit
;
2195 unsigned HOST_WIDE_INT val
;
2201 /* Ignore the reciprocal when calculating the cost. */
2202 val
= (n
< 0) ? -n
: n
;
2204 /* Initialize the exponent cache. */
2205 memset (cache
, 0, POWI_TABLE_SIZE
* sizeof (bool));
2210 while (val
>= POWI_TABLE_SIZE
)
2214 digit
= val
& ((1 << POWI_WINDOW_SIZE
) - 1);
2215 result
+= powi_lookup_cost (digit
, cache
)
2216 + POWI_WINDOW_SIZE
+ 1;
2217 val
>>= POWI_WINDOW_SIZE
;
2226 return result
+ powi_lookup_cost (val
, cache
);
2229 /* Recursive subroutine of expand_powi. This function takes the array,
2230 CACHE, of already calculated exponents and an exponent N and returns
2231 an RTX that corresponds to CACHE[1]**N, as calculated in mode MODE. */
2234 expand_powi_1 (enum machine_mode mode
, unsigned HOST_WIDE_INT n
, rtx
*cache
)
2236 unsigned HOST_WIDE_INT digit
;
2240 if (n
< POWI_TABLE_SIZE
)
2245 target
= gen_reg_rtx (mode
);
2248 op0
= expand_powi_1 (mode
, n
- powi_table
[n
], cache
);
2249 op1
= expand_powi_1 (mode
, powi_table
[n
], cache
);
2253 target
= gen_reg_rtx (mode
);
2254 digit
= n
& ((1 << POWI_WINDOW_SIZE
) - 1);
2255 op0
= expand_powi_1 (mode
, n
- digit
, cache
);
2256 op1
= expand_powi_1 (mode
, digit
, cache
);
2260 target
= gen_reg_rtx (mode
);
2261 op0
= expand_powi_1 (mode
, n
>> 1, cache
);
2265 result
= expand_mult (mode
, op0
, op1
, target
, 0);
2266 if (result
!= target
)
2267 emit_move_insn (target
, result
);
2271 /* Expand the RTL to evaluate powi(x,n) in mode MODE. X is the
2272 floating point operand in mode MODE, and N is the exponent. This
2273 function needs to be kept in sync with powi_cost above. */
2276 expand_powi (rtx x
, enum machine_mode mode
, HOST_WIDE_INT n
)
2278 unsigned HOST_WIDE_INT val
;
2279 rtx cache
[POWI_TABLE_SIZE
];
2283 return CONST1_RTX (mode
);
2285 val
= (n
< 0) ? -n
: n
;
2287 memset (cache
, 0, sizeof (cache
));
2290 result
= expand_powi_1 (mode
, (n
< 0) ? -n
: n
, cache
);
2292 /* If the original exponent was negative, reciprocate the result. */
2294 result
= expand_binop (mode
, sdiv_optab
, CONST1_RTX (mode
),
2295 result
, NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
2300 /* Expand a call to the pow built-in mathematical function. Return 0 if
2301 a normal call should be emitted rather than expanding the function
2302 in-line. EXP is the expression that is a call to the builtin
2303 function; if convenient, the result should be placed in TARGET. */
2306 expand_builtin_pow (tree exp
, rtx target
, rtx subtarget
)
2308 tree arglist
= TREE_OPERAND (exp
, 1);
2311 if (! validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
2314 arg0
= TREE_VALUE (arglist
);
2315 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
2317 if (TREE_CODE (arg1
) == REAL_CST
2318 && ! TREE_CONSTANT_OVERFLOW (arg1
))
2320 REAL_VALUE_TYPE cint
;
2324 c
= TREE_REAL_CST (arg1
);
2325 n
= real_to_integer (&c
);
2326 real_from_integer (&cint
, VOIDmode
, n
, n
< 0 ? -1 : 0, 0);
2327 if (real_identical (&c
, &cint
))
2329 /* If the exponent is -1, 0, 1 or 2, then expand_powi is exact.
2330 Otherwise, check the number of multiplications required.
2331 Note that pow never sets errno for an integer exponent. */
2332 if ((n
>= -1 && n
<= 2)
2333 || (flag_unsafe_math_optimizations
2335 && powi_cost (n
) <= POWI_MAX_MULTS
))
2337 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (exp
));
2338 rtx op
= expand_expr (arg0
, subtarget
, VOIDmode
, 0);
2339 op
= force_reg (mode
, op
);
2340 return expand_powi (op
, mode
, n
);
2345 if (! flag_unsafe_math_optimizations
)
2347 return expand_builtin_mathfn_2 (exp
, target
, subtarget
);
2350 /* Expand expression EXP which is a call to the strlen builtin. Return 0
2351 if we failed the caller should emit a normal call, otherwise
2352 try to get the result in TARGET, if convenient. */
2355 expand_builtin_strlen (tree arglist
, rtx target
,
2356 enum machine_mode target_mode
)
2358 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
2363 tree len
, src
= TREE_VALUE (arglist
);
2364 rtx result
, src_reg
, char_rtx
, before_strlen
;
2365 enum machine_mode insn_mode
= target_mode
, char_mode
;
2366 enum insn_code icode
= CODE_FOR_nothing
;
2369 /* If the length can be computed at compile-time, return it. */
2370 len
= c_strlen (src
, 0);
2372 return expand_expr (len
, target
, target_mode
, EXPAND_NORMAL
);
2374 /* If the length can be computed at compile-time and is constant
2375 integer, but there are side-effects in src, evaluate
2376 src for side-effects, then return len.
2377 E.g. x = strlen (i++ ? "xfoo" + 1 : "bar");
2378 can be optimized into: i++; x = 3; */
2379 len
= c_strlen (src
, 1);
2380 if (len
&& TREE_CODE (len
) == INTEGER_CST
)
2382 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2383 return expand_expr (len
, target
, target_mode
, EXPAND_NORMAL
);
2386 align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
2388 /* If SRC is not a pointer type, don't do this operation inline. */
2392 /* Bail out if we can't compute strlen in the right mode. */
2393 while (insn_mode
!= VOIDmode
)
2395 icode
= strlen_optab
->handlers
[(int) insn_mode
].insn_code
;
2396 if (icode
!= CODE_FOR_nothing
)
2399 insn_mode
= GET_MODE_WIDER_MODE (insn_mode
);
2401 if (insn_mode
== VOIDmode
)
2404 /* Make a place to write the result of the instruction. */
2408 && GET_MODE (result
) == insn_mode
2409 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
2410 result
= gen_reg_rtx (insn_mode
);
2412 /* Make a place to hold the source address. We will not expand
2413 the actual source until we are sure that the expansion will
2414 not fail -- there are trees that cannot be expanded twice. */
2415 src_reg
= gen_reg_rtx (Pmode
);
2417 /* Mark the beginning of the strlen sequence so we can emit the
2418 source operand later. */
2419 before_strlen
= get_last_insn ();
2421 char_rtx
= const0_rtx
;
2422 char_mode
= insn_data
[(int) icode
].operand
[2].mode
;
2423 if (! (*insn_data
[(int) icode
].operand
[2].predicate
) (char_rtx
,
2425 char_rtx
= copy_to_mode_reg (char_mode
, char_rtx
);
2427 pat
= GEN_FCN (icode
) (result
, gen_rtx_MEM (BLKmode
, src_reg
),
2428 char_rtx
, GEN_INT (align
));
2433 /* Now that we are assured of success, expand the source. */
2435 pat
= memory_address (BLKmode
,
2436 expand_expr (src
, src_reg
, ptr_mode
, EXPAND_SUM
));
2438 emit_move_insn (src_reg
, pat
);
2443 emit_insn_after (pat
, before_strlen
);
2445 emit_insn_before (pat
, get_insns ());
2447 /* Return the value in the proper mode for this function. */
2448 if (GET_MODE (result
) == target_mode
)
2450 else if (target
!= 0)
2451 convert_move (target
, result
, 0);
2453 target
= convert_to_mode (target_mode
, result
, 0);
2459 /* Expand a call to the strstr builtin. Return 0 if we failed the
2460 caller should emit a normal call, otherwise try to get the result
2461 in TARGET, if convenient (and in mode MODE if that's convenient). */
2464 expand_builtin_strstr (tree arglist
, rtx target
, enum machine_mode mode
)
2466 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2470 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2472 const char *p1
, *p2
;
2481 const char *r
= strstr (p1
, p2
);
2486 /* Return an offset into the constant string argument. */
2487 tmp
= fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
), s1
,
2488 fold_convert (TREE_TYPE (s1
),
2489 ssize_int (r
- p1
))));
2490 return expand_expr (tmp
, target
, mode
, EXPAND_NORMAL
);
2494 return expand_expr (s1
, target
, mode
, EXPAND_NORMAL
);
2499 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2503 /* New argument list transforming strstr(s1, s2) to
2504 strchr(s1, s2[0]). */
2506 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
2507 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
2508 return expand_expr (build_function_call_expr (fn
, arglist
),
2509 target
, mode
, EXPAND_NORMAL
);
2513 /* Expand a call to the strchr builtin. Return 0 if we failed the
2514 caller should emit a normal call, otherwise try to get the result
2515 in TARGET, if convenient (and in mode MODE if that's convenient). */
2518 expand_builtin_strchr (tree arglist
, rtx target
, enum machine_mode mode
)
2520 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2524 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2527 if (TREE_CODE (s2
) != INTEGER_CST
)
2537 if (target_char_cast (s2
, &c
))
2545 /* Return an offset into the constant string argument. */
2546 tmp
= fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
), s1
,
2547 fold_convert (TREE_TYPE (s1
),
2548 ssize_int (r
- p1
))));
2549 return expand_expr (tmp
, target
, mode
, EXPAND_NORMAL
);
2552 /* FIXME: Should use here strchrM optab so that ports can optimize
2558 /* Expand a call to the strrchr builtin. Return 0 if we failed the
2559 caller should emit a normal call, otherwise try to get the result
2560 in TARGET, if convenient (and in mode MODE if that's convenient). */
2563 expand_builtin_strrchr (tree arglist
, rtx target
, enum machine_mode mode
)
2565 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2569 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2573 if (TREE_CODE (s2
) != INTEGER_CST
)
2582 if (target_char_cast (s2
, &c
))
2585 r
= strrchr (p1
, c
);
2590 /* Return an offset into the constant string argument. */
2591 tmp
= fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
), s1
,
2592 fold_convert (TREE_TYPE (s1
),
2593 ssize_int (r
- p1
))));
2594 return expand_expr (tmp
, target
, mode
, EXPAND_NORMAL
);
2597 if (! integer_zerop (s2
))
2600 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2604 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
2605 return expand_expr (build_function_call_expr (fn
, arglist
),
2606 target
, mode
, EXPAND_NORMAL
);
2610 /* Expand a call to the strpbrk builtin. Return 0 if we failed the
2611 caller should emit a normal call, otherwise try to get the result
2612 in TARGET, if convenient (and in mode MODE if that's convenient). */
2615 expand_builtin_strpbrk (tree arglist
, rtx target
, enum machine_mode mode
)
2617 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2621 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2623 const char *p1
, *p2
;
2632 const char *r
= strpbrk (p1
, p2
);
2637 /* Return an offset into the constant string argument. */
2638 tmp
= fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
), s1
,
2639 fold_convert (TREE_TYPE (s1
),
2640 ssize_int (r
- p1
))));
2641 return expand_expr (tmp
, target
, mode
, EXPAND_NORMAL
);
2646 /* strpbrk(x, "") == NULL.
2647 Evaluate and ignore the arguments in case they had
2649 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2654 return 0; /* Really call strpbrk. */
2656 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
2660 /* New argument list transforming strpbrk(s1, s2) to
2661 strchr(s1, s2[0]). */
2663 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
2664 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
2665 return expand_expr (build_function_call_expr (fn
, arglist
),
2666 target
, mode
, EXPAND_NORMAL
);
2670 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2671 bytes from constant string DATA + OFFSET and return it as target
2675 builtin_memcpy_read_str (void *data
, HOST_WIDE_INT offset
,
2676 enum machine_mode mode
)
2678 const char *str
= (const char *) data
;
2681 || ((unsigned HOST_WIDE_INT
) offset
+ GET_MODE_SIZE (mode
)
2682 > strlen (str
) + 1))
2683 abort (); /* Attempt to read past the end of constant string. */
2685 return c_readstr (str
+ offset
, mode
);
2688 /* Expand a call to the memcpy builtin, with arguments in ARGLIST.
2689 Return 0 if we failed, the caller should emit a normal call,
2690 otherwise try to get the result in TARGET, if convenient (and in
2691 mode MODE if that's convenient). */
2693 expand_builtin_memcpy (tree arglist
, rtx target
, enum machine_mode mode
)
2695 if (!validate_arglist (arglist
,
2696 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2700 tree dest
= TREE_VALUE (arglist
);
2701 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2702 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2703 const char *src_str
;
2704 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2705 unsigned int dest_align
2706 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2707 rtx dest_mem
, src_mem
, dest_addr
, len_rtx
;
2709 /* If DEST is not a pointer type, call the normal function. */
2710 if (dest_align
== 0)
2713 /* If the LEN parameter is zero, return DEST. */
2714 if (integer_zerop (len
))
2716 /* Evaluate and ignore SRC in case it has side-effects. */
2717 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2718 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2721 /* If SRC and DEST are the same (and not volatile), return DEST. */
2722 if (operand_equal_p (src
, dest
, 0))
2724 /* Evaluate and ignore LEN in case it has side-effects. */
2725 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2726 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2729 /* If either SRC is not a pointer type, don't do this
2730 operation in-line. */
2734 dest_mem
= get_memory_rtx (dest
);
2735 set_mem_align (dest_mem
, dest_align
);
2736 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2737 src_str
= c_getstr (src
);
2739 /* If SRC is a string constant and block move would be done
2740 by pieces, we can avoid loading the string from memory
2741 and only stored the computed constants. */
2743 && GET_CODE (len_rtx
) == CONST_INT
2744 && (unsigned HOST_WIDE_INT
) INTVAL (len_rtx
) <= strlen (src_str
) + 1
2745 && can_store_by_pieces (INTVAL (len_rtx
), builtin_memcpy_read_str
,
2746 (void *) src_str
, dest_align
))
2748 dest_mem
= store_by_pieces (dest_mem
, INTVAL (len_rtx
),
2749 builtin_memcpy_read_str
,
2750 (void *) src_str
, dest_align
, 0);
2751 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2752 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2756 src_mem
= get_memory_rtx (src
);
2757 set_mem_align (src_mem
, src_align
);
2759 /* Copy word part most expediently. */
2760 dest_addr
= emit_block_move (dest_mem
, src_mem
, len_rtx
,
2765 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2766 dest_addr
= convert_memory_address (ptr_mode
, dest_addr
);
2772 /* Expand a call to the mempcpy builtin, with arguments in ARGLIST.
2773 Return 0 if we failed the caller should emit a normal call,
2774 otherwise try to get the result in TARGET, if convenient (and in
2775 mode MODE if that's convenient). If ENDP is 0 return the
2776 destination pointer, if ENDP is 1 return the end pointer ala
2777 mempcpy, and if ENDP is 2 return the end pointer minus one ala
2781 expand_builtin_mempcpy (tree arglist
, rtx target
, enum machine_mode mode
,
2784 if (!validate_arglist (arglist
,
2785 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2787 /* If return value is ignored, transform mempcpy into memcpy. */
2788 else if (target
== const0_rtx
)
2790 tree fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2795 return expand_expr (build_function_call_expr (fn
, arglist
),
2796 target
, mode
, EXPAND_NORMAL
);
2800 tree dest
= TREE_VALUE (arglist
);
2801 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2802 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2803 const char *src_str
;
2804 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2805 unsigned int dest_align
2806 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2807 rtx dest_mem
, src_mem
, len_rtx
;
2809 /* If DEST is not a pointer type, call the normal function. */
2810 if (dest_align
== 0)
2813 /* If SRC and DEST are the same (and not volatile), do nothing. */
2814 if (operand_equal_p (src
, dest
, 0))
2820 /* Evaluate and ignore LEN in case it has side-effects. */
2821 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2822 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2826 len
= fold (build2 (MINUS_EXPR
, TREE_TYPE (len
), len
,
2828 len
= fold_convert (TREE_TYPE (dest
), len
);
2829 expr
= fold (build2 (PLUS_EXPR
, TREE_TYPE (dest
), dest
, len
));
2830 return expand_expr (expr
, target
, mode
, EXPAND_NORMAL
);
2833 /* If LEN is not constant, call the normal function. */
2834 if (! host_integerp (len
, 1))
2837 /* If the LEN parameter is zero, return DEST. */
2838 if (tree_low_cst (len
, 1) == 0)
2840 /* Evaluate and ignore SRC in case it has side-effects. */
2841 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2842 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2845 /* If either SRC is not a pointer type, don't do this
2846 operation in-line. */
2850 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2851 src_str
= c_getstr (src
);
2853 /* If SRC is a string constant and block move would be done
2854 by pieces, we can avoid loading the string from memory
2855 and only stored the computed constants. */
2857 && GET_CODE (len_rtx
) == CONST_INT
2858 && (unsigned HOST_WIDE_INT
) INTVAL (len_rtx
) <= strlen (src_str
) + 1
2859 && can_store_by_pieces (INTVAL (len_rtx
), builtin_memcpy_read_str
,
2860 (void *) src_str
, dest_align
))
2862 dest_mem
= get_memory_rtx (dest
);
2863 set_mem_align (dest_mem
, dest_align
);
2864 dest_mem
= store_by_pieces (dest_mem
, INTVAL (len_rtx
),
2865 builtin_memcpy_read_str
,
2866 (void *) src_str
, dest_align
, endp
);
2867 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2868 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2872 if (GET_CODE (len_rtx
) == CONST_INT
2873 && can_move_by_pieces (INTVAL (len_rtx
),
2874 MIN (dest_align
, src_align
)))
2876 dest_mem
= get_memory_rtx (dest
);
2877 set_mem_align (dest_mem
, dest_align
);
2878 src_mem
= get_memory_rtx (src
);
2879 set_mem_align (src_mem
, src_align
);
2880 dest_mem
= move_by_pieces (dest_mem
, src_mem
, INTVAL (len_rtx
),
2881 MIN (dest_align
, src_align
), endp
);
2882 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2883 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
2891 /* Expand expression EXP, which is a call to the memmove builtin. Return 0
2892 if we failed the caller should emit a normal call. */
2895 expand_builtin_memmove (tree arglist
, rtx target
, enum machine_mode mode
)
2897 if (!validate_arglist (arglist
,
2898 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2902 tree dest
= TREE_VALUE (arglist
);
2903 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
2904 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2906 unsigned int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
2907 unsigned int dest_align
2908 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2910 /* If DEST is not a pointer type, call the normal function. */
2911 if (dest_align
== 0)
2914 /* If the LEN parameter is zero, return DEST. */
2915 if (integer_zerop (len
))
2917 /* Evaluate and ignore SRC in case it has side-effects. */
2918 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2919 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2922 /* If SRC and DEST are the same (and not volatile), return DEST. */
2923 if (operand_equal_p (src
, dest
, 0))
2925 /* Evaluate and ignore LEN in case it has side-effects. */
2926 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2927 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
2930 /* If either SRC is not a pointer type, don't do this
2931 operation in-line. */
2935 /* If src is categorized for a readonly section we can use
2937 if (readonly_data_expr (src
))
2939 tree
const fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
2942 return expand_expr (build_function_call_expr (fn
, arglist
),
2943 target
, mode
, EXPAND_NORMAL
);
2946 /* Otherwise, call the normal function. */
2951 /* Expand expression EXP, which is a call to the bcopy builtin. Return 0
2952 if we failed the caller should emit a normal call. */
2955 expand_builtin_bcopy (tree arglist
)
2957 tree src
, dest
, size
, newarglist
;
2959 if (!validate_arglist (arglist
,
2960 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2963 src
= TREE_VALUE (arglist
);
2964 dest
= TREE_VALUE (TREE_CHAIN (arglist
));
2965 size
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2967 /* New argument list transforming bcopy(ptr x, ptr y, int z) to
2968 memmove(ptr y, ptr x, size_t z). This is done this way
2969 so that if it isn't expanded inline, we fallback to
2970 calling bcopy instead of memmove. */
2972 newarglist
= build_tree_list (NULL_TREE
, fold_convert (sizetype
, size
));
2973 newarglist
= tree_cons (NULL_TREE
, src
, newarglist
);
2974 newarglist
= tree_cons (NULL_TREE
, dest
, newarglist
);
2976 return expand_builtin_memmove (newarglist
, const0_rtx
, VOIDmode
);
2979 /* Expand expression EXP, which is a call to the strcpy builtin. Return 0
2980 if we failed the caller should emit a normal call, otherwise try to get
2981 the result in TARGET, if convenient (and in mode MODE if that's
2985 expand_builtin_strcpy (tree arglist
, rtx target
, enum machine_mode mode
)
2987 tree fn
, len
, src
, dst
;
2989 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2992 src
= TREE_VALUE (TREE_CHAIN (arglist
));
2993 dst
= TREE_VALUE (arglist
);
2995 /* If SRC and DST are equal (and not volatile), return DST. */
2996 if (operand_equal_p (src
, dst
, 0))
2997 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
2999 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
3003 len
= c_strlen (src
, 1);
3004 if (len
== 0 || TREE_SIDE_EFFECTS (len
))
3007 len
= size_binop (PLUS_EXPR
, len
, ssize_int (1));
3008 arglist
= build_tree_list (NULL_TREE
, len
);
3009 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
3010 arglist
= tree_cons (NULL_TREE
, dst
, arglist
);
3011 return expand_expr (build_function_call_expr (fn
, arglist
),
3012 target
, mode
, EXPAND_NORMAL
);
3015 /* Expand a call to the stpcpy builtin, with arguments in ARGLIST.
3016 Return 0 if we failed the caller should emit a normal call,
3017 otherwise try to get the result in TARGET, if convenient (and in
3018 mode MODE if that's convenient). */
3021 expand_builtin_stpcpy (tree arglist
, rtx target
, enum machine_mode mode
)
3023 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3029 /* If return value is ignored, transform stpcpy into strcpy. */
3030 if (target
== const0_rtx
)
3032 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
3036 return expand_expr (build_function_call_expr (fn
, arglist
),
3037 target
, mode
, EXPAND_NORMAL
);
3040 /* Ensure we get an actual string whose length can be evaluated at
3041 compile-time, not an expression containing a string. This is
3042 because the latter will potentially produce pessimized code
3043 when used to produce the return value. */
3044 src
= TREE_VALUE (TREE_CHAIN (arglist
));
3045 if (! c_getstr (src
) || ! (len
= c_strlen (src
, 0)))
3048 dst
= TREE_VALUE (arglist
);
3049 len
= fold (size_binop (PLUS_EXPR
, len
, ssize_int (1)));
3050 arglist
= build_tree_list (NULL_TREE
, len
);
3051 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
3052 arglist
= tree_cons (NULL_TREE
, dst
, arglist
);
3053 return expand_builtin_mempcpy (arglist
, target
, mode
, /*endp=*/2);
3057 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
3058 bytes from constant string DATA + OFFSET and return it as target
3062 builtin_strncpy_read_str (void *data
, HOST_WIDE_INT offset
,
3063 enum machine_mode mode
)
3065 const char *str
= (const char *) data
;
3067 if ((unsigned HOST_WIDE_INT
) offset
> strlen (str
))
3070 return c_readstr (str
+ offset
, mode
);
3073 /* Expand expression EXP, which is a call to the strncpy builtin. Return 0
3074 if we failed the caller should emit a normal call. */
3077 expand_builtin_strncpy (tree arglist
, rtx target
, enum machine_mode mode
)
3079 if (!validate_arglist (arglist
,
3080 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3084 tree slen
= c_strlen (TREE_VALUE (TREE_CHAIN (arglist
)), 1);
3085 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3088 /* We must be passed a constant len parameter. */
3089 if (TREE_CODE (len
) != INTEGER_CST
)
3092 /* If the len parameter is zero, return the dst parameter. */
3093 if (integer_zerop (len
))
3095 /* Evaluate and ignore the src argument in case it has
3097 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
3098 VOIDmode
, EXPAND_NORMAL
);
3099 /* Return the dst parameter. */
3100 return expand_expr (TREE_VALUE (arglist
), target
, mode
,
3104 /* Now, we must be passed a constant src ptr parameter. */
3105 if (slen
== 0 || TREE_CODE (slen
) != INTEGER_CST
)
3108 slen
= size_binop (PLUS_EXPR
, slen
, ssize_int (1));
3110 /* We're required to pad with trailing zeros if the requested
3111 len is greater than strlen(s2)+1. In that case try to
3112 use store_by_pieces, if it fails, punt. */
3113 if (tree_int_cst_lt (slen
, len
))
3115 tree dest
= TREE_VALUE (arglist
);
3116 unsigned int dest_align
3117 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
3118 const char *p
= c_getstr (TREE_VALUE (TREE_CHAIN (arglist
)));
3121 if (!p
|| dest_align
== 0 || !host_integerp (len
, 1)
3122 || !can_store_by_pieces (tree_low_cst (len
, 1),
3123 builtin_strncpy_read_str
,
3124 (void *) p
, dest_align
))
3127 dest_mem
= get_memory_rtx (dest
);
3128 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
3129 builtin_strncpy_read_str
,
3130 (void *) p
, dest_align
, 0);
3131 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3132 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
3136 /* OK transform into builtin memcpy. */
3137 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
3140 return expand_expr (build_function_call_expr (fn
, arglist
),
3141 target
, mode
, EXPAND_NORMAL
);
3145 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
3146 bytes from constant string DATA + OFFSET and return it as target
3150 builtin_memset_read_str (void *data
, HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
3151 enum machine_mode mode
)
3153 const char *c
= (const char *) data
;
3154 char *p
= alloca (GET_MODE_SIZE (mode
));
3156 memset (p
, *c
, GET_MODE_SIZE (mode
));
3158 return c_readstr (p
, mode
);
3161 /* Callback routine for store_by_pieces. Return the RTL of a register
3162 containing GET_MODE_SIZE (MODE) consecutive copies of the unsigned
3163 char value given in the RTL register data. For example, if mode is
3164 4 bytes wide, return the RTL for 0x01010101*data. */
3167 builtin_memset_gen_str (void *data
, HOST_WIDE_INT offset ATTRIBUTE_UNUSED
,
3168 enum machine_mode mode
)
3174 size
= GET_MODE_SIZE (mode
);
3179 memset (p
, 1, size
);
3180 coeff
= c_readstr (p
, mode
);
3182 target
= convert_to_mode (mode
, (rtx
) data
, 1);
3183 target
= expand_mult (mode
, target
, coeff
, NULL_RTX
, 1);
3184 return force_reg (mode
, target
);
3187 /* Expand expression EXP, which is a call to the memset builtin. Return 0
3188 if we failed the caller should emit a normal call, otherwise try to get
3189 the result in TARGET, if convenient (and in mode MODE if that's
3193 expand_builtin_memset (tree arglist
, rtx target
, enum machine_mode mode
)
3195 if (!validate_arglist (arglist
,
3196 POINTER_TYPE
, INTEGER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3200 tree dest
= TREE_VALUE (arglist
);
3201 tree val
= TREE_VALUE (TREE_CHAIN (arglist
));
3202 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3205 unsigned int dest_align
3206 = get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
3207 rtx dest_mem
, dest_addr
, len_rtx
;
3209 /* If DEST is not a pointer type, don't do this
3210 operation in-line. */
3211 if (dest_align
== 0)
3214 /* If the LEN parameter is zero, return DEST. */
3215 if (integer_zerop (len
))
3217 /* Evaluate and ignore VAL in case it has side-effects. */
3218 expand_expr (val
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3219 return expand_expr (dest
, target
, mode
, EXPAND_NORMAL
);
3222 if (TREE_CODE (val
) != INTEGER_CST
)
3226 if (!host_integerp (len
, 1))
3229 if (optimize_size
&& tree_low_cst (len
, 1) > 1)
3232 /* Assume that we can memset by pieces if we can store the
3233 * the coefficients by pieces (in the required modes).
3234 * We can't pass builtin_memset_gen_str as that emits RTL. */
3236 if (!can_store_by_pieces (tree_low_cst (len
, 1),
3237 builtin_memset_read_str
,
3241 val
= fold (build1 (CONVERT_EXPR
, unsigned_char_type_node
, val
));
3242 val_rtx
= expand_expr (val
, NULL_RTX
, VOIDmode
, 0);
3243 val_rtx
= force_reg (TYPE_MODE (unsigned_char_type_node
),
3245 dest_mem
= get_memory_rtx (dest
);
3246 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
3247 builtin_memset_gen_str
,
3248 val_rtx
, dest_align
, 0);
3249 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3250 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
3254 if (target_char_cast (val
, &c
))
3259 if (!host_integerp (len
, 1))
3261 if (!can_store_by_pieces (tree_low_cst (len
, 1),
3262 builtin_memset_read_str
, &c
,
3266 dest_mem
= get_memory_rtx (dest
);
3267 store_by_pieces (dest_mem
, tree_low_cst (len
, 1),
3268 builtin_memset_read_str
,
3270 dest_mem
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3271 dest_mem
= convert_memory_address (ptr_mode
, dest_mem
);
3275 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3277 dest_mem
= get_memory_rtx (dest
);
3278 set_mem_align (dest_mem
, dest_align
);
3279 dest_addr
= clear_storage (dest_mem
, len_rtx
);
3283 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
3284 dest_addr
= convert_memory_address (ptr_mode
, dest_addr
);
3291 /* Expand expression EXP, which is a call to the bzero builtin. Return 0
3292 if we failed the caller should emit a normal call. */
3295 expand_builtin_bzero (tree arglist
)
3297 tree dest
, size
, newarglist
;
3299 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3302 dest
= TREE_VALUE (arglist
);
3303 size
= TREE_VALUE (TREE_CHAIN (arglist
));
3305 /* New argument list transforming bzero(ptr x, int y) to
3306 memset(ptr x, int 0, size_t y). This is done this way
3307 so that if it isn't expanded inline, we fallback to
3308 calling bzero instead of memset. */
3310 newarglist
= build_tree_list (NULL_TREE
, fold_convert (sizetype
, size
));
3311 newarglist
= tree_cons (NULL_TREE
, integer_zero_node
, newarglist
);
3312 newarglist
= tree_cons (NULL_TREE
, dest
, newarglist
);
3314 return expand_builtin_memset (newarglist
, const0_rtx
, VOIDmode
);
3317 /* Expand expression EXP, which is a call to the memcmp built-in function.
3318 ARGLIST is the argument list for this call. Return 0 if we failed and the
3319 caller should emit a normal call, otherwise try to get the result in
3320 TARGET, if convenient (and in mode MODE, if that's convenient). */
3323 expand_builtin_memcmp (tree exp ATTRIBUTE_UNUSED
, tree arglist
, rtx target
,
3324 enum machine_mode mode
)
3326 tree arg1
, arg2
, len
;
3327 const char *p1
, *p2
;
3329 if (!validate_arglist (arglist
,
3330 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3333 arg1
= TREE_VALUE (arglist
);
3334 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3335 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3337 /* If the len parameter is zero, return zero. */
3338 if (integer_zerop (len
))
3340 /* Evaluate and ignore arg1 and arg2 in case they have
3342 expand_expr (arg1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3343 expand_expr (arg2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3347 /* If both arguments are equal (and not volatile), return zero. */
3348 if (operand_equal_p (arg1
, arg2
, 0))
3350 /* Evaluate and ignore len in case it has side-effects. */
3351 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3355 p1
= c_getstr (arg1
);
3356 p2
= c_getstr (arg2
);
3358 /* If all arguments are constant, and the value of len is not greater
3359 than the lengths of arg1 and arg2, evaluate at compile-time. */
3360 if (host_integerp (len
, 1) && p1
&& p2
3361 && compare_tree_int (len
, strlen (p1
) + 1) <= 0
3362 && compare_tree_int (len
, strlen (p2
) + 1) <= 0)
3364 const int r
= memcmp (p1
, p2
, tree_low_cst (len
, 1));
3366 return (r
< 0 ? constm1_rtx
: (r
> 0 ? const1_rtx
: const0_rtx
));
3369 /* If len parameter is one, return an expression corresponding to
3370 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
3371 if (integer_onep (len
))
3373 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3374 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3376 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3377 build1 (INDIRECT_REF
, cst_uchar_node
,
3378 fold_convert (cst_uchar_ptr_node
, arg1
))));
3380 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3381 build1 (INDIRECT_REF
, cst_uchar_node
,
3382 fold_convert (cst_uchar_ptr_node
, arg2
))));
3383 tree result
= fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3384 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3387 #if defined HAVE_cmpmemsi || defined HAVE_cmpstrsi
3389 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3394 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3396 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3397 enum machine_mode insn_mode
;
3399 #ifdef HAVE_cmpmemsi
3401 insn_mode
= insn_data
[(int) CODE_FOR_cmpmemsi
].operand
[0].mode
;
3404 #ifdef HAVE_cmpstrsi
3406 insn_mode
= insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3411 /* If we don't have POINTER_TYPE, call the function. */
3412 if (arg1_align
== 0 || arg2_align
== 0)
3415 /* Make a place to write the result of the instruction. */
3418 && REG_P (result
) && GET_MODE (result
) == insn_mode
3419 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3420 result
= gen_reg_rtx (insn_mode
);
3422 arg1_rtx
= get_memory_rtx (arg1
);
3423 arg2_rtx
= get_memory_rtx (arg2
);
3424 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3425 #ifdef HAVE_cmpmemsi
3427 insn
= gen_cmpmemsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3428 GEN_INT (MIN (arg1_align
, arg2_align
)));
3431 #ifdef HAVE_cmpstrsi
3433 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3434 GEN_INT (MIN (arg1_align
, arg2_align
)));
3442 emit_library_call_value (memcmp_libfunc
, result
, LCT_PURE_MAKE_BLOCK
,
3443 TYPE_MODE (integer_type_node
), 3,
3444 XEXP (arg1_rtx
, 0), Pmode
,
3445 XEXP (arg2_rtx
, 0), Pmode
,
3446 convert_to_mode (TYPE_MODE (sizetype
), arg3_rtx
,
3447 TYPE_UNSIGNED (sizetype
)),
3448 TYPE_MODE (sizetype
));
3450 /* Return the value in the proper mode for this function. */
3451 mode
= TYPE_MODE (TREE_TYPE (exp
));
3452 if (GET_MODE (result
) == mode
)
3454 else if (target
!= 0)
3456 convert_move (target
, result
, 0);
3460 return convert_to_mode (mode
, result
, 0);
3467 /* Expand expression EXP, which is a call to the strcmp builtin. Return 0
3468 if we failed the caller should emit a normal call, otherwise try to get
3469 the result in TARGET, if convenient. */
3472 expand_builtin_strcmp (tree exp
, rtx target
, enum machine_mode mode
)
3474 tree arglist
= TREE_OPERAND (exp
, 1);
3476 const char *p1
, *p2
;
3478 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3481 arg1
= TREE_VALUE (arglist
);
3482 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3484 /* If both arguments are equal (and not volatile), return zero. */
3485 if (operand_equal_p (arg1
, arg2
, 0))
3488 p1
= c_getstr (arg1
);
3489 p2
= c_getstr (arg2
);
3493 const int i
= strcmp (p1
, p2
);
3494 return (i
< 0 ? constm1_rtx
: (i
> 0 ? const1_rtx
: const0_rtx
));
3497 /* If either arg is "", return an expression corresponding to
3498 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
3499 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
3501 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3502 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3504 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3505 build1 (INDIRECT_REF
, cst_uchar_node
,
3506 fold_convert (cst_uchar_ptr_node
, arg1
))));
3508 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3509 build1 (INDIRECT_REF
, cst_uchar_node
,
3510 fold_convert (cst_uchar_ptr_node
, arg2
))));
3511 tree result
= fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3512 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3515 #ifdef HAVE_cmpstrsi
3518 tree len
, len1
, len2
;
3519 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3524 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3526 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3527 enum machine_mode insn_mode
3528 = insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3530 len1
= c_strlen (arg1
, 1);
3531 len2
= c_strlen (arg2
, 1);
3534 len1
= size_binop (PLUS_EXPR
, ssize_int (1), len1
);
3536 len2
= size_binop (PLUS_EXPR
, ssize_int (1), len2
);
3538 /* If we don't have a constant length for the first, use the length
3539 of the second, if we know it. We don't require a constant for
3540 this case; some cost analysis could be done if both are available
3541 but neither is constant. For now, assume they're equally cheap,
3542 unless one has side effects. If both strings have constant lengths,
3549 else if (TREE_SIDE_EFFECTS (len1
))
3551 else if (TREE_SIDE_EFFECTS (len2
))
3553 else if (TREE_CODE (len1
) != INTEGER_CST
)
3555 else if (TREE_CODE (len2
) != INTEGER_CST
)
3557 else if (tree_int_cst_lt (len1
, len2
))
3562 /* If both arguments have side effects, we cannot optimize. */
3563 if (!len
|| TREE_SIDE_EFFECTS (len
))
3566 /* If we don't have POINTER_TYPE, call the function. */
3567 if (arg1_align
== 0 || arg2_align
== 0)
3570 /* Make a place to write the result of the instruction. */
3573 && REG_P (result
) && GET_MODE (result
) == insn_mode
3574 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3575 result
= gen_reg_rtx (insn_mode
);
3577 /* Stabilize the arguments in case gen_cmpstrsi fails. */
3578 arg1
= builtin_save_expr (arg1
);
3579 arg2
= builtin_save_expr (arg2
);
3581 arg1_rtx
= get_memory_rtx (arg1
);
3582 arg2_rtx
= get_memory_rtx (arg2
);
3583 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3584 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3585 GEN_INT (MIN (arg1_align
, arg2_align
)));
3590 /* Return the value in the proper mode for this function. */
3591 mode
= TYPE_MODE (TREE_TYPE (exp
));
3592 if (GET_MODE (result
) == mode
)
3595 return convert_to_mode (mode
, result
, 0);
3596 convert_move (target
, result
, 0);
3600 /* Expand the library call ourselves using a stabilized argument
3601 list to avoid re-evaluating the function's arguments twice. */
3602 arglist
= build_tree_list (NULL_TREE
, arg2
);
3603 arglist
= tree_cons (NULL_TREE
, arg1
, arglist
);
3604 fndecl
= get_callee_fndecl (exp
);
3605 exp
= build_function_call_expr (fndecl
, arglist
);
3606 return expand_call (exp
, target
, target
== const0_rtx
);
3612 /* Expand expression EXP, which is a call to the strncmp builtin. Return 0
3613 if we failed the caller should emit a normal call, otherwise try to get
3614 the result in TARGET, if convenient. */
3617 expand_builtin_strncmp (tree exp
, rtx target
, enum machine_mode mode
)
3619 tree arglist
= TREE_OPERAND (exp
, 1);
3620 tree arg1
, arg2
, arg3
;
3621 const char *p1
, *p2
;
3623 if (!validate_arglist (arglist
,
3624 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3627 arg1
= TREE_VALUE (arglist
);
3628 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
3629 arg3
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3631 /* If the len parameter is zero, return zero. */
3632 if (integer_zerop (arg3
))
3634 /* Evaluate and ignore arg1 and arg2 in case they have
3636 expand_expr (arg1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3637 expand_expr (arg2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3641 /* If arg1 and arg2 are equal (and not volatile), return zero. */
3642 if (operand_equal_p (arg1
, arg2
, 0))
3644 /* Evaluate and ignore arg3 in case it has side-effects. */
3645 expand_expr (arg3
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3649 p1
= c_getstr (arg1
);
3650 p2
= c_getstr (arg2
);
3652 /* If all arguments are constant, evaluate at compile-time. */
3653 if (host_integerp (arg3
, 1) && p1
&& p2
)
3655 const int r
= strncmp (p1
, p2
, tree_low_cst (arg3
, 1));
3656 return (r
< 0 ? constm1_rtx
: (r
> 0 ? const1_rtx
: const0_rtx
));
3659 /* If len == 1 or (either string parameter is "" and (len >= 1)),
3660 return (*(const u_char*)arg1 - *(const u_char*)arg2). */
3661 if (host_integerp (arg3
, 1)
3662 && (tree_low_cst (arg3
, 1) == 1
3663 || (tree_low_cst (arg3
, 1) > 1
3664 && ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0')))))
3666 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
3667 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
3669 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3670 build1 (INDIRECT_REF
, cst_uchar_node
,
3671 fold_convert (cst_uchar_ptr_node
, arg1
))));
3673 fold (build1 (CONVERT_EXPR
, integer_type_node
,
3674 build1 (INDIRECT_REF
, cst_uchar_node
,
3675 fold_convert (cst_uchar_ptr_node
, arg2
))));
3676 tree result
= fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
3677 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
3680 /* If c_strlen can determine an expression for one of the string
3681 lengths, and it doesn't have side effects, then emit cmpstrsi
3682 using length MIN(strlen(string)+1, arg3). */
3683 #ifdef HAVE_cmpstrsi
3686 tree len
, len1
, len2
;
3687 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
3692 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3694 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
3695 enum machine_mode insn_mode
3696 = insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
3698 len1
= c_strlen (arg1
, 1);
3699 len2
= c_strlen (arg2
, 1);
3702 len1
= size_binop (PLUS_EXPR
, ssize_int (1), len1
);
3704 len2
= size_binop (PLUS_EXPR
, ssize_int (1), len2
);
3706 /* If we don't have a constant length for the first, use the length
3707 of the second, if we know it. We don't require a constant for
3708 this case; some cost analysis could be done if both are available
3709 but neither is constant. For now, assume they're equally cheap,
3710 unless one has side effects. If both strings have constant lengths,
3717 else if (TREE_SIDE_EFFECTS (len1
))
3719 else if (TREE_SIDE_EFFECTS (len2
))
3721 else if (TREE_CODE (len1
) != INTEGER_CST
)
3723 else if (TREE_CODE (len2
) != INTEGER_CST
)
3725 else if (tree_int_cst_lt (len1
, len2
))
3730 /* If both arguments have side effects, we cannot optimize. */
3731 if (!len
|| TREE_SIDE_EFFECTS (len
))
3734 /* The actual new length parameter is MIN(len,arg3). */
3735 len
= fold (build2 (MIN_EXPR
, TREE_TYPE (len
), len
, arg3
));
3737 /* If we don't have POINTER_TYPE, call the function. */
3738 if (arg1_align
== 0 || arg2_align
== 0)
3741 /* Make a place to write the result of the instruction. */
3744 && REG_P (result
) && GET_MODE (result
) == insn_mode
3745 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
3746 result
= gen_reg_rtx (insn_mode
);
3748 /* Stabilize the arguments in case gen_cmpstrsi fails. */
3749 arg1
= builtin_save_expr (arg1
);
3750 arg2
= builtin_save_expr (arg2
);
3751 len
= builtin_save_expr (len
);
3753 arg1_rtx
= get_memory_rtx (arg1
);
3754 arg2_rtx
= get_memory_rtx (arg2
);
3755 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
3756 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
3757 GEN_INT (MIN (arg1_align
, arg2_align
)));
3762 /* Return the value in the proper mode for this function. */
3763 mode
= TYPE_MODE (TREE_TYPE (exp
));
3764 if (GET_MODE (result
) == mode
)
3767 return convert_to_mode (mode
, result
, 0);
3768 convert_move (target
, result
, 0);
3772 /* Expand the library call ourselves using a stabilized argument
3773 list to avoid re-evaluating the function's arguments twice. */
3774 arglist
= build_tree_list (NULL_TREE
, len
);
3775 arglist
= tree_cons (NULL_TREE
, arg2
, arglist
);
3776 arglist
= tree_cons (NULL_TREE
, arg1
, arglist
);
3777 fndecl
= get_callee_fndecl (exp
);
3778 exp
= build_function_call_expr (fndecl
, arglist
);
3779 return expand_call (exp
, target
, target
== const0_rtx
);
3785 /* Expand expression EXP, which is a call to the strcat builtin.
3786 Return 0 if we failed the caller should emit a normal call,
3787 otherwise try to get the result in TARGET, if convenient. */
3790 expand_builtin_strcat (tree arglist
, rtx target
, enum machine_mode mode
)
3792 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3796 tree dst
= TREE_VALUE (arglist
),
3797 src
= TREE_VALUE (TREE_CHAIN (arglist
));
3798 const char *p
= c_getstr (src
);
3802 /* If the string length is zero, return the dst parameter. */
3804 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3805 else if (!optimize_size
)
3807 /* Otherwise if !optimize_size, see if we can store by
3808 pieces into (dst + strlen(dst)). */
3809 tree newdst
, arglist
,
3810 strlen_fn
= implicit_built_in_decls
[BUILT_IN_STRLEN
];
3812 /* This is the length argument. */
3813 arglist
= build_tree_list (NULL_TREE
,
3814 fold (size_binop (PLUS_EXPR
,
3817 /* Prepend src argument. */
3818 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
3820 /* We're going to use dst more than once. */
3821 dst
= builtin_save_expr (dst
);
3823 /* Create strlen (dst). */
3825 fold (build_function_call_expr (strlen_fn
,
3826 build_tree_list (NULL_TREE
,
3828 /* Create (dst + strlen (dst)). */
3829 newdst
= fold (build2 (PLUS_EXPR
, TREE_TYPE (dst
), dst
, newdst
));
3831 /* Prepend the new dst argument. */
3832 arglist
= tree_cons (NULL_TREE
, newdst
, arglist
);
3834 /* We don't want to get turned into a memcpy if the
3835 target is const0_rtx, i.e. when the return value
3836 isn't used. That would produce pessimized code so
3837 pass in a target of zero, it should never actually be
3838 used. If this was successful return the original
3839 dst, not the result of mempcpy. */
3840 if (expand_builtin_mempcpy (arglist
, /*target=*/0, mode
, /*endp=*/0))
3841 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3851 /* Expand expression EXP, which is a call to the strncat builtin.
3852 Return 0 if we failed the caller should emit a normal call,
3853 otherwise try to get the result in TARGET, if convenient. */
3856 expand_builtin_strncat (tree arglist
, rtx target
, enum machine_mode mode
)
3858 if (!validate_arglist (arglist
,
3859 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3863 tree dst
= TREE_VALUE (arglist
),
3864 src
= TREE_VALUE (TREE_CHAIN (arglist
)),
3865 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
3866 const char *p
= c_getstr (src
);
3868 /* If the requested length is zero, or the src parameter string
3869 length is zero, return the dst parameter. */
3870 if (integer_zerop (len
) || (p
&& *p
== '\0'))
3872 /* Evaluate and ignore the src and len parameters in case
3873 they have side-effects. */
3874 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3875 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3876 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
3879 /* If the requested len is greater than or equal to the string
3880 length, call strcat. */
3881 if (TREE_CODE (len
) == INTEGER_CST
&& p
3882 && compare_tree_int (len
, strlen (p
)) >= 0)
3885 = tree_cons (NULL_TREE
, dst
, build_tree_list (NULL_TREE
, src
));
3886 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCAT
];
3888 /* If the replacement _DECL isn't initialized, don't do the
3893 return expand_expr (build_function_call_expr (fn
, newarglist
),
3894 target
, mode
, EXPAND_NORMAL
);
3900 /* Expand expression EXP, which is a call to the strspn builtin.
3901 Return 0 if we failed the caller should emit a normal call,
3902 otherwise try to get the result in TARGET, if convenient. */
3905 expand_builtin_strspn (tree arglist
, rtx target
, enum machine_mode mode
)
3907 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3911 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
3912 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
3914 /* If both arguments are constants, evaluate at compile-time. */
3917 const size_t r
= strspn (p1
, p2
);
3918 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
3921 /* If either argument is "", return 0. */
3922 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
3924 /* Evaluate and ignore both arguments in case either one has
3926 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3927 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3934 /* Expand expression EXP, which is a call to the strcspn builtin.
3935 Return 0 if we failed the caller should emit a normal call,
3936 otherwise try to get the result in TARGET, if convenient. */
3939 expand_builtin_strcspn (tree arglist
, rtx target
, enum machine_mode mode
)
3941 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
3945 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
3946 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
3948 /* If both arguments are constants, evaluate at compile-time. */
3951 const size_t r
= strcspn (p1
, p2
);
3952 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
3955 /* If the first argument is "", return 0. */
3956 if (p1
&& *p1
== '\0')
3958 /* Evaluate and ignore argument s2 in case it has
3960 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3964 /* If the second argument is "", return __builtin_strlen(s1). */
3965 if (p2
&& *p2
== '\0')
3967 tree newarglist
= build_tree_list (NULL_TREE
, s1
),
3968 fn
= implicit_built_in_decls
[BUILT_IN_STRLEN
];
3970 /* If the replacement _DECL isn't initialized, don't do the
3975 return expand_expr (build_function_call_expr (fn
, newarglist
),
3976 target
, mode
, EXPAND_NORMAL
);
3982 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
3983 if that's convenient. */
3986 expand_builtin_saveregs (void)
3990 /* Don't do __builtin_saveregs more than once in a function.
3991 Save the result of the first call and reuse it. */
3992 if (saveregs_value
!= 0)
3993 return saveregs_value
;
3995 /* When this function is called, it means that registers must be
3996 saved on entry to this function. So we migrate the call to the
3997 first insn of this function. */
4001 /* Do whatever the machine needs done in this case. */
4002 val
= targetm
.calls
.expand_builtin_saveregs ();
4007 saveregs_value
= val
;
4009 /* Put the insns after the NOTE that starts the function. If this
4010 is inside a start_sequence, make the outer-level insn chain current, so
4011 the code is placed at the start of the function. */
4012 push_topmost_sequence ();
4013 emit_insn_after (seq
, entry_of_function ());
4014 pop_topmost_sequence ();
4019 /* __builtin_args_info (N) returns word N of the arg space info
4020 for the current function. The number and meanings of words
4021 is controlled by the definition of CUMULATIVE_ARGS. */
4024 expand_builtin_args_info (tree arglist
)
4026 int nwords
= sizeof (CUMULATIVE_ARGS
) / sizeof (int);
4027 int *word_ptr
= (int *) ¤t_function_args_info
;
4029 if (sizeof (CUMULATIVE_ARGS
) % sizeof (int) != 0)
4034 if (!host_integerp (TREE_VALUE (arglist
), 0))
4035 error ("argument of `__builtin_args_info' must be constant");
4038 HOST_WIDE_INT wordnum
= tree_low_cst (TREE_VALUE (arglist
), 0);
4040 if (wordnum
< 0 || wordnum
>= nwords
)
4041 error ("argument of `__builtin_args_info' out of range");
4043 return GEN_INT (word_ptr
[wordnum
]);
4047 error ("missing argument in `__builtin_args_info'");
4052 /* Expand ARGLIST, from a call to __builtin_next_arg. */
4055 expand_builtin_next_arg (tree arglist
)
4057 tree fntype
= TREE_TYPE (current_function_decl
);
4059 if (TYPE_ARG_TYPES (fntype
) == 0
4060 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype
)))
4063 error ("`va_start' used in function with fixed args");
4069 tree last_parm
= tree_last (DECL_ARGUMENTS (current_function_decl
));
4070 tree arg
= TREE_VALUE (arglist
);
4072 /* Strip off all nops for the sake of the comparison. This
4073 is not quite the same as STRIP_NOPS. It does more.
4074 We must also strip off INDIRECT_EXPR for C++ reference
4076 while (TREE_CODE (arg
) == NOP_EXPR
4077 || TREE_CODE (arg
) == CONVERT_EXPR
4078 || TREE_CODE (arg
) == NON_LVALUE_EXPR
4079 || TREE_CODE (arg
) == INDIRECT_REF
)
4080 arg
= TREE_OPERAND (arg
, 0);
4081 if (arg
!= last_parm
)
4082 warning ("second parameter of `va_start' not last named argument");
4085 /* Evidently an out of date version of <stdarg.h>; can't validate
4086 va_start's second argument, but can still work as intended. */
4087 warning ("`__builtin_next_arg' called without an argument");
4089 return expand_binop (Pmode
, add_optab
,
4090 current_function_internal_arg_pointer
,
4091 current_function_arg_offset_rtx
,
4092 NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
4095 /* Make it easier for the backends by protecting the valist argument
4096 from multiple evaluations. */
4099 stabilize_va_list (tree valist
, int needs_lvalue
)
4101 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
4103 if (TREE_SIDE_EFFECTS (valist
))
4104 valist
= save_expr (valist
);
4106 /* For this case, the backends will be expecting a pointer to
4107 TREE_TYPE (va_list_type_node), but it's possible we've
4108 actually been given an array (an actual va_list_type_node).
4110 if (TREE_CODE (TREE_TYPE (valist
)) == ARRAY_TYPE
)
4112 tree p1
= build_pointer_type (TREE_TYPE (va_list_type_node
));
4113 valist
= build_fold_addr_expr_with_type (valist
, p1
);
4122 if (! TREE_SIDE_EFFECTS (valist
))
4125 pt
= build_pointer_type (va_list_type_node
);
4126 valist
= fold (build1 (ADDR_EXPR
, pt
, valist
));
4127 TREE_SIDE_EFFECTS (valist
) = 1;
4130 if (TREE_SIDE_EFFECTS (valist
))
4131 valist
= save_expr (valist
);
4132 valist
= build_fold_indirect_ref (valist
);
4138 /* The "standard" definition of va_list is void*. */
4141 std_build_builtin_va_list (void)
4143 return ptr_type_node
;
4146 /* The "standard" implementation of va_start: just assign `nextarg' to
4150 std_expand_builtin_va_start (tree valist
, rtx nextarg
)
4154 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4155 make_tree (ptr_type_node
, nextarg
));
4156 TREE_SIDE_EFFECTS (t
) = 1;
4158 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4161 /* Expand ARGLIST, from a call to __builtin_va_start. */
4164 expand_builtin_va_start (tree arglist
)
4169 chain
= TREE_CHAIN (arglist
);
4171 if (TREE_CHAIN (chain
))
4172 error ("too many arguments to function `va_start'");
4174 nextarg
= expand_builtin_next_arg (chain
);
4175 valist
= stabilize_va_list (TREE_VALUE (arglist
), 1);
4177 #ifdef EXPAND_BUILTIN_VA_START
4178 EXPAND_BUILTIN_VA_START (valist
, nextarg
);
4180 std_expand_builtin_va_start (valist
, nextarg
);
4186 /* The "standard" implementation of va_arg: read the value from the
4187 current (padded) address and increment by the (padded) size. */
4190 std_expand_builtin_va_arg (tree valist
, tree type
)
4192 tree addr_tree
, t
, type_size
= NULL
;
4193 tree align
, alignm1
;
4196 HOST_WIDE_INT boundary
;
4198 /* Compute the rounded size of the type. */
4199 align
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4200 alignm1
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
- 1);
4201 boundary
= FUNCTION_ARG_BOUNDARY (TYPE_MODE (type
), type
);
4203 /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
4204 requires greater alignment, we must perform dynamic alignment. */
4206 if (boundary
> PARM_BOUNDARY
)
4208 if (!PAD_VARARGS_DOWN
)
4210 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4211 build2 (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
4212 build_int_2 (boundary
/ BITS_PER_UNIT
- 1, 0)));
4213 TREE_SIDE_EFFECTS (t
) = 1;
4214 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4216 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4217 build2 (BIT_AND_EXPR
, TREE_TYPE (valist
), valist
,
4218 build_int_2 (~(boundary
/ BITS_PER_UNIT
- 1), -1)));
4219 TREE_SIDE_EFFECTS (t
) = 1;
4220 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4222 if (type
== error_mark_node
4223 || (type_size
= TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type
))) == NULL
4224 || TREE_OVERFLOW (type_size
))
4225 rounded_size
= size_zero_node
;
4228 rounded_size
= fold (build2 (PLUS_EXPR
, sizetype
, type_size
, alignm1
));
4229 rounded_size
= fold (build2 (TRUNC_DIV_EXPR
, sizetype
,
4230 rounded_size
, align
));
4231 rounded_size
= fold (build2 (MULT_EXPR
, sizetype
,
4232 rounded_size
, align
));
4237 if (PAD_VARARGS_DOWN
&& ! integer_zerop (rounded_size
))
4239 /* Small args are padded downward. */
4240 addr_tree
= fold (build2 (PLUS_EXPR
, TREE_TYPE (addr_tree
), addr_tree
,
4241 fold (build3 (COND_EXPR
, sizetype
,
4242 fold (build2 (GT_EXPR
, sizetype
,
4246 fold (build2 (MINUS_EXPR
,
4252 addr
= expand_expr (addr_tree
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
4253 addr
= copy_to_reg (addr
);
4255 /* Compute new value for AP. */
4256 if (! integer_zerop (rounded_size
))
4258 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4259 build2 (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
4261 TREE_SIDE_EFFECTS (t
) = 1;
4262 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4268 /* Expand __builtin_va_arg, which is not really a builtin function, but
4269 a very special sort of operator. */
4272 expand_builtin_va_arg (tree valist
, tree type
)
4275 tree promoted_type
, want_va_type
, have_va_type
;
4277 /* Verify that valist is of the proper type. */
4279 want_va_type
= va_list_type_node
;
4280 have_va_type
= TREE_TYPE (valist
);
4281 if (TREE_CODE (want_va_type
) == ARRAY_TYPE
)
4283 /* If va_list is an array type, the argument may have decayed
4284 to a pointer type, e.g. by being passed to another function.
4285 In that case, unwrap both types so that we can compare the
4286 underlying records. */
4287 if (TREE_CODE (have_va_type
) == ARRAY_TYPE
4288 || TREE_CODE (have_va_type
) == POINTER_TYPE
)
4290 want_va_type
= TREE_TYPE (want_va_type
);
4291 have_va_type
= TREE_TYPE (have_va_type
);
4294 if (TYPE_MAIN_VARIANT (want_va_type
) != TYPE_MAIN_VARIANT (have_va_type
))
4296 error ("first argument to `va_arg' not of type `va_list'");
4300 /* Generate a diagnostic for requesting data of a type that cannot
4301 be passed through `...' due to type promotion at the call site. */
4302 else if ((promoted_type
= lang_hooks
.types
.type_promotes_to (type
))
4305 const char *name
= "<anonymous type>", *pname
= 0;
4306 static bool gave_help
;
4308 if (TYPE_NAME (type
))
4310 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
4311 name
= IDENTIFIER_POINTER (TYPE_NAME (type
));
4312 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
4313 && DECL_NAME (TYPE_NAME (type
)))
4314 name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
4316 if (TYPE_NAME (promoted_type
))
4318 if (TREE_CODE (TYPE_NAME (promoted_type
)) == IDENTIFIER_NODE
)
4319 pname
= IDENTIFIER_POINTER (TYPE_NAME (promoted_type
));
4320 else if (TREE_CODE (TYPE_NAME (promoted_type
)) == TYPE_DECL
4321 && DECL_NAME (TYPE_NAME (promoted_type
)))
4322 pname
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (promoted_type
)));
4325 /* Unfortunately, this is merely undefined, rather than a constraint
4326 violation, so we cannot make this an error. If this call is never
4327 executed, the program is still strictly conforming. */
4328 warning ("`%s' is promoted to `%s' when passed through `...'",
4333 warning ("(so you should pass `%s' not `%s' to `va_arg')",
4337 /* We can, however, treat "undefined" any way we please.
4338 Call abort to encourage the user to fix the program. */
4339 inform ("if this code is reached, the program will abort");
4340 expand_builtin_trap ();
4342 /* This is dead code, but go ahead and finish so that the
4343 mode of the result comes out right. */
4348 /* Make it easier for the backends by protecting the valist argument
4349 from multiple evaluations. */
4350 valist
= stabilize_va_list (valist
, 0);
4352 #ifdef EXPAND_BUILTIN_VA_ARG
4353 addr
= EXPAND_BUILTIN_VA_ARG (valist
, type
);
4355 addr
= std_expand_builtin_va_arg (valist
, type
);
4359 addr
= convert_memory_address (Pmode
, addr
);
4361 result
= gen_rtx_MEM (TYPE_MODE (type
), addr
);
4362 set_mem_alias_set (result
, get_varargs_alias_set ());
4367 /* Like std_expand_builtin_va_arg, but gimplify instead of expanding. */
4370 std_gimplify_va_arg_expr (tree valist
, tree type
, tree
*pre_p
, tree
*post_p
)
4372 tree addr
, t
, type_size
= NULL
;
4373 tree align
, alignm1
;
4375 HOST_WIDE_INT boundary
;
4377 /* Compute the rounded size of the type. */
4378 align
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
);
4379 alignm1
= size_int (PARM_BOUNDARY
/ BITS_PER_UNIT
- 1);
4380 boundary
= FUNCTION_ARG_BOUNDARY (TYPE_MODE (type
), type
);
4382 /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
4383 requires greater alignment, we must perform dynamic alignment. */
4385 if (boundary
> PARM_BOUNDARY
)
4387 if (!PAD_VARARGS_DOWN
)
4389 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4390 build2 (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
4391 build_int_2 (boundary
/ BITS_PER_UNIT
- 1, 0)));
4393 append_to_statement_list (t
, pre_p
);
4395 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4396 build2 (BIT_AND_EXPR
, TREE_TYPE (valist
), valist
,
4397 build_int_2 (~(boundary
/ BITS_PER_UNIT
- 1), -1)));
4399 append_to_statement_list (t
, pre_p
);
4401 if (type
== error_mark_node
4402 || (type_size
= TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type
))) == NULL
4403 || TREE_OVERFLOW (type_size
))
4404 rounded_size
= size_zero_node
;
4407 rounded_size
= fold (build2 (PLUS_EXPR
, sizetype
, type_size
, alignm1
));
4408 rounded_size
= fold (build2 (TRUNC_DIV_EXPR
, sizetype
,
4409 rounded_size
, align
));
4410 rounded_size
= fold (build2 (MULT_EXPR
, sizetype
,
4411 rounded_size
, align
));
4414 /* Reduce rounded_size so it's sharable with the postqueue. */
4415 gimplify_expr (&rounded_size
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
4419 if (PAD_VARARGS_DOWN
&& ! integer_zerop (rounded_size
))
4421 /* Small args are padded downward. */
4422 addr
= fold (build2 (PLUS_EXPR
, TREE_TYPE (addr
), addr
,
4423 fold (build3 (COND_EXPR
, sizetype
,
4424 fold (build2 (GT_EXPR
, sizetype
,
4428 fold (build2 (MINUS_EXPR
,
4434 /* Compute new value for AP. */
4435 if (! integer_zerop (rounded_size
))
4437 t
= build2 (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
4438 build2 (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
4441 append_to_statement_list (t
, post_p
);
4444 addr
= fold_convert (build_pointer_type (type
), addr
);
4445 return build_fold_indirect_ref (addr
);
4448 /* Return a dummy expression of type TYPE in order to keep going after an
4452 dummy_object (tree type
)
4454 tree t
= convert (build_pointer_type (type
), null_pointer_node
);
4455 return build1 (INDIRECT_REF
, type
, t
);
4458 /* Like expand_builtin_va_arg, but gimplify instead of expanding. */
4460 enum gimplify_status
4461 gimplify_va_arg_expr (tree
*expr_p
, tree
*pre_p
, tree
*post_p
)
4463 tree promoted_type
, want_va_type
, have_va_type
;
4464 tree valist
= TREE_OPERAND (*expr_p
, 0);
4465 tree type
= TREE_TYPE (*expr_p
);
4468 /* Verify that valist is of the proper type. */
4470 want_va_type
= va_list_type_node
;
4471 have_va_type
= TREE_TYPE (valist
);
4472 if (TREE_CODE (want_va_type
) == ARRAY_TYPE
)
4474 /* If va_list is an array type, the argument may have decayed
4475 to a pointer type, e.g. by being passed to another function.
4476 In that case, unwrap both types so that we can compare the
4477 underlying records. */
4478 if (TREE_CODE (have_va_type
) == ARRAY_TYPE
4479 || TREE_CODE (have_va_type
) == POINTER_TYPE
)
4481 want_va_type
= TREE_TYPE (want_va_type
);
4482 have_va_type
= TREE_TYPE (have_va_type
);
4486 if (TYPE_MAIN_VARIANT (want_va_type
) != TYPE_MAIN_VARIANT (have_va_type
))
4488 error ("first argument to `va_arg' not of type `va_list'");
4492 /* Generate a diagnostic for requesting data of a type that cannot
4493 be passed through `...' due to type promotion at the call site. */
4494 else if ((promoted_type
= lang_hooks
.types
.type_promotes_to (type
))
4497 static bool gave_help
;
4499 /* Unfortunately, this is merely undefined, rather than a constraint
4500 violation, so we cannot make this an error. If this call is never
4501 executed, the program is still strictly conforming. */
4502 warning ("`%T' is promoted to `%T' when passed through `...'",
4503 type
, promoted_type
);
4507 warning ("(so you should pass `%T' not `%T' to `va_arg')",
4508 promoted_type
, type
);
4511 /* We can, however, treat "undefined" any way we please.
4512 Call abort to encourage the user to fix the program. */
4513 inform ("if this code is reached, the program will abort");
4514 t
= build_function_call_expr (implicit_built_in_decls
[BUILT_IN_TRAP
],
4516 append_to_statement_list (t
, pre_p
);
4518 /* This is dead code, but go ahead and finish so that the
4519 mode of the result comes out right. */
4520 *expr_p
= dummy_object (type
);
4525 /* Make it easier for the backends by protecting the valist argument
4526 from multiple evaluations. */
4527 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
4529 /* For this case, the backends will be expecting a pointer to
4530 TREE_TYPE (va_list_type_node), but it's possible we've
4531 actually been given an array (an actual va_list_type_node).
4533 if (TREE_CODE (TREE_TYPE (valist
)) == ARRAY_TYPE
)
4535 tree p1
= build_pointer_type (TREE_TYPE (va_list_type_node
));
4536 valist
= build_fold_addr_expr_with_type (valist
, p1
);
4538 gimplify_expr (&valist
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
4541 gimplify_expr (&valist
, pre_p
, post_p
, is_gimple_min_lval
, fb_lvalue
);
4543 if (!targetm
.calls
.gimplify_va_arg_expr
)
4544 /* Once most targets are converted this should abort. */
4547 *expr_p
= targetm
.calls
.gimplify_va_arg_expr (valist
, type
, pre_p
, post_p
);
4552 /* Expand ARGLIST, from a call to __builtin_va_end. */
4555 expand_builtin_va_end (tree arglist
)
4557 tree valist
= TREE_VALUE (arglist
);
4559 /* Evaluate for side effects, if needed. I hate macros that don't
4561 if (TREE_SIDE_EFFECTS (valist
))
4562 expand_expr (valist
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4567 /* Expand ARGLIST, from a call to __builtin_va_copy. We do this as a
4568 builtin rather than just as an assignment in stdarg.h because of the
4569 nastiness of array-type va_list types. */
4572 expand_builtin_va_copy (tree arglist
)
4576 dst
= TREE_VALUE (arglist
);
4577 src
= TREE_VALUE (TREE_CHAIN (arglist
));
4579 dst
= stabilize_va_list (dst
, 1);
4580 src
= stabilize_va_list (src
, 0);
4582 if (TREE_CODE (va_list_type_node
) != ARRAY_TYPE
)
4584 t
= build2 (MODIFY_EXPR
, va_list_type_node
, dst
, src
);
4585 TREE_SIDE_EFFECTS (t
) = 1;
4586 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4590 rtx dstb
, srcb
, size
;
4592 /* Evaluate to pointers. */
4593 dstb
= expand_expr (dst
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
4594 srcb
= expand_expr (src
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
4595 size
= expand_expr (TYPE_SIZE_UNIT (va_list_type_node
), NULL_RTX
,
4596 VOIDmode
, EXPAND_NORMAL
);
4598 dstb
= convert_memory_address (Pmode
, dstb
);
4599 srcb
= convert_memory_address (Pmode
, srcb
);
4601 /* "Dereference" to BLKmode memories. */
4602 dstb
= gen_rtx_MEM (BLKmode
, dstb
);
4603 set_mem_alias_set (dstb
, get_alias_set (TREE_TYPE (TREE_TYPE (dst
))));
4604 set_mem_align (dstb
, TYPE_ALIGN (va_list_type_node
));
4605 srcb
= gen_rtx_MEM (BLKmode
, srcb
);
4606 set_mem_alias_set (srcb
, get_alias_set (TREE_TYPE (TREE_TYPE (src
))));
4607 set_mem_align (srcb
, TYPE_ALIGN (va_list_type_node
));
4610 emit_block_move (dstb
, srcb
, size
, BLOCK_OP_NORMAL
);
4616 /* Expand a call to one of the builtin functions __builtin_frame_address or
4617 __builtin_return_address. */
4620 expand_builtin_frame_address (tree fndecl
, tree arglist
)
4622 /* The argument must be a nonnegative integer constant.
4623 It counts the number of frames to scan up the stack.
4624 The value is the return address saved in that frame. */
4626 /* Warning about missing arg was already issued. */
4628 else if (! host_integerp (TREE_VALUE (arglist
), 1))
4630 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4631 error ("invalid arg to `__builtin_frame_address'");
4633 error ("invalid arg to `__builtin_return_address'");
4639 = expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl
),
4640 tree_low_cst (TREE_VALUE (arglist
), 1),
4641 hard_frame_pointer_rtx
);
4643 /* Some ports cannot access arbitrary stack frames. */
4646 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4647 warning ("unsupported arg to `__builtin_frame_address'");
4649 warning ("unsupported arg to `__builtin_return_address'");
4653 /* For __builtin_frame_address, return what we've got. */
4654 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
4658 && ! CONSTANT_P (tem
))
4659 tem
= copy_to_mode_reg (Pmode
, tem
);
4664 /* Expand a call to the alloca builtin, with arguments ARGLIST. Return 0 if
4665 we failed and the caller should emit a normal call, otherwise try to get
4666 the result in TARGET, if convenient. */
4669 expand_builtin_alloca (tree arglist
, rtx target
)
4674 /* In -fmudflap-instrumented code, alloca() and __builtin_alloca()
4675 should always expand to function calls. These can be intercepted
4680 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
4683 /* Compute the argument. */
4684 op0
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
4686 /* Allocate the desired space. */
4687 result
= allocate_dynamic_stack_space (op0
, target
, BITS_PER_UNIT
);
4688 result
= convert_memory_address (ptr_mode
, result
);
4693 /* Expand a call to a unary builtin. The arguments are in ARGLIST.
4694 Return 0 if a normal call should be emitted rather than expanding the
4695 function in-line. If convenient, the result should be placed in TARGET.
4696 SUBTARGET may be used as the target for computing one of EXP's operands. */
4699 expand_builtin_unop (enum machine_mode target_mode
, tree arglist
, rtx target
,
4700 rtx subtarget
, optab op_optab
)
4703 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
4706 /* Compute the argument. */
4707 op0
= expand_expr (TREE_VALUE (arglist
), subtarget
, VOIDmode
, 0);
4708 /* Compute op, into TARGET if possible.
4709 Set TARGET to wherever the result comes back. */
4710 target
= expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist
))),
4711 op_optab
, op0
, target
, 1);
4715 return convert_to_mode (target_mode
, target
, 0);
4718 /* If the string passed to fputs is a constant and is one character
4719 long, we attempt to transform this call into __builtin_fputc(). */
4722 expand_builtin_fputs (tree arglist
, rtx target
, bool unlocked
)
4725 tree fn_fputc
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTC_UNLOCKED
]
4726 : implicit_built_in_decls
[BUILT_IN_FPUTC
];
4727 tree fn_fwrite
= unlocked
? implicit_built_in_decls
[BUILT_IN_FWRITE_UNLOCKED
]
4728 : implicit_built_in_decls
[BUILT_IN_FWRITE
];
4730 /* If the return value is used, or the replacement _DECL isn't
4731 initialized, don't do the transformation. */
4732 if (target
!= const0_rtx
|| !fn_fputc
|| !fn_fwrite
)
4735 /* Verify the arguments in the original call. */
4736 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
4739 /* Get the length of the string passed to fputs. If the length
4740 can't be determined, punt. */
4741 if (!(len
= c_strlen (TREE_VALUE (arglist
), 1))
4742 || TREE_CODE (len
) != INTEGER_CST
)
4745 switch (compare_tree_int (len
, 1))
4747 case -1: /* length is 0, delete the call entirely . */
4749 /* Evaluate and ignore the argument in case it has
4751 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
4752 VOIDmode
, EXPAND_NORMAL
);
4755 case 0: /* length is 1, call fputc. */
4757 const char *p
= c_getstr (TREE_VALUE (arglist
));
4761 /* New argument list transforming fputs(string, stream) to
4762 fputc(string[0], stream). */
4764 build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
4766 tree_cons (NULL_TREE
, build_int_2 (p
[0], 0), arglist
);
4772 case 1: /* length is greater than 1, call fwrite. */
4776 /* If optimizing for size keep fputs. */
4779 string_arg
= TREE_VALUE (arglist
);
4780 /* New argument list transforming fputs(string, stream) to
4781 fwrite(string, 1, len, stream). */
4782 arglist
= build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
4783 arglist
= tree_cons (NULL_TREE
, len
, arglist
);
4784 arglist
= tree_cons (NULL_TREE
, size_one_node
, arglist
);
4785 arglist
= tree_cons (NULL_TREE
, string_arg
, arglist
);
4793 return expand_expr (build_function_call_expr (fn
, arglist
),
4794 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
4797 /* Expand a call to __builtin_expect. We return our argument and emit a
4798 NOTE_INSN_EXPECTED_VALUE note. This is the expansion of __builtin_expect in
4799 a non-jump context. */
4802 expand_builtin_expect (tree arglist
, rtx target
)
4807 if (arglist
== NULL_TREE
4808 || TREE_CHAIN (arglist
) == NULL_TREE
)
4810 exp
= TREE_VALUE (arglist
);
4811 c
= TREE_VALUE (TREE_CHAIN (arglist
));
4813 if (TREE_CODE (c
) != INTEGER_CST
)
4815 error ("second arg to `__builtin_expect' must be a constant");
4816 c
= integer_zero_node
;
4819 target
= expand_expr (exp
, target
, VOIDmode
, EXPAND_NORMAL
);
4821 /* Don't bother with expected value notes for integral constants. */
4822 if (flag_guess_branch_prob
&& GET_CODE (target
) != CONST_INT
)
4824 /* We do need to force this into a register so that we can be
4825 moderately sure to be able to correctly interpret the branch
4827 target
= force_reg (GET_MODE (target
), target
);
4829 rtx_c
= expand_expr (c
, NULL_RTX
, GET_MODE (target
), EXPAND_NORMAL
);
4831 note
= emit_note (NOTE_INSN_EXPECTED_VALUE
);
4832 NOTE_EXPECTED_VALUE (note
) = gen_rtx_EQ (VOIDmode
, target
, rtx_c
);
4838 /* Like expand_builtin_expect, except do this in a jump context. This is
4839 called from do_jump if the conditional is a __builtin_expect. Return either
4840 a list of insns to emit the jump or NULL if we cannot optimize
4841 __builtin_expect. We need to optimize this at jump time so that machines
4842 like the PowerPC don't turn the test into a SCC operation, and then jump
4843 based on the test being 0/1. */
4846 expand_builtin_expect_jump (tree exp
, rtx if_false_label
, rtx if_true_label
)
4848 tree arglist
= TREE_OPERAND (exp
, 1);
4849 tree arg0
= TREE_VALUE (arglist
);
4850 tree arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
4853 /* Only handle __builtin_expect (test, 0) and
4854 __builtin_expect (test, 1). */
4855 if (TREE_CODE (TREE_TYPE (arg1
)) == INTEGER_TYPE
4856 && (integer_zerop (arg1
) || integer_onep (arg1
)))
4858 rtx insn
, drop_through_label
, temp
;
4860 /* Expand the jump insns. */
4862 do_jump (arg0
, if_false_label
, if_true_label
);
4865 drop_through_label
= get_last_insn ();
4866 if (drop_through_label
&& GET_CODE (drop_through_label
) == NOTE
)
4867 drop_through_label
= prev_nonnote_insn (drop_through_label
);
4868 if (drop_through_label
&& GET_CODE (drop_through_label
) != CODE_LABEL
)
4869 drop_through_label
= NULL_RTX
;
4872 if (! if_true_label
)
4873 if_true_label
= drop_through_label
;
4874 if (! if_false_label
)
4875 if_false_label
= drop_through_label
;
4877 /* Go through and add the expect's to each of the conditional jumps. */
4879 while (insn
!= NULL_RTX
)
4881 rtx next
= NEXT_INSN (insn
);
4883 if (GET_CODE (insn
) == JUMP_INSN
&& any_condjump_p (insn
))
4885 rtx ifelse
= SET_SRC (pc_set (insn
));
4886 rtx then_dest
= XEXP (ifelse
, 1);
4887 rtx else_dest
= XEXP (ifelse
, 2);
4890 /* First check if we recognize any of the labels. */
4891 if (GET_CODE (then_dest
) == LABEL_REF
4892 && XEXP (then_dest
, 0) == if_true_label
)
4894 else if (GET_CODE (then_dest
) == LABEL_REF
4895 && XEXP (then_dest
, 0) == if_false_label
)
4897 else if (GET_CODE (else_dest
) == LABEL_REF
4898 && XEXP (else_dest
, 0) == if_false_label
)
4900 else if (GET_CODE (else_dest
) == LABEL_REF
4901 && XEXP (else_dest
, 0) == if_true_label
)
4903 /* Otherwise check where we drop through. */
4904 else if (else_dest
== pc_rtx
)
4906 if (next
&& GET_CODE (next
) == NOTE
)
4907 next
= next_nonnote_insn (next
);
4909 if (next
&& GET_CODE (next
) == JUMP_INSN
4910 && any_uncondjump_p (next
))
4911 temp
= XEXP (SET_SRC (pc_set (next
)), 0);
4915 /* TEMP is either a CODE_LABEL, NULL_RTX or something
4916 else that can't possibly match either target label. */
4917 if (temp
== if_false_label
)
4919 else if (temp
== if_true_label
)
4922 else if (then_dest
== pc_rtx
)
4924 if (next
&& GET_CODE (next
) == NOTE
)
4925 next
= next_nonnote_insn (next
);
4927 if (next
&& GET_CODE (next
) == JUMP_INSN
4928 && any_uncondjump_p (next
))
4929 temp
= XEXP (SET_SRC (pc_set (next
)), 0);
4933 if (temp
== if_false_label
)
4935 else if (temp
== if_true_label
)
4941 /* If the test is expected to fail, reverse the
4943 if (integer_zerop (arg1
))
4945 predict_insn_def (insn
, PRED_BUILTIN_EXPECT
, taken
);
4957 expand_builtin_trap (void)
4961 emit_insn (gen_trap ());
4964 emit_library_call (abort_libfunc
, LCT_NORETURN
, VOIDmode
, 0);
4968 /* Expand a call to fabs, fabsf or fabsl with arguments ARGLIST.
4969 Return 0 if a normal call should be emitted rather than expanding
4970 the function inline. If convenient, the result should be placed
4971 in TARGET. SUBTARGET may be used as the target for computing
4975 expand_builtin_fabs (tree arglist
, rtx target
, rtx subtarget
)
4977 enum machine_mode mode
;
4981 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
4984 arg
= TREE_VALUE (arglist
);
4985 mode
= TYPE_MODE (TREE_TYPE (arg
));
4986 op0
= expand_expr (arg
, subtarget
, VOIDmode
, 0);
4987 return expand_abs (mode
, op0
, target
, 0, safe_from_p (target
, arg
, 1));
4990 /* Expand a call to cabs, cabsf or cabsl with arguments ARGLIST.
4991 Return 0 if a normal call should be emitted rather than expanding
4992 the function inline. If convenient, the result should be placed
4996 expand_builtin_cabs (tree arglist
, rtx target
)
4998 enum machine_mode mode
;
5002 if (arglist
== 0 || TREE_CHAIN (arglist
))
5004 arg
= TREE_VALUE (arglist
);
5005 if (TREE_CODE (TREE_TYPE (arg
)) != COMPLEX_TYPE
5006 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != REAL_TYPE
)
5009 mode
= TYPE_MODE (TREE_TYPE (arg
));
5010 op0
= expand_expr (arg
, NULL_RTX
, VOIDmode
, 0);
5011 return expand_complex_abs (mode
, op0
, target
, 0);
5014 /* Create a new constant string literal and return a char* pointer to it.
5015 The STRING_CST value is the LEN characters at STR. */
5017 build_string_literal (int len
, const char *str
)
5019 tree t
, elem
, index
, type
;
5021 t
= build_string (len
, str
);
5022 elem
= build_type_variant (char_type_node
, 1, 0);
5023 index
= build_index_type (build_int_2 (len
- 1, 0));
5024 type
= build_array_type (elem
, index
);
5025 TREE_TYPE (t
) = type
;
5026 TREE_CONSTANT (t
) = 1;
5027 TREE_INVARIANT (t
) = 1;
5028 TREE_READONLY (t
) = 1;
5029 TREE_STATIC (t
) = 1;
5031 type
= build_pointer_type (type
);
5032 t
= build1 (ADDR_EXPR
, type
, t
);
5034 type
= build_pointer_type (elem
);
5035 t
= build1 (NOP_EXPR
, type
, t
);
5039 /* Expand a call to printf or printf_unlocked with argument list ARGLIST.
5040 Return 0 if a normal call should be emitted rather than transforming
5041 the function inline. If convenient, the result should be placed in
5042 TARGET with mode MODE. UNLOCKED indicates this is a printf_unlocked
5045 expand_builtin_printf (tree arglist
, rtx target
, enum machine_mode mode
,
5048 tree fn_putchar
= unlocked
5049 ? implicit_built_in_decls
[BUILT_IN_PUTCHAR_UNLOCKED
]
5050 : implicit_built_in_decls
[BUILT_IN_PUTCHAR
];
5051 tree fn_puts
= unlocked
? implicit_built_in_decls
[BUILT_IN_PUTS_UNLOCKED
]
5052 : implicit_built_in_decls
[BUILT_IN_PUTS
];
5053 const char *fmt_str
;
5056 /* If the return value is used, don't do the transformation. */
5057 if (target
!= const0_rtx
)
5060 /* Verify the required arguments in the original call. */
5063 fmt
= TREE_VALUE (arglist
);
5064 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
5066 arglist
= TREE_CHAIN (arglist
);
5068 /* Check whether the format is a literal string constant. */
5069 fmt_str
= c_getstr (fmt
);
5070 if (fmt_str
== NULL
)
5073 /* If the format specifier was "%s\n", call __builtin_puts(arg). */
5074 if (strcmp (fmt_str
, "%s\n") == 0)
5077 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != POINTER_TYPE
5078 || TREE_CHAIN (arglist
))
5082 /* If the format specifier was "%c", call __builtin_putchar(arg). */
5083 else if (strcmp (fmt_str
, "%c") == 0)
5086 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != INTEGER_TYPE
5087 || TREE_CHAIN (arglist
))
5093 /* We can't handle anything else with % args or %% ... yet. */
5094 if (strchr (fmt_str
, '%'))
5100 /* If the format specifier was "", printf does nothing. */
5101 if (fmt_str
[0] == '\0')
5103 /* If the format specifier has length of 1, call putchar. */
5104 if (fmt_str
[1] == '\0')
5106 /* Given printf("c"), (where c is any one character,)
5107 convert "c"[0] to an int and pass that to the replacement
5109 arg
= build_int_2 (fmt_str
[0], 0);
5110 arglist
= build_tree_list (NULL_TREE
, arg
);
5115 /* If the format specifier was "string\n", call puts("string"). */
5116 size_t len
= strlen (fmt_str
);
5117 if (fmt_str
[len
- 1] == '\n')
5119 /* Create a NUL-terminated string that's one char shorter
5120 than the original, stripping off the trailing '\n'. */
5121 char *newstr
= alloca (len
);
5122 memcpy (newstr
, fmt_str
, len
- 1);
5123 newstr
[len
- 1] = 0;
5125 arg
= build_string_literal (len
, newstr
);
5126 arglist
= build_tree_list (NULL_TREE
, arg
);
5130 /* We'd like to arrange to call fputs(string,stdout) here,
5131 but we need stdout and don't have a way to get it yet. */
5138 return expand_expr (build_function_call_expr (fn
, arglist
),
5139 target
, mode
, EXPAND_NORMAL
);
5142 /* Expand a call to fprintf or fprintf_unlocked with argument list ARGLIST.
5143 Return 0 if a normal call should be emitted rather than transforming
5144 the function inline. If convenient, the result should be placed in
5145 TARGET with mode MODE. UNLOCKED indicates this is a fprintf_unlocked
5148 expand_builtin_fprintf (tree arglist
, rtx target
, enum machine_mode mode
,
5151 tree fn_fputc
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTC_UNLOCKED
]
5152 : implicit_built_in_decls
[BUILT_IN_FPUTC
];
5153 tree fn_fputs
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTS_UNLOCKED
]
5154 : implicit_built_in_decls
[BUILT_IN_FPUTS
];
5155 const char *fmt_str
;
5156 tree fn
, fmt
, fp
, arg
;
5158 /* If the return value is used, don't do the transformation. */
5159 if (target
!= const0_rtx
)
5162 /* Verify the required arguments in the original call. */
5165 fp
= TREE_VALUE (arglist
);
5166 if (TREE_CODE (TREE_TYPE (fp
)) != POINTER_TYPE
)
5168 arglist
= TREE_CHAIN (arglist
);
5171 fmt
= TREE_VALUE (arglist
);
5172 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
5174 arglist
= TREE_CHAIN (arglist
);
5176 /* Check whether the format is a literal string constant. */
5177 fmt_str
= c_getstr (fmt
);
5178 if (fmt_str
== NULL
)
5181 /* If the format specifier was "%s", call __builtin_fputs(arg,fp). */
5182 if (strcmp (fmt_str
, "%s") == 0)
5185 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != POINTER_TYPE
5186 || TREE_CHAIN (arglist
))
5188 arg
= TREE_VALUE (arglist
);
5189 arglist
= build_tree_list (NULL_TREE
, fp
);
5190 arglist
= tree_cons (NULL_TREE
, arg
, arglist
);
5193 /* If the format specifier was "%c", call __builtin_fputc(arg,fp). */
5194 else if (strcmp (fmt_str
, "%c") == 0)
5197 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != INTEGER_TYPE
5198 || TREE_CHAIN (arglist
))
5200 arg
= TREE_VALUE (arglist
);
5201 arglist
= build_tree_list (NULL_TREE
, fp
);
5202 arglist
= tree_cons (NULL_TREE
, arg
, arglist
);
5207 /* We can't handle anything else with % args or %% ... yet. */
5208 if (strchr (fmt_str
, '%'))
5214 /* If the format specifier was "", fprintf does nothing. */
5215 if (fmt_str
[0] == '\0')
5217 /* Evaluate and ignore FILE* argument for side-effects. */
5218 expand_expr (fp
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
5222 /* When "string" doesn't contain %, replace all cases of
5223 fprintf(stream,string) with fputs(string,stream). The fputs
5224 builtin will take care of special cases like length == 1. */
5225 arglist
= build_tree_list (NULL_TREE
, fp
);
5226 arglist
= tree_cons (NULL_TREE
, fmt
, arglist
);
5232 return expand_expr (build_function_call_expr (fn
, arglist
),
5233 target
, mode
, EXPAND_NORMAL
);
5236 /* Expand a call to sprintf with argument list ARGLIST. Return 0 if
5237 a normal call should be emitted rather than expanding the function
5238 inline. If convenient, the result should be placed in TARGET with
5242 expand_builtin_sprintf (tree arglist
, rtx target
, enum machine_mode mode
)
5244 tree orig_arglist
, dest
, fmt
;
5245 const char *fmt_str
;
5247 orig_arglist
= arglist
;
5249 /* Verify the required arguments in the original call. */
5252 dest
= TREE_VALUE (arglist
);
5253 if (TREE_CODE (TREE_TYPE (dest
)) != POINTER_TYPE
)
5255 arglist
= TREE_CHAIN (arglist
);
5258 fmt
= TREE_VALUE (arglist
);
5259 if (TREE_CODE (TREE_TYPE (fmt
)) != POINTER_TYPE
)
5261 arglist
= TREE_CHAIN (arglist
);
5263 /* Check whether the format is a literal string constant. */
5264 fmt_str
= c_getstr (fmt
);
5265 if (fmt_str
== NULL
)
5268 /* If the format doesn't contain % args or %%, use strcpy. */
5269 if (strchr (fmt_str
, '%') == 0)
5271 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
5274 if (arglist
|| ! fn
)
5276 expand_expr (build_function_call_expr (fn
, orig_arglist
),
5277 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
5278 if (target
== const0_rtx
)
5280 exp
= build_int_2 (strlen (fmt_str
), 0);
5281 exp
= fold_convert (integer_type_node
, exp
);
5282 return expand_expr (exp
, target
, mode
, EXPAND_NORMAL
);
5284 /* If the format is "%s", use strcpy if the result isn't used. */
5285 else if (strcmp (fmt_str
, "%s") == 0)
5288 fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
5293 if (! arglist
|| TREE_CHAIN (arglist
))
5295 arg
= TREE_VALUE (arglist
);
5296 if (TREE_CODE (TREE_TYPE (arg
)) != POINTER_TYPE
)
5299 if (target
!= const0_rtx
)
5301 len
= c_strlen (arg
, 1);
5302 if (! len
|| TREE_CODE (len
) != INTEGER_CST
)
5308 arglist
= build_tree_list (NULL_TREE
, arg
);
5309 arglist
= tree_cons (NULL_TREE
, dest
, arglist
);
5310 expand_expr (build_function_call_expr (fn
, arglist
),
5311 const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
5313 if (target
== const0_rtx
)
5315 return expand_expr (len
, target
, mode
, EXPAND_NORMAL
);
5321 /* Expand a call to either the entry or exit function profiler. */
5324 expand_builtin_profile_func (bool exitp
)
5328 this = DECL_RTL (current_function_decl
);
5329 if (GET_CODE (this) == MEM
)
5330 this = XEXP (this, 0);
5335 which
= profile_function_exit_libfunc
;
5337 which
= profile_function_entry_libfunc
;
5339 emit_library_call (which
, LCT_NORMAL
, VOIDmode
, 2, this, Pmode
,
5340 expand_builtin_return_addr (BUILT_IN_RETURN_ADDRESS
,
5341 0, hard_frame_pointer_rtx
),
5347 /* Given a trampoline address, make sure it satisfies TRAMPOLINE_ALIGNMENT. */
5350 round_trampoline_addr (rtx tramp
)
5352 rtx temp
, addend
, mask
;
5354 /* If we don't need too much alignment, we'll have been guaranteed
5355 proper alignment by get_trampoline_type. */
5356 if (TRAMPOLINE_ALIGNMENT
<= STACK_BOUNDARY
)
5359 /* Round address up to desired boundary. */
5360 temp
= gen_reg_rtx (Pmode
);
5361 addend
= GEN_INT (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
- 1);
5362 mask
= GEN_INT (-TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
5364 temp
= expand_simple_binop (Pmode
, PLUS
, tramp
, addend
,
5365 temp
, 0, OPTAB_LIB_WIDEN
);
5366 tramp
= expand_simple_binop (Pmode
, AND
, temp
, mask
,
5367 temp
, 0, OPTAB_LIB_WIDEN
);
5373 expand_builtin_init_trampoline (tree arglist
)
5375 tree t_tramp
, t_func
, t_chain
;
5376 rtx r_tramp
, r_func
, r_chain
;
5377 #ifdef TRAMPOLINE_TEMPLATE
5381 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
,
5382 POINTER_TYPE
, VOID_TYPE
))
5385 t_tramp
= TREE_VALUE (arglist
);
5386 arglist
= TREE_CHAIN (arglist
);
5387 t_func
= TREE_VALUE (arglist
);
5388 arglist
= TREE_CHAIN (arglist
);
5389 t_chain
= TREE_VALUE (arglist
);
5391 r_tramp
= expand_expr (t_tramp
, NULL_RTX
, VOIDmode
, 0);
5392 r_func
= expand_expr (t_func
, NULL_RTX
, VOIDmode
, 0);
5393 r_chain
= expand_expr (t_chain
, NULL_RTX
, VOIDmode
, 0);
5395 /* Generate insns to initialize the trampoline. */
5396 r_tramp
= round_trampoline_addr (r_tramp
);
5397 #ifdef TRAMPOLINE_TEMPLATE
5398 blktramp
= gen_rtx_MEM (BLKmode
, r_tramp
);
5399 set_mem_align (blktramp
, TRAMPOLINE_ALIGNMENT
);
5400 emit_block_move (blktramp
, assemble_trampoline_template (),
5401 GEN_INT (TRAMPOLINE_SIZE
), BLOCK_OP_NORMAL
);
5403 trampolines_created
= 1;
5404 INITIALIZE_TRAMPOLINE (r_tramp
, r_func
, r_chain
);
5410 expand_builtin_adjust_trampoline (tree arglist
)
5414 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
5417 tramp
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
5418 tramp
= round_trampoline_addr (tramp
);
5419 #ifdef TRAMPOLINE_ADJUST_ADDRESS
5420 TRAMPOLINE_ADJUST_ADDRESS (tramp
);
5426 /* Expand a call to the built-in signbit, signbitf or signbitl function.
5427 Return NULL_RTX if a normal call should be emitted rather than expanding
5428 the function in-line. EXP is the expression that is a call to the builtin
5429 function; if convenient, the result should be placed in TARGET. */
5432 expand_builtin_signbit (tree exp
, rtx target
)
5434 const struct real_format
*fmt
;
5435 enum machine_mode fmode
, imode
, rmode
;
5436 HOST_WIDE_INT hi
, lo
;
5441 arglist
= TREE_OPERAND (exp
, 1);
5442 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
5445 arg
= TREE_VALUE (arglist
);
5446 fmode
= TYPE_MODE (TREE_TYPE (arg
));
5447 rmode
= TYPE_MODE (TREE_TYPE (exp
));
5448 fmt
= REAL_MODE_FORMAT (fmode
);
5450 /* For floating point formats without a sign bit, implement signbit
5452 if (fmt
->signbit
< 0)
5454 /* But we can't do this if the format supports signed zero. */
5455 if (fmt
->has_signed_zero
&& HONOR_SIGNED_ZEROS (fmode
))
5458 arg
= fold (build2 (LT_EXPR
, TREE_TYPE (exp
), arg
,
5459 build_real (TREE_TYPE (arg
), dconst0
)));
5460 return expand_expr (arg
, target
, VOIDmode
, EXPAND_NORMAL
);
5463 imode
= int_mode_for_mode (fmode
);
5464 if (imode
== BLKmode
)
5467 bitpos
= fmt
->signbit
;
5468 /* Handle targets with different FP word orders. */
5469 if (FLOAT_WORDS_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
)
5471 int nwords
= GET_MODE_BITSIZE (fmode
) / BITS_PER_WORD
;
5472 int word
= nwords
- (bitpos
/ BITS_PER_WORD
) - 1;
5473 bitpos
= word
* BITS_PER_WORD
+ bitpos
% BITS_PER_WORD
;
5476 /* If the sign bit is not in the lowpart and the floating point format
5477 is wider than an integer, check that is twice the size of an integer
5478 so that we can use gen_highpart below. */
5479 if (bitpos
>= GET_MODE_BITSIZE (rmode
)
5480 && GET_MODE_BITSIZE (imode
) != 2 * GET_MODE_BITSIZE (rmode
))
5483 temp
= expand_expr (arg
, NULL_RTX
, VOIDmode
, 0);
5484 temp
= gen_lowpart (imode
, temp
);
5486 if (GET_MODE_BITSIZE (imode
) > GET_MODE_BITSIZE (rmode
))
5488 if (BYTES_BIG_ENDIAN
)
5489 bitpos
= GET_MODE_BITSIZE (imode
) - 1 - bitpos
;
5490 temp
= copy_to_mode_reg (imode
, temp
);
5491 temp
= extract_bit_field (temp
, 1, bitpos
, 1,
5492 NULL_RTX
, rmode
, rmode
,
5493 GET_MODE_SIZE (imode
));
5497 if (GET_MODE_BITSIZE (imode
) < GET_MODE_BITSIZE (rmode
))
5498 temp
= gen_lowpart (rmode
, temp
);
5499 if (bitpos
< HOST_BITS_PER_WIDE_INT
)
5502 lo
= (HOST_WIDE_INT
) 1 << bitpos
;
5506 hi
= (HOST_WIDE_INT
) 1 << (bitpos
- HOST_BITS_PER_WIDE_INT
);
5510 temp
= force_reg (rmode
, temp
);
5511 temp
= expand_binop (rmode
, and_optab
, temp
,
5512 immed_double_const (lo
, hi
, rmode
),
5513 target
, 1, OPTAB_LIB_WIDEN
);
5518 /* Expand fork or exec calls. TARGET is the desired target of the
5519 call. ARGLIST is the list of arguments of the call. FN is the
5520 identificator of the actual function. IGNORE is nonzero if the
5521 value is to be ignored. */
5524 expand_builtin_fork_or_exec (tree fn
, tree arglist
, rtx target
, int ignore
)
5529 /* If we are not profiling, just call the function. */
5530 if (!profile_arc_flag
)
5533 /* Otherwise call the wrapper. This should be equivalent for the rest of
5534 compiler, so the code does not diverge, and the wrapper may run the
5535 code necessary for keeping the profiling sane. */
5537 switch (DECL_FUNCTION_CODE (fn
))
5540 id
= get_identifier ("__gcov_fork");
5543 case BUILT_IN_EXECL
:
5544 id
= get_identifier ("__gcov_execl");
5547 case BUILT_IN_EXECV
:
5548 id
= get_identifier ("__gcov_execv");
5551 case BUILT_IN_EXECLP
:
5552 id
= get_identifier ("__gcov_execlp");
5555 case BUILT_IN_EXECLE
:
5556 id
= get_identifier ("__gcov_execle");
5559 case BUILT_IN_EXECVP
:
5560 id
= get_identifier ("__gcov_execvp");
5563 case BUILT_IN_EXECVE
:
5564 id
= get_identifier ("__gcov_execve");
5571 decl
= build_decl (FUNCTION_DECL
, id
, TREE_TYPE (fn
));
5572 DECL_EXTERNAL (decl
) = 1;
5573 TREE_PUBLIC (decl
) = 1;
5574 DECL_ARTIFICIAL (decl
) = 1;
5575 TREE_NOTHROW (decl
) = 1;
5576 call
= build_function_call_expr (decl
, arglist
);
5578 return expand_call (call
, target
, ignore
);
5581 /* Expand an expression EXP that calls a built-in function,
5582 with result going to TARGET if that's convenient
5583 (and in mode MODE if that's convenient).
5584 SUBTARGET may be used as the target for computing one of EXP's operands.
5585 IGNORE is nonzero if the value is to be ignored. */
5588 expand_builtin (tree exp
, rtx target
, rtx subtarget
, enum machine_mode mode
,
5591 tree fndecl
= get_callee_fndecl (exp
);
5592 tree arglist
= TREE_OPERAND (exp
, 1);
5593 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
5594 enum machine_mode target_mode
= TYPE_MODE (TREE_TYPE (exp
));
5596 /* Perform postincrements before expanding builtin functions. */
5599 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
5600 return targetm
.expand_builtin (exp
, target
, subtarget
, mode
, ignore
);
5602 /* When not optimizing, generate calls to library functions for a certain
5605 && !CALLED_AS_BUILT_IN (fndecl
)
5606 && DECL_ASSEMBLER_NAME_SET_P (fndecl
)
5607 && fcode
!= BUILT_IN_ALLOCA
)
5608 return expand_call (exp
, target
, ignore
);
5610 /* The built-in function expanders test for target == const0_rtx
5611 to determine whether the function's result will be ignored. */
5613 target
= const0_rtx
;
5615 /* If the result of a pure or const built-in function is ignored, and
5616 none of its arguments are volatile, we can avoid expanding the
5617 built-in call and just evaluate the arguments for side-effects. */
5618 if (target
== const0_rtx
5619 && (DECL_IS_PURE (fndecl
) || TREE_READONLY (fndecl
)))
5621 bool volatilep
= false;
5624 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
5625 if (TREE_THIS_VOLATILE (TREE_VALUE (arg
)))
5633 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
5634 expand_expr (TREE_VALUE (arg
), const0_rtx
,
5635 VOIDmode
, EXPAND_NORMAL
);
5643 case BUILT_IN_FABSF
:
5644 case BUILT_IN_FABSL
:
5645 target
= expand_builtin_fabs (arglist
, target
, subtarget
);
5651 case BUILT_IN_CABSF
:
5652 case BUILT_IN_CABSL
:
5653 if (flag_unsafe_math_optimizations
)
5655 target
= expand_builtin_cabs (arglist
, target
);
5664 case BUILT_IN_EXP10
:
5665 case BUILT_IN_EXP10F
:
5666 case BUILT_IN_EXP10L
:
5667 case BUILT_IN_POW10
:
5668 case BUILT_IN_POW10F
:
5669 case BUILT_IN_POW10L
:
5671 case BUILT_IN_EXP2F
:
5672 case BUILT_IN_EXP2L
:
5673 case BUILT_IN_EXPM1
:
5674 case BUILT_IN_EXPM1F
:
5675 case BUILT_IN_EXPM1L
:
5677 case BUILT_IN_LOGBF
:
5678 case BUILT_IN_LOGBL
:
5679 case BUILT_IN_ILOGB
:
5680 case BUILT_IN_ILOGBF
:
5681 case BUILT_IN_ILOGBL
:
5685 case BUILT_IN_LOG10
:
5686 case BUILT_IN_LOG10F
:
5687 case BUILT_IN_LOG10L
:
5689 case BUILT_IN_LOG2F
:
5690 case BUILT_IN_LOG2L
:
5691 case BUILT_IN_LOG1P
:
5692 case BUILT_IN_LOG1PF
:
5693 case BUILT_IN_LOG1PL
:
5698 case BUILT_IN_ASINF
:
5699 case BUILT_IN_ASINL
:
5701 case BUILT_IN_ACOSF
:
5702 case BUILT_IN_ACOSL
:
5704 case BUILT_IN_ATANF
:
5705 case BUILT_IN_ATANL
:
5706 /* Treat these like sqrt only if unsafe math optimizations are allowed,
5707 because of possible accuracy problems. */
5708 if (! flag_unsafe_math_optimizations
)
5711 case BUILT_IN_SQRTF
:
5712 case BUILT_IN_SQRTL
:
5713 case BUILT_IN_FLOOR
:
5714 case BUILT_IN_FLOORF
:
5715 case BUILT_IN_FLOORL
:
5717 case BUILT_IN_CEILF
:
5718 case BUILT_IN_CEILL
:
5719 case BUILT_IN_TRUNC
:
5720 case BUILT_IN_TRUNCF
:
5721 case BUILT_IN_TRUNCL
:
5722 case BUILT_IN_ROUND
:
5723 case BUILT_IN_ROUNDF
:
5724 case BUILT_IN_ROUNDL
:
5725 case BUILT_IN_NEARBYINT
:
5726 case BUILT_IN_NEARBYINTF
:
5727 case BUILT_IN_NEARBYINTL
:
5728 target
= expand_builtin_mathfn (exp
, target
, subtarget
);
5736 target
= expand_builtin_pow (exp
, target
, subtarget
);
5741 case BUILT_IN_ATAN2
:
5742 case BUILT_IN_ATAN2F
:
5743 case BUILT_IN_ATAN2L
:
5745 case BUILT_IN_FMODF
:
5746 case BUILT_IN_FMODL
:
5748 case BUILT_IN_DREMF
:
5749 case BUILT_IN_DREML
:
5750 if (! flag_unsafe_math_optimizations
)
5752 target
= expand_builtin_mathfn_2 (exp
, target
, subtarget
);
5763 if (! flag_unsafe_math_optimizations
)
5765 target
= expand_builtin_mathfn_3 (exp
, target
, subtarget
);
5770 case BUILT_IN_APPLY_ARGS
:
5771 return expand_builtin_apply_args ();
5773 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
5774 FUNCTION with a copy of the parameters described by
5775 ARGUMENTS, and ARGSIZE. It returns a block of memory
5776 allocated on the stack into which is stored all the registers
5777 that might possibly be used for returning the result of a
5778 function. ARGUMENTS is the value returned by
5779 __builtin_apply_args. ARGSIZE is the number of bytes of
5780 arguments that must be copied. ??? How should this value be
5781 computed? We'll also need a safe worst case value for varargs
5783 case BUILT_IN_APPLY
:
5784 if (!validate_arglist (arglist
, POINTER_TYPE
,
5785 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
)
5786 && !validate_arglist (arglist
, REFERENCE_TYPE
,
5787 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
5795 for (t
= arglist
, i
= 0; t
; t
= TREE_CHAIN (t
), i
++)
5796 ops
[i
] = expand_expr (TREE_VALUE (t
), NULL_RTX
, VOIDmode
, 0);
5798 return expand_builtin_apply (ops
[0], ops
[1], ops
[2]);
5801 /* __builtin_return (RESULT) causes the function to return the
5802 value described by RESULT. RESULT is address of the block of
5803 memory returned by __builtin_apply. */
5804 case BUILT_IN_RETURN
:
5805 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
5806 expand_builtin_return (expand_expr (TREE_VALUE (arglist
),
5807 NULL_RTX
, VOIDmode
, 0));
5810 case BUILT_IN_SAVEREGS
:
5811 return expand_builtin_saveregs ();
5813 case BUILT_IN_ARGS_INFO
:
5814 return expand_builtin_args_info (arglist
);
5816 /* Return the address of the first anonymous stack arg. */
5817 case BUILT_IN_NEXT_ARG
:
5818 simplify_builtin_next_arg (arglist
);
5819 return expand_builtin_next_arg (arglist
);
5821 case BUILT_IN_CLASSIFY_TYPE
:
5822 return expand_builtin_classify_type (arglist
);
5824 case BUILT_IN_CONSTANT_P
:
5827 case BUILT_IN_FRAME_ADDRESS
:
5828 case BUILT_IN_RETURN_ADDRESS
:
5829 return expand_builtin_frame_address (fndecl
, arglist
);
5831 /* Returns the address of the area where the structure is returned.
5833 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS
:
5835 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl
)))
5836 || GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl
))) != MEM
)
5839 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl
)), 0);
5841 case BUILT_IN_ALLOCA
:
5842 target
= expand_builtin_alloca (arglist
, target
);
5847 case BUILT_IN_STACK_ALLOC
:
5848 expand_stack_alloc (TREE_VALUE (arglist
),
5849 TREE_VALUE (TREE_CHAIN (arglist
)));
5852 case BUILT_IN_STACK_SAVE
:
5853 return expand_stack_save ();
5855 case BUILT_IN_STACK_RESTORE
:
5856 expand_stack_restore (TREE_VALUE (arglist
));
5861 case BUILT_IN_FFSLL
:
5862 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5863 subtarget
, ffs_optab
);
5870 case BUILT_IN_CLZLL
:
5871 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5872 subtarget
, clz_optab
);
5879 case BUILT_IN_CTZLL
:
5880 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5881 subtarget
, ctz_optab
);
5886 case BUILT_IN_POPCOUNT
:
5887 case BUILT_IN_POPCOUNTL
:
5888 case BUILT_IN_POPCOUNTLL
:
5889 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5890 subtarget
, popcount_optab
);
5895 case BUILT_IN_PARITY
:
5896 case BUILT_IN_PARITYL
:
5897 case BUILT_IN_PARITYLL
:
5898 target
= expand_builtin_unop (target_mode
, arglist
, target
,
5899 subtarget
, parity_optab
);
5904 case BUILT_IN_STRLEN
:
5905 target
= expand_builtin_strlen (arglist
, target
, target_mode
);
5910 case BUILT_IN_STRCPY
:
5911 target
= expand_builtin_strcpy (arglist
, target
, mode
);
5916 case BUILT_IN_STRNCPY
:
5917 target
= expand_builtin_strncpy (arglist
, target
, mode
);
5922 case BUILT_IN_STPCPY
:
5923 target
= expand_builtin_stpcpy (arglist
, target
, mode
);
5928 case BUILT_IN_STRCAT
:
5929 target
= expand_builtin_strcat (arglist
, target
, mode
);
5934 case BUILT_IN_STRNCAT
:
5935 target
= expand_builtin_strncat (arglist
, target
, mode
);
5940 case BUILT_IN_STRSPN
:
5941 target
= expand_builtin_strspn (arglist
, target
, mode
);
5946 case BUILT_IN_STRCSPN
:
5947 target
= expand_builtin_strcspn (arglist
, target
, mode
);
5952 case BUILT_IN_STRSTR
:
5953 target
= expand_builtin_strstr (arglist
, target
, mode
);
5958 case BUILT_IN_STRPBRK
:
5959 target
= expand_builtin_strpbrk (arglist
, target
, mode
);
5964 case BUILT_IN_INDEX
:
5965 case BUILT_IN_STRCHR
:
5966 target
= expand_builtin_strchr (arglist
, target
, mode
);
5971 case BUILT_IN_RINDEX
:
5972 case BUILT_IN_STRRCHR
:
5973 target
= expand_builtin_strrchr (arglist
, target
, mode
);
5978 case BUILT_IN_MEMCPY
:
5979 target
= expand_builtin_memcpy (arglist
, target
, mode
);
5984 case BUILT_IN_MEMPCPY
:
5985 target
= expand_builtin_mempcpy (arglist
, target
, mode
, /*endp=*/ 1);
5990 case BUILT_IN_MEMMOVE
:
5991 target
= expand_builtin_memmove (arglist
, target
, mode
);
5996 case BUILT_IN_BCOPY
:
5997 target
= expand_builtin_bcopy (arglist
);
6002 case BUILT_IN_MEMSET
:
6003 target
= expand_builtin_memset (arglist
, target
, mode
);
6008 case BUILT_IN_BZERO
:
6009 target
= expand_builtin_bzero (arglist
);
6014 case BUILT_IN_STRCMP
:
6015 target
= expand_builtin_strcmp (exp
, target
, mode
);
6020 case BUILT_IN_STRNCMP
:
6021 target
= expand_builtin_strncmp (exp
, target
, mode
);
6027 case BUILT_IN_MEMCMP
:
6028 target
= expand_builtin_memcmp (exp
, arglist
, target
, mode
);
6033 case BUILT_IN_SETJMP
:
6034 target
= expand_builtin_setjmp (arglist
, target
);
6039 /* __builtin_longjmp is passed a pointer to an array of five words.
6040 It's similar to the C library longjmp function but works with
6041 __builtin_setjmp above. */
6042 case BUILT_IN_LONGJMP
:
6043 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
6047 rtx buf_addr
= expand_expr (TREE_VALUE (arglist
), subtarget
,
6049 rtx value
= expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)),
6050 NULL_RTX
, VOIDmode
, 0);
6052 if (value
!= const1_rtx
)
6054 error ("__builtin_longjmp second argument must be 1");
6058 expand_builtin_longjmp (buf_addr
, value
);
6062 case BUILT_IN_NONLOCAL_GOTO
:
6063 target
= expand_builtin_nonlocal_goto (arglist
);
6068 /* This updates the setjmp buffer that is its argument with the value
6069 of the current stack pointer. */
6070 case BUILT_IN_UPDATE_SETJMP_BUF
:
6071 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
6074 = expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
6076 expand_builtin_update_setjmp_buf (buf_addr
);
6082 expand_builtin_trap ();
6085 case BUILT_IN_PRINTF
:
6086 target
= expand_builtin_printf (arglist
, target
, mode
, false);
6091 case BUILT_IN_PRINTF_UNLOCKED
:
6092 target
= expand_builtin_printf (arglist
, target
, mode
, true);
6097 case BUILT_IN_FPUTS
:
6098 target
= expand_builtin_fputs (arglist
, target
, false);
6102 case BUILT_IN_FPUTS_UNLOCKED
:
6103 target
= expand_builtin_fputs (arglist
, target
, true);
6108 case BUILT_IN_FPRINTF
:
6109 target
= expand_builtin_fprintf (arglist
, target
, mode
, false);
6114 case BUILT_IN_FPRINTF_UNLOCKED
:
6115 target
= expand_builtin_fprintf (arglist
, target
, mode
, true);
6120 case BUILT_IN_SPRINTF
:
6121 target
= expand_builtin_sprintf (arglist
, target
, mode
);
6126 case BUILT_IN_SIGNBIT
:
6127 case BUILT_IN_SIGNBITF
:
6128 case BUILT_IN_SIGNBITL
:
6129 target
= expand_builtin_signbit (exp
, target
);
6134 /* Various hooks for the DWARF 2 __throw routine. */
6135 case BUILT_IN_UNWIND_INIT
:
6136 expand_builtin_unwind_init ();
6138 case BUILT_IN_DWARF_CFA
:
6139 return virtual_cfa_rtx
;
6140 #ifdef DWARF2_UNWIND_INFO
6141 case BUILT_IN_DWARF_SP_COLUMN
:
6142 return expand_builtin_dwarf_sp_column ();
6143 case BUILT_IN_INIT_DWARF_REG_SIZES
:
6144 expand_builtin_init_dwarf_reg_sizes (TREE_VALUE (arglist
));
6147 case BUILT_IN_FROB_RETURN_ADDR
:
6148 return expand_builtin_frob_return_addr (TREE_VALUE (arglist
));
6149 case BUILT_IN_EXTRACT_RETURN_ADDR
:
6150 return expand_builtin_extract_return_addr (TREE_VALUE (arglist
));
6151 case BUILT_IN_EH_RETURN
:
6152 expand_builtin_eh_return (TREE_VALUE (arglist
),
6153 TREE_VALUE (TREE_CHAIN (arglist
)));
6155 #ifdef EH_RETURN_DATA_REGNO
6156 case BUILT_IN_EH_RETURN_DATA_REGNO
:
6157 return expand_builtin_eh_return_data_regno (arglist
);
6159 case BUILT_IN_EXTEND_POINTER
:
6160 return expand_builtin_extend_pointer (TREE_VALUE (arglist
));
6162 case BUILT_IN_VA_START
:
6163 case BUILT_IN_STDARG_START
:
6164 return expand_builtin_va_start (arglist
);
6165 case BUILT_IN_VA_END
:
6166 return expand_builtin_va_end (arglist
);
6167 case BUILT_IN_VA_COPY
:
6168 return expand_builtin_va_copy (arglist
);
6169 case BUILT_IN_EXPECT
:
6170 return expand_builtin_expect (arglist
, target
);
6171 case BUILT_IN_PREFETCH
:
6172 expand_builtin_prefetch (arglist
);
6175 case BUILT_IN_PROFILE_FUNC_ENTER
:
6176 return expand_builtin_profile_func (false);
6177 case BUILT_IN_PROFILE_FUNC_EXIT
:
6178 return expand_builtin_profile_func (true);
6180 case BUILT_IN_INIT_TRAMPOLINE
:
6181 return expand_builtin_init_trampoline (arglist
);
6182 case BUILT_IN_ADJUST_TRAMPOLINE
:
6183 return expand_builtin_adjust_trampoline (arglist
);
6186 case BUILT_IN_EXECL
:
6187 case BUILT_IN_EXECV
:
6188 case BUILT_IN_EXECLP
:
6189 case BUILT_IN_EXECLE
:
6190 case BUILT_IN_EXECVP
:
6191 case BUILT_IN_EXECVE
:
6192 target
= expand_builtin_fork_or_exec (fndecl
, arglist
, target
, ignore
);
6197 default: /* just do library call, if unknown builtin */
6201 /* The switch statement above can drop through to cause the function
6202 to be called normally. */
6203 return expand_call (exp
, target
, ignore
);
6206 /* Determine whether a tree node represents a call to a built-in
6207 function. If the tree T is a call to a built-in function with
6208 the right number of arguments of the appropriate types, return
6209 the DECL_FUNCTION_CODE of the call, e.g. BUILT_IN_SQRT.
6210 Otherwise the return value is END_BUILTINS. */
6212 enum built_in_function
6213 builtin_mathfn_code (tree t
)
6215 tree fndecl
, arglist
, parmlist
;
6216 tree argtype
, parmtype
;
6218 if (TREE_CODE (t
) != CALL_EXPR
6219 || TREE_CODE (TREE_OPERAND (t
, 0)) != ADDR_EXPR
)
6220 return END_BUILTINS
;
6222 fndecl
= get_callee_fndecl (t
);
6223 if (fndecl
== NULL_TREE
6224 || TREE_CODE (fndecl
) != FUNCTION_DECL
6225 || ! DECL_BUILT_IN (fndecl
)
6226 || DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
6227 return END_BUILTINS
;
6229 arglist
= TREE_OPERAND (t
, 1);
6230 parmlist
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
6231 for (; parmlist
; parmlist
= TREE_CHAIN (parmlist
))
6233 /* If a function doesn't take a variable number of arguments,
6234 the last element in the list will have type `void'. */
6235 parmtype
= TREE_VALUE (parmlist
);
6236 if (VOID_TYPE_P (parmtype
))
6239 return END_BUILTINS
;
6240 return DECL_FUNCTION_CODE (fndecl
);
6244 return END_BUILTINS
;
6246 argtype
= TREE_TYPE (TREE_VALUE (arglist
));
6248 if (SCALAR_FLOAT_TYPE_P (parmtype
))
6250 if (! SCALAR_FLOAT_TYPE_P (argtype
))
6251 return END_BUILTINS
;
6253 else if (COMPLEX_FLOAT_TYPE_P (parmtype
))
6255 if (! COMPLEX_FLOAT_TYPE_P (argtype
))
6256 return END_BUILTINS
;
6258 else if (POINTER_TYPE_P (parmtype
))
6260 if (! POINTER_TYPE_P (argtype
))
6261 return END_BUILTINS
;
6263 else if (INTEGRAL_TYPE_P (parmtype
))
6265 if (! INTEGRAL_TYPE_P (argtype
))
6266 return END_BUILTINS
;
6269 return END_BUILTINS
;
6271 arglist
= TREE_CHAIN (arglist
);
6274 /* Variable-length argument list. */
6275 return DECL_FUNCTION_CODE (fndecl
);
6278 /* Fold a call to __builtin_constant_p, if we know it will evaluate to a
6279 constant. ARGLIST is the argument list of the call. */
6282 fold_builtin_constant_p (tree arglist
)
6287 arglist
= TREE_VALUE (arglist
);
6289 /* We return 1 for a numeric type that's known to be a constant
6290 value at compile-time or for an aggregate type that's a
6291 literal constant. */
6292 STRIP_NOPS (arglist
);
6294 /* If we know this is a constant, emit the constant of one. */
6295 if (TREE_CODE_CLASS (TREE_CODE (arglist
)) == 'c'
6296 || (TREE_CODE (arglist
) == CONSTRUCTOR
6297 && TREE_CONSTANT (arglist
))
6298 || (TREE_CODE (arglist
) == ADDR_EXPR
6299 && TREE_CODE (TREE_OPERAND (arglist
, 0)) == STRING_CST
))
6300 return integer_one_node
;
6302 /* If this expression has side effects, show we don't know it to be a
6303 constant. Likewise if it's a pointer or aggregate type since in
6304 those case we only want literals, since those are only optimized
6305 when generating RTL, not later.
6306 And finally, if we are compiling an initializer, not code, we
6307 need to return a definite result now; there's not going to be any
6308 more optimization done. */
6309 if (TREE_SIDE_EFFECTS (arglist
)
6310 || AGGREGATE_TYPE_P (TREE_TYPE (arglist
))
6311 || POINTER_TYPE_P (TREE_TYPE (arglist
))
6313 return integer_zero_node
;
6318 /* Fold a call to __builtin_expect, if we expect that a comparison against
6319 the argument will fold to a constant. In practice, this means a true
6320 constant or the address of a non-weak symbol. ARGLIST is the argument
6321 list of the call. */
6324 fold_builtin_expect (tree arglist
)
6331 arg
= TREE_VALUE (arglist
);
6333 /* If the argument isn't invariant, then there's nothing we can do. */
6334 if (!TREE_INVARIANT (arg
))
6337 /* If we're looking at an address of a weak decl, then do not fold. */
6340 if (TREE_CODE (inner
) == ADDR_EXPR
)
6344 inner
= TREE_OPERAND (inner
, 0);
6346 while (TREE_CODE (inner
) == COMPONENT_REF
6347 || TREE_CODE (inner
) == ARRAY_REF
);
6348 if (DECL_P (inner
) && DECL_WEAK (inner
))
6352 /* Otherwise, ARG already has the proper type for the return value. */
6356 /* Fold a call to __builtin_classify_type. */
6359 fold_builtin_classify_type (tree arglist
)
6362 return build_int_2 (no_type_class
, 0);
6364 return build_int_2 (type_to_class (TREE_TYPE (TREE_VALUE (arglist
))), 0);
6367 /* Fold a call to __builtin_inf or __builtin_huge_val. */
6370 fold_builtin_inf (tree type
, int warn
)
6372 REAL_VALUE_TYPE real
;
6374 if (!MODE_HAS_INFINITIES (TYPE_MODE (type
)) && warn
)
6375 warning ("target format does not support infinity");
6378 return build_real (type
, real
);
6381 /* Fold a call to __builtin_nan or __builtin_nans. */
6384 fold_builtin_nan (tree arglist
, tree type
, int quiet
)
6386 REAL_VALUE_TYPE real
;
6389 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
6391 str
= c_getstr (TREE_VALUE (arglist
));
6395 if (!real_nan (&real
, str
, quiet
, TYPE_MODE (type
)))
6398 return build_real (type
, real
);
6401 /* Return true if the floating point expression T has an integer value.
6402 We also allow +Inf, -Inf and NaN to be considered integer values. */
6405 integer_valued_real_p (tree t
)
6407 switch (TREE_CODE (t
))
6414 case NON_LVALUE_EXPR
:
6415 return integer_valued_real_p (TREE_OPERAND (t
, 0));
6420 return integer_valued_real_p (TREE_OPERAND (t
, 1));
6427 return integer_valued_real_p (TREE_OPERAND (t
, 0))
6428 && integer_valued_real_p (TREE_OPERAND (t
, 1));
6431 return integer_valued_real_p (TREE_OPERAND (t
, 1))
6432 && integer_valued_real_p (TREE_OPERAND (t
, 2));
6435 if (! TREE_CONSTANT_OVERFLOW (t
))
6437 REAL_VALUE_TYPE c
, cint
;
6439 c
= TREE_REAL_CST (t
);
6440 real_trunc (&cint
, TYPE_MODE (TREE_TYPE (t
)), &c
);
6441 return real_identical (&c
, &cint
);
6446 tree type
= TREE_TYPE (TREE_OPERAND (t
, 0));
6447 if (TREE_CODE (type
) == INTEGER_TYPE
)
6449 if (TREE_CODE (type
) == REAL_TYPE
)
6450 return integer_valued_real_p (TREE_OPERAND (t
, 0));
6455 switch (builtin_mathfn_code (t
))
6458 case BUILT_IN_CEILF
:
6459 case BUILT_IN_CEILL
:
6460 case BUILT_IN_FLOOR
:
6461 case BUILT_IN_FLOORF
:
6462 case BUILT_IN_FLOORL
:
6463 case BUILT_IN_NEARBYINT
:
6464 case BUILT_IN_NEARBYINTF
:
6465 case BUILT_IN_NEARBYINTL
:
6467 case BUILT_IN_RINTF
:
6468 case BUILT_IN_RINTL
:
6469 case BUILT_IN_ROUND
:
6470 case BUILT_IN_ROUNDF
:
6471 case BUILT_IN_ROUNDL
:
6472 case BUILT_IN_TRUNC
:
6473 case BUILT_IN_TRUNCF
:
6474 case BUILT_IN_TRUNCL
:
6488 /* EXP is assumed to be builtin call where truncation can be propagated
6489 across (for instance floor((double)f) == (double)floorf (f).
6490 Do the transformation. */
6493 fold_trunc_transparent_mathfn (tree exp
)
6495 tree fndecl
= get_callee_fndecl (exp
);
6496 tree arglist
= TREE_OPERAND (exp
, 1);
6497 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
6500 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6503 arg
= TREE_VALUE (arglist
);
6504 /* Integer rounding functions are idempotent. */
6505 if (fcode
== builtin_mathfn_code (arg
))
6508 /* If argument is already integer valued, and we don't need to worry
6509 about setting errno, there's no need to perform rounding. */
6510 if (! flag_errno_math
&& integer_valued_real_p (arg
))
6515 tree arg0
= strip_float_extensions (arg
);
6516 tree ftype
= TREE_TYPE (exp
);
6517 tree newtype
= TREE_TYPE (arg0
);
6520 if (TYPE_PRECISION (newtype
) < TYPE_PRECISION (ftype
)
6521 && (decl
= mathfn_built_in (newtype
, fcode
)))
6524 build_tree_list (NULL_TREE
, fold_convert (newtype
, arg0
));
6525 return fold_convert (ftype
,
6526 build_function_call_expr (decl
, arglist
));
6532 /* EXP is assumed to be builtin call which can narrow the FP type of
6533 the argument, for instance lround((double)f) -> lroundf (f). */
6536 fold_fixed_mathfn (tree exp
)
6538 tree fndecl
= get_callee_fndecl (exp
);
6539 tree arglist
= TREE_OPERAND (exp
, 1);
6540 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
6543 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6546 arg
= TREE_VALUE (arglist
);
6548 /* If argument is already integer valued, and we don't need to worry
6549 about setting errno, there's no need to perform rounding. */
6550 if (! flag_errno_math
&& integer_valued_real_p (arg
))
6551 return fold (build1 (FIX_TRUNC_EXPR
, TREE_TYPE (exp
), arg
));
6555 tree ftype
= TREE_TYPE (arg
);
6556 tree arg0
= strip_float_extensions (arg
);
6557 tree newtype
= TREE_TYPE (arg0
);
6560 if (TYPE_PRECISION (newtype
) < TYPE_PRECISION (ftype
)
6561 && (decl
= mathfn_built_in (newtype
, fcode
)))
6564 build_tree_list (NULL_TREE
, fold_convert (newtype
, arg0
));
6565 return build_function_call_expr (decl
, arglist
);
6571 /* Fold function call to builtin cabs, cabsf or cabsl. ARGLIST
6572 is the argument list and TYPE is the return type. Return
6573 NULL_TREE if no if no simplification can be made. */
6576 fold_builtin_cabs (tree arglist
, tree type
)
6580 if (!arglist
|| TREE_CHAIN (arglist
))
6583 arg
= TREE_VALUE (arglist
);
6584 if (TREE_CODE (TREE_TYPE (arg
)) != COMPLEX_TYPE
6585 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != REAL_TYPE
)
6588 /* Evaluate cabs of a constant at compile-time. */
6589 if (flag_unsafe_math_optimizations
6590 && TREE_CODE (arg
) == COMPLEX_CST
6591 && TREE_CODE (TREE_REALPART (arg
)) == REAL_CST
6592 && TREE_CODE (TREE_IMAGPART (arg
)) == REAL_CST
6593 && ! TREE_CONSTANT_OVERFLOW (TREE_REALPART (arg
))
6594 && ! TREE_CONSTANT_OVERFLOW (TREE_IMAGPART (arg
)))
6596 REAL_VALUE_TYPE r
, i
;
6598 r
= TREE_REAL_CST (TREE_REALPART (arg
));
6599 i
= TREE_REAL_CST (TREE_IMAGPART (arg
));
6601 real_arithmetic (&r
, MULT_EXPR
, &r
, &r
);
6602 real_arithmetic (&i
, MULT_EXPR
, &i
, &i
);
6603 real_arithmetic (&r
, PLUS_EXPR
, &r
, &i
);
6604 if (real_sqrt (&r
, TYPE_MODE (type
), &r
)
6605 || ! flag_trapping_math
)
6606 return build_real (type
, r
);
6609 /* If either part is zero, cabs is fabs of the other. */
6610 if (TREE_CODE (arg
) == COMPLEX_EXPR
6611 && real_zerop (TREE_OPERAND (arg
, 0)))
6612 return fold (build1 (ABS_EXPR
, type
, TREE_OPERAND (arg
, 1)));
6613 if (TREE_CODE (arg
) == COMPLEX_EXPR
6614 && real_zerop (TREE_OPERAND (arg
, 1)))
6615 return fold (build1 (ABS_EXPR
, type
, TREE_OPERAND (arg
, 0)));
6617 if (flag_unsafe_math_optimizations
)
6619 tree sqrtfn
= mathfn_built_in (type
, BUILT_IN_SQRT
);
6621 if (sqrtfn
!= NULL_TREE
)
6623 tree rpart
, ipart
, result
, arglist
;
6625 arg
= builtin_save_expr (arg
);
6627 rpart
= fold (build1 (REALPART_EXPR
, type
, arg
));
6628 ipart
= fold (build1 (IMAGPART_EXPR
, type
, arg
));
6630 rpart
= builtin_save_expr (rpart
);
6631 ipart
= builtin_save_expr (ipart
);
6633 result
= fold (build2 (PLUS_EXPR
, type
,
6634 fold (build2 (MULT_EXPR
, type
,
6636 fold (build2 (MULT_EXPR
, type
,
6639 arglist
= build_tree_list (NULL_TREE
, result
);
6640 return build_function_call_expr (sqrtfn
, arglist
);
6647 /* Fold function call to builtin trunc, truncf or truncl. Return
6648 NULL_TREE if no simplification can be made. */
6651 fold_builtin_trunc (tree exp
)
6653 tree arglist
= TREE_OPERAND (exp
, 1);
6656 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6659 /* Optimize trunc of constant value. */
6660 arg
= TREE_VALUE (arglist
);
6661 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6663 REAL_VALUE_TYPE r
, x
;
6664 tree type
= TREE_TYPE (exp
);
6666 x
= TREE_REAL_CST (arg
);
6667 real_trunc (&r
, TYPE_MODE (type
), &x
);
6668 return build_real (type
, r
);
6671 return fold_trunc_transparent_mathfn (exp
);
6674 /* Fold function call to builtin floor, floorf or floorl. Return
6675 NULL_TREE if no simplification can be made. */
6678 fold_builtin_floor (tree exp
)
6680 tree arglist
= TREE_OPERAND (exp
, 1);
6683 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6686 /* Optimize floor of constant value. */
6687 arg
= TREE_VALUE (arglist
);
6688 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6692 x
= TREE_REAL_CST (arg
);
6693 if (! REAL_VALUE_ISNAN (x
) || ! flag_errno_math
)
6695 tree type
= TREE_TYPE (exp
);
6698 real_floor (&r
, TYPE_MODE (type
), &x
);
6699 return build_real (type
, r
);
6703 return fold_trunc_transparent_mathfn (exp
);
6706 /* Fold function call to builtin ceil, ceilf or ceill. Return
6707 NULL_TREE if no simplification can be made. */
6710 fold_builtin_ceil (tree exp
)
6712 tree arglist
= TREE_OPERAND (exp
, 1);
6715 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6718 /* Optimize ceil of constant value. */
6719 arg
= TREE_VALUE (arglist
);
6720 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6724 x
= TREE_REAL_CST (arg
);
6725 if (! REAL_VALUE_ISNAN (x
) || ! flag_errno_math
)
6727 tree type
= TREE_TYPE (exp
);
6730 real_ceil (&r
, TYPE_MODE (type
), &x
);
6731 return build_real (type
, r
);
6735 return fold_trunc_transparent_mathfn (exp
);
6738 /* Fold function call to builtin round, roundf or roundl. Return
6739 NULL_TREE if no simplification can be made. */
6742 fold_builtin_round (tree exp
)
6744 tree arglist
= TREE_OPERAND (exp
, 1);
6747 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6750 /* Optimize round of constant value. */
6751 arg
= TREE_VALUE (arglist
);
6752 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6756 x
= TREE_REAL_CST (arg
);
6757 if (! REAL_VALUE_ISNAN (x
) || ! flag_errno_math
)
6759 tree type
= TREE_TYPE (exp
);
6762 real_round (&r
, TYPE_MODE (type
), &x
);
6763 return build_real (type
, r
);
6767 return fold_trunc_transparent_mathfn (exp
);
6770 /* Fold function call to builtin lround, lroundf or lroundl (or the
6771 corresponding long long versions). Return NULL_TREE if no
6772 simplification can be made. */
6775 fold_builtin_lround (tree exp
)
6777 tree arglist
= TREE_OPERAND (exp
, 1);
6780 if (! validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6783 /* Optimize lround of constant value. */
6784 arg
= TREE_VALUE (arglist
);
6785 if (TREE_CODE (arg
) == REAL_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6787 const REAL_VALUE_TYPE x
= TREE_REAL_CST (arg
);
6789 if (! REAL_VALUE_ISNAN (x
) && ! REAL_VALUE_ISINF (x
))
6791 tree itype
= TREE_TYPE (exp
), ftype
= TREE_TYPE (arg
), result
;
6792 HOST_WIDE_INT hi
, lo
;
6795 real_round (&r
, TYPE_MODE (ftype
), &x
);
6796 REAL_VALUE_TO_INT (&lo
, &hi
, r
);
6797 result
= build_int_2 (lo
, hi
);
6798 if (int_fits_type_p (result
, itype
))
6799 return fold_convert (itype
, result
);
6803 return fold_fixed_mathfn (exp
);
6806 /* Fold function call to builtin ffs, clz, ctz, popcount and parity
6807 and their long and long long variants (i.e. ffsl and ffsll).
6808 Return NULL_TREE if no simplification can be made. */
6811 fold_builtin_bitop (tree exp
)
6813 tree fndecl
= get_callee_fndecl (exp
);
6814 tree arglist
= TREE_OPERAND (exp
, 1);
6817 if (! validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
6820 /* Optimize for constant argument. */
6821 arg
= TREE_VALUE (arglist
);
6822 if (TREE_CODE (arg
) == INTEGER_CST
&& ! TREE_CONSTANT_OVERFLOW (arg
))
6824 HOST_WIDE_INT hi
, width
, result
;
6825 unsigned HOST_WIDE_INT lo
;
6828 type
= TREE_TYPE (arg
);
6829 width
= TYPE_PRECISION (type
);
6830 lo
= TREE_INT_CST_LOW (arg
);
6832 /* Clear all the bits that are beyond the type's precision. */
6833 if (width
> HOST_BITS_PER_WIDE_INT
)
6835 hi
= TREE_INT_CST_HIGH (arg
);
6836 if (width
< 2 * HOST_BITS_PER_WIDE_INT
)
6837 hi
&= ~((HOST_WIDE_INT
) (-1) >> (width
- HOST_BITS_PER_WIDE_INT
));
6842 if (width
< HOST_BITS_PER_WIDE_INT
)
6843 lo
&= ~((unsigned HOST_WIDE_INT
) (-1) << width
);
6846 switch (DECL_FUNCTION_CODE (fndecl
))
6850 case BUILT_IN_FFSLL
:
6852 result
= exact_log2 (lo
& -lo
) + 1;
6854 result
= HOST_BITS_PER_WIDE_INT
+ exact_log2 (hi
& -hi
) + 1;
6861 case BUILT_IN_CLZLL
:
6863 result
= width
- floor_log2 (hi
) - 1 - HOST_BITS_PER_WIDE_INT
;
6865 result
= width
- floor_log2 (lo
) - 1;
6866 else if (! CLZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type
), result
))
6872 case BUILT_IN_CTZLL
:
6874 result
= exact_log2 (lo
& -lo
);
6876 result
= HOST_BITS_PER_WIDE_INT
+ exact_log2 (hi
& -hi
);
6877 else if (! CTZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type
), result
))
6881 case BUILT_IN_POPCOUNT
:
6882 case BUILT_IN_POPCOUNTL
:
6883 case BUILT_IN_POPCOUNTLL
:
6886 result
++, lo
&= lo
- 1;
6888 result
++, hi
&= hi
- 1;
6891 case BUILT_IN_PARITY
:
6892 case BUILT_IN_PARITYL
:
6893 case BUILT_IN_PARITYLL
:
6896 result
++, lo
&= lo
- 1;
6898 result
++, hi
&= hi
- 1;
6906 t
= build_int_2 (result
, 0);
6907 TREE_TYPE (t
) = TREE_TYPE (exp
);
6914 /* Return true if EXPR is the real constant contained in VALUE. */
6917 real_dconstp (tree expr
, const REAL_VALUE_TYPE
*value
)
6921 return ((TREE_CODE (expr
) == REAL_CST
6922 && ! TREE_CONSTANT_OVERFLOW (expr
)
6923 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), *value
))
6924 || (TREE_CODE (expr
) == COMPLEX_CST
6925 && real_dconstp (TREE_REALPART (expr
), value
)
6926 && real_zerop (TREE_IMAGPART (expr
))));
6929 /* A subroutine of fold_builtin to fold the various logarithmic
6930 functions. EXP is the CALL_EXPR of a call to a builtin logN
6931 function. VALUE is the base of the logN function. */
6934 fold_builtin_logarithm (tree exp
, const REAL_VALUE_TYPE
*value
)
6936 tree arglist
= TREE_OPERAND (exp
, 1);
6938 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
6940 tree fndecl
= get_callee_fndecl (exp
);
6941 tree type
= TREE_TYPE (TREE_TYPE (fndecl
));
6942 tree arg
= TREE_VALUE (arglist
);
6943 const enum built_in_function fcode
= builtin_mathfn_code (arg
);
6945 /* Optimize logN(1.0) = 0.0. */
6946 if (real_onep (arg
))
6947 return build_real (type
, dconst0
);
6949 /* Optimize logN(N) = 1.0. If N can't be truncated to MODE
6950 exactly, then only do this if flag_unsafe_math_optimizations. */
6951 if (exact_real_truncate (TYPE_MODE (type
), value
)
6952 || flag_unsafe_math_optimizations
)
6954 const REAL_VALUE_TYPE value_truncate
=
6955 real_value_truncate (TYPE_MODE (type
), *value
);
6956 if (real_dconstp (arg
, &value_truncate
))
6957 return build_real (type
, dconst1
);
6960 /* Special case, optimize logN(expN(x)) = x. */
6961 if (flag_unsafe_math_optimizations
6962 && ((value
== &dconste
6963 && (fcode
== BUILT_IN_EXP
6964 || fcode
== BUILT_IN_EXPF
6965 || fcode
== BUILT_IN_EXPL
))
6966 || (value
== &dconst2
6967 && (fcode
== BUILT_IN_EXP2
6968 || fcode
== BUILT_IN_EXP2F
6969 || fcode
== BUILT_IN_EXP2L
))
6970 || (value
== &dconst10
&& (BUILTIN_EXP10_P (fcode
)))))
6971 return fold_convert (type
, TREE_VALUE (TREE_OPERAND (arg
, 1)));
6973 /* Optimize logN(func()) for various exponential functions. We
6974 want to determine the value "x" and the power "exponent" in
6975 order to transform logN(x**exponent) into exponent*logN(x). */
6976 if (flag_unsafe_math_optimizations
)
6978 tree exponent
= 0, x
= 0;
6985 /* Prepare to do logN(exp(exponent) -> exponent*logN(e). */
6986 x
= build_real (type
,
6987 real_value_truncate (TYPE_MODE (type
), dconste
));
6988 exponent
= TREE_VALUE (TREE_OPERAND (arg
, 1));
6991 case BUILT_IN_EXP2F
:
6992 case BUILT_IN_EXP2L
:
6993 /* Prepare to do logN(exp2(exponent) -> exponent*logN(2). */
6994 x
= build_real (type
, dconst2
);
6995 exponent
= TREE_VALUE (TREE_OPERAND (arg
, 1));
6997 case BUILT_IN_EXP10
:
6998 case BUILT_IN_EXP10F
:
6999 case BUILT_IN_EXP10L
:
7000 case BUILT_IN_POW10
:
7001 case BUILT_IN_POW10F
:
7002 case BUILT_IN_POW10L
:
7003 /* Prepare to do logN(exp10(exponent) -> exponent*logN(10). */
7004 x
= build_real (type
, dconst10
);
7005 exponent
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7008 case BUILT_IN_SQRTF
:
7009 case BUILT_IN_SQRTL
:
7010 /* Prepare to do logN(sqrt(x) -> 0.5*logN(x). */
7011 x
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7012 exponent
= build_real (type
, dconsthalf
);
7015 case BUILT_IN_CBRTF
:
7016 case BUILT_IN_CBRTL
:
7017 /* Prepare to do logN(cbrt(x) -> (1/3)*logN(x). */
7018 x
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7019 exponent
= build_real (type
, real_value_truncate (TYPE_MODE (type
),
7025 /* Prepare to do logN(pow(x,exponent) -> exponent*logN(x). */
7026 x
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7027 exponent
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg
, 1)));
7033 /* Now perform the optimization. */
7037 arglist
= build_tree_list (NULL_TREE
, x
);
7038 logfn
= build_function_call_expr (fndecl
, arglist
);
7039 return fold (build2 (MULT_EXPR
, type
, exponent
, logfn
));
7047 /* A subroutine of fold_builtin to fold the various exponent
7048 functions. EXP is the CALL_EXPR of a call to a builtin function.
7049 VALUE is the value which will be raised to a power. */
7052 fold_builtin_exponent (tree exp
, const REAL_VALUE_TYPE
*value
)
7054 tree arglist
= TREE_OPERAND (exp
, 1);
7056 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7058 tree fndecl
= get_callee_fndecl (exp
);
7059 tree type
= TREE_TYPE (TREE_TYPE (fndecl
));
7060 tree arg
= TREE_VALUE (arglist
);
7062 /* Optimize exp*(0.0) = 1.0. */
7063 if (real_zerop (arg
))
7064 return build_real (type
, dconst1
);
7066 /* Optimize expN(1.0) = N. */
7067 if (real_onep (arg
))
7069 REAL_VALUE_TYPE cst
;
7071 real_convert (&cst
, TYPE_MODE (type
), value
);
7072 return build_real (type
, cst
);
7075 /* Attempt to evaluate expN(integer) at compile-time. */
7076 if (flag_unsafe_math_optimizations
7077 && TREE_CODE (arg
) == REAL_CST
7078 && ! TREE_CONSTANT_OVERFLOW (arg
))
7080 REAL_VALUE_TYPE cint
;
7084 c
= TREE_REAL_CST (arg
);
7085 n
= real_to_integer (&c
);
7086 real_from_integer (&cint
, VOIDmode
, n
,
7088 if (real_identical (&c
, &cint
))
7092 real_powi (&x
, TYPE_MODE (type
), value
, n
);
7093 return build_real (type
, x
);
7097 /* Optimize expN(logN(x)) = x. */
7098 if (flag_unsafe_math_optimizations
)
7100 const enum built_in_function fcode
= builtin_mathfn_code (arg
);
7102 if ((value
== &dconste
7103 && (fcode
== BUILT_IN_LOG
7104 || fcode
== BUILT_IN_LOGF
7105 || fcode
== BUILT_IN_LOGL
))
7106 || (value
== &dconst2
7107 && (fcode
== BUILT_IN_LOG2
7108 || fcode
== BUILT_IN_LOG2F
7109 || fcode
== BUILT_IN_LOG2L
))
7110 || (value
== &dconst10
7111 && (fcode
== BUILT_IN_LOG10
7112 || fcode
== BUILT_IN_LOG10F
7113 || fcode
== BUILT_IN_LOG10L
)))
7114 return fold_convert (type
, TREE_VALUE (TREE_OPERAND (arg
, 1)));
7121 /* Fold function call to builtin memcpy. Return
7122 NULL_TREE if no simplification can be made. */
7125 fold_builtin_memcpy (tree exp
)
7127 tree arglist
= TREE_OPERAND (exp
, 1);
7128 tree dest
, src
, len
;
7130 if (!validate_arglist (arglist
,
7131 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7134 dest
= TREE_VALUE (arglist
);
7135 src
= TREE_VALUE (TREE_CHAIN (arglist
));
7136 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7138 /* If the LEN parameter is zero, return DEST. */
7139 if (integer_zerop (len
))
7140 return omit_one_operand (TREE_TYPE (exp
), dest
, src
);
7142 /* If SRC and DEST are the same (and not volatile), return DEST. */
7143 if (operand_equal_p (src
, dest
, 0))
7144 return omit_one_operand (TREE_TYPE (exp
), dest
, len
);
7149 /* Fold function call to builtin mempcpy. Return
7150 NULL_TREE if no simplification can be made. */
7153 fold_builtin_mempcpy (tree exp
)
7155 tree arglist
= TREE_OPERAND (exp
, 1);
7156 tree dest
, src
, len
;
7158 if (!validate_arglist (arglist
,
7159 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7162 dest
= TREE_VALUE (arglist
);
7163 src
= TREE_VALUE (TREE_CHAIN (arglist
));
7164 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7166 /* If the LEN parameter is zero, return DEST. */
7167 if (integer_zerop (len
))
7168 return omit_one_operand (TREE_TYPE (exp
), dest
, src
);
7170 /* If SRC and DEST are the same (and not volatile), return DEST+LEN. */
7171 if (operand_equal_p (src
, dest
, 0))
7173 tree temp
= fold_convert (TREE_TYPE (dest
), len
);
7174 temp
= fold (build2 (PLUS_EXPR
, TREE_TYPE (dest
), dest
, temp
));
7175 return fold_convert (TREE_TYPE (exp
), temp
);
7181 /* Fold function call to builtin memmove. Return
7182 NULL_TREE if no simplification can be made. */
7185 fold_builtin_memmove (tree exp
)
7187 tree arglist
= TREE_OPERAND (exp
, 1);
7188 tree dest
, src
, len
;
7190 if (!validate_arglist (arglist
,
7191 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7194 dest
= TREE_VALUE (arglist
);
7195 src
= TREE_VALUE (TREE_CHAIN (arglist
));
7196 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7198 /* If the LEN parameter is zero, return DEST. */
7199 if (integer_zerop (len
))
7200 return omit_one_operand (TREE_TYPE (exp
), dest
, src
);
7202 /* If SRC and DEST are the same (and not volatile), return DEST. */
7203 if (operand_equal_p (src
, dest
, 0))
7204 return omit_one_operand (TREE_TYPE (exp
), dest
, len
);
7209 /* Fold function call to builtin strcpy. Return
7210 NULL_TREE if no simplification can be made. */
7213 fold_builtin_strcpy (tree exp
)
7215 tree arglist
= TREE_OPERAND (exp
, 1);
7218 if (!validate_arglist (arglist
,
7219 POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
7222 dest
= TREE_VALUE (arglist
);
7223 src
= TREE_VALUE (TREE_CHAIN (arglist
));
7225 /* If SRC and DEST are the same (and not volatile), return DEST. */
7226 if (operand_equal_p (src
, dest
, 0))
7227 return fold_convert (TREE_TYPE (exp
), dest
);
7232 /* Fold function call to builtin strncpy. Return
7233 NULL_TREE if no simplification can be made. */
7236 fold_builtin_strncpy (tree exp
)
7238 tree arglist
= TREE_OPERAND (exp
, 1);
7239 tree dest
, src
, len
;
7241 if (!validate_arglist (arglist
,
7242 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7245 dest
= TREE_VALUE (arglist
);
7246 src
= TREE_VALUE (TREE_CHAIN (arglist
));
7247 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7249 /* If the LEN parameter is zero, return DEST. */
7250 if (integer_zerop (len
))
7251 return omit_one_operand (TREE_TYPE (exp
), dest
, src
);
7256 /* Fold function call to builtin strchr and strrchr.
7257 Return NULL_TREE if no simplification can be made. */
7260 fold_builtin_strchr (tree exp
, bool actually_strrchr
)
7262 tree arglist
= TREE_OPERAND (exp
, 1);
7263 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7267 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
7270 if (TREE_CODE (s2
) != INTEGER_CST
)
7279 if (target_char_cast (s2
, &c
))
7282 r
= actually_strrchr
? strrchr (p1
, c
) : strchr (p1
, c
);
7285 return fold_convert (TREE_TYPE (s1
), integer_zero_node
);
7287 /* Return an offset into the constant string argument. */
7288 return fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
),
7289 s1
, fold_convert (TREE_TYPE (s1
),
7290 ssize_int (r
- p1
))));
7293 if (actually_strrchr
)
7297 if (!integer_zerop (s2
))
7300 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
7304 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
7305 return build_function_call_expr (fn
, arglist
);
7312 /* Fold function call to builtin memcmp. Return
7313 NULL_TREE if no simplification can be made. */
7316 fold_builtin_memcmp (tree exp
)
7318 tree arglist
= TREE_OPERAND (exp
, 1);
7319 tree arg1
, arg2
, len
;
7321 if (!validate_arglist (arglist
,
7322 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7325 arg1
= TREE_VALUE (arglist
);
7326 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
7327 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7329 /* If the LEN parameter is zero, return zero. */
7330 if (integer_zerop (len
))
7332 tree temp
= omit_one_operand (TREE_TYPE (exp
), integer_zero_node
, arg2
);
7333 return omit_one_operand (TREE_TYPE (exp
), temp
, arg1
);
7336 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
7337 if (operand_equal_p (arg1
, arg2
, 0))
7338 return omit_one_operand (TREE_TYPE (exp
), integer_zero_node
, len
);
7343 /* Fold function call to builtin strcmp. Return
7344 NULL_TREE if no simplification can be made. */
7347 fold_builtin_strcmp (tree exp
)
7349 tree arglist
= TREE_OPERAND (exp
, 1);
7351 const char *p1
, *p2
;
7353 if (!validate_arglist (arglist
,
7354 POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
7357 arg1
= TREE_VALUE (arglist
);
7358 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
7360 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
7361 if (operand_equal_p (arg1
, arg2
, 0))
7362 return fold_convert (TREE_TYPE (exp
), integer_zero_node
);
7364 p1
= c_getstr (arg1
);
7365 p2
= c_getstr (arg2
);
7370 const int i
= strcmp (p1
, p2
);
7372 temp
= integer_minus_one_node
;
7374 temp
= integer_one_node
;
7376 temp
= integer_zero_node
;
7377 return fold_convert (TREE_TYPE (exp
), temp
);
7383 /* Fold function call to builtin strncmp. Return
7384 NULL_TREE if no simplification can be made. */
7387 fold_builtin_strncmp (tree exp
)
7389 tree arglist
= TREE_OPERAND (exp
, 1);
7390 tree arg1
, arg2
, len
;
7391 const char *p1
, *p2
;
7393 if (!validate_arglist (arglist
,
7394 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
7397 arg1
= TREE_VALUE (arglist
);
7398 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
7399 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
7401 /* If the LEN parameter is zero, return zero. */
7402 if (integer_zerop (len
))
7404 tree temp
= omit_one_operand (TREE_TYPE (exp
), integer_zero_node
, arg2
);
7405 return omit_one_operand (TREE_TYPE (exp
), temp
, arg1
);
7408 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
7409 if (operand_equal_p (arg1
, arg2
, 0))
7410 return omit_one_operand (TREE_TYPE (exp
), integer_zero_node
, len
);
7412 p1
= c_getstr (arg1
);
7413 p2
= c_getstr (arg2
);
7415 if (host_integerp (len
, 1) && p1
&& p2
)
7418 const int i
= strncmp (p1
, p2
, tree_low_cst (len
, 1));
7420 temp
= integer_minus_one_node
;
7422 temp
= integer_one_node
;
7424 temp
= integer_zero_node
;
7425 return fold_convert (TREE_TYPE (exp
), temp
);
7431 /* Fold function call to builtin signbit, signbitf or signbitl. Return
7432 NULL_TREE if no simplification can be made. */
7435 fold_builtin_signbit (tree exp
)
7437 tree arglist
= TREE_OPERAND (exp
, 1);
7440 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7443 arg
= TREE_VALUE (arglist
);
7445 /* If ARG is a compile-time constant, determine the result. */
7446 if (TREE_CODE (arg
) == REAL_CST
7447 && !TREE_CONSTANT_OVERFLOW (arg
))
7451 c
= TREE_REAL_CST (arg
);
7452 temp
= REAL_VALUE_NEGATIVE (c
) ? integer_one_node
: integer_zero_node
;
7453 return fold_convert (TREE_TYPE (exp
), temp
);
7456 /* If ARG is non-negative, the result is always zero. */
7457 if (tree_expr_nonnegative_p (arg
))
7458 return omit_one_operand (TREE_TYPE (exp
), integer_zero_node
, arg
);
7460 /* If ARG's format doesn't have signed zeros, return "arg < 0.0". */
7461 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg
))))
7462 return fold (build2 (LT_EXPR
, TREE_TYPE (exp
), arg
,
7463 build_real (TREE_TYPE (arg
), dconst0
)));
7468 /* Fold function call to builtin copysign, copysignf or copysignl.
7469 Return NULL_TREE if no simplification can be made. */
7472 fold_builtin_copysign (tree arglist
, tree type
)
7476 if (!validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
7479 arg1
= TREE_VALUE (arglist
);
7480 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
7482 /* copysign(X,X) is X. */
7483 if (operand_equal_p (arg1
, arg2
, 0))
7484 return fold_convert (type
, arg1
);
7486 /* If ARG1 and ARG2 are compile-time constants, determine the result. */
7487 if (TREE_CODE (arg1
) == REAL_CST
7488 && TREE_CODE (arg2
) == REAL_CST
7489 && !TREE_CONSTANT_OVERFLOW (arg1
)
7490 && !TREE_CONSTANT_OVERFLOW (arg2
))
7492 REAL_VALUE_TYPE c1
, c2
;
7494 c1
= TREE_REAL_CST (arg1
);
7495 c2
= TREE_REAL_CST (arg2
);
7496 real_copysign (&c1
, &c2
);
7497 return build_real (type
, c1
);
7501 /* copysign(X, Y) is fabs(X) when Y is always non-negative.
7502 Remember to evaluate Y for side-effects. */
7503 if (tree_expr_nonnegative_p (arg2
))
7504 return omit_one_operand (type
,
7505 fold (build1 (ABS_EXPR
, type
, arg1
)),
7511 /* Fold a call to builtin isascii. */
7514 fold_builtin_isascii (tree arglist
)
7516 if (! validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
7520 /* Transform isascii(c) -> ((c & ~0x7f) == 0). */
7521 tree arg
= TREE_VALUE (arglist
);
7523 arg
= fold (build2 (EQ_EXPR
, integer_type_node
,
7524 build2 (BIT_AND_EXPR
, integer_type_node
, arg
,
7525 build_int_2 (~ (unsigned HOST_WIDE_INT
) 0x7f,
7526 ~ (HOST_WIDE_INT
) 0)),
7527 integer_zero_node
));
7529 if (in_gimple_form
&& !TREE_CONSTANT (arg
))
7536 /* Fold a call to builtin toascii. */
7539 fold_builtin_toascii (tree arglist
)
7541 if (! validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
7545 /* Transform toascii(c) -> (c & 0x7f). */
7546 tree arg
= TREE_VALUE (arglist
);
7548 return fold (build2 (BIT_AND_EXPR
, integer_type_node
, arg
,
7549 build_int_2 (0x7f, 0)));
7553 /* Fold a call to builtin isdigit. */
7556 fold_builtin_isdigit (tree arglist
)
7558 if (! validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
7562 /* Transform isdigit(c) -> (unsigned)(c) - '0' <= 9. */
7563 /* According to the C standard, isdigit is unaffected by locale. */
7564 tree arg
= TREE_VALUE (arglist
);
7565 arg
= fold_convert (unsigned_type_node
, arg
);
7566 arg
= build2 (MINUS_EXPR
, unsigned_type_node
, arg
,
7567 fold_convert (unsigned_type_node
,
7568 build_int_2 (TARGET_DIGIT0
, 0)));
7569 arg
= build2 (LE_EXPR
, integer_type_node
, arg
,
7570 fold_convert (unsigned_type_node
, build_int_2 (9, 0)));
7572 if (in_gimple_form
&& !TREE_CONSTANT (arg
))
7579 /* Fold a call to fabs, fabsf or fabsl. */
7582 fold_builtin_fabs (tree arglist
, tree type
)
7586 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7589 arg
= TREE_VALUE (arglist
);
7590 if (TREE_CODE (arg
) == REAL_CST
)
7591 return fold_abs_const (arg
, type
);
7592 return fold (build1 (ABS_EXPR
, type
, arg
));
7595 /* Fold a call to abs, labs, llabs or imaxabs. */
7598 fold_builtin_abs (tree arglist
, tree type
)
7602 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
7605 arg
= TREE_VALUE (arglist
);
7606 if (TREE_CODE (arg
) == INTEGER_CST
)
7607 return fold_abs_const (arg
, type
);
7608 return fold (build1 (ABS_EXPR
, type
, arg
));
7611 /* Fold a call to an unordered comparison function such as
7612 __builtin_isgreater(). ARGLIST is the funtion's argument list
7613 and TYPE is the functions return type. UNORDERED_CODE and
7614 ORDERED_CODE are comparison codes that give the opposite of
7615 the desired result. UNORDERED_CODE is used for modes that can
7616 hold NaNs and ORDERED_CODE is used for the rest. */
7619 fold_builtin_unordered_cmp (tree exp
,
7620 enum tree_code unordered_code
,
7621 enum tree_code ordered_code
)
7623 tree fndecl
= get_callee_fndecl (exp
);
7624 tree arglist
= TREE_OPERAND (exp
, 1);
7625 tree type
= TREE_TYPE (TREE_TYPE (fndecl
));
7626 enum tree_code code
;
7629 if (!validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
7631 enum tree_code code0
, code1
;
7635 /* Check that we have exactly two arguments. */
7636 if (arglist
== 0 || TREE_CHAIN (arglist
) == 0)
7638 error ("too few arguments to function `%s'",
7639 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
7640 return error_mark_node
;
7642 else if (TREE_CHAIN (TREE_CHAIN (arglist
)) != 0)
7644 error ("too many arguments to function `%s'",
7645 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
7646 return error_mark_node
;
7649 arg0
= TREE_VALUE (arglist
);
7650 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
7652 type0
= TREE_TYPE (arg0
);
7653 type1
= TREE_TYPE (arg1
);
7655 code0
= TREE_CODE (type0
);
7656 code1
= TREE_CODE (type1
);
7658 if (code0
== REAL_TYPE
&& code1
== REAL_TYPE
)
7659 /* Choose the wider of two real types. */
7660 cmp_type
= TYPE_PRECISION (type0
) >= TYPE_PRECISION (type1
)
7662 else if (code0
== REAL_TYPE
&& code1
== INTEGER_TYPE
)
7664 else if (code0
== INTEGER_TYPE
&& code1
== REAL_TYPE
)
7668 error ("non-floating-point argument to function `%s'",
7669 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
7670 return error_mark_node
;
7673 arg0
= fold_convert (cmp_type
, arg0
);
7674 arg1
= fold_convert (cmp_type
, arg1
);
7678 arg0
= TREE_VALUE (arglist
);
7679 arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
7682 if (unordered_code
== UNORDERED_EXPR
)
7684 if (!MODE_HAS_NANS (TYPE_MODE (TREE_TYPE (arg0
))))
7685 return omit_two_operands (type
, integer_zero_node
, arg0
, arg1
);
7686 return fold (build2 (UNORDERED_EXPR
, type
, arg0
, arg1
));
7689 code
= MODE_HAS_NANS (TYPE_MODE (TREE_TYPE (arg0
))) ? unordered_code
7691 return fold (build1 (TRUTH_NOT_EXPR
, type
,
7692 fold (build2 (code
, type
, arg0
, arg1
))));
7695 /* Used by constant folding to eliminate some builtin calls early. EXP is
7696 the CALL_EXPR of a call to a builtin function. */
7699 fold_builtin_1 (tree exp
)
7701 tree fndecl
= get_callee_fndecl (exp
);
7702 tree arglist
= TREE_OPERAND (exp
, 1);
7703 tree type
= TREE_TYPE (TREE_TYPE (fndecl
));
7705 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
7708 switch (DECL_FUNCTION_CODE (fndecl
))
7710 case BUILT_IN_CONSTANT_P
:
7711 return fold_builtin_constant_p (arglist
);
7713 case BUILT_IN_EXPECT
:
7714 return fold_builtin_expect (arglist
);
7716 case BUILT_IN_CLASSIFY_TYPE
:
7717 return fold_builtin_classify_type (arglist
);
7719 case BUILT_IN_STRLEN
:
7720 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
7722 tree len
= c_strlen (TREE_VALUE (arglist
), 0);
7725 /* Convert from the internal "sizetype" type to "size_t". */
7727 len
= fold_convert (size_type_node
, len
);
7734 case BUILT_IN_FABSF
:
7735 case BUILT_IN_FABSL
:
7736 return fold_builtin_fabs (arglist
, type
);
7740 case BUILT_IN_LLABS
:
7741 case BUILT_IN_IMAXABS
:
7742 return fold_builtin_abs (arglist
, type
);
7745 case BUILT_IN_CONJF
:
7746 case BUILT_IN_CONJL
:
7747 if (validate_arglist (arglist
, COMPLEX_TYPE
, VOID_TYPE
))
7748 return fold (build1 (CONJ_EXPR
, type
, TREE_VALUE (arglist
)));
7751 case BUILT_IN_CREAL
:
7752 case BUILT_IN_CREALF
:
7753 case BUILT_IN_CREALL
:
7754 if (validate_arglist (arglist
, COMPLEX_TYPE
, VOID_TYPE
))
7755 return non_lvalue (fold (build1 (REALPART_EXPR
, type
,
7756 TREE_VALUE (arglist
))));
7759 case BUILT_IN_CIMAG
:
7760 case BUILT_IN_CIMAGF
:
7761 case BUILT_IN_CIMAGL
:
7762 if (validate_arglist (arglist
, COMPLEX_TYPE
, VOID_TYPE
))
7763 return non_lvalue (fold (build1 (IMAGPART_EXPR
, type
,
7764 TREE_VALUE (arglist
))));
7768 case BUILT_IN_CABSF
:
7769 case BUILT_IN_CABSL
:
7770 return fold_builtin_cabs (arglist
, type
);
7773 case BUILT_IN_SQRTF
:
7774 case BUILT_IN_SQRTL
:
7775 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7777 enum built_in_function fcode
;
7778 tree arg
= TREE_VALUE (arglist
);
7780 /* Optimize sqrt of constant value. */
7781 if (TREE_CODE (arg
) == REAL_CST
7782 && ! TREE_CONSTANT_OVERFLOW (arg
))
7784 REAL_VALUE_TYPE r
, x
;
7786 x
= TREE_REAL_CST (arg
);
7787 if (real_sqrt (&r
, TYPE_MODE (type
), &x
)
7788 || (!flag_trapping_math
&& !flag_errno_math
))
7789 return build_real (type
, r
);
7792 /* Optimize sqrt(expN(x)) = expN(x*0.5). */
7793 fcode
= builtin_mathfn_code (arg
);
7794 if (flag_unsafe_math_optimizations
&& BUILTIN_EXPONENT_P (fcode
))
7796 tree expfn
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
7797 arg
= fold (build2 (MULT_EXPR
, type
,
7798 TREE_VALUE (TREE_OPERAND (arg
, 1)),
7799 build_real (type
, dconsthalf
)));
7800 arglist
= build_tree_list (NULL_TREE
, arg
);
7801 return build_function_call_expr (expfn
, arglist
);
7804 /* Optimize sqrt(Nroot(x)) -> pow(x,1/(2*N)). */
7805 if (flag_unsafe_math_optimizations
&& BUILTIN_ROOT_P (fcode
))
7807 tree powfn
= mathfn_built_in (type
, BUILT_IN_POW
);
7811 tree arg0
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7813 /* The inner root was either sqrt or cbrt. */
7814 REAL_VALUE_TYPE dconstroot
=
7815 BUILTIN_SQRT_P (fcode
) ? dconsthalf
: dconstthird
;
7817 /* Adjust for the outer root. */
7818 SET_REAL_EXP (&dconstroot
, REAL_EXP (&dconstroot
) - 1);
7819 dconstroot
= real_value_truncate (TYPE_MODE (type
), dconstroot
);
7820 tree_root
= build_real (type
, dconstroot
);
7821 arglist
= tree_cons (NULL_TREE
, arg0
,
7822 build_tree_list (NULL_TREE
, tree_root
));
7823 return build_function_call_expr (powfn
, arglist
);
7827 /* Optimize sqrt(pow(x,y)) = pow(x,y*0.5). */
7828 if (flag_unsafe_math_optimizations
7829 && (fcode
== BUILT_IN_POW
7830 || fcode
== BUILT_IN_POWF
7831 || fcode
== BUILT_IN_POWL
))
7833 tree powfn
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
7834 tree arg0
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7835 tree arg1
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg
, 1)));
7836 tree narg1
= fold (build2 (MULT_EXPR
, type
, arg1
,
7837 build_real (type
, dconsthalf
)));
7838 arglist
= tree_cons (NULL_TREE
, arg0
,
7839 build_tree_list (NULL_TREE
, narg1
));
7840 return build_function_call_expr (powfn
, arglist
);
7846 case BUILT_IN_CBRTF
:
7847 case BUILT_IN_CBRTL
:
7848 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7850 tree arg
= TREE_VALUE (arglist
);
7851 const enum built_in_function fcode
= builtin_mathfn_code (arg
);
7853 /* Optimize cbrt of constant value. */
7854 if (real_zerop (arg
) || real_onep (arg
) || real_minus_onep (arg
))
7857 /* Optimize cbrt(expN(x)) -> expN(x/3). */
7858 if (flag_unsafe_math_optimizations
&& BUILTIN_EXPONENT_P (fcode
))
7860 tree expfn
= TREE_OPERAND (TREE_OPERAND (arg
, 0), 0);
7861 const REAL_VALUE_TYPE third_trunc
=
7862 real_value_truncate (TYPE_MODE (type
), dconstthird
);
7863 arg
= fold (build2 (MULT_EXPR
, type
,
7864 TREE_VALUE (TREE_OPERAND (arg
, 1)),
7865 build_real (type
, third_trunc
)));
7866 arglist
= build_tree_list (NULL_TREE
, arg
);
7867 return build_function_call_expr (expfn
, arglist
);
7870 /* Optimize cbrt(sqrt(x)) -> pow(x,1/6). */
7871 /* We don't optimize cbrt(cbrt(x)) -> pow(x,1/9) because if
7872 x is negative pow will error but cbrt won't. */
7873 if (flag_unsafe_math_optimizations
&& BUILTIN_SQRT_P (fcode
))
7875 tree powfn
= mathfn_built_in (type
, BUILT_IN_POW
);
7879 tree arg0
= TREE_VALUE (TREE_OPERAND (arg
, 1));
7881 REAL_VALUE_TYPE dconstroot
= dconstthird
;
7883 SET_REAL_EXP (&dconstroot
, REAL_EXP (&dconstroot
) - 1);
7884 dconstroot
= real_value_truncate (TYPE_MODE (type
), dconstroot
);
7885 tree_root
= build_real (type
, dconstroot
);
7886 arglist
= tree_cons (NULL_TREE
, arg0
,
7887 build_tree_list (NULL_TREE
, tree_root
));
7888 return build_function_call_expr (powfn
, arglist
);
7898 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7900 tree arg
= TREE_VALUE (arglist
);
7902 /* Optimize sin(0.0) = 0.0. */
7903 if (real_zerop (arg
))
7911 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7913 tree arg
= TREE_VALUE (arglist
);
7915 /* Optimize cos(0.0) = 1.0. */
7916 if (real_zerop (arg
))
7917 return build_real (type
, dconst1
);
7919 /* Optimize cos(-x) into cos(x). */
7920 if (TREE_CODE (arg
) == NEGATE_EXPR
)
7922 tree arglist
= build_tree_list (NULL_TREE
,
7923 TREE_OPERAND (arg
, 0));
7924 return build_function_call_expr (fndecl
, arglist
);
7932 return fold_builtin_exponent (exp
, &dconste
);
7935 case BUILT_IN_EXP2F
:
7936 case BUILT_IN_EXP2L
:
7937 return fold_builtin_exponent (exp
, &dconst2
);
7939 case BUILT_IN_EXP10
:
7940 case BUILT_IN_EXP10F
:
7941 case BUILT_IN_EXP10L
:
7942 case BUILT_IN_POW10
:
7943 case BUILT_IN_POW10F
:
7944 case BUILT_IN_POW10L
:
7945 return fold_builtin_exponent (exp
, &dconst10
);
7950 return fold_builtin_logarithm (exp
, &dconste
);
7953 case BUILT_IN_LOG2F
:
7954 case BUILT_IN_LOG2L
:
7955 return fold_builtin_logarithm (exp
, &dconst2
);
7957 case BUILT_IN_LOG10
:
7958 case BUILT_IN_LOG10F
:
7959 case BUILT_IN_LOG10L
:
7960 return fold_builtin_logarithm (exp
, &dconst10
);
7965 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7967 enum built_in_function fcode
;
7968 tree arg
= TREE_VALUE (arglist
);
7970 /* Optimize tan(0.0) = 0.0. */
7971 if (real_zerop (arg
))
7974 /* Optimize tan(atan(x)) = x. */
7975 fcode
= builtin_mathfn_code (arg
);
7976 if (flag_unsafe_math_optimizations
7977 && (fcode
== BUILT_IN_ATAN
7978 || fcode
== BUILT_IN_ATANF
7979 || fcode
== BUILT_IN_ATANL
))
7980 return TREE_VALUE (TREE_OPERAND (arg
, 1));
7985 case BUILT_IN_ATANF
:
7986 case BUILT_IN_ATANL
:
7987 if (validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
7989 tree arg
= TREE_VALUE (arglist
);
7991 /* Optimize atan(0.0) = 0.0. */
7992 if (real_zerop (arg
))
7995 /* Optimize atan(1.0) = pi/4. */
7996 if (real_onep (arg
))
7998 REAL_VALUE_TYPE cst
;
8000 real_convert (&cst
, TYPE_MODE (type
), &dconstpi
);
8001 SET_REAL_EXP (&cst
, REAL_EXP (&cst
) - 2);
8002 return build_real (type
, cst
);
8010 if (validate_arglist (arglist
, REAL_TYPE
, REAL_TYPE
, VOID_TYPE
))
8012 enum built_in_function fcode
;
8013 tree arg0
= TREE_VALUE (arglist
);
8014 tree arg1
= TREE_VALUE (TREE_CHAIN (arglist
));
8016 /* Optimize pow(1.0,y) = 1.0. */
8017 if (real_onep (arg0
))
8018 return omit_one_operand (type
, build_real (type
, dconst1
), arg1
);
8020 if (TREE_CODE (arg1
) == REAL_CST
8021 && ! TREE_CONSTANT_OVERFLOW (arg1
))
8024 c
= TREE_REAL_CST (arg1
);
8026 /* Optimize pow(x,0.0) = 1.0. */
8027 if (REAL_VALUES_EQUAL (c
, dconst0
))
8028 return omit_one_operand (type
, build_real (type
, dconst1
),
8031 /* Optimize pow(x,1.0) = x. */
8032 if (REAL_VALUES_EQUAL (c
, dconst1
))
8035 /* Optimize pow(x,-1.0) = 1.0/x. */
8036 if (REAL_VALUES_EQUAL (c
, dconstm1
))
8037 return fold (build2 (RDIV_EXPR
, type
,
8038 build_real (type
, dconst1
), arg0
));
8040 /* Optimize pow(x,0.5) = sqrt(x). */
8041 if (flag_unsafe_math_optimizations
8042 && REAL_VALUES_EQUAL (c
, dconsthalf
))
8044 tree sqrtfn
= mathfn_built_in (type
, BUILT_IN_SQRT
);
8046 if (sqrtfn
!= NULL_TREE
)
8048 tree arglist
= build_tree_list (NULL_TREE
, arg0
);
8049 return build_function_call_expr (sqrtfn
, arglist
);
8053 /* Attempt to evaluate pow at compile-time. */
8054 if (TREE_CODE (arg0
) == REAL_CST
8055 && ! TREE_CONSTANT_OVERFLOW (arg0
))
8057 REAL_VALUE_TYPE cint
;
8060 n
= real_to_integer (&c
);
8061 real_from_integer (&cint
, VOIDmode
, n
,
8063 if (real_identical (&c
, &cint
))
8068 x
= TREE_REAL_CST (arg0
);
8069 inexact
= real_powi (&x
, TYPE_MODE (type
), &x
, n
);
8070 if (flag_unsafe_math_optimizations
|| !inexact
)
8071 return build_real (type
, x
);
8076 /* Optimize pow(expN(x),y) = expN(x*y). */
8077 fcode
= builtin_mathfn_code (arg0
);
8078 if (flag_unsafe_math_optimizations
&& BUILTIN_EXPONENT_P (fcode
))
8080 tree expfn
= TREE_OPERAND (TREE_OPERAND (arg0
, 0), 0);
8081 tree arg
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
8082 arg
= fold (build2 (MULT_EXPR
, type
, arg
, arg1
));
8083 arglist
= build_tree_list (NULL_TREE
, arg
);
8084 return build_function_call_expr (expfn
, arglist
);
8087 /* Optimize pow(sqrt(x),y) = pow(x,y*0.5). */
8088 if (flag_unsafe_math_optimizations
&& BUILTIN_SQRT_P (fcode
))
8090 tree narg0
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
8091 tree narg1
= fold (build2 (MULT_EXPR
, type
, arg1
,
8092 build_real (type
, dconsthalf
)));
8094 arglist
= tree_cons (NULL_TREE
, narg0
,
8095 build_tree_list (NULL_TREE
, narg1
));
8096 return build_function_call_expr (fndecl
, arglist
);
8099 /* Optimize pow(pow(x,y),z) = pow(x,y*z). */
8100 if (flag_unsafe_math_optimizations
8101 && (fcode
== BUILT_IN_POW
8102 || fcode
== BUILT_IN_POWF
8103 || fcode
== BUILT_IN_POWL
))
8105 tree arg00
= TREE_VALUE (TREE_OPERAND (arg0
, 1));
8106 tree arg01
= TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0
, 1)));
8107 tree narg1
= fold (build2 (MULT_EXPR
, type
, arg01
, arg1
));
8108 arglist
= tree_cons (NULL_TREE
, arg00
,
8109 build_tree_list (NULL_TREE
, narg1
));
8110 return build_function_call_expr (fndecl
, arglist
);
8118 return fold_builtin_inf (type
, true);
8120 case BUILT_IN_HUGE_VAL
:
8121 case BUILT_IN_HUGE_VALF
:
8122 case BUILT_IN_HUGE_VALL
:
8123 return fold_builtin_inf (type
, false);
8128 return fold_builtin_nan (arglist
, type
, true);
8131 case BUILT_IN_NANSF
:
8132 case BUILT_IN_NANSL
:
8133 return fold_builtin_nan (arglist
, type
, false);
8135 case BUILT_IN_FLOOR
:
8136 case BUILT_IN_FLOORF
:
8137 case BUILT_IN_FLOORL
:
8138 return fold_builtin_floor (exp
);
8141 case BUILT_IN_CEILF
:
8142 case BUILT_IN_CEILL
:
8143 return fold_builtin_ceil (exp
);
8145 case BUILT_IN_TRUNC
:
8146 case BUILT_IN_TRUNCF
:
8147 case BUILT_IN_TRUNCL
:
8148 return fold_builtin_trunc (exp
);
8150 case BUILT_IN_ROUND
:
8151 case BUILT_IN_ROUNDF
:
8152 case BUILT_IN_ROUNDL
:
8153 return fold_builtin_round (exp
);
8155 case BUILT_IN_NEARBYINT
:
8156 case BUILT_IN_NEARBYINTF
:
8157 case BUILT_IN_NEARBYINTL
:
8159 case BUILT_IN_RINTF
:
8160 case BUILT_IN_RINTL
:
8161 return fold_trunc_transparent_mathfn (exp
);
8163 case BUILT_IN_LROUND
:
8164 case BUILT_IN_LROUNDF
:
8165 case BUILT_IN_LROUNDL
:
8166 case BUILT_IN_LLROUND
:
8167 case BUILT_IN_LLROUNDF
:
8168 case BUILT_IN_LLROUNDL
:
8169 return fold_builtin_lround (exp
);
8171 case BUILT_IN_LRINT
:
8172 case BUILT_IN_LRINTF
:
8173 case BUILT_IN_LRINTL
:
8174 case BUILT_IN_LLRINT
:
8175 case BUILT_IN_LLRINTF
:
8176 case BUILT_IN_LLRINTL
:
8177 return fold_fixed_mathfn (exp
);
8181 case BUILT_IN_FFSLL
:
8184 case BUILT_IN_CLZLL
:
8187 case BUILT_IN_CTZLL
:
8188 case BUILT_IN_POPCOUNT
:
8189 case BUILT_IN_POPCOUNTL
:
8190 case BUILT_IN_POPCOUNTLL
:
8191 case BUILT_IN_PARITY
:
8192 case BUILT_IN_PARITYL
:
8193 case BUILT_IN_PARITYLL
:
8194 return fold_builtin_bitop (exp
);
8196 case BUILT_IN_MEMCPY
:
8197 return fold_builtin_memcpy (exp
);
8199 case BUILT_IN_MEMPCPY
:
8200 return fold_builtin_mempcpy (exp
);
8202 case BUILT_IN_MEMMOVE
:
8203 return fold_builtin_memmove (exp
);
8205 case BUILT_IN_STRCPY
:
8206 return fold_builtin_strcpy (exp
);
8208 case BUILT_IN_STRNCPY
:
8209 return fold_builtin_strncpy (exp
);
8211 case BUILT_IN_INDEX
:
8212 case BUILT_IN_STRCHR
:
8213 return fold_builtin_strchr (exp
, false);
8215 case BUILT_IN_RINDEX
:
8216 case BUILT_IN_STRRCHR
:
8217 return fold_builtin_strchr (exp
, true);
8219 case BUILT_IN_MEMCMP
:
8220 return fold_builtin_memcmp (exp
);
8222 case BUILT_IN_STRCMP
:
8223 return fold_builtin_strcmp (exp
);
8225 case BUILT_IN_STRNCMP
:
8226 return fold_builtin_strncmp (exp
);
8228 case BUILT_IN_SIGNBIT
:
8229 case BUILT_IN_SIGNBITF
:
8230 case BUILT_IN_SIGNBITL
:
8231 return fold_builtin_signbit (exp
);
8233 case BUILT_IN_ISASCII
:
8234 return fold_builtin_isascii (arglist
);
8236 case BUILT_IN_TOASCII
:
8237 return fold_builtin_toascii (arglist
);
8239 case BUILT_IN_ISDIGIT
:
8240 return fold_builtin_isdigit (arglist
);
8242 case BUILT_IN_COPYSIGN
:
8243 case BUILT_IN_COPYSIGNF
:
8244 case BUILT_IN_COPYSIGNL
:
8245 return fold_builtin_copysign (arglist
, type
);
8247 case BUILT_IN_ISGREATER
:
8248 return fold_builtin_unordered_cmp (exp
, UNLE_EXPR
, LE_EXPR
);
8249 case BUILT_IN_ISGREATEREQUAL
:
8250 return fold_builtin_unordered_cmp (exp
, UNLT_EXPR
, LT_EXPR
);
8251 case BUILT_IN_ISLESS
:
8252 return fold_builtin_unordered_cmp (exp
, UNGE_EXPR
, GE_EXPR
);
8253 case BUILT_IN_ISLESSEQUAL
:
8254 return fold_builtin_unordered_cmp (exp
, UNGT_EXPR
, GT_EXPR
);
8255 case BUILT_IN_ISLESSGREATER
:
8256 return fold_builtin_unordered_cmp (exp
, UNEQ_EXPR
, EQ_EXPR
);
8257 case BUILT_IN_ISUNORDERED
:
8258 return fold_builtin_unordered_cmp (exp
, UNORDERED_EXPR
, NOP_EXPR
);
8267 /* A wrapper function for builtin folding that prevents warnings for
8268 "statement without effect" and the like, caused by removing the
8269 call node earlier than the warning is generated. */
8272 fold_builtin (tree exp
)
8274 exp
= fold_builtin_1 (exp
);
8277 /* ??? Don't clobber shared nodes such as integer_zero_node. */
8278 if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'c')
8279 exp
= build1 (NOP_EXPR
, TREE_TYPE (exp
), exp
);
8280 TREE_NO_WARNING (exp
) = 1;
8285 /* Conveniently construct a function call expression. */
8288 build_function_call_expr (tree fn
, tree arglist
)
8292 call_expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (fn
)), fn
);
8293 call_expr
= build3 (CALL_EXPR
, TREE_TYPE (TREE_TYPE (fn
)),
8294 call_expr
, arglist
, NULL_TREE
);
8295 return fold (call_expr
);
8298 /* This function validates the types of a function call argument list
8299 represented as a tree chain of parameters against a specified list
8300 of tree_codes. If the last specifier is a 0, that represents an
8301 ellipses, otherwise the last specifier must be a VOID_TYPE. */
8304 validate_arglist (tree arglist
, ...)
8306 enum tree_code code
;
8310 va_start (ap
, arglist
);
8314 code
= va_arg (ap
, enum tree_code
);
8318 /* This signifies an ellipses, any further arguments are all ok. */
8322 /* This signifies an endlink, if no arguments remain, return
8323 true, otherwise return false. */
8327 /* If no parameters remain or the parameter's code does not
8328 match the specified code, return false. Otherwise continue
8329 checking any remaining arguments. */
8331 || code
!= TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))))
8335 arglist
= TREE_CHAIN (arglist
);
8339 /* We need gotos here since we can only have one VA_CLOSE in a
8347 /* Default target-specific builtin expander that does nothing. */
8350 default_expand_builtin (tree exp ATTRIBUTE_UNUSED
,
8351 rtx target ATTRIBUTE_UNUSED
,
8352 rtx subtarget ATTRIBUTE_UNUSED
,
8353 enum machine_mode mode ATTRIBUTE_UNUSED
,
8354 int ignore ATTRIBUTE_UNUSED
)
8359 /* Returns true is EXP represents data that would potentially reside
8360 in a readonly section. */
8363 readonly_data_expr (tree exp
)
8367 if (TREE_CODE (exp
) != ADDR_EXPR
)
8370 exp
= get_base_address (TREE_OPERAND (exp
, 0));
8374 /* Make sure we call decl_readonly_section only for trees it
8375 can handle (since it returns true for everything it doesn't
8377 if (TREE_CODE (exp
) == STRING_CST
8378 || TREE_CODE (exp
) == CONSTRUCTOR
8379 || (TREE_CODE (exp
) == VAR_DECL
&& TREE_STATIC (exp
)))
8380 return decl_readonly_section (exp
, 0);
8385 /* Front-end to the simplify_builtin_XXX routines.
8387 EXP is a call to a builtin function. If possible try to simplify
8388 that into a constant, expression or call to a more efficient
8391 If IGNORE is nonzero, then the result of this builtin function
8394 If simplification is possible, return the simplified tree, otherwise
8395 return NULL_TREE. */
8398 simplify_builtin (tree exp
, int ignore
)
8400 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
8401 tree arglist
= TREE_OPERAND (exp
, 1);
8402 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
8407 case BUILT_IN_FPUTS
:
8408 val
= simplify_builtin_fputs (arglist
, ignore
, 0, NULL_TREE
);
8410 case BUILT_IN_FPUTS_UNLOCKED
:
8411 val
= simplify_builtin_fputs (arglist
, ignore
, 1, NULL_TREE
);
8413 case BUILT_IN_STRSTR
:
8414 val
= simplify_builtin_strstr (arglist
);
8416 case BUILT_IN_STRCAT
:
8417 val
= simplify_builtin_strcat (arglist
);
8419 case BUILT_IN_STRNCAT
:
8420 val
= simplify_builtin_strncat (arglist
);
8422 case BUILT_IN_STRSPN
:
8423 val
= simplify_builtin_strspn (arglist
);
8425 case BUILT_IN_STRCSPN
:
8426 val
= simplify_builtin_strcspn (arglist
);
8428 case BUILT_IN_STRCHR
:
8429 case BUILT_IN_INDEX
:
8430 val
= simplify_builtin_strchr (arglist
);
8432 case BUILT_IN_STRRCHR
:
8433 case BUILT_IN_RINDEX
:
8434 val
= simplify_builtin_strrchr (arglist
);
8436 case BUILT_IN_STRCPY
:
8437 val
= simplify_builtin_strcpy (arglist
, NULL_TREE
);
8439 case BUILT_IN_STRNCPY
:
8440 val
= simplify_builtin_strncpy (arglist
, NULL_TREE
);
8442 case BUILT_IN_STRCMP
:
8443 val
= simplify_builtin_strcmp (arglist
);
8445 case BUILT_IN_STRNCMP
:
8446 val
= simplify_builtin_strncmp (arglist
);
8448 case BUILT_IN_STRPBRK
:
8449 val
= simplify_builtin_strpbrk (arglist
);
8452 case BUILT_IN_MEMCMP
:
8453 val
= simplify_builtin_memcmp (arglist
);
8455 case BUILT_IN_VA_START
:
8456 simplify_builtin_va_start (arglist
);
8459 case BUILT_IN_SPRINTF
:
8460 val
= simplify_builtin_sprintf (arglist
, ignore
);
8462 case BUILT_IN_CONSTANT_P
:
8463 val
= fold_builtin_constant_p (arglist
);
8464 /* Gimplification will pull the CALL_EXPR for the builtin out of
8465 an if condition. When not optimizing, we'll not CSE it back.
8466 To avoid link error types of regressions, return false now. */
8467 if (!val
&& !optimize
)
8468 val
= integer_zero_node
;
8476 val
= fold_convert (TREE_TYPE (exp
), val
);
8480 /* Simplify a call to the strstr builtin.
8482 Return 0 if no simplification was possible, otherwise return the
8483 simplified form of the call as a tree.
8485 The simplified form may be a constant or other expression which
8486 computes the same value, but in a more efficient manner (including
8487 calls to other builtin functions).
8489 The call may contain arguments which need to be evaluated, but
8490 which are not useful to determine the result of the call. In
8491 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8492 COMPOUND_EXPR will be an argument which must be evaluated.
8493 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8494 COMPOUND_EXPR in the chain will contain the tree for the simplified
8495 form of the builtin function call. */
8498 simplify_builtin_strstr (tree arglist
)
8500 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
8504 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
8506 const char *p1
, *p2
;
8515 const char *r
= strstr (p1
, p2
);
8518 return fold_convert (TREE_TYPE (s1
), integer_zero_node
);
8520 /* Return an offset into the constant string argument. */
8521 return fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
),
8522 s1
, fold_convert (TREE_TYPE (s1
),
8523 ssize_int (r
- p1
))));
8532 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
8536 /* New argument list transforming strstr(s1, s2) to
8537 strchr(s1, s2[0]). */
8538 arglist
= build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
8539 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
8540 return build_function_call_expr (fn
, arglist
);
8544 /* Simplify a call to the strstr builtin.
8546 Return 0 if no simplification was possible, otherwise return the
8547 simplified form of the call as a tree.
8549 The simplified form may be a constant or other expression which
8550 computes the same value, but in a more efficient manner (including
8551 calls to other builtin functions).
8553 The call may contain arguments which need to be evaluated, but
8554 which are not useful to determine the result of the call. In
8555 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8556 COMPOUND_EXPR will be an argument which must be evaluated.
8557 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8558 COMPOUND_EXPR in the chain will contain the tree for the simplified
8559 form of the builtin function call. */
8562 simplify_builtin_strchr (tree arglist
)
8564 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
8568 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
8571 if (TREE_CODE (s2
) != INTEGER_CST
)
8580 if (target_char_cast (s2
, &c
))
8586 return fold_convert (TREE_TYPE (s1
), integer_zero_node
);
8588 /* Return an offset into the constant string argument. */
8589 return fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
),
8590 s1
, fold_convert (TREE_TYPE (s1
),
8591 ssize_int (r
- p1
))));
8594 /* FIXME: Should use here strchrM optab so that ports can optimize
8600 /* Simplify a call to the strrchr builtin.
8602 Return 0 if no simplification was possible, otherwise return the
8603 simplified form of the call as a tree.
8605 The simplified form may be a constant or other expression which
8606 computes the same value, but in a more efficient manner (including
8607 calls to other builtin functions).
8609 The call may contain arguments which need to be evaluated, but
8610 which are not useful to determine the result of the call. In
8611 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8612 COMPOUND_EXPR will be an argument which must be evaluated.
8613 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8614 COMPOUND_EXPR in the chain will contain the tree for the simplified
8615 form of the builtin function call. */
8618 simplify_builtin_strrchr (tree arglist
)
8620 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
8624 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
8628 if (TREE_CODE (s2
) != INTEGER_CST
)
8637 if (target_char_cast (s2
, &c
))
8640 r
= strrchr (p1
, c
);
8643 return fold_convert (TREE_TYPE (s1
), integer_zero_node
);
8645 /* Return an offset into the constant string argument. */
8646 return fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
),
8647 s1
, fold_convert (TREE_TYPE (s1
),
8648 ssize_int (r
- p1
))));
8651 if (! integer_zerop (s2
))
8654 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
8658 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
8659 return build_function_call_expr (fn
, arglist
);
8663 /* Simplify a call to the strpbrk builtin.
8665 Return 0 if no simplification was possible, otherwise return the
8666 simplified form of the call as a tree.
8668 The simplified form may be a constant or other expression which
8669 computes the same value, but in a more efficient manner (including
8670 calls to other builtin functions).
8672 The call may contain arguments which need to be evaluated, but
8673 which are not useful to determine the result of the call. In
8674 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8675 COMPOUND_EXPR will be an argument which must be evaluated.
8676 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8677 COMPOUND_EXPR in the chain will contain the tree for the simplified
8678 form of the builtin function call. */
8681 simplify_builtin_strpbrk (tree arglist
)
8683 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
8687 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
8689 const char *p1
, *p2
;
8698 const char *r
= strpbrk (p1
, p2
);
8701 return fold_convert (TREE_TYPE (s1
), integer_zero_node
);
8703 /* Return an offset into the constant string argument. */
8704 return fold (build2 (PLUS_EXPR
, TREE_TYPE (s1
),
8705 s1
, fold_convert (TREE_TYPE (s1
),
8706 ssize_int (r
- p1
))));
8710 /* strpbrk(x, "") == NULL.
8711 Evaluate and ignore s1 in case it had side-effects. */
8712 return omit_one_operand (TREE_TYPE (s1
), integer_zero_node
, s1
);
8715 return 0; /* Really call strpbrk. */
8717 fn
= implicit_built_in_decls
[BUILT_IN_STRCHR
];
8721 /* New argument list transforming strpbrk(s1, s2) to
8722 strchr(s1, s2[0]). */
8724 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
8725 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
8726 return build_function_call_expr (fn
, arglist
);
8730 /* Simplify a call to the strcpy builtin.
8732 Return 0 if no simplification was possible, otherwise return the
8733 simplified form of the call as a tree.
8735 The simplified form may be a constant or other expression which
8736 computes the same value, but in a more efficient manner (including
8737 calls to other builtin functions).
8739 The call may contain arguments which need to be evaluated, but
8740 which are not useful to determine the result of the call. In
8741 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8742 COMPOUND_EXPR will be an argument which must be evaluated.
8743 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8744 COMPOUND_EXPR in the chain will contain the tree for the simplified
8745 form of the builtin function call. */
8748 simplify_builtin_strcpy (tree arglist
, tree len
)
8752 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
8755 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
8759 src
= TREE_VALUE (TREE_CHAIN (arglist
));
8760 dst
= TREE_VALUE (arglist
);
8764 len
= c_strlen (src
, 1);
8765 if (!len
|| TREE_SIDE_EFFECTS (len
))
8769 len
= size_binop (PLUS_EXPR
, len
, ssize_int (1));
8770 arglist
= build_tree_list (NULL_TREE
, len
);
8771 arglist
= tree_cons (NULL_TREE
, src
, arglist
);
8772 arglist
= tree_cons (NULL_TREE
, dst
, arglist
);
8773 return build_function_call_expr (fn
, arglist
);
8776 /* Simplify a call to the strncpy builtin.
8778 Return 0 if no simplification was possible, otherwise return the
8779 simplified form of the call as a tree.
8781 The simplified form may be a constant or other expression which
8782 computes the same value, but in a more efficient manner (including
8783 calls to other builtin functions).
8785 The call may contain arguments which need to be evaluated, but
8786 which are not useful to determine the result of the call. In
8787 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8788 COMPOUND_EXPR will be an argument which must be evaluated.
8789 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8790 COMPOUND_EXPR in the chain will contain the tree for the simplified
8791 form of the builtin function call. */
8794 simplify_builtin_strncpy (tree arglist
, tree slen
)
8796 if (!validate_arglist (arglist
,
8797 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
8801 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
8804 /* We must be passed a constant len parameter. */
8805 if (TREE_CODE (len
) != INTEGER_CST
)
8808 /* If the len parameter is zero, return the dst parameter. */
8809 if (integer_zerop (len
))
8810 /* Evaluate and ignore the src argument in case it has
8811 side-effects and return the dst parameter. */
8812 return omit_one_operand (TREE_TYPE (TREE_VALUE (arglist
)),
8813 TREE_VALUE (arglist
),
8814 TREE_VALUE (TREE_CHAIN (arglist
)));
8817 slen
= c_strlen (TREE_VALUE (TREE_CHAIN (arglist
)), 0);
8819 /* Now, we must be passed a constant src ptr parameter. */
8820 if (slen
== 0 || TREE_CODE (slen
) != INTEGER_CST
)
8823 slen
= size_binop (PLUS_EXPR
, slen
, ssize_int (1));
8825 /* We do not support simplification of this case, though we do
8826 support it when expanding trees into RTL. */
8827 /* FIXME: generate a call to __builtin_memset. */
8828 if (tree_int_cst_lt (slen
, len
))
8831 /* OK transform into builtin memcpy. */
8832 fn
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
8835 return build_function_call_expr (fn
, arglist
);
8839 /* Simplify a call to the memcmp builtin.
8841 Return 0 if no simplification was possible, otherwise return the
8842 simplified form of the call as a tree.
8844 The simplified form may be a constant or other expression which
8845 computes the same value, but in a more efficient manner (including
8846 calls to other builtin functions).
8848 The call may contain arguments which need to be evaluated, but
8849 which are not useful to determine the result of the call. In
8850 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8851 COMPOUND_EXPR will be an argument which must be evaluated.
8852 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8853 COMPOUND_EXPR in the chain will contain the tree for the simplified
8854 form of the builtin function call. */
8857 simplify_builtin_memcmp (tree arglist
)
8859 tree arg1
, arg2
, len
;
8860 const char *p1
, *p2
;
8862 if (!validate_arglist (arglist
,
8863 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
8866 arg1
= TREE_VALUE (arglist
);
8867 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
8868 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
8870 /* If the len parameter is zero, return zero. */
8871 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 0)
8872 /* Evaluate and ignore arg1 and arg2 in case they have side-effects. */
8873 return omit_two_operands (integer_type_node
, integer_zero_node
,
8876 p1
= c_getstr (arg1
);
8877 p2
= c_getstr (arg2
);
8879 /* If all arguments are constant, and the value of len is not greater
8880 than the lengths of arg1 and arg2, evaluate at compile-time. */
8881 if (host_integerp (len
, 1) && p1
&& p2
8882 && compare_tree_int (len
, strlen (p1
) + 1) <= 0
8883 && compare_tree_int (len
, strlen (p2
) + 1) <= 0)
8885 const int r
= memcmp (p1
, p2
, tree_low_cst (len
, 1));
8888 ? integer_minus_one_node
8889 : (r
> 0 ? integer_one_node
: integer_zero_node
));
8892 /* If len parameter is one, return an expression corresponding to
8893 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
8894 if (host_integerp (len
, 1) && tree_low_cst (len
, 1) == 1)
8896 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
8897 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
8899 fold (build1 (CONVERT_EXPR
, integer_type_node
,
8900 build1 (INDIRECT_REF
, cst_uchar_node
,
8901 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
8903 fold (build1 (CONVERT_EXPR
, integer_type_node
,
8904 build1 (INDIRECT_REF
, cst_uchar_node
,
8905 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
8906 return fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
8912 /* Simplify a call to the strcmp builtin.
8914 Return 0 if no simplification was possible, otherwise return the
8915 simplified form of the call as a tree.
8917 The simplified form may be a constant or other expression which
8918 computes the same value, but in a more efficient manner (including
8919 calls to other builtin functions).
8921 The call may contain arguments which need to be evaluated, but
8922 which are not useful to determine the result of the call. In
8923 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8924 COMPOUND_EXPR will be an argument which must be evaluated.
8925 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8926 COMPOUND_EXPR in the chain will contain the tree for the simplified
8927 form of the builtin function call. */
8930 simplify_builtin_strcmp (tree arglist
)
8933 const char *p1
, *p2
;
8935 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
8938 arg1
= TREE_VALUE (arglist
);
8939 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
8941 /* If both arguments are equal (and not volatile), return zero. */
8942 if (operand_equal_p (arg1
, arg2
, 0))
8943 return integer_zero_node
;
8945 p1
= c_getstr (arg1
);
8946 p2
= c_getstr (arg2
);
8950 const int i
= strcmp (p1
, p2
);
8952 ? integer_minus_one_node
8953 : (i
> 0 ? integer_one_node
: integer_zero_node
));
8956 /* If either arg is "", return an expression corresponding to
8957 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
8958 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
8960 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
8961 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
8963 fold (build1 (CONVERT_EXPR
, integer_type_node
,
8964 build1 (INDIRECT_REF
, cst_uchar_node
,
8965 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
8967 fold (build1 (CONVERT_EXPR
, integer_type_node
,
8968 build1 (INDIRECT_REF
, cst_uchar_node
,
8969 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
8970 return fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
8976 /* Simplify a call to the strncmp builtin.
8978 Return 0 if no simplification was possible, otherwise return the
8979 simplified form of the call as a tree.
8981 The simplified form may be a constant or other expression which
8982 computes the same value, but in a more efficient manner (including
8983 calls to other builtin functions).
8985 The call may contain arguments which need to be evaluated, but
8986 which are not useful to determine the result of the call. In
8987 this case we return a chain of COMPOUND_EXPRs. The LHS of each
8988 COMPOUND_EXPR will be an argument which must be evaluated.
8989 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
8990 COMPOUND_EXPR in the chain will contain the tree for the simplified
8991 form of the builtin function call. */
8994 simplify_builtin_strncmp (tree arglist
)
8996 tree arg1
, arg2
, arg3
;
8997 const char *p1
, *p2
;
8999 if (!validate_arglist (arglist
,
9000 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
9003 arg1
= TREE_VALUE (arglist
);
9004 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
9005 arg3
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
9007 /* If the len parameter is zero, return zero. */
9008 if (integer_zerop (arg3
))
9009 /* Evaluate and ignore arg1 and arg2 in case they have side-effects. */
9010 return omit_two_operands (integer_type_node
, integer_zero_node
,
9013 /* If arg1 and arg2 are equal (and not volatile), return zero. */
9014 if (operand_equal_p (arg1
, arg2
, 0))
9015 /* Evaluate and ignore arg3 in case it has side-effects. */
9016 return omit_one_operand (integer_type_node
, integer_zero_node
, arg3
);
9018 p1
= c_getstr (arg1
);
9019 p2
= c_getstr (arg2
);
9021 /* If all arguments are constant, evaluate at compile-time. */
9022 if (host_integerp (arg3
, 1) && p1
&& p2
)
9024 const int r
= strncmp (p1
, p2
, tree_low_cst (arg3
, 1));
9026 ? integer_minus_one_node
9027 : (r
> 0 ? integer_one_node
: integer_zero_node
));
9030 /* If len == 1 or (either string parameter is "" and (len >= 1)),
9031 return (*(const u_char*)arg1 - *(const u_char*)arg2). */
9032 if (host_integerp (arg3
, 1)
9033 && (tree_low_cst (arg3
, 1) == 1
9034 || (tree_low_cst (arg3
, 1) > 1
9035 && ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0')))))
9037 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
9038 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
9040 fold (build1 (CONVERT_EXPR
, integer_type_node
,
9041 build1 (INDIRECT_REF
, cst_uchar_node
,
9042 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
9044 fold (build1 (CONVERT_EXPR
, integer_type_node
,
9045 build1 (INDIRECT_REF
, cst_uchar_node
,
9046 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
9047 return fold (build2 (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
9053 /* Simplify a call to the strcat builtin.
9055 Return 0 if no simplification was possible, otherwise return the
9056 simplified form of the call as a tree.
9058 The simplified form may be a constant or other expression which
9059 computes the same value, but in a more efficient manner (including
9060 calls to other builtin functions).
9062 The call may contain arguments which need to be evaluated, but
9063 which are not useful to determine the result of the call. In
9064 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9065 COMPOUND_EXPR will be an argument which must be evaluated.
9066 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9067 COMPOUND_EXPR in the chain will contain the tree for the simplified
9068 form of the builtin function call. */
9071 simplify_builtin_strcat (tree arglist
)
9073 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
9077 tree dst
= TREE_VALUE (arglist
),
9078 src
= TREE_VALUE (TREE_CHAIN (arglist
));
9079 const char *p
= c_getstr (src
);
9081 /* If the string length is zero, return the dst parameter. */
9082 if (p
&& *p
== '\0')
9089 /* Simplify a call to the strncat builtin.
9091 Return 0 if no simplification was possible, otherwise return the
9092 simplified form of the call as a tree.
9094 The simplified form may be a constant or other expression which
9095 computes the same value, but in a more efficient manner (including
9096 calls to other builtin functions).
9098 The call may contain arguments which need to be evaluated, but
9099 which are not useful to determine the result of the call. In
9100 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9101 COMPOUND_EXPR will be an argument which must be evaluated.
9102 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9103 COMPOUND_EXPR in the chain will contain the tree for the simplified
9104 form of the builtin function call. */
9107 simplify_builtin_strncat (tree arglist
)
9109 if (!validate_arglist (arglist
,
9110 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
9114 tree dst
= TREE_VALUE (arglist
);
9115 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
9116 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
9117 const char *p
= c_getstr (src
);
9119 /* If the requested length is zero, or the src parameter string
9120 length is zero, return the dst parameter. */
9121 if (integer_zerop (len
) || (p
&& *p
== '\0'))
9122 return omit_two_operands (TREE_TYPE (dst
), dst
, src
, len
);
9124 /* If the requested len is greater than or equal to the string
9125 length, call strcat. */
9126 if (TREE_CODE (len
) == INTEGER_CST
&& p
9127 && compare_tree_int (len
, strlen (p
)) >= 0)
9130 = tree_cons (NULL_TREE
, dst
, build_tree_list (NULL_TREE
, src
));
9131 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCAT
];
9133 /* If the replacement _DECL isn't initialized, don't do the
9138 return build_function_call_expr (fn
, newarglist
);
9144 /* Simplify a call to the strspn builtin.
9146 Return 0 if no simplification was possible, otherwise return the
9147 simplified form of the call as a tree.
9149 The simplified form may be a constant or other expression which
9150 computes the same value, but in a more efficient manner (including
9151 calls to other builtin functions).
9153 The call may contain arguments which need to be evaluated, but
9154 which are not useful to determine the result of the call. In
9155 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9156 COMPOUND_EXPR will be an argument which must be evaluated.
9157 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9158 COMPOUND_EXPR in the chain will contain the tree for the simplified
9159 form of the builtin function call. */
9162 simplify_builtin_strspn (tree arglist
)
9164 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
9168 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
9169 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
9171 /* If both arguments are constants, evaluate at compile-time. */
9174 const size_t r
= strspn (p1
, p2
);
9175 return size_int (r
);
9178 /* If either argument is "", return 0. */
9179 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
9180 /* Evaluate and ignore both arguments in case either one has
9182 return omit_two_operands (integer_type_node
, integer_zero_node
,
9188 /* Simplify a call to the strcspn builtin.
9190 Return 0 if no simplification was possible, otherwise return the
9191 simplified form of the call as a tree.
9193 The simplified form may be a constant or other expression which
9194 computes the same value, but in a more efficient manner (including
9195 calls to other builtin functions).
9197 The call may contain arguments which need to be evaluated, but
9198 which are not useful to determine the result of the call. In
9199 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9200 COMPOUND_EXPR will be an argument which must be evaluated.
9201 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9202 COMPOUND_EXPR in the chain will contain the tree for the simplified
9203 form of the builtin function call. */
9206 simplify_builtin_strcspn (tree arglist
)
9208 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
9212 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
9213 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
9215 /* If both arguments are constants, evaluate at compile-time. */
9218 const size_t r
= strcspn (p1
, p2
);
9219 return size_int (r
);
9222 /* If the first argument is "", return 0. */
9223 if (p1
&& *p1
== '\0')
9225 /* Evaluate and ignore argument s2 in case it has
9227 return omit_one_operand (integer_type_node
,
9228 integer_zero_node
, s2
);
9231 /* If the second argument is "", return __builtin_strlen(s1). */
9232 if (p2
&& *p2
== '\0')
9234 tree newarglist
= build_tree_list (NULL_TREE
, s1
),
9235 fn
= implicit_built_in_decls
[BUILT_IN_STRLEN
];
9237 /* If the replacement _DECL isn't initialized, don't do the
9242 return build_function_call_expr (fn
, newarglist
);
9248 /* Simplify a call to the fputs builtin.
9250 Return 0 if no simplification was possible, otherwise return the
9251 simplified form of the call as a tree.
9253 The simplified form may be a constant or other expression which
9254 computes the same value, but in a more efficient manner (including
9255 calls to other builtin functions).
9257 The call may contain arguments which need to be evaluated, but
9258 which are not useful to determine the result of the call. In
9259 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9260 COMPOUND_EXPR will be an argument which must be evaluated.
9261 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9262 COMPOUND_EXPR in the chain will contain the tree for the simplified
9263 form of the builtin function call.
9265 If KNOWN_LEN is non-NULL, it represents the known length of the string.
9266 This is determined by SSA-CCP in cases where the string itself is not
9267 known to be constant but its length is always the same constant. */
9270 simplify_builtin_fputs (tree arglist
, int ignore
, int unlocked
, tree known_len
)
9273 tree fn_fputc
= unlocked
? implicit_built_in_decls
[BUILT_IN_FPUTC_UNLOCKED
]
9274 : implicit_built_in_decls
[BUILT_IN_FPUTC
];
9275 tree fn_fwrite
= unlocked
? implicit_built_in_decls
[BUILT_IN_FWRITE_UNLOCKED
]
9276 : implicit_built_in_decls
[BUILT_IN_FWRITE
];
9278 /* If the return value is used, or the replacement _DECL isn't
9279 initialized, don't do the transformation. */
9280 if (!ignore
|| !fn_fputc
|| !fn_fwrite
)
9283 /* Verify the arguments in the original call. */
9284 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
9287 len
= (known_len
) ? known_len
: c_strlen (TREE_VALUE (arglist
), 0);
9289 /* Get the length of the string passed to fputs. If the length
9290 can't be determined, punt. */
9292 || TREE_CODE (len
) != INTEGER_CST
)
9295 switch (compare_tree_int (len
, 1))
9297 case -1: /* length is 0, delete the call entirely . */
9298 return omit_one_operand (integer_type_node
, integer_zero_node
,
9299 TREE_VALUE (TREE_CHAIN (arglist
)));
9301 case 0: /* length is 1, call fputc. */
9303 const char *p
= c_getstr (TREE_VALUE (arglist
));
9307 /* New argument list transforming fputs(string, stream) to
9308 fputc(string[0], stream). */
9310 build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
9312 tree_cons (NULL_TREE
, build_int_2 (p
[0], 0), arglist
);
9318 case 1: /* length is greater than 1, call fwrite. */
9322 /* If optimizing for size keep fputs. */
9325 string_arg
= TREE_VALUE (arglist
);
9326 /* New argument list transforming fputs(string, stream) to
9327 fwrite(string, 1, len, stream). */
9328 arglist
= build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
9329 arglist
= tree_cons (NULL_TREE
, len
, arglist
);
9330 arglist
= tree_cons (NULL_TREE
, size_one_node
, arglist
);
9331 arglist
= tree_cons (NULL_TREE
, string_arg
, arglist
);
9339 return build_function_call_expr (fn
, arglist
);
9343 simplify_builtin_va_start (tree arglist
)
9345 tree chain
= TREE_CHAIN (arglist
);
9347 if (TREE_CHAIN (chain
))
9348 error ("too many arguments to function `va_start'");
9350 simplify_builtin_next_arg (chain
);
9354 simplify_builtin_next_arg (tree arglist
)
9356 tree fntype
= TREE_TYPE (current_function_decl
);
9358 if (TYPE_ARG_TYPES (fntype
) == 0
9359 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype
)))
9361 error ("`va_start' used in function with fixed args");
9364 tree last_parm
= tree_last (DECL_ARGUMENTS (current_function_decl
));
9365 tree arg
= TREE_VALUE (arglist
);
9367 /* Strip off all nops for the sake of the comparison. This
9368 is not quite the same as STRIP_NOPS. It does more.
9369 We must also strip off INDIRECT_EXPR for C++ reference
9371 while (TREE_CODE (arg
) == NOP_EXPR
9372 || TREE_CODE (arg
) == CONVERT_EXPR
9373 || TREE_CODE (arg
) == NON_LVALUE_EXPR
9374 || TREE_CODE (arg
) == INDIRECT_REF
)
9375 arg
= TREE_OPERAND (arg
, 0);
9376 if (arg
!= last_parm
)
9377 warning ("second parameter of `va_start' not last named argument");
9378 TREE_VALUE (arglist
) = arg
;
9381 /* Evidently an out of date version of <stdarg.h>; can't validate
9382 va_start's second argument, but can still work as intended. */
9383 warning ("`__builtin_next_arg' called without an argument");
9387 /* Simplify a call to the sprintf builtin.
9389 Return 0 if no simplification was possible, otherwise return the
9390 simplified form of the call as a tree. If IGNORED is true, it means that
9391 the caller does not use the returned value of the function. */
9394 simplify_builtin_sprintf (tree arglist
, int ignored
)
9396 tree call
, retval
, dest
, fmt
;
9397 const char *fmt_str
= NULL
;
9399 /* Verify the required arguments in the original call. We deal with two
9400 types of sprintf() calls: 'sprintf (str, fmt)' and
9401 'sprintf (dest, "%s", orig)'. */
9402 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
)
9403 && !validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, POINTER_TYPE
,
9407 /* Get the destination string and the format specifier. */
9408 dest
= TREE_VALUE (arglist
);
9409 fmt
= TREE_VALUE (TREE_CHAIN (arglist
));
9411 /* Check whether the format is a literal string constant. */
9412 fmt_str
= c_getstr (fmt
);
9413 if (fmt_str
== NULL
)
9419 /* If the format doesn't contain % args or %%, use strcpy. */
9420 if (strchr (fmt_str
, '%') == NULL
)
9422 tree fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
9427 /* Convert sprintf (str, fmt) into strcpy (str, fmt) when
9428 'format' is known to contain no % formats. */
9429 arglist
= build_tree_list (NULL_TREE
, fmt
);
9430 arglist
= tree_cons (NULL_TREE
, dest
, arglist
);
9431 call
= build_function_call_expr (fn
, arglist
);
9433 retval
= build_int_2 (strlen (fmt_str
), 0);
9436 /* If the format is "%s", use strcpy if the result isn't used. */
9437 else if (fmt_str
&& strcmp (fmt_str
, "%s") == 0)
9440 fn
= implicit_built_in_decls
[BUILT_IN_STRCPY
];
9445 /* Convert sprintf (str1, "%s", str2) into strcpy (str1, str2). */
9446 orig
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
9447 arglist
= build_tree_list (NULL_TREE
, orig
);
9448 arglist
= tree_cons (NULL_TREE
, dest
, arglist
);
9451 retval
= c_strlen (orig
, 1);
9452 if (!retval
|| TREE_CODE (retval
) != INTEGER_CST
)
9455 call
= build_function_call_expr (fn
, arglist
);
9461 (TREE_TYPE (TREE_TYPE (implicit_built_in_decls
[BUILT_IN_SPRINTF
])),
9463 return build2 (COMPOUND_EXPR
, TREE_TYPE (retval
), call
, retval
);