* builtins.c (expand_builtin_mathfn_3): Correct coding style.
[official-gcc.git] / gcc / builtins.c
blob3a71e0462db8f9034fd0681544eee0124d586c43
1 /* Expand builtin functions.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006 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
10 version.
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
15 for more details.
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, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "machmode.h"
27 #include "real.h"
28 #include "rtl.h"
29 #include "tree.h"
30 #include "tree-gimple.h"
31 #include "flags.h"
32 #include "regs.h"
33 #include "hard-reg-set.h"
34 #include "except.h"
35 #include "function.h"
36 #include "insn-config.h"
37 #include "expr.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "recog.h"
41 #include "output.h"
42 #include "typeclass.h"
43 #include "toplev.h"
44 #include "predict.h"
45 #include "tm_p.h"
46 #include "target.h"
47 #include "langhooks.h"
48 #include "basic-block.h"
49 #include "tree-mudflap.h"
51 #ifndef PAD_VARARGS_DOWN
52 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
53 #endif
55 /* Define the names of the builtin function types and codes. */
56 const char *const built_in_class_names[4]
57 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
59 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA, AT, IM, COND) #X,
60 const char * built_in_names[(int) END_BUILTINS] =
62 #include "builtins.def"
64 #undef DEF_BUILTIN
66 /* Setup an array of _DECL trees, make sure each element is
67 initialized to NULL_TREE. */
68 tree built_in_decls[(int) END_BUILTINS];
69 /* Declarations used when constructing the builtin implicitly in the compiler.
70 It may be NULL_TREE when this is invalid (for instance runtime is not
71 required to implement the function call in all cases). */
72 tree implicit_built_in_decls[(int) END_BUILTINS];
74 static int get_pointer_alignment (tree, unsigned int);
75 static const char *c_getstr (tree);
76 static rtx c_readstr (const char *, enum machine_mode);
77 static int target_char_cast (tree, char *);
78 static rtx get_memory_rtx (tree, tree);
79 static int apply_args_size (void);
80 static int apply_result_size (void);
81 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
82 static rtx result_vector (int, rtx);
83 #endif
84 static void expand_builtin_update_setjmp_buf (rtx);
85 static void expand_builtin_prefetch (tree);
86 static rtx expand_builtin_apply_args (void);
87 static rtx expand_builtin_apply_args_1 (void);
88 static rtx expand_builtin_apply (rtx, rtx, rtx);
89 static void expand_builtin_return (rtx);
90 static enum type_class type_to_class (tree);
91 static rtx expand_builtin_classify_type (tree);
92 static void expand_errno_check (tree, rtx);
93 static rtx expand_builtin_mathfn (tree, rtx, rtx);
94 static rtx expand_builtin_mathfn_2 (tree, rtx, rtx);
95 static rtx expand_builtin_mathfn_3 (tree, rtx, rtx);
96 static rtx expand_builtin_sincos (tree);
97 static rtx expand_builtin_int_roundingfn (tree, rtx, rtx);
98 static rtx expand_builtin_int_roundingfn_2 (tree, rtx, rtx);
99 static rtx expand_builtin_args_info (tree);
100 static rtx expand_builtin_next_arg (void);
101 static rtx expand_builtin_va_start (tree);
102 static rtx expand_builtin_va_end (tree);
103 static rtx expand_builtin_va_copy (tree);
104 static rtx expand_builtin_memcmp (tree, tree, rtx, enum machine_mode);
105 static rtx expand_builtin_strcmp (tree, rtx, enum machine_mode);
106 static rtx expand_builtin_strncmp (tree, rtx, enum machine_mode);
107 static rtx builtin_memcpy_read_str (void *, HOST_WIDE_INT, enum machine_mode);
108 static rtx expand_builtin_strcat (tree, tree, rtx, enum machine_mode);
109 static rtx expand_builtin_strncat (tree, rtx, enum machine_mode);
110 static rtx expand_builtin_strspn (tree, rtx, enum machine_mode);
111 static rtx expand_builtin_strcspn (tree, rtx, enum machine_mode);
112 static rtx expand_builtin_memcpy (tree, rtx, enum machine_mode);
113 static rtx expand_builtin_mempcpy (tree, tree, rtx, enum machine_mode, int);
114 static rtx expand_builtin_memmove (tree, tree, rtx, enum machine_mode);
115 static rtx expand_builtin_bcopy (tree);
116 static rtx expand_builtin_strcpy (tree, tree, rtx, enum machine_mode);
117 static rtx expand_builtin_stpcpy (tree, rtx, enum machine_mode);
118 static rtx builtin_strncpy_read_str (void *, HOST_WIDE_INT, enum machine_mode);
119 static rtx expand_builtin_strncpy (tree, rtx, enum machine_mode);
120 static rtx builtin_memset_read_str (void *, HOST_WIDE_INT, enum machine_mode);
121 static rtx builtin_memset_gen_str (void *, HOST_WIDE_INT, enum machine_mode);
122 static rtx expand_builtin_memset (tree, rtx, enum machine_mode, tree);
123 static rtx expand_builtin_bzero (tree);
124 static rtx expand_builtin_strlen (tree, rtx, enum machine_mode);
125 static rtx expand_builtin_strstr (tree, tree, rtx, enum machine_mode);
126 static rtx expand_builtin_strpbrk (tree, tree, rtx, enum machine_mode);
127 static rtx expand_builtin_strchr (tree, tree, rtx, enum machine_mode);
128 static rtx expand_builtin_strrchr (tree, tree, rtx, enum machine_mode);
129 static rtx expand_builtin_alloca (tree, rtx);
130 static rtx expand_builtin_unop (enum machine_mode, tree, rtx, rtx, optab);
131 static rtx expand_builtin_frame_address (tree, tree);
132 static rtx expand_builtin_fputs (tree, rtx, bool);
133 static rtx expand_builtin_printf (tree, rtx, enum machine_mode, bool);
134 static rtx expand_builtin_fprintf (tree, rtx, enum machine_mode, bool);
135 static rtx expand_builtin_sprintf (tree, rtx, enum machine_mode);
136 static tree stabilize_va_list (tree, int);
137 static rtx expand_builtin_expect (tree, rtx);
138 static tree fold_builtin_constant_p (tree);
139 static tree fold_builtin_classify_type (tree);
140 static tree fold_builtin_strlen (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, tree);
146 static bool readonly_data_expr (tree);
147 static rtx expand_builtin_fabs (tree, rtx, rtx);
148 static rtx expand_builtin_signbit (tree, rtx);
149 static tree fold_builtin_sqrt (tree, tree);
150 static tree fold_builtin_cbrt (tree, tree);
151 static tree fold_builtin_pow (tree, tree, tree);
152 static tree fold_builtin_powi (tree, tree, tree);
153 static tree fold_builtin_cos (tree, tree, tree);
154 static tree fold_builtin_tan (tree, tree);
155 static tree fold_builtin_trunc (tree, tree);
156 static tree fold_builtin_floor (tree, tree);
157 static tree fold_builtin_ceil (tree, tree);
158 static tree fold_builtin_round (tree, tree);
159 static tree fold_builtin_int_roundingfn (tree, tree);
160 static tree fold_builtin_bitop (tree, tree);
161 static tree fold_builtin_memory_op (tree, tree, bool, int);
162 static tree fold_builtin_strchr (tree, tree);
163 static tree fold_builtin_memcmp (tree);
164 static tree fold_builtin_strcmp (tree);
165 static tree fold_builtin_strncmp (tree);
166 static tree fold_builtin_signbit (tree, tree);
167 static tree fold_builtin_copysign (tree, tree, tree);
168 static tree fold_builtin_isascii (tree);
169 static tree fold_builtin_toascii (tree);
170 static tree fold_builtin_isdigit (tree);
171 static tree fold_builtin_fabs (tree, tree);
172 static tree fold_builtin_abs (tree, tree);
173 static tree fold_builtin_unordered_cmp (tree, tree, enum tree_code,
174 enum tree_code);
175 static tree fold_builtin_1 (tree, tree, bool);
177 static tree fold_builtin_strpbrk (tree, tree);
178 static tree fold_builtin_strstr (tree, tree);
179 static tree fold_builtin_strrchr (tree, tree);
180 static tree fold_builtin_strcat (tree);
181 static tree fold_builtin_strncat (tree);
182 static tree fold_builtin_strspn (tree);
183 static tree fold_builtin_strcspn (tree);
184 static tree fold_builtin_sprintf (tree, int);
186 static rtx expand_builtin_object_size (tree);
187 static rtx expand_builtin_memory_chk (tree, rtx, enum machine_mode,
188 enum built_in_function);
189 static void maybe_emit_chk_warning (tree, enum built_in_function);
190 static void maybe_emit_sprintf_chk_warning (tree, enum built_in_function);
191 static tree fold_builtin_object_size (tree);
192 static tree fold_builtin_strcat_chk (tree, tree);
193 static tree fold_builtin_strncat_chk (tree, tree);
194 static tree fold_builtin_sprintf_chk (tree, enum built_in_function);
195 static tree fold_builtin_printf (tree, tree, bool, enum built_in_function);
196 static tree fold_builtin_fprintf (tree, tree, bool, enum built_in_function);
197 static bool init_target_chars (void);
199 static unsigned HOST_WIDE_INT target_newline;
200 static unsigned HOST_WIDE_INT target_percent;
201 static unsigned HOST_WIDE_INT target_c;
202 static unsigned HOST_WIDE_INT target_s;
203 static char target_percent_c[3];
204 static char target_percent_s[3];
205 static char target_percent_s_newline[4];
206 static tree do_mpfr_arg1 (tree, tree, int (*)(mpfr_ptr, mpfr_srcptr, mp_rnd_t),
207 const REAL_VALUE_TYPE *, const REAL_VALUE_TYPE *, bool);
208 static tree do_mpfr_arg2 (tree, tree, tree,
209 int (*)(mpfr_ptr, mpfr_srcptr, mpfr_srcptr, mp_rnd_t));
211 /* Return true if NODE should be considered for inline expansion regardless
212 of the optimization level. This means whenever a function is invoked with
213 its "internal" name, which normally contains the prefix "__builtin". */
215 static bool called_as_built_in (tree node)
217 const char *name = IDENTIFIER_POINTER (DECL_NAME (node));
218 if (strncmp (name, "__builtin_", 10) == 0)
219 return true;
220 if (strncmp (name, "__sync_", 7) == 0)
221 return true;
222 return false;
225 /* Return the alignment in bits of EXP, a pointer valued expression.
226 But don't return more than MAX_ALIGN no matter what.
227 The alignment returned is, by default, the alignment of the thing that
228 EXP points to. If it is not a POINTER_TYPE, 0 is returned.
230 Otherwise, look at the expression to see if we can do better, i.e., if the
231 expression is actually pointing at an object whose alignment is tighter. */
233 static int
234 get_pointer_alignment (tree exp, unsigned int max_align)
236 unsigned int align, inner;
238 /* We rely on TER to compute accurate alignment information. */
239 if (!(optimize && flag_tree_ter))
240 return 0;
242 if (!POINTER_TYPE_P (TREE_TYPE (exp)))
243 return 0;
245 align = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
246 align = MIN (align, max_align);
248 while (1)
250 switch (TREE_CODE (exp))
252 case NOP_EXPR:
253 case CONVERT_EXPR:
254 case NON_LVALUE_EXPR:
255 exp = TREE_OPERAND (exp, 0);
256 if (! POINTER_TYPE_P (TREE_TYPE (exp)))
257 return align;
259 inner = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
260 align = MIN (inner, max_align);
261 break;
263 case PLUS_EXPR:
264 /* If sum of pointer + int, restrict our maximum alignment to that
265 imposed by the integer. If not, we can't do any better than
266 ALIGN. */
267 if (! host_integerp (TREE_OPERAND (exp, 1), 1))
268 return align;
270 while (((tree_low_cst (TREE_OPERAND (exp, 1), 1))
271 & (max_align / BITS_PER_UNIT - 1))
272 != 0)
273 max_align >>= 1;
275 exp = TREE_OPERAND (exp, 0);
276 break;
278 case ADDR_EXPR:
279 /* See what we are pointing at and look at its alignment. */
280 exp = TREE_OPERAND (exp, 0);
281 inner = max_align;
282 if (handled_component_p (exp))
284 HOST_WIDE_INT bitsize, bitpos;
285 tree offset;
286 enum machine_mode mode;
287 int unsignedp, volatilep;
289 exp = get_inner_reference (exp, &bitsize, &bitpos, &offset,
290 &mode, &unsignedp, &volatilep, true);
291 if (bitpos)
292 inner = MIN (inner, (unsigned) (bitpos & -bitpos));
293 if (offset && TREE_CODE (offset) == PLUS_EXPR
294 && host_integerp (TREE_OPERAND (offset, 1), 1))
296 /* Any overflow in calculating offset_bits won't change
297 the alignment. */
298 unsigned offset_bits
299 = ((unsigned) tree_low_cst (TREE_OPERAND (offset, 1), 1)
300 * BITS_PER_UNIT);
302 if (offset_bits)
303 inner = MIN (inner, (offset_bits & -offset_bits));
304 offset = TREE_OPERAND (offset, 0);
306 if (offset && TREE_CODE (offset) == MULT_EXPR
307 && host_integerp (TREE_OPERAND (offset, 1), 1))
309 /* Any overflow in calculating offset_factor won't change
310 the alignment. */
311 unsigned offset_factor
312 = ((unsigned) tree_low_cst (TREE_OPERAND (offset, 1), 1)
313 * BITS_PER_UNIT);
315 if (offset_factor)
316 inner = MIN (inner, (offset_factor & -offset_factor));
318 else if (offset)
319 inner = MIN (inner, BITS_PER_UNIT);
321 if (TREE_CODE (exp) == FUNCTION_DECL)
322 align = FUNCTION_BOUNDARY;
323 else if (DECL_P (exp))
324 align = MIN (inner, DECL_ALIGN (exp));
325 #ifdef CONSTANT_ALIGNMENT
326 else if (CONSTANT_CLASS_P (exp))
327 align = MIN (inner, (unsigned)CONSTANT_ALIGNMENT (exp, align));
328 #endif
329 else if (TREE_CODE (exp) == VIEW_CONVERT_EXPR
330 || TREE_CODE (exp) == INDIRECT_REF)
331 align = MIN (TYPE_ALIGN (TREE_TYPE (exp)), inner);
332 else
333 align = MIN (align, inner);
334 return MIN (align, max_align);
336 default:
337 return align;
342 /* Compute the length of a C string. TREE_STRING_LENGTH is not the right
343 way, because it could contain a zero byte in the middle.
344 TREE_STRING_LENGTH is the size of the character array, not the string.
346 ONLY_VALUE should be nonzero if the result is not going to be emitted
347 into the instruction stream and zero if it is going to be expanded.
348 E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is nonzero, constant 3
349 is returned, otherwise NULL, since
350 len = c_strlen (src, 1); if (len) expand_expr (len, ...); would not
351 evaluate the side-effects.
353 The value returned is of type `ssizetype'.
355 Unfortunately, string_constant can't access the values of const char
356 arrays with initializers, so neither can we do so here. */
358 tree
359 c_strlen (tree src, int only_value)
361 tree offset_node;
362 HOST_WIDE_INT offset;
363 int max;
364 const char *ptr;
366 STRIP_NOPS (src);
367 if (TREE_CODE (src) == COND_EXPR
368 && (only_value || !TREE_SIDE_EFFECTS (TREE_OPERAND (src, 0))))
370 tree len1, len2;
372 len1 = c_strlen (TREE_OPERAND (src, 1), only_value);
373 len2 = c_strlen (TREE_OPERAND (src, 2), only_value);
374 if (tree_int_cst_equal (len1, len2))
375 return len1;
378 if (TREE_CODE (src) == COMPOUND_EXPR
379 && (only_value || !TREE_SIDE_EFFECTS (TREE_OPERAND (src, 0))))
380 return c_strlen (TREE_OPERAND (src, 1), only_value);
382 src = string_constant (src, &offset_node);
383 if (src == 0)
384 return 0;
386 max = TREE_STRING_LENGTH (src) - 1;
387 ptr = TREE_STRING_POINTER (src);
389 if (offset_node && TREE_CODE (offset_node) != INTEGER_CST)
391 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
392 compute the offset to the following null if we don't know where to
393 start searching for it. */
394 int i;
396 for (i = 0; i < max; i++)
397 if (ptr[i] == 0)
398 return 0;
400 /* We don't know the starting offset, but we do know that the string
401 has no internal zero bytes. We can assume that the offset falls
402 within the bounds of the string; otherwise, the programmer deserves
403 what he gets. Subtract the offset from the length of the string,
404 and return that. This would perhaps not be valid if we were dealing
405 with named arrays in addition to literal string constants. */
407 return size_diffop (size_int (max), offset_node);
410 /* We have a known offset into the string. Start searching there for
411 a null character if we can represent it as a single HOST_WIDE_INT. */
412 if (offset_node == 0)
413 offset = 0;
414 else if (! host_integerp (offset_node, 0))
415 offset = -1;
416 else
417 offset = tree_low_cst (offset_node, 0);
419 /* If the offset is known to be out of bounds, warn, and call strlen at
420 runtime. */
421 if (offset < 0 || offset > max)
423 warning (0, "offset outside bounds of constant string");
424 return 0;
427 /* Use strlen to search for the first zero byte. Since any strings
428 constructed with build_string will have nulls appended, we win even
429 if we get handed something like (char[4])"abcd".
431 Since OFFSET is our starting index into the string, no further
432 calculation is needed. */
433 return ssize_int (strlen (ptr + offset));
436 /* Return a char pointer for a C string if it is a string constant
437 or sum of string constant and integer constant. */
439 static const char *
440 c_getstr (tree src)
442 tree offset_node;
444 src = string_constant (src, &offset_node);
445 if (src == 0)
446 return 0;
448 if (offset_node == 0)
449 return TREE_STRING_POINTER (src);
450 else if (!host_integerp (offset_node, 1)
451 || compare_tree_int (offset_node, TREE_STRING_LENGTH (src) - 1) > 0)
452 return 0;
454 return TREE_STRING_POINTER (src) + tree_low_cst (offset_node, 1);
457 /* Return a CONST_INT or CONST_DOUBLE corresponding to target reading
458 GET_MODE_BITSIZE (MODE) bits from string constant STR. */
460 static rtx
461 c_readstr (const char *str, enum machine_mode mode)
463 HOST_WIDE_INT c[2];
464 HOST_WIDE_INT ch;
465 unsigned int i, j;
467 gcc_assert (GET_MODE_CLASS (mode) == MODE_INT);
469 c[0] = 0;
470 c[1] = 0;
471 ch = 1;
472 for (i = 0; i < GET_MODE_SIZE (mode); i++)
474 j = i;
475 if (WORDS_BIG_ENDIAN)
476 j = GET_MODE_SIZE (mode) - i - 1;
477 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
478 && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
479 j = j + UNITS_PER_WORD - 2 * (j % UNITS_PER_WORD) - 1;
480 j *= BITS_PER_UNIT;
481 gcc_assert (j <= 2 * HOST_BITS_PER_WIDE_INT);
483 if (ch)
484 ch = (unsigned char) str[i];
485 c[j / HOST_BITS_PER_WIDE_INT] |= ch << (j % HOST_BITS_PER_WIDE_INT);
487 return immed_double_const (c[0], c[1], mode);
490 /* Cast a target constant CST to target CHAR and if that value fits into
491 host char type, return zero and put that value into variable pointed to by
492 P. */
494 static int
495 target_char_cast (tree cst, char *p)
497 unsigned HOST_WIDE_INT val, hostval;
499 if (!host_integerp (cst, 1)
500 || CHAR_TYPE_SIZE > HOST_BITS_PER_WIDE_INT)
501 return 1;
503 val = tree_low_cst (cst, 1);
504 if (CHAR_TYPE_SIZE < HOST_BITS_PER_WIDE_INT)
505 val &= (((unsigned HOST_WIDE_INT) 1) << CHAR_TYPE_SIZE) - 1;
507 hostval = val;
508 if (HOST_BITS_PER_CHAR < HOST_BITS_PER_WIDE_INT)
509 hostval &= (((unsigned HOST_WIDE_INT) 1) << HOST_BITS_PER_CHAR) - 1;
511 if (val != hostval)
512 return 1;
514 *p = hostval;
515 return 0;
518 /* Similar to save_expr, but assumes that arbitrary code is not executed
519 in between the multiple evaluations. In particular, we assume that a
520 non-addressable local variable will not be modified. */
522 static tree
523 builtin_save_expr (tree exp)
525 if (TREE_ADDRESSABLE (exp) == 0
526 && (TREE_CODE (exp) == PARM_DECL
527 || (TREE_CODE (exp) == VAR_DECL && !TREE_STATIC (exp))))
528 return exp;
530 return save_expr (exp);
533 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
534 times to get the address of either a higher stack frame, or a return
535 address located within it (depending on FNDECL_CODE). */
537 static rtx
538 expand_builtin_return_addr (enum built_in_function fndecl_code, int count)
540 int i;
542 #ifdef INITIAL_FRAME_ADDRESS_RTX
543 rtx tem = INITIAL_FRAME_ADDRESS_RTX;
544 #else
545 rtx tem;
547 /* For a zero count with __builtin_return_address, we don't care what
548 frame address we return, because target-specific definitions will
549 override us. Therefore frame pointer elimination is OK, and using
550 the soft frame pointer is OK.
552 For a non-zero count, or a zero count with __builtin_frame_address,
553 we require a stable offset from the current frame pointer to the
554 previous one, so we must use the hard frame pointer, and
555 we must disable frame pointer elimination. */
556 if (count == 0 && fndecl_code == BUILT_IN_RETURN_ADDRESS)
557 tem = frame_pointer_rtx;
558 else
560 tem = hard_frame_pointer_rtx;
562 /* Tell reload not to eliminate the frame pointer. */
563 current_function_accesses_prior_frames = 1;
565 #endif
567 /* Some machines need special handling before we can access
568 arbitrary frames. For example, on the SPARC, we must first flush
569 all register windows to the stack. */
570 #ifdef SETUP_FRAME_ADDRESSES
571 if (count > 0)
572 SETUP_FRAME_ADDRESSES ();
573 #endif
575 /* On the SPARC, the return address is not in the frame, it is in a
576 register. There is no way to access it off of the current frame
577 pointer, but it can be accessed off the previous frame pointer by
578 reading the value from the register window save area. */
579 #ifdef RETURN_ADDR_IN_PREVIOUS_FRAME
580 if (fndecl_code == BUILT_IN_RETURN_ADDRESS)
581 count--;
582 #endif
584 /* Scan back COUNT frames to the specified frame. */
585 for (i = 0; i < count; i++)
587 /* Assume the dynamic chain pointer is in the word that the
588 frame address points to, unless otherwise specified. */
589 #ifdef DYNAMIC_CHAIN_ADDRESS
590 tem = DYNAMIC_CHAIN_ADDRESS (tem);
591 #endif
592 tem = memory_address (Pmode, tem);
593 tem = gen_frame_mem (Pmode, tem);
594 tem = copy_to_reg (tem);
597 /* For __builtin_frame_address, return what we've got. But, on
598 the SPARC for example, we may have to add a bias. */
599 if (fndecl_code == BUILT_IN_FRAME_ADDRESS)
600 #ifdef FRAME_ADDR_RTX
601 return FRAME_ADDR_RTX (tem);
602 #else
603 return tem;
604 #endif
606 /* For __builtin_return_address, get the return address from that frame. */
607 #ifdef RETURN_ADDR_RTX
608 tem = RETURN_ADDR_RTX (count, tem);
609 #else
610 tem = memory_address (Pmode,
611 plus_constant (tem, GET_MODE_SIZE (Pmode)));
612 tem = gen_frame_mem (Pmode, tem);
613 #endif
614 return tem;
617 /* Alias set used for setjmp buffer. */
618 static HOST_WIDE_INT setjmp_alias_set = -1;
620 /* Construct the leading half of a __builtin_setjmp call. Control will
621 return to RECEIVER_LABEL. This is also called directly by the SJLJ
622 exception handling code. */
624 void
625 expand_builtin_setjmp_setup (rtx buf_addr, rtx receiver_label)
627 enum machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
628 rtx stack_save;
629 rtx mem;
631 if (setjmp_alias_set == -1)
632 setjmp_alias_set = new_alias_set ();
634 buf_addr = convert_memory_address (Pmode, buf_addr);
636 buf_addr = force_reg (Pmode, force_operand (buf_addr, NULL_RTX));
638 /* We store the frame pointer and the address of receiver_label in
639 the buffer and use the rest of it for the stack save area, which
640 is machine-dependent. */
642 mem = gen_rtx_MEM (Pmode, buf_addr);
643 set_mem_alias_set (mem, setjmp_alias_set);
644 emit_move_insn (mem, targetm.builtin_setjmp_frame_value ());
646 mem = gen_rtx_MEM (Pmode, plus_constant (buf_addr, GET_MODE_SIZE (Pmode))),
647 set_mem_alias_set (mem, setjmp_alias_set);
649 emit_move_insn (validize_mem (mem),
650 force_reg (Pmode, gen_rtx_LABEL_REF (Pmode, receiver_label)));
652 stack_save = gen_rtx_MEM (sa_mode,
653 plus_constant (buf_addr,
654 2 * GET_MODE_SIZE (Pmode)));
655 set_mem_alias_set (stack_save, setjmp_alias_set);
656 emit_stack_save (SAVE_NONLOCAL, &stack_save, NULL_RTX);
658 /* If there is further processing to do, do it. */
659 #ifdef HAVE_builtin_setjmp_setup
660 if (HAVE_builtin_setjmp_setup)
661 emit_insn (gen_builtin_setjmp_setup (buf_addr));
662 #endif
664 /* Tell optimize_save_area_alloca that extra work is going to
665 need to go on during alloca. */
666 current_function_calls_setjmp = 1;
668 /* Set this so all the registers get saved in our frame; we need to be
669 able to copy the saved values for any registers from frames we unwind. */
670 current_function_has_nonlocal_label = 1;
673 /* Construct the trailing part of a __builtin_setjmp call. This is
674 also called directly by the SJLJ exception handling code. */
676 void
677 expand_builtin_setjmp_receiver (rtx receiver_label ATTRIBUTE_UNUSED)
679 /* Clobber the FP when we get here, so we have to make sure it's
680 marked as used by this function. */
681 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
683 /* Mark the static chain as clobbered here so life information
684 doesn't get messed up for it. */
685 emit_insn (gen_rtx_CLOBBER (VOIDmode, static_chain_rtx));
687 /* Now put in the code to restore the frame pointer, and argument
688 pointer, if needed. */
689 #ifdef HAVE_nonlocal_goto
690 if (! HAVE_nonlocal_goto)
691 #endif
693 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
694 /* This might change the hard frame pointer in ways that aren't
695 apparent to early optimization passes, so force a clobber. */
696 emit_insn (gen_rtx_CLOBBER (VOIDmode, hard_frame_pointer_rtx));
699 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
700 if (fixed_regs[ARG_POINTER_REGNUM])
702 #ifdef ELIMINABLE_REGS
703 size_t i;
704 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
706 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
707 if (elim_regs[i].from == ARG_POINTER_REGNUM
708 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
709 break;
711 if (i == ARRAY_SIZE (elim_regs))
712 #endif
714 /* Now restore our arg pointer from the address at which it
715 was saved in our stack frame. */
716 emit_move_insn (virtual_incoming_args_rtx,
717 copy_to_reg (get_arg_pointer_save_area (cfun)));
720 #endif
722 #ifdef HAVE_builtin_setjmp_receiver
723 if (HAVE_builtin_setjmp_receiver)
724 emit_insn (gen_builtin_setjmp_receiver (receiver_label));
725 else
726 #endif
727 #ifdef HAVE_nonlocal_goto_receiver
728 if (HAVE_nonlocal_goto_receiver)
729 emit_insn (gen_nonlocal_goto_receiver ());
730 else
731 #endif
732 { /* Nothing */ }
734 /* @@@ This is a kludge. Not all machine descriptions define a blockage
735 insn, but we must not allow the code we just generated to be reordered
736 by scheduling. Specifically, the update of the frame pointer must
737 happen immediately, not later. So emit an ASM_INPUT to act as blockage
738 insn. */
739 emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
742 /* __builtin_longjmp is passed a pointer to an array of five words (not
743 all will be used on all machines). It operates similarly to the C
744 library function of the same name, but is more efficient. Much of
745 the code below is copied from the handling of non-local gotos. */
747 static void
748 expand_builtin_longjmp (rtx buf_addr, rtx value)
750 rtx fp, lab, stack, insn, last;
751 enum machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
753 if (setjmp_alias_set == -1)
754 setjmp_alias_set = new_alias_set ();
756 buf_addr = convert_memory_address (Pmode, buf_addr);
758 buf_addr = force_reg (Pmode, buf_addr);
760 /* We used to store value in static_chain_rtx, but that fails if pointers
761 are smaller than integers. We instead require that the user must pass
762 a second argument of 1, because that is what builtin_setjmp will
763 return. This also makes EH slightly more efficient, since we are no
764 longer copying around a value that we don't care about. */
765 gcc_assert (value == const1_rtx);
767 last = get_last_insn ();
768 #ifdef HAVE_builtin_longjmp
769 if (HAVE_builtin_longjmp)
770 emit_insn (gen_builtin_longjmp (buf_addr));
771 else
772 #endif
774 fp = gen_rtx_MEM (Pmode, buf_addr);
775 lab = gen_rtx_MEM (Pmode, plus_constant (buf_addr,
776 GET_MODE_SIZE (Pmode)));
778 stack = gen_rtx_MEM (sa_mode, plus_constant (buf_addr,
779 2 * GET_MODE_SIZE (Pmode)));
780 set_mem_alias_set (fp, setjmp_alias_set);
781 set_mem_alias_set (lab, setjmp_alias_set);
782 set_mem_alias_set (stack, setjmp_alias_set);
784 /* Pick up FP, label, and SP from the block and jump. This code is
785 from expand_goto in stmt.c; see there for detailed comments. */
786 #ifdef HAVE_nonlocal_goto
787 if (HAVE_nonlocal_goto)
788 /* We have to pass a value to the nonlocal_goto pattern that will
789 get copied into the static_chain pointer, but it does not matter
790 what that value is, because builtin_setjmp does not use it. */
791 emit_insn (gen_nonlocal_goto (value, lab, stack, fp));
792 else
793 #endif
795 lab = copy_to_reg (lab);
797 emit_insn (gen_rtx_CLOBBER (VOIDmode,
798 gen_rtx_MEM (BLKmode,
799 gen_rtx_SCRATCH (VOIDmode))));
800 emit_insn (gen_rtx_CLOBBER (VOIDmode,
801 gen_rtx_MEM (BLKmode,
802 hard_frame_pointer_rtx)));
804 emit_move_insn (hard_frame_pointer_rtx, fp);
805 emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
807 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
808 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
809 emit_indirect_jump (lab);
813 /* Search backwards and mark the jump insn as a non-local goto.
814 Note that this precludes the use of __builtin_longjmp to a
815 __builtin_setjmp target in the same function. However, we've
816 already cautioned the user that these functions are for
817 internal exception handling use only. */
818 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
820 gcc_assert (insn != last);
822 if (JUMP_P (insn))
824 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO, const0_rtx,
825 REG_NOTES (insn));
826 break;
828 else if (CALL_P (insn))
829 break;
833 /* Expand a call to __builtin_nonlocal_goto. We're passed the target label
834 and the address of the save area. */
836 static rtx
837 expand_builtin_nonlocal_goto (tree arglist)
839 tree t_label, t_save_area;
840 rtx r_label, r_save_area, r_fp, r_sp, insn;
842 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
843 return NULL_RTX;
845 t_label = TREE_VALUE (arglist);
846 arglist = TREE_CHAIN (arglist);
847 t_save_area = TREE_VALUE (arglist);
849 r_label = expand_normal (t_label);
850 r_label = convert_memory_address (Pmode, r_label);
851 r_save_area = expand_normal (t_save_area);
852 r_save_area = convert_memory_address (Pmode, r_save_area);
853 r_fp = gen_rtx_MEM (Pmode, r_save_area);
854 r_sp = gen_rtx_MEM (STACK_SAVEAREA_MODE (SAVE_NONLOCAL),
855 plus_constant (r_save_area, GET_MODE_SIZE (Pmode)));
857 current_function_has_nonlocal_goto = 1;
859 #ifdef HAVE_nonlocal_goto
860 /* ??? We no longer need to pass the static chain value, afaik. */
861 if (HAVE_nonlocal_goto)
862 emit_insn (gen_nonlocal_goto (const0_rtx, r_label, r_sp, r_fp));
863 else
864 #endif
866 r_label = copy_to_reg (r_label);
868 emit_insn (gen_rtx_CLOBBER (VOIDmode,
869 gen_rtx_MEM (BLKmode,
870 gen_rtx_SCRATCH (VOIDmode))));
872 emit_insn (gen_rtx_CLOBBER (VOIDmode,
873 gen_rtx_MEM (BLKmode,
874 hard_frame_pointer_rtx)));
876 /* Restore frame pointer for containing function.
877 This sets the actual hard register used for the frame pointer
878 to the location of the function's incoming static chain info.
879 The non-local goto handler will then adjust it to contain the
880 proper value and reload the argument pointer, if needed. */
881 emit_move_insn (hard_frame_pointer_rtx, r_fp);
882 emit_stack_restore (SAVE_NONLOCAL, r_sp, NULL_RTX);
884 /* USE of hard_frame_pointer_rtx added for consistency;
885 not clear if really needed. */
886 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
887 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
888 emit_indirect_jump (r_label);
891 /* Search backwards to the jump insn and mark it as a
892 non-local goto. */
893 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
895 if (JUMP_P (insn))
897 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO,
898 const0_rtx, REG_NOTES (insn));
899 break;
901 else if (CALL_P (insn))
902 break;
905 return const0_rtx;
908 /* __builtin_update_setjmp_buf is passed a pointer to an array of five words
909 (not all will be used on all machines) that was passed to __builtin_setjmp.
910 It updates the stack pointer in that block to correspond to the current
911 stack pointer. */
913 static void
914 expand_builtin_update_setjmp_buf (rtx buf_addr)
916 enum machine_mode sa_mode = Pmode;
917 rtx stack_save;
920 #ifdef HAVE_save_stack_nonlocal
921 if (HAVE_save_stack_nonlocal)
922 sa_mode = insn_data[(int) CODE_FOR_save_stack_nonlocal].operand[0].mode;
923 #endif
924 #ifdef STACK_SAVEAREA_MODE
925 sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
926 #endif
928 stack_save
929 = gen_rtx_MEM (sa_mode,
930 memory_address
931 (sa_mode,
932 plus_constant (buf_addr, 2 * GET_MODE_SIZE (Pmode))));
934 #ifdef HAVE_setjmp
935 if (HAVE_setjmp)
936 emit_insn (gen_setjmp ());
937 #endif
939 emit_stack_save (SAVE_NONLOCAL, &stack_save, NULL_RTX);
942 /* Expand a call to __builtin_prefetch. For a target that does not support
943 data prefetch, evaluate the memory address argument in case it has side
944 effects. */
946 static void
947 expand_builtin_prefetch (tree arglist)
949 tree arg0, arg1, arg2;
950 rtx op0, op1, op2;
952 if (!validate_arglist (arglist, POINTER_TYPE, 0))
953 return;
955 arg0 = TREE_VALUE (arglist);
956 /* Arguments 1 and 2 are optional; argument 1 (read/write) defaults to
957 zero (read) and argument 2 (locality) defaults to 3 (high degree of
958 locality). */
959 if (TREE_CHAIN (arglist))
961 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
962 if (TREE_CHAIN (TREE_CHAIN (arglist)))
963 arg2 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
964 else
965 arg2 = build_int_cst (NULL_TREE, 3);
967 else
969 arg1 = integer_zero_node;
970 arg2 = build_int_cst (NULL_TREE, 3);
973 /* Argument 0 is an address. */
974 op0 = expand_expr (arg0, NULL_RTX, Pmode, EXPAND_NORMAL);
976 /* Argument 1 (read/write flag) must be a compile-time constant int. */
977 if (TREE_CODE (arg1) != INTEGER_CST)
979 error ("second argument to %<__builtin_prefetch%> must be a constant");
980 arg1 = integer_zero_node;
982 op1 = expand_normal (arg1);
983 /* Argument 1 must be either zero or one. */
984 if (INTVAL (op1) != 0 && INTVAL (op1) != 1)
986 warning (0, "invalid second argument to %<__builtin_prefetch%>;"
987 " using zero");
988 op1 = const0_rtx;
991 /* Argument 2 (locality) must be a compile-time constant int. */
992 if (TREE_CODE (arg2) != INTEGER_CST)
994 error ("third argument to %<__builtin_prefetch%> must be a constant");
995 arg2 = integer_zero_node;
997 op2 = expand_normal (arg2);
998 /* Argument 2 must be 0, 1, 2, or 3. */
999 if (INTVAL (op2) < 0 || INTVAL (op2) > 3)
1001 warning (0, "invalid third argument to %<__builtin_prefetch%>; using zero");
1002 op2 = const0_rtx;
1005 #ifdef HAVE_prefetch
1006 if (HAVE_prefetch)
1008 if ((! (*insn_data[(int) CODE_FOR_prefetch].operand[0].predicate)
1009 (op0,
1010 insn_data[(int) CODE_FOR_prefetch].operand[0].mode))
1011 || (GET_MODE (op0) != Pmode))
1013 op0 = convert_memory_address (Pmode, op0);
1014 op0 = force_reg (Pmode, op0);
1016 emit_insn (gen_prefetch (op0, op1, op2));
1018 #endif
1020 /* Don't do anything with direct references to volatile memory, but
1021 generate code to handle other side effects. */
1022 if (!MEM_P (op0) && side_effects_p (op0))
1023 emit_insn (op0);
1026 /* Get a MEM rtx for expression EXP which is the address of an operand
1027 to be used in a string instruction (cmpstrsi, movmemsi, ..). LEN is
1028 the maximum length of the block of memory that might be accessed or
1029 NULL if unknown. */
1031 static rtx
1032 get_memory_rtx (tree exp, tree len)
1034 rtx addr = expand_expr (exp, NULL_RTX, ptr_mode, EXPAND_NORMAL);
1035 rtx mem = gen_rtx_MEM (BLKmode, memory_address (BLKmode, addr));
1037 /* Get an expression we can use to find the attributes to assign to MEM.
1038 If it is an ADDR_EXPR, use the operand. Otherwise, dereference it if
1039 we can. First remove any nops. */
1040 while ((TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
1041 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1042 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
1043 exp = TREE_OPERAND (exp, 0);
1045 if (TREE_CODE (exp) == ADDR_EXPR)
1046 exp = TREE_OPERAND (exp, 0);
1047 else if (POINTER_TYPE_P (TREE_TYPE (exp)))
1048 exp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (exp)), exp);
1049 else
1050 exp = NULL;
1052 /* Honor attributes derived from exp, except for the alias set
1053 (as builtin stringops may alias with anything) and the size
1054 (as stringops may access multiple array elements). */
1055 if (exp)
1057 set_mem_attributes (mem, exp, 0);
1059 /* Allow the string and memory builtins to overflow from one
1060 field into another, see http://gcc.gnu.org/PR23561.
1061 Thus avoid COMPONENT_REFs in MEM_EXPR unless we know the whole
1062 memory accessed by the string or memory builtin will fit
1063 within the field. */
1064 if (MEM_EXPR (mem) && TREE_CODE (MEM_EXPR (mem)) == COMPONENT_REF)
1066 tree mem_expr = MEM_EXPR (mem);
1067 HOST_WIDE_INT offset = -1, length = -1;
1068 tree inner = exp;
1070 while (TREE_CODE (inner) == ARRAY_REF
1071 || TREE_CODE (inner) == NOP_EXPR
1072 || TREE_CODE (inner) == CONVERT_EXPR
1073 || TREE_CODE (inner) == NON_LVALUE_EXPR
1074 || TREE_CODE (inner) == VIEW_CONVERT_EXPR
1075 || TREE_CODE (inner) == SAVE_EXPR)
1076 inner = TREE_OPERAND (inner, 0);
1078 gcc_assert (TREE_CODE (inner) == COMPONENT_REF);
1080 if (MEM_OFFSET (mem)
1081 && GET_CODE (MEM_OFFSET (mem)) == CONST_INT)
1082 offset = INTVAL (MEM_OFFSET (mem));
1084 if (offset >= 0 && len && host_integerp (len, 0))
1085 length = tree_low_cst (len, 0);
1087 while (TREE_CODE (inner) == COMPONENT_REF)
1089 tree field = TREE_OPERAND (inner, 1);
1090 gcc_assert (! DECL_BIT_FIELD (field));
1091 gcc_assert (TREE_CODE (mem_expr) == COMPONENT_REF);
1092 gcc_assert (field == TREE_OPERAND (mem_expr, 1));
1094 if (length >= 0
1095 && TYPE_SIZE_UNIT (TREE_TYPE (inner))
1096 && host_integerp (TYPE_SIZE_UNIT (TREE_TYPE (inner)), 0))
1098 HOST_WIDE_INT size
1099 = tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (inner)), 0);
1100 /* If we can prove the memory starting at XEXP (mem, 0)
1101 and ending at XEXP (mem, 0) + LENGTH will fit into
1102 this field, we can keep that COMPONENT_REF in MEM_EXPR. */
1103 if (offset <= size
1104 && length <= size
1105 && offset + length <= size)
1106 break;
1109 if (offset >= 0
1110 && host_integerp (DECL_FIELD_OFFSET (field), 0))
1111 offset += tree_low_cst (DECL_FIELD_OFFSET (field), 0)
1112 + tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
1113 / BITS_PER_UNIT;
1114 else
1116 offset = -1;
1117 length = -1;
1120 mem_expr = TREE_OPERAND (mem_expr, 0);
1121 inner = TREE_OPERAND (inner, 0);
1124 if (mem_expr == NULL)
1125 offset = -1;
1126 if (mem_expr != MEM_EXPR (mem))
1128 set_mem_expr (mem, mem_expr);
1129 set_mem_offset (mem, offset >= 0 ? GEN_INT (offset) : NULL_RTX);
1132 set_mem_alias_set (mem, 0);
1133 set_mem_size (mem, NULL_RTX);
1136 return mem;
1139 /* Built-in functions to perform an untyped call and return. */
1141 /* For each register that may be used for calling a function, this
1142 gives a mode used to copy the register's value. VOIDmode indicates
1143 the register is not used for calling a function. If the machine
1144 has register windows, this gives only the outbound registers.
1145 INCOMING_REGNO gives the corresponding inbound register. */
1146 static enum machine_mode apply_args_mode[FIRST_PSEUDO_REGISTER];
1148 /* For each register that may be used for returning values, this gives
1149 a mode used to copy the register's value. VOIDmode indicates the
1150 register is not used for returning values. If the machine has
1151 register windows, this gives only the outbound registers.
1152 INCOMING_REGNO gives the corresponding inbound register. */
1153 static enum machine_mode apply_result_mode[FIRST_PSEUDO_REGISTER];
1155 /* For each register that may be used for calling a function, this
1156 gives the offset of that register into the block returned by
1157 __builtin_apply_args. 0 indicates that the register is not
1158 used for calling a function. */
1159 static int apply_args_reg_offset[FIRST_PSEUDO_REGISTER];
1161 /* Return the size required for the block returned by __builtin_apply_args,
1162 and initialize apply_args_mode. */
1164 static int
1165 apply_args_size (void)
1167 static int size = -1;
1168 int align;
1169 unsigned int regno;
1170 enum machine_mode mode;
1172 /* The values computed by this function never change. */
1173 if (size < 0)
1175 /* The first value is the incoming arg-pointer. */
1176 size = GET_MODE_SIZE (Pmode);
1178 /* The second value is the structure value address unless this is
1179 passed as an "invisible" first argument. */
1180 if (targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0))
1181 size += GET_MODE_SIZE (Pmode);
1183 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1184 if (FUNCTION_ARG_REGNO_P (regno))
1186 mode = reg_raw_mode[regno];
1188 gcc_assert (mode != VOIDmode);
1190 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1191 if (size % align != 0)
1192 size = CEIL (size, align) * align;
1193 apply_args_reg_offset[regno] = size;
1194 size += GET_MODE_SIZE (mode);
1195 apply_args_mode[regno] = mode;
1197 else
1199 apply_args_mode[regno] = VOIDmode;
1200 apply_args_reg_offset[regno] = 0;
1203 return size;
1206 /* Return the size required for the block returned by __builtin_apply,
1207 and initialize apply_result_mode. */
1209 static int
1210 apply_result_size (void)
1212 static int size = -1;
1213 int align, regno;
1214 enum machine_mode mode;
1216 /* The values computed by this function never change. */
1217 if (size < 0)
1219 size = 0;
1221 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1222 if (FUNCTION_VALUE_REGNO_P (regno))
1224 mode = reg_raw_mode[regno];
1226 gcc_assert (mode != VOIDmode);
1228 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1229 if (size % align != 0)
1230 size = CEIL (size, align) * align;
1231 size += GET_MODE_SIZE (mode);
1232 apply_result_mode[regno] = mode;
1234 else
1235 apply_result_mode[regno] = VOIDmode;
1237 /* Allow targets that use untyped_call and untyped_return to override
1238 the size so that machine-specific information can be stored here. */
1239 #ifdef APPLY_RESULT_SIZE
1240 size = APPLY_RESULT_SIZE;
1241 #endif
1243 return size;
1246 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
1247 /* Create a vector describing the result block RESULT. If SAVEP is true,
1248 the result block is used to save the values; otherwise it is used to
1249 restore the values. */
1251 static rtx
1252 result_vector (int savep, rtx result)
1254 int regno, size, align, nelts;
1255 enum machine_mode mode;
1256 rtx reg, mem;
1257 rtx *savevec = alloca (FIRST_PSEUDO_REGISTER * sizeof (rtx));
1259 size = nelts = 0;
1260 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1261 if ((mode = apply_result_mode[regno]) != VOIDmode)
1263 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1264 if (size % align != 0)
1265 size = CEIL (size, align) * align;
1266 reg = gen_rtx_REG (mode, savep ? regno : INCOMING_REGNO (regno));
1267 mem = adjust_address (result, mode, size);
1268 savevec[nelts++] = (savep
1269 ? gen_rtx_SET (VOIDmode, mem, reg)
1270 : gen_rtx_SET (VOIDmode, reg, mem));
1271 size += GET_MODE_SIZE (mode);
1273 return gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (nelts, savevec));
1275 #endif /* HAVE_untyped_call or HAVE_untyped_return */
1277 /* Save the state required to perform an untyped call with the same
1278 arguments as were passed to the current function. */
1280 static rtx
1281 expand_builtin_apply_args_1 (void)
1283 rtx registers, tem;
1284 int size, align, regno;
1285 enum machine_mode mode;
1286 rtx struct_incoming_value = targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 1);
1288 /* Create a block where the arg-pointer, structure value address,
1289 and argument registers can be saved. */
1290 registers = assign_stack_local (BLKmode, apply_args_size (), -1);
1292 /* Walk past the arg-pointer and structure value address. */
1293 size = GET_MODE_SIZE (Pmode);
1294 if (targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0))
1295 size += GET_MODE_SIZE (Pmode);
1297 /* Save each register used in calling a function to the block. */
1298 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1299 if ((mode = apply_args_mode[regno]) != VOIDmode)
1301 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1302 if (size % align != 0)
1303 size = CEIL (size, align) * align;
1305 tem = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1307 emit_move_insn (adjust_address (registers, mode, size), tem);
1308 size += GET_MODE_SIZE (mode);
1311 /* Save the arg pointer to the block. */
1312 tem = copy_to_reg (virtual_incoming_args_rtx);
1313 #ifdef STACK_GROWS_DOWNWARD
1314 /* We need the pointer as the caller actually passed them to us, not
1315 as we might have pretended they were passed. Make sure it's a valid
1316 operand, as emit_move_insn isn't expected to handle a PLUS. */
1318 = force_operand (plus_constant (tem, current_function_pretend_args_size),
1319 NULL_RTX);
1320 #endif
1321 emit_move_insn (adjust_address (registers, Pmode, 0), tem);
1323 size = GET_MODE_SIZE (Pmode);
1325 /* Save the structure value address unless this is passed as an
1326 "invisible" first argument. */
1327 if (struct_incoming_value)
1329 emit_move_insn (adjust_address (registers, Pmode, size),
1330 copy_to_reg (struct_incoming_value));
1331 size += GET_MODE_SIZE (Pmode);
1334 /* Return the address of the block. */
1335 return copy_addr_to_reg (XEXP (registers, 0));
1338 /* __builtin_apply_args returns block of memory allocated on
1339 the stack into which is stored the arg pointer, structure
1340 value address, static chain, and all the registers that might
1341 possibly be used in performing a function call. The code is
1342 moved to the start of the function so the incoming values are
1343 saved. */
1345 static rtx
1346 expand_builtin_apply_args (void)
1348 /* Don't do __builtin_apply_args more than once in a function.
1349 Save the result of the first call and reuse it. */
1350 if (apply_args_value != 0)
1351 return apply_args_value;
1353 /* When this function is called, it means that registers must be
1354 saved on entry to this function. So we migrate the
1355 call to the first insn of this function. */
1356 rtx temp;
1357 rtx seq;
1359 start_sequence ();
1360 temp = expand_builtin_apply_args_1 ();
1361 seq = get_insns ();
1362 end_sequence ();
1364 apply_args_value = temp;
1366 /* Put the insns after the NOTE that starts the function.
1367 If this is inside a start_sequence, make the outer-level insn
1368 chain current, so the code is placed at the start of the
1369 function. */
1370 push_topmost_sequence ();
1371 emit_insn_before (seq, NEXT_INSN (entry_of_function ()));
1372 pop_topmost_sequence ();
1373 return temp;
1377 /* Perform an untyped call and save the state required to perform an
1378 untyped return of whatever value was returned by the given function. */
1380 static rtx
1381 expand_builtin_apply (rtx function, rtx arguments, rtx argsize)
1383 int size, align, regno;
1384 enum machine_mode mode;
1385 rtx incoming_args, result, reg, dest, src, call_insn;
1386 rtx old_stack_level = 0;
1387 rtx call_fusage = 0;
1388 rtx struct_value = targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0);
1390 arguments = convert_memory_address (Pmode, arguments);
1392 /* Create a block where the return registers can be saved. */
1393 result = assign_stack_local (BLKmode, apply_result_size (), -1);
1395 /* Fetch the arg pointer from the ARGUMENTS block. */
1396 incoming_args = gen_reg_rtx (Pmode);
1397 emit_move_insn (incoming_args, gen_rtx_MEM (Pmode, arguments));
1398 #ifndef STACK_GROWS_DOWNWARD
1399 incoming_args = expand_simple_binop (Pmode, MINUS, incoming_args, argsize,
1400 incoming_args, 0, OPTAB_LIB_WIDEN);
1401 #endif
1403 /* Push a new argument block and copy the arguments. Do not allow
1404 the (potential) memcpy call below to interfere with our stack
1405 manipulations. */
1406 do_pending_stack_adjust ();
1407 NO_DEFER_POP;
1409 /* Save the stack with nonlocal if available. */
1410 #ifdef HAVE_save_stack_nonlocal
1411 if (HAVE_save_stack_nonlocal)
1412 emit_stack_save (SAVE_NONLOCAL, &old_stack_level, NULL_RTX);
1413 else
1414 #endif
1415 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
1417 /* Allocate a block of memory onto the stack and copy the memory
1418 arguments to the outgoing arguments address. */
1419 allocate_dynamic_stack_space (argsize, 0, BITS_PER_UNIT);
1420 dest = virtual_outgoing_args_rtx;
1421 #ifndef STACK_GROWS_DOWNWARD
1422 if (GET_CODE (argsize) == CONST_INT)
1423 dest = plus_constant (dest, -INTVAL (argsize));
1424 else
1425 dest = gen_rtx_PLUS (Pmode, dest, negate_rtx (Pmode, argsize));
1426 #endif
1427 dest = gen_rtx_MEM (BLKmode, dest);
1428 set_mem_align (dest, PARM_BOUNDARY);
1429 src = gen_rtx_MEM (BLKmode, incoming_args);
1430 set_mem_align (src, PARM_BOUNDARY);
1431 emit_block_move (dest, src, argsize, BLOCK_OP_NORMAL);
1433 /* Refer to the argument block. */
1434 apply_args_size ();
1435 arguments = gen_rtx_MEM (BLKmode, arguments);
1436 set_mem_align (arguments, PARM_BOUNDARY);
1438 /* Walk past the arg-pointer and structure value address. */
1439 size = GET_MODE_SIZE (Pmode);
1440 if (struct_value)
1441 size += GET_MODE_SIZE (Pmode);
1443 /* Restore each of the registers previously saved. Make USE insns
1444 for each of these registers for use in making the call. */
1445 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1446 if ((mode = apply_args_mode[regno]) != VOIDmode)
1448 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1449 if (size % align != 0)
1450 size = CEIL (size, align) * align;
1451 reg = gen_rtx_REG (mode, regno);
1452 emit_move_insn (reg, adjust_address (arguments, mode, size));
1453 use_reg (&call_fusage, reg);
1454 size += GET_MODE_SIZE (mode);
1457 /* Restore the structure value address unless this is passed as an
1458 "invisible" first argument. */
1459 size = GET_MODE_SIZE (Pmode);
1460 if (struct_value)
1462 rtx value = gen_reg_rtx (Pmode);
1463 emit_move_insn (value, adjust_address (arguments, Pmode, size));
1464 emit_move_insn (struct_value, value);
1465 if (REG_P (struct_value))
1466 use_reg (&call_fusage, struct_value);
1467 size += GET_MODE_SIZE (Pmode);
1470 /* All arguments and registers used for the call are set up by now! */
1471 function = prepare_call_address (function, NULL, &call_fusage, 0, 0);
1473 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1474 and we don't want to load it into a register as an optimization,
1475 because prepare_call_address already did it if it should be done. */
1476 if (GET_CODE (function) != SYMBOL_REF)
1477 function = memory_address (FUNCTION_MODE, function);
1479 /* Generate the actual call instruction and save the return value. */
1480 #ifdef HAVE_untyped_call
1481 if (HAVE_untyped_call)
1482 emit_call_insn (gen_untyped_call (gen_rtx_MEM (FUNCTION_MODE, function),
1483 result, result_vector (1, result)));
1484 else
1485 #endif
1486 #ifdef HAVE_call_value
1487 if (HAVE_call_value)
1489 rtx valreg = 0;
1491 /* Locate the unique return register. It is not possible to
1492 express a call that sets more than one return register using
1493 call_value; use untyped_call for that. In fact, untyped_call
1494 only needs to save the return registers in the given block. */
1495 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1496 if ((mode = apply_result_mode[regno]) != VOIDmode)
1498 gcc_assert (!valreg); /* HAVE_untyped_call required. */
1500 valreg = gen_rtx_REG (mode, regno);
1503 emit_call_insn (GEN_CALL_VALUE (valreg,
1504 gen_rtx_MEM (FUNCTION_MODE, function),
1505 const0_rtx, NULL_RTX, const0_rtx));
1507 emit_move_insn (adjust_address (result, GET_MODE (valreg), 0), valreg);
1509 else
1510 #endif
1511 gcc_unreachable ();
1513 /* Find the CALL insn we just emitted, and attach the register usage
1514 information. */
1515 call_insn = last_call_insn ();
1516 add_function_usage_to (call_insn, call_fusage);
1518 /* Restore the stack. */
1519 #ifdef HAVE_save_stack_nonlocal
1520 if (HAVE_save_stack_nonlocal)
1521 emit_stack_restore (SAVE_NONLOCAL, old_stack_level, NULL_RTX);
1522 else
1523 #endif
1524 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
1526 OK_DEFER_POP;
1528 /* Return the address of the result block. */
1529 result = copy_addr_to_reg (XEXP (result, 0));
1530 return convert_memory_address (ptr_mode, result);
1533 /* Perform an untyped return. */
1535 static void
1536 expand_builtin_return (rtx result)
1538 int size, align, regno;
1539 enum machine_mode mode;
1540 rtx reg;
1541 rtx call_fusage = 0;
1543 result = convert_memory_address (Pmode, result);
1545 apply_result_size ();
1546 result = gen_rtx_MEM (BLKmode, result);
1548 #ifdef HAVE_untyped_return
1549 if (HAVE_untyped_return)
1551 emit_jump_insn (gen_untyped_return (result, result_vector (0, result)));
1552 emit_barrier ();
1553 return;
1555 #endif
1557 /* Restore the return value and note that each value is used. */
1558 size = 0;
1559 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1560 if ((mode = apply_result_mode[regno]) != VOIDmode)
1562 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1563 if (size % align != 0)
1564 size = CEIL (size, align) * align;
1565 reg = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1566 emit_move_insn (reg, adjust_address (result, mode, size));
1568 push_to_sequence (call_fusage);
1569 emit_insn (gen_rtx_USE (VOIDmode, reg));
1570 call_fusage = get_insns ();
1571 end_sequence ();
1572 size += GET_MODE_SIZE (mode);
1575 /* Put the USE insns before the return. */
1576 emit_insn (call_fusage);
1578 /* Return whatever values was restored by jumping directly to the end
1579 of the function. */
1580 expand_naked_return ();
1583 /* Used by expand_builtin_classify_type and fold_builtin_classify_type. */
1585 static enum type_class
1586 type_to_class (tree type)
1588 switch (TREE_CODE (type))
1590 case VOID_TYPE: return void_type_class;
1591 case INTEGER_TYPE: return integer_type_class;
1592 case ENUMERAL_TYPE: return enumeral_type_class;
1593 case BOOLEAN_TYPE: return boolean_type_class;
1594 case POINTER_TYPE: return pointer_type_class;
1595 case REFERENCE_TYPE: return reference_type_class;
1596 case OFFSET_TYPE: return offset_type_class;
1597 case REAL_TYPE: return real_type_class;
1598 case COMPLEX_TYPE: return complex_type_class;
1599 case FUNCTION_TYPE: return function_type_class;
1600 case METHOD_TYPE: return method_type_class;
1601 case RECORD_TYPE: return record_type_class;
1602 case UNION_TYPE:
1603 case QUAL_UNION_TYPE: return union_type_class;
1604 case ARRAY_TYPE: return (TYPE_STRING_FLAG (type)
1605 ? string_type_class : array_type_class);
1606 case LANG_TYPE: return lang_type_class;
1607 default: return no_type_class;
1611 /* Expand a call to __builtin_classify_type with arguments found in
1612 ARGLIST. */
1614 static rtx
1615 expand_builtin_classify_type (tree arglist)
1617 if (arglist != 0)
1618 return GEN_INT (type_to_class (TREE_TYPE (TREE_VALUE (arglist))));
1619 return GEN_INT (no_type_class);
1622 /* This helper macro, meant to be used in mathfn_built_in below,
1623 determines which among a set of three builtin math functions is
1624 appropriate for a given type mode. The `F' and `L' cases are
1625 automatically generated from the `double' case. */
1626 #define CASE_MATHFN(BUILT_IN_MATHFN) \
1627 case BUILT_IN_MATHFN: case BUILT_IN_MATHFN##F: case BUILT_IN_MATHFN##L: \
1628 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1629 fcodel = BUILT_IN_MATHFN##L ; break;
1631 /* Return mathematic function equivalent to FN but operating directly
1632 on TYPE, if available. If we can't do the conversion, return zero. */
1633 tree
1634 mathfn_built_in (tree type, enum built_in_function fn)
1636 enum built_in_function fcode, fcodef, fcodel;
1638 switch (fn)
1640 CASE_MATHFN (BUILT_IN_ACOS)
1641 CASE_MATHFN (BUILT_IN_ACOSH)
1642 CASE_MATHFN (BUILT_IN_ASIN)
1643 CASE_MATHFN (BUILT_IN_ASINH)
1644 CASE_MATHFN (BUILT_IN_ATAN)
1645 CASE_MATHFN (BUILT_IN_ATAN2)
1646 CASE_MATHFN (BUILT_IN_ATANH)
1647 CASE_MATHFN (BUILT_IN_CBRT)
1648 CASE_MATHFN (BUILT_IN_CEIL)
1649 CASE_MATHFN (BUILT_IN_COPYSIGN)
1650 CASE_MATHFN (BUILT_IN_COS)
1651 CASE_MATHFN (BUILT_IN_COSH)
1652 CASE_MATHFN (BUILT_IN_DREM)
1653 CASE_MATHFN (BUILT_IN_ERF)
1654 CASE_MATHFN (BUILT_IN_ERFC)
1655 CASE_MATHFN (BUILT_IN_EXP)
1656 CASE_MATHFN (BUILT_IN_EXP10)
1657 CASE_MATHFN (BUILT_IN_EXP2)
1658 CASE_MATHFN (BUILT_IN_EXPM1)
1659 CASE_MATHFN (BUILT_IN_FABS)
1660 CASE_MATHFN (BUILT_IN_FDIM)
1661 CASE_MATHFN (BUILT_IN_FLOOR)
1662 CASE_MATHFN (BUILT_IN_FMA)
1663 CASE_MATHFN (BUILT_IN_FMAX)
1664 CASE_MATHFN (BUILT_IN_FMIN)
1665 CASE_MATHFN (BUILT_IN_FMOD)
1666 CASE_MATHFN (BUILT_IN_FREXP)
1667 CASE_MATHFN (BUILT_IN_GAMMA)
1668 CASE_MATHFN (BUILT_IN_HUGE_VAL)
1669 CASE_MATHFN (BUILT_IN_HYPOT)
1670 CASE_MATHFN (BUILT_IN_ILOGB)
1671 CASE_MATHFN (BUILT_IN_INF)
1672 CASE_MATHFN (BUILT_IN_J0)
1673 CASE_MATHFN (BUILT_IN_J1)
1674 CASE_MATHFN (BUILT_IN_JN)
1675 CASE_MATHFN (BUILT_IN_LCEIL)
1676 CASE_MATHFN (BUILT_IN_LDEXP)
1677 CASE_MATHFN (BUILT_IN_LFLOOR)
1678 CASE_MATHFN (BUILT_IN_LGAMMA)
1679 CASE_MATHFN (BUILT_IN_LLCEIL)
1680 CASE_MATHFN (BUILT_IN_LLFLOOR)
1681 CASE_MATHFN (BUILT_IN_LLRINT)
1682 CASE_MATHFN (BUILT_IN_LLROUND)
1683 CASE_MATHFN (BUILT_IN_LOG)
1684 CASE_MATHFN (BUILT_IN_LOG10)
1685 CASE_MATHFN (BUILT_IN_LOG1P)
1686 CASE_MATHFN (BUILT_IN_LOG2)
1687 CASE_MATHFN (BUILT_IN_LOGB)
1688 CASE_MATHFN (BUILT_IN_LRINT)
1689 CASE_MATHFN (BUILT_IN_LROUND)
1690 CASE_MATHFN (BUILT_IN_MODF)
1691 CASE_MATHFN (BUILT_IN_NAN)
1692 CASE_MATHFN (BUILT_IN_NANS)
1693 CASE_MATHFN (BUILT_IN_NEARBYINT)
1694 CASE_MATHFN (BUILT_IN_NEXTAFTER)
1695 CASE_MATHFN (BUILT_IN_NEXTTOWARD)
1696 CASE_MATHFN (BUILT_IN_POW)
1697 CASE_MATHFN (BUILT_IN_POWI)
1698 CASE_MATHFN (BUILT_IN_POW10)
1699 CASE_MATHFN (BUILT_IN_REMAINDER)
1700 CASE_MATHFN (BUILT_IN_REMQUO)
1701 CASE_MATHFN (BUILT_IN_RINT)
1702 CASE_MATHFN (BUILT_IN_ROUND)
1703 CASE_MATHFN (BUILT_IN_SCALB)
1704 CASE_MATHFN (BUILT_IN_SCALBLN)
1705 CASE_MATHFN (BUILT_IN_SCALBN)
1706 CASE_MATHFN (BUILT_IN_SIGNIFICAND)
1707 CASE_MATHFN (BUILT_IN_SIN)
1708 CASE_MATHFN (BUILT_IN_SINCOS)
1709 CASE_MATHFN (BUILT_IN_SINH)
1710 CASE_MATHFN (BUILT_IN_SQRT)
1711 CASE_MATHFN (BUILT_IN_TAN)
1712 CASE_MATHFN (BUILT_IN_TANH)
1713 CASE_MATHFN (BUILT_IN_TGAMMA)
1714 CASE_MATHFN (BUILT_IN_TRUNC)
1715 CASE_MATHFN (BUILT_IN_Y0)
1716 CASE_MATHFN (BUILT_IN_Y1)
1717 CASE_MATHFN (BUILT_IN_YN)
1719 default:
1720 return 0;
1723 if (TYPE_MAIN_VARIANT (type) == double_type_node)
1724 return implicit_built_in_decls[fcode];
1725 else if (TYPE_MAIN_VARIANT (type) == float_type_node)
1726 return implicit_built_in_decls[fcodef];
1727 else if (TYPE_MAIN_VARIANT (type) == long_double_type_node)
1728 return implicit_built_in_decls[fcodel];
1729 else
1730 return 0;
1733 /* If errno must be maintained, expand the RTL to check if the result,
1734 TARGET, of a built-in function call, EXP, is NaN, and if so set
1735 errno to EDOM. */
1737 static void
1738 expand_errno_check (tree exp, rtx target)
1740 rtx lab = gen_label_rtx ();
1742 /* Test the result; if it is NaN, set errno=EDOM because
1743 the argument was not in the domain. */
1744 emit_cmp_and_jump_insns (target, target, EQ, 0, GET_MODE (target),
1745 0, lab);
1747 #ifdef TARGET_EDOM
1748 /* If this built-in doesn't throw an exception, set errno directly. */
1749 if (TREE_NOTHROW (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
1751 #ifdef GEN_ERRNO_RTX
1752 rtx errno_rtx = GEN_ERRNO_RTX;
1753 #else
1754 rtx errno_rtx
1755 = gen_rtx_MEM (word_mode, gen_rtx_SYMBOL_REF (Pmode, "errno"));
1756 #endif
1757 emit_move_insn (errno_rtx, GEN_INT (TARGET_EDOM));
1758 emit_label (lab);
1759 return;
1761 #endif
1763 /* We can't set errno=EDOM directly; let the library call do it.
1764 Pop the arguments right away in case the call gets deleted. */
1765 NO_DEFER_POP;
1766 expand_call (exp, target, 0);
1767 OK_DEFER_POP;
1768 emit_label (lab);
1772 /* Expand a call to one of the builtin math functions (sqrt, exp, or log).
1773 Return 0 if a normal call should be emitted rather than expanding the
1774 function in-line. EXP is the expression that is a call to the builtin
1775 function; if convenient, the result should be placed in TARGET.
1776 SUBTARGET may be used as the target for computing one of EXP's operands. */
1778 static rtx
1779 expand_builtin_mathfn (tree exp, rtx target, rtx subtarget)
1781 optab builtin_optab;
1782 rtx op0, insns, before_call;
1783 tree fndecl = get_callee_fndecl (exp);
1784 tree arglist = TREE_OPERAND (exp, 1);
1785 enum machine_mode mode;
1786 bool errno_set = false;
1787 tree arg, narg;
1789 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
1790 return 0;
1792 arg = TREE_VALUE (arglist);
1794 switch (DECL_FUNCTION_CODE (fndecl))
1796 CASE_FLT_FN (BUILT_IN_SQRT):
1797 errno_set = ! tree_expr_nonnegative_p (arg);
1798 builtin_optab = sqrt_optab;
1799 break;
1800 CASE_FLT_FN (BUILT_IN_EXP):
1801 errno_set = true; builtin_optab = exp_optab; break;
1802 CASE_FLT_FN (BUILT_IN_EXP10):
1803 CASE_FLT_FN (BUILT_IN_POW10):
1804 errno_set = true; builtin_optab = exp10_optab; break;
1805 CASE_FLT_FN (BUILT_IN_EXP2):
1806 errno_set = true; builtin_optab = exp2_optab; break;
1807 CASE_FLT_FN (BUILT_IN_EXPM1):
1808 errno_set = true; builtin_optab = expm1_optab; break;
1809 CASE_FLT_FN (BUILT_IN_LOGB):
1810 errno_set = true; builtin_optab = logb_optab; break;
1811 CASE_FLT_FN (BUILT_IN_ILOGB):
1812 errno_set = true; builtin_optab = ilogb_optab; break;
1813 CASE_FLT_FN (BUILT_IN_LOG):
1814 errno_set = true; builtin_optab = log_optab; break;
1815 CASE_FLT_FN (BUILT_IN_LOG10):
1816 errno_set = true; builtin_optab = log10_optab; break;
1817 CASE_FLT_FN (BUILT_IN_LOG2):
1818 errno_set = true; builtin_optab = log2_optab; break;
1819 CASE_FLT_FN (BUILT_IN_LOG1P):
1820 errno_set = true; builtin_optab = log1p_optab; break;
1821 CASE_FLT_FN (BUILT_IN_ASIN):
1822 builtin_optab = asin_optab; break;
1823 CASE_FLT_FN (BUILT_IN_ACOS):
1824 builtin_optab = acos_optab; break;
1825 CASE_FLT_FN (BUILT_IN_TAN):
1826 builtin_optab = tan_optab; break;
1827 CASE_FLT_FN (BUILT_IN_ATAN):
1828 builtin_optab = atan_optab; break;
1829 CASE_FLT_FN (BUILT_IN_FLOOR):
1830 builtin_optab = floor_optab; break;
1831 CASE_FLT_FN (BUILT_IN_CEIL):
1832 builtin_optab = ceil_optab; break;
1833 CASE_FLT_FN (BUILT_IN_TRUNC):
1834 builtin_optab = btrunc_optab; break;
1835 CASE_FLT_FN (BUILT_IN_ROUND):
1836 builtin_optab = round_optab; break;
1837 CASE_FLT_FN (BUILT_IN_NEARBYINT):
1838 builtin_optab = nearbyint_optab;
1839 if (flag_trapping_math)
1840 break;
1841 /* Else fallthrough and expand as rint. */
1842 CASE_FLT_FN (BUILT_IN_RINT):
1843 builtin_optab = rint_optab; break;
1844 default:
1845 gcc_unreachable ();
1848 /* Make a suitable register to place result in. */
1849 mode = TYPE_MODE (TREE_TYPE (exp));
1851 if (! flag_errno_math || ! HONOR_NANS (mode))
1852 errno_set = false;
1854 /* Before working hard, check whether the instruction is available. */
1855 if (builtin_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
1857 target = gen_reg_rtx (mode);
1859 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
1860 need to expand the argument again. This way, we will not perform
1861 side-effects more the once. */
1862 narg = builtin_save_expr (arg);
1863 if (narg != arg)
1865 arg = narg;
1866 arglist = build_tree_list (NULL_TREE, arg);
1867 exp = build_function_call_expr (fndecl, arglist);
1870 op0 = expand_expr (arg, subtarget, VOIDmode, 0);
1872 start_sequence ();
1874 /* Compute into TARGET.
1875 Set TARGET to wherever the result comes back. */
1876 target = expand_unop (mode, builtin_optab, op0, target, 0);
1878 if (target != 0)
1880 if (errno_set)
1881 expand_errno_check (exp, target);
1883 /* Output the entire sequence. */
1884 insns = get_insns ();
1885 end_sequence ();
1886 emit_insn (insns);
1887 return target;
1890 /* If we were unable to expand via the builtin, stop the sequence
1891 (without outputting the insns) and call to the library function
1892 with the stabilized argument list. */
1893 end_sequence ();
1896 before_call = get_last_insn ();
1898 target = expand_call (exp, target, target == const0_rtx);
1900 /* If this is a sqrt operation and we don't care about errno, try to
1901 attach a REG_EQUAL note with a SQRT rtx to the emitted libcall.
1902 This allows the semantics of the libcall to be visible to the RTL
1903 optimizers. */
1904 if (builtin_optab == sqrt_optab && !errno_set)
1906 /* Search backwards through the insns emitted by expand_call looking
1907 for the instruction with the REG_RETVAL note. */
1908 rtx last = get_last_insn ();
1909 while (last != before_call)
1911 if (find_reg_note (last, REG_RETVAL, NULL))
1913 rtx note = find_reg_note (last, REG_EQUAL, NULL);
1914 /* Check that the REQ_EQUAL note is an EXPR_LIST with
1915 two elements, i.e. symbol_ref(sqrt) and the operand. */
1916 if (note
1917 && GET_CODE (note) == EXPR_LIST
1918 && GET_CODE (XEXP (note, 0)) == EXPR_LIST
1919 && XEXP (XEXP (note, 0), 1) != NULL_RTX
1920 && XEXP (XEXP (XEXP (note, 0), 1), 1) == NULL_RTX)
1922 rtx operand = XEXP (XEXP (XEXP (note, 0), 1), 0);
1923 /* Check operand is a register with expected mode. */
1924 if (operand
1925 && REG_P (operand)
1926 && GET_MODE (operand) == mode)
1928 /* Replace the REG_EQUAL note with a SQRT rtx. */
1929 rtx equiv = gen_rtx_SQRT (mode, operand);
1930 set_unique_reg_note (last, REG_EQUAL, equiv);
1933 break;
1935 last = PREV_INSN (last);
1939 return target;
1942 /* Expand a call to the builtin binary math functions (pow and atan2).
1943 Return 0 if a normal call should be emitted rather than expanding the
1944 function in-line. EXP is the expression that is a call to the builtin
1945 function; if convenient, the result should be placed in TARGET.
1946 SUBTARGET may be used as the target for computing one of EXP's
1947 operands. */
1949 static rtx
1950 expand_builtin_mathfn_2 (tree exp, rtx target, rtx subtarget)
1952 optab builtin_optab;
1953 rtx op0, op1, insns;
1954 int op1_type = REAL_TYPE;
1955 tree fndecl = get_callee_fndecl (exp);
1956 tree arglist = TREE_OPERAND (exp, 1);
1957 tree arg0, arg1, temp, narg;
1958 enum machine_mode mode;
1959 bool errno_set = true;
1960 bool stable = true;
1962 if ((DECL_FUNCTION_CODE (fndecl) == BUILT_IN_LDEXP)
1963 || (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_LDEXPF)
1964 || (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_LDEXPL))
1965 op1_type = INTEGER_TYPE;
1967 if (!validate_arglist (arglist, REAL_TYPE, op1_type, VOID_TYPE))
1968 return 0;
1970 arg0 = TREE_VALUE (arglist);
1971 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
1973 switch (DECL_FUNCTION_CODE (fndecl))
1975 CASE_FLT_FN (BUILT_IN_POW):
1976 builtin_optab = pow_optab; break;
1977 CASE_FLT_FN (BUILT_IN_ATAN2):
1978 builtin_optab = atan2_optab; break;
1979 CASE_FLT_FN (BUILT_IN_LDEXP):
1980 builtin_optab = ldexp_optab; break;
1981 CASE_FLT_FN (BUILT_IN_FMOD):
1982 builtin_optab = fmod_optab; break;
1983 CASE_FLT_FN (BUILT_IN_REMAINDER):
1984 CASE_FLT_FN (BUILT_IN_DREM):
1985 builtin_optab = remainder_optab; break;
1986 default:
1987 gcc_unreachable ();
1990 /* Make a suitable register to place result in. */
1991 mode = TYPE_MODE (TREE_TYPE (exp));
1993 /* Before working hard, check whether the instruction is available. */
1994 if (builtin_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
1995 return 0;
1997 target = gen_reg_rtx (mode);
1999 if (! flag_errno_math || ! HONOR_NANS (mode))
2000 errno_set = false;
2002 /* Always stabilize the argument list. */
2003 narg = builtin_save_expr (arg1);
2004 if (narg != arg1)
2006 arg1 = narg;
2007 temp = build_tree_list (NULL_TREE, narg);
2008 stable = false;
2010 else
2011 temp = TREE_CHAIN (arglist);
2013 narg = builtin_save_expr (arg0);
2014 if (narg != arg0)
2016 arg0 = narg;
2017 arglist = tree_cons (NULL_TREE, narg, temp);
2018 stable = false;
2020 else if (! stable)
2021 arglist = tree_cons (NULL_TREE, arg0, temp);
2023 if (! stable)
2024 exp = build_function_call_expr (fndecl, arglist);
2026 op0 = expand_expr (arg0, subtarget, VOIDmode, EXPAND_NORMAL);
2027 op1 = expand_normal (arg1);
2029 start_sequence ();
2031 /* Compute into TARGET.
2032 Set TARGET to wherever the result comes back. */
2033 target = expand_binop (mode, builtin_optab, op0, op1,
2034 target, 0, OPTAB_DIRECT);
2036 /* If we were unable to expand via the builtin, stop the sequence
2037 (without outputting the insns) and call to the library function
2038 with the stabilized argument list. */
2039 if (target == 0)
2041 end_sequence ();
2042 return expand_call (exp, target, target == const0_rtx);
2045 if (errno_set)
2046 expand_errno_check (exp, target);
2048 /* Output the entire sequence. */
2049 insns = get_insns ();
2050 end_sequence ();
2051 emit_insn (insns);
2053 return target;
2056 /* Expand a call to the builtin sin and cos math functions.
2057 Return 0 if a normal call should be emitted rather than expanding the
2058 function in-line. EXP is the expression that is a call to the builtin
2059 function; if convenient, the result should be placed in TARGET.
2060 SUBTARGET may be used as the target for computing one of EXP's
2061 operands. */
2063 static rtx
2064 expand_builtin_mathfn_3 (tree exp, rtx target, rtx subtarget)
2066 optab builtin_optab;
2067 rtx op0, insns;
2068 tree fndecl = get_callee_fndecl (exp);
2069 tree arglist = TREE_OPERAND (exp, 1);
2070 enum machine_mode mode;
2071 tree arg, narg;
2073 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
2074 return 0;
2076 arg = TREE_VALUE (arglist);
2078 switch (DECL_FUNCTION_CODE (fndecl))
2080 CASE_FLT_FN (BUILT_IN_SIN):
2081 CASE_FLT_FN (BUILT_IN_COS):
2082 builtin_optab = sincos_optab; break;
2083 default:
2084 gcc_unreachable ();
2087 /* Make a suitable register to place result in. */
2088 mode = TYPE_MODE (TREE_TYPE (exp));
2090 /* Check if sincos insn is available, otherwise fallback
2091 to sin or cos insn. */
2092 if (builtin_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
2093 switch (DECL_FUNCTION_CODE (fndecl))
2095 CASE_FLT_FN (BUILT_IN_SIN):
2096 builtin_optab = sin_optab; break;
2097 CASE_FLT_FN (BUILT_IN_COS):
2098 builtin_optab = cos_optab; break;
2099 default:
2100 gcc_unreachable ();
2103 /* Before working hard, check whether the instruction is available. */
2104 if (builtin_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
2106 target = gen_reg_rtx (mode);
2108 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2109 need to expand the argument again. This way, we will not perform
2110 side-effects more the once. */
2111 narg = save_expr (arg);
2112 if (narg != arg)
2114 arg = narg;
2115 arglist = build_tree_list (NULL_TREE, arg);
2116 exp = build_function_call_expr (fndecl, arglist);
2119 op0 = expand_expr (arg, subtarget, VOIDmode, 0);
2121 start_sequence ();
2123 /* Compute into TARGET.
2124 Set TARGET to wherever the result comes back. */
2125 if (builtin_optab == sincos_optab)
2127 int result;
2129 switch (DECL_FUNCTION_CODE (fndecl))
2131 CASE_FLT_FN (BUILT_IN_SIN):
2132 result = expand_twoval_unop (builtin_optab, op0, 0, target, 0);
2133 break;
2134 CASE_FLT_FN (BUILT_IN_COS):
2135 result = expand_twoval_unop (builtin_optab, op0, target, 0, 0);
2136 break;
2137 default:
2138 gcc_unreachable ();
2140 gcc_assert (result);
2142 else
2144 target = expand_unop (mode, builtin_optab, op0, target, 0);
2147 if (target != 0)
2149 /* Output the entire sequence. */
2150 insns = get_insns ();
2151 end_sequence ();
2152 emit_insn (insns);
2153 return target;
2156 /* If we were unable to expand via the builtin, stop the sequence
2157 (without outputting the insns) and call to the library function
2158 with the stabilized argument list. */
2159 end_sequence ();
2162 target = expand_call (exp, target, target == const0_rtx);
2164 return target;
2167 /* Expand a call to the builtin sincos math function.
2168 Return 0 if a normal call should be emitted rather than expanding the
2169 function in-line. EXP is the expression that is a call to the builtin
2170 function. */
2172 static rtx
2173 expand_builtin_sincos (tree exp)
2175 rtx op0, op1, op2, target1, target2;
2176 tree arglist = TREE_OPERAND (exp, 1);
2177 enum machine_mode mode;
2178 tree arg, sinp, cosp;
2179 int result;
2181 if (!validate_arglist (arglist, REAL_TYPE,
2182 POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2183 return 0;
2185 arg = TREE_VALUE (arglist);
2186 sinp = TREE_VALUE (TREE_CHAIN (arglist));
2187 cosp = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2189 /* Make a suitable register to place result in. */
2190 mode = TYPE_MODE (TREE_TYPE (arg));
2192 /* Check if sincos insn is available, otherwise emit the call. */
2193 if (sincos_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
2194 return NULL_RTX;
2196 target1 = gen_reg_rtx (mode);
2197 target2 = gen_reg_rtx (mode);
2199 op0 = expand_normal (arg);
2200 op1 = expand_normal (build_fold_indirect_ref (sinp));
2201 op2 = expand_normal (build_fold_indirect_ref (cosp));
2203 /* Compute into target1 and target2.
2204 Set TARGET to wherever the result comes back. */
2205 result = expand_twoval_unop (sincos_optab, op0, target2, target1, 0);
2206 gcc_assert (result);
2208 /* Move target1 and target2 to the memory locations indicated
2209 by op1 and op2. */
2210 emit_move_insn (op1, target1);
2211 emit_move_insn (op2, target2);
2213 return const0_rtx;
2216 /* Expand a call to one of the builtin rounding functions gcc defines
2217 as an extension (lfloor and lceil). As these are gcc extensions we
2218 do not need to worry about setting errno to EDOM.
2219 If expanding via optab fails, lower expression to (int)(floor(x)).
2220 EXP is the expression that is a call to the builtin function;
2221 if convenient, the result should be placed in TARGET. SUBTARGET may
2222 be used as the target for computing one of EXP's operands. */
2224 static rtx
2225 expand_builtin_int_roundingfn (tree exp, rtx target, rtx subtarget)
2227 convert_optab builtin_optab;
2228 rtx op0, insns, tmp;
2229 tree fndecl = get_callee_fndecl (exp);
2230 tree arglist = TREE_OPERAND (exp, 1);
2231 enum built_in_function fallback_fn;
2232 tree fallback_fndecl;
2233 enum machine_mode mode;
2234 tree arg, narg;
2236 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
2237 gcc_unreachable ();
2239 arg = TREE_VALUE (arglist);
2241 switch (DECL_FUNCTION_CODE (fndecl))
2243 CASE_FLT_FN (BUILT_IN_LCEIL):
2244 CASE_FLT_FN (BUILT_IN_LLCEIL):
2245 builtin_optab = lceil_optab;
2246 fallback_fn = BUILT_IN_CEIL;
2247 break;
2249 CASE_FLT_FN (BUILT_IN_LFLOOR):
2250 CASE_FLT_FN (BUILT_IN_LLFLOOR):
2251 builtin_optab = lfloor_optab;
2252 fallback_fn = BUILT_IN_FLOOR;
2253 break;
2255 default:
2256 gcc_unreachable ();
2259 /* Make a suitable register to place result in. */
2260 mode = TYPE_MODE (TREE_TYPE (exp));
2262 target = gen_reg_rtx (mode);
2264 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2265 need to expand the argument again. This way, we will not perform
2266 side-effects more the once. */
2267 narg = builtin_save_expr (arg);
2268 if (narg != arg)
2270 arg = narg;
2271 arglist = build_tree_list (NULL_TREE, arg);
2272 exp = build_function_call_expr (fndecl, arglist);
2275 op0 = expand_expr (arg, subtarget, VOIDmode, 0);
2277 start_sequence ();
2279 /* Compute into TARGET. */
2280 if (expand_sfix_optab (target, op0, builtin_optab))
2282 /* Output the entire sequence. */
2283 insns = get_insns ();
2284 end_sequence ();
2285 emit_insn (insns);
2286 return target;
2289 /* If we were unable to expand via the builtin, stop the sequence
2290 (without outputting the insns). */
2291 end_sequence ();
2293 /* Fall back to floating point rounding optab. */
2294 fallback_fndecl = mathfn_built_in (TREE_TYPE (arg), fallback_fn);
2295 /* We shouldn't get here on targets without TARGET_C99_FUNCTIONS.
2296 ??? Perhaps convert (int)floorf(x) into (int)floor((double)x). */
2297 gcc_assert (fallback_fndecl != NULL_TREE);
2298 exp = build_function_call_expr (fallback_fndecl, arglist);
2300 tmp = expand_normal (exp);
2302 /* Truncate the result of floating point optab to integer
2303 via expand_fix (). */
2304 target = gen_reg_rtx (mode);
2305 expand_fix (target, tmp, 0);
2307 return target;
2310 /* Expand a call to one of the builtin math functions doing integer
2311 conversion (lrint).
2312 Return 0 if a normal call should be emitted rather than expanding the
2313 function in-line. EXP is the expression that is a call to the builtin
2314 function; if convenient, the result should be placed in TARGET.
2315 SUBTARGET may be used as the target for computing one of EXP's operands. */
2317 static rtx
2318 expand_builtin_int_roundingfn_2 (tree exp, rtx target, rtx subtarget)
2320 convert_optab builtin_optab;
2321 rtx op0, insns;
2322 tree fndecl = get_callee_fndecl (exp);
2323 tree arglist = TREE_OPERAND (exp, 1);
2324 enum machine_mode mode;
2325 tree arg, narg;
2327 /* There's no easy way to detect the case we need to set EDOM. */
2328 if (flag_errno_math)
2329 return NULL_RTX;
2331 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
2332 return NULL_RTX;
2334 arg = TREE_VALUE (arglist);
2336 switch (DECL_FUNCTION_CODE (fndecl))
2338 CASE_FLT_FN (BUILT_IN_LRINT):
2339 CASE_FLT_FN (BUILT_IN_LLRINT):
2340 builtin_optab = lrint_optab; break;
2341 CASE_FLT_FN (BUILT_IN_LROUND):
2342 CASE_FLT_FN (BUILT_IN_LLROUND):
2343 builtin_optab = lround_optab; break;
2344 default:
2345 gcc_unreachable ();
2348 /* Make a suitable register to place result in. */
2349 mode = TYPE_MODE (TREE_TYPE (exp));
2351 target = gen_reg_rtx (mode);
2353 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2354 need to expand the argument again. This way, we will not perform
2355 side-effects more the once. */
2356 narg = builtin_save_expr (arg);
2357 if (narg != arg)
2359 arg = narg;
2360 arglist = build_tree_list (NULL_TREE, arg);
2361 exp = build_function_call_expr (fndecl, arglist);
2364 op0 = expand_expr (arg, subtarget, VOIDmode, 0);
2366 start_sequence ();
2368 if (expand_sfix_optab (target, op0, builtin_optab))
2370 /* Output the entire sequence. */
2371 insns = get_insns ();
2372 end_sequence ();
2373 emit_insn (insns);
2374 return target;
2377 /* If we were unable to expand via the builtin, stop the sequence
2378 (without outputting the insns) and call to the library function
2379 with the stabilized argument list. */
2380 end_sequence ();
2382 target = expand_call (exp, target, target == const0_rtx);
2384 return target;
2387 /* To evaluate powi(x,n), the floating point value x raised to the
2388 constant integer exponent n, we use a hybrid algorithm that
2389 combines the "window method" with look-up tables. For an
2390 introduction to exponentiation algorithms and "addition chains",
2391 see section 4.6.3, "Evaluation of Powers" of Donald E. Knuth,
2392 "Seminumerical Algorithms", Vol. 2, "The Art of Computer Programming",
2393 3rd Edition, 1998, and Daniel M. Gordon, "A Survey of Fast Exponentiation
2394 Methods", Journal of Algorithms, Vol. 27, pp. 129-146, 1998. */
2396 /* Provide a default value for POWI_MAX_MULTS, the maximum number of
2397 multiplications to inline before calling the system library's pow
2398 function. powi(x,n) requires at worst 2*bits(n)-2 multiplications,
2399 so this default never requires calling pow, powf or powl. */
2401 #ifndef POWI_MAX_MULTS
2402 #define POWI_MAX_MULTS (2*HOST_BITS_PER_WIDE_INT-2)
2403 #endif
2405 /* The size of the "optimal power tree" lookup table. All
2406 exponents less than this value are simply looked up in the
2407 powi_table below. This threshold is also used to size the
2408 cache of pseudo registers that hold intermediate results. */
2409 #define POWI_TABLE_SIZE 256
2411 /* The size, in bits of the window, used in the "window method"
2412 exponentiation algorithm. This is equivalent to a radix of
2413 (1<<POWI_WINDOW_SIZE) in the corresponding "m-ary method". */
2414 #define POWI_WINDOW_SIZE 3
2416 /* The following table is an efficient representation of an
2417 "optimal power tree". For each value, i, the corresponding
2418 value, j, in the table states than an optimal evaluation
2419 sequence for calculating pow(x,i) can be found by evaluating
2420 pow(x,j)*pow(x,i-j). An optimal power tree for the first
2421 100 integers is given in Knuth's "Seminumerical algorithms". */
2423 static const unsigned char powi_table[POWI_TABLE_SIZE] =
2425 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
2426 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
2427 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
2428 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
2429 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
2430 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
2431 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
2432 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
2433 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
2434 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
2435 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
2436 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
2437 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
2438 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
2439 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
2440 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
2441 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
2442 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
2443 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
2444 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
2445 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
2446 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
2447 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
2448 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
2449 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
2450 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
2451 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
2452 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
2453 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
2454 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
2455 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
2456 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
2460 /* Return the number of multiplications required to calculate
2461 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
2462 subroutine of powi_cost. CACHE is an array indicating
2463 which exponents have already been calculated. */
2465 static int
2466 powi_lookup_cost (unsigned HOST_WIDE_INT n, bool *cache)
2468 /* If we've already calculated this exponent, then this evaluation
2469 doesn't require any additional multiplications. */
2470 if (cache[n])
2471 return 0;
2473 cache[n] = true;
2474 return powi_lookup_cost (n - powi_table[n], cache)
2475 + powi_lookup_cost (powi_table[n], cache) + 1;
2478 /* Return the number of multiplications required to calculate
2479 powi(x,n) for an arbitrary x, given the exponent N. This
2480 function needs to be kept in sync with expand_powi below. */
2482 static int
2483 powi_cost (HOST_WIDE_INT n)
2485 bool cache[POWI_TABLE_SIZE];
2486 unsigned HOST_WIDE_INT digit;
2487 unsigned HOST_WIDE_INT val;
2488 int result;
2490 if (n == 0)
2491 return 0;
2493 /* Ignore the reciprocal when calculating the cost. */
2494 val = (n < 0) ? -n : n;
2496 /* Initialize the exponent cache. */
2497 memset (cache, 0, POWI_TABLE_SIZE * sizeof (bool));
2498 cache[1] = true;
2500 result = 0;
2502 while (val >= POWI_TABLE_SIZE)
2504 if (val & 1)
2506 digit = val & ((1 << POWI_WINDOW_SIZE) - 1);
2507 result += powi_lookup_cost (digit, cache)
2508 + POWI_WINDOW_SIZE + 1;
2509 val >>= POWI_WINDOW_SIZE;
2511 else
2513 val >>= 1;
2514 result++;
2518 return result + powi_lookup_cost (val, cache);
2521 /* Recursive subroutine of expand_powi. This function takes the array,
2522 CACHE, of already calculated exponents and an exponent N and returns
2523 an RTX that corresponds to CACHE[1]**N, as calculated in mode MODE. */
2525 static rtx
2526 expand_powi_1 (enum machine_mode mode, unsigned HOST_WIDE_INT n, rtx *cache)
2528 unsigned HOST_WIDE_INT digit;
2529 rtx target, result;
2530 rtx op0, op1;
2532 if (n < POWI_TABLE_SIZE)
2534 if (cache[n])
2535 return cache[n];
2537 target = gen_reg_rtx (mode);
2538 cache[n] = target;
2540 op0 = expand_powi_1 (mode, n - powi_table[n], cache);
2541 op1 = expand_powi_1 (mode, powi_table[n], cache);
2543 else if (n & 1)
2545 target = gen_reg_rtx (mode);
2546 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
2547 op0 = expand_powi_1 (mode, n - digit, cache);
2548 op1 = expand_powi_1 (mode, digit, cache);
2550 else
2552 target = gen_reg_rtx (mode);
2553 op0 = expand_powi_1 (mode, n >> 1, cache);
2554 op1 = op0;
2557 result = expand_mult (mode, op0, op1, target, 0);
2558 if (result != target)
2559 emit_move_insn (target, result);
2560 return target;
2563 /* Expand the RTL to evaluate powi(x,n) in mode MODE. X is the
2564 floating point operand in mode MODE, and N is the exponent. This
2565 function needs to be kept in sync with powi_cost above. */
2567 static rtx
2568 expand_powi (rtx x, enum machine_mode mode, HOST_WIDE_INT n)
2570 unsigned HOST_WIDE_INT val;
2571 rtx cache[POWI_TABLE_SIZE];
2572 rtx result;
2574 if (n == 0)
2575 return CONST1_RTX (mode);
2577 val = (n < 0) ? -n : n;
2579 memset (cache, 0, sizeof (cache));
2580 cache[1] = x;
2582 result = expand_powi_1 (mode, (n < 0) ? -n : n, cache);
2584 /* If the original exponent was negative, reciprocate the result. */
2585 if (n < 0)
2586 result = expand_binop (mode, sdiv_optab, CONST1_RTX (mode),
2587 result, NULL_RTX, 0, OPTAB_LIB_WIDEN);
2589 return result;
2592 /* Expand a call to the pow built-in mathematical function. Return 0 if
2593 a normal call should be emitted rather than expanding the function
2594 in-line. EXP is the expression that is a call to the builtin
2595 function; if convenient, the result should be placed in TARGET. */
2597 static rtx
2598 expand_builtin_pow (tree exp, rtx target, rtx subtarget)
2600 tree arglist = TREE_OPERAND (exp, 1);
2601 tree arg0, arg1;
2603 if (! validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
2604 return 0;
2606 arg0 = TREE_VALUE (arglist);
2607 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
2609 if (TREE_CODE (arg1) == REAL_CST
2610 && ! TREE_CONSTANT_OVERFLOW (arg1))
2612 REAL_VALUE_TYPE cint;
2613 REAL_VALUE_TYPE c;
2614 HOST_WIDE_INT n;
2616 c = TREE_REAL_CST (arg1);
2617 n = real_to_integer (&c);
2618 real_from_integer (&cint, VOIDmode, n, n < 0 ? -1 : 0, 0);
2619 if (real_identical (&c, &cint))
2621 /* If the exponent is -1, 0, 1 or 2, then expand_powi is exact.
2622 Otherwise, check the number of multiplications required.
2623 Note that pow never sets errno for an integer exponent. */
2624 if ((n >= -1 && n <= 2)
2625 || (flag_unsafe_math_optimizations
2626 && ! optimize_size
2627 && powi_cost (n) <= POWI_MAX_MULTS))
2629 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2630 rtx op = expand_expr (arg0, subtarget, VOIDmode, 0);
2631 op = force_reg (mode, op);
2632 return expand_powi (op, mode, n);
2637 if (! flag_unsafe_math_optimizations)
2638 return NULL_RTX;
2639 return expand_builtin_mathfn_2 (exp, target, subtarget);
2642 /* Expand a call to the powi built-in mathematical function. Return 0 if
2643 a normal call should be emitted rather than expanding the function
2644 in-line. EXP is the expression that is a call to the builtin
2645 function; if convenient, the result should be placed in TARGET. */
2647 static rtx
2648 expand_builtin_powi (tree exp, rtx target, rtx subtarget)
2650 tree arglist = TREE_OPERAND (exp, 1);
2651 tree arg0, arg1;
2652 rtx op0, op1;
2653 enum machine_mode mode;
2654 enum machine_mode mode2;
2656 if (! validate_arglist (arglist, REAL_TYPE, INTEGER_TYPE, VOID_TYPE))
2657 return 0;
2659 arg0 = TREE_VALUE (arglist);
2660 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
2661 mode = TYPE_MODE (TREE_TYPE (exp));
2663 /* Handle constant power. */
2665 if (TREE_CODE (arg1) == INTEGER_CST
2666 && ! TREE_CONSTANT_OVERFLOW (arg1))
2668 HOST_WIDE_INT n = TREE_INT_CST_LOW (arg1);
2670 /* If the exponent is -1, 0, 1 or 2, then expand_powi is exact.
2671 Otherwise, check the number of multiplications required. */
2672 if ((TREE_INT_CST_HIGH (arg1) == 0
2673 || TREE_INT_CST_HIGH (arg1) == -1)
2674 && ((n >= -1 && n <= 2)
2675 || (! optimize_size
2676 && powi_cost (n) <= POWI_MAX_MULTS)))
2678 op0 = expand_expr (arg0, subtarget, VOIDmode, 0);
2679 op0 = force_reg (mode, op0);
2680 return expand_powi (op0, mode, n);
2684 /* Emit a libcall to libgcc. */
2686 /* Mode of the 2nd argument must match that of an int. */
2687 mode2 = mode_for_size (INT_TYPE_SIZE, MODE_INT, 0);
2689 if (target == NULL_RTX)
2690 target = gen_reg_rtx (mode);
2692 op0 = expand_expr (arg0, subtarget, mode, 0);
2693 if (GET_MODE (op0) != mode)
2694 op0 = convert_to_mode (mode, op0, 0);
2695 op1 = expand_expr (arg1, 0, mode2, 0);
2696 if (GET_MODE (op1) != mode2)
2697 op1 = convert_to_mode (mode2, op1, 0);
2699 target = emit_library_call_value (powi_optab->handlers[(int) mode].libfunc,
2700 target, LCT_CONST_MAKE_BLOCK, mode, 2,
2701 op0, mode, op1, mode2);
2703 return target;
2706 /* Expand expression EXP which is a call to the strlen builtin. Return 0
2707 if we failed the caller should emit a normal call, otherwise
2708 try to get the result in TARGET, if convenient. */
2710 static rtx
2711 expand_builtin_strlen (tree arglist, rtx target,
2712 enum machine_mode target_mode)
2714 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
2715 return 0;
2716 else
2718 rtx pat;
2719 tree len, src = TREE_VALUE (arglist);
2720 rtx result, src_reg, char_rtx, before_strlen;
2721 enum machine_mode insn_mode = target_mode, char_mode;
2722 enum insn_code icode = CODE_FOR_nothing;
2723 int align;
2725 /* If the length can be computed at compile-time, return it. */
2726 len = c_strlen (src, 0);
2727 if (len)
2728 return expand_expr (len, target, target_mode, EXPAND_NORMAL);
2730 /* If the length can be computed at compile-time and is constant
2731 integer, but there are side-effects in src, evaluate
2732 src for side-effects, then return len.
2733 E.g. x = strlen (i++ ? "xfoo" + 1 : "bar");
2734 can be optimized into: i++; x = 3; */
2735 len = c_strlen (src, 1);
2736 if (len && TREE_CODE (len) == INTEGER_CST)
2738 expand_expr (src, const0_rtx, VOIDmode, EXPAND_NORMAL);
2739 return expand_expr (len, target, target_mode, EXPAND_NORMAL);
2742 align = get_pointer_alignment (src, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
2744 /* If SRC is not a pointer type, don't do this operation inline. */
2745 if (align == 0)
2746 return 0;
2748 /* Bail out if we can't compute strlen in the right mode. */
2749 while (insn_mode != VOIDmode)
2751 icode = strlen_optab->handlers[(int) insn_mode].insn_code;
2752 if (icode != CODE_FOR_nothing)
2753 break;
2755 insn_mode = GET_MODE_WIDER_MODE (insn_mode);
2757 if (insn_mode == VOIDmode)
2758 return 0;
2760 /* Make a place to write the result of the instruction. */
2761 result = target;
2762 if (! (result != 0
2763 && REG_P (result)
2764 && GET_MODE (result) == insn_mode
2765 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
2766 result = gen_reg_rtx (insn_mode);
2768 /* Make a place to hold the source address. We will not expand
2769 the actual source until we are sure that the expansion will
2770 not fail -- there are trees that cannot be expanded twice. */
2771 src_reg = gen_reg_rtx (Pmode);
2773 /* Mark the beginning of the strlen sequence so we can emit the
2774 source operand later. */
2775 before_strlen = get_last_insn ();
2777 char_rtx = const0_rtx;
2778 char_mode = insn_data[(int) icode].operand[2].mode;
2779 if (! (*insn_data[(int) icode].operand[2].predicate) (char_rtx,
2780 char_mode))
2781 char_rtx = copy_to_mode_reg (char_mode, char_rtx);
2783 pat = GEN_FCN (icode) (result, gen_rtx_MEM (BLKmode, src_reg),
2784 char_rtx, GEN_INT (align));
2785 if (! pat)
2786 return 0;
2787 emit_insn (pat);
2789 /* Now that we are assured of success, expand the source. */
2790 start_sequence ();
2791 pat = expand_expr (src, src_reg, ptr_mode, EXPAND_NORMAL);
2792 if (pat != src_reg)
2793 emit_move_insn (src_reg, pat);
2794 pat = get_insns ();
2795 end_sequence ();
2797 if (before_strlen)
2798 emit_insn_after (pat, before_strlen);
2799 else
2800 emit_insn_before (pat, get_insns ());
2802 /* Return the value in the proper mode for this function. */
2803 if (GET_MODE (result) == target_mode)
2804 target = result;
2805 else if (target != 0)
2806 convert_move (target, result, 0);
2807 else
2808 target = convert_to_mode (target_mode, result, 0);
2810 return target;
2814 /* Expand a call to the strstr builtin. Return 0 if we failed the
2815 caller should emit a normal call, otherwise try to get the result
2816 in TARGET, if convenient (and in mode MODE if that's convenient). */
2818 static rtx
2819 expand_builtin_strstr (tree arglist, tree type, rtx target, enum machine_mode mode)
2821 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2823 tree result = fold_builtin_strstr (arglist, type);
2824 if (result)
2825 return expand_expr (result, target, mode, EXPAND_NORMAL);
2827 return 0;
2830 /* Expand a call to the strchr builtin. Return 0 if we failed the
2831 caller should emit a normal call, otherwise try to get the result
2832 in TARGET, if convenient (and in mode MODE if that's convenient). */
2834 static rtx
2835 expand_builtin_strchr (tree arglist, tree type, rtx target, enum machine_mode mode)
2837 if (validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2839 tree result = fold_builtin_strchr (arglist, type);
2840 if (result)
2841 return expand_expr (result, target, mode, EXPAND_NORMAL);
2843 /* FIXME: Should use strchrM optab so that ports can optimize this. */
2845 return 0;
2848 /* Expand a call to the strrchr builtin. Return 0 if we failed the
2849 caller should emit a normal call, otherwise try to get the result
2850 in TARGET, if convenient (and in mode MODE if that's convenient). */
2852 static rtx
2853 expand_builtin_strrchr (tree arglist, tree type, rtx target, enum machine_mode mode)
2855 if (validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2857 tree result = fold_builtin_strrchr (arglist, type);
2858 if (result)
2859 return expand_expr (result, target, mode, EXPAND_NORMAL);
2861 return 0;
2864 /* Expand a call to the strpbrk builtin. Return 0 if we failed the
2865 caller should emit a normal call, otherwise try to get the result
2866 in TARGET, if convenient (and in mode MODE if that's convenient). */
2868 static rtx
2869 expand_builtin_strpbrk (tree arglist, tree type, rtx target, enum machine_mode mode)
2871 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2873 tree result = fold_builtin_strpbrk (arglist, type);
2874 if (result)
2875 return expand_expr (result, target, mode, EXPAND_NORMAL);
2877 return 0;
2880 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2881 bytes from constant string DATA + OFFSET and return it as target
2882 constant. */
2884 static rtx
2885 builtin_memcpy_read_str (void *data, HOST_WIDE_INT offset,
2886 enum machine_mode mode)
2888 const char *str = (const char *) data;
2890 gcc_assert (offset >= 0
2891 && ((unsigned HOST_WIDE_INT) offset + GET_MODE_SIZE (mode)
2892 <= strlen (str) + 1));
2894 return c_readstr (str + offset, mode);
2897 /* Expand a call to the memcpy builtin, with arguments in ARGLIST.
2898 Return 0 if we failed, the caller should emit a normal call,
2899 otherwise try to get the result in TARGET, if convenient (and in
2900 mode MODE if that's convenient). */
2901 static rtx
2902 expand_builtin_memcpy (tree exp, rtx target, enum machine_mode mode)
2904 tree fndecl = get_callee_fndecl (exp);
2905 tree arglist = TREE_OPERAND (exp, 1);
2906 if (!validate_arglist (arglist,
2907 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2908 return 0;
2909 else
2911 tree dest = TREE_VALUE (arglist);
2912 tree src = TREE_VALUE (TREE_CHAIN (arglist));
2913 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2914 const char *src_str;
2915 unsigned int src_align = get_pointer_alignment (src, BIGGEST_ALIGNMENT);
2916 unsigned int dest_align
2917 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
2918 rtx dest_mem, src_mem, dest_addr, len_rtx;
2919 tree result = fold_builtin_memory_op (arglist, TREE_TYPE (TREE_TYPE (fndecl)),
2920 false, /*endp=*/0);
2922 if (result)
2924 while (TREE_CODE (result) == COMPOUND_EXPR)
2926 expand_expr (TREE_OPERAND (result, 0), const0_rtx, VOIDmode,
2927 EXPAND_NORMAL);
2928 result = TREE_OPERAND (result, 1);
2930 return expand_expr (result, target, mode, EXPAND_NORMAL);
2933 /* If DEST is not a pointer type, call the normal function. */
2934 if (dest_align == 0)
2935 return 0;
2937 /* If either SRC is not a pointer type, don't do this
2938 operation in-line. */
2939 if (src_align == 0)
2940 return 0;
2942 dest_mem = get_memory_rtx (dest, len);
2943 set_mem_align (dest_mem, dest_align);
2944 len_rtx = expand_normal (len);
2945 src_str = c_getstr (src);
2947 /* If SRC is a string constant and block move would be done
2948 by pieces, we can avoid loading the string from memory
2949 and only stored the computed constants. */
2950 if (src_str
2951 && GET_CODE (len_rtx) == CONST_INT
2952 && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <= strlen (src_str) + 1
2953 && can_store_by_pieces (INTVAL (len_rtx), builtin_memcpy_read_str,
2954 (void *) src_str, dest_align))
2956 dest_mem = store_by_pieces (dest_mem, INTVAL (len_rtx),
2957 builtin_memcpy_read_str,
2958 (void *) src_str, dest_align, 0);
2959 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
2960 dest_mem = convert_memory_address (ptr_mode, dest_mem);
2961 return dest_mem;
2964 src_mem = get_memory_rtx (src, len);
2965 set_mem_align (src_mem, src_align);
2967 /* Copy word part most expediently. */
2968 dest_addr = emit_block_move (dest_mem, src_mem, len_rtx,
2969 CALL_EXPR_TAILCALL (exp)
2970 ? BLOCK_OP_TAILCALL : BLOCK_OP_NORMAL);
2972 if (dest_addr == 0)
2974 dest_addr = force_operand (XEXP (dest_mem, 0), NULL_RTX);
2975 dest_addr = convert_memory_address (ptr_mode, dest_addr);
2977 return dest_addr;
2981 /* Expand a call to the mempcpy builtin, with arguments in ARGLIST.
2982 Return 0 if we failed; the caller should emit a normal call,
2983 otherwise try to get the result in TARGET, if convenient (and in
2984 mode MODE if that's convenient). If ENDP is 0 return the
2985 destination pointer, if ENDP is 1 return the end pointer ala
2986 mempcpy, and if ENDP is 2 return the end pointer minus one ala
2987 stpcpy. */
2989 static rtx
2990 expand_builtin_mempcpy (tree arglist, tree type, rtx target, enum machine_mode mode,
2991 int endp)
2993 if (!validate_arglist (arglist,
2994 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2995 return 0;
2996 /* If return value is ignored, transform mempcpy into memcpy. */
2997 else if (target == const0_rtx)
2999 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
3001 if (!fn)
3002 return 0;
3004 return expand_expr (build_function_call_expr (fn, arglist),
3005 target, mode, EXPAND_NORMAL);
3007 else
3009 tree dest = TREE_VALUE (arglist);
3010 tree src = TREE_VALUE (TREE_CHAIN (arglist));
3011 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3012 const char *src_str;
3013 unsigned int src_align = get_pointer_alignment (src, BIGGEST_ALIGNMENT);
3014 unsigned int dest_align
3015 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
3016 rtx dest_mem, src_mem, len_rtx;
3017 tree result = fold_builtin_memory_op (arglist, type, false, endp);
3019 if (result)
3021 while (TREE_CODE (result) == COMPOUND_EXPR)
3023 expand_expr (TREE_OPERAND (result, 0), const0_rtx, VOIDmode,
3024 EXPAND_NORMAL);
3025 result = TREE_OPERAND (result, 1);
3027 return expand_expr (result, target, mode, EXPAND_NORMAL);
3030 /* If either SRC or DEST is not a pointer type, don't do this
3031 operation in-line. */
3032 if (dest_align == 0 || src_align == 0)
3033 return 0;
3035 /* If LEN is not constant, call the normal function. */
3036 if (! host_integerp (len, 1))
3037 return 0;
3039 len_rtx = expand_normal (len);
3040 src_str = c_getstr (src);
3042 /* If SRC is a string constant and block move would be done
3043 by pieces, we can avoid loading the string from memory
3044 and only stored the computed constants. */
3045 if (src_str
3046 && GET_CODE (len_rtx) == CONST_INT
3047 && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <= strlen (src_str) + 1
3048 && can_store_by_pieces (INTVAL (len_rtx), builtin_memcpy_read_str,
3049 (void *) src_str, dest_align))
3051 dest_mem = get_memory_rtx (dest, len);
3052 set_mem_align (dest_mem, dest_align);
3053 dest_mem = store_by_pieces (dest_mem, INTVAL (len_rtx),
3054 builtin_memcpy_read_str,
3055 (void *) src_str, dest_align, endp);
3056 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3057 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3058 return dest_mem;
3061 if (GET_CODE (len_rtx) == CONST_INT
3062 && can_move_by_pieces (INTVAL (len_rtx),
3063 MIN (dest_align, src_align)))
3065 dest_mem = get_memory_rtx (dest, len);
3066 set_mem_align (dest_mem, dest_align);
3067 src_mem = get_memory_rtx (src, len);
3068 set_mem_align (src_mem, src_align);
3069 dest_mem = move_by_pieces (dest_mem, src_mem, INTVAL (len_rtx),
3070 MIN (dest_align, src_align), endp);
3071 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3072 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3073 return dest_mem;
3076 return 0;
3080 /* Expand expression EXP, which is a call to the memmove builtin. Return 0
3081 if we failed; the caller should emit a normal call. */
3083 static rtx
3084 expand_builtin_memmove (tree arglist, tree type, rtx target,
3085 enum machine_mode mode)
3087 if (!validate_arglist (arglist,
3088 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3089 return 0;
3090 else
3092 tree result = fold_builtin_memory_op (arglist, type, false, /*endp=*/3);
3094 if (result)
3096 while (TREE_CODE (result) == COMPOUND_EXPR)
3098 expand_expr (TREE_OPERAND (result, 0), const0_rtx, VOIDmode,
3099 EXPAND_NORMAL);
3100 result = TREE_OPERAND (result, 1);
3102 return expand_expr (result, target, mode, EXPAND_NORMAL);
3105 /* Otherwise, call the normal function. */
3106 return 0;
3110 /* Expand expression EXP, which is a call to the bcopy builtin. Return 0
3111 if we failed the caller should emit a normal call. */
3113 static rtx
3114 expand_builtin_bcopy (tree exp)
3116 tree arglist = TREE_OPERAND (exp, 1);
3117 tree type = TREE_TYPE (exp);
3118 tree src, dest, size, newarglist;
3120 if (!validate_arglist (arglist,
3121 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3122 return NULL_RTX;
3124 src = TREE_VALUE (arglist);
3125 dest = TREE_VALUE (TREE_CHAIN (arglist));
3126 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3128 /* New argument list transforming bcopy(ptr x, ptr y, int z) to
3129 memmove(ptr y, ptr x, size_t z). This is done this way
3130 so that if it isn't expanded inline, we fallback to
3131 calling bcopy instead of memmove. */
3133 newarglist = build_tree_list (NULL_TREE, fold_convert (sizetype, size));
3134 newarglist = tree_cons (NULL_TREE, src, newarglist);
3135 newarglist = tree_cons (NULL_TREE, dest, newarglist);
3137 return expand_builtin_memmove (newarglist, type, const0_rtx, VOIDmode);
3140 #ifndef HAVE_movstr
3141 # define HAVE_movstr 0
3142 # define CODE_FOR_movstr CODE_FOR_nothing
3143 #endif
3145 /* Expand into a movstr instruction, if one is available. Return 0 if
3146 we failed, the caller should emit a normal call, otherwise try to
3147 get the result in TARGET, if convenient. If ENDP is 0 return the
3148 destination pointer, if ENDP is 1 return the end pointer ala
3149 mempcpy, and if ENDP is 2 return the end pointer minus one ala
3150 stpcpy. */
3152 static rtx
3153 expand_movstr (tree dest, tree src, rtx target, int endp)
3155 rtx end;
3156 rtx dest_mem;
3157 rtx src_mem;
3158 rtx insn;
3159 const struct insn_data * data;
3161 if (!HAVE_movstr)
3162 return 0;
3164 dest_mem = get_memory_rtx (dest, NULL);
3165 src_mem = get_memory_rtx (src, NULL);
3166 if (!endp)
3168 target = force_reg (Pmode, XEXP (dest_mem, 0));
3169 dest_mem = replace_equiv_address (dest_mem, target);
3170 end = gen_reg_rtx (Pmode);
3172 else
3174 if (target == 0 || target == const0_rtx)
3176 end = gen_reg_rtx (Pmode);
3177 if (target == 0)
3178 target = end;
3180 else
3181 end = target;
3184 data = insn_data + CODE_FOR_movstr;
3186 if (data->operand[0].mode != VOIDmode)
3187 end = gen_lowpart (data->operand[0].mode, end);
3189 insn = data->genfun (end, dest_mem, src_mem);
3191 gcc_assert (insn);
3193 emit_insn (insn);
3195 /* movstr is supposed to set end to the address of the NUL
3196 terminator. If the caller requested a mempcpy-like return value,
3197 adjust it. */
3198 if (endp == 1 && target != const0_rtx)
3200 rtx tem = plus_constant (gen_lowpart (GET_MODE (target), end), 1);
3201 emit_move_insn (target, force_operand (tem, NULL_RTX));
3204 return target;
3207 /* Expand expression EXP, which is a call to the strcpy builtin. Return 0
3208 if we failed the caller should emit a normal call, otherwise try to get
3209 the result in TARGET, if convenient (and in mode MODE if that's
3210 convenient). */
3212 static rtx
3213 expand_builtin_strcpy (tree fndecl, tree arglist, rtx target, enum machine_mode mode)
3215 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3217 tree result = fold_builtin_strcpy (fndecl, arglist, 0);
3218 if (result)
3220 while (TREE_CODE (result) == COMPOUND_EXPR)
3222 expand_expr (TREE_OPERAND (result, 0), const0_rtx, VOIDmode,
3223 EXPAND_NORMAL);
3224 result = TREE_OPERAND (result, 1);
3226 return expand_expr (result, target, mode, EXPAND_NORMAL);
3229 return expand_movstr (TREE_VALUE (arglist),
3230 TREE_VALUE (TREE_CHAIN (arglist)),
3231 target, /*endp=*/0);
3233 return 0;
3236 /* Expand a call to the stpcpy builtin, with arguments in ARGLIST.
3237 Return 0 if we failed the caller should emit a normal call,
3238 otherwise try to get the result in TARGET, if convenient (and in
3239 mode MODE if that's convenient). */
3241 static rtx
3242 expand_builtin_stpcpy (tree exp, rtx target, enum machine_mode mode)
3244 tree arglist = TREE_OPERAND (exp, 1);
3245 /* If return value is ignored, transform stpcpy into strcpy. */
3246 if (target == const0_rtx)
3248 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY];
3249 if (!fn)
3250 return 0;
3252 return expand_expr (build_function_call_expr (fn, arglist),
3253 target, mode, EXPAND_NORMAL);
3256 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3257 return 0;
3258 else
3260 tree dst, src, len, lenp1;
3261 tree narglist;
3262 rtx ret;
3264 /* Ensure we get an actual string whose length can be evaluated at
3265 compile-time, not an expression containing a string. This is
3266 because the latter will potentially produce pessimized code
3267 when used to produce the return value. */
3268 src = TREE_VALUE (TREE_CHAIN (arglist));
3269 if (! c_getstr (src) || ! (len = c_strlen (src, 0)))
3270 return expand_movstr (TREE_VALUE (arglist),
3271 TREE_VALUE (TREE_CHAIN (arglist)),
3272 target, /*endp=*/2);
3274 dst = TREE_VALUE (arglist);
3275 lenp1 = size_binop (PLUS_EXPR, len, ssize_int (1));
3276 narglist = build_tree_list (NULL_TREE, lenp1);
3277 narglist = tree_cons (NULL_TREE, src, narglist);
3278 narglist = tree_cons (NULL_TREE, dst, narglist);
3279 ret = expand_builtin_mempcpy (narglist, TREE_TYPE (exp),
3280 target, mode, /*endp=*/2);
3282 if (ret)
3283 return ret;
3285 if (TREE_CODE (len) == INTEGER_CST)
3287 rtx len_rtx = expand_normal (len);
3289 if (GET_CODE (len_rtx) == CONST_INT)
3291 ret = expand_builtin_strcpy (get_callee_fndecl (exp),
3292 arglist, target, mode);
3294 if (ret)
3296 if (! target)
3298 if (mode != VOIDmode)
3299 target = gen_reg_rtx (mode);
3300 else
3301 target = gen_reg_rtx (GET_MODE (ret));
3303 if (GET_MODE (target) != GET_MODE (ret))
3304 ret = gen_lowpart (GET_MODE (target), ret);
3306 ret = plus_constant (ret, INTVAL (len_rtx));
3307 ret = emit_move_insn (target, force_operand (ret, NULL_RTX));
3308 gcc_assert (ret);
3310 return target;
3315 return expand_movstr (TREE_VALUE (arglist),
3316 TREE_VALUE (TREE_CHAIN (arglist)),
3317 target, /*endp=*/2);
3321 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
3322 bytes from constant string DATA + OFFSET and return it as target
3323 constant. */
3325 static rtx
3326 builtin_strncpy_read_str (void *data, HOST_WIDE_INT offset,
3327 enum machine_mode mode)
3329 const char *str = (const char *) data;
3331 if ((unsigned HOST_WIDE_INT) offset > strlen (str))
3332 return const0_rtx;
3334 return c_readstr (str + offset, mode);
3337 /* Expand expression EXP, which is a call to the strncpy builtin. Return 0
3338 if we failed the caller should emit a normal call. */
3340 static rtx
3341 expand_builtin_strncpy (tree exp, rtx target, enum machine_mode mode)
3343 tree fndecl = get_callee_fndecl (exp);
3344 tree arglist = TREE_OPERAND (exp, 1);
3345 if (validate_arglist (arglist,
3346 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3348 tree slen = c_strlen (TREE_VALUE (TREE_CHAIN (arglist)), 1);
3349 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3350 tree result = fold_builtin_strncpy (fndecl, arglist, slen);
3352 if (result)
3354 while (TREE_CODE (result) == COMPOUND_EXPR)
3356 expand_expr (TREE_OPERAND (result, 0), const0_rtx, VOIDmode,
3357 EXPAND_NORMAL);
3358 result = TREE_OPERAND (result, 1);
3360 return expand_expr (result, target, mode, EXPAND_NORMAL);
3363 /* We must be passed a constant len and src parameter. */
3364 if (!host_integerp (len, 1) || !slen || !host_integerp (slen, 1))
3365 return 0;
3367 slen = size_binop (PLUS_EXPR, slen, ssize_int (1));
3369 /* We're required to pad with trailing zeros if the requested
3370 len is greater than strlen(s2)+1. In that case try to
3371 use store_by_pieces, if it fails, punt. */
3372 if (tree_int_cst_lt (slen, len))
3374 tree dest = TREE_VALUE (arglist);
3375 unsigned int dest_align
3376 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
3377 const char *p = c_getstr (TREE_VALUE (TREE_CHAIN (arglist)));
3378 rtx dest_mem;
3380 if (!p || dest_align == 0 || !host_integerp (len, 1)
3381 || !can_store_by_pieces (tree_low_cst (len, 1),
3382 builtin_strncpy_read_str,
3383 (void *) p, dest_align))
3384 return 0;
3386 dest_mem = get_memory_rtx (dest, len);
3387 store_by_pieces (dest_mem, tree_low_cst (len, 1),
3388 builtin_strncpy_read_str,
3389 (void *) p, dest_align, 0);
3390 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3391 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3392 return dest_mem;
3395 return 0;
3398 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
3399 bytes from constant string DATA + OFFSET and return it as target
3400 constant. */
3402 static rtx
3403 builtin_memset_read_str (void *data, HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
3404 enum machine_mode mode)
3406 const char *c = (const char *) data;
3407 char *p = alloca (GET_MODE_SIZE (mode));
3409 memset (p, *c, GET_MODE_SIZE (mode));
3411 return c_readstr (p, mode);
3414 /* Callback routine for store_by_pieces. Return the RTL of a register
3415 containing GET_MODE_SIZE (MODE) consecutive copies of the unsigned
3416 char value given in the RTL register data. For example, if mode is
3417 4 bytes wide, return the RTL for 0x01010101*data. */
3419 static rtx
3420 builtin_memset_gen_str (void *data, HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
3421 enum machine_mode mode)
3423 rtx target, coeff;
3424 size_t size;
3425 char *p;
3427 size = GET_MODE_SIZE (mode);
3428 if (size == 1)
3429 return (rtx) data;
3431 p = alloca (size);
3432 memset (p, 1, size);
3433 coeff = c_readstr (p, mode);
3435 target = convert_to_mode (mode, (rtx) data, 1);
3436 target = expand_mult (mode, target, coeff, NULL_RTX, 1);
3437 return force_reg (mode, target);
3440 /* Expand expression EXP, which is a call to the memset builtin. Return 0
3441 if we failed the caller should emit a normal call, otherwise try to get
3442 the result in TARGET, if convenient (and in mode MODE if that's
3443 convenient). */
3445 static rtx
3446 expand_builtin_memset (tree arglist, rtx target, enum machine_mode mode,
3447 tree orig_exp)
3449 if (!validate_arglist (arglist,
3450 POINTER_TYPE, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
3451 return 0;
3452 else
3454 tree dest = TREE_VALUE (arglist);
3455 tree val = TREE_VALUE (TREE_CHAIN (arglist));
3456 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3457 tree fndecl, fn;
3458 enum built_in_function fcode;
3459 char c;
3460 unsigned int dest_align;
3461 rtx dest_mem, dest_addr, len_rtx;
3463 dest_align = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
3465 /* If DEST is not a pointer type, don't do this
3466 operation in-line. */
3467 if (dest_align == 0)
3468 return 0;
3470 /* If the LEN parameter is zero, return DEST. */
3471 if (integer_zerop (len))
3473 /* Evaluate and ignore VAL in case it has side-effects. */
3474 expand_expr (val, const0_rtx, VOIDmode, EXPAND_NORMAL);
3475 return expand_expr (dest, target, mode, EXPAND_NORMAL);
3478 /* Stabilize the arguments in case we fail. */
3479 dest = builtin_save_expr (dest);
3480 val = builtin_save_expr (val);
3481 len = builtin_save_expr (len);
3483 len_rtx = expand_normal (len);
3484 dest_mem = get_memory_rtx (dest, len);
3486 if (TREE_CODE (val) != INTEGER_CST)
3488 rtx val_rtx;
3490 val_rtx = expand_normal (val);
3491 val_rtx = convert_to_mode (TYPE_MODE (unsigned_char_type_node),
3492 val_rtx, 0);
3494 /* Assume that we can memset by pieces if we can store the
3495 * the coefficients by pieces (in the required modes).
3496 * We can't pass builtin_memset_gen_str as that emits RTL. */
3497 c = 1;
3498 if (host_integerp (len, 1)
3499 && !(optimize_size && tree_low_cst (len, 1) > 1)
3500 && can_store_by_pieces (tree_low_cst (len, 1),
3501 builtin_memset_read_str, &c, dest_align))
3503 val_rtx = force_reg (TYPE_MODE (unsigned_char_type_node),
3504 val_rtx);
3505 store_by_pieces (dest_mem, tree_low_cst (len, 1),
3506 builtin_memset_gen_str, val_rtx, dest_align, 0);
3508 else if (!set_storage_via_setmem (dest_mem, len_rtx, val_rtx,
3509 dest_align))
3510 goto do_libcall;
3512 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3513 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3514 return dest_mem;
3517 if (target_char_cast (val, &c))
3518 goto do_libcall;
3520 if (c)
3522 if (host_integerp (len, 1)
3523 && !(optimize_size && tree_low_cst (len, 1) > 1)
3524 && can_store_by_pieces (tree_low_cst (len, 1),
3525 builtin_memset_read_str, &c, dest_align))
3526 store_by_pieces (dest_mem, tree_low_cst (len, 1),
3527 builtin_memset_read_str, &c, dest_align, 0);
3528 else if (!set_storage_via_setmem (dest_mem, len_rtx, GEN_INT (c),
3529 dest_align))
3530 goto do_libcall;
3532 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3533 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3534 return dest_mem;
3537 set_mem_align (dest_mem, dest_align);
3538 dest_addr = clear_storage (dest_mem, len_rtx,
3539 CALL_EXPR_TAILCALL (orig_exp)
3540 ? BLOCK_OP_TAILCALL : BLOCK_OP_NORMAL);
3542 if (dest_addr == 0)
3544 dest_addr = force_operand (XEXP (dest_mem, 0), NULL_RTX);
3545 dest_addr = convert_memory_address (ptr_mode, dest_addr);
3548 return dest_addr;
3550 do_libcall:
3551 fndecl = get_callee_fndecl (orig_exp);
3552 fcode = DECL_FUNCTION_CODE (fndecl);
3553 gcc_assert (fcode == BUILT_IN_MEMSET || fcode == BUILT_IN_BZERO);
3554 arglist = build_tree_list (NULL_TREE, len);
3555 if (fcode == BUILT_IN_MEMSET)
3556 arglist = tree_cons (NULL_TREE, val, arglist);
3557 arglist = tree_cons (NULL_TREE, dest, arglist);
3558 fn = build_function_call_expr (fndecl, arglist);
3559 if (TREE_CODE (fn) == CALL_EXPR)
3560 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (orig_exp);
3561 return expand_call (fn, target, target == const0_rtx);
3565 /* Expand expression EXP, which is a call to the bzero builtin. Return 0
3566 if we failed the caller should emit a normal call. */
3568 static rtx
3569 expand_builtin_bzero (tree exp)
3571 tree arglist = TREE_OPERAND (exp, 1);
3572 tree dest, size, newarglist;
3574 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3575 return NULL_RTX;
3577 dest = TREE_VALUE (arglist);
3578 size = TREE_VALUE (TREE_CHAIN (arglist));
3580 /* New argument list transforming bzero(ptr x, int y) to
3581 memset(ptr x, int 0, size_t y). This is done this way
3582 so that if it isn't expanded inline, we fallback to
3583 calling bzero instead of memset. */
3585 newarglist = build_tree_list (NULL_TREE, fold_convert (sizetype, size));
3586 newarglist = tree_cons (NULL_TREE, integer_zero_node, newarglist);
3587 newarglist = tree_cons (NULL_TREE, dest, newarglist);
3589 return expand_builtin_memset (newarglist, const0_rtx, VOIDmode, exp);
3592 /* Expand expression EXP, which is a call to the memcmp built-in function.
3593 ARGLIST is the argument list for this call. Return 0 if we failed and the
3594 caller should emit a normal call, otherwise try to get the result in
3595 TARGET, if convenient (and in mode MODE, if that's convenient). */
3597 static rtx
3598 expand_builtin_memcmp (tree exp ATTRIBUTE_UNUSED, tree arglist, rtx target,
3599 enum machine_mode mode)
3601 if (!validate_arglist (arglist,
3602 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3603 return 0;
3604 else
3606 tree result = fold_builtin_memcmp (arglist);
3607 if (result)
3608 return expand_expr (result, target, mode, EXPAND_NORMAL);
3611 #if defined HAVE_cmpmemsi || defined HAVE_cmpstrnsi
3613 tree arg1 = TREE_VALUE (arglist);
3614 tree arg2 = TREE_VALUE (TREE_CHAIN (arglist));
3615 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3616 rtx arg1_rtx, arg2_rtx, arg3_rtx;
3617 rtx result;
3618 rtx insn;
3620 int arg1_align
3621 = get_pointer_alignment (arg1, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3622 int arg2_align
3623 = get_pointer_alignment (arg2, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3624 enum machine_mode insn_mode;
3626 #ifdef HAVE_cmpmemsi
3627 if (HAVE_cmpmemsi)
3628 insn_mode = insn_data[(int) CODE_FOR_cmpmemsi].operand[0].mode;
3629 else
3630 #endif
3631 #ifdef HAVE_cmpstrnsi
3632 if (HAVE_cmpstrnsi)
3633 insn_mode = insn_data[(int) CODE_FOR_cmpstrnsi].operand[0].mode;
3634 else
3635 #endif
3636 return 0;
3638 /* If we don't have POINTER_TYPE, call the function. */
3639 if (arg1_align == 0 || arg2_align == 0)
3640 return 0;
3642 /* Make a place to write the result of the instruction. */
3643 result = target;
3644 if (! (result != 0
3645 && REG_P (result) && GET_MODE (result) == insn_mode
3646 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
3647 result = gen_reg_rtx (insn_mode);
3649 arg1_rtx = get_memory_rtx (arg1, len);
3650 arg2_rtx = get_memory_rtx (arg2, len);
3651 arg3_rtx = expand_normal (len);
3653 /* Set MEM_SIZE as appropriate. */
3654 if (GET_CODE (arg3_rtx) == CONST_INT)
3656 set_mem_size (arg1_rtx, arg3_rtx);
3657 set_mem_size (arg2_rtx, arg3_rtx);
3660 #ifdef HAVE_cmpmemsi
3661 if (HAVE_cmpmemsi)
3662 insn = gen_cmpmemsi (result, arg1_rtx, arg2_rtx, arg3_rtx,
3663 GEN_INT (MIN (arg1_align, arg2_align)));
3664 else
3665 #endif
3666 #ifdef HAVE_cmpstrnsi
3667 if (HAVE_cmpstrnsi)
3668 insn = gen_cmpstrnsi (result, arg1_rtx, arg2_rtx, arg3_rtx,
3669 GEN_INT (MIN (arg1_align, arg2_align)));
3670 else
3671 #endif
3672 gcc_unreachable ();
3674 if (insn)
3675 emit_insn (insn);
3676 else
3677 emit_library_call_value (memcmp_libfunc, result, LCT_PURE_MAKE_BLOCK,
3678 TYPE_MODE (integer_type_node), 3,
3679 XEXP (arg1_rtx, 0), Pmode,
3680 XEXP (arg2_rtx, 0), Pmode,
3681 convert_to_mode (TYPE_MODE (sizetype), arg3_rtx,
3682 TYPE_UNSIGNED (sizetype)),
3683 TYPE_MODE (sizetype));
3685 /* Return the value in the proper mode for this function. */
3686 mode = TYPE_MODE (TREE_TYPE (exp));
3687 if (GET_MODE (result) == mode)
3688 return result;
3689 else if (target != 0)
3691 convert_move (target, result, 0);
3692 return target;
3694 else
3695 return convert_to_mode (mode, result, 0);
3697 #endif
3699 return 0;
3702 /* Expand expression EXP, which is a call to the strcmp builtin. Return 0
3703 if we failed the caller should emit a normal call, otherwise try to get
3704 the result in TARGET, if convenient. */
3706 static rtx
3707 expand_builtin_strcmp (tree exp, rtx target, enum machine_mode mode)
3709 tree arglist = TREE_OPERAND (exp, 1);
3711 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3712 return 0;
3713 else
3715 tree result = fold_builtin_strcmp (arglist);
3716 if (result)
3717 return expand_expr (result, target, mode, EXPAND_NORMAL);
3720 #if defined HAVE_cmpstrsi || defined HAVE_cmpstrnsi
3721 if (cmpstr_optab[SImode] != CODE_FOR_nothing
3722 || cmpstrn_optab[SImode] != CODE_FOR_nothing)
3724 rtx arg1_rtx, arg2_rtx;
3725 rtx result, insn = NULL_RTX;
3726 tree fndecl, fn;
3728 tree arg1 = TREE_VALUE (arglist);
3729 tree arg2 = TREE_VALUE (TREE_CHAIN (arglist));
3730 int arg1_align
3731 = get_pointer_alignment (arg1, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3732 int arg2_align
3733 = get_pointer_alignment (arg2, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3735 /* If we don't have POINTER_TYPE, call the function. */
3736 if (arg1_align == 0 || arg2_align == 0)
3737 return 0;
3739 /* Stabilize the arguments in case gen_cmpstr(n)si fail. */
3740 arg1 = builtin_save_expr (arg1);
3741 arg2 = builtin_save_expr (arg2);
3743 arg1_rtx = get_memory_rtx (arg1, NULL);
3744 arg2_rtx = get_memory_rtx (arg2, NULL);
3746 #ifdef HAVE_cmpstrsi
3747 /* Try to call cmpstrsi. */
3748 if (HAVE_cmpstrsi)
3750 enum machine_mode insn_mode
3751 = insn_data[(int) CODE_FOR_cmpstrsi].operand[0].mode;
3753 /* Make a place to write the result of the instruction. */
3754 result = target;
3755 if (! (result != 0
3756 && REG_P (result) && GET_MODE (result) == insn_mode
3757 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
3758 result = gen_reg_rtx (insn_mode);
3760 insn = gen_cmpstrsi (result, arg1_rtx, arg2_rtx,
3761 GEN_INT (MIN (arg1_align, arg2_align)));
3763 #endif
3764 #ifdef HAVE_cmpstrnsi
3765 /* Try to determine at least one length and call cmpstrnsi. */
3766 if (!insn && HAVE_cmpstrnsi)
3768 tree len;
3769 rtx arg3_rtx;
3771 enum machine_mode insn_mode
3772 = insn_data[(int) CODE_FOR_cmpstrnsi].operand[0].mode;
3773 tree len1 = c_strlen (arg1, 1);
3774 tree len2 = c_strlen (arg2, 1);
3776 if (len1)
3777 len1 = size_binop (PLUS_EXPR, ssize_int (1), len1);
3778 if (len2)
3779 len2 = size_binop (PLUS_EXPR, ssize_int (1), len2);
3781 /* If we don't have a constant length for the first, use the length
3782 of the second, if we know it. We don't require a constant for
3783 this case; some cost analysis could be done if both are available
3784 but neither is constant. For now, assume they're equally cheap,
3785 unless one has side effects. If both strings have constant lengths,
3786 use the smaller. */
3788 if (!len1)
3789 len = len2;
3790 else if (!len2)
3791 len = len1;
3792 else if (TREE_SIDE_EFFECTS (len1))
3793 len = len2;
3794 else if (TREE_SIDE_EFFECTS (len2))
3795 len = len1;
3796 else if (TREE_CODE (len1) != INTEGER_CST)
3797 len = len2;
3798 else if (TREE_CODE (len2) != INTEGER_CST)
3799 len = len1;
3800 else if (tree_int_cst_lt (len1, len2))
3801 len = len1;
3802 else
3803 len = len2;
3805 /* If both arguments have side effects, we cannot optimize. */
3806 if (!len || TREE_SIDE_EFFECTS (len))
3807 goto do_libcall;
3809 arg3_rtx = expand_normal (len);
3811 /* Make a place to write the result of the instruction. */
3812 result = target;
3813 if (! (result != 0
3814 && REG_P (result) && GET_MODE (result) == insn_mode
3815 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
3816 result = gen_reg_rtx (insn_mode);
3818 insn = gen_cmpstrnsi (result, arg1_rtx, arg2_rtx, arg3_rtx,
3819 GEN_INT (MIN (arg1_align, arg2_align)));
3821 #endif
3823 if (insn)
3825 emit_insn (insn);
3827 /* Return the value in the proper mode for this function. */
3828 mode = TYPE_MODE (TREE_TYPE (exp));
3829 if (GET_MODE (result) == mode)
3830 return result;
3831 if (target == 0)
3832 return convert_to_mode (mode, result, 0);
3833 convert_move (target, result, 0);
3834 return target;
3837 /* Expand the library call ourselves using a stabilized argument
3838 list to avoid re-evaluating the function's arguments twice. */
3839 #ifdef HAVE_cmpstrnsi
3840 do_libcall:
3841 #endif
3842 arglist = build_tree_list (NULL_TREE, arg2);
3843 arglist = tree_cons (NULL_TREE, arg1, arglist);
3844 fndecl = get_callee_fndecl (exp);
3845 fn = build_function_call_expr (fndecl, arglist);
3846 if (TREE_CODE (fn) == CALL_EXPR)
3847 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
3848 return expand_call (fn, target, target == const0_rtx);
3850 #endif
3851 return 0;
3854 /* Expand expression EXP, which is a call to the strncmp builtin. Return 0
3855 if we failed the caller should emit a normal call, otherwise try to get
3856 the result in TARGET, if convenient. */
3858 static rtx
3859 expand_builtin_strncmp (tree exp, rtx target, enum machine_mode mode)
3861 tree arglist = TREE_OPERAND (exp, 1);
3863 if (!validate_arglist (arglist,
3864 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3865 return 0;
3866 else
3868 tree result = fold_builtin_strncmp (arglist);
3869 if (result)
3870 return expand_expr (result, target, mode, EXPAND_NORMAL);
3873 /* If c_strlen can determine an expression for one of the string
3874 lengths, and it doesn't have side effects, then emit cmpstrnsi
3875 using length MIN(strlen(string)+1, arg3). */
3876 #ifdef HAVE_cmpstrnsi
3877 if (HAVE_cmpstrnsi)
3879 tree arg1 = TREE_VALUE (arglist);
3880 tree arg2 = TREE_VALUE (TREE_CHAIN (arglist));
3881 tree arg3 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
3882 tree len, len1, len2;
3883 rtx arg1_rtx, arg2_rtx, arg3_rtx;
3884 rtx result, insn;
3885 tree fndecl, fn;
3887 int arg1_align
3888 = get_pointer_alignment (arg1, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3889 int arg2_align
3890 = get_pointer_alignment (arg2, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
3891 enum machine_mode insn_mode
3892 = insn_data[(int) CODE_FOR_cmpstrnsi].operand[0].mode;
3894 len1 = c_strlen (arg1, 1);
3895 len2 = c_strlen (arg2, 1);
3897 if (len1)
3898 len1 = size_binop (PLUS_EXPR, ssize_int (1), len1);
3899 if (len2)
3900 len2 = size_binop (PLUS_EXPR, ssize_int (1), len2);
3902 /* If we don't have a constant length for the first, use the length
3903 of the second, if we know it. We don't require a constant for
3904 this case; some cost analysis could be done if both are available
3905 but neither is constant. For now, assume they're equally cheap,
3906 unless one has side effects. If both strings have constant lengths,
3907 use the smaller. */
3909 if (!len1)
3910 len = len2;
3911 else if (!len2)
3912 len = len1;
3913 else if (TREE_SIDE_EFFECTS (len1))
3914 len = len2;
3915 else if (TREE_SIDE_EFFECTS (len2))
3916 len = len1;
3917 else if (TREE_CODE (len1) != INTEGER_CST)
3918 len = len2;
3919 else if (TREE_CODE (len2) != INTEGER_CST)
3920 len = len1;
3921 else if (tree_int_cst_lt (len1, len2))
3922 len = len1;
3923 else
3924 len = len2;
3926 /* If both arguments have side effects, we cannot optimize. */
3927 if (!len || TREE_SIDE_EFFECTS (len))
3928 return 0;
3930 /* The actual new length parameter is MIN(len,arg3). */
3931 len = fold_build2 (MIN_EXPR, TREE_TYPE (len), len,
3932 fold_convert (TREE_TYPE (len), arg3));
3934 /* If we don't have POINTER_TYPE, call the function. */
3935 if (arg1_align == 0 || arg2_align == 0)
3936 return 0;
3938 /* Make a place to write the result of the instruction. */
3939 result = target;
3940 if (! (result != 0
3941 && REG_P (result) && GET_MODE (result) == insn_mode
3942 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
3943 result = gen_reg_rtx (insn_mode);
3945 /* Stabilize the arguments in case gen_cmpstrnsi fails. */
3946 arg1 = builtin_save_expr (arg1);
3947 arg2 = builtin_save_expr (arg2);
3948 len = builtin_save_expr (len);
3950 arg1_rtx = get_memory_rtx (arg1, len);
3951 arg2_rtx = get_memory_rtx (arg2, len);
3952 arg3_rtx = expand_normal (len);
3953 insn = gen_cmpstrnsi (result, arg1_rtx, arg2_rtx, arg3_rtx,
3954 GEN_INT (MIN (arg1_align, arg2_align)));
3955 if (insn)
3957 emit_insn (insn);
3959 /* Return the value in the proper mode for this function. */
3960 mode = TYPE_MODE (TREE_TYPE (exp));
3961 if (GET_MODE (result) == mode)
3962 return result;
3963 if (target == 0)
3964 return convert_to_mode (mode, result, 0);
3965 convert_move (target, result, 0);
3966 return target;
3969 /* Expand the library call ourselves using a stabilized argument
3970 list to avoid re-evaluating the function's arguments twice. */
3971 arglist = build_tree_list (NULL_TREE, len);
3972 arglist = tree_cons (NULL_TREE, arg2, arglist);
3973 arglist = tree_cons (NULL_TREE, arg1, arglist);
3974 fndecl = get_callee_fndecl (exp);
3975 fn = build_function_call_expr (fndecl, arglist);
3976 if (TREE_CODE (fn) == CALL_EXPR)
3977 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
3978 return expand_call (fn, target, target == const0_rtx);
3980 #endif
3981 return 0;
3984 /* Expand expression EXP, which is a call to the strcat builtin.
3985 Return 0 if we failed the caller should emit a normal call,
3986 otherwise try to get the result in TARGET, if convenient. */
3988 static rtx
3989 expand_builtin_strcat (tree fndecl, tree arglist, rtx target, enum machine_mode mode)
3991 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3992 return 0;
3993 else
3995 tree dst = TREE_VALUE (arglist),
3996 src = TREE_VALUE (TREE_CHAIN (arglist));
3997 const char *p = c_getstr (src);
3999 /* If the string length is zero, return the dst parameter. */
4000 if (p && *p == '\0')
4001 return expand_expr (dst, target, mode, EXPAND_NORMAL);
4003 if (!optimize_size)
4005 /* See if we can store by pieces into (dst + strlen(dst)). */
4006 tree newsrc, newdst,
4007 strlen_fn = implicit_built_in_decls[BUILT_IN_STRLEN];
4008 rtx insns;
4010 /* Stabilize the argument list. */
4011 newsrc = builtin_save_expr (src);
4012 if (newsrc != src)
4013 arglist = build_tree_list (NULL_TREE, newsrc);
4014 else
4015 arglist = TREE_CHAIN (arglist); /* Reusing arglist if safe. */
4017 dst = builtin_save_expr (dst);
4019 start_sequence ();
4021 /* Create strlen (dst). */
4022 newdst =
4023 build_function_call_expr (strlen_fn,
4024 build_tree_list (NULL_TREE, dst));
4025 /* Create (dst + (cast) strlen (dst)). */
4026 newdst = fold_convert (TREE_TYPE (dst), newdst);
4027 newdst = fold_build2 (PLUS_EXPR, TREE_TYPE (dst), dst, newdst);
4029 newdst = builtin_save_expr (newdst);
4030 arglist = tree_cons (NULL_TREE, newdst, arglist);
4032 if (!expand_builtin_strcpy (fndecl, arglist, target, mode))
4034 end_sequence (); /* Stop sequence. */
4035 return 0;
4038 /* Output the entire sequence. */
4039 insns = get_insns ();
4040 end_sequence ();
4041 emit_insn (insns);
4043 return expand_expr (dst, target, mode, EXPAND_NORMAL);
4046 return 0;
4050 /* Expand expression EXP, which is a call to the strncat builtin.
4051 Return 0 if we failed the caller should emit a normal call,
4052 otherwise try to get the result in TARGET, if convenient. */
4054 static rtx
4055 expand_builtin_strncat (tree arglist, rtx target, enum machine_mode mode)
4057 if (validate_arglist (arglist,
4058 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
4060 tree result = fold_builtin_strncat (arglist);
4061 if (result)
4062 return expand_expr (result, target, mode, EXPAND_NORMAL);
4064 return 0;
4067 /* Expand expression EXP, which is a call to the strspn builtin.
4068 Return 0 if we failed the caller should emit a normal call,
4069 otherwise try to get the result in TARGET, if convenient. */
4071 static rtx
4072 expand_builtin_strspn (tree arglist, rtx target, enum machine_mode mode)
4074 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
4076 tree result = fold_builtin_strspn (arglist);
4077 if (result)
4078 return expand_expr (result, target, mode, EXPAND_NORMAL);
4080 return 0;
4083 /* Expand expression EXP, which is a call to the strcspn builtin.
4084 Return 0 if we failed the caller should emit a normal call,
4085 otherwise try to get the result in TARGET, if convenient. */
4087 static rtx
4088 expand_builtin_strcspn (tree arglist, rtx target, enum machine_mode mode)
4090 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
4092 tree result = fold_builtin_strcspn (arglist);
4093 if (result)
4094 return expand_expr (result, target, mode, EXPAND_NORMAL);
4096 return 0;
4099 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
4100 if that's convenient. */
4103 expand_builtin_saveregs (void)
4105 rtx val, seq;
4107 /* Don't do __builtin_saveregs more than once in a function.
4108 Save the result of the first call and reuse it. */
4109 if (saveregs_value != 0)
4110 return saveregs_value;
4112 /* When this function is called, it means that registers must be
4113 saved on entry to this function. So we migrate the call to the
4114 first insn of this function. */
4116 start_sequence ();
4118 /* Do whatever the machine needs done in this case. */
4119 val = targetm.calls.expand_builtin_saveregs ();
4121 seq = get_insns ();
4122 end_sequence ();
4124 saveregs_value = val;
4126 /* Put the insns after the NOTE that starts the function. If this
4127 is inside a start_sequence, make the outer-level insn chain current, so
4128 the code is placed at the start of the function. */
4129 push_topmost_sequence ();
4130 emit_insn_after (seq, entry_of_function ());
4131 pop_topmost_sequence ();
4133 return val;
4136 /* __builtin_args_info (N) returns word N of the arg space info
4137 for the current function. The number and meanings of words
4138 is controlled by the definition of CUMULATIVE_ARGS. */
4140 static rtx
4141 expand_builtin_args_info (tree arglist)
4143 int nwords = sizeof (CUMULATIVE_ARGS) / sizeof (int);
4144 int *word_ptr = (int *) &current_function_args_info;
4146 gcc_assert (sizeof (CUMULATIVE_ARGS) % sizeof (int) == 0);
4148 if (arglist != 0)
4150 if (!host_integerp (TREE_VALUE (arglist), 0))
4151 error ("argument of %<__builtin_args_info%> must be constant");
4152 else
4154 HOST_WIDE_INT wordnum = tree_low_cst (TREE_VALUE (arglist), 0);
4156 if (wordnum < 0 || wordnum >= nwords)
4157 error ("argument of %<__builtin_args_info%> out of range");
4158 else
4159 return GEN_INT (word_ptr[wordnum]);
4162 else
4163 error ("missing argument in %<__builtin_args_info%>");
4165 return const0_rtx;
4168 /* Expand a call to __builtin_next_arg. */
4170 static rtx
4171 expand_builtin_next_arg (void)
4173 /* Checking arguments is already done in fold_builtin_next_arg
4174 that must be called before this function. */
4175 return expand_binop (Pmode, add_optab,
4176 current_function_internal_arg_pointer,
4177 current_function_arg_offset_rtx,
4178 NULL_RTX, 0, OPTAB_LIB_WIDEN);
4181 /* Make it easier for the backends by protecting the valist argument
4182 from multiple evaluations. */
4184 static tree
4185 stabilize_va_list (tree valist, int needs_lvalue)
4187 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
4189 if (TREE_SIDE_EFFECTS (valist))
4190 valist = save_expr (valist);
4192 /* For this case, the backends will be expecting a pointer to
4193 TREE_TYPE (va_list_type_node), but it's possible we've
4194 actually been given an array (an actual va_list_type_node).
4195 So fix it. */
4196 if (TREE_CODE (TREE_TYPE (valist)) == ARRAY_TYPE)
4198 tree p1 = build_pointer_type (TREE_TYPE (va_list_type_node));
4199 valist = build_fold_addr_expr_with_type (valist, p1);
4202 else
4204 tree pt;
4206 if (! needs_lvalue)
4208 if (! TREE_SIDE_EFFECTS (valist))
4209 return valist;
4211 pt = build_pointer_type (va_list_type_node);
4212 valist = fold_build1 (ADDR_EXPR, pt, valist);
4213 TREE_SIDE_EFFECTS (valist) = 1;
4216 if (TREE_SIDE_EFFECTS (valist))
4217 valist = save_expr (valist);
4218 valist = build_fold_indirect_ref (valist);
4221 return valist;
4224 /* The "standard" definition of va_list is void*. */
4226 tree
4227 std_build_builtin_va_list (void)
4229 return ptr_type_node;
4232 /* The "standard" implementation of va_start: just assign `nextarg' to
4233 the variable. */
4235 void
4236 std_expand_builtin_va_start (tree valist, rtx nextarg)
4238 tree t;
4240 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist,
4241 make_tree (ptr_type_node, nextarg));
4242 TREE_SIDE_EFFECTS (t) = 1;
4244 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
4247 /* Expand ARGLIST, from a call to __builtin_va_start. */
4249 static rtx
4250 expand_builtin_va_start (tree arglist)
4252 rtx nextarg;
4253 tree chain, valist;
4255 chain = TREE_CHAIN (arglist);
4257 if (!chain)
4259 error ("too few arguments to function %<va_start%>");
4260 return const0_rtx;
4263 if (fold_builtin_next_arg (chain))
4264 return const0_rtx;
4266 nextarg = expand_builtin_next_arg ();
4267 valist = stabilize_va_list (TREE_VALUE (arglist), 1);
4269 #ifdef EXPAND_BUILTIN_VA_START
4270 EXPAND_BUILTIN_VA_START (valist, nextarg);
4271 #else
4272 std_expand_builtin_va_start (valist, nextarg);
4273 #endif
4275 return const0_rtx;
4278 /* The "standard" implementation of va_arg: read the value from the
4279 current (padded) address and increment by the (padded) size. */
4281 tree
4282 std_gimplify_va_arg_expr (tree valist, tree type, tree *pre_p, tree *post_p)
4284 tree addr, t, type_size, rounded_size, valist_tmp;
4285 unsigned HOST_WIDE_INT align, boundary;
4286 bool indirect;
4288 #ifdef ARGS_GROW_DOWNWARD
4289 /* All of the alignment and movement below is for args-grow-up machines.
4290 As of 2004, there are only 3 ARGS_GROW_DOWNWARD targets, and they all
4291 implement their own specialized gimplify_va_arg_expr routines. */
4292 gcc_unreachable ();
4293 #endif
4295 indirect = pass_by_reference (NULL, TYPE_MODE (type), type, false);
4296 if (indirect)
4297 type = build_pointer_type (type);
4299 align = PARM_BOUNDARY / BITS_PER_UNIT;
4300 boundary = FUNCTION_ARG_BOUNDARY (TYPE_MODE (type), type) / BITS_PER_UNIT;
4302 /* Hoist the valist value into a temporary for the moment. */
4303 valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
4305 /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
4306 requires greater alignment, we must perform dynamic alignment. */
4307 if (boundary > align
4308 && !integer_zerop (TYPE_SIZE (type)))
4310 t = fold_convert (TREE_TYPE (valist), size_int (boundary - 1));
4311 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
4312 build2 (PLUS_EXPR, TREE_TYPE (valist), valist_tmp, t));
4313 gimplify_and_add (t, pre_p);
4315 t = fold_convert (TREE_TYPE (valist), size_int (-boundary));
4316 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
4317 build2 (BIT_AND_EXPR, TREE_TYPE (valist), valist_tmp, t));
4318 gimplify_and_add (t, pre_p);
4320 else
4321 boundary = align;
4323 /* If the actual alignment is less than the alignment of the type,
4324 adjust the type accordingly so that we don't assume strict alignment
4325 when deferencing the pointer. */
4326 boundary *= BITS_PER_UNIT;
4327 if (boundary < TYPE_ALIGN (type))
4329 type = build_variant_type_copy (type);
4330 TYPE_ALIGN (type) = boundary;
4333 /* Compute the rounded size of the type. */
4334 type_size = size_in_bytes (type);
4335 rounded_size = round_up (type_size, align);
4337 /* Reduce rounded_size so it's sharable with the postqueue. */
4338 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
4340 /* Get AP. */
4341 addr = valist_tmp;
4342 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
4344 /* Small args are padded downward. */
4345 t = fold_build2 (GT_EXPR, sizetype, rounded_size, size_int (align));
4346 t = fold_build3 (COND_EXPR, sizetype, t, size_zero_node,
4347 size_binop (MINUS_EXPR, rounded_size, type_size));
4348 t = fold_convert (TREE_TYPE (addr), t);
4349 addr = fold_build2 (PLUS_EXPR, TREE_TYPE (addr), addr, t);
4352 /* Compute new value for AP. */
4353 t = fold_convert (TREE_TYPE (valist), rounded_size);
4354 t = build2 (PLUS_EXPR, TREE_TYPE (valist), valist_tmp, t);
4355 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
4356 gimplify_and_add (t, pre_p);
4358 addr = fold_convert (build_pointer_type (type), addr);
4360 if (indirect)
4361 addr = build_va_arg_indirect_ref (addr);
4363 return build_va_arg_indirect_ref (addr);
4366 /* Build an indirect-ref expression over the given TREE, which represents a
4367 piece of a va_arg() expansion. */
4368 tree
4369 build_va_arg_indirect_ref (tree addr)
4371 addr = build_fold_indirect_ref (addr);
4373 if (flag_mudflap) /* Don't instrument va_arg INDIRECT_REF. */
4374 mf_mark (addr);
4376 return addr;
4379 /* Return a dummy expression of type TYPE in order to keep going after an
4380 error. */
4382 static tree
4383 dummy_object (tree type)
4385 tree t = build_int_cst (build_pointer_type (type), 0);
4386 return build1 (INDIRECT_REF, type, t);
4389 /* Gimplify __builtin_va_arg, aka VA_ARG_EXPR, which is not really a
4390 builtin function, but a very special sort of operator. */
4392 enum gimplify_status
4393 gimplify_va_arg_expr (tree *expr_p, tree *pre_p, tree *post_p)
4395 tree promoted_type, want_va_type, have_va_type;
4396 tree valist = TREE_OPERAND (*expr_p, 0);
4397 tree type = TREE_TYPE (*expr_p);
4398 tree t;
4400 /* Verify that valist is of the proper type. */
4401 want_va_type = va_list_type_node;
4402 have_va_type = TREE_TYPE (valist);
4404 if (have_va_type == error_mark_node)
4405 return GS_ERROR;
4407 if (TREE_CODE (want_va_type) == ARRAY_TYPE)
4409 /* If va_list is an array type, the argument may have decayed
4410 to a pointer type, e.g. by being passed to another function.
4411 In that case, unwrap both types so that we can compare the
4412 underlying records. */
4413 if (TREE_CODE (have_va_type) == ARRAY_TYPE
4414 || POINTER_TYPE_P (have_va_type))
4416 want_va_type = TREE_TYPE (want_va_type);
4417 have_va_type = TREE_TYPE (have_va_type);
4421 if (TYPE_MAIN_VARIANT (want_va_type) != TYPE_MAIN_VARIANT (have_va_type))
4423 error ("first argument to %<va_arg%> not of type %<va_list%>");
4424 return GS_ERROR;
4427 /* Generate a diagnostic for requesting data of a type that cannot
4428 be passed through `...' due to type promotion at the call site. */
4429 else if ((promoted_type = lang_hooks.types.type_promotes_to (type))
4430 != type)
4432 static bool gave_help;
4434 /* Unfortunately, this is merely undefined, rather than a constraint
4435 violation, so we cannot make this an error. If this call is never
4436 executed, the program is still strictly conforming. */
4437 warning (0, "%qT is promoted to %qT when passed through %<...%>",
4438 type, promoted_type);
4439 if (! gave_help)
4441 gave_help = true;
4442 warning (0, "(so you should pass %qT not %qT to %<va_arg%>)",
4443 promoted_type, type);
4446 /* We can, however, treat "undefined" any way we please.
4447 Call abort to encourage the user to fix the program. */
4448 inform ("if this code is reached, the program will abort");
4449 t = build_function_call_expr (implicit_built_in_decls[BUILT_IN_TRAP],
4450 NULL);
4451 append_to_statement_list (t, pre_p);
4453 /* This is dead code, but go ahead and finish so that the
4454 mode of the result comes out right. */
4455 *expr_p = dummy_object (type);
4456 return GS_ALL_DONE;
4458 else
4460 /* Make it easier for the backends by protecting the valist argument
4461 from multiple evaluations. */
4462 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
4464 /* For this case, the backends will be expecting a pointer to
4465 TREE_TYPE (va_list_type_node), but it's possible we've
4466 actually been given an array (an actual va_list_type_node).
4467 So fix it. */
4468 if (TREE_CODE (TREE_TYPE (valist)) == ARRAY_TYPE)
4470 tree p1 = build_pointer_type (TREE_TYPE (va_list_type_node));
4471 valist = build_fold_addr_expr_with_type (valist, p1);
4473 gimplify_expr (&valist, pre_p, post_p, is_gimple_val, fb_rvalue);
4475 else
4476 gimplify_expr (&valist, pre_p, post_p, is_gimple_min_lval, fb_lvalue);
4478 if (!targetm.gimplify_va_arg_expr)
4479 /* FIXME:Once most targets are converted we should merely
4480 assert this is non-null. */
4481 return GS_ALL_DONE;
4483 *expr_p = targetm.gimplify_va_arg_expr (valist, type, pre_p, post_p);
4484 return GS_OK;
4488 /* Expand ARGLIST, from a call to __builtin_va_end. */
4490 static rtx
4491 expand_builtin_va_end (tree arglist)
4493 tree valist = TREE_VALUE (arglist);
4495 /* Evaluate for side effects, if needed. I hate macros that don't
4496 do that. */
4497 if (TREE_SIDE_EFFECTS (valist))
4498 expand_expr (valist, const0_rtx, VOIDmode, EXPAND_NORMAL);
4500 return const0_rtx;
4503 /* Expand ARGLIST, from a call to __builtin_va_copy. We do this as a
4504 builtin rather than just as an assignment in stdarg.h because of the
4505 nastiness of array-type va_list types. */
4507 static rtx
4508 expand_builtin_va_copy (tree arglist)
4510 tree dst, src, t;
4512 dst = TREE_VALUE (arglist);
4513 src = TREE_VALUE (TREE_CHAIN (arglist));
4515 dst = stabilize_va_list (dst, 1);
4516 src = stabilize_va_list (src, 0);
4518 if (TREE_CODE (va_list_type_node) != ARRAY_TYPE)
4520 t = build2 (MODIFY_EXPR, va_list_type_node, dst, src);
4521 TREE_SIDE_EFFECTS (t) = 1;
4522 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
4524 else
4526 rtx dstb, srcb, size;
4528 /* Evaluate to pointers. */
4529 dstb = expand_expr (dst, NULL_RTX, Pmode, EXPAND_NORMAL);
4530 srcb = expand_expr (src, NULL_RTX, Pmode, EXPAND_NORMAL);
4531 size = expand_expr (TYPE_SIZE_UNIT (va_list_type_node), NULL_RTX,
4532 VOIDmode, EXPAND_NORMAL);
4534 dstb = convert_memory_address (Pmode, dstb);
4535 srcb = convert_memory_address (Pmode, srcb);
4537 /* "Dereference" to BLKmode memories. */
4538 dstb = gen_rtx_MEM (BLKmode, dstb);
4539 set_mem_alias_set (dstb, get_alias_set (TREE_TYPE (TREE_TYPE (dst))));
4540 set_mem_align (dstb, TYPE_ALIGN (va_list_type_node));
4541 srcb = gen_rtx_MEM (BLKmode, srcb);
4542 set_mem_alias_set (srcb, get_alias_set (TREE_TYPE (TREE_TYPE (src))));
4543 set_mem_align (srcb, TYPE_ALIGN (va_list_type_node));
4545 /* Copy. */
4546 emit_block_move (dstb, srcb, size, BLOCK_OP_NORMAL);
4549 return const0_rtx;
4552 /* Expand a call to one of the builtin functions __builtin_frame_address or
4553 __builtin_return_address. */
4555 static rtx
4556 expand_builtin_frame_address (tree fndecl, tree arglist)
4558 /* The argument must be a nonnegative integer constant.
4559 It counts the number of frames to scan up the stack.
4560 The value is the return address saved in that frame. */
4561 if (arglist == 0)
4562 /* Warning about missing arg was already issued. */
4563 return const0_rtx;
4564 else if (! host_integerp (TREE_VALUE (arglist), 1))
4566 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
4567 error ("invalid argument to %<__builtin_frame_address%>");
4568 else
4569 error ("invalid argument to %<__builtin_return_address%>");
4570 return const0_rtx;
4572 else
4574 rtx tem
4575 = expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl),
4576 tree_low_cst (TREE_VALUE (arglist), 1));
4578 /* Some ports cannot access arbitrary stack frames. */
4579 if (tem == NULL)
4581 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
4582 warning (0, "unsupported argument to %<__builtin_frame_address%>");
4583 else
4584 warning (0, "unsupported argument to %<__builtin_return_address%>");
4585 return const0_rtx;
4588 /* For __builtin_frame_address, return what we've got. */
4589 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
4590 return tem;
4592 if (!REG_P (tem)
4593 && ! CONSTANT_P (tem))
4594 tem = copy_to_mode_reg (Pmode, tem);
4595 return tem;
4599 /* Expand a call to the alloca builtin, with arguments ARGLIST. Return 0 if
4600 we failed and the caller should emit a normal call, otherwise try to get
4601 the result in TARGET, if convenient. */
4603 static rtx
4604 expand_builtin_alloca (tree arglist, rtx target)
4606 rtx op0;
4607 rtx result;
4609 /* In -fmudflap-instrumented code, alloca() and __builtin_alloca()
4610 should always expand to function calls. These can be intercepted
4611 in libmudflap. */
4612 if (flag_mudflap)
4613 return 0;
4615 if (!validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
4616 return 0;
4618 /* Compute the argument. */
4619 op0 = expand_normal (TREE_VALUE (arglist));
4621 /* Allocate the desired space. */
4622 result = allocate_dynamic_stack_space (op0, target, BITS_PER_UNIT);
4623 result = convert_memory_address (ptr_mode, result);
4625 return result;
4628 /* Expand a call to a unary builtin. The arguments are in ARGLIST.
4629 Return 0 if a normal call should be emitted rather than expanding the
4630 function in-line. If convenient, the result should be placed in TARGET.
4631 SUBTARGET may be used as the target for computing one of EXP's operands. */
4633 static rtx
4634 expand_builtin_unop (enum machine_mode target_mode, tree arglist, rtx target,
4635 rtx subtarget, optab op_optab)
4637 rtx op0;
4638 if (!validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
4639 return 0;
4641 /* Compute the argument. */
4642 op0 = expand_expr (TREE_VALUE (arglist), subtarget, VOIDmode, 0);
4643 /* Compute op, into TARGET if possible.
4644 Set TARGET to wherever the result comes back. */
4645 target = expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist))),
4646 op_optab, op0, target, 1);
4647 gcc_assert (target);
4649 return convert_to_mode (target_mode, target, 0);
4652 /* If the string passed to fputs is a constant and is one character
4653 long, we attempt to transform this call into __builtin_fputc(). */
4655 static rtx
4656 expand_builtin_fputs (tree arglist, rtx target, bool unlocked)
4658 /* Verify the arguments in the original call. */
4659 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
4661 tree result = fold_builtin_fputs (arglist, (target == const0_rtx),
4662 unlocked, NULL_TREE);
4663 if (result)
4664 return expand_expr (result, target, VOIDmode, EXPAND_NORMAL);
4666 return 0;
4669 /* Expand a call to __builtin_expect. We return our argument and emit a
4670 NOTE_INSN_EXPECTED_VALUE note. This is the expansion of __builtin_expect in
4671 a non-jump context. */
4673 static rtx
4674 expand_builtin_expect (tree arglist, rtx target)
4676 tree exp, c;
4677 rtx note, rtx_c;
4679 if (arglist == NULL_TREE
4680 || TREE_CHAIN (arglist) == NULL_TREE)
4681 return const0_rtx;
4682 exp = TREE_VALUE (arglist);
4683 c = TREE_VALUE (TREE_CHAIN (arglist));
4685 if (TREE_CODE (c) != INTEGER_CST)
4687 error ("second argument to %<__builtin_expect%> must be a constant");
4688 c = integer_zero_node;
4691 target = expand_expr (exp, target, VOIDmode, EXPAND_NORMAL);
4693 /* Don't bother with expected value notes for integral constants. */
4694 if (flag_guess_branch_prob && GET_CODE (target) != CONST_INT)
4696 /* We do need to force this into a register so that we can be
4697 moderately sure to be able to correctly interpret the branch
4698 condition later. */
4699 target = force_reg (GET_MODE (target), target);
4701 rtx_c = expand_expr (c, NULL_RTX, GET_MODE (target), EXPAND_NORMAL);
4703 note = emit_note (NOTE_INSN_EXPECTED_VALUE);
4704 NOTE_EXPECTED_VALUE (note) = gen_rtx_EQ (VOIDmode, target, rtx_c);
4707 return target;
4710 /* Like expand_builtin_expect, except do this in a jump context. This is
4711 called from do_jump if the conditional is a __builtin_expect. Return either
4712 a list of insns to emit the jump or NULL if we cannot optimize
4713 __builtin_expect. We need to optimize this at jump time so that machines
4714 like the PowerPC don't turn the test into a SCC operation, and then jump
4715 based on the test being 0/1. */
4718 expand_builtin_expect_jump (tree exp, rtx if_false_label, rtx if_true_label)
4720 tree arglist = TREE_OPERAND (exp, 1);
4721 tree arg0 = TREE_VALUE (arglist);
4722 tree arg1 = TREE_VALUE (TREE_CHAIN (arglist));
4723 rtx ret = NULL_RTX;
4725 /* Only handle __builtin_expect (test, 0) and
4726 __builtin_expect (test, 1). */
4727 if (TREE_CODE (TREE_TYPE (arg1)) == INTEGER_TYPE
4728 && (integer_zerop (arg1) || integer_onep (arg1)))
4730 rtx insn, drop_through_label, temp;
4732 /* Expand the jump insns. */
4733 start_sequence ();
4734 do_jump (arg0, if_false_label, if_true_label);
4735 ret = get_insns ();
4737 drop_through_label = get_last_insn ();
4738 if (drop_through_label && NOTE_P (drop_through_label))
4739 drop_through_label = prev_nonnote_insn (drop_through_label);
4740 if (drop_through_label && !LABEL_P (drop_through_label))
4741 drop_through_label = NULL_RTX;
4742 end_sequence ();
4744 if (! if_true_label)
4745 if_true_label = drop_through_label;
4746 if (! if_false_label)
4747 if_false_label = drop_through_label;
4749 /* Go through and add the expect's to each of the conditional jumps. */
4750 insn = ret;
4751 while (insn != NULL_RTX)
4753 rtx next = NEXT_INSN (insn);
4755 if (JUMP_P (insn) && any_condjump_p (insn))
4757 rtx ifelse = SET_SRC (pc_set (insn));
4758 rtx then_dest = XEXP (ifelse, 1);
4759 rtx else_dest = XEXP (ifelse, 2);
4760 int taken = -1;
4762 /* First check if we recognize any of the labels. */
4763 if (GET_CODE (then_dest) == LABEL_REF
4764 && XEXP (then_dest, 0) == if_true_label)
4765 taken = 1;
4766 else if (GET_CODE (then_dest) == LABEL_REF
4767 && XEXP (then_dest, 0) == if_false_label)
4768 taken = 0;
4769 else if (GET_CODE (else_dest) == LABEL_REF
4770 && XEXP (else_dest, 0) == if_false_label)
4771 taken = 1;
4772 else if (GET_CODE (else_dest) == LABEL_REF
4773 && XEXP (else_dest, 0) == if_true_label)
4774 taken = 0;
4775 /* Otherwise check where we drop through. */
4776 else if (else_dest == pc_rtx)
4778 if (next && NOTE_P (next))
4779 next = next_nonnote_insn (next);
4781 if (next && JUMP_P (next)
4782 && any_uncondjump_p (next))
4783 temp = XEXP (SET_SRC (pc_set (next)), 0);
4784 else
4785 temp = next;
4787 /* TEMP is either a CODE_LABEL, NULL_RTX or something
4788 else that can't possibly match either target label. */
4789 if (temp == if_false_label)
4790 taken = 1;
4791 else if (temp == if_true_label)
4792 taken = 0;
4794 else if (then_dest == pc_rtx)
4796 if (next && NOTE_P (next))
4797 next = next_nonnote_insn (next);
4799 if (next && JUMP_P (next)
4800 && any_uncondjump_p (next))
4801 temp = XEXP (SET_SRC (pc_set (next)), 0);
4802 else
4803 temp = next;
4805 if (temp == if_false_label)
4806 taken = 0;
4807 else if (temp == if_true_label)
4808 taken = 1;
4811 if (taken != -1)
4813 /* If the test is expected to fail, reverse the
4814 probabilities. */
4815 if (integer_zerop (arg1))
4816 taken = 1 - taken;
4817 predict_insn_def (insn, PRED_BUILTIN_EXPECT, taken);
4821 insn = next;
4825 return ret;
4828 void
4829 expand_builtin_trap (void)
4831 #ifdef HAVE_trap
4832 if (HAVE_trap)
4833 emit_insn (gen_trap ());
4834 else
4835 #endif
4836 emit_library_call (abort_libfunc, LCT_NORETURN, VOIDmode, 0);
4837 emit_barrier ();
4840 /* Expand a call to fabs, fabsf or fabsl with arguments ARGLIST.
4841 Return 0 if a normal call should be emitted rather than expanding
4842 the function inline. If convenient, the result should be placed
4843 in TARGET. SUBTARGET may be used as the target for computing
4844 the operand. */
4846 static rtx
4847 expand_builtin_fabs (tree arglist, rtx target, rtx subtarget)
4849 enum machine_mode mode;
4850 tree arg;
4851 rtx op0;
4853 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
4854 return 0;
4856 arg = TREE_VALUE (arglist);
4857 mode = TYPE_MODE (TREE_TYPE (arg));
4858 op0 = expand_expr (arg, subtarget, VOIDmode, 0);
4859 return expand_abs (mode, op0, target, 0, safe_from_p (target, arg, 1));
4862 /* Expand a call to copysign, copysignf, or copysignl with arguments ARGLIST.
4863 Return NULL is a normal call should be emitted rather than expanding the
4864 function inline. If convenient, the result should be placed in TARGET.
4865 SUBTARGET may be used as the target for computing the operand. */
4867 static rtx
4868 expand_builtin_copysign (tree arglist, rtx target, rtx subtarget)
4870 rtx op0, op1;
4871 tree arg;
4873 if (!validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
4874 return 0;
4876 arg = TREE_VALUE (arglist);
4877 op0 = expand_expr (arg, subtarget, VOIDmode, EXPAND_NORMAL);
4879 arg = TREE_VALUE (TREE_CHAIN (arglist));
4880 op1 = expand_normal (arg);
4882 return expand_copysign (op0, op1, target);
4885 /* Create a new constant string literal and return a char* pointer to it.
4886 The STRING_CST value is the LEN characters at STR. */
4887 tree
4888 build_string_literal (int len, const char *str)
4890 tree t, elem, index, type;
4892 t = build_string (len, str);
4893 elem = build_type_variant (char_type_node, 1, 0);
4894 index = build_index_type (build_int_cst (NULL_TREE, len - 1));
4895 type = build_array_type (elem, index);
4896 TREE_TYPE (t) = type;
4897 TREE_CONSTANT (t) = 1;
4898 TREE_INVARIANT (t) = 1;
4899 TREE_READONLY (t) = 1;
4900 TREE_STATIC (t) = 1;
4902 type = build_pointer_type (type);
4903 t = build1 (ADDR_EXPR, type, t);
4905 type = build_pointer_type (elem);
4906 t = build1 (NOP_EXPR, type, t);
4907 return t;
4910 /* Expand EXP, a call to printf or printf_unlocked.
4911 Return 0 if a normal call should be emitted rather than transforming
4912 the function inline. If convenient, the result should be placed in
4913 TARGET with mode MODE. UNLOCKED indicates this is a printf_unlocked
4914 call. */
4915 static rtx
4916 expand_builtin_printf (tree exp, rtx target, enum machine_mode mode,
4917 bool unlocked)
4919 tree arglist = TREE_OPERAND (exp, 1);
4920 /* If we're using an unlocked function, assume the other unlocked
4921 functions exist explicitly. */
4922 tree const fn_putchar = unlocked ? built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED]
4923 : implicit_built_in_decls[BUILT_IN_PUTCHAR];
4924 tree const fn_puts = unlocked ? built_in_decls[BUILT_IN_PUTS_UNLOCKED]
4925 : implicit_built_in_decls[BUILT_IN_PUTS];
4926 const char *fmt_str;
4927 tree fn, fmt, arg;
4929 /* If the return value is used, don't do the transformation. */
4930 if (target != const0_rtx)
4931 return 0;
4933 /* Verify the required arguments in the original call. */
4934 if (! arglist)
4935 return 0;
4936 fmt = TREE_VALUE (arglist);
4937 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
4938 return 0;
4939 arglist = TREE_CHAIN (arglist);
4941 /* Check whether the format is a literal string constant. */
4942 fmt_str = c_getstr (fmt);
4943 if (fmt_str == NULL)
4944 return 0;
4946 if (!init_target_chars())
4947 return 0;
4949 /* If the format specifier was "%s\n", call __builtin_puts(arg). */
4950 if (strcmp (fmt_str, target_percent_s_newline) == 0)
4952 if (! arglist
4953 || ! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist)))
4954 || TREE_CHAIN (arglist))
4955 return 0;
4956 fn = fn_puts;
4958 /* If the format specifier was "%c", call __builtin_putchar(arg). */
4959 else if (strcmp (fmt_str, target_percent_c) == 0)
4961 if (! arglist
4962 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE
4963 || TREE_CHAIN (arglist))
4964 return 0;
4965 fn = fn_putchar;
4967 else
4969 /* We can't handle anything else with % args or %% ... yet. */
4970 if (strchr (fmt_str, target_percent))
4971 return 0;
4973 if (arglist)
4974 return 0;
4976 /* If the format specifier was "", printf does nothing. */
4977 if (fmt_str[0] == '\0')
4978 return const0_rtx;
4979 /* If the format specifier has length of 1, call putchar. */
4980 if (fmt_str[1] == '\0')
4982 /* Given printf("c"), (where c is any one character,)
4983 convert "c"[0] to an int and pass that to the replacement
4984 function. */
4985 arg = build_int_cst (NULL_TREE, fmt_str[0]);
4986 arglist = build_tree_list (NULL_TREE, arg);
4987 fn = fn_putchar;
4989 else
4991 /* If the format specifier was "string\n", call puts("string"). */
4992 size_t len = strlen (fmt_str);
4993 if ((unsigned char)fmt_str[len - 1] == target_newline)
4995 /* Create a NUL-terminated string that's one char shorter
4996 than the original, stripping off the trailing '\n'. */
4997 char *newstr = alloca (len);
4998 memcpy (newstr, fmt_str, len - 1);
4999 newstr[len - 1] = 0;
5001 arg = build_string_literal (len, newstr);
5002 arglist = build_tree_list (NULL_TREE, arg);
5003 fn = fn_puts;
5005 else
5006 /* We'd like to arrange to call fputs(string,stdout) here,
5007 but we need stdout and don't have a way to get it yet. */
5008 return 0;
5012 if (!fn)
5013 return 0;
5014 fn = build_function_call_expr (fn, arglist);
5015 if (TREE_CODE (fn) == CALL_EXPR)
5016 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
5017 return expand_expr (fn, target, mode, EXPAND_NORMAL);
5020 /* Expand EXP, a call to fprintf or fprintf_unlocked.
5021 Return 0 if a normal call should be emitted rather than transforming
5022 the function inline. If convenient, the result should be placed in
5023 TARGET with mode MODE. UNLOCKED indicates this is a fprintf_unlocked
5024 call. */
5025 static rtx
5026 expand_builtin_fprintf (tree exp, rtx target, enum machine_mode mode,
5027 bool unlocked)
5029 tree arglist = TREE_OPERAND (exp, 1);
5030 /* If we're using an unlocked function, assume the other unlocked
5031 functions exist explicitly. */
5032 tree const fn_fputc = unlocked ? built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
5033 : implicit_built_in_decls[BUILT_IN_FPUTC];
5034 tree const fn_fputs = unlocked ? built_in_decls[BUILT_IN_FPUTS_UNLOCKED]
5035 : implicit_built_in_decls[BUILT_IN_FPUTS];
5036 const char *fmt_str;
5037 tree fn, fmt, fp, arg;
5039 /* If the return value is used, don't do the transformation. */
5040 if (target != const0_rtx)
5041 return 0;
5043 /* Verify the required arguments in the original call. */
5044 if (! arglist)
5045 return 0;
5046 fp = TREE_VALUE (arglist);
5047 if (! POINTER_TYPE_P (TREE_TYPE (fp)))
5048 return 0;
5049 arglist = TREE_CHAIN (arglist);
5050 if (! arglist)
5051 return 0;
5052 fmt = TREE_VALUE (arglist);
5053 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
5054 return 0;
5055 arglist = TREE_CHAIN (arglist);
5057 /* Check whether the format is a literal string constant. */
5058 fmt_str = c_getstr (fmt);
5059 if (fmt_str == NULL)
5060 return 0;
5062 if (!init_target_chars())
5063 return 0;
5065 /* If the format specifier was "%s", call __builtin_fputs(arg,fp). */
5066 if (strcmp (fmt_str, target_percent_s) == 0)
5068 if (! arglist
5069 || ! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist)))
5070 || TREE_CHAIN (arglist))
5071 return 0;
5072 arg = TREE_VALUE (arglist);
5073 arglist = build_tree_list (NULL_TREE, fp);
5074 arglist = tree_cons (NULL_TREE, arg, arglist);
5075 fn = fn_fputs;
5077 /* If the format specifier was "%c", call __builtin_fputc(arg,fp). */
5078 else if (strcmp (fmt_str, target_percent_c) == 0)
5080 if (! arglist
5081 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE
5082 || TREE_CHAIN (arglist))
5083 return 0;
5084 arg = TREE_VALUE (arglist);
5085 arglist = build_tree_list (NULL_TREE, fp);
5086 arglist = tree_cons (NULL_TREE, arg, arglist);
5087 fn = fn_fputc;
5089 else
5091 /* We can't handle anything else with % args or %% ... yet. */
5092 if (strchr (fmt_str, target_percent))
5093 return 0;
5095 if (arglist)
5096 return 0;
5098 /* If the format specifier was "", fprintf does nothing. */
5099 if (fmt_str[0] == '\0')
5101 /* Evaluate and ignore FILE* argument for side-effects. */
5102 expand_expr (fp, const0_rtx, VOIDmode, EXPAND_NORMAL);
5103 return const0_rtx;
5106 /* When "string" doesn't contain %, replace all cases of
5107 fprintf(stream,string) with fputs(string,stream). The fputs
5108 builtin will take care of special cases like length == 1. */
5109 arglist = build_tree_list (NULL_TREE, fp);
5110 arglist = tree_cons (NULL_TREE, fmt, arglist);
5111 fn = fn_fputs;
5114 if (!fn)
5115 return 0;
5116 fn = build_function_call_expr (fn, arglist);
5117 if (TREE_CODE (fn) == CALL_EXPR)
5118 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
5119 return expand_expr (fn, target, mode, EXPAND_NORMAL);
5122 /* Expand a call to sprintf with argument list ARGLIST. Return 0 if
5123 a normal call should be emitted rather than expanding the function
5124 inline. If convenient, the result should be placed in TARGET with
5125 mode MODE. */
5127 static rtx
5128 expand_builtin_sprintf (tree arglist, rtx target, enum machine_mode mode)
5130 tree orig_arglist, dest, fmt;
5131 const char *fmt_str;
5133 orig_arglist = arglist;
5135 /* Verify the required arguments in the original call. */
5136 if (! arglist)
5137 return 0;
5138 dest = TREE_VALUE (arglist);
5139 if (! POINTER_TYPE_P (TREE_TYPE (dest)))
5140 return 0;
5141 arglist = TREE_CHAIN (arglist);
5142 if (! arglist)
5143 return 0;
5144 fmt = TREE_VALUE (arglist);
5145 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
5146 return 0;
5147 arglist = TREE_CHAIN (arglist);
5149 /* Check whether the format is a literal string constant. */
5150 fmt_str = c_getstr (fmt);
5151 if (fmt_str == NULL)
5152 return 0;
5154 if (!init_target_chars())
5155 return 0;
5157 /* If the format doesn't contain % args or %%, use strcpy. */
5158 if (strchr (fmt_str, target_percent) == 0)
5160 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY];
5161 tree exp;
5163 if (arglist || ! fn)
5164 return 0;
5165 expand_expr (build_function_call_expr (fn, orig_arglist),
5166 const0_rtx, VOIDmode, EXPAND_NORMAL);
5167 if (target == const0_rtx)
5168 return const0_rtx;
5169 exp = build_int_cst (NULL_TREE, strlen (fmt_str));
5170 return expand_expr (exp, target, mode, EXPAND_NORMAL);
5172 /* If the format is "%s", use strcpy if the result isn't used. */
5173 else if (strcmp (fmt_str, target_percent_s) == 0)
5175 tree fn, arg, len;
5176 fn = implicit_built_in_decls[BUILT_IN_STRCPY];
5178 if (! fn)
5179 return 0;
5181 if (! arglist || TREE_CHAIN (arglist))
5182 return 0;
5183 arg = TREE_VALUE (arglist);
5184 if (! POINTER_TYPE_P (TREE_TYPE (arg)))
5185 return 0;
5187 if (target != const0_rtx)
5189 len = c_strlen (arg, 1);
5190 if (! len || TREE_CODE (len) != INTEGER_CST)
5191 return 0;
5193 else
5194 len = NULL_TREE;
5196 arglist = build_tree_list (NULL_TREE, arg);
5197 arglist = tree_cons (NULL_TREE, dest, arglist);
5198 expand_expr (build_function_call_expr (fn, arglist),
5199 const0_rtx, VOIDmode, EXPAND_NORMAL);
5201 if (target == const0_rtx)
5202 return const0_rtx;
5203 return expand_expr (len, target, mode, EXPAND_NORMAL);
5206 return 0;
5209 /* Expand a call to either the entry or exit function profiler. */
5211 static rtx
5212 expand_builtin_profile_func (bool exitp)
5214 rtx this, which;
5216 this = DECL_RTL (current_function_decl);
5217 gcc_assert (MEM_P (this));
5218 this = XEXP (this, 0);
5220 if (exitp)
5221 which = profile_function_exit_libfunc;
5222 else
5223 which = profile_function_entry_libfunc;
5225 emit_library_call (which, LCT_NORMAL, VOIDmode, 2, this, Pmode,
5226 expand_builtin_return_addr (BUILT_IN_RETURN_ADDRESS,
5228 Pmode);
5230 return const0_rtx;
5233 /* Given a trampoline address, make sure it satisfies TRAMPOLINE_ALIGNMENT. */
5235 static rtx
5236 round_trampoline_addr (rtx tramp)
5238 rtx temp, addend, mask;
5240 /* If we don't need too much alignment, we'll have been guaranteed
5241 proper alignment by get_trampoline_type. */
5242 if (TRAMPOLINE_ALIGNMENT <= STACK_BOUNDARY)
5243 return tramp;
5245 /* Round address up to desired boundary. */
5246 temp = gen_reg_rtx (Pmode);
5247 addend = GEN_INT (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT - 1);
5248 mask = GEN_INT (-TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
5250 temp = expand_simple_binop (Pmode, PLUS, tramp, addend,
5251 temp, 0, OPTAB_LIB_WIDEN);
5252 tramp = expand_simple_binop (Pmode, AND, temp, mask,
5253 temp, 0, OPTAB_LIB_WIDEN);
5255 return tramp;
5258 static rtx
5259 expand_builtin_init_trampoline (tree arglist)
5261 tree t_tramp, t_func, t_chain;
5262 rtx r_tramp, r_func, r_chain;
5263 #ifdef TRAMPOLINE_TEMPLATE
5264 rtx blktramp;
5265 #endif
5267 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE,
5268 POINTER_TYPE, VOID_TYPE))
5269 return NULL_RTX;
5271 t_tramp = TREE_VALUE (arglist);
5272 arglist = TREE_CHAIN (arglist);
5273 t_func = TREE_VALUE (arglist);
5274 arglist = TREE_CHAIN (arglist);
5275 t_chain = TREE_VALUE (arglist);
5277 r_tramp = expand_normal (t_tramp);
5278 r_func = expand_normal (t_func);
5279 r_chain = expand_normal (t_chain);
5281 /* Generate insns to initialize the trampoline. */
5282 r_tramp = round_trampoline_addr (r_tramp);
5283 #ifdef TRAMPOLINE_TEMPLATE
5284 blktramp = gen_rtx_MEM (BLKmode, r_tramp);
5285 set_mem_align (blktramp, TRAMPOLINE_ALIGNMENT);
5286 emit_block_move (blktramp, assemble_trampoline_template (),
5287 GEN_INT (TRAMPOLINE_SIZE), BLOCK_OP_NORMAL);
5288 #endif
5289 trampolines_created = 1;
5290 INITIALIZE_TRAMPOLINE (r_tramp, r_func, r_chain);
5292 return const0_rtx;
5295 static rtx
5296 expand_builtin_adjust_trampoline (tree arglist)
5298 rtx tramp;
5300 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
5301 return NULL_RTX;
5303 tramp = expand_normal (TREE_VALUE (arglist));
5304 tramp = round_trampoline_addr (tramp);
5305 #ifdef TRAMPOLINE_ADJUST_ADDRESS
5306 TRAMPOLINE_ADJUST_ADDRESS (tramp);
5307 #endif
5309 return tramp;
5312 /* Expand a call to the built-in signbit, signbitf or signbitl function.
5313 Return NULL_RTX if a normal call should be emitted rather than expanding
5314 the function in-line. EXP is the expression that is a call to the builtin
5315 function; if convenient, the result should be placed in TARGET. */
5317 static rtx
5318 expand_builtin_signbit (tree exp, rtx target)
5320 const struct real_format *fmt;
5321 enum machine_mode fmode, imode, rmode;
5322 HOST_WIDE_INT hi, lo;
5323 tree arg, arglist;
5324 int word, bitpos;
5325 rtx temp;
5327 arglist = TREE_OPERAND (exp, 1);
5328 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
5329 return 0;
5331 arg = TREE_VALUE (arglist);
5332 fmode = TYPE_MODE (TREE_TYPE (arg));
5333 rmode = TYPE_MODE (TREE_TYPE (exp));
5334 fmt = REAL_MODE_FORMAT (fmode);
5336 /* For floating point formats without a sign bit, implement signbit
5337 as "ARG < 0.0". */
5338 bitpos = fmt->signbit_ro;
5339 if (bitpos < 0)
5341 /* But we can't do this if the format supports signed zero. */
5342 if (fmt->has_signed_zero && HONOR_SIGNED_ZEROS (fmode))
5343 return 0;
5345 arg = fold_build2 (LT_EXPR, TREE_TYPE (exp), arg,
5346 build_real (TREE_TYPE (arg), dconst0));
5347 return expand_expr (arg, target, VOIDmode, EXPAND_NORMAL);
5350 temp = expand_normal (arg);
5351 if (GET_MODE_SIZE (fmode) <= UNITS_PER_WORD)
5353 imode = int_mode_for_mode (fmode);
5354 if (imode == BLKmode)
5355 return 0;
5356 temp = gen_lowpart (imode, temp);
5358 else
5360 imode = word_mode;
5361 /* Handle targets with different FP word orders. */
5362 if (FLOAT_WORDS_BIG_ENDIAN)
5363 word = (GET_MODE_BITSIZE (fmode) - bitpos) / BITS_PER_WORD;
5364 else
5365 word = bitpos / BITS_PER_WORD;
5366 temp = operand_subword_force (temp, word, fmode);
5367 bitpos = bitpos % BITS_PER_WORD;
5370 /* Force the intermediate word_mode (or narrower) result into a
5371 register. This avoids attempting to create paradoxical SUBREGs
5372 of floating point modes below. */
5373 temp = force_reg (imode, temp);
5375 /* If the bitpos is within the "result mode" lowpart, the operation
5376 can be implement with a single bitwise AND. Otherwise, we need
5377 a right shift and an AND. */
5379 if (bitpos < GET_MODE_BITSIZE (rmode))
5381 if (bitpos < HOST_BITS_PER_WIDE_INT)
5383 hi = 0;
5384 lo = (HOST_WIDE_INT) 1 << bitpos;
5386 else
5388 hi = (HOST_WIDE_INT) 1 << (bitpos - HOST_BITS_PER_WIDE_INT);
5389 lo = 0;
5392 if (imode != rmode)
5393 temp = gen_lowpart (rmode, temp);
5394 temp = expand_binop (rmode, and_optab, temp,
5395 immed_double_const (lo, hi, rmode),
5396 NULL_RTX, 1, OPTAB_LIB_WIDEN);
5398 else
5400 /* Perform a logical right shift to place the signbit in the least
5401 significant bit, then truncate the result to the desired mode
5402 and mask just this bit. */
5403 temp = expand_shift (RSHIFT_EXPR, imode, temp,
5404 build_int_cst (NULL_TREE, bitpos), NULL_RTX, 1);
5405 temp = gen_lowpart (rmode, temp);
5406 temp = expand_binop (rmode, and_optab, temp, const1_rtx,
5407 NULL_RTX, 1, OPTAB_LIB_WIDEN);
5410 return temp;
5413 /* Expand fork or exec calls. TARGET is the desired target of the
5414 call. ARGLIST is the list of arguments of the call. FN is the
5415 identificator of the actual function. IGNORE is nonzero if the
5416 value is to be ignored. */
5418 static rtx
5419 expand_builtin_fork_or_exec (tree fn, tree arglist, rtx target, int ignore)
5421 tree id, decl;
5422 tree call;
5424 /* If we are not profiling, just call the function. */
5425 if (!profile_arc_flag)
5426 return NULL_RTX;
5428 /* Otherwise call the wrapper. This should be equivalent for the rest of
5429 compiler, so the code does not diverge, and the wrapper may run the
5430 code necessary for keeping the profiling sane. */
5432 switch (DECL_FUNCTION_CODE (fn))
5434 case BUILT_IN_FORK:
5435 id = get_identifier ("__gcov_fork");
5436 break;
5438 case BUILT_IN_EXECL:
5439 id = get_identifier ("__gcov_execl");
5440 break;
5442 case BUILT_IN_EXECV:
5443 id = get_identifier ("__gcov_execv");
5444 break;
5446 case BUILT_IN_EXECLP:
5447 id = get_identifier ("__gcov_execlp");
5448 break;
5450 case BUILT_IN_EXECLE:
5451 id = get_identifier ("__gcov_execle");
5452 break;
5454 case BUILT_IN_EXECVP:
5455 id = get_identifier ("__gcov_execvp");
5456 break;
5458 case BUILT_IN_EXECVE:
5459 id = get_identifier ("__gcov_execve");
5460 break;
5462 default:
5463 gcc_unreachable ();
5466 decl = build_decl (FUNCTION_DECL, id, TREE_TYPE (fn));
5467 DECL_EXTERNAL (decl) = 1;
5468 TREE_PUBLIC (decl) = 1;
5469 DECL_ARTIFICIAL (decl) = 1;
5470 TREE_NOTHROW (decl) = 1;
5471 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5472 DECL_VISIBILITY_SPECIFIED (decl) = 1;
5473 call = build_function_call_expr (decl, arglist);
5475 return expand_call (call, target, ignore);
5479 /* Reconstitute a mode for a __sync intrinsic operation. Since the type of
5480 the pointer in these functions is void*, the tree optimizers may remove
5481 casts. The mode computed in expand_builtin isn't reliable either, due
5482 to __sync_bool_compare_and_swap.
5484 FCODE_DIFF should be fcode - base, where base is the FOO_1 code for the
5485 group of builtins. This gives us log2 of the mode size. */
5487 static inline enum machine_mode
5488 get_builtin_sync_mode (int fcode_diff)
5490 /* The size is not negotiable, so ask not to get BLKmode in return
5491 if the target indicates that a smaller size would be better. */
5492 return mode_for_size (BITS_PER_UNIT << fcode_diff, MODE_INT, 0);
5495 /* Expand the memory expression LOC and return the appropriate memory operand
5496 for the builtin_sync operations. */
5498 static rtx
5499 get_builtin_sync_mem (tree loc, enum machine_mode mode)
5501 rtx addr, mem;
5503 addr = expand_expr (loc, NULL, Pmode, EXPAND_SUM);
5505 /* Note that we explicitly do not want any alias information for this
5506 memory, so that we kill all other live memories. Otherwise we don't
5507 satisfy the full barrier semantics of the intrinsic. */
5508 mem = validize_mem (gen_rtx_MEM (mode, addr));
5510 set_mem_align (mem, get_pointer_alignment (loc, BIGGEST_ALIGNMENT));
5511 set_mem_alias_set (mem, ALIAS_SET_MEMORY_BARRIER);
5512 MEM_VOLATILE_P (mem) = 1;
5514 return mem;
5517 /* Expand the __sync_xxx_and_fetch and __sync_fetch_and_xxx intrinsics.
5518 ARGLIST is the operands list to the function. CODE is the rtx code
5519 that corresponds to the arithmetic or logical operation from the name;
5520 an exception here is that NOT actually means NAND. TARGET is an optional
5521 place for us to store the results; AFTER is true if this is the
5522 fetch_and_xxx form. IGNORE is true if we don't actually care about
5523 the result of the operation at all. */
5525 static rtx
5526 expand_builtin_sync_operation (enum machine_mode mode, tree arglist,
5527 enum rtx_code code, bool after,
5528 rtx target, bool ignore)
5530 rtx val, mem;
5532 /* Expand the operands. */
5533 mem = get_builtin_sync_mem (TREE_VALUE (arglist), mode);
5535 arglist = TREE_CHAIN (arglist);
5536 val = expand_expr (TREE_VALUE (arglist), NULL, mode, EXPAND_NORMAL);
5537 /* If VAL is promoted to a wider mode, convert it back to MODE. */
5538 val = convert_to_mode (mode, val, 1);
5540 if (ignore)
5541 return expand_sync_operation (mem, val, code);
5542 else
5543 return expand_sync_fetch_operation (mem, val, code, after, target);
5546 /* Expand the __sync_val_compare_and_swap and __sync_bool_compare_and_swap
5547 intrinsics. ARGLIST is the operands list to the function. IS_BOOL is
5548 true if this is the boolean form. TARGET is a place for us to store the
5549 results; this is NOT optional if IS_BOOL is true. */
5551 static rtx
5552 expand_builtin_compare_and_swap (enum machine_mode mode, tree arglist,
5553 bool is_bool, rtx target)
5555 rtx old_val, new_val, mem;
5557 /* Expand the operands. */
5558 mem = get_builtin_sync_mem (TREE_VALUE (arglist), mode);
5560 arglist = TREE_CHAIN (arglist);
5561 old_val = expand_expr (TREE_VALUE (arglist), NULL, mode, EXPAND_NORMAL);
5562 /* If OLD_VAL is promoted to a wider mode, convert it back to MODE. */
5563 old_val = convert_to_mode (mode, old_val, 1);
5565 arglist = TREE_CHAIN (arglist);
5566 new_val = expand_expr (TREE_VALUE (arglist), NULL, mode, EXPAND_NORMAL);
5567 /* If NEW_VAL is promoted to a wider mode, convert it back to MODE. */
5568 new_val = convert_to_mode (mode, new_val, 1);
5570 if (is_bool)
5571 return expand_bool_compare_and_swap (mem, old_val, new_val, target);
5572 else
5573 return expand_val_compare_and_swap (mem, old_val, new_val, target);
5576 /* Expand the __sync_lock_test_and_set intrinsic. Note that the most
5577 general form is actually an atomic exchange, and some targets only
5578 support a reduced form with the second argument being a constant 1.
5579 ARGLIST is the operands list to the function; TARGET is an optional
5580 place for us to store the results. */
5582 static rtx
5583 expand_builtin_lock_test_and_set (enum machine_mode mode, tree arglist,
5584 rtx target)
5586 rtx val, mem;
5588 /* Expand the operands. */
5589 mem = get_builtin_sync_mem (TREE_VALUE (arglist), mode);
5591 arglist = TREE_CHAIN (arglist);
5592 val = expand_expr (TREE_VALUE (arglist), NULL, mode, EXPAND_NORMAL);
5593 /* If VAL is promoted to a wider mode, convert it back to MODE. */
5594 val = convert_to_mode (mode, val, 1);
5596 return expand_sync_lock_test_and_set (mem, val, target);
5599 /* Expand the __sync_synchronize intrinsic. */
5601 static void
5602 expand_builtin_synchronize (void)
5604 tree x;
5606 #ifdef HAVE_memory_barrier
5607 if (HAVE_memory_barrier)
5609 emit_insn (gen_memory_barrier ());
5610 return;
5612 #endif
5614 /* If no explicit memory barrier instruction is available, create an
5615 empty asm stmt with a memory clobber. */
5616 x = build4 (ASM_EXPR, void_type_node, build_string (0, ""), NULL, NULL,
5617 tree_cons (NULL, build_string (6, "memory"), NULL));
5618 ASM_VOLATILE_P (x) = 1;
5619 expand_asm_expr (x);
5622 /* Expand the __sync_lock_release intrinsic. ARGLIST is the operands list
5623 to the function. */
5625 static void
5626 expand_builtin_lock_release (enum machine_mode mode, tree arglist)
5628 enum insn_code icode;
5629 rtx mem, insn;
5630 rtx val = const0_rtx;
5632 /* Expand the operands. */
5633 mem = get_builtin_sync_mem (TREE_VALUE (arglist), mode);
5635 /* If there is an explicit operation in the md file, use it. */
5636 icode = sync_lock_release[mode];
5637 if (icode != CODE_FOR_nothing)
5639 if (!insn_data[icode].operand[1].predicate (val, mode))
5640 val = force_reg (mode, val);
5642 insn = GEN_FCN (icode) (mem, val);
5643 if (insn)
5645 emit_insn (insn);
5646 return;
5650 /* Otherwise we can implement this operation by emitting a barrier
5651 followed by a store of zero. */
5652 expand_builtin_synchronize ();
5653 emit_move_insn (mem, val);
5656 /* Expand an expression EXP that calls a built-in function,
5657 with result going to TARGET if that's convenient
5658 (and in mode MODE if that's convenient).
5659 SUBTARGET may be used as the target for computing one of EXP's operands.
5660 IGNORE is nonzero if the value is to be ignored. */
5663 expand_builtin (tree exp, rtx target, rtx subtarget, enum machine_mode mode,
5664 int ignore)
5666 tree fndecl = get_callee_fndecl (exp);
5667 tree arglist = TREE_OPERAND (exp, 1);
5668 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
5669 enum machine_mode target_mode = TYPE_MODE (TREE_TYPE (exp));
5671 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
5672 return targetm.expand_builtin (exp, target, subtarget, mode, ignore);
5674 /* When not optimizing, generate calls to library functions for a certain
5675 set of builtins. */
5676 if (!optimize
5677 && !called_as_built_in (fndecl)
5678 && DECL_ASSEMBLER_NAME_SET_P (fndecl)
5679 && fcode != BUILT_IN_ALLOCA)
5680 return expand_call (exp, target, ignore);
5682 /* The built-in function expanders test for target == const0_rtx
5683 to determine whether the function's result will be ignored. */
5684 if (ignore)
5685 target = const0_rtx;
5687 /* If the result of a pure or const built-in function is ignored, and
5688 none of its arguments are volatile, we can avoid expanding the
5689 built-in call and just evaluate the arguments for side-effects. */
5690 if (target == const0_rtx
5691 && (DECL_IS_PURE (fndecl) || TREE_READONLY (fndecl)))
5693 bool volatilep = false;
5694 tree arg;
5696 for (arg = arglist; arg; arg = TREE_CHAIN (arg))
5697 if (TREE_THIS_VOLATILE (TREE_VALUE (arg)))
5699 volatilep = true;
5700 break;
5703 if (! volatilep)
5705 for (arg = arglist; arg; arg = TREE_CHAIN (arg))
5706 expand_expr (TREE_VALUE (arg), const0_rtx,
5707 VOIDmode, EXPAND_NORMAL);
5708 return const0_rtx;
5712 switch (fcode)
5714 CASE_FLT_FN (BUILT_IN_FABS):
5715 target = expand_builtin_fabs (arglist, target, subtarget);
5716 if (target)
5717 return target;
5718 break;
5720 CASE_FLT_FN (BUILT_IN_COPYSIGN):
5721 target = expand_builtin_copysign (arglist, target, subtarget);
5722 if (target)
5723 return target;
5724 break;
5726 /* Just do a normal library call if we were unable to fold
5727 the values. */
5728 CASE_FLT_FN (BUILT_IN_CABS):
5729 break;
5731 CASE_FLT_FN (BUILT_IN_EXP):
5732 CASE_FLT_FN (BUILT_IN_EXP10):
5733 CASE_FLT_FN (BUILT_IN_POW10):
5734 CASE_FLT_FN (BUILT_IN_EXP2):
5735 CASE_FLT_FN (BUILT_IN_EXPM1):
5736 CASE_FLT_FN (BUILT_IN_LOGB):
5737 CASE_FLT_FN (BUILT_IN_ILOGB):
5738 CASE_FLT_FN (BUILT_IN_LOG):
5739 CASE_FLT_FN (BUILT_IN_LOG10):
5740 CASE_FLT_FN (BUILT_IN_LOG2):
5741 CASE_FLT_FN (BUILT_IN_LOG1P):
5742 CASE_FLT_FN (BUILT_IN_TAN):
5743 CASE_FLT_FN (BUILT_IN_ASIN):
5744 CASE_FLT_FN (BUILT_IN_ACOS):
5745 CASE_FLT_FN (BUILT_IN_ATAN):
5746 /* Treat these like sqrt only if unsafe math optimizations are allowed,
5747 because of possible accuracy problems. */
5748 if (! flag_unsafe_math_optimizations)
5749 break;
5750 CASE_FLT_FN (BUILT_IN_SQRT):
5751 CASE_FLT_FN (BUILT_IN_FLOOR):
5752 CASE_FLT_FN (BUILT_IN_CEIL):
5753 CASE_FLT_FN (BUILT_IN_TRUNC):
5754 CASE_FLT_FN (BUILT_IN_ROUND):
5755 CASE_FLT_FN (BUILT_IN_NEARBYINT):
5756 CASE_FLT_FN (BUILT_IN_RINT):
5757 target = expand_builtin_mathfn (exp, target, subtarget);
5758 if (target)
5759 return target;
5760 break;
5762 CASE_FLT_FN (BUILT_IN_LCEIL):
5763 CASE_FLT_FN (BUILT_IN_LLCEIL):
5764 CASE_FLT_FN (BUILT_IN_LFLOOR):
5765 CASE_FLT_FN (BUILT_IN_LLFLOOR):
5766 target = expand_builtin_int_roundingfn (exp, target, subtarget);
5767 if (target)
5768 return target;
5769 break;
5771 CASE_FLT_FN (BUILT_IN_LRINT):
5772 CASE_FLT_FN (BUILT_IN_LLRINT):
5773 CASE_FLT_FN (BUILT_IN_LROUND):
5774 CASE_FLT_FN (BUILT_IN_LLROUND):
5775 target = expand_builtin_int_roundingfn_2 (exp, target, subtarget);
5776 if (target)
5777 return target;
5778 break;
5780 CASE_FLT_FN (BUILT_IN_POW):
5781 target = expand_builtin_pow (exp, target, subtarget);
5782 if (target)
5783 return target;
5784 break;
5786 CASE_FLT_FN (BUILT_IN_POWI):
5787 target = expand_builtin_powi (exp, target, subtarget);
5788 if (target)
5789 return target;
5790 break;
5792 CASE_FLT_FN (BUILT_IN_ATAN2):
5793 CASE_FLT_FN (BUILT_IN_LDEXP):
5794 if (! flag_unsafe_math_optimizations)
5795 break;
5797 CASE_FLT_FN (BUILT_IN_FMOD):
5798 CASE_FLT_FN (BUILT_IN_REMAINDER):
5799 CASE_FLT_FN (BUILT_IN_DREM):
5800 target = expand_builtin_mathfn_2 (exp, target, subtarget);
5801 if (target)
5802 return target;
5803 break;
5805 CASE_FLT_FN (BUILT_IN_SIN):
5806 CASE_FLT_FN (BUILT_IN_COS):
5807 if (! flag_unsafe_math_optimizations)
5808 break;
5809 target = expand_builtin_mathfn_3 (exp, target, subtarget);
5810 if (target)
5811 return target;
5812 break;
5814 CASE_FLT_FN (BUILT_IN_SINCOS):
5815 if (! flag_unsafe_math_optimizations)
5816 break;
5817 target = expand_builtin_sincos (exp);
5818 if (target)
5819 return target;
5820 break;
5822 case BUILT_IN_APPLY_ARGS:
5823 return expand_builtin_apply_args ();
5825 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
5826 FUNCTION with a copy of the parameters described by
5827 ARGUMENTS, and ARGSIZE. It returns a block of memory
5828 allocated on the stack into which is stored all the registers
5829 that might possibly be used for returning the result of a
5830 function. ARGUMENTS is the value returned by
5831 __builtin_apply_args. ARGSIZE is the number of bytes of
5832 arguments that must be copied. ??? How should this value be
5833 computed? We'll also need a safe worst case value for varargs
5834 functions. */
5835 case BUILT_IN_APPLY:
5836 if (!validate_arglist (arglist, POINTER_TYPE,
5837 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE)
5838 && !validate_arglist (arglist, REFERENCE_TYPE,
5839 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
5840 return const0_rtx;
5841 else
5843 int i;
5844 tree t;
5845 rtx ops[3];
5847 for (t = arglist, i = 0; t; t = TREE_CHAIN (t), i++)
5848 ops[i] = expand_normal (TREE_VALUE (t));
5850 return expand_builtin_apply (ops[0], ops[1], ops[2]);
5853 /* __builtin_return (RESULT) causes the function to return the
5854 value described by RESULT. RESULT is address of the block of
5855 memory returned by __builtin_apply. */
5856 case BUILT_IN_RETURN:
5857 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
5858 expand_builtin_return (expand_normal (TREE_VALUE (arglist)));
5859 return const0_rtx;
5861 case BUILT_IN_SAVEREGS:
5862 return expand_builtin_saveregs ();
5864 case BUILT_IN_ARGS_INFO:
5865 return expand_builtin_args_info (arglist);
5867 /* Return the address of the first anonymous stack arg. */
5868 case BUILT_IN_NEXT_ARG:
5869 if (fold_builtin_next_arg (arglist))
5870 return const0_rtx;
5871 return expand_builtin_next_arg ();
5873 case BUILT_IN_CLASSIFY_TYPE:
5874 return expand_builtin_classify_type (arglist);
5876 case BUILT_IN_CONSTANT_P:
5877 return const0_rtx;
5879 case BUILT_IN_FRAME_ADDRESS:
5880 case BUILT_IN_RETURN_ADDRESS:
5881 return expand_builtin_frame_address (fndecl, arglist);
5883 /* Returns the address of the area where the structure is returned.
5884 0 otherwise. */
5885 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
5886 if (arglist != 0
5887 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl)))
5888 || !MEM_P (DECL_RTL (DECL_RESULT (current_function_decl))))
5889 return const0_rtx;
5890 else
5891 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl)), 0);
5893 case BUILT_IN_ALLOCA:
5894 target = expand_builtin_alloca (arglist, target);
5895 if (target)
5896 return target;
5897 break;
5899 case BUILT_IN_STACK_SAVE:
5900 return expand_stack_save ();
5902 case BUILT_IN_STACK_RESTORE:
5903 expand_stack_restore (TREE_VALUE (arglist));
5904 return const0_rtx;
5906 CASE_INT_FN (BUILT_IN_FFS):
5907 case BUILT_IN_FFSIMAX:
5908 target = expand_builtin_unop (target_mode, arglist, target,
5909 subtarget, ffs_optab);
5910 if (target)
5911 return target;
5912 break;
5914 CASE_INT_FN (BUILT_IN_CLZ):
5915 case BUILT_IN_CLZIMAX:
5916 target = expand_builtin_unop (target_mode, arglist, target,
5917 subtarget, clz_optab);
5918 if (target)
5919 return target;
5920 break;
5922 CASE_INT_FN (BUILT_IN_CTZ):
5923 case BUILT_IN_CTZIMAX:
5924 target = expand_builtin_unop (target_mode, arglist, target,
5925 subtarget, ctz_optab);
5926 if (target)
5927 return target;
5928 break;
5930 CASE_INT_FN (BUILT_IN_POPCOUNT):
5931 case BUILT_IN_POPCOUNTIMAX:
5932 target = expand_builtin_unop (target_mode, arglist, target,
5933 subtarget, popcount_optab);
5934 if (target)
5935 return target;
5936 break;
5938 CASE_INT_FN (BUILT_IN_PARITY):
5939 case BUILT_IN_PARITYIMAX:
5940 target = expand_builtin_unop (target_mode, arglist, target,
5941 subtarget, parity_optab);
5942 if (target)
5943 return target;
5944 break;
5946 case BUILT_IN_STRLEN:
5947 target = expand_builtin_strlen (arglist, target, target_mode);
5948 if (target)
5949 return target;
5950 break;
5952 case BUILT_IN_STRCPY:
5953 target = expand_builtin_strcpy (fndecl, arglist, target, mode);
5954 if (target)
5955 return target;
5956 break;
5958 case BUILT_IN_STRNCPY:
5959 target = expand_builtin_strncpy (exp, target, mode);
5960 if (target)
5961 return target;
5962 break;
5964 case BUILT_IN_STPCPY:
5965 target = expand_builtin_stpcpy (exp, target, mode);
5966 if (target)
5967 return target;
5968 break;
5970 case BUILT_IN_STRCAT:
5971 target = expand_builtin_strcat (fndecl, arglist, target, mode);
5972 if (target)
5973 return target;
5974 break;
5976 case BUILT_IN_STRNCAT:
5977 target = expand_builtin_strncat (arglist, target, mode);
5978 if (target)
5979 return target;
5980 break;
5982 case BUILT_IN_STRSPN:
5983 target = expand_builtin_strspn (arglist, target, mode);
5984 if (target)
5985 return target;
5986 break;
5988 case BUILT_IN_STRCSPN:
5989 target = expand_builtin_strcspn (arglist, target, mode);
5990 if (target)
5991 return target;
5992 break;
5994 case BUILT_IN_STRSTR:
5995 target = expand_builtin_strstr (arglist, TREE_TYPE (exp), target, mode);
5996 if (target)
5997 return target;
5998 break;
6000 case BUILT_IN_STRPBRK:
6001 target = expand_builtin_strpbrk (arglist, TREE_TYPE (exp), target, mode);
6002 if (target)
6003 return target;
6004 break;
6006 case BUILT_IN_INDEX:
6007 case BUILT_IN_STRCHR:
6008 target = expand_builtin_strchr (arglist, TREE_TYPE (exp), target, mode);
6009 if (target)
6010 return target;
6011 break;
6013 case BUILT_IN_RINDEX:
6014 case BUILT_IN_STRRCHR:
6015 target = expand_builtin_strrchr (arglist, TREE_TYPE (exp), target, mode);
6016 if (target)
6017 return target;
6018 break;
6020 case BUILT_IN_MEMCPY:
6021 target = expand_builtin_memcpy (exp, target, mode);
6022 if (target)
6023 return target;
6024 break;
6026 case BUILT_IN_MEMPCPY:
6027 target = expand_builtin_mempcpy (arglist, TREE_TYPE (exp), target, mode, /*endp=*/ 1);
6028 if (target)
6029 return target;
6030 break;
6032 case BUILT_IN_MEMMOVE:
6033 target = expand_builtin_memmove (arglist, TREE_TYPE (exp), target,
6034 mode);
6035 if (target)
6036 return target;
6037 break;
6039 case BUILT_IN_BCOPY:
6040 target = expand_builtin_bcopy (exp);
6041 if (target)
6042 return target;
6043 break;
6045 case BUILT_IN_MEMSET:
6046 target = expand_builtin_memset (arglist, target, mode, exp);
6047 if (target)
6048 return target;
6049 break;
6051 case BUILT_IN_BZERO:
6052 target = expand_builtin_bzero (exp);
6053 if (target)
6054 return target;
6055 break;
6057 case BUILT_IN_STRCMP:
6058 target = expand_builtin_strcmp (exp, target, mode);
6059 if (target)
6060 return target;
6061 break;
6063 case BUILT_IN_STRNCMP:
6064 target = expand_builtin_strncmp (exp, target, mode);
6065 if (target)
6066 return target;
6067 break;
6069 case BUILT_IN_BCMP:
6070 case BUILT_IN_MEMCMP:
6071 target = expand_builtin_memcmp (exp, arglist, target, mode);
6072 if (target)
6073 return target;
6074 break;
6076 case BUILT_IN_SETJMP:
6077 /* This should have been lowered to the builtins below. */
6078 gcc_unreachable ();
6080 case BUILT_IN_SETJMP_SETUP:
6081 /* __builtin_setjmp_setup is passed a pointer to an array of five words
6082 and the receiver label. */
6083 if (validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
6085 rtx buf_addr = expand_expr (TREE_VALUE (arglist), subtarget,
6086 VOIDmode, EXPAND_NORMAL);
6087 tree label = TREE_OPERAND (TREE_VALUE (TREE_CHAIN (arglist)), 0);
6088 rtx label_r = label_rtx (label);
6090 /* This is copied from the handling of non-local gotos. */
6091 expand_builtin_setjmp_setup (buf_addr, label_r);
6092 nonlocal_goto_handler_labels
6093 = gen_rtx_EXPR_LIST (VOIDmode, label_r,
6094 nonlocal_goto_handler_labels);
6095 /* ??? Do not let expand_label treat us as such since we would
6096 not want to be both on the list of non-local labels and on
6097 the list of forced labels. */
6098 FORCED_LABEL (label) = 0;
6099 return const0_rtx;
6101 break;
6103 case BUILT_IN_SETJMP_DISPATCHER:
6104 /* __builtin_setjmp_dispatcher is passed the dispatcher label. */
6105 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
6107 tree label = TREE_OPERAND (TREE_VALUE (arglist), 0);
6108 rtx label_r = label_rtx (label);
6110 /* Remove the dispatcher label from the list of non-local labels
6111 since the receiver labels have been added to it above. */
6112 remove_node_from_expr_list (label_r, &nonlocal_goto_handler_labels);
6113 return const0_rtx;
6115 break;
6117 case BUILT_IN_SETJMP_RECEIVER:
6118 /* __builtin_setjmp_receiver is passed the receiver label. */
6119 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
6121 tree label = TREE_OPERAND (TREE_VALUE (arglist), 0);
6122 rtx label_r = label_rtx (label);
6124 expand_builtin_setjmp_receiver (label_r);
6125 return const0_rtx;
6127 break;
6129 /* __builtin_longjmp is passed a pointer to an array of five words.
6130 It's similar to the C library longjmp function but works with
6131 __builtin_setjmp above. */
6132 case BUILT_IN_LONGJMP:
6133 if (validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
6135 rtx buf_addr = expand_expr (TREE_VALUE (arglist), subtarget,
6136 VOIDmode, EXPAND_NORMAL);
6137 rtx value = expand_normal (TREE_VALUE (TREE_CHAIN (arglist)));
6139 if (value != const1_rtx)
6141 error ("%<__builtin_longjmp%> second argument must be 1");
6142 return const0_rtx;
6145 expand_builtin_longjmp (buf_addr, value);
6146 return const0_rtx;
6148 break;
6150 case BUILT_IN_NONLOCAL_GOTO:
6151 target = expand_builtin_nonlocal_goto (arglist);
6152 if (target)
6153 return target;
6154 break;
6156 /* This updates the setjmp buffer that is its argument with the value
6157 of the current stack pointer. */
6158 case BUILT_IN_UPDATE_SETJMP_BUF:
6159 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
6161 rtx buf_addr
6162 = expand_normal (TREE_VALUE (arglist));
6164 expand_builtin_update_setjmp_buf (buf_addr);
6165 return const0_rtx;
6167 break;
6169 case BUILT_IN_TRAP:
6170 expand_builtin_trap ();
6171 return const0_rtx;
6173 case BUILT_IN_PRINTF:
6174 target = expand_builtin_printf (exp, target, mode, false);
6175 if (target)
6176 return target;
6177 break;
6179 case BUILT_IN_PRINTF_UNLOCKED:
6180 target = expand_builtin_printf (exp, target, mode, true);
6181 if (target)
6182 return target;
6183 break;
6185 case BUILT_IN_FPUTS:
6186 target = expand_builtin_fputs (arglist, target, false);
6187 if (target)
6188 return target;
6189 break;
6190 case BUILT_IN_FPUTS_UNLOCKED:
6191 target = expand_builtin_fputs (arglist, target, true);
6192 if (target)
6193 return target;
6194 break;
6196 case BUILT_IN_FPRINTF:
6197 target = expand_builtin_fprintf (exp, target, mode, false);
6198 if (target)
6199 return target;
6200 break;
6202 case BUILT_IN_FPRINTF_UNLOCKED:
6203 target = expand_builtin_fprintf (exp, target, mode, true);
6204 if (target)
6205 return target;
6206 break;
6208 case BUILT_IN_SPRINTF:
6209 target = expand_builtin_sprintf (arglist, target, mode);
6210 if (target)
6211 return target;
6212 break;
6214 CASE_FLT_FN (BUILT_IN_SIGNBIT):
6215 target = expand_builtin_signbit (exp, target);
6216 if (target)
6217 return target;
6218 break;
6220 /* Various hooks for the DWARF 2 __throw routine. */
6221 case BUILT_IN_UNWIND_INIT:
6222 expand_builtin_unwind_init ();
6223 return const0_rtx;
6224 case BUILT_IN_DWARF_CFA:
6225 return virtual_cfa_rtx;
6226 #ifdef DWARF2_UNWIND_INFO
6227 case BUILT_IN_DWARF_SP_COLUMN:
6228 return expand_builtin_dwarf_sp_column ();
6229 case BUILT_IN_INIT_DWARF_REG_SIZES:
6230 expand_builtin_init_dwarf_reg_sizes (TREE_VALUE (arglist));
6231 return const0_rtx;
6232 #endif
6233 case BUILT_IN_FROB_RETURN_ADDR:
6234 return expand_builtin_frob_return_addr (TREE_VALUE (arglist));
6235 case BUILT_IN_EXTRACT_RETURN_ADDR:
6236 return expand_builtin_extract_return_addr (TREE_VALUE (arglist));
6237 case BUILT_IN_EH_RETURN:
6238 expand_builtin_eh_return (TREE_VALUE (arglist),
6239 TREE_VALUE (TREE_CHAIN (arglist)));
6240 return const0_rtx;
6241 #ifdef EH_RETURN_DATA_REGNO
6242 case BUILT_IN_EH_RETURN_DATA_REGNO:
6243 return expand_builtin_eh_return_data_regno (arglist);
6244 #endif
6245 case BUILT_IN_EXTEND_POINTER:
6246 return expand_builtin_extend_pointer (TREE_VALUE (arglist));
6248 case BUILT_IN_VA_START:
6249 case BUILT_IN_STDARG_START:
6250 return expand_builtin_va_start (arglist);
6251 case BUILT_IN_VA_END:
6252 return expand_builtin_va_end (arglist);
6253 case BUILT_IN_VA_COPY:
6254 return expand_builtin_va_copy (arglist);
6255 case BUILT_IN_EXPECT:
6256 return expand_builtin_expect (arglist, target);
6257 case BUILT_IN_PREFETCH:
6258 expand_builtin_prefetch (arglist);
6259 return const0_rtx;
6261 case BUILT_IN_PROFILE_FUNC_ENTER:
6262 return expand_builtin_profile_func (false);
6263 case BUILT_IN_PROFILE_FUNC_EXIT:
6264 return expand_builtin_profile_func (true);
6266 case BUILT_IN_INIT_TRAMPOLINE:
6267 return expand_builtin_init_trampoline (arglist);
6268 case BUILT_IN_ADJUST_TRAMPOLINE:
6269 return expand_builtin_adjust_trampoline (arglist);
6271 case BUILT_IN_FORK:
6272 case BUILT_IN_EXECL:
6273 case BUILT_IN_EXECV:
6274 case BUILT_IN_EXECLP:
6275 case BUILT_IN_EXECLE:
6276 case BUILT_IN_EXECVP:
6277 case BUILT_IN_EXECVE:
6278 target = expand_builtin_fork_or_exec (fndecl, arglist, target, ignore);
6279 if (target)
6280 return target;
6281 break;
6283 case BUILT_IN_FETCH_AND_ADD_1:
6284 case BUILT_IN_FETCH_AND_ADD_2:
6285 case BUILT_IN_FETCH_AND_ADD_4:
6286 case BUILT_IN_FETCH_AND_ADD_8:
6287 case BUILT_IN_FETCH_AND_ADD_16:
6288 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_ADD_1);
6289 target = expand_builtin_sync_operation (mode, arglist, PLUS,
6290 false, target, ignore);
6291 if (target)
6292 return target;
6293 break;
6295 case BUILT_IN_FETCH_AND_SUB_1:
6296 case BUILT_IN_FETCH_AND_SUB_2:
6297 case BUILT_IN_FETCH_AND_SUB_4:
6298 case BUILT_IN_FETCH_AND_SUB_8:
6299 case BUILT_IN_FETCH_AND_SUB_16:
6300 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_SUB_1);
6301 target = expand_builtin_sync_operation (mode, arglist, MINUS,
6302 false, target, ignore);
6303 if (target)
6304 return target;
6305 break;
6307 case BUILT_IN_FETCH_AND_OR_1:
6308 case BUILT_IN_FETCH_AND_OR_2:
6309 case BUILT_IN_FETCH_AND_OR_4:
6310 case BUILT_IN_FETCH_AND_OR_8:
6311 case BUILT_IN_FETCH_AND_OR_16:
6312 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_OR_1);
6313 target = expand_builtin_sync_operation (mode, arglist, IOR,
6314 false, target, ignore);
6315 if (target)
6316 return target;
6317 break;
6319 case BUILT_IN_FETCH_AND_AND_1:
6320 case BUILT_IN_FETCH_AND_AND_2:
6321 case BUILT_IN_FETCH_AND_AND_4:
6322 case BUILT_IN_FETCH_AND_AND_8:
6323 case BUILT_IN_FETCH_AND_AND_16:
6324 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_AND_1);
6325 target = expand_builtin_sync_operation (mode, arglist, AND,
6326 false, target, ignore);
6327 if (target)
6328 return target;
6329 break;
6331 case BUILT_IN_FETCH_AND_XOR_1:
6332 case BUILT_IN_FETCH_AND_XOR_2:
6333 case BUILT_IN_FETCH_AND_XOR_4:
6334 case BUILT_IN_FETCH_AND_XOR_8:
6335 case BUILT_IN_FETCH_AND_XOR_16:
6336 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_XOR_1);
6337 target = expand_builtin_sync_operation (mode, arglist, XOR,
6338 false, target, ignore);
6339 if (target)
6340 return target;
6341 break;
6343 case BUILT_IN_FETCH_AND_NAND_1:
6344 case BUILT_IN_FETCH_AND_NAND_2:
6345 case BUILT_IN_FETCH_AND_NAND_4:
6346 case BUILT_IN_FETCH_AND_NAND_8:
6347 case BUILT_IN_FETCH_AND_NAND_16:
6348 mode = get_builtin_sync_mode (fcode - BUILT_IN_FETCH_AND_NAND_1);
6349 target = expand_builtin_sync_operation (mode, arglist, NOT,
6350 false, target, ignore);
6351 if (target)
6352 return target;
6353 break;
6355 case BUILT_IN_ADD_AND_FETCH_1:
6356 case BUILT_IN_ADD_AND_FETCH_2:
6357 case BUILT_IN_ADD_AND_FETCH_4:
6358 case BUILT_IN_ADD_AND_FETCH_8:
6359 case BUILT_IN_ADD_AND_FETCH_16:
6360 mode = get_builtin_sync_mode (fcode - BUILT_IN_ADD_AND_FETCH_1);
6361 target = expand_builtin_sync_operation (mode, arglist, PLUS,
6362 true, target, ignore);
6363 if (target)
6364 return target;
6365 break;
6367 case BUILT_IN_SUB_AND_FETCH_1:
6368 case BUILT_IN_SUB_AND_FETCH_2:
6369 case BUILT_IN_SUB_AND_FETCH_4:
6370 case BUILT_IN_SUB_AND_FETCH_8:
6371 case BUILT_IN_SUB_AND_FETCH_16:
6372 mode = get_builtin_sync_mode (fcode - BUILT_IN_SUB_AND_FETCH_1);
6373 target = expand_builtin_sync_operation (mode, arglist, MINUS,
6374 true, target, ignore);
6375 if (target)
6376 return target;
6377 break;
6379 case BUILT_IN_OR_AND_FETCH_1:
6380 case BUILT_IN_OR_AND_FETCH_2:
6381 case BUILT_IN_OR_AND_FETCH_4:
6382 case BUILT_IN_OR_AND_FETCH_8:
6383 case BUILT_IN_OR_AND_FETCH_16:
6384 mode = get_builtin_sync_mode (fcode - BUILT_IN_OR_AND_FETCH_1);
6385 target = expand_builtin_sync_operation (mode, arglist, IOR,
6386 true, target, ignore);
6387 if (target)
6388 return target;
6389 break;
6391 case BUILT_IN_AND_AND_FETCH_1:
6392 case BUILT_IN_AND_AND_FETCH_2:
6393 case BUILT_IN_AND_AND_FETCH_4:
6394 case BUILT_IN_AND_AND_FETCH_8:
6395 case BUILT_IN_AND_AND_FETCH_16:
6396 mode = get_builtin_sync_mode (fcode - BUILT_IN_AND_AND_FETCH_1);
6397 target = expand_builtin_sync_operation (mode, arglist, AND,
6398 true, target, ignore);
6399 if (target)
6400 return target;
6401 break;
6403 case BUILT_IN_XOR_AND_FETCH_1:
6404 case BUILT_IN_XOR_AND_FETCH_2:
6405 case BUILT_IN_XOR_AND_FETCH_4:
6406 case BUILT_IN_XOR_AND_FETCH_8:
6407 case BUILT_IN_XOR_AND_FETCH_16:
6408 mode = get_builtin_sync_mode (fcode - BUILT_IN_XOR_AND_FETCH_1);
6409 target = expand_builtin_sync_operation (mode, arglist, XOR,
6410 true, target, ignore);
6411 if (target)
6412 return target;
6413 break;
6415 case BUILT_IN_NAND_AND_FETCH_1:
6416 case BUILT_IN_NAND_AND_FETCH_2:
6417 case BUILT_IN_NAND_AND_FETCH_4:
6418 case BUILT_IN_NAND_AND_FETCH_8:
6419 case BUILT_IN_NAND_AND_FETCH_16:
6420 mode = get_builtin_sync_mode (fcode - BUILT_IN_NAND_AND_FETCH_1);
6421 target = expand_builtin_sync_operation (mode, arglist, NOT,
6422 true, target, ignore);
6423 if (target)
6424 return target;
6425 break;
6427 case BUILT_IN_BOOL_COMPARE_AND_SWAP_1:
6428 case BUILT_IN_BOOL_COMPARE_AND_SWAP_2:
6429 case BUILT_IN_BOOL_COMPARE_AND_SWAP_4:
6430 case BUILT_IN_BOOL_COMPARE_AND_SWAP_8:
6431 case BUILT_IN_BOOL_COMPARE_AND_SWAP_16:
6432 if (mode == VOIDmode)
6433 mode = TYPE_MODE (boolean_type_node);
6434 if (!target || !register_operand (target, mode))
6435 target = gen_reg_rtx (mode);
6437 mode = get_builtin_sync_mode (fcode - BUILT_IN_BOOL_COMPARE_AND_SWAP_1);
6438 target = expand_builtin_compare_and_swap (mode, arglist, true, target);
6439 if (target)
6440 return target;
6441 break;
6443 case BUILT_IN_VAL_COMPARE_AND_SWAP_1:
6444 case BUILT_IN_VAL_COMPARE_AND_SWAP_2:
6445 case BUILT_IN_VAL_COMPARE_AND_SWAP_4:
6446 case BUILT_IN_VAL_COMPARE_AND_SWAP_8:
6447 case BUILT_IN_VAL_COMPARE_AND_SWAP_16:
6448 mode = get_builtin_sync_mode (fcode - BUILT_IN_VAL_COMPARE_AND_SWAP_1);
6449 target = expand_builtin_compare_and_swap (mode, arglist, false, target);
6450 if (target)
6451 return target;
6452 break;
6454 case BUILT_IN_LOCK_TEST_AND_SET_1:
6455 case BUILT_IN_LOCK_TEST_AND_SET_2:
6456 case BUILT_IN_LOCK_TEST_AND_SET_4:
6457 case BUILT_IN_LOCK_TEST_AND_SET_8:
6458 case BUILT_IN_LOCK_TEST_AND_SET_16:
6459 mode = get_builtin_sync_mode (fcode - BUILT_IN_LOCK_TEST_AND_SET_1);
6460 target = expand_builtin_lock_test_and_set (mode, arglist, target);
6461 if (target)
6462 return target;
6463 break;
6465 case BUILT_IN_LOCK_RELEASE_1:
6466 case BUILT_IN_LOCK_RELEASE_2:
6467 case BUILT_IN_LOCK_RELEASE_4:
6468 case BUILT_IN_LOCK_RELEASE_8:
6469 case BUILT_IN_LOCK_RELEASE_16:
6470 mode = get_builtin_sync_mode (fcode - BUILT_IN_LOCK_RELEASE_1);
6471 expand_builtin_lock_release (mode, arglist);
6472 return const0_rtx;
6474 case BUILT_IN_SYNCHRONIZE:
6475 expand_builtin_synchronize ();
6476 return const0_rtx;
6478 case BUILT_IN_OBJECT_SIZE:
6479 return expand_builtin_object_size (exp);
6481 case BUILT_IN_MEMCPY_CHK:
6482 case BUILT_IN_MEMPCPY_CHK:
6483 case BUILT_IN_MEMMOVE_CHK:
6484 case BUILT_IN_MEMSET_CHK:
6485 target = expand_builtin_memory_chk (exp, target, mode, fcode);
6486 if (target)
6487 return target;
6488 break;
6490 case BUILT_IN_STRCPY_CHK:
6491 case BUILT_IN_STPCPY_CHK:
6492 case BUILT_IN_STRNCPY_CHK:
6493 case BUILT_IN_STRCAT_CHK:
6494 case BUILT_IN_STRNCAT_CHK:
6495 case BUILT_IN_SNPRINTF_CHK:
6496 case BUILT_IN_VSNPRINTF_CHK:
6497 maybe_emit_chk_warning (exp, fcode);
6498 break;
6500 case BUILT_IN_SPRINTF_CHK:
6501 case BUILT_IN_VSPRINTF_CHK:
6502 maybe_emit_sprintf_chk_warning (exp, fcode);
6503 break;
6505 default: /* just do library call, if unknown builtin */
6506 break;
6509 /* The switch statement above can drop through to cause the function
6510 to be called normally. */
6511 return expand_call (exp, target, ignore);
6514 /* Determine whether a tree node represents a call to a built-in
6515 function. If the tree T is a call to a built-in function with
6516 the right number of arguments of the appropriate types, return
6517 the DECL_FUNCTION_CODE of the call, e.g. BUILT_IN_SQRT.
6518 Otherwise the return value is END_BUILTINS. */
6520 enum built_in_function
6521 builtin_mathfn_code (tree t)
6523 tree fndecl, arglist, parmlist;
6524 tree argtype, parmtype;
6526 if (TREE_CODE (t) != CALL_EXPR
6527 || TREE_CODE (TREE_OPERAND (t, 0)) != ADDR_EXPR)
6528 return END_BUILTINS;
6530 fndecl = get_callee_fndecl (t);
6531 if (fndecl == NULL_TREE
6532 || TREE_CODE (fndecl) != FUNCTION_DECL
6533 || ! DECL_BUILT_IN (fndecl)
6534 || DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
6535 return END_BUILTINS;
6537 arglist = TREE_OPERAND (t, 1);
6538 parmlist = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6539 for (; parmlist; parmlist = TREE_CHAIN (parmlist))
6541 /* If a function doesn't take a variable number of arguments,
6542 the last element in the list will have type `void'. */
6543 parmtype = TREE_VALUE (parmlist);
6544 if (VOID_TYPE_P (parmtype))
6546 if (arglist)
6547 return END_BUILTINS;
6548 return DECL_FUNCTION_CODE (fndecl);
6551 if (! arglist)
6552 return END_BUILTINS;
6554 argtype = TREE_TYPE (TREE_VALUE (arglist));
6556 if (SCALAR_FLOAT_TYPE_P (parmtype))
6558 if (! SCALAR_FLOAT_TYPE_P (argtype))
6559 return END_BUILTINS;
6561 else if (COMPLEX_FLOAT_TYPE_P (parmtype))
6563 if (! COMPLEX_FLOAT_TYPE_P (argtype))
6564 return END_BUILTINS;
6566 else if (POINTER_TYPE_P (parmtype))
6568 if (! POINTER_TYPE_P (argtype))
6569 return END_BUILTINS;
6571 else if (INTEGRAL_TYPE_P (parmtype))
6573 if (! INTEGRAL_TYPE_P (argtype))
6574 return END_BUILTINS;
6576 else
6577 return END_BUILTINS;
6579 arglist = TREE_CHAIN (arglist);
6582 /* Variable-length argument list. */
6583 return DECL_FUNCTION_CODE (fndecl);
6586 /* Fold a call to __builtin_constant_p, if we know it will evaluate to a
6587 constant. ARGLIST is the argument list of the call. */
6589 static tree
6590 fold_builtin_constant_p (tree arglist)
6592 if (arglist == 0)
6593 return 0;
6595 arglist = TREE_VALUE (arglist);
6597 /* We return 1 for a numeric type that's known to be a constant
6598 value at compile-time or for an aggregate type that's a
6599 literal constant. */
6600 STRIP_NOPS (arglist);
6602 /* If we know this is a constant, emit the constant of one. */
6603 if (CONSTANT_CLASS_P (arglist)
6604 || (TREE_CODE (arglist) == CONSTRUCTOR
6605 && TREE_CONSTANT (arglist)))
6606 return integer_one_node;
6607 if (TREE_CODE (arglist) == ADDR_EXPR)
6609 tree op = TREE_OPERAND (arglist, 0);
6610 if (TREE_CODE (op) == STRING_CST
6611 || (TREE_CODE (op) == ARRAY_REF
6612 && integer_zerop (TREE_OPERAND (op, 1))
6613 && TREE_CODE (TREE_OPERAND (op, 0)) == STRING_CST))
6614 return integer_one_node;
6617 /* If this expression has side effects, show we don't know it to be a
6618 constant. Likewise if it's a pointer or aggregate type since in
6619 those case we only want literals, since those are only optimized
6620 when generating RTL, not later.
6621 And finally, if we are compiling an initializer, not code, we
6622 need to return a definite result now; there's not going to be any
6623 more optimization done. */
6624 if (TREE_SIDE_EFFECTS (arglist)
6625 || AGGREGATE_TYPE_P (TREE_TYPE (arglist))
6626 || POINTER_TYPE_P (TREE_TYPE (arglist))
6627 || cfun == 0
6628 || folding_initializer)
6629 return integer_zero_node;
6631 return 0;
6634 /* Fold a call to __builtin_expect, if we expect that a comparison against
6635 the argument will fold to a constant. In practice, this means a true
6636 constant or the address of a non-weak symbol. ARGLIST is the argument
6637 list of the call. */
6639 static tree
6640 fold_builtin_expect (tree arglist)
6642 tree arg, inner;
6644 if (arglist == 0)
6645 return 0;
6647 arg = TREE_VALUE (arglist);
6649 /* If the argument isn't invariant, then there's nothing we can do. */
6650 if (!TREE_INVARIANT (arg))
6651 return 0;
6653 /* If we're looking at an address of a weak decl, then do not fold. */
6654 inner = arg;
6655 STRIP_NOPS (inner);
6656 if (TREE_CODE (inner) == ADDR_EXPR)
6660 inner = TREE_OPERAND (inner, 0);
6662 while (TREE_CODE (inner) == COMPONENT_REF
6663 || TREE_CODE (inner) == ARRAY_REF);
6664 if (DECL_P (inner) && DECL_WEAK (inner))
6665 return 0;
6668 /* Otherwise, ARG already has the proper type for the return value. */
6669 return arg;
6672 /* Fold a call to __builtin_classify_type. */
6674 static tree
6675 fold_builtin_classify_type (tree arglist)
6677 if (arglist == 0)
6678 return build_int_cst (NULL_TREE, no_type_class);
6680 return build_int_cst (NULL_TREE,
6681 type_to_class (TREE_TYPE (TREE_VALUE (arglist))));
6684 /* Fold a call to __builtin_strlen. */
6686 static tree
6687 fold_builtin_strlen (tree arglist)
6689 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
6690 return NULL_TREE;
6691 else
6693 tree len = c_strlen (TREE_VALUE (arglist), 0);
6695 if (len)
6697 /* Convert from the internal "sizetype" type to "size_t". */
6698 if (size_type_node)
6699 len = fold_convert (size_type_node, len);
6700 return len;
6703 return NULL_TREE;
6707 /* Fold a call to __builtin_inf or __builtin_huge_val. */
6709 static tree
6710 fold_builtin_inf (tree type, int warn)
6712 REAL_VALUE_TYPE real;
6714 /* __builtin_inff is intended to be usable to define INFINITY on all
6715 targets. If an infinity is not available, INFINITY expands "to a
6716 positive constant of type float that overflows at translation
6717 time", footnote "In this case, using INFINITY will violate the
6718 constraint in 6.4.4 and thus require a diagnostic." (C99 7.12#4).
6719 Thus we pedwarn to ensure this constraint violation is
6720 diagnosed. */
6721 if (!MODE_HAS_INFINITIES (TYPE_MODE (type)) && warn)
6722 pedwarn ("target format does not support infinity");
6724 real_inf (&real);
6725 return build_real (type, real);
6728 /* Fold a call to __builtin_nan or __builtin_nans. */
6730 static tree
6731 fold_builtin_nan (tree arglist, tree type, int quiet)
6733 REAL_VALUE_TYPE real;
6734 const char *str;
6736 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
6737 return 0;
6738 str = c_getstr (TREE_VALUE (arglist));
6739 if (!str)
6740 return 0;
6742 if (!real_nan (&real, str, quiet, TYPE_MODE (type)))
6743 return 0;
6745 return build_real (type, real);
6748 /* Return true if the floating point expression T has an integer value.
6749 We also allow +Inf, -Inf and NaN to be considered integer values. */
6751 static bool
6752 integer_valued_real_p (tree t)
6754 switch (TREE_CODE (t))
6756 case FLOAT_EXPR:
6757 return true;
6759 case ABS_EXPR:
6760 case SAVE_EXPR:
6761 case NON_LVALUE_EXPR:
6762 return integer_valued_real_p (TREE_OPERAND (t, 0));
6764 case COMPOUND_EXPR:
6765 case MODIFY_EXPR:
6766 case BIND_EXPR:
6767 return integer_valued_real_p (TREE_OPERAND (t, 1));
6769 case PLUS_EXPR:
6770 case MINUS_EXPR:
6771 case MULT_EXPR:
6772 case MIN_EXPR:
6773 case MAX_EXPR:
6774 return integer_valued_real_p (TREE_OPERAND (t, 0))
6775 && integer_valued_real_p (TREE_OPERAND (t, 1));
6777 case COND_EXPR:
6778 return integer_valued_real_p (TREE_OPERAND (t, 1))
6779 && integer_valued_real_p (TREE_OPERAND (t, 2));
6781 case REAL_CST:
6782 if (! TREE_CONSTANT_OVERFLOW (t))
6784 REAL_VALUE_TYPE c, cint;
6786 c = TREE_REAL_CST (t);
6787 real_trunc (&cint, TYPE_MODE (TREE_TYPE (t)), &c);
6788 return real_identical (&c, &cint);
6790 break;
6792 case NOP_EXPR:
6794 tree type = TREE_TYPE (TREE_OPERAND (t, 0));
6795 if (TREE_CODE (type) == INTEGER_TYPE)
6796 return true;
6797 if (TREE_CODE (type) == REAL_TYPE)
6798 return integer_valued_real_p (TREE_OPERAND (t, 0));
6799 break;
6802 case CALL_EXPR:
6803 switch (builtin_mathfn_code (t))
6805 CASE_FLT_FN (BUILT_IN_CEIL):
6806 CASE_FLT_FN (BUILT_IN_FLOOR):
6807 CASE_FLT_FN (BUILT_IN_NEARBYINT):
6808 CASE_FLT_FN (BUILT_IN_RINT):
6809 CASE_FLT_FN (BUILT_IN_ROUND):
6810 CASE_FLT_FN (BUILT_IN_TRUNC):
6811 return true;
6813 default:
6814 break;
6816 break;
6818 default:
6819 break;
6821 return false;
6824 /* EXP is assumed to be builtin call where truncation can be propagated
6825 across (for instance floor((double)f) == (double)floorf (f).
6826 Do the transformation. */
6828 static tree
6829 fold_trunc_transparent_mathfn (tree fndecl, tree arglist)
6831 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
6832 tree arg;
6834 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
6835 return 0;
6837 arg = TREE_VALUE (arglist);
6838 /* Integer rounding functions are idempotent. */
6839 if (fcode == builtin_mathfn_code (arg))
6840 return arg;
6842 /* If argument is already integer valued, and we don't need to worry
6843 about setting errno, there's no need to perform rounding. */
6844 if (! flag_errno_math && integer_valued_real_p (arg))
6845 return arg;
6847 if (optimize)
6849 tree arg0 = strip_float_extensions (arg);
6850 tree ftype = TREE_TYPE (TREE_TYPE (fndecl));
6851 tree newtype = TREE_TYPE (arg0);
6852 tree decl;
6854 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (ftype)
6855 && (decl = mathfn_built_in (newtype, fcode)))
6857 arglist =
6858 build_tree_list (NULL_TREE, fold_convert (newtype, arg0));
6859 return fold_convert (ftype,
6860 build_function_call_expr (decl, arglist));
6863 return 0;
6866 /* EXP is assumed to be builtin call which can narrow the FP type of
6867 the argument, for instance lround((double)f) -> lroundf (f). */
6869 static tree
6870 fold_fixed_mathfn (tree fndecl, tree arglist)
6872 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
6873 tree arg;
6875 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
6876 return 0;
6878 arg = TREE_VALUE (arglist);
6880 /* If argument is already integer valued, and we don't need to worry
6881 about setting errno, there's no need to perform rounding. */
6882 if (! flag_errno_math && integer_valued_real_p (arg))
6883 return fold_build1 (FIX_TRUNC_EXPR, TREE_TYPE (TREE_TYPE (fndecl)), arg);
6885 if (optimize)
6887 tree ftype = TREE_TYPE (arg);
6888 tree arg0 = strip_float_extensions (arg);
6889 tree newtype = TREE_TYPE (arg0);
6890 tree decl;
6892 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (ftype)
6893 && (decl = mathfn_built_in (newtype, fcode)))
6895 arglist =
6896 build_tree_list (NULL_TREE, fold_convert (newtype, arg0));
6897 return build_function_call_expr (decl, arglist);
6901 /* Canonicalize llround (x) to lround (x) on LP64 targets where
6902 sizeof (long long) == sizeof (long). */
6903 if (TYPE_PRECISION (long_long_integer_type_node)
6904 == TYPE_PRECISION (long_integer_type_node))
6906 tree newfn = NULL_TREE;
6907 switch (fcode)
6909 CASE_FLT_FN (BUILT_IN_LLCEIL):
6910 newfn = mathfn_built_in (TREE_TYPE (arg), BUILT_IN_LCEIL);
6911 break;
6913 CASE_FLT_FN (BUILT_IN_LLFLOOR):
6914 newfn = mathfn_built_in (TREE_TYPE (arg), BUILT_IN_LFLOOR);
6915 break;
6917 CASE_FLT_FN (BUILT_IN_LLROUND):
6918 newfn = mathfn_built_in (TREE_TYPE (arg), BUILT_IN_LROUND);
6919 break;
6921 CASE_FLT_FN (BUILT_IN_LLRINT):
6922 newfn = mathfn_built_in (TREE_TYPE (arg), BUILT_IN_LRINT);
6923 break;
6925 default:
6926 break;
6929 if (newfn)
6931 tree newcall = build_function_call_expr (newfn, arglist);
6932 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), newcall);
6936 return 0;
6939 /* Fold function call to builtin cabs, cabsf or cabsl. ARGLIST
6940 is the argument list, TYPE is the return type and FNDECL is the
6941 original function DECL. Return NULL_TREE if no if no simplification
6942 can be made. */
6944 static tree
6945 fold_builtin_cabs (tree arglist, tree type, tree fndecl)
6947 tree arg;
6949 if (!arglist || TREE_CHAIN (arglist))
6950 return NULL_TREE;
6952 arg = TREE_VALUE (arglist);
6953 if (TREE_CODE (TREE_TYPE (arg)) != COMPLEX_TYPE
6954 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg))) != REAL_TYPE)
6955 return NULL_TREE;
6957 /* Evaluate cabs of a constant at compile-time. */
6958 if (flag_unsafe_math_optimizations
6959 && TREE_CODE (arg) == COMPLEX_CST
6960 && TREE_CODE (TREE_REALPART (arg)) == REAL_CST
6961 && TREE_CODE (TREE_IMAGPART (arg)) == REAL_CST
6962 && ! TREE_CONSTANT_OVERFLOW (TREE_REALPART (arg))
6963 && ! TREE_CONSTANT_OVERFLOW (TREE_IMAGPART (arg)))
6965 REAL_VALUE_TYPE r, i;
6967 r = TREE_REAL_CST (TREE_REALPART (arg));
6968 i = TREE_REAL_CST (TREE_IMAGPART (arg));
6970 real_arithmetic (&r, MULT_EXPR, &r, &r);
6971 real_arithmetic (&i, MULT_EXPR, &i, &i);
6972 real_arithmetic (&r, PLUS_EXPR, &r, &i);
6973 if (real_sqrt (&r, TYPE_MODE (type), &r)
6974 || ! flag_trapping_math)
6975 return build_real (type, r);
6978 /* If either part is zero, cabs is fabs of the other. */
6979 if (TREE_CODE (arg) == COMPLEX_EXPR
6980 && real_zerop (TREE_OPERAND (arg, 0)))
6981 return fold_build1 (ABS_EXPR, type, TREE_OPERAND (arg, 1));
6982 if (TREE_CODE (arg) == COMPLEX_EXPR
6983 && real_zerop (TREE_OPERAND (arg, 1)))
6984 return fold_build1 (ABS_EXPR, type, TREE_OPERAND (arg, 0));
6986 /* Optimize cabs(-z) and cabs(conj(z)) as cabs(z). */
6987 if (TREE_CODE (arg) == NEGATE_EXPR
6988 || TREE_CODE (arg) == CONJ_EXPR)
6990 tree arglist = build_tree_list (NULL_TREE, TREE_OPERAND (arg, 0));
6991 return build_function_call_expr (fndecl, arglist);
6994 /* Don't do this when optimizing for size. */
6995 if (flag_unsafe_math_optimizations
6996 && optimize && !optimize_size)
6998 tree sqrtfn = mathfn_built_in (type, BUILT_IN_SQRT);
7000 if (sqrtfn != NULL_TREE)
7002 tree rpart, ipart, result, arglist;
7004 arg = builtin_save_expr (arg);
7006 rpart = fold_build1 (REALPART_EXPR, type, arg);
7007 ipart = fold_build1 (IMAGPART_EXPR, type, arg);
7009 rpart = builtin_save_expr (rpart);
7010 ipart = builtin_save_expr (ipart);
7012 result = fold_build2 (PLUS_EXPR, type,
7013 fold_build2 (MULT_EXPR, type,
7014 rpart, rpart),
7015 fold_build2 (MULT_EXPR, type,
7016 ipart, ipart));
7018 arglist = build_tree_list (NULL_TREE, result);
7019 return build_function_call_expr (sqrtfn, arglist);
7023 return NULL_TREE;
7026 /* Fold a builtin function call to sqrt, sqrtf, or sqrtl. Return
7027 NULL_TREE if no simplification can be made. */
7029 static tree
7030 fold_builtin_sqrt (tree arglist, tree type)
7033 enum built_in_function fcode;
7034 tree arg = TREE_VALUE (arglist);
7036 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7037 return NULL_TREE;
7039 /* Optimize sqrt of constant value. */
7040 if (TREE_CODE (arg) == REAL_CST
7041 && ! TREE_CONSTANT_OVERFLOW (arg))
7043 REAL_VALUE_TYPE r, x;
7045 x = TREE_REAL_CST (arg);
7046 if (real_sqrt (&r, TYPE_MODE (type), &x)
7047 || (!flag_trapping_math && !flag_errno_math))
7048 return build_real (type, r);
7051 /* Optimize sqrt(expN(x)) = expN(x*0.5). */
7052 fcode = builtin_mathfn_code (arg);
7053 if (flag_unsafe_math_optimizations && BUILTIN_EXPONENT_P (fcode))
7055 tree expfn = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
7056 arg = fold_build2 (MULT_EXPR, type,
7057 TREE_VALUE (TREE_OPERAND (arg, 1)),
7058 build_real (type, dconsthalf));
7059 arglist = build_tree_list (NULL_TREE, arg);
7060 return build_function_call_expr (expfn, arglist);
7063 /* Optimize sqrt(Nroot(x)) -> pow(x,1/(2*N)). */
7064 if (flag_unsafe_math_optimizations && BUILTIN_ROOT_P (fcode))
7066 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
7068 if (powfn)
7070 tree arg0 = TREE_VALUE (TREE_OPERAND (arg, 1));
7071 tree tree_root;
7072 /* The inner root was either sqrt or cbrt. */
7073 REAL_VALUE_TYPE dconstroot =
7074 BUILTIN_SQRT_P (fcode) ? dconsthalf : dconstthird;
7076 /* Adjust for the outer root. */
7077 SET_REAL_EXP (&dconstroot, REAL_EXP (&dconstroot) - 1);
7078 dconstroot = real_value_truncate (TYPE_MODE (type), dconstroot);
7079 tree_root = build_real (type, dconstroot);
7080 arglist = tree_cons (NULL_TREE, arg0,
7081 build_tree_list (NULL_TREE, tree_root));
7082 return build_function_call_expr (powfn, arglist);
7086 /* Optimize sqrt(pow(x,y)) = pow(|x|,y*0.5). */
7087 if (flag_unsafe_math_optimizations
7088 && (fcode == BUILT_IN_POW
7089 || fcode == BUILT_IN_POWF
7090 || fcode == BUILT_IN_POWL))
7092 tree powfn = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
7093 tree arg0 = TREE_VALUE (TREE_OPERAND (arg, 1));
7094 tree arg1 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg, 1)));
7095 tree narg1;
7096 if (!tree_expr_nonnegative_p (arg0))
7097 arg0 = build1 (ABS_EXPR, type, arg0);
7098 narg1 = fold_build2 (MULT_EXPR, type, arg1,
7099 build_real (type, dconsthalf));
7100 arglist = tree_cons (NULL_TREE, arg0,
7101 build_tree_list (NULL_TREE, narg1));
7102 return build_function_call_expr (powfn, arglist);
7105 return NULL_TREE;
7108 /* Fold a builtin function call to cbrt, cbrtf, or cbrtl. Return
7109 NULL_TREE if no simplification can be made. */
7110 static tree
7111 fold_builtin_cbrt (tree arglist, tree type)
7113 tree arg = TREE_VALUE (arglist);
7114 const enum built_in_function fcode = builtin_mathfn_code (arg);
7115 tree res;
7117 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7118 return NULL_TREE;
7120 /* Calculate the result when the argument is a constant. */
7121 if ((res = do_mpfr_arg1 (arg, type, mpfr_cbrt, NULL, NULL, 0)))
7122 return res;
7124 if (flag_unsafe_math_optimizations)
7126 /* Optimize cbrt(expN(x)) -> expN(x/3). */
7127 if (BUILTIN_EXPONENT_P (fcode))
7129 tree expfn = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
7130 const REAL_VALUE_TYPE third_trunc =
7131 real_value_truncate (TYPE_MODE (type), dconstthird);
7132 arg = fold_build2 (MULT_EXPR, type,
7133 TREE_VALUE (TREE_OPERAND (arg, 1)),
7134 build_real (type, third_trunc));
7135 arglist = build_tree_list (NULL_TREE, arg);
7136 return build_function_call_expr (expfn, arglist);
7139 /* Optimize cbrt(sqrt(x)) -> pow(x,1/6). */
7140 if (BUILTIN_SQRT_P (fcode))
7142 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
7144 if (powfn)
7146 tree arg0 = TREE_VALUE (TREE_OPERAND (arg, 1));
7147 tree tree_root;
7148 REAL_VALUE_TYPE dconstroot = dconstthird;
7150 SET_REAL_EXP (&dconstroot, REAL_EXP (&dconstroot) - 1);
7151 dconstroot = real_value_truncate (TYPE_MODE (type), dconstroot);
7152 tree_root = build_real (type, dconstroot);
7153 arglist = tree_cons (NULL_TREE, arg0,
7154 build_tree_list (NULL_TREE, tree_root));
7155 return build_function_call_expr (powfn, arglist);
7159 /* Optimize cbrt(cbrt(x)) -> pow(x,1/9) iff x is nonnegative. */
7160 if (BUILTIN_CBRT_P (fcode))
7162 tree arg0 = TREE_VALUE (TREE_OPERAND (arg, 1));
7163 if (tree_expr_nonnegative_p (arg0))
7165 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
7167 if (powfn)
7169 tree tree_root;
7170 REAL_VALUE_TYPE dconstroot;
7172 real_arithmetic (&dconstroot, MULT_EXPR, &dconstthird, &dconstthird);
7173 dconstroot = real_value_truncate (TYPE_MODE (type), dconstroot);
7174 tree_root = build_real (type, dconstroot);
7175 arglist = tree_cons (NULL_TREE, arg0,
7176 build_tree_list (NULL_TREE, tree_root));
7177 return build_function_call_expr (powfn, arglist);
7182 /* Optimize cbrt(pow(x,y)) -> pow(x,y/3) iff x is nonnegative. */
7183 if (fcode == BUILT_IN_POW || fcode == BUILT_IN_POWF
7184 || fcode == BUILT_IN_POWL)
7186 tree arg00 = TREE_VALUE (TREE_OPERAND (arg, 1));
7187 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg, 1)));
7188 if (tree_expr_nonnegative_p (arg00))
7190 tree powfn = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
7191 const REAL_VALUE_TYPE dconstroot
7192 = real_value_truncate (TYPE_MODE (type), dconstthird);
7193 tree narg01 = fold_build2 (MULT_EXPR, type, arg01,
7194 build_real (type, dconstroot));
7195 arglist = tree_cons (NULL_TREE, arg00,
7196 build_tree_list (NULL_TREE, narg01));
7197 return build_function_call_expr (powfn, arglist);
7201 return NULL_TREE;
7204 /* Fold function call to builtin cos, cosf, or cosl. Return
7205 NULL_TREE if no simplification can be made. */
7206 static tree
7207 fold_builtin_cos (tree arglist, tree type, tree fndecl)
7209 tree arg = TREE_VALUE (arglist);
7210 tree res;
7212 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7213 return NULL_TREE;
7215 /* Calculate the result when the argument is a constant. */
7216 if ((res = do_mpfr_arg1 (arg, type, mpfr_cos, NULL, NULL, 0)))
7217 return res;
7219 /* Optimize cos(-x) into cos (x). */
7220 if (TREE_CODE (arg) == NEGATE_EXPR)
7222 tree args = build_tree_list (NULL_TREE,
7223 TREE_OPERAND (arg, 0));
7224 return build_function_call_expr (fndecl, args);
7227 return NULL_TREE;
7230 /* Fold function call to builtin tan, tanf, or tanl. Return
7231 NULL_TREE if no simplification can be made. */
7232 static tree
7233 fold_builtin_tan (tree arglist, tree type)
7235 enum built_in_function fcode;
7236 tree arg = TREE_VALUE (arglist);
7237 tree res;
7239 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7240 return NULL_TREE;
7242 /* Calculate the result when the argument is a constant. */
7243 if ((res = do_mpfr_arg1 (arg, type, mpfr_tan, NULL, NULL, 0)))
7244 return res;
7246 /* Optimize tan(atan(x)) = x. */
7247 fcode = builtin_mathfn_code (arg);
7248 if (flag_unsafe_math_optimizations
7249 && (fcode == BUILT_IN_ATAN
7250 || fcode == BUILT_IN_ATANF
7251 || fcode == BUILT_IN_ATANL))
7252 return TREE_VALUE (TREE_OPERAND (arg, 1));
7254 return NULL_TREE;
7257 /* Fold function call to builtin trunc, truncf or truncl. Return
7258 NULL_TREE if no simplification can be made. */
7260 static tree
7261 fold_builtin_trunc (tree fndecl, tree arglist)
7263 tree arg;
7265 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7266 return 0;
7268 /* Optimize trunc of constant value. */
7269 arg = TREE_VALUE (arglist);
7270 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7272 REAL_VALUE_TYPE r, x;
7273 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7275 x = TREE_REAL_CST (arg);
7276 real_trunc (&r, TYPE_MODE (type), &x);
7277 return build_real (type, r);
7280 return fold_trunc_transparent_mathfn (fndecl, arglist);
7283 /* Fold function call to builtin floor, floorf or floorl. Return
7284 NULL_TREE if no simplification can be made. */
7286 static tree
7287 fold_builtin_floor (tree fndecl, tree arglist)
7289 tree arg;
7291 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7292 return 0;
7294 /* Optimize floor of constant value. */
7295 arg = TREE_VALUE (arglist);
7296 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7298 REAL_VALUE_TYPE x;
7300 x = TREE_REAL_CST (arg);
7301 if (! REAL_VALUE_ISNAN (x) || ! flag_errno_math)
7303 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7304 REAL_VALUE_TYPE r;
7306 real_floor (&r, TYPE_MODE (type), &x);
7307 return build_real (type, r);
7311 /* Fold floor (x) where x is nonnegative to trunc (x). */
7312 if (tree_expr_nonnegative_p (arg))
7314 tree truncfn = mathfn_built_in (TREE_TYPE (arg), BUILT_IN_TRUNC);
7315 if (truncfn)
7316 return build_function_call_expr (truncfn, arglist);
7319 return fold_trunc_transparent_mathfn (fndecl, arglist);
7322 /* Fold function call to builtin ceil, ceilf or ceill. Return
7323 NULL_TREE if no simplification can be made. */
7325 static tree
7326 fold_builtin_ceil (tree fndecl, tree arglist)
7328 tree arg;
7330 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7331 return 0;
7333 /* Optimize ceil of constant value. */
7334 arg = TREE_VALUE (arglist);
7335 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7337 REAL_VALUE_TYPE x;
7339 x = TREE_REAL_CST (arg);
7340 if (! REAL_VALUE_ISNAN (x) || ! flag_errno_math)
7342 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7343 REAL_VALUE_TYPE r;
7345 real_ceil (&r, TYPE_MODE (type), &x);
7346 return build_real (type, r);
7350 return fold_trunc_transparent_mathfn (fndecl, arglist);
7353 /* Fold function call to builtin round, roundf or roundl. Return
7354 NULL_TREE if no simplification can be made. */
7356 static tree
7357 fold_builtin_round (tree fndecl, tree arglist)
7359 tree arg;
7361 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7362 return 0;
7364 /* Optimize round of constant value. */
7365 arg = TREE_VALUE (arglist);
7366 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7368 REAL_VALUE_TYPE x;
7370 x = TREE_REAL_CST (arg);
7371 if (! REAL_VALUE_ISNAN (x) || ! flag_errno_math)
7373 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7374 REAL_VALUE_TYPE r;
7376 real_round (&r, TYPE_MODE (type), &x);
7377 return build_real (type, r);
7381 return fold_trunc_transparent_mathfn (fndecl, arglist);
7384 /* Fold function call to builtin lround, lroundf or lroundl (or the
7385 corresponding long long versions) and other rounding functions.
7386 Return NULL_TREE if no simplification can be made. */
7388 static tree
7389 fold_builtin_int_roundingfn (tree fndecl, tree arglist)
7391 tree arg;
7393 if (! validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7394 return 0;
7396 /* Optimize lround of constant value. */
7397 arg = TREE_VALUE (arglist);
7398 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7400 const REAL_VALUE_TYPE x = TREE_REAL_CST (arg);
7402 if (! REAL_VALUE_ISNAN (x) && ! REAL_VALUE_ISINF (x))
7404 tree itype = TREE_TYPE (TREE_TYPE (fndecl));
7405 tree ftype = TREE_TYPE (arg), result;
7406 HOST_WIDE_INT hi, lo;
7407 REAL_VALUE_TYPE r;
7409 switch (DECL_FUNCTION_CODE (fndecl))
7411 CASE_FLT_FN (BUILT_IN_LFLOOR):
7412 CASE_FLT_FN (BUILT_IN_LLFLOOR):
7413 real_floor (&r, TYPE_MODE (ftype), &x);
7414 break;
7416 CASE_FLT_FN (BUILT_IN_LCEIL):
7417 CASE_FLT_FN (BUILT_IN_LLCEIL):
7418 real_ceil (&r, TYPE_MODE (ftype), &x);
7419 break;
7421 CASE_FLT_FN (BUILT_IN_LROUND):
7422 CASE_FLT_FN (BUILT_IN_LLROUND):
7423 real_round (&r, TYPE_MODE (ftype), &x);
7424 break;
7426 default:
7427 gcc_unreachable ();
7430 REAL_VALUE_TO_INT (&lo, &hi, r);
7431 result = build_int_cst_wide (NULL_TREE, lo, hi);
7432 if (int_fits_type_p (result, itype))
7433 return fold_convert (itype, result);
7437 switch (DECL_FUNCTION_CODE (fndecl))
7439 CASE_FLT_FN (BUILT_IN_LFLOOR):
7440 CASE_FLT_FN (BUILT_IN_LLFLOOR):
7441 /* Fold lfloor (x) where x is nonnegative to FIX_TRUNC (x). */
7442 if (tree_expr_nonnegative_p (arg))
7443 return fold_build1 (FIX_TRUNC_EXPR, TREE_TYPE (TREE_TYPE (fndecl)),
7444 arg);
7445 break;
7446 default:;
7449 return fold_fixed_mathfn (fndecl, arglist);
7452 /* Fold function call to builtin ffs, clz, ctz, popcount and parity
7453 and their long and long long variants (i.e. ffsl and ffsll).
7454 Return NULL_TREE if no simplification can be made. */
7456 static tree
7457 fold_builtin_bitop (tree fndecl, tree arglist)
7459 tree arg;
7461 if (! validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
7462 return NULL_TREE;
7464 /* Optimize for constant argument. */
7465 arg = TREE_VALUE (arglist);
7466 if (TREE_CODE (arg) == INTEGER_CST && ! TREE_CONSTANT_OVERFLOW (arg))
7468 HOST_WIDE_INT hi, width, result;
7469 unsigned HOST_WIDE_INT lo;
7470 tree type;
7472 type = TREE_TYPE (arg);
7473 width = TYPE_PRECISION (type);
7474 lo = TREE_INT_CST_LOW (arg);
7476 /* Clear all the bits that are beyond the type's precision. */
7477 if (width > HOST_BITS_PER_WIDE_INT)
7479 hi = TREE_INT_CST_HIGH (arg);
7480 if (width < 2 * HOST_BITS_PER_WIDE_INT)
7481 hi &= ~((HOST_WIDE_INT) (-1) >> (width - HOST_BITS_PER_WIDE_INT));
7483 else
7485 hi = 0;
7486 if (width < HOST_BITS_PER_WIDE_INT)
7487 lo &= ~((unsigned HOST_WIDE_INT) (-1) << width);
7490 switch (DECL_FUNCTION_CODE (fndecl))
7492 CASE_INT_FN (BUILT_IN_FFS):
7493 if (lo != 0)
7494 result = exact_log2 (lo & -lo) + 1;
7495 else if (hi != 0)
7496 result = HOST_BITS_PER_WIDE_INT + exact_log2 (hi & -hi) + 1;
7497 else
7498 result = 0;
7499 break;
7501 CASE_INT_FN (BUILT_IN_CLZ):
7502 if (hi != 0)
7503 result = width - floor_log2 (hi) - 1 - HOST_BITS_PER_WIDE_INT;
7504 else if (lo != 0)
7505 result = width - floor_log2 (lo) - 1;
7506 else if (! CLZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type), result))
7507 result = width;
7508 break;
7510 CASE_INT_FN (BUILT_IN_CTZ):
7511 if (lo != 0)
7512 result = exact_log2 (lo & -lo);
7513 else if (hi != 0)
7514 result = HOST_BITS_PER_WIDE_INT + exact_log2 (hi & -hi);
7515 else if (! CTZ_DEFINED_VALUE_AT_ZERO (TYPE_MODE (type), result))
7516 result = width;
7517 break;
7519 CASE_INT_FN (BUILT_IN_POPCOUNT):
7520 result = 0;
7521 while (lo)
7522 result++, lo &= lo - 1;
7523 while (hi)
7524 result++, hi &= hi - 1;
7525 break;
7527 CASE_INT_FN (BUILT_IN_PARITY):
7528 result = 0;
7529 while (lo)
7530 result++, lo &= lo - 1;
7531 while (hi)
7532 result++, hi &= hi - 1;
7533 result &= 1;
7534 break;
7536 default:
7537 gcc_unreachable ();
7540 return build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), result);
7543 return NULL_TREE;
7546 /* Return true if EXPR is the real constant contained in VALUE. */
7548 static bool
7549 real_dconstp (tree expr, const REAL_VALUE_TYPE *value)
7551 STRIP_NOPS (expr);
7553 return ((TREE_CODE (expr) == REAL_CST
7554 && ! TREE_CONSTANT_OVERFLOW (expr)
7555 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), *value))
7556 || (TREE_CODE (expr) == COMPLEX_CST
7557 && real_dconstp (TREE_REALPART (expr), value)
7558 && real_zerop (TREE_IMAGPART (expr))));
7561 /* A subroutine of fold_builtin to fold the various logarithmic
7562 functions. Return NULL_TREE if no simplification can me made.
7563 FUNC is the corresponding MPFR logarithm function. */
7565 static tree
7566 fold_builtin_logarithm (tree fndecl, tree arglist,
7567 int (*func)(mpfr_ptr, mpfr_srcptr, mp_rnd_t))
7569 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7571 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7572 tree arg = TREE_VALUE (arglist);
7573 tree res;
7574 const enum built_in_function fcode = builtin_mathfn_code (arg);
7576 /* Optimize log(e) = 1.0. We're never passed an exact 'e',
7577 instead we'll look for 'e' truncated to MODE. So only do
7578 this if flag_unsafe_math_optimizations is set. */
7579 if (flag_unsafe_math_optimizations && func == mpfr_log)
7581 const REAL_VALUE_TYPE e_truncated =
7582 real_value_truncate (TYPE_MODE (type), dconste);
7583 if (real_dconstp (arg, &e_truncated))
7584 return build_real (type, dconst1);
7587 /* Calculate the result when the argument is a constant. */
7588 if ((res = do_mpfr_arg1 (arg, type, func, &dconst0, NULL, false)))
7589 return res;
7591 /* Special case, optimize logN(expN(x)) = x. */
7592 if (flag_unsafe_math_optimizations
7593 && ((func == mpfr_log
7594 && (fcode == BUILT_IN_EXP
7595 || fcode == BUILT_IN_EXPF
7596 || fcode == BUILT_IN_EXPL))
7597 || (func == mpfr_log2
7598 && (fcode == BUILT_IN_EXP2
7599 || fcode == BUILT_IN_EXP2F
7600 || fcode == BUILT_IN_EXP2L))
7601 || (func == mpfr_log10 && (BUILTIN_EXP10_P (fcode)))))
7602 return fold_convert (type, TREE_VALUE (TREE_OPERAND (arg, 1)));
7604 /* Optimize logN(func()) for various exponential functions. We
7605 want to determine the value "x" and the power "exponent" in
7606 order to transform logN(x**exponent) into exponent*logN(x). */
7607 if (flag_unsafe_math_optimizations)
7609 tree exponent = 0, x = 0;
7611 switch (fcode)
7613 CASE_FLT_FN (BUILT_IN_EXP):
7614 /* Prepare to do logN(exp(exponent) -> exponent*logN(e). */
7615 x = build_real (type,
7616 real_value_truncate (TYPE_MODE (type), dconste));
7617 exponent = TREE_VALUE (TREE_OPERAND (arg, 1));
7618 break;
7619 CASE_FLT_FN (BUILT_IN_EXP2):
7620 /* Prepare to do logN(exp2(exponent) -> exponent*logN(2). */
7621 x = build_real (type, dconst2);
7622 exponent = TREE_VALUE (TREE_OPERAND (arg, 1));
7623 break;
7624 CASE_FLT_FN (BUILT_IN_EXP10):
7625 CASE_FLT_FN (BUILT_IN_POW10):
7626 /* Prepare to do logN(exp10(exponent) -> exponent*logN(10). */
7627 x = build_real (type, dconst10);
7628 exponent = TREE_VALUE (TREE_OPERAND (arg, 1));
7629 break;
7630 CASE_FLT_FN (BUILT_IN_SQRT):
7631 /* Prepare to do logN(sqrt(x) -> 0.5*logN(x). */
7632 x = TREE_VALUE (TREE_OPERAND (arg, 1));
7633 exponent = build_real (type, dconsthalf);
7634 break;
7635 CASE_FLT_FN (BUILT_IN_CBRT):
7636 /* Prepare to do logN(cbrt(x) -> (1/3)*logN(x). */
7637 x = TREE_VALUE (TREE_OPERAND (arg, 1));
7638 exponent = build_real (type, real_value_truncate (TYPE_MODE (type),
7639 dconstthird));
7640 break;
7641 CASE_FLT_FN (BUILT_IN_POW):
7642 /* Prepare to do logN(pow(x,exponent) -> exponent*logN(x). */
7643 x = TREE_VALUE (TREE_OPERAND (arg, 1));
7644 exponent = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg, 1)));
7645 break;
7646 default:
7647 break;
7650 /* Now perform the optimization. */
7651 if (x && exponent)
7653 tree logfn;
7654 arglist = build_tree_list (NULL_TREE, x);
7655 logfn = build_function_call_expr (fndecl, arglist);
7656 return fold_build2 (MULT_EXPR, type, exponent, logfn);
7661 return 0;
7664 /* Fold a builtin function call to hypot, hypotf, or hypotl. Return
7665 NULL_TREE if no simplification can be made. */
7667 static tree
7668 fold_builtin_hypot (tree fndecl, tree arglist, tree type)
7670 tree arg0 = TREE_VALUE (arglist);
7671 tree arg1 = TREE_VALUE (TREE_CHAIN (arglist));
7672 tree res;
7674 if (!validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
7675 return NULL_TREE;
7677 /* Calculate the result when the argument is a constant. */
7678 if ((res = do_mpfr_arg2 (arg0, arg1, type, mpfr_hypot)))
7679 return res;
7681 /* If either argument to hypot has a negate or abs, strip that off.
7682 E.g. hypot(-x,fabs(y)) -> hypot(x,y). */
7683 if (TREE_CODE (arg0) == NEGATE_EXPR || TREE_CODE (arg1) == NEGATE_EXPR
7684 || TREE_CODE (arg0) == ABS_EXPR || TREE_CODE (arg1) == ABS_EXPR)
7686 tree narg0 = (TREE_CODE (arg0) == NEGATE_EXPR
7687 || TREE_CODE (arg0) == ABS_EXPR)
7688 ? TREE_OPERAND (arg0, 0) : arg0;
7689 tree narg1 = (TREE_CODE (arg1) == NEGATE_EXPR
7690 || TREE_CODE (arg1) == ABS_EXPR)
7691 ? TREE_OPERAND (arg1, 0) : arg1;
7692 tree narglist = tree_cons (NULL_TREE, narg0,
7693 build_tree_list (NULL_TREE, narg1));
7694 return build_function_call_expr (fndecl, narglist);
7697 /* If either argument is zero, hypot is fabs of the other. */
7698 if (real_zerop (arg0))
7699 return fold_build1 (ABS_EXPR, type, arg1);
7700 else if (real_zerop (arg1))
7701 return fold_build1 (ABS_EXPR, type, arg0);
7703 /* hypot(x,x) -> fabs(x)*sqrt(2). */
7704 if (flag_unsafe_math_optimizations
7705 && operand_equal_p (arg0, arg1, OEP_PURE_SAME))
7707 REAL_VALUE_TYPE sqrt2;
7709 real_sqrt (&sqrt2, TYPE_MODE (type), &dconst2);
7710 return fold_build2 (MULT_EXPR, type,
7711 fold_build1 (ABS_EXPR, type, arg0),
7712 build_real (type, sqrt2));
7715 return NULL_TREE;
7719 /* Fold a builtin function call to pow, powf, or powl. Return
7720 NULL_TREE if no simplification can be made. */
7721 static tree
7722 fold_builtin_pow (tree fndecl, tree arglist, tree type)
7724 tree arg0 = TREE_VALUE (arglist);
7725 tree arg1 = TREE_VALUE (TREE_CHAIN (arglist));
7726 tree res;
7728 if (!validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
7729 return NULL_TREE;
7731 /* Calculate the result when the argument is a constant. */
7732 if ((res = do_mpfr_arg2 (arg0, arg1, type, mpfr_pow)))
7733 return res;
7735 /* Optimize pow(1.0,y) = 1.0. */
7736 if (real_onep (arg0))
7737 return omit_one_operand (type, build_real (type, dconst1), arg1);
7739 if (TREE_CODE (arg1) == REAL_CST
7740 && ! TREE_CONSTANT_OVERFLOW (arg1))
7742 REAL_VALUE_TYPE cint;
7743 REAL_VALUE_TYPE c;
7744 HOST_WIDE_INT n;
7746 c = TREE_REAL_CST (arg1);
7748 /* Optimize pow(x,0.0) = 1.0. */
7749 if (REAL_VALUES_EQUAL (c, dconst0))
7750 return omit_one_operand (type, build_real (type, dconst1),
7751 arg0);
7753 /* Optimize pow(x,1.0) = x. */
7754 if (REAL_VALUES_EQUAL (c, dconst1))
7755 return arg0;
7757 /* Optimize pow(x,-1.0) = 1.0/x. */
7758 if (REAL_VALUES_EQUAL (c, dconstm1))
7759 return fold_build2 (RDIV_EXPR, type,
7760 build_real (type, dconst1), arg0);
7762 /* Optimize pow(x,0.5) = sqrt(x). */
7763 if (flag_unsafe_math_optimizations
7764 && REAL_VALUES_EQUAL (c, dconsthalf))
7766 tree sqrtfn = mathfn_built_in (type, BUILT_IN_SQRT);
7768 if (sqrtfn != NULL_TREE)
7770 tree arglist = build_tree_list (NULL_TREE, arg0);
7771 return build_function_call_expr (sqrtfn, arglist);
7775 /* Optimize pow(x,1.0/3.0) = cbrt(x). */
7776 if (flag_unsafe_math_optimizations)
7778 const REAL_VALUE_TYPE dconstroot
7779 = real_value_truncate (TYPE_MODE (type), dconstthird);
7781 if (REAL_VALUES_EQUAL (c, dconstroot))
7783 tree cbrtfn = mathfn_built_in (type, BUILT_IN_CBRT);
7784 if (cbrtfn != NULL_TREE)
7786 tree arglist = build_tree_list (NULL_TREE, arg0);
7787 return build_function_call_expr (cbrtfn, arglist);
7792 /* Check for an integer exponent. */
7793 n = real_to_integer (&c);
7794 real_from_integer (&cint, VOIDmode, n, n < 0 ? -1 : 0, 0);
7795 if (real_identical (&c, &cint))
7797 /* Attempt to evaluate pow at compile-time. */
7798 if (TREE_CODE (arg0) == REAL_CST
7799 && ! TREE_CONSTANT_OVERFLOW (arg0))
7801 REAL_VALUE_TYPE x;
7802 bool inexact;
7804 x = TREE_REAL_CST (arg0);
7805 inexact = real_powi (&x, TYPE_MODE (type), &x, n);
7806 if (flag_unsafe_math_optimizations || !inexact)
7807 return build_real (type, x);
7810 /* Strip sign ops from even integer powers. */
7811 if ((n & 1) == 0 && flag_unsafe_math_optimizations)
7813 tree narg0 = fold_strip_sign_ops (arg0);
7814 if (narg0)
7816 arglist = build_tree_list (NULL_TREE, arg1);
7817 arglist = tree_cons (NULL_TREE, narg0, arglist);
7818 return build_function_call_expr (fndecl, arglist);
7824 if (flag_unsafe_math_optimizations)
7826 const enum built_in_function fcode = builtin_mathfn_code (arg0);
7828 /* Optimize pow(expN(x),y) = expN(x*y). */
7829 if (BUILTIN_EXPONENT_P (fcode))
7831 tree expfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7832 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
7833 arg = fold_build2 (MULT_EXPR, type, arg, arg1);
7834 arglist = build_tree_list (NULL_TREE, arg);
7835 return build_function_call_expr (expfn, arglist);
7838 /* Optimize pow(sqrt(x),y) = pow(x,y*0.5). */
7839 if (BUILTIN_SQRT_P (fcode))
7841 tree narg0 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7842 tree narg1 = fold_build2 (MULT_EXPR, type, arg1,
7843 build_real (type, dconsthalf));
7845 arglist = tree_cons (NULL_TREE, narg0,
7846 build_tree_list (NULL_TREE, narg1));
7847 return build_function_call_expr (fndecl, arglist);
7850 /* Optimize pow(cbrt(x),y) = pow(x,y/3) iff x is nonnegative. */
7851 if (BUILTIN_CBRT_P (fcode))
7853 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
7854 if (tree_expr_nonnegative_p (arg))
7856 const REAL_VALUE_TYPE dconstroot
7857 = real_value_truncate (TYPE_MODE (type), dconstthird);
7858 tree narg1 = fold_build2 (MULT_EXPR, type, arg1,
7859 build_real (type, dconstroot));
7860 arglist = tree_cons (NULL_TREE, arg,
7861 build_tree_list (NULL_TREE, narg1));
7862 return build_function_call_expr (fndecl, arglist);
7866 /* Optimize pow(pow(x,y),z) = pow(x,y*z). */
7867 if (fcode == BUILT_IN_POW || fcode == BUILT_IN_POWF
7868 || fcode == BUILT_IN_POWL)
7870 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7871 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0, 1)));
7872 tree narg1 = fold_build2 (MULT_EXPR, type, arg01, arg1);
7873 arglist = tree_cons (NULL_TREE, arg00,
7874 build_tree_list (NULL_TREE, narg1));
7875 return build_function_call_expr (fndecl, arglist);
7879 return NULL_TREE;
7882 /* Fold a builtin function call to powi, powif, or powil. Return
7883 NULL_TREE if no simplification can be made. */
7884 static tree
7885 fold_builtin_powi (tree fndecl ATTRIBUTE_UNUSED, tree arglist, tree type)
7887 tree arg0 = TREE_VALUE (arglist);
7888 tree arg1 = TREE_VALUE (TREE_CHAIN (arglist));
7890 if (!validate_arglist (arglist, REAL_TYPE, INTEGER_TYPE, VOID_TYPE))
7891 return NULL_TREE;
7893 /* Optimize pow(1.0,y) = 1.0. */
7894 if (real_onep (arg0))
7895 return omit_one_operand (type, build_real (type, dconst1), arg1);
7897 if (host_integerp (arg1, 0))
7899 HOST_WIDE_INT c = TREE_INT_CST_LOW (arg1);
7901 /* Evaluate powi at compile-time. */
7902 if (TREE_CODE (arg0) == REAL_CST
7903 && ! TREE_CONSTANT_OVERFLOW (arg0))
7905 REAL_VALUE_TYPE x;
7906 x = TREE_REAL_CST (arg0);
7907 real_powi (&x, TYPE_MODE (type), &x, c);
7908 return build_real (type, x);
7911 /* Optimize pow(x,0) = 1.0. */
7912 if (c == 0)
7913 return omit_one_operand (type, build_real (type, dconst1),
7914 arg0);
7916 /* Optimize pow(x,1) = x. */
7917 if (c == 1)
7918 return arg0;
7920 /* Optimize pow(x,-1) = 1.0/x. */
7921 if (c == -1)
7922 return fold_build2 (RDIV_EXPR, type,
7923 build_real (type, dconst1), arg0);
7926 return NULL_TREE;
7929 /* A subroutine of fold_builtin to fold the various exponent
7930 functions. Return NULL_TREE if no simplification can me made.
7931 FUNC is the corresponding MPFR exponent function. */
7933 static tree
7934 fold_builtin_exponent (tree fndecl, tree arglist,
7935 int (*func)(mpfr_ptr, mpfr_srcptr, mp_rnd_t))
7937 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
7939 tree type = TREE_TYPE (TREE_TYPE (fndecl));
7940 tree arg = TREE_VALUE (arglist);
7941 tree res;
7943 /* Calculate the result when the argument is a constant. */
7944 if ((res = do_mpfr_arg1 (arg, type, func, NULL, NULL, 0)))
7945 return res;
7947 /* Optimize expN(logN(x)) = x. */
7948 if (flag_unsafe_math_optimizations)
7950 const enum built_in_function fcode = builtin_mathfn_code (arg);
7952 if ((func == mpfr_exp
7953 && (fcode == BUILT_IN_LOG
7954 || fcode == BUILT_IN_LOGF
7955 || fcode == BUILT_IN_LOGL))
7956 || (func == mpfr_exp2
7957 && (fcode == BUILT_IN_LOG2
7958 || fcode == BUILT_IN_LOG2F
7959 || fcode == BUILT_IN_LOG2L))
7960 || (func == mpfr_exp10
7961 && (fcode == BUILT_IN_LOG10
7962 || fcode == BUILT_IN_LOG10F
7963 || fcode == BUILT_IN_LOG10L)))
7964 return fold_convert (type, TREE_VALUE (TREE_OPERAND (arg, 1)));
7968 return 0;
7971 /* Return true if VAR is a VAR_DECL or a component thereof. */
7973 static bool
7974 var_decl_component_p (tree var)
7976 tree inner = var;
7977 while (handled_component_p (inner))
7978 inner = TREE_OPERAND (inner, 0);
7979 return SSA_VAR_P (inner);
7982 /* Fold function call to builtin memset. Return
7983 NULL_TREE if no simplification can be made. */
7985 static tree
7986 fold_builtin_memset (tree arglist, tree type, bool ignore)
7988 tree dest, c, len, var, ret;
7989 unsigned HOST_WIDE_INT length, cval;
7991 if (!validate_arglist (arglist,
7992 POINTER_TYPE, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
7993 return 0;
7995 dest = TREE_VALUE (arglist);
7996 c = TREE_VALUE (TREE_CHAIN (arglist));
7997 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
7999 if (! host_integerp (len, 1))
8000 return 0;
8002 /* If the LEN parameter is zero, return DEST. */
8003 if (integer_zerop (len))
8004 return omit_one_operand (type, dest, c);
8006 if (! host_integerp (c, 1) || TREE_SIDE_EFFECTS (dest))
8007 return 0;
8009 var = dest;
8010 STRIP_NOPS (var);
8011 if (TREE_CODE (var) != ADDR_EXPR)
8012 return 0;
8014 var = TREE_OPERAND (var, 0);
8015 if (TREE_THIS_VOLATILE (var))
8016 return 0;
8018 if (!INTEGRAL_TYPE_P (TREE_TYPE (var))
8019 && !POINTER_TYPE_P (TREE_TYPE (var)))
8020 return 0;
8022 if (! var_decl_component_p (var))
8023 return 0;
8025 length = tree_low_cst (len, 1);
8026 if (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (var))) != length
8027 || get_pointer_alignment (dest, BIGGEST_ALIGNMENT) / BITS_PER_UNIT
8028 < (int) length)
8029 return 0;
8031 if (length > HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT)
8032 return 0;
8034 if (integer_zerop (c))
8035 cval = 0;
8036 else
8038 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8 || HOST_BITS_PER_WIDE_INT > 64)
8039 return 0;
8041 cval = tree_low_cst (c, 1);
8042 cval &= 0xff;
8043 cval |= cval << 8;
8044 cval |= cval << 16;
8045 cval |= (cval << 31) << 1;
8048 ret = build_int_cst_type (TREE_TYPE (var), cval);
8049 ret = build2 (MODIFY_EXPR, TREE_TYPE (var), var, ret);
8050 if (ignore)
8051 return ret;
8053 return omit_one_operand (type, dest, ret);
8056 /* Fold function call to builtin memset. Return
8057 NULL_TREE if no simplification can be made. */
8059 static tree
8060 fold_builtin_bzero (tree arglist, bool ignore)
8062 tree dest, size, newarglist;
8064 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8065 return 0;
8067 if (!ignore)
8068 return 0;
8070 dest = TREE_VALUE (arglist);
8071 size = TREE_VALUE (TREE_CHAIN (arglist));
8073 /* New argument list transforming bzero(ptr x, int y) to
8074 memset(ptr x, int 0, size_t y). This is done this way
8075 so that if it isn't expanded inline, we fallback to
8076 calling bzero instead of memset. */
8078 newarglist = build_tree_list (NULL_TREE, fold_convert (sizetype, size));
8079 newarglist = tree_cons (NULL_TREE, integer_zero_node, newarglist);
8080 newarglist = tree_cons (NULL_TREE, dest, newarglist);
8081 return fold_builtin_memset (newarglist, void_type_node, ignore);
8084 /* Fold function call to builtin mem{{,p}cpy,move}. Return
8085 NULL_TREE if no simplification can be made.
8086 If ENDP is 0, return DEST (like memcpy).
8087 If ENDP is 1, return DEST+LEN (like mempcpy).
8088 If ENDP is 2, return DEST+LEN-1 (like stpcpy).
8089 If ENDP is 3, return DEST, additionally *SRC and *DEST may overlap
8090 (memmove). */
8092 static tree
8093 fold_builtin_memory_op (tree arglist, tree type, bool ignore, int endp)
8095 tree dest, src, len, destvar, srcvar, expr;
8096 unsigned HOST_WIDE_INT length;
8098 if (! validate_arglist (arglist,
8099 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8100 return 0;
8102 dest = TREE_VALUE (arglist);
8103 src = TREE_VALUE (TREE_CHAIN (arglist));
8104 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
8106 /* If the LEN parameter is zero, return DEST. */
8107 if (integer_zerop (len))
8108 return omit_one_operand (type, dest, src);
8110 /* If SRC and DEST are the same (and not volatile), return
8111 DEST{,+LEN,+LEN-1}. */
8112 if (operand_equal_p (src, dest, 0))
8113 expr = len;
8114 else
8116 if (endp == 3)
8118 unsigned int src_align
8119 = get_pointer_alignment (src, BIGGEST_ALIGNMENT);
8120 unsigned int dest_align
8121 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
8122 /* Both DEST and SRC must be pointer types.
8123 ??? This is what old code did. Is the testing for pointer types
8124 really mandatory?
8126 If either SRC is readonly or length is 1, we can use memcpy. */
8127 if (dest_align && src_align
8128 && (readonly_data_expr (src)
8129 || integer_onep (len)))
8131 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
8132 if (!fn)
8133 return 0;
8134 return build_function_call_expr (fn, arglist);
8137 if (! host_integerp (len, 1))
8138 return 0;
8140 if (TREE_SIDE_EFFECTS (dest) || TREE_SIDE_EFFECTS (src))
8141 return 0;
8143 destvar = dest;
8144 STRIP_NOPS (destvar);
8145 if (TREE_CODE (destvar) != ADDR_EXPR)
8146 return 0;
8148 destvar = TREE_OPERAND (destvar, 0);
8149 if (TREE_THIS_VOLATILE (destvar))
8150 return 0;
8152 if (!INTEGRAL_TYPE_P (TREE_TYPE (destvar))
8153 && !POINTER_TYPE_P (TREE_TYPE (destvar))
8154 && !SCALAR_FLOAT_TYPE_P (TREE_TYPE (destvar)))
8155 return 0;
8157 if (! var_decl_component_p (destvar))
8158 return 0;
8160 srcvar = src;
8161 STRIP_NOPS (srcvar);
8162 if (TREE_CODE (srcvar) != ADDR_EXPR)
8163 return 0;
8165 srcvar = TREE_OPERAND (srcvar, 0);
8166 if (TREE_THIS_VOLATILE (srcvar))
8167 return 0;
8169 if (!INTEGRAL_TYPE_P (TREE_TYPE (srcvar))
8170 && !POINTER_TYPE_P (TREE_TYPE (srcvar))
8171 && !SCALAR_FLOAT_TYPE_P (TREE_TYPE (srcvar)))
8172 return 0;
8174 if (! var_decl_component_p (srcvar))
8175 return 0;
8177 length = tree_low_cst (len, 1);
8178 if (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (destvar))) != length
8179 || get_pointer_alignment (dest, BIGGEST_ALIGNMENT) / BITS_PER_UNIT
8180 < (int) length
8181 || GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (srcvar))) != length
8182 || get_pointer_alignment (src, BIGGEST_ALIGNMENT) / BITS_PER_UNIT
8183 < (int) length)
8184 return 0;
8186 if ((INTEGRAL_TYPE_P (TREE_TYPE (srcvar))
8187 || POINTER_TYPE_P (TREE_TYPE (srcvar)))
8188 && (INTEGRAL_TYPE_P (TREE_TYPE (destvar))
8189 || POINTER_TYPE_P (TREE_TYPE (destvar))))
8190 expr = fold_convert (TREE_TYPE (destvar), srcvar);
8191 else
8192 expr = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (destvar), srcvar);
8193 expr = build2 (MODIFY_EXPR, TREE_TYPE (destvar), destvar, expr);
8196 if (ignore)
8197 return expr;
8199 if (endp == 0 || endp == 3)
8200 return omit_one_operand (type, dest, expr);
8202 if (expr == len)
8203 expr = 0;
8205 if (endp == 2)
8206 len = fold_build2 (MINUS_EXPR, TREE_TYPE (len), len,
8207 ssize_int (1));
8209 len = fold_convert (TREE_TYPE (dest), len);
8210 dest = fold_build2 (PLUS_EXPR, TREE_TYPE (dest), dest, len);
8211 dest = fold_convert (type, dest);
8212 if (expr)
8213 dest = omit_one_operand (type, dest, expr);
8214 return dest;
8217 /* Fold function call to builtin bcopy. Return NULL_TREE if no
8218 simplification can be made. */
8220 static tree
8221 fold_builtin_bcopy (tree arglist, bool ignore)
8223 tree src, dest, size, newarglist;
8225 if (!validate_arglist (arglist,
8226 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8227 return 0;
8229 if (! ignore)
8230 return 0;
8232 src = TREE_VALUE (arglist);
8233 dest = TREE_VALUE (TREE_CHAIN (arglist));
8234 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
8236 /* New argument list transforming bcopy(ptr x, ptr y, int z) to
8237 memmove(ptr y, ptr x, size_t z). This is done this way
8238 so that if it isn't expanded inline, we fallback to
8239 calling bcopy instead of memmove. */
8241 newarglist = build_tree_list (NULL_TREE, fold_convert (sizetype, size));
8242 newarglist = tree_cons (NULL_TREE, src, newarglist);
8243 newarglist = tree_cons (NULL_TREE, dest, newarglist);
8245 return fold_builtin_memory_op (newarglist, void_type_node, true, /*endp=*/3);
8248 /* Fold function call to builtin strcpy. If LEN is not NULL, it represents
8249 the length of the string to be copied. Return NULL_TREE if no
8250 simplification can be made. */
8252 tree
8253 fold_builtin_strcpy (tree fndecl, tree arglist, tree len)
8255 tree dest, src, fn;
8257 if (!validate_arglist (arglist,
8258 POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
8259 return 0;
8261 dest = TREE_VALUE (arglist);
8262 src = TREE_VALUE (TREE_CHAIN (arglist));
8264 /* If SRC and DEST are the same (and not volatile), return DEST. */
8265 if (operand_equal_p (src, dest, 0))
8266 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), dest);
8268 if (optimize_size)
8269 return 0;
8271 fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
8272 if (!fn)
8273 return 0;
8275 if (!len)
8277 len = c_strlen (src, 1);
8278 if (! len || TREE_SIDE_EFFECTS (len))
8279 return 0;
8282 len = size_binop (PLUS_EXPR, len, ssize_int (1));
8283 arglist = build_tree_list (NULL_TREE, len);
8284 arglist = tree_cons (NULL_TREE, src, arglist);
8285 arglist = tree_cons (NULL_TREE, dest, arglist);
8286 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)),
8287 build_function_call_expr (fn, arglist));
8290 /* Fold function call to builtin strncpy. If SLEN is not NULL, it represents
8291 the length of the source string. Return NULL_TREE if no simplification
8292 can be made. */
8294 tree
8295 fold_builtin_strncpy (tree fndecl, tree arglist, tree slen)
8297 tree dest, src, len, fn;
8299 if (!validate_arglist (arglist,
8300 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8301 return 0;
8303 dest = TREE_VALUE (arglist);
8304 src = TREE_VALUE (TREE_CHAIN (arglist));
8305 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
8307 /* If the LEN parameter is zero, return DEST. */
8308 if (integer_zerop (len))
8309 return omit_one_operand (TREE_TYPE (TREE_TYPE (fndecl)), dest, src);
8311 /* We can't compare slen with len as constants below if len is not a
8312 constant. */
8313 if (len == 0 || TREE_CODE (len) != INTEGER_CST)
8314 return 0;
8316 if (!slen)
8317 slen = c_strlen (src, 1);
8319 /* Now, we must be passed a constant src ptr parameter. */
8320 if (slen == 0 || TREE_CODE (slen) != INTEGER_CST)
8321 return 0;
8323 slen = size_binop (PLUS_EXPR, slen, ssize_int (1));
8325 /* We do not support simplification of this case, though we do
8326 support it when expanding trees into RTL. */
8327 /* FIXME: generate a call to __builtin_memset. */
8328 if (tree_int_cst_lt (slen, len))
8329 return 0;
8331 /* OK transform into builtin memcpy. */
8332 fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
8333 if (!fn)
8334 return 0;
8335 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)),
8336 build_function_call_expr (fn, arglist));
8339 /* Fold function call to builtin memcmp. Return
8340 NULL_TREE if no simplification can be made. */
8342 static tree
8343 fold_builtin_memcmp (tree arglist)
8345 tree arg1, arg2, len;
8346 const char *p1, *p2;
8348 if (!validate_arglist (arglist,
8349 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8350 return 0;
8352 arg1 = TREE_VALUE (arglist);
8353 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
8354 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
8356 /* If the LEN parameter is zero, return zero. */
8357 if (integer_zerop (len))
8358 return omit_two_operands (integer_type_node, integer_zero_node,
8359 arg1, arg2);
8361 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
8362 if (operand_equal_p (arg1, arg2, 0))
8363 return omit_one_operand (integer_type_node, integer_zero_node, len);
8365 p1 = c_getstr (arg1);
8366 p2 = c_getstr (arg2);
8368 /* If all arguments are constant, and the value of len is not greater
8369 than the lengths of arg1 and arg2, evaluate at compile-time. */
8370 if (host_integerp (len, 1) && p1 && p2
8371 && compare_tree_int (len, strlen (p1) + 1) <= 0
8372 && compare_tree_int (len, strlen (p2) + 1) <= 0)
8374 const int r = memcmp (p1, p2, tree_low_cst (len, 1));
8376 if (r > 0)
8377 return integer_one_node;
8378 else if (r < 0)
8379 return integer_minus_one_node;
8380 else
8381 return integer_zero_node;
8384 /* If len parameter is one, return an expression corresponding to
8385 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
8386 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 1)
8388 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8389 tree cst_uchar_ptr_node
8390 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8392 tree ind1 = fold_convert (integer_type_node,
8393 build1 (INDIRECT_REF, cst_uchar_node,
8394 fold_convert (cst_uchar_ptr_node,
8395 arg1)));
8396 tree ind2 = fold_convert (integer_type_node,
8397 build1 (INDIRECT_REF, cst_uchar_node,
8398 fold_convert (cst_uchar_ptr_node,
8399 arg2)));
8400 return fold_build2 (MINUS_EXPR, integer_type_node, ind1, ind2);
8403 return 0;
8406 /* Fold function call to builtin strcmp. Return
8407 NULL_TREE if no simplification can be made. */
8409 static tree
8410 fold_builtin_strcmp (tree arglist)
8412 tree arg1, arg2;
8413 const char *p1, *p2;
8415 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
8416 return 0;
8418 arg1 = TREE_VALUE (arglist);
8419 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
8421 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
8422 if (operand_equal_p (arg1, arg2, 0))
8423 return integer_zero_node;
8425 p1 = c_getstr (arg1);
8426 p2 = c_getstr (arg2);
8428 if (p1 && p2)
8430 const int i = strcmp (p1, p2);
8431 if (i < 0)
8432 return integer_minus_one_node;
8433 else if (i > 0)
8434 return integer_one_node;
8435 else
8436 return integer_zero_node;
8439 /* If the second arg is "", return *(const unsigned char*)arg1. */
8440 if (p2 && *p2 == '\0')
8442 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8443 tree cst_uchar_ptr_node
8444 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8446 return fold_convert (integer_type_node,
8447 build1 (INDIRECT_REF, cst_uchar_node,
8448 fold_convert (cst_uchar_ptr_node,
8449 arg1)));
8452 /* If the first arg is "", return -*(const unsigned char*)arg2. */
8453 if (p1 && *p1 == '\0')
8455 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8456 tree cst_uchar_ptr_node
8457 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8459 tree temp = fold_convert (integer_type_node,
8460 build1 (INDIRECT_REF, cst_uchar_node,
8461 fold_convert (cst_uchar_ptr_node,
8462 arg2)));
8463 return fold_build1 (NEGATE_EXPR, integer_type_node, temp);
8466 return 0;
8469 /* Fold function call to builtin strncmp. Return
8470 NULL_TREE if no simplification can be made. */
8472 static tree
8473 fold_builtin_strncmp (tree arglist)
8475 tree arg1, arg2, len;
8476 const char *p1, *p2;
8478 if (!validate_arglist (arglist,
8479 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
8480 return 0;
8482 arg1 = TREE_VALUE (arglist);
8483 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
8484 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
8486 /* If the LEN parameter is zero, return zero. */
8487 if (integer_zerop (len))
8488 return omit_two_operands (integer_type_node, integer_zero_node,
8489 arg1, arg2);
8491 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
8492 if (operand_equal_p (arg1, arg2, 0))
8493 return omit_one_operand (integer_type_node, integer_zero_node, len);
8495 p1 = c_getstr (arg1);
8496 p2 = c_getstr (arg2);
8498 if (host_integerp (len, 1) && p1 && p2)
8500 const int i = strncmp (p1, p2, tree_low_cst (len, 1));
8501 if (i > 0)
8502 return integer_one_node;
8503 else if (i < 0)
8504 return integer_minus_one_node;
8505 else
8506 return integer_zero_node;
8509 /* If the second arg is "", and the length is greater than zero,
8510 return *(const unsigned char*)arg1. */
8511 if (p2 && *p2 == '\0'
8512 && TREE_CODE (len) == INTEGER_CST
8513 && tree_int_cst_sgn (len) == 1)
8515 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8516 tree cst_uchar_ptr_node
8517 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8519 return fold_convert (integer_type_node,
8520 build1 (INDIRECT_REF, cst_uchar_node,
8521 fold_convert (cst_uchar_ptr_node,
8522 arg1)));
8525 /* If the first arg is "", and the length is greater than zero,
8526 return -*(const unsigned char*)arg2. */
8527 if (p1 && *p1 == '\0'
8528 && TREE_CODE (len) == INTEGER_CST
8529 && tree_int_cst_sgn (len) == 1)
8531 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8532 tree cst_uchar_ptr_node
8533 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8535 tree temp = fold_convert (integer_type_node,
8536 build1 (INDIRECT_REF, cst_uchar_node,
8537 fold_convert (cst_uchar_ptr_node,
8538 arg2)));
8539 return fold_build1 (NEGATE_EXPR, integer_type_node, temp);
8542 /* If len parameter is one, return an expression corresponding to
8543 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
8544 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 1)
8546 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8547 tree cst_uchar_ptr_node
8548 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8550 tree ind1 = fold_convert (integer_type_node,
8551 build1 (INDIRECT_REF, cst_uchar_node,
8552 fold_convert (cst_uchar_ptr_node,
8553 arg1)));
8554 tree ind2 = fold_convert (integer_type_node,
8555 build1 (INDIRECT_REF, cst_uchar_node,
8556 fold_convert (cst_uchar_ptr_node,
8557 arg2)));
8558 return fold_build2 (MINUS_EXPR, integer_type_node, ind1, ind2);
8561 return 0;
8564 /* Fold function call to builtin signbit, signbitf or signbitl. Return
8565 NULL_TREE if no simplification can be made. */
8567 static tree
8568 fold_builtin_signbit (tree fndecl, tree arglist)
8570 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8571 tree arg, temp;
8573 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
8574 return NULL_TREE;
8576 arg = TREE_VALUE (arglist);
8578 /* If ARG is a compile-time constant, determine the result. */
8579 if (TREE_CODE (arg) == REAL_CST
8580 && !TREE_CONSTANT_OVERFLOW (arg))
8582 REAL_VALUE_TYPE c;
8584 c = TREE_REAL_CST (arg);
8585 temp = REAL_VALUE_NEGATIVE (c) ? integer_one_node : integer_zero_node;
8586 return fold_convert (type, temp);
8589 /* If ARG is non-negative, the result is always zero. */
8590 if (tree_expr_nonnegative_p (arg))
8591 return omit_one_operand (type, integer_zero_node, arg);
8593 /* If ARG's format doesn't have signed zeros, return "arg < 0.0". */
8594 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg))))
8595 return fold_build2 (LT_EXPR, type, arg,
8596 build_real (TREE_TYPE (arg), dconst0));
8598 return NULL_TREE;
8601 /* Fold function call to builtin copysign, copysignf or copysignl.
8602 Return NULL_TREE if no simplification can be made. */
8604 static tree
8605 fold_builtin_copysign (tree fndecl, tree arglist, tree type)
8607 tree arg1, arg2, tem;
8609 if (!validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
8610 return NULL_TREE;
8612 arg1 = TREE_VALUE (arglist);
8613 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
8615 /* copysign(X,X) is X. */
8616 if (operand_equal_p (arg1, arg2, 0))
8617 return fold_convert (type, arg1);
8619 /* If ARG1 and ARG2 are compile-time constants, determine the result. */
8620 if (TREE_CODE (arg1) == REAL_CST
8621 && TREE_CODE (arg2) == REAL_CST
8622 && !TREE_CONSTANT_OVERFLOW (arg1)
8623 && !TREE_CONSTANT_OVERFLOW (arg2))
8625 REAL_VALUE_TYPE c1, c2;
8627 c1 = TREE_REAL_CST (arg1);
8628 c2 = TREE_REAL_CST (arg2);
8629 /* c1.sign := c2.sign. */
8630 real_copysign (&c1, &c2);
8631 return build_real (type, c1);
8634 /* copysign(X, Y) is fabs(X) when Y is always non-negative.
8635 Remember to evaluate Y for side-effects. */
8636 if (tree_expr_nonnegative_p (arg2))
8637 return omit_one_operand (type,
8638 fold_build1 (ABS_EXPR, type, arg1),
8639 arg2);
8641 /* Strip sign changing operations for the first argument. */
8642 tem = fold_strip_sign_ops (arg1);
8643 if (tem)
8645 arglist = tree_cons (NULL_TREE, tem, TREE_CHAIN (arglist));
8646 return build_function_call_expr (fndecl, arglist);
8649 return NULL_TREE;
8652 /* Fold a call to builtin isascii. */
8654 static tree
8655 fold_builtin_isascii (tree arglist)
8657 if (! validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
8658 return 0;
8659 else
8661 /* Transform isascii(c) -> ((c & ~0x7f) == 0). */
8662 tree arg = TREE_VALUE (arglist);
8664 arg = build2 (BIT_AND_EXPR, integer_type_node, arg,
8665 build_int_cst (NULL_TREE,
8666 ~ (unsigned HOST_WIDE_INT) 0x7f));
8667 arg = fold_build2 (EQ_EXPR, integer_type_node,
8668 arg, integer_zero_node);
8670 if (in_gimple_form && !TREE_CONSTANT (arg))
8671 return NULL_TREE;
8672 else
8673 return arg;
8677 /* Fold a call to builtin toascii. */
8679 static tree
8680 fold_builtin_toascii (tree arglist)
8682 if (! validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
8683 return 0;
8684 else
8686 /* Transform toascii(c) -> (c & 0x7f). */
8687 tree arg = TREE_VALUE (arglist);
8689 return fold_build2 (BIT_AND_EXPR, integer_type_node, arg,
8690 build_int_cst (NULL_TREE, 0x7f));
8694 /* Fold a call to builtin isdigit. */
8696 static tree
8697 fold_builtin_isdigit (tree arglist)
8699 if (! validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
8700 return 0;
8701 else
8703 /* Transform isdigit(c) -> (unsigned)(c) - '0' <= 9. */
8704 /* According to the C standard, isdigit is unaffected by locale.
8705 However, it definitely is affected by the target character set. */
8706 tree arg;
8707 unsigned HOST_WIDE_INT target_digit0
8708 = lang_hooks.to_target_charset ('0');
8710 if (target_digit0 == 0)
8711 return NULL_TREE;
8713 arg = fold_convert (unsigned_type_node, TREE_VALUE (arglist));
8714 arg = build2 (MINUS_EXPR, unsigned_type_node, arg,
8715 build_int_cst (unsigned_type_node, target_digit0));
8716 arg = fold_build2 (LE_EXPR, integer_type_node, arg,
8717 build_int_cst (unsigned_type_node, 9));
8718 if (in_gimple_form && !TREE_CONSTANT (arg))
8719 return NULL_TREE;
8720 else
8721 return arg;
8725 /* Fold a call to fabs, fabsf or fabsl. */
8727 static tree
8728 fold_builtin_fabs (tree arglist, tree type)
8730 tree arg;
8732 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
8733 return 0;
8735 arg = TREE_VALUE (arglist);
8736 arg = fold_convert (type, arg);
8737 if (TREE_CODE (arg) == REAL_CST)
8738 return fold_abs_const (arg, type);
8739 return fold_build1 (ABS_EXPR, type, arg);
8742 /* Fold a call to abs, labs, llabs or imaxabs. */
8744 static tree
8745 fold_builtin_abs (tree arglist, tree type)
8747 tree arg;
8749 if (!validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
8750 return 0;
8752 arg = TREE_VALUE (arglist);
8753 arg = fold_convert (type, arg);
8754 if (TREE_CODE (arg) == INTEGER_CST)
8755 return fold_abs_const (arg, type);
8756 return fold_build1 (ABS_EXPR, type, arg);
8759 /* Fold a call to __builtin_isnan(), __builtin_isinf, __builtin_finite.
8760 EXP is the CALL_EXPR for the call. */
8762 static tree
8763 fold_builtin_classify (tree fndecl, tree arglist, int builtin_index)
8765 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8766 tree arg;
8767 REAL_VALUE_TYPE r;
8769 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
8771 /* Check that we have exactly one argument. */
8772 if (arglist == 0)
8774 error ("too few arguments to function %qs",
8775 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8776 return error_mark_node;
8778 else if (TREE_CHAIN (arglist) != 0)
8780 error ("too many arguments to function %qs",
8781 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8782 return error_mark_node;
8784 else
8786 error ("non-floating-point argument to function %qs",
8787 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8788 return error_mark_node;
8792 arg = TREE_VALUE (arglist);
8793 switch (builtin_index)
8795 case BUILT_IN_ISINF:
8796 if (!HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg))))
8797 return omit_one_operand (type, integer_zero_node, arg);
8799 if (TREE_CODE (arg) == REAL_CST)
8801 r = TREE_REAL_CST (arg);
8802 if (real_isinf (&r))
8803 return real_compare (GT_EXPR, &r, &dconst0)
8804 ? integer_one_node : integer_minus_one_node;
8805 else
8806 return integer_zero_node;
8809 return NULL_TREE;
8811 case BUILT_IN_FINITE:
8812 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg)))
8813 && !HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg))))
8814 return omit_one_operand (type, integer_one_node, arg);
8816 if (TREE_CODE (arg) == REAL_CST)
8818 r = TREE_REAL_CST (arg);
8819 return real_isinf (&r) || real_isnan (&r)
8820 ? integer_zero_node : integer_one_node;
8823 return NULL_TREE;
8825 case BUILT_IN_ISNAN:
8826 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg))))
8827 return omit_one_operand (type, integer_zero_node, arg);
8829 if (TREE_CODE (arg) == REAL_CST)
8831 r = TREE_REAL_CST (arg);
8832 return real_isnan (&r) ? integer_one_node : integer_zero_node;
8835 arg = builtin_save_expr (arg);
8836 return fold_build2 (UNORDERED_EXPR, type, arg, arg);
8838 default:
8839 gcc_unreachable ();
8843 /* Fold a call to an unordered comparison function such as
8844 __builtin_isgreater(). FNDECL is the FUNCTION_DECL for the function
8845 being called and ARGLIST is the argument list for the call.
8846 UNORDERED_CODE and ORDERED_CODE are comparison codes that give
8847 the opposite of the desired result. UNORDERED_CODE is used
8848 for modes that can hold NaNs and ORDERED_CODE is used for
8849 the rest. */
8851 static tree
8852 fold_builtin_unordered_cmp (tree fndecl, tree arglist,
8853 enum tree_code unordered_code,
8854 enum tree_code ordered_code)
8856 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8857 enum tree_code code;
8858 tree arg0, arg1;
8859 tree type0, type1;
8860 enum tree_code code0, code1;
8861 tree cmp_type = NULL_TREE;
8863 if (!validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
8865 /* Check that we have exactly two arguments. */
8866 if (arglist == 0 || TREE_CHAIN (arglist) == 0)
8868 error ("too few arguments to function %qs",
8869 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8870 return error_mark_node;
8872 else if (TREE_CHAIN (TREE_CHAIN (arglist)) != 0)
8874 error ("too many arguments to function %qs",
8875 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8876 return error_mark_node;
8880 arg0 = TREE_VALUE (arglist);
8881 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
8883 type0 = TREE_TYPE (arg0);
8884 type1 = TREE_TYPE (arg1);
8886 code0 = TREE_CODE (type0);
8887 code1 = TREE_CODE (type1);
8889 if (code0 == REAL_TYPE && code1 == REAL_TYPE)
8890 /* Choose the wider of two real types. */
8891 cmp_type = TYPE_PRECISION (type0) >= TYPE_PRECISION (type1)
8892 ? type0 : type1;
8893 else if (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
8894 cmp_type = type0;
8895 else if (code0 == INTEGER_TYPE && code1 == REAL_TYPE)
8896 cmp_type = type1;
8897 else
8899 error ("non-floating-point argument to function %qs",
8900 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
8901 return error_mark_node;
8904 arg0 = fold_convert (cmp_type, arg0);
8905 arg1 = fold_convert (cmp_type, arg1);
8907 if (unordered_code == UNORDERED_EXPR)
8909 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8910 return omit_two_operands (type, integer_zero_node, arg0, arg1);
8911 return fold_build2 (UNORDERED_EXPR, type, arg0, arg1);
8914 code = HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))) ? unordered_code
8915 : ordered_code;
8916 return fold_build1 (TRUTH_NOT_EXPR, type,
8917 fold_build2 (code, type, arg0, arg1));
8920 /* Used by constant folding to simplify calls to builtin functions. EXP is
8921 the CALL_EXPR of a call to a builtin function. IGNORE is true if the
8922 result of the function call is ignored. This function returns NULL_TREE
8923 if no simplification was possible. */
8925 static tree
8926 fold_builtin_1 (tree fndecl, tree arglist, bool ignore)
8928 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8929 enum built_in_function fcode;
8931 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
8932 return targetm.fold_builtin (fndecl, arglist, ignore);
8934 fcode = DECL_FUNCTION_CODE (fndecl);
8935 switch (fcode)
8937 case BUILT_IN_FPUTS:
8938 return fold_builtin_fputs (arglist, ignore, false, NULL_TREE);
8940 case BUILT_IN_FPUTS_UNLOCKED:
8941 return fold_builtin_fputs (arglist, ignore, true, NULL_TREE);
8943 case BUILT_IN_STRSTR:
8944 return fold_builtin_strstr (arglist, type);
8946 case BUILT_IN_STRCAT:
8947 return fold_builtin_strcat (arglist);
8949 case BUILT_IN_STRNCAT:
8950 return fold_builtin_strncat (arglist);
8952 case BUILT_IN_STRSPN:
8953 return fold_builtin_strspn (arglist);
8955 case BUILT_IN_STRCSPN:
8956 return fold_builtin_strcspn (arglist);
8958 case BUILT_IN_STRCHR:
8959 case BUILT_IN_INDEX:
8960 return fold_builtin_strchr (arglist, type);
8962 case BUILT_IN_STRRCHR:
8963 case BUILT_IN_RINDEX:
8964 return fold_builtin_strrchr (arglist, type);
8966 case BUILT_IN_STRCPY:
8967 return fold_builtin_strcpy (fndecl, arglist, NULL_TREE);
8969 case BUILT_IN_STRNCPY:
8970 return fold_builtin_strncpy (fndecl, arglist, NULL_TREE);
8972 case BUILT_IN_STRCMP:
8973 return fold_builtin_strcmp (arglist);
8975 case BUILT_IN_STRNCMP:
8976 return fold_builtin_strncmp (arglist);
8978 case BUILT_IN_STRPBRK:
8979 return fold_builtin_strpbrk (arglist, type);
8981 case BUILT_IN_BCMP:
8982 case BUILT_IN_MEMCMP:
8983 return fold_builtin_memcmp (arglist);
8985 case BUILT_IN_SPRINTF:
8986 return fold_builtin_sprintf (arglist, ignore);
8988 case BUILT_IN_CONSTANT_P:
8990 tree val;
8992 val = fold_builtin_constant_p (arglist);
8993 /* Gimplification will pull the CALL_EXPR for the builtin out of
8994 an if condition. When not optimizing, we'll not CSE it back.
8995 To avoid link error types of regressions, return false now. */
8996 if (!val && !optimize)
8997 val = integer_zero_node;
8999 return val;
9002 case BUILT_IN_EXPECT:
9003 return fold_builtin_expect (arglist);
9005 case BUILT_IN_CLASSIFY_TYPE:
9006 return fold_builtin_classify_type (arglist);
9008 case BUILT_IN_STRLEN:
9009 return fold_builtin_strlen (arglist);
9011 CASE_FLT_FN (BUILT_IN_FABS):
9012 return fold_builtin_fabs (arglist, type);
9014 case BUILT_IN_ABS:
9015 case BUILT_IN_LABS:
9016 case BUILT_IN_LLABS:
9017 case BUILT_IN_IMAXABS:
9018 return fold_builtin_abs (arglist, type);
9020 CASE_FLT_FN (BUILT_IN_CONJ):
9021 if (validate_arglist (arglist, COMPLEX_TYPE, VOID_TYPE))
9022 return fold_build1 (CONJ_EXPR, type, TREE_VALUE (arglist));
9023 break;
9025 CASE_FLT_FN (BUILT_IN_CREAL):
9026 if (validate_arglist (arglist, COMPLEX_TYPE, VOID_TYPE))
9027 return non_lvalue (fold_build1 (REALPART_EXPR, type,
9028 TREE_VALUE (arglist)));
9029 break;
9031 CASE_FLT_FN (BUILT_IN_CIMAG):
9032 if (validate_arglist (arglist, COMPLEX_TYPE, VOID_TYPE))
9033 return non_lvalue (fold_build1 (IMAGPART_EXPR, type,
9034 TREE_VALUE (arglist)));
9035 break;
9037 CASE_FLT_FN (BUILT_IN_CABS):
9038 return fold_builtin_cabs (arglist, type, fndecl);
9040 CASE_FLT_FN (BUILT_IN_SQRT):
9041 return fold_builtin_sqrt (arglist, type);
9043 CASE_FLT_FN (BUILT_IN_CBRT):
9044 return fold_builtin_cbrt (arglist, type);
9046 CASE_FLT_FN (BUILT_IN_ASIN):
9047 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9048 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_asin,
9049 &dconstm1, &dconst1, true);
9050 break;
9052 CASE_FLT_FN (BUILT_IN_ACOS):
9053 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9054 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_acos,
9055 &dconstm1, &dconst1, true);
9056 break;
9058 CASE_FLT_FN (BUILT_IN_ATAN):
9059 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9060 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_atan,
9061 NULL, NULL, 0);
9062 break;
9064 CASE_FLT_FN (BUILT_IN_ASINH):
9065 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9066 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_asinh,
9067 NULL, NULL, 0);
9068 break;
9070 CASE_FLT_FN (BUILT_IN_ACOSH):
9071 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9072 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_acosh,
9073 &dconst1, NULL, true);
9074 break;
9076 CASE_FLT_FN (BUILT_IN_ATANH):
9077 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9078 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_atanh,
9079 &dconstm1, &dconst1, false);
9080 break;
9082 CASE_FLT_FN (BUILT_IN_SIN):
9083 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9084 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_sin,
9085 NULL, NULL, 0);
9086 break;
9088 CASE_FLT_FN (BUILT_IN_COS):
9089 return fold_builtin_cos (arglist, type, fndecl);
9091 CASE_FLT_FN (BUILT_IN_TAN):
9092 return fold_builtin_tan (arglist, type);
9094 CASE_FLT_FN (BUILT_IN_SINH):
9095 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9096 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_sinh,
9097 NULL, NULL, 0);
9098 break;
9100 CASE_FLT_FN (BUILT_IN_COSH):
9101 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9102 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_cosh,
9103 NULL, NULL, 0);
9104 break;
9106 CASE_FLT_FN (BUILT_IN_TANH):
9107 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9108 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_tanh,
9109 NULL, NULL, 0);
9110 break;
9112 CASE_FLT_FN (BUILT_IN_ERF):
9113 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9114 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_erf,
9115 NULL, NULL, 0);
9116 break;
9118 CASE_FLT_FN (BUILT_IN_ERFC):
9119 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9120 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_erfc,
9121 NULL, NULL, 0);
9122 break;
9124 CASE_FLT_FN (BUILT_IN_EXP):
9125 return fold_builtin_exponent (fndecl, arglist, mpfr_exp);
9127 CASE_FLT_FN (BUILT_IN_EXP2):
9128 return fold_builtin_exponent (fndecl, arglist, mpfr_exp2);
9130 CASE_FLT_FN (BUILT_IN_EXP10):
9131 CASE_FLT_FN (BUILT_IN_POW10):
9132 return fold_builtin_exponent (fndecl, arglist, mpfr_exp10);
9134 CASE_FLT_FN (BUILT_IN_EXPM1):
9135 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9136 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_expm1,
9137 NULL, NULL, 0);
9138 break;
9140 CASE_FLT_FN (BUILT_IN_LOG):
9141 return fold_builtin_logarithm (fndecl, arglist, mpfr_log);
9143 CASE_FLT_FN (BUILT_IN_LOG2):
9144 return fold_builtin_logarithm (fndecl, arglist, mpfr_log2);
9146 CASE_FLT_FN (BUILT_IN_LOG10):
9147 return fold_builtin_logarithm (fndecl, arglist, mpfr_log10);
9149 CASE_FLT_FN (BUILT_IN_LOG1P):
9150 if (validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
9151 return do_mpfr_arg1 (TREE_VALUE (arglist), type, mpfr_log1p,
9152 &dconstm1, NULL, false);
9153 break;
9155 CASE_FLT_FN (BUILT_IN_ATAN2):
9156 if (validate_arglist (arglist, REAL_TYPE, REAL_TYPE, VOID_TYPE))
9157 return do_mpfr_arg2 (TREE_VALUE (arglist),
9158 TREE_VALUE (TREE_CHAIN (arglist)),
9159 type, mpfr_atan2);
9160 break;
9162 CASE_FLT_FN (BUILT_IN_HYPOT):
9163 return fold_builtin_hypot (fndecl, arglist, type);
9165 CASE_FLT_FN (BUILT_IN_POW):
9166 return fold_builtin_pow (fndecl, arglist, type);
9168 CASE_FLT_FN (BUILT_IN_POWI):
9169 return fold_builtin_powi (fndecl, arglist, type);
9171 CASE_FLT_FN (BUILT_IN_INF):
9172 case BUILT_IN_INFD32:
9173 case BUILT_IN_INFD64:
9174 case BUILT_IN_INFD128:
9175 return fold_builtin_inf (type, true);
9177 CASE_FLT_FN (BUILT_IN_HUGE_VAL):
9178 return fold_builtin_inf (type, false);
9180 CASE_FLT_FN (BUILT_IN_NAN):
9181 case BUILT_IN_NAND32:
9182 case BUILT_IN_NAND64:
9183 case BUILT_IN_NAND128:
9184 return fold_builtin_nan (arglist, type, true);
9186 CASE_FLT_FN (BUILT_IN_NANS):
9187 return fold_builtin_nan (arglist, type, false);
9189 CASE_FLT_FN (BUILT_IN_FLOOR):
9190 return fold_builtin_floor (fndecl, arglist);
9192 CASE_FLT_FN (BUILT_IN_CEIL):
9193 return fold_builtin_ceil (fndecl, arglist);
9195 CASE_FLT_FN (BUILT_IN_TRUNC):
9196 return fold_builtin_trunc (fndecl, arglist);
9198 CASE_FLT_FN (BUILT_IN_ROUND):
9199 return fold_builtin_round (fndecl, arglist);
9201 CASE_FLT_FN (BUILT_IN_NEARBYINT):
9202 CASE_FLT_FN (BUILT_IN_RINT):
9203 return fold_trunc_transparent_mathfn (fndecl, arglist);
9205 CASE_FLT_FN (BUILT_IN_LCEIL):
9206 CASE_FLT_FN (BUILT_IN_LLCEIL):
9207 CASE_FLT_FN (BUILT_IN_LFLOOR):
9208 CASE_FLT_FN (BUILT_IN_LLFLOOR):
9209 CASE_FLT_FN (BUILT_IN_LROUND):
9210 CASE_FLT_FN (BUILT_IN_LLROUND):
9211 return fold_builtin_int_roundingfn (fndecl, arglist);
9213 CASE_FLT_FN (BUILT_IN_LRINT):
9214 CASE_FLT_FN (BUILT_IN_LLRINT):
9215 return fold_fixed_mathfn (fndecl, arglist);
9217 CASE_INT_FN (BUILT_IN_FFS):
9218 CASE_INT_FN (BUILT_IN_CLZ):
9219 CASE_INT_FN (BUILT_IN_CTZ):
9220 CASE_INT_FN (BUILT_IN_POPCOUNT):
9221 CASE_INT_FN (BUILT_IN_PARITY):
9222 return fold_builtin_bitop (fndecl, arglist);
9224 case BUILT_IN_MEMSET:
9225 return fold_builtin_memset (arglist, type, ignore);
9227 case BUILT_IN_MEMCPY:
9228 return fold_builtin_memory_op (arglist, type, ignore, /*endp=*/0);
9230 case BUILT_IN_MEMPCPY:
9231 return fold_builtin_memory_op (arglist, type, ignore, /*endp=*/1);
9233 case BUILT_IN_MEMMOVE:
9234 return fold_builtin_memory_op (arglist, type, ignore, /*endp=*/3);
9236 case BUILT_IN_BZERO:
9237 return fold_builtin_bzero (arglist, ignore);
9239 case BUILT_IN_BCOPY:
9240 return fold_builtin_bcopy (arglist, ignore);
9242 CASE_FLT_FN (BUILT_IN_SIGNBIT):
9243 return fold_builtin_signbit (fndecl, arglist);
9245 case BUILT_IN_ISASCII:
9246 return fold_builtin_isascii (arglist);
9248 case BUILT_IN_TOASCII:
9249 return fold_builtin_toascii (arglist);
9251 case BUILT_IN_ISDIGIT:
9252 return fold_builtin_isdigit (arglist);
9254 CASE_FLT_FN (BUILT_IN_COPYSIGN):
9255 return fold_builtin_copysign (fndecl, arglist, type);
9257 CASE_FLT_FN (BUILT_IN_FINITE):
9258 case BUILT_IN_FINITED32:
9259 case BUILT_IN_FINITED64:
9260 case BUILT_IN_FINITED128:
9261 return fold_builtin_classify (fndecl, arglist, BUILT_IN_FINITE);
9263 CASE_FLT_FN (BUILT_IN_ISINF):
9264 case BUILT_IN_ISINFD32:
9265 case BUILT_IN_ISINFD64:
9266 case BUILT_IN_ISINFD128:
9267 return fold_builtin_classify (fndecl, arglist, BUILT_IN_ISINF);
9269 CASE_FLT_FN (BUILT_IN_ISNAN):
9270 case BUILT_IN_ISNAND32:
9271 case BUILT_IN_ISNAND64:
9272 case BUILT_IN_ISNAND128:
9273 return fold_builtin_classify (fndecl, arglist, BUILT_IN_ISNAN);
9275 case BUILT_IN_ISGREATER:
9276 return fold_builtin_unordered_cmp (fndecl, arglist, UNLE_EXPR, LE_EXPR);
9277 case BUILT_IN_ISGREATEREQUAL:
9278 return fold_builtin_unordered_cmp (fndecl, arglist, UNLT_EXPR, LT_EXPR);
9279 case BUILT_IN_ISLESS:
9280 return fold_builtin_unordered_cmp (fndecl, arglist, UNGE_EXPR, GE_EXPR);
9281 case BUILT_IN_ISLESSEQUAL:
9282 return fold_builtin_unordered_cmp (fndecl, arglist, UNGT_EXPR, GT_EXPR);
9283 case BUILT_IN_ISLESSGREATER:
9284 return fold_builtin_unordered_cmp (fndecl, arglist, UNEQ_EXPR, EQ_EXPR);
9285 case BUILT_IN_ISUNORDERED:
9286 return fold_builtin_unordered_cmp (fndecl, arglist, UNORDERED_EXPR,
9287 NOP_EXPR);
9289 /* We do the folding for va_start in the expander. */
9290 case BUILT_IN_VA_START:
9291 break;
9293 case BUILT_IN_OBJECT_SIZE:
9294 return fold_builtin_object_size (arglist);
9295 case BUILT_IN_MEMCPY_CHK:
9296 case BUILT_IN_MEMPCPY_CHK:
9297 case BUILT_IN_MEMMOVE_CHK:
9298 case BUILT_IN_MEMSET_CHK:
9299 return fold_builtin_memory_chk (fndecl, arglist, NULL_TREE, ignore,
9300 DECL_FUNCTION_CODE (fndecl));
9301 case BUILT_IN_STRCPY_CHK:
9302 case BUILT_IN_STPCPY_CHK:
9303 return fold_builtin_stxcpy_chk (fndecl, arglist, NULL_TREE, ignore,
9304 DECL_FUNCTION_CODE (fndecl));
9305 case BUILT_IN_STRNCPY_CHK:
9306 return fold_builtin_strncpy_chk (arglist, NULL_TREE);
9307 case BUILT_IN_STRCAT_CHK:
9308 return fold_builtin_strcat_chk (fndecl, arglist);
9309 case BUILT_IN_STRNCAT_CHK:
9310 return fold_builtin_strncat_chk (fndecl, arglist);
9311 case BUILT_IN_SPRINTF_CHK:
9312 case BUILT_IN_VSPRINTF_CHK:
9313 return fold_builtin_sprintf_chk (arglist, DECL_FUNCTION_CODE (fndecl));
9314 case BUILT_IN_SNPRINTF_CHK:
9315 case BUILT_IN_VSNPRINTF_CHK:
9316 return fold_builtin_snprintf_chk (arglist, NULL_TREE,
9317 DECL_FUNCTION_CODE (fndecl));
9319 case BUILT_IN_PRINTF:
9320 case BUILT_IN_PRINTF_UNLOCKED:
9321 case BUILT_IN_VPRINTF:
9322 case BUILT_IN_PRINTF_CHK:
9323 case BUILT_IN_VPRINTF_CHK:
9324 return fold_builtin_printf (fndecl, arglist, ignore,
9325 DECL_FUNCTION_CODE (fndecl));
9327 case BUILT_IN_FPRINTF:
9328 case BUILT_IN_FPRINTF_UNLOCKED:
9329 case BUILT_IN_VFPRINTF:
9330 case BUILT_IN_FPRINTF_CHK:
9331 case BUILT_IN_VFPRINTF_CHK:
9332 return fold_builtin_fprintf (fndecl, arglist, ignore,
9333 DECL_FUNCTION_CODE (fndecl));
9335 default:
9336 break;
9339 return 0;
9342 /* A wrapper function for builtin folding that prevents warnings for
9343 "statement without effect" and the like, caused by removing the
9344 call node earlier than the warning is generated. */
9346 tree
9347 fold_builtin (tree fndecl, tree arglist, bool ignore)
9349 tree exp = fold_builtin_1 (fndecl, arglist, ignore);
9350 if (exp && !ignore)
9352 exp = build1 (NOP_EXPR, TREE_TYPE (exp), exp);
9353 TREE_NO_WARNING (exp) = 1;
9356 return exp;
9359 /* Conveniently construct a function call expression. */
9361 tree
9362 build_function_call_expr (tree fn, tree arglist)
9364 tree call_expr;
9366 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
9367 return fold_build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
9368 call_expr, arglist, NULL_TREE);
9371 /* This function validates the types of a function call argument list
9372 represented as a tree chain of parameters against a specified list
9373 of tree_codes. If the last specifier is a 0, that represents an
9374 ellipses, otherwise the last specifier must be a VOID_TYPE. */
9376 static int
9377 validate_arglist (tree arglist, ...)
9379 enum tree_code code;
9380 int res = 0;
9381 va_list ap;
9383 va_start (ap, arglist);
9387 code = va_arg (ap, enum tree_code);
9388 switch (code)
9390 case 0:
9391 /* This signifies an ellipses, any further arguments are all ok. */
9392 res = 1;
9393 goto end;
9394 case VOID_TYPE:
9395 /* This signifies an endlink, if no arguments remain, return
9396 true, otherwise return false. */
9397 res = arglist == 0;
9398 goto end;
9399 default:
9400 /* If no parameters remain or the parameter's code does not
9401 match the specified code, return false. Otherwise continue
9402 checking any remaining arguments. */
9403 if (arglist == 0)
9404 goto end;
9405 if (code == POINTER_TYPE)
9407 if (! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist))))
9408 goto end;
9410 else if (code != TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))))
9411 goto end;
9412 break;
9414 arglist = TREE_CHAIN (arglist);
9416 while (1);
9418 /* We need gotos here since we can only have one VA_CLOSE in a
9419 function. */
9420 end: ;
9421 va_end (ap);
9423 return res;
9426 /* Default target-specific builtin expander that does nothing. */
9429 default_expand_builtin (tree exp ATTRIBUTE_UNUSED,
9430 rtx target ATTRIBUTE_UNUSED,
9431 rtx subtarget ATTRIBUTE_UNUSED,
9432 enum machine_mode mode ATTRIBUTE_UNUSED,
9433 int ignore ATTRIBUTE_UNUSED)
9435 return NULL_RTX;
9438 /* Returns true is EXP represents data that would potentially reside
9439 in a readonly section. */
9441 static bool
9442 readonly_data_expr (tree exp)
9444 STRIP_NOPS (exp);
9446 if (TREE_CODE (exp) != ADDR_EXPR)
9447 return false;
9449 exp = get_base_address (TREE_OPERAND (exp, 0));
9450 if (!exp)
9451 return false;
9453 /* Make sure we call decl_readonly_section only for trees it
9454 can handle (since it returns true for everything it doesn't
9455 understand). */
9456 if (TREE_CODE (exp) == STRING_CST
9457 || TREE_CODE (exp) == CONSTRUCTOR
9458 || (TREE_CODE (exp) == VAR_DECL && TREE_STATIC (exp)))
9459 return decl_readonly_section (exp, 0);
9460 else
9461 return false;
9464 /* Simplify a call to the strstr builtin.
9466 Return 0 if no simplification was possible, otherwise return the
9467 simplified form of the call as a tree.
9469 The simplified form may be a constant or other expression which
9470 computes the same value, but in a more efficient manner (including
9471 calls to other builtin functions).
9473 The call may contain arguments which need to be evaluated, but
9474 which are not useful to determine the result of the call. In
9475 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9476 COMPOUND_EXPR will be an argument which must be evaluated.
9477 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9478 COMPOUND_EXPR in the chain will contain the tree for the simplified
9479 form of the builtin function call. */
9481 static tree
9482 fold_builtin_strstr (tree arglist, tree type)
9484 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9485 return 0;
9486 else
9488 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9489 tree fn;
9490 const char *p1, *p2;
9492 p2 = c_getstr (s2);
9493 if (p2 == NULL)
9494 return 0;
9496 p1 = c_getstr (s1);
9497 if (p1 != NULL)
9499 const char *r = strstr (p1, p2);
9500 tree tem;
9502 if (r == NULL)
9503 return build_int_cst (TREE_TYPE (s1), 0);
9505 /* Return an offset into the constant string argument. */
9506 tem = fold_build2 (PLUS_EXPR, TREE_TYPE (s1),
9507 s1, build_int_cst (TREE_TYPE (s1), r - p1));
9508 return fold_convert (type, tem);
9511 /* The argument is const char *, and the result is char *, so we need
9512 a type conversion here to avoid a warning. */
9513 if (p2[0] == '\0')
9514 return fold_convert (type, s1);
9516 if (p2[1] != '\0')
9517 return 0;
9519 fn = implicit_built_in_decls[BUILT_IN_STRCHR];
9520 if (!fn)
9521 return 0;
9523 /* New argument list transforming strstr(s1, s2) to
9524 strchr(s1, s2[0]). */
9525 arglist = build_tree_list (NULL_TREE,
9526 build_int_cst (NULL_TREE, p2[0]));
9527 arglist = tree_cons (NULL_TREE, s1, arglist);
9528 return build_function_call_expr (fn, arglist);
9532 /* Simplify a call to the strchr builtin.
9534 Return 0 if no simplification was possible, otherwise return the
9535 simplified form of the call as a tree.
9537 The simplified form may be a constant or other expression which
9538 computes the same value, but in a more efficient manner (including
9539 calls to other builtin functions).
9541 The call may contain arguments which need to be evaluated, but
9542 which are not useful to determine the result of the call. In
9543 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9544 COMPOUND_EXPR will be an argument which must be evaluated.
9545 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9546 COMPOUND_EXPR in the chain will contain the tree for the simplified
9547 form of the builtin function call. */
9549 static tree
9550 fold_builtin_strchr (tree arglist, tree type)
9552 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
9553 return 0;
9554 else
9556 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9557 const char *p1;
9559 if (TREE_CODE (s2) != INTEGER_CST)
9560 return 0;
9562 p1 = c_getstr (s1);
9563 if (p1 != NULL)
9565 char c;
9566 const char *r;
9567 tree tem;
9569 if (target_char_cast (s2, &c))
9570 return 0;
9572 r = strchr (p1, c);
9574 if (r == NULL)
9575 return build_int_cst (TREE_TYPE (s1), 0);
9577 /* Return an offset into the constant string argument. */
9578 tem = fold_build2 (PLUS_EXPR, TREE_TYPE (s1),
9579 s1, build_int_cst (TREE_TYPE (s1), r - p1));
9580 return fold_convert (type, tem);
9582 return 0;
9586 /* Simplify a call to the strrchr builtin.
9588 Return 0 if no simplification was possible, otherwise return the
9589 simplified form of the call as a tree.
9591 The simplified form may be a constant or other expression which
9592 computes the same value, but in a more efficient manner (including
9593 calls to other builtin functions).
9595 The call may contain arguments which need to be evaluated, but
9596 which are not useful to determine the result of the call. In
9597 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9598 COMPOUND_EXPR will be an argument which must be evaluated.
9599 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9600 COMPOUND_EXPR in the chain will contain the tree for the simplified
9601 form of the builtin function call. */
9603 static tree
9604 fold_builtin_strrchr (tree arglist, tree type)
9606 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
9607 return 0;
9608 else
9610 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9611 tree fn;
9612 const char *p1;
9614 if (TREE_CODE (s2) != INTEGER_CST)
9615 return 0;
9617 p1 = c_getstr (s1);
9618 if (p1 != NULL)
9620 char c;
9621 const char *r;
9622 tree tem;
9624 if (target_char_cast (s2, &c))
9625 return 0;
9627 r = strrchr (p1, c);
9629 if (r == NULL)
9630 return build_int_cst (TREE_TYPE (s1), 0);
9632 /* Return an offset into the constant string argument. */
9633 tem = fold_build2 (PLUS_EXPR, TREE_TYPE (s1),
9634 s1, build_int_cst (TREE_TYPE (s1), r - p1));
9635 return fold_convert (type, tem);
9638 if (! integer_zerop (s2))
9639 return 0;
9641 fn = implicit_built_in_decls[BUILT_IN_STRCHR];
9642 if (!fn)
9643 return 0;
9645 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
9646 return build_function_call_expr (fn, arglist);
9650 /* Simplify a call to the strpbrk builtin.
9652 Return 0 if no simplification was possible, otherwise return the
9653 simplified form of the call as a tree.
9655 The simplified form may be a constant or other expression which
9656 computes the same value, but in a more efficient manner (including
9657 calls to other builtin functions).
9659 The call may contain arguments which need to be evaluated, but
9660 which are not useful to determine the result of the call. In
9661 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9662 COMPOUND_EXPR will be an argument which must be evaluated.
9663 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9664 COMPOUND_EXPR in the chain will contain the tree for the simplified
9665 form of the builtin function call. */
9667 static tree
9668 fold_builtin_strpbrk (tree arglist, tree type)
9670 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9671 return 0;
9672 else
9674 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9675 tree fn;
9676 const char *p1, *p2;
9678 p2 = c_getstr (s2);
9679 if (p2 == NULL)
9680 return 0;
9682 p1 = c_getstr (s1);
9683 if (p1 != NULL)
9685 const char *r = strpbrk (p1, p2);
9686 tree tem;
9688 if (r == NULL)
9689 return build_int_cst (TREE_TYPE (s1), 0);
9691 /* Return an offset into the constant string argument. */
9692 tem = fold_build2 (PLUS_EXPR, TREE_TYPE (s1),
9693 s1, build_int_cst (TREE_TYPE (s1), r - p1));
9694 return fold_convert (type, tem);
9697 if (p2[0] == '\0')
9698 /* strpbrk(x, "") == NULL.
9699 Evaluate and ignore s1 in case it had side-effects. */
9700 return omit_one_operand (TREE_TYPE (s1), integer_zero_node, s1);
9702 if (p2[1] != '\0')
9703 return 0; /* Really call strpbrk. */
9705 fn = implicit_built_in_decls[BUILT_IN_STRCHR];
9706 if (!fn)
9707 return 0;
9709 /* New argument list transforming strpbrk(s1, s2) to
9710 strchr(s1, s2[0]). */
9711 arglist = build_tree_list (NULL_TREE,
9712 build_int_cst (NULL_TREE, p2[0]));
9713 arglist = tree_cons (NULL_TREE, s1, arglist);
9714 return build_function_call_expr (fn, arglist);
9718 /* Simplify a call to the strcat builtin.
9720 Return 0 if no simplification was possible, otherwise return the
9721 simplified form of the call as a tree.
9723 The simplified form may be a constant or other expression which
9724 computes the same value, but in a more efficient manner (including
9725 calls to other builtin functions).
9727 The call may contain arguments which need to be evaluated, but
9728 which are not useful to determine the result of the call. In
9729 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9730 COMPOUND_EXPR will be an argument which must be evaluated.
9731 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9732 COMPOUND_EXPR in the chain will contain the tree for the simplified
9733 form of the builtin function call. */
9735 static tree
9736 fold_builtin_strcat (tree arglist)
9738 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9739 return 0;
9740 else
9742 tree dst = TREE_VALUE (arglist),
9743 src = TREE_VALUE (TREE_CHAIN (arglist));
9744 const char *p = c_getstr (src);
9746 /* If the string length is zero, return the dst parameter. */
9747 if (p && *p == '\0')
9748 return dst;
9750 return 0;
9754 /* Simplify a call to the strncat builtin.
9756 Return 0 if no simplification was possible, otherwise return the
9757 simplified form of the call as a tree.
9759 The simplified form may be a constant or other expression which
9760 computes the same value, but in a more efficient manner (including
9761 calls to other builtin functions).
9763 The call may contain arguments which need to be evaluated, but
9764 which are not useful to determine the result of the call. In
9765 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9766 COMPOUND_EXPR will be an argument which must be evaluated.
9767 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9768 COMPOUND_EXPR in the chain will contain the tree for the simplified
9769 form of the builtin function call. */
9771 static tree
9772 fold_builtin_strncat (tree arglist)
9774 if (!validate_arglist (arglist,
9775 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
9776 return 0;
9777 else
9779 tree dst = TREE_VALUE (arglist);
9780 tree src = TREE_VALUE (TREE_CHAIN (arglist));
9781 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
9782 const char *p = c_getstr (src);
9784 /* If the requested length is zero, or the src parameter string
9785 length is zero, return the dst parameter. */
9786 if (integer_zerop (len) || (p && *p == '\0'))
9787 return omit_two_operands (TREE_TYPE (dst), dst, src, len);
9789 /* If the requested len is greater than or equal to the string
9790 length, call strcat. */
9791 if (TREE_CODE (len) == INTEGER_CST && p
9792 && compare_tree_int (len, strlen (p)) >= 0)
9794 tree newarglist
9795 = tree_cons (NULL_TREE, dst, build_tree_list (NULL_TREE, src));
9796 tree fn = implicit_built_in_decls[BUILT_IN_STRCAT];
9798 /* If the replacement _DECL isn't initialized, don't do the
9799 transformation. */
9800 if (!fn)
9801 return 0;
9803 return build_function_call_expr (fn, newarglist);
9805 return 0;
9809 /* Simplify a call to the strspn builtin.
9811 Return 0 if no simplification was possible, otherwise return the
9812 simplified form of the call as a tree.
9814 The simplified form may be a constant or other expression which
9815 computes the same value, but in a more efficient manner (including
9816 calls to other builtin functions).
9818 The call may contain arguments which need to be evaluated, but
9819 which are not useful to determine the result of the call. In
9820 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9821 COMPOUND_EXPR will be an argument which must be evaluated.
9822 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9823 COMPOUND_EXPR in the chain will contain the tree for the simplified
9824 form of the builtin function call. */
9826 static tree
9827 fold_builtin_strspn (tree arglist)
9829 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9830 return 0;
9831 else
9833 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9834 const char *p1 = c_getstr (s1), *p2 = c_getstr (s2);
9836 /* If both arguments are constants, evaluate at compile-time. */
9837 if (p1 && p2)
9839 const size_t r = strspn (p1, p2);
9840 return size_int (r);
9843 /* If either argument is "", return 0. */
9844 if ((p1 && *p1 == '\0') || (p2 && *p2 == '\0'))
9845 /* Evaluate and ignore both arguments in case either one has
9846 side-effects. */
9847 return omit_two_operands (integer_type_node, integer_zero_node,
9848 s1, s2);
9849 return 0;
9853 /* Simplify a call to the strcspn builtin.
9855 Return 0 if no simplification was possible, otherwise return the
9856 simplified form of the call as a tree.
9858 The simplified form may be a constant or other expression which
9859 computes the same value, but in a more efficient manner (including
9860 calls to other builtin functions).
9862 The call may contain arguments which need to be evaluated, but
9863 which are not useful to determine the result of the call. In
9864 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9865 COMPOUND_EXPR will be an argument which must be evaluated.
9866 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9867 COMPOUND_EXPR in the chain will contain the tree for the simplified
9868 form of the builtin function call. */
9870 static tree
9871 fold_builtin_strcspn (tree arglist)
9873 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9874 return 0;
9875 else
9877 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
9878 const char *p1 = c_getstr (s1), *p2 = c_getstr (s2);
9880 /* If both arguments are constants, evaluate at compile-time. */
9881 if (p1 && p2)
9883 const size_t r = strcspn (p1, p2);
9884 return size_int (r);
9887 /* If the first argument is "", return 0. */
9888 if (p1 && *p1 == '\0')
9890 /* Evaluate and ignore argument s2 in case it has
9891 side-effects. */
9892 return omit_one_operand (integer_type_node,
9893 integer_zero_node, s2);
9896 /* If the second argument is "", return __builtin_strlen(s1). */
9897 if (p2 && *p2 == '\0')
9899 tree newarglist = build_tree_list (NULL_TREE, s1),
9900 fn = implicit_built_in_decls[BUILT_IN_STRLEN];
9902 /* If the replacement _DECL isn't initialized, don't do the
9903 transformation. */
9904 if (!fn)
9905 return 0;
9907 return build_function_call_expr (fn, newarglist);
9909 return 0;
9913 /* Fold a call to the fputs builtin. IGNORE is true if the value returned
9914 by the builtin will be ignored. UNLOCKED is true is true if this
9915 actually a call to fputs_unlocked. If LEN in non-NULL, it represents
9916 the known length of the string. Return NULL_TREE if no simplification
9917 was possible. */
9919 tree
9920 fold_builtin_fputs (tree arglist, bool ignore, bool unlocked, tree len)
9922 tree fn;
9923 /* If we're using an unlocked function, assume the other unlocked
9924 functions exist explicitly. */
9925 tree const fn_fputc = unlocked ? built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
9926 : implicit_built_in_decls[BUILT_IN_FPUTC];
9927 tree const fn_fwrite = unlocked ? built_in_decls[BUILT_IN_FWRITE_UNLOCKED]
9928 : implicit_built_in_decls[BUILT_IN_FWRITE];
9930 /* If the return value is used, don't do the transformation. */
9931 if (!ignore)
9932 return 0;
9934 /* Verify the arguments in the original call. */
9935 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
9936 return 0;
9938 if (! len)
9939 len = c_strlen (TREE_VALUE (arglist), 0);
9941 /* Get the length of the string passed to fputs. If the length
9942 can't be determined, punt. */
9943 if (!len
9944 || TREE_CODE (len) != INTEGER_CST)
9945 return 0;
9947 switch (compare_tree_int (len, 1))
9949 case -1: /* length is 0, delete the call entirely . */
9950 return omit_one_operand (integer_type_node, integer_zero_node,
9951 TREE_VALUE (TREE_CHAIN (arglist)));
9953 case 0: /* length is 1, call fputc. */
9955 const char *p = c_getstr (TREE_VALUE (arglist));
9957 if (p != NULL)
9959 /* New argument list transforming fputs(string, stream) to
9960 fputc(string[0], stream). */
9961 arglist = build_tree_list (NULL_TREE,
9962 TREE_VALUE (TREE_CHAIN (arglist)));
9963 arglist = tree_cons (NULL_TREE,
9964 build_int_cst (NULL_TREE, p[0]),
9965 arglist);
9966 fn = fn_fputc;
9967 break;
9970 /* FALLTHROUGH */
9971 case 1: /* length is greater than 1, call fwrite. */
9973 tree string_arg;
9975 /* If optimizing for size keep fputs. */
9976 if (optimize_size)
9977 return 0;
9978 string_arg = TREE_VALUE (arglist);
9979 /* New argument list transforming fputs(string, stream) to
9980 fwrite(string, 1, len, stream). */
9981 arglist = build_tree_list (NULL_TREE,
9982 TREE_VALUE (TREE_CHAIN (arglist)));
9983 arglist = tree_cons (NULL_TREE, len, arglist);
9984 arglist = tree_cons (NULL_TREE, size_one_node, arglist);
9985 arglist = tree_cons (NULL_TREE, string_arg, arglist);
9986 fn = fn_fwrite;
9987 break;
9989 default:
9990 gcc_unreachable ();
9993 /* If the replacement _DECL isn't initialized, don't do the
9994 transformation. */
9995 if (!fn)
9996 return 0;
9998 /* These optimizations are only performed when the result is ignored,
9999 hence there's no need to cast the result to integer_type_node. */
10000 return build_function_call_expr (fn, arglist);
10003 /* Fold the new_arg's arguments (ARGLIST). Returns true if there was an error
10004 produced. False otherwise. This is done so that we don't output the error
10005 or warning twice or three times. */
10006 bool
10007 fold_builtin_next_arg (tree arglist)
10009 tree fntype = TREE_TYPE (current_function_decl);
10011 if (TYPE_ARG_TYPES (fntype) == 0
10012 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
10013 == void_type_node))
10015 error ("%<va_start%> used in function with fixed args");
10016 return true;
10018 else if (!arglist)
10020 /* Evidently an out of date version of <stdarg.h>; can't validate
10021 va_start's second argument, but can still work as intended. */
10022 warning (0, "%<__builtin_next_arg%> called without an argument");
10023 return true;
10025 /* We use __builtin_va_start (ap, 0, 0) or __builtin_next_arg (0, 0)
10026 when we checked the arguments and if needed issued a warning. */
10027 else if (!TREE_CHAIN (arglist)
10028 || !integer_zerop (TREE_VALUE (arglist))
10029 || !integer_zerop (TREE_VALUE (TREE_CHAIN (arglist)))
10030 || TREE_CHAIN (TREE_CHAIN (arglist)))
10032 tree last_parm = tree_last (DECL_ARGUMENTS (current_function_decl));
10033 tree arg = TREE_VALUE (arglist);
10035 if (TREE_CHAIN (arglist))
10037 error ("%<va_start%> used with too many arguments");
10038 return true;
10041 /* Strip off all nops for the sake of the comparison. This
10042 is not quite the same as STRIP_NOPS. It does more.
10043 We must also strip off INDIRECT_EXPR for C++ reference
10044 parameters. */
10045 while (TREE_CODE (arg) == NOP_EXPR
10046 || TREE_CODE (arg) == CONVERT_EXPR
10047 || TREE_CODE (arg) == NON_LVALUE_EXPR
10048 || TREE_CODE (arg) == INDIRECT_REF)
10049 arg = TREE_OPERAND (arg, 0);
10050 if (arg != last_parm)
10052 /* FIXME: Sometimes with the tree optimizers we can get the
10053 not the last argument even though the user used the last
10054 argument. We just warn and set the arg to be the last
10055 argument so that we will get wrong-code because of
10056 it. */
10057 warning (0, "second parameter of %<va_start%> not last named argument");
10059 /* We want to verify the second parameter just once before the tree
10060 optimizers are run and then avoid keeping it in the tree,
10061 as otherwise we could warn even for correct code like:
10062 void foo (int i, ...)
10063 { va_list ap; i++; va_start (ap, i); va_end (ap); } */
10064 TREE_VALUE (arglist) = integer_zero_node;
10065 TREE_CHAIN (arglist) = build_tree_list (NULL, integer_zero_node);
10067 return false;
10071 /* Simplify a call to the sprintf builtin.
10073 Return 0 if no simplification was possible, otherwise return the
10074 simplified form of the call as a tree. If IGNORED is true, it means that
10075 the caller does not use the returned value of the function. */
10077 static tree
10078 fold_builtin_sprintf (tree arglist, int ignored)
10080 tree call, retval, dest, fmt;
10081 const char *fmt_str = NULL;
10083 /* Verify the required arguments in the original call. We deal with two
10084 types of sprintf() calls: 'sprintf (str, fmt)' and
10085 'sprintf (dest, "%s", orig)'. */
10086 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE)
10087 && !validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, POINTER_TYPE,
10088 VOID_TYPE))
10089 return NULL_TREE;
10091 /* Get the destination string and the format specifier. */
10092 dest = TREE_VALUE (arglist);
10093 fmt = TREE_VALUE (TREE_CHAIN (arglist));
10095 /* Check whether the format is a literal string constant. */
10096 fmt_str = c_getstr (fmt);
10097 if (fmt_str == NULL)
10098 return NULL_TREE;
10100 call = NULL_TREE;
10101 retval = NULL_TREE;
10103 if (!init_target_chars())
10104 return 0;
10106 /* If the format doesn't contain % args or %%, use strcpy. */
10107 if (strchr (fmt_str, target_percent) == NULL)
10109 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY];
10111 if (!fn)
10112 return NULL_TREE;
10114 /* Convert sprintf (str, fmt) into strcpy (str, fmt) when
10115 'format' is known to contain no % formats. */
10116 arglist = build_tree_list (NULL_TREE, fmt);
10117 arglist = tree_cons (NULL_TREE, dest, arglist);
10118 call = build_function_call_expr (fn, arglist);
10119 if (!ignored)
10120 retval = build_int_cst (NULL_TREE, strlen (fmt_str));
10123 /* If the format is "%s", use strcpy if the result isn't used. */
10124 else if (fmt_str && strcmp (fmt_str, target_percent_s) == 0)
10126 tree fn, orig;
10127 fn = implicit_built_in_decls[BUILT_IN_STRCPY];
10129 if (!fn)
10130 return NULL_TREE;
10132 /* Convert sprintf (str1, "%s", str2) into strcpy (str1, str2). */
10133 orig = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10134 arglist = build_tree_list (NULL_TREE, orig);
10135 arglist = tree_cons (NULL_TREE, dest, arglist);
10136 if (!ignored)
10138 retval = c_strlen (orig, 1);
10139 if (!retval || TREE_CODE (retval) != INTEGER_CST)
10140 return NULL_TREE;
10142 call = build_function_call_expr (fn, arglist);
10145 if (call && retval)
10147 retval = fold_convert
10148 (TREE_TYPE (TREE_TYPE (implicit_built_in_decls[BUILT_IN_SPRINTF])),
10149 retval);
10150 return build2 (COMPOUND_EXPR, TREE_TYPE (retval), call, retval);
10152 else
10153 return call;
10156 /* Expand a call to __builtin_object_size. */
10159 expand_builtin_object_size (tree exp)
10161 tree ost;
10162 int object_size_type;
10163 tree fndecl = get_callee_fndecl (exp);
10164 tree arglist = TREE_OPERAND (exp, 1);
10165 location_t locus = EXPR_LOCATION (exp);
10167 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
10169 error ("%Hfirst argument of %D must be a pointer, second integer constant",
10170 &locus, fndecl);
10171 expand_builtin_trap ();
10172 return const0_rtx;
10175 ost = TREE_VALUE (TREE_CHAIN (arglist));
10176 STRIP_NOPS (ost);
10178 if (TREE_CODE (ost) != INTEGER_CST
10179 || tree_int_cst_sgn (ost) < 0
10180 || compare_tree_int (ost, 3) > 0)
10182 error ("%Hlast argument of %D is not integer constant between 0 and 3",
10183 &locus, fndecl);
10184 expand_builtin_trap ();
10185 return const0_rtx;
10188 object_size_type = tree_low_cst (ost, 0);
10190 return object_size_type < 2 ? constm1_rtx : const0_rtx;
10193 /* Expand EXP, a call to the __mem{cpy,pcpy,move,set}_chk builtin.
10194 FCODE is the BUILT_IN_* to use.
10195 Return 0 if we failed; the caller should emit a normal call,
10196 otherwise try to get the result in TARGET, if convenient (and in
10197 mode MODE if that's convenient). */
10199 static rtx
10200 expand_builtin_memory_chk (tree exp, rtx target, enum machine_mode mode,
10201 enum built_in_function fcode)
10203 tree arglist = TREE_OPERAND (exp, 1);
10204 tree dest, src, len, size;
10206 if (!validate_arglist (arglist,
10207 POINTER_TYPE,
10208 fcode == BUILT_IN_MEMSET_CHK
10209 ? INTEGER_TYPE : POINTER_TYPE,
10210 INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
10211 return 0;
10213 dest = TREE_VALUE (arglist);
10214 src = TREE_VALUE (TREE_CHAIN (arglist));
10215 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10216 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (arglist))));
10218 if (! host_integerp (size, 1))
10219 return 0;
10221 if (host_integerp (len, 1) || integer_all_onesp (size))
10223 tree fn;
10225 if (! integer_all_onesp (size) && tree_int_cst_lt (size, len))
10227 location_t locus = EXPR_LOCATION (exp);
10228 warning (0, "%Hcall to %D will always overflow destination buffer",
10229 &locus, get_callee_fndecl (exp));
10230 return 0;
10233 arglist = build_tree_list (NULL_TREE, len);
10234 arglist = tree_cons (NULL_TREE, src, arglist);
10235 arglist = tree_cons (NULL_TREE, dest, arglist);
10237 fn = NULL_TREE;
10238 /* If __builtin_mem{cpy,pcpy,move,set}_chk is used, assume
10239 mem{cpy,pcpy,move,set} is available. */
10240 switch (fcode)
10242 case BUILT_IN_MEMCPY_CHK:
10243 fn = built_in_decls[BUILT_IN_MEMCPY];
10244 break;
10245 case BUILT_IN_MEMPCPY_CHK:
10246 fn = built_in_decls[BUILT_IN_MEMPCPY];
10247 break;
10248 case BUILT_IN_MEMMOVE_CHK:
10249 fn = built_in_decls[BUILT_IN_MEMMOVE];
10250 break;
10251 case BUILT_IN_MEMSET_CHK:
10252 fn = built_in_decls[BUILT_IN_MEMSET];
10253 break;
10254 default:
10255 break;
10258 if (! fn)
10259 return 0;
10261 fn = build_function_call_expr (fn, arglist);
10262 if (TREE_CODE (fn) == CALL_EXPR)
10263 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
10264 return expand_expr (fn, target, mode, EXPAND_NORMAL);
10266 else if (fcode == BUILT_IN_MEMSET_CHK)
10267 return 0;
10268 else
10270 unsigned int dest_align
10271 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
10273 /* If DEST is not a pointer type, call the normal function. */
10274 if (dest_align == 0)
10275 return 0;
10277 /* If SRC and DEST are the same (and not volatile), do nothing. */
10278 if (operand_equal_p (src, dest, 0))
10280 tree expr;
10282 if (fcode != BUILT_IN_MEMPCPY_CHK)
10284 /* Evaluate and ignore LEN in case it has side-effects. */
10285 expand_expr (len, const0_rtx, VOIDmode, EXPAND_NORMAL);
10286 return expand_expr (dest, target, mode, EXPAND_NORMAL);
10289 len = fold_convert (TREE_TYPE (dest), len);
10290 expr = fold_build2 (PLUS_EXPR, TREE_TYPE (dest), dest, len);
10291 return expand_expr (expr, target, mode, EXPAND_NORMAL);
10294 /* __memmove_chk special case. */
10295 if (fcode == BUILT_IN_MEMMOVE_CHK)
10297 unsigned int src_align
10298 = get_pointer_alignment (src, BIGGEST_ALIGNMENT);
10300 if (src_align == 0)
10301 return 0;
10303 /* If src is categorized for a readonly section we can use
10304 normal __memcpy_chk. */
10305 if (readonly_data_expr (src))
10307 tree fn = built_in_decls[BUILT_IN_MEMCPY_CHK];
10308 if (!fn)
10309 return 0;
10310 fn = build_function_call_expr (fn, arglist);
10311 if (TREE_CODE (fn) == CALL_EXPR)
10312 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
10313 return expand_expr (fn, target, mode, EXPAND_NORMAL);
10316 return 0;
10320 /* Emit warning if a buffer overflow is detected at compile time. */
10322 static void
10323 maybe_emit_chk_warning (tree exp, enum built_in_function fcode)
10325 int arg_mask, is_strlen = 0;
10326 tree arglist = TREE_OPERAND (exp, 1), a;
10327 tree len, size;
10328 location_t locus;
10330 switch (fcode)
10332 case BUILT_IN_STRCPY_CHK:
10333 case BUILT_IN_STPCPY_CHK:
10334 /* For __strcat_chk the warning will be emitted only if overflowing
10335 by at least strlen (dest) + 1 bytes. */
10336 case BUILT_IN_STRCAT_CHK:
10337 arg_mask = 6;
10338 is_strlen = 1;
10339 break;
10340 case BUILT_IN_STRNCAT_CHK:
10341 /* For __strncat_chk the warning will be emitted only if overflowing
10342 by at least strlen (dest) + 1 bytes. */
10343 arg_mask = 12;
10344 break;
10345 case BUILT_IN_STRNCPY_CHK:
10346 arg_mask = 12;
10347 break;
10348 case BUILT_IN_SNPRINTF_CHK:
10349 case BUILT_IN_VSNPRINTF_CHK:
10350 arg_mask = 10;
10351 break;
10352 default:
10353 gcc_unreachable ();
10356 len = NULL_TREE;
10357 size = NULL_TREE;
10358 for (a = arglist; a && arg_mask; a = TREE_CHAIN (a), arg_mask >>= 1)
10359 if (arg_mask & 1)
10361 if (len)
10362 size = a;
10363 else
10364 len = a;
10367 if (!len || !size)
10368 return;
10370 len = TREE_VALUE (len);
10371 size = TREE_VALUE (size);
10373 if (! host_integerp (size, 1) || integer_all_onesp (size))
10374 return;
10376 if (is_strlen)
10378 len = c_strlen (len, 1);
10379 if (! len || ! host_integerp (len, 1) || tree_int_cst_lt (len, size))
10380 return;
10382 else if (fcode == BUILT_IN_STRNCAT_CHK)
10384 tree src = TREE_VALUE (TREE_CHAIN (arglist));
10385 if (! src || ! host_integerp (len, 1) || tree_int_cst_lt (len, size))
10386 return;
10387 src = c_strlen (src, 1);
10388 if (! src || ! host_integerp (src, 1))
10390 locus = EXPR_LOCATION (exp);
10391 warning (0, "%Hcall to %D might overflow destination buffer",
10392 &locus, get_callee_fndecl (exp));
10393 return;
10395 else if (tree_int_cst_lt (src, size))
10396 return;
10398 else if (! host_integerp (len, 1) || ! tree_int_cst_lt (size, len))
10399 return;
10401 locus = EXPR_LOCATION (exp);
10402 warning (0, "%Hcall to %D will always overflow destination buffer",
10403 &locus, get_callee_fndecl (exp));
10406 /* Emit warning if a buffer overflow is detected at compile time
10407 in __sprintf_chk/__vsprintf_chk calls. */
10409 static void
10410 maybe_emit_sprintf_chk_warning (tree exp, enum built_in_function fcode)
10412 tree arglist = TREE_OPERAND (exp, 1);
10413 tree dest, size, len, fmt, flag;
10414 const char *fmt_str;
10416 /* Verify the required arguments in the original call. */
10417 if (! arglist)
10418 return;
10419 dest = TREE_VALUE (arglist);
10420 arglist = TREE_CHAIN (arglist);
10421 if (! arglist)
10422 return;
10423 flag = TREE_VALUE (arglist);
10424 arglist = TREE_CHAIN (arglist);
10425 if (! arglist)
10426 return;
10427 size = TREE_VALUE (arglist);
10428 arglist = TREE_CHAIN (arglist);
10429 if (! arglist)
10430 return;
10431 fmt = TREE_VALUE (arglist);
10432 arglist = TREE_CHAIN (arglist);
10434 if (! host_integerp (size, 1) || integer_all_onesp (size))
10435 return;
10437 /* Check whether the format is a literal string constant. */
10438 fmt_str = c_getstr (fmt);
10439 if (fmt_str == NULL)
10440 return;
10442 if (!init_target_chars())
10443 return;
10445 /* If the format doesn't contain % args or %%, we know its size. */
10446 if (strchr (fmt_str, target_percent) == 0)
10447 len = build_int_cstu (size_type_node, strlen (fmt_str));
10448 /* If the format is "%s" and first ... argument is a string literal,
10449 we know it too. */
10450 else if (fcode == BUILT_IN_SPRINTF_CHK && strcmp (fmt_str, target_percent_s) == 0)
10452 tree arg;
10454 if (! arglist)
10455 return;
10456 arg = TREE_VALUE (arglist);
10457 if (! POINTER_TYPE_P (TREE_TYPE (arg)))
10458 return;
10460 len = c_strlen (arg, 1);
10461 if (!len || ! host_integerp (len, 1))
10462 return;
10464 else
10465 return;
10467 if (! tree_int_cst_lt (len, size))
10469 location_t locus = EXPR_LOCATION (exp);
10470 warning (0, "%Hcall to %D will always overflow destination buffer",
10471 &locus, get_callee_fndecl (exp));
10475 /* Fold a call to __builtin_object_size, if possible. */
10477 tree
10478 fold_builtin_object_size (tree arglist)
10480 tree ptr, ost, ret = 0;
10481 int object_size_type;
10483 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
10484 return 0;
10486 ptr = TREE_VALUE (arglist);
10487 ost = TREE_VALUE (TREE_CHAIN (arglist));
10488 STRIP_NOPS (ost);
10490 if (TREE_CODE (ost) != INTEGER_CST
10491 || tree_int_cst_sgn (ost) < 0
10492 || compare_tree_int (ost, 3) > 0)
10493 return 0;
10495 object_size_type = tree_low_cst (ost, 0);
10497 /* __builtin_object_size doesn't evaluate side-effects in its arguments;
10498 if there are any side-effects, it returns (size_t) -1 for types 0 and 1
10499 and (size_t) 0 for types 2 and 3. */
10500 if (TREE_SIDE_EFFECTS (ptr))
10501 return fold_convert (size_type_node,
10502 object_size_type < 2
10503 ? integer_minus_one_node : integer_zero_node);
10505 if (TREE_CODE (ptr) == ADDR_EXPR)
10506 ret = build_int_cstu (size_type_node,
10507 compute_builtin_object_size (ptr, object_size_type));
10509 else if (TREE_CODE (ptr) == SSA_NAME)
10511 unsigned HOST_WIDE_INT bytes;
10513 /* If object size is not known yet, delay folding until
10514 later. Maybe subsequent passes will help determining
10515 it. */
10516 bytes = compute_builtin_object_size (ptr, object_size_type);
10517 if (bytes != (unsigned HOST_WIDE_INT) (object_size_type < 2
10518 ? -1 : 0))
10519 ret = build_int_cstu (size_type_node, bytes);
10522 if (ret)
10524 ret = force_fit_type (ret, -1, false, false);
10525 if (TREE_CONSTANT_OVERFLOW (ret))
10526 ret = 0;
10529 return ret;
10532 /* Fold a call to the __mem{cpy,pcpy,move,set}_chk builtin.
10533 IGNORE is true, if return value can be ignored. FCODE is the BUILT_IN_*
10534 code of the builtin. If MAXLEN is not NULL, it is maximum length
10535 passed as third argument. */
10537 tree
10538 fold_builtin_memory_chk (tree fndecl, tree arglist, tree maxlen, bool ignore,
10539 enum built_in_function fcode)
10541 tree dest, src, len, size, fn;
10543 if (!validate_arglist (arglist,
10544 POINTER_TYPE,
10545 fcode == BUILT_IN_MEMSET_CHK
10546 ? INTEGER_TYPE : POINTER_TYPE,
10547 INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
10548 return 0;
10550 dest = TREE_VALUE (arglist);
10551 /* Actually val for __memset_chk, but it doesn't matter. */
10552 src = TREE_VALUE (TREE_CHAIN (arglist));
10553 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10554 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (arglist))));
10556 /* If SRC and DEST are the same (and not volatile), return DEST
10557 (resp. DEST+LEN for __mempcpy_chk). */
10558 if (fcode != BUILT_IN_MEMSET_CHK && operand_equal_p (src, dest, 0))
10560 if (fcode != BUILT_IN_MEMPCPY_CHK)
10561 return omit_one_operand (TREE_TYPE (TREE_TYPE (fndecl)), dest, len);
10562 else
10564 tree temp = fold_convert (TREE_TYPE (dest), len);
10565 temp = fold_build2 (PLUS_EXPR, TREE_TYPE (dest), dest, temp);
10566 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), temp);
10570 if (! host_integerp (size, 1))
10571 return 0;
10573 if (! integer_all_onesp (size))
10575 if (! host_integerp (len, 1))
10577 /* If LEN is not constant, try MAXLEN too.
10578 For MAXLEN only allow optimizing into non-_ocs function
10579 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
10580 if (maxlen == NULL_TREE || ! host_integerp (maxlen, 1))
10582 if (fcode == BUILT_IN_MEMPCPY_CHK && ignore)
10584 /* (void) __mempcpy_chk () can be optimized into
10585 (void) __memcpy_chk (). */
10586 fn = built_in_decls[BUILT_IN_MEMCPY_CHK];
10587 if (!fn)
10588 return 0;
10590 return build_function_call_expr (fn, arglist);
10592 return 0;
10595 else
10596 maxlen = len;
10598 if (tree_int_cst_lt (size, maxlen))
10599 return 0;
10602 arglist = build_tree_list (NULL_TREE, len);
10603 arglist = tree_cons (NULL_TREE, src, arglist);
10604 arglist = tree_cons (NULL_TREE, dest, arglist);
10606 fn = NULL_TREE;
10607 /* If __builtin_mem{cpy,pcpy,move,set}_chk is used, assume
10608 mem{cpy,pcpy,move,set} is available. */
10609 switch (fcode)
10611 case BUILT_IN_MEMCPY_CHK:
10612 fn = built_in_decls[BUILT_IN_MEMCPY];
10613 break;
10614 case BUILT_IN_MEMPCPY_CHK:
10615 fn = built_in_decls[BUILT_IN_MEMPCPY];
10616 break;
10617 case BUILT_IN_MEMMOVE_CHK:
10618 fn = built_in_decls[BUILT_IN_MEMMOVE];
10619 break;
10620 case BUILT_IN_MEMSET_CHK:
10621 fn = built_in_decls[BUILT_IN_MEMSET];
10622 break;
10623 default:
10624 break;
10627 if (!fn)
10628 return 0;
10630 return build_function_call_expr (fn, arglist);
10633 /* Fold a call to the __st[rp]cpy_chk builtin.
10634 IGNORE is true, if return value can be ignored. FCODE is the BUILT_IN_*
10635 code of the builtin. If MAXLEN is not NULL, it is maximum length of
10636 strings passed as second argument. */
10638 tree
10639 fold_builtin_stxcpy_chk (tree fndecl, tree arglist, tree maxlen, bool ignore,
10640 enum built_in_function fcode)
10642 tree dest, src, size, len, fn;
10644 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE,
10645 VOID_TYPE))
10646 return 0;
10648 dest = TREE_VALUE (arglist);
10649 src = TREE_VALUE (TREE_CHAIN (arglist));
10650 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10652 /* If SRC and DEST are the same (and not volatile), return DEST. */
10653 if (fcode == BUILT_IN_STRCPY_CHK && operand_equal_p (src, dest, 0))
10654 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), dest);
10656 if (! host_integerp (size, 1))
10657 return 0;
10659 if (! integer_all_onesp (size))
10661 len = c_strlen (src, 1);
10662 if (! len || ! host_integerp (len, 1))
10664 /* If LEN is not constant, try MAXLEN too.
10665 For MAXLEN only allow optimizing into non-_ocs function
10666 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
10667 if (maxlen == NULL_TREE || ! host_integerp (maxlen, 1))
10669 if (fcode == BUILT_IN_STPCPY_CHK)
10671 if (! ignore)
10672 return 0;
10674 /* If return value of __stpcpy_chk is ignored,
10675 optimize into __strcpy_chk. */
10676 fn = built_in_decls[BUILT_IN_STRCPY_CHK];
10677 if (!fn)
10678 return 0;
10680 return build_function_call_expr (fn, arglist);
10683 if (! len || TREE_SIDE_EFFECTS (len))
10684 return 0;
10686 /* If c_strlen returned something, but not a constant,
10687 transform __strcpy_chk into __memcpy_chk. */
10688 fn = built_in_decls[BUILT_IN_MEMCPY_CHK];
10689 if (!fn)
10690 return 0;
10692 len = size_binop (PLUS_EXPR, len, ssize_int (1));
10693 arglist = build_tree_list (NULL_TREE, size);
10694 arglist = tree_cons (NULL_TREE, len, arglist);
10695 arglist = tree_cons (NULL_TREE, src, arglist);
10696 arglist = tree_cons (NULL_TREE, dest, arglist);
10697 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)),
10698 build_function_call_expr (fn, arglist));
10701 else
10702 maxlen = len;
10704 if (! tree_int_cst_lt (maxlen, size))
10705 return 0;
10708 arglist = build_tree_list (NULL_TREE, src);
10709 arglist = tree_cons (NULL_TREE, dest, arglist);
10711 /* If __builtin_st{r,p}cpy_chk is used, assume st{r,p}cpy is available. */
10712 fn = built_in_decls[fcode == BUILT_IN_STPCPY_CHK
10713 ? BUILT_IN_STPCPY : BUILT_IN_STRCPY];
10714 if (!fn)
10715 return 0;
10717 return build_function_call_expr (fn, arglist);
10720 /* Fold a call to the __strncpy_chk builtin.
10721 If MAXLEN is not NULL, it is maximum length passed as third argument. */
10723 tree
10724 fold_builtin_strncpy_chk (tree arglist, tree maxlen)
10726 tree dest, src, size, len, fn;
10728 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE,
10729 INTEGER_TYPE, VOID_TYPE))
10730 return 0;
10732 dest = TREE_VALUE (arglist);
10733 src = TREE_VALUE (TREE_CHAIN (arglist));
10734 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10735 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (arglist))));
10737 if (! host_integerp (size, 1))
10738 return 0;
10740 if (! integer_all_onesp (size))
10742 if (! host_integerp (len, 1))
10744 /* If LEN is not constant, try MAXLEN too.
10745 For MAXLEN only allow optimizing into non-_ocs function
10746 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
10747 if (maxlen == NULL_TREE || ! host_integerp (maxlen, 1))
10748 return 0;
10750 else
10751 maxlen = len;
10753 if (tree_int_cst_lt (size, maxlen))
10754 return 0;
10757 arglist = build_tree_list (NULL_TREE, len);
10758 arglist = tree_cons (NULL_TREE, src, arglist);
10759 arglist = tree_cons (NULL_TREE, dest, arglist);
10761 /* If __builtin_strncpy_chk is used, assume strncpy is available. */
10762 fn = built_in_decls[BUILT_IN_STRNCPY];
10763 if (!fn)
10764 return 0;
10766 return build_function_call_expr (fn, arglist);
10769 /* Fold a call to the __strcat_chk builtin FNDECL with ARGLIST. */
10771 static tree
10772 fold_builtin_strcat_chk (tree fndecl, tree arglist)
10774 tree dest, src, size, fn;
10775 const char *p;
10777 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE,
10778 VOID_TYPE))
10779 return 0;
10781 dest = TREE_VALUE (arglist);
10782 src = TREE_VALUE (TREE_CHAIN (arglist));
10783 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10785 p = c_getstr (src);
10786 /* If the SRC parameter is "", return DEST. */
10787 if (p && *p == '\0')
10788 return omit_one_operand (TREE_TYPE (TREE_TYPE (fndecl)), dest, src);
10790 if (! host_integerp (size, 1) || ! integer_all_onesp (size))
10791 return 0;
10793 arglist = build_tree_list (NULL_TREE, src);
10794 arglist = tree_cons (NULL_TREE, dest, arglist);
10796 /* If __builtin_strcat_chk is used, assume strcat is available. */
10797 fn = built_in_decls[BUILT_IN_STRCAT];
10798 if (!fn)
10799 return 0;
10801 return build_function_call_expr (fn, arglist);
10804 /* Fold a call to the __strncat_chk builtin EXP. */
10806 static tree
10807 fold_builtin_strncat_chk (tree fndecl, tree arglist)
10809 tree dest, src, size, len, fn;
10810 const char *p;
10812 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE,
10813 INTEGER_TYPE, VOID_TYPE))
10814 return 0;
10816 dest = TREE_VALUE (arglist);
10817 src = TREE_VALUE (TREE_CHAIN (arglist));
10818 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
10819 size = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (arglist))));
10821 p = c_getstr (src);
10822 /* If the SRC parameter is "" or if LEN is 0, return DEST. */
10823 if (p && *p == '\0')
10824 return omit_one_operand (TREE_TYPE (TREE_TYPE (fndecl)), dest, len);
10825 else if (integer_zerop (len))
10826 return omit_one_operand (TREE_TYPE (TREE_TYPE (fndecl)), dest, src);
10828 if (! host_integerp (size, 1))
10829 return 0;
10831 if (! integer_all_onesp (size))
10833 tree src_len = c_strlen (src, 1);
10834 if (src_len
10835 && host_integerp (src_len, 1)
10836 && host_integerp (len, 1)
10837 && ! tree_int_cst_lt (len, src_len))
10839 /* If LEN >= strlen (SRC), optimize into __strcat_chk. */
10840 fn = built_in_decls[BUILT_IN_STRCAT_CHK];
10841 if (!fn)
10842 return 0;
10844 arglist = build_tree_list (NULL_TREE, size);
10845 arglist = tree_cons (NULL_TREE, src, arglist);
10846 arglist = tree_cons (NULL_TREE, dest, arglist);
10847 return build_function_call_expr (fn, arglist);
10849 return 0;
10852 arglist = build_tree_list (NULL_TREE, len);
10853 arglist = tree_cons (NULL_TREE, src, arglist);
10854 arglist = tree_cons (NULL_TREE, dest, arglist);
10856 /* If __builtin_strncat_chk is used, assume strncat is available. */
10857 fn = built_in_decls[BUILT_IN_STRNCAT];
10858 if (!fn)
10859 return 0;
10861 return build_function_call_expr (fn, arglist);
10864 /* Fold a call to __{,v}sprintf_chk with argument list ARGLIST. Return 0 if
10865 a normal call should be emitted rather than expanding the function
10866 inline. FCODE is either BUILT_IN_SPRINTF_CHK or BUILT_IN_VSPRINTF_CHK. */
10868 static tree
10869 fold_builtin_sprintf_chk (tree arglist, enum built_in_function fcode)
10871 tree dest, size, len, fn, fmt, flag;
10872 const char *fmt_str;
10874 /* Verify the required arguments in the original call. */
10875 if (! arglist)
10876 return 0;
10877 dest = TREE_VALUE (arglist);
10878 if (! POINTER_TYPE_P (TREE_TYPE (dest)))
10879 return 0;
10880 arglist = TREE_CHAIN (arglist);
10881 if (! arglist)
10882 return 0;
10883 flag = TREE_VALUE (arglist);
10884 if (TREE_CODE (TREE_TYPE (flag)) != INTEGER_TYPE)
10885 return 0;
10886 arglist = TREE_CHAIN (arglist);
10887 if (! arglist)
10888 return 0;
10889 size = TREE_VALUE (arglist);
10890 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE)
10891 return 0;
10892 arglist = TREE_CHAIN (arglist);
10893 if (! arglist)
10894 return 0;
10895 fmt = TREE_VALUE (arglist);
10896 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
10897 return 0;
10898 arglist = TREE_CHAIN (arglist);
10900 if (! host_integerp (size, 1))
10901 return 0;
10903 len = NULL_TREE;
10905 if (!init_target_chars())
10906 return 0;
10908 /* Check whether the format is a literal string constant. */
10909 fmt_str = c_getstr (fmt);
10910 if (fmt_str != NULL)
10912 /* If the format doesn't contain % args or %%, we know the size. */
10913 if (strchr (fmt_str, target_percent) == 0)
10915 if (fcode != BUILT_IN_SPRINTF_CHK || arglist == NULL_TREE)
10916 len = build_int_cstu (size_type_node, strlen (fmt_str));
10918 /* If the format is "%s" and first ... argument is a string literal,
10919 we know the size too. */
10920 else if (fcode == BUILT_IN_SPRINTF_CHK && strcmp (fmt_str, target_percent_s) == 0)
10922 tree arg;
10924 if (arglist && !TREE_CHAIN (arglist))
10926 arg = TREE_VALUE (arglist);
10927 if (POINTER_TYPE_P (TREE_TYPE (arg)))
10929 len = c_strlen (arg, 1);
10930 if (! len || ! host_integerp (len, 1))
10931 len = NULL_TREE;
10937 if (! integer_all_onesp (size))
10939 if (! len || ! tree_int_cst_lt (len, size))
10940 return 0;
10943 /* Only convert __{,v}sprintf_chk to {,v}sprintf if flag is 0
10944 or if format doesn't contain % chars or is "%s". */
10945 if (! integer_zerop (flag))
10947 if (fmt_str == NULL)
10948 return 0;
10949 if (strchr (fmt_str, target_percent) != NULL && strcmp (fmt_str, target_percent_s))
10950 return 0;
10953 arglist = tree_cons (NULL_TREE, fmt, arglist);
10954 arglist = tree_cons (NULL_TREE, dest, arglist);
10956 /* If __builtin_{,v}sprintf_chk is used, assume {,v}sprintf is available. */
10957 fn = built_in_decls[fcode == BUILT_IN_VSPRINTF_CHK
10958 ? BUILT_IN_VSPRINTF : BUILT_IN_SPRINTF];
10959 if (!fn)
10960 return 0;
10962 return build_function_call_expr (fn, arglist);
10965 /* Fold a call to {,v}snprintf with argument list ARGLIST. Return 0 if
10966 a normal call should be emitted rather than expanding the function
10967 inline. FCODE is either BUILT_IN_SNPRINTF_CHK or
10968 BUILT_IN_VSNPRINTF_CHK. If MAXLEN is not NULL, it is maximum length
10969 passed as second argument. */
10971 tree
10972 fold_builtin_snprintf_chk (tree arglist, tree maxlen,
10973 enum built_in_function fcode)
10975 tree dest, size, len, fn, fmt, flag;
10976 const char *fmt_str;
10978 /* Verify the required arguments in the original call. */
10979 if (! arglist)
10980 return 0;
10981 dest = TREE_VALUE (arglist);
10982 if (! POINTER_TYPE_P (TREE_TYPE (dest)))
10983 return 0;
10984 arglist = TREE_CHAIN (arglist);
10985 if (! arglist)
10986 return 0;
10987 len = TREE_VALUE (arglist);
10988 if (TREE_CODE (TREE_TYPE (len)) != INTEGER_TYPE)
10989 return 0;
10990 arglist = TREE_CHAIN (arglist);
10991 if (! arglist)
10992 return 0;
10993 flag = TREE_VALUE (arglist);
10994 if (TREE_CODE (TREE_TYPE (len)) != INTEGER_TYPE)
10995 return 0;
10996 arglist = TREE_CHAIN (arglist);
10997 if (! arglist)
10998 return 0;
10999 size = TREE_VALUE (arglist);
11000 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE)
11001 return 0;
11002 arglist = TREE_CHAIN (arglist);
11003 if (! arglist)
11004 return 0;
11005 fmt = TREE_VALUE (arglist);
11006 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
11007 return 0;
11008 arglist = TREE_CHAIN (arglist);
11010 if (! host_integerp (size, 1))
11011 return 0;
11013 if (! integer_all_onesp (size))
11015 if (! host_integerp (len, 1))
11017 /* If LEN is not constant, try MAXLEN too.
11018 For MAXLEN only allow optimizing into non-_ocs function
11019 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
11020 if (maxlen == NULL_TREE || ! host_integerp (maxlen, 1))
11021 return 0;
11023 else
11024 maxlen = len;
11026 if (tree_int_cst_lt (size, maxlen))
11027 return 0;
11030 if (!init_target_chars())
11031 return 0;
11033 /* Only convert __{,v}snprintf_chk to {,v}snprintf if flag is 0
11034 or if format doesn't contain % chars or is "%s". */
11035 if (! integer_zerop (flag))
11037 fmt_str = c_getstr (fmt);
11038 if (fmt_str == NULL)
11039 return 0;
11040 if (strchr (fmt_str, target_percent) != NULL && strcmp (fmt_str, target_percent_s))
11041 return 0;
11044 arglist = tree_cons (NULL_TREE, fmt, arglist);
11045 arglist = tree_cons (NULL_TREE, len, arglist);
11046 arglist = tree_cons (NULL_TREE, dest, arglist);
11048 /* If __builtin_{,v}snprintf_chk is used, assume {,v}snprintf is
11049 available. */
11050 fn = built_in_decls[fcode == BUILT_IN_VSNPRINTF_CHK
11051 ? BUILT_IN_VSNPRINTF : BUILT_IN_SNPRINTF];
11052 if (!fn)
11053 return 0;
11055 return build_function_call_expr (fn, arglist);
11058 /* Fold a call to the {,v}printf{,_unlocked} and __{,v}printf_chk builtins.
11060 Return 0 if no simplification was possible, otherwise return the
11061 simplified form of the call as a tree. FCODE is the BUILT_IN_*
11062 code of the function to be simplified. */
11064 static tree
11065 fold_builtin_printf (tree fndecl, tree arglist, bool ignore,
11066 enum built_in_function fcode)
11068 tree fmt, fn = NULL_TREE, fn_putchar, fn_puts, arg, call;
11069 const char *fmt_str = NULL;
11071 /* If the return value is used, don't do the transformation. */
11072 if (! ignore)
11073 return 0;
11075 /* Verify the required arguments in the original call. */
11076 if (fcode == BUILT_IN_PRINTF_CHK || fcode == BUILT_IN_VPRINTF_CHK)
11078 tree flag;
11080 if (! arglist)
11081 return 0;
11082 flag = TREE_VALUE (arglist);
11083 if (TREE_CODE (TREE_TYPE (flag)) != INTEGER_TYPE
11084 || TREE_SIDE_EFFECTS (flag))
11085 return 0;
11086 arglist = TREE_CHAIN (arglist);
11089 if (! arglist)
11090 return 0;
11091 fmt = TREE_VALUE (arglist);
11092 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
11093 return 0;
11094 arglist = TREE_CHAIN (arglist);
11096 /* Check whether the format is a literal string constant. */
11097 fmt_str = c_getstr (fmt);
11098 if (fmt_str == NULL)
11099 return NULL_TREE;
11101 if (fcode == BUILT_IN_PRINTF_UNLOCKED)
11103 /* If we're using an unlocked function, assume the other
11104 unlocked functions exist explicitly. */
11105 fn_putchar = built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED];
11106 fn_puts = built_in_decls[BUILT_IN_PUTS_UNLOCKED];
11108 else
11110 fn_putchar = implicit_built_in_decls[BUILT_IN_PUTCHAR];
11111 fn_puts = implicit_built_in_decls[BUILT_IN_PUTS];
11114 if (!init_target_chars())
11115 return 0;
11117 if (strcmp (fmt_str, target_percent_s) == 0 || strchr (fmt_str, target_percent) == NULL)
11119 const char *str;
11121 if (strcmp (fmt_str, target_percent_s) == 0)
11123 if (fcode == BUILT_IN_VPRINTF || fcode == BUILT_IN_VPRINTF_CHK)
11124 return 0;
11126 if (! arglist
11127 || ! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist)))
11128 || TREE_CHAIN (arglist))
11129 return 0;
11131 str = c_getstr (TREE_VALUE (arglist));
11132 if (str == NULL)
11133 return 0;
11135 else
11137 /* The format specifier doesn't contain any '%' characters. */
11138 if (fcode != BUILT_IN_VPRINTF && fcode != BUILT_IN_VPRINTF_CHK
11139 && arglist)
11140 return 0;
11141 str = fmt_str;
11144 /* If the string was "", printf does nothing. */
11145 if (str[0] == '\0')
11146 return build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
11148 /* If the string has length of 1, call putchar. */
11149 if (str[1] == '\0')
11151 /* Given printf("c"), (where c is any one character,)
11152 convert "c"[0] to an int and pass that to the replacement
11153 function. */
11154 arg = build_int_cst (NULL_TREE, str[0]);
11155 arglist = build_tree_list (NULL_TREE, arg);
11156 fn = fn_putchar;
11158 else
11160 /* If the string was "string\n", call puts("string"). */
11161 size_t len = strlen (str);
11162 if ((unsigned char)str[len - 1] == target_newline)
11164 /* Create a NUL-terminated string that's one char shorter
11165 than the original, stripping off the trailing '\n'. */
11166 char *newstr = alloca (len);
11167 memcpy (newstr, str, len - 1);
11168 newstr[len - 1] = 0;
11170 arg = build_string_literal (len, newstr);
11171 arglist = build_tree_list (NULL_TREE, arg);
11172 fn = fn_puts;
11174 else
11175 /* We'd like to arrange to call fputs(string,stdout) here,
11176 but we need stdout and don't have a way to get it yet. */
11177 return 0;
11181 /* The other optimizations can be done only on the non-va_list variants. */
11182 else if (fcode == BUILT_IN_VPRINTF || fcode == BUILT_IN_VPRINTF_CHK)
11183 return 0;
11185 /* If the format specifier was "%s\n", call __builtin_puts(arg). */
11186 else if (strcmp (fmt_str, target_percent_s_newline) == 0)
11188 if (! arglist
11189 || ! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist)))
11190 || TREE_CHAIN (arglist))
11191 return 0;
11192 fn = fn_puts;
11195 /* If the format specifier was "%c", call __builtin_putchar(arg). */
11196 else if (strcmp (fmt_str, target_percent_c) == 0)
11198 if (! arglist
11199 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE
11200 || TREE_CHAIN (arglist))
11201 return 0;
11202 fn = fn_putchar;
11205 if (!fn)
11206 return 0;
11208 call = build_function_call_expr (fn, arglist);
11209 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), call);
11212 /* Fold a call to the {,v}fprintf{,_unlocked} and __{,v}printf_chk builtins.
11214 Return 0 if no simplification was possible, otherwise return the
11215 simplified form of the call as a tree. FCODE is the BUILT_IN_*
11216 code of the function to be simplified. */
11218 static tree
11219 fold_builtin_fprintf (tree fndecl, tree arglist, bool ignore,
11220 enum built_in_function fcode)
11222 tree fp, fmt, fn = NULL_TREE, fn_fputc, fn_fputs, arg, call;
11223 const char *fmt_str = NULL;
11225 /* If the return value is used, don't do the transformation. */
11226 if (! ignore)
11227 return 0;
11229 /* Verify the required arguments in the original call. */
11230 if (! arglist)
11231 return 0;
11232 fp = TREE_VALUE (arglist);
11233 if (! POINTER_TYPE_P (TREE_TYPE (fp)))
11234 return 0;
11235 arglist = TREE_CHAIN (arglist);
11237 if (fcode == BUILT_IN_FPRINTF_CHK || fcode == BUILT_IN_VFPRINTF_CHK)
11239 tree flag;
11241 if (! arglist)
11242 return 0;
11243 flag = TREE_VALUE (arglist);
11244 if (TREE_CODE (TREE_TYPE (flag)) != INTEGER_TYPE
11245 || TREE_SIDE_EFFECTS (flag))
11246 return 0;
11247 arglist = TREE_CHAIN (arglist);
11250 if (! arglist)
11251 return 0;
11252 fmt = TREE_VALUE (arglist);
11253 if (! POINTER_TYPE_P (TREE_TYPE (fmt)))
11254 return 0;
11255 arglist = TREE_CHAIN (arglist);
11257 /* Check whether the format is a literal string constant. */
11258 fmt_str = c_getstr (fmt);
11259 if (fmt_str == NULL)
11260 return NULL_TREE;
11262 if (fcode == BUILT_IN_FPRINTF_UNLOCKED)
11264 /* If we're using an unlocked function, assume the other
11265 unlocked functions exist explicitly. */
11266 fn_fputc = built_in_decls[BUILT_IN_FPUTC_UNLOCKED];
11267 fn_fputs = built_in_decls[BUILT_IN_FPUTS_UNLOCKED];
11269 else
11271 fn_fputc = implicit_built_in_decls[BUILT_IN_FPUTC];
11272 fn_fputs = implicit_built_in_decls[BUILT_IN_FPUTS];
11275 if (!init_target_chars())
11276 return 0;
11278 /* If the format doesn't contain % args or %%, use strcpy. */
11279 if (strchr (fmt_str, target_percent) == NULL)
11281 if (fcode != BUILT_IN_VFPRINTF && fcode != BUILT_IN_VFPRINTF_CHK
11282 && arglist)
11283 return 0;
11285 /* If the format specifier was "", fprintf does nothing. */
11286 if (fmt_str[0] == '\0')
11288 /* If FP has side-effects, just wait until gimplification is
11289 done. */
11290 if (TREE_SIDE_EFFECTS (fp))
11291 return 0;
11293 return build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
11296 /* When "string" doesn't contain %, replace all cases of
11297 fprintf (fp, string) with fputs (string, fp). The fputs
11298 builtin will take care of special cases like length == 1. */
11299 arglist = build_tree_list (NULL_TREE, fp);
11300 arglist = tree_cons (NULL_TREE, fmt, arglist);
11301 fn = fn_fputs;
11304 /* The other optimizations can be done only on the non-va_list variants. */
11305 else if (fcode == BUILT_IN_VFPRINTF || fcode == BUILT_IN_VFPRINTF_CHK)
11306 return 0;
11308 /* If the format specifier was "%s", call __builtin_fputs (arg, fp). */
11309 else if (strcmp (fmt_str, target_percent_s) == 0)
11311 if (! arglist
11312 || ! POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arglist)))
11313 || TREE_CHAIN (arglist))
11314 return 0;
11315 arg = TREE_VALUE (arglist);
11316 arglist = build_tree_list (NULL_TREE, fp);
11317 arglist = tree_cons (NULL_TREE, arg, arglist);
11318 fn = fn_fputs;
11321 /* If the format specifier was "%c", call __builtin_fputc (arg, fp). */
11322 else if (strcmp (fmt_str, target_percent_c) == 0)
11324 if (! arglist
11325 || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE
11326 || TREE_CHAIN (arglist))
11327 return 0;
11328 arg = TREE_VALUE (arglist);
11329 arglist = build_tree_list (NULL_TREE, fp);
11330 arglist = tree_cons (NULL_TREE, arg, arglist);
11331 fn = fn_fputc;
11334 if (!fn)
11335 return 0;
11337 call = build_function_call_expr (fn, arglist);
11338 return fold_convert (TREE_TYPE (TREE_TYPE (fndecl)), call);
11341 /* Initialize format string characters in the target charset. */
11343 static bool
11344 init_target_chars (void)
11346 static bool init;
11347 if (!init)
11349 target_newline = lang_hooks.to_target_charset ('\n');
11350 target_percent = lang_hooks.to_target_charset ('%');
11351 target_c = lang_hooks.to_target_charset ('c');
11352 target_s = lang_hooks.to_target_charset ('s');
11353 if (target_newline == 0 || target_percent == 0 || target_c == 0
11354 || target_s == 0)
11355 return false;
11357 target_percent_c[0] = target_percent;
11358 target_percent_c[1] = target_c;
11359 target_percent_c[2] = '\0';
11361 target_percent_s[0] = target_percent;
11362 target_percent_s[1] = target_s;
11363 target_percent_s[2] = '\0';
11365 target_percent_s_newline[0] = target_percent;
11366 target_percent_s_newline[1] = target_s;
11367 target_percent_s_newline[2] = target_newline;
11368 target_percent_s_newline[3] = '\0';
11370 init = true;
11372 return true;
11375 /* Helper function for do_mpfr_arg*(). Ensure M is a normal number
11376 and no overflow/underflow occurred. INEXACT is true if M was not
11377 exacly calculated. TYPE is the tree type for the result. This
11378 function assumes that you cleared the MPFR flags and then
11379 calculated M to see if anything subsequently set a flag prior to
11380 entering this function. Return NULL_TREE if any checks fail. */
11382 static tree
11383 do_mpfr_ckconv(mpfr_srcptr m, tree type, int inexact)
11385 /* Proceed iff we get a normal number, i.e. not NaN or Inf and no
11386 overflow/underflow occurred. If -frounding-math, proceed iff the
11387 result of calling FUNC was exact. */
11388 if (mpfr_number_p (m) && !mpfr_overflow_p() && !mpfr_underflow_p()
11389 && (!flag_rounding_math || !inexact))
11391 REAL_VALUE_TYPE rr;
11393 real_from_mpfr (&rr, m);
11394 /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR value,
11395 check for overflow/underflow. If the REAL_VALUE_TYPE is zero
11396 but the mpft_t is not, then we underflowed in the
11397 conversion. */
11398 if (!real_isnan (&rr) && !real_isinf (&rr)
11399 && (rr.cl == rvc_zero) == (mpfr_zero_p (m) != 0))
11401 REAL_VALUE_TYPE rmode;
11403 real_convert (&rmode, TYPE_MODE (type), &rr);
11404 /* Proceed iff the specified mode can hold the value. */
11405 if (real_identical (&rmode, &rr))
11406 return build_real (type, rmode);
11409 return NULL_TREE;
11412 /* If argument ARG is a REAL_CST, call the one-argument mpfr function
11413 FUNC on it and return the resulting value as a tree with type TYPE.
11414 If MIN and/or MAX are not NULL, then the supplied ARG must be
11415 within those bounds. If INCLUSIVE is true, then MIN/MAX are
11416 acceptable values, otherwise they are not. The mpfr precision is
11417 set to the precision of TYPE. We assume that function FUNC returns
11418 zero if the result could be calculated exactly within the requested
11419 precision. */
11421 static tree
11422 do_mpfr_arg1 (tree arg, tree type, int (*func)(mpfr_ptr, mpfr_srcptr, mp_rnd_t),
11423 const REAL_VALUE_TYPE *min, const REAL_VALUE_TYPE *max,
11424 bool inclusive)
11426 tree result = NULL_TREE;
11428 STRIP_NOPS (arg);
11430 if (TREE_CODE (arg) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg))
11432 const REAL_VALUE_TYPE *const ra = &TREE_REAL_CST (arg);
11434 if (!real_isnan (ra) && !real_isinf (ra)
11435 && (!min || real_compare (inclusive ? GE_EXPR: GT_EXPR , ra, min))
11436 && (!max || real_compare (inclusive ? LE_EXPR: LT_EXPR , ra, max)))
11438 const int prec = REAL_MODE_FORMAT (TYPE_MODE (type))->p;
11439 int inexact;
11440 mpfr_t m;
11442 mpfr_init2 (m, prec);
11443 mpfr_from_real (m, ra);
11444 mpfr_clear_flags();
11445 inexact = func (m, m, GMP_RNDN);
11446 result = do_mpfr_ckconv (m, type, inexact);
11447 mpfr_clear (m);
11451 return result;
11454 /* If argument ARG is a REAL_CST, call the two-argument mpfr function
11455 FUNC on it and return the resulting value as a tree with type TYPE.
11456 The mpfr precision is set to the precision of TYPE. We assume that
11457 function FUNC returns zero if the result could be calculated
11458 exactly within the requested precision. */
11460 static tree
11461 do_mpfr_arg2 (tree arg1, tree arg2, tree type,
11462 int (*func)(mpfr_ptr, mpfr_srcptr, mpfr_srcptr, mp_rnd_t))
11464 tree result = NULL_TREE;
11466 STRIP_NOPS (arg1);
11467 STRIP_NOPS (arg2);
11469 if (TREE_CODE (arg1) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg1)
11470 && TREE_CODE (arg2) == REAL_CST && ! TREE_CONSTANT_OVERFLOW (arg2))
11472 const REAL_VALUE_TYPE *const ra1 = &TREE_REAL_CST (arg1);
11473 const REAL_VALUE_TYPE *const ra2 = &TREE_REAL_CST (arg2);
11475 if (!real_isnan (ra1) && !real_isinf (ra1)
11476 && !real_isnan (ra2) && !real_isinf (ra2))
11478 const int prec = REAL_MODE_FORMAT (TYPE_MODE (type))->p;
11479 int inexact;
11480 mpfr_t m1, m2;
11482 mpfr_inits2 (prec, m1, m2, NULL);
11483 mpfr_from_real (m1, ra1);
11484 mpfr_from_real (m2, ra2);
11485 mpfr_clear_flags();
11486 inexact = func (m1, m1, m2, GMP_RNDN);
11487 result = do_mpfr_ckconv (m1, type, inexact);
11488 mpfr_clears (m1, m2, NULL);
11492 return result;