Daily bump.
[official-gcc.git] / gcc / builtins.c
blob93c617e81ff6f26c500e3e85531892e4ca649167
1 /* Expand builtin functions.
2 Copyright (C) 1988-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* Legacy warning! Please add no further builtin simplifications here
21 (apart from pure constant folding) - builtin simplifications should go
22 to match.pd or gimple-fold.c instead. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "backend.h"
28 #include "target.h"
29 #include "rtl.h"
30 #include "tree.h"
31 #include "memmodel.h"
32 #include "gimple.h"
33 #include "predict.h"
34 #include "tm_p.h"
35 #include "stringpool.h"
36 #include "tree-vrp.h"
37 #include "tree-ssanames.h"
38 #include "expmed.h"
39 #include "optabs.h"
40 #include "emit-rtl.h"
41 #include "recog.h"
42 #include "diagnostic-core.h"
43 #include "alias.h"
44 #include "fold-const.h"
45 #include "fold-const-call.h"
46 #include "gimple-ssa-warn-restrict.h"
47 #include "stor-layout.h"
48 #include "calls.h"
49 #include "varasm.h"
50 #include "tree-object-size.h"
51 #include "realmpfr.h"
52 #include "cfgrtl.h"
53 #include "except.h"
54 #include "dojump.h"
55 #include "explow.h"
56 #include "stmt.h"
57 #include "expr.h"
58 #include "libfuncs.h"
59 #include "output.h"
60 #include "typeclass.h"
61 #include "langhooks.h"
62 #include "value-prof.h"
63 #include "builtins.h"
64 #include "stringpool.h"
65 #include "attribs.h"
66 #include "asan.h"
67 #include "tree-chkp.h"
68 #include "rtl-chkp.h"
69 #include "internal-fn.h"
70 #include "case-cfn-macros.h"
71 #include "gimple-fold.h"
72 #include "intl.h"
73 #include "file-prefix-map.h" /* remap_macro_filename() */
75 struct target_builtins default_target_builtins;
76 #if SWITCHABLE_TARGET
77 struct target_builtins *this_target_builtins = &default_target_builtins;
78 #endif
80 /* Define the names of the builtin function types and codes. */
81 const char *const built_in_class_names[BUILT_IN_LAST]
82 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
84 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA, AT, IM, COND) #X,
85 const char * built_in_names[(int) END_BUILTINS] =
87 #include "builtins.def"
90 /* Setup an array of builtin_info_type, make sure each element decl is
91 initialized to NULL_TREE. */
92 builtin_info_type builtin_info[(int)END_BUILTINS];
94 /* Non-zero if __builtin_constant_p should be folded right away. */
95 bool force_folding_builtin_constant_p;
97 static rtx c_readstr (const char *, scalar_int_mode);
98 static int target_char_cast (tree, char *);
99 static rtx get_memory_rtx (tree, tree);
100 static int apply_args_size (void);
101 static int apply_result_size (void);
102 static rtx result_vector (int, rtx);
103 static void expand_builtin_prefetch (tree);
104 static rtx expand_builtin_apply_args (void);
105 static rtx expand_builtin_apply_args_1 (void);
106 static rtx expand_builtin_apply (rtx, rtx, rtx);
107 static void expand_builtin_return (rtx);
108 static enum type_class type_to_class (tree);
109 static rtx expand_builtin_classify_type (tree);
110 static rtx expand_builtin_mathfn_3 (tree, rtx, rtx);
111 static rtx expand_builtin_mathfn_ternary (tree, rtx, rtx);
112 static rtx expand_builtin_interclass_mathfn (tree, rtx);
113 static rtx expand_builtin_sincos (tree);
114 static rtx expand_builtin_cexpi (tree, rtx);
115 static rtx expand_builtin_int_roundingfn (tree, rtx);
116 static rtx expand_builtin_int_roundingfn_2 (tree, rtx);
117 static rtx expand_builtin_next_arg (void);
118 static rtx expand_builtin_va_start (tree);
119 static rtx expand_builtin_va_end (tree);
120 static rtx expand_builtin_va_copy (tree);
121 static rtx expand_builtin_strcmp (tree, rtx);
122 static rtx expand_builtin_strncmp (tree, rtx, machine_mode);
123 static rtx builtin_memcpy_read_str (void *, HOST_WIDE_INT, scalar_int_mode);
124 static rtx expand_builtin_memchr (tree, rtx);
125 static rtx expand_builtin_memcpy (tree, rtx);
126 static rtx expand_builtin_memcpy_with_bounds (tree, rtx);
127 static rtx expand_builtin_memory_copy_args (tree dest, tree src, tree len,
128 rtx target, tree exp, int endp);
129 static rtx expand_builtin_memmove (tree, rtx);
130 static rtx expand_builtin_mempcpy (tree, rtx);
131 static rtx expand_builtin_mempcpy_with_bounds (tree, rtx);
132 static rtx expand_builtin_mempcpy_args (tree, tree, tree, rtx, tree, int);
133 static rtx expand_builtin_strcat (tree, rtx);
134 static rtx expand_builtin_strcpy (tree, rtx);
135 static rtx expand_builtin_strcpy_args (tree, tree, rtx);
136 static rtx expand_builtin_stpcpy (tree, rtx, machine_mode);
137 static rtx expand_builtin_stpncpy (tree, rtx);
138 static rtx expand_builtin_strncat (tree, rtx);
139 static rtx expand_builtin_strncpy (tree, rtx);
140 static rtx builtin_memset_gen_str (void *, HOST_WIDE_INT, scalar_int_mode);
141 static rtx expand_builtin_memset (tree, rtx, machine_mode);
142 static rtx expand_builtin_memset_with_bounds (tree, rtx, machine_mode);
143 static rtx expand_builtin_memset_args (tree, tree, tree, rtx, machine_mode, tree);
144 static rtx expand_builtin_bzero (tree);
145 static rtx expand_builtin_strlen (tree, rtx, machine_mode);
146 static rtx expand_builtin_alloca (tree);
147 static rtx expand_builtin_unop (machine_mode, tree, rtx, rtx, optab);
148 static rtx expand_builtin_frame_address (tree, tree);
149 static tree stabilize_va_list_loc (location_t, tree, int);
150 static rtx expand_builtin_expect (tree, rtx);
151 static tree fold_builtin_constant_p (tree);
152 static tree fold_builtin_classify_type (tree);
153 static tree fold_builtin_strlen (location_t, tree, tree);
154 static tree fold_builtin_inf (location_t, tree, int);
155 static tree rewrite_call_expr (location_t, tree, int, tree, int, ...);
156 static bool validate_arg (const_tree, enum tree_code code);
157 static rtx expand_builtin_fabs (tree, rtx, rtx);
158 static rtx expand_builtin_signbit (tree, rtx);
159 static tree fold_builtin_memcmp (location_t, tree, tree, tree);
160 static tree fold_builtin_isascii (location_t, tree);
161 static tree fold_builtin_toascii (location_t, tree);
162 static tree fold_builtin_isdigit (location_t, tree);
163 static tree fold_builtin_fabs (location_t, tree, tree);
164 static tree fold_builtin_abs (location_t, tree, tree);
165 static tree fold_builtin_unordered_cmp (location_t, tree, tree, tree, enum tree_code,
166 enum tree_code);
167 static tree fold_builtin_0 (location_t, tree);
168 static tree fold_builtin_1 (location_t, tree, tree);
169 static tree fold_builtin_2 (location_t, tree, tree, tree);
170 static tree fold_builtin_3 (location_t, tree, tree, tree, tree);
171 static tree fold_builtin_varargs (location_t, tree, tree*, int);
173 static tree fold_builtin_strpbrk (location_t, tree, tree, tree);
174 static tree fold_builtin_strspn (location_t, tree, tree);
175 static tree fold_builtin_strcspn (location_t, tree, tree);
177 static rtx expand_builtin_object_size (tree);
178 static rtx expand_builtin_memory_chk (tree, rtx, machine_mode,
179 enum built_in_function);
180 static void maybe_emit_chk_warning (tree, enum built_in_function);
181 static void maybe_emit_sprintf_chk_warning (tree, enum built_in_function);
182 static void maybe_emit_free_warning (tree);
183 static tree fold_builtin_object_size (tree, tree);
185 unsigned HOST_WIDE_INT target_newline;
186 unsigned HOST_WIDE_INT target_percent;
187 static unsigned HOST_WIDE_INT target_c;
188 static unsigned HOST_WIDE_INT target_s;
189 char target_percent_c[3];
190 char target_percent_s[3];
191 char target_percent_s_newline[4];
192 static tree do_mpfr_remquo (tree, tree, tree);
193 static tree do_mpfr_lgamma_r (tree, tree, tree);
194 static void expand_builtin_sync_synchronize (void);
196 /* Return true if NAME starts with __builtin_ or __sync_. */
198 static bool
199 is_builtin_name (const char *name)
201 if (strncmp (name, "__builtin_", 10) == 0)
202 return true;
203 if (strncmp (name, "__sync_", 7) == 0)
204 return true;
205 if (strncmp (name, "__atomic_", 9) == 0)
206 return true;
207 return false;
211 /* Return true if DECL is a function symbol representing a built-in. */
213 bool
214 is_builtin_fn (tree decl)
216 return TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl);
219 /* Return true if NODE should be considered for inline expansion regardless
220 of the optimization level. This means whenever a function is invoked with
221 its "internal" name, which normally contains the prefix "__builtin". */
223 bool
224 called_as_built_in (tree node)
226 /* Note that we must use DECL_NAME, not DECL_ASSEMBLER_NAME_SET_P since
227 we want the name used to call the function, not the name it
228 will have. */
229 const char *name = IDENTIFIER_POINTER (DECL_NAME (node));
230 return is_builtin_name (name);
233 /* Compute values M and N such that M divides (address of EXP - N) and such
234 that N < M. If these numbers can be determined, store M in alignp and N in
235 *BITPOSP and return true. Otherwise return false and store BITS_PER_UNIT to
236 *alignp and any bit-offset to *bitposp.
238 Note that the address (and thus the alignment) computed here is based
239 on the address to which a symbol resolves, whereas DECL_ALIGN is based
240 on the address at which an object is actually located. These two
241 addresses are not always the same. For example, on ARM targets,
242 the address &foo of a Thumb function foo() has the lowest bit set,
243 whereas foo() itself starts on an even address.
245 If ADDR_P is true we are taking the address of the memory reference EXP
246 and thus cannot rely on the access taking place. */
248 static bool
249 get_object_alignment_2 (tree exp, unsigned int *alignp,
250 unsigned HOST_WIDE_INT *bitposp, bool addr_p)
252 poly_int64 bitsize, bitpos;
253 tree offset;
254 machine_mode mode;
255 int unsignedp, reversep, volatilep;
256 unsigned int align = BITS_PER_UNIT;
257 bool known_alignment = false;
259 /* Get the innermost object and the constant (bitpos) and possibly
260 variable (offset) offset of the access. */
261 exp = get_inner_reference (exp, &bitsize, &bitpos, &offset, &mode,
262 &unsignedp, &reversep, &volatilep);
264 /* Extract alignment information from the innermost object and
265 possibly adjust bitpos and offset. */
266 if (TREE_CODE (exp) == FUNCTION_DECL)
268 /* Function addresses can encode extra information besides their
269 alignment. However, if TARGET_PTRMEMFUNC_VBIT_LOCATION
270 allows the low bit to be used as a virtual bit, we know
271 that the address itself must be at least 2-byte aligned. */
272 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn)
273 align = 2 * BITS_PER_UNIT;
275 else if (TREE_CODE (exp) == LABEL_DECL)
277 else if (TREE_CODE (exp) == CONST_DECL)
279 /* The alignment of a CONST_DECL is determined by its initializer. */
280 exp = DECL_INITIAL (exp);
281 align = TYPE_ALIGN (TREE_TYPE (exp));
282 if (CONSTANT_CLASS_P (exp))
283 align = targetm.constant_alignment (exp, align);
285 known_alignment = true;
287 else if (DECL_P (exp))
289 align = DECL_ALIGN (exp);
290 known_alignment = true;
292 else if (TREE_CODE (exp) == INDIRECT_REF
293 || TREE_CODE (exp) == MEM_REF
294 || TREE_CODE (exp) == TARGET_MEM_REF)
296 tree addr = TREE_OPERAND (exp, 0);
297 unsigned ptr_align;
298 unsigned HOST_WIDE_INT ptr_bitpos;
299 unsigned HOST_WIDE_INT ptr_bitmask = ~0;
301 /* If the address is explicitely aligned, handle that. */
302 if (TREE_CODE (addr) == BIT_AND_EXPR
303 && TREE_CODE (TREE_OPERAND (addr, 1)) == INTEGER_CST)
305 ptr_bitmask = TREE_INT_CST_LOW (TREE_OPERAND (addr, 1));
306 ptr_bitmask *= BITS_PER_UNIT;
307 align = least_bit_hwi (ptr_bitmask);
308 addr = TREE_OPERAND (addr, 0);
311 known_alignment
312 = get_pointer_alignment_1 (addr, &ptr_align, &ptr_bitpos);
313 align = MAX (ptr_align, align);
315 /* Re-apply explicit alignment to the bitpos. */
316 ptr_bitpos &= ptr_bitmask;
318 /* The alignment of the pointer operand in a TARGET_MEM_REF
319 has to take the variable offset parts into account. */
320 if (TREE_CODE (exp) == TARGET_MEM_REF)
322 if (TMR_INDEX (exp))
324 unsigned HOST_WIDE_INT step = 1;
325 if (TMR_STEP (exp))
326 step = TREE_INT_CST_LOW (TMR_STEP (exp));
327 align = MIN (align, least_bit_hwi (step) * BITS_PER_UNIT);
329 if (TMR_INDEX2 (exp))
330 align = BITS_PER_UNIT;
331 known_alignment = false;
334 /* When EXP is an actual memory reference then we can use
335 TYPE_ALIGN of a pointer indirection to derive alignment.
336 Do so only if get_pointer_alignment_1 did not reveal absolute
337 alignment knowledge and if using that alignment would
338 improve the situation. */
339 unsigned int talign;
340 if (!addr_p && !known_alignment
341 && (talign = min_align_of_type (TREE_TYPE (exp)) * BITS_PER_UNIT)
342 && talign > align)
343 align = talign;
344 else
346 /* Else adjust bitpos accordingly. */
347 bitpos += ptr_bitpos;
348 if (TREE_CODE (exp) == MEM_REF
349 || TREE_CODE (exp) == TARGET_MEM_REF)
350 bitpos += mem_ref_offset (exp).force_shwi () * BITS_PER_UNIT;
353 else if (TREE_CODE (exp) == STRING_CST)
355 /* STRING_CST are the only constant objects we allow to be not
356 wrapped inside a CONST_DECL. */
357 align = TYPE_ALIGN (TREE_TYPE (exp));
358 if (CONSTANT_CLASS_P (exp))
359 align = targetm.constant_alignment (exp, align);
361 known_alignment = true;
364 /* If there is a non-constant offset part extract the maximum
365 alignment that can prevail. */
366 if (offset)
368 unsigned int trailing_zeros = tree_ctz (offset);
369 if (trailing_zeros < HOST_BITS_PER_INT)
371 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
372 if (inner)
373 align = MIN (align, inner);
377 /* Account for the alignment of runtime coefficients, so that the constant
378 bitpos is guaranteed to be accurate. */
379 unsigned int alt_align = ::known_alignment (bitpos - bitpos.coeffs[0]);
380 if (alt_align != 0 && alt_align < align)
382 align = alt_align;
383 known_alignment = false;
386 *alignp = align;
387 *bitposp = bitpos.coeffs[0] & (align - 1);
388 return known_alignment;
391 /* For a memory reference expression EXP compute values M and N such that M
392 divides (&EXP - N) and such that N < M. If these numbers can be determined,
393 store M in alignp and N in *BITPOSP and return true. Otherwise return false
394 and store BITS_PER_UNIT to *alignp and any bit-offset to *bitposp. */
396 bool
397 get_object_alignment_1 (tree exp, unsigned int *alignp,
398 unsigned HOST_WIDE_INT *bitposp)
400 return get_object_alignment_2 (exp, alignp, bitposp, false);
403 /* Return the alignment in bits of EXP, an object. */
405 unsigned int
406 get_object_alignment (tree exp)
408 unsigned HOST_WIDE_INT bitpos = 0;
409 unsigned int align;
411 get_object_alignment_1 (exp, &align, &bitpos);
413 /* align and bitpos now specify known low bits of the pointer.
414 ptr & (align - 1) == bitpos. */
416 if (bitpos != 0)
417 align = least_bit_hwi (bitpos);
418 return align;
421 /* For a pointer valued expression EXP compute values M and N such that M
422 divides (EXP - N) and such that N < M. If these numbers can be determined,
423 store M in alignp and N in *BITPOSP and return true. Return false if
424 the results are just a conservative approximation.
426 If EXP is not a pointer, false is returned too. */
428 bool
429 get_pointer_alignment_1 (tree exp, unsigned int *alignp,
430 unsigned HOST_WIDE_INT *bitposp)
432 STRIP_NOPS (exp);
434 if (TREE_CODE (exp) == ADDR_EXPR)
435 return get_object_alignment_2 (TREE_OPERAND (exp, 0),
436 alignp, bitposp, true);
437 else if (TREE_CODE (exp) == POINTER_PLUS_EXPR)
439 unsigned int align;
440 unsigned HOST_WIDE_INT bitpos;
441 bool res = get_pointer_alignment_1 (TREE_OPERAND (exp, 0),
442 &align, &bitpos);
443 if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
444 bitpos += TREE_INT_CST_LOW (TREE_OPERAND (exp, 1)) * BITS_PER_UNIT;
445 else
447 unsigned int trailing_zeros = tree_ctz (TREE_OPERAND (exp, 1));
448 if (trailing_zeros < HOST_BITS_PER_INT)
450 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
451 if (inner)
452 align = MIN (align, inner);
455 *alignp = align;
456 *bitposp = bitpos & (align - 1);
457 return res;
459 else if (TREE_CODE (exp) == SSA_NAME
460 && POINTER_TYPE_P (TREE_TYPE (exp)))
462 unsigned int ptr_align, ptr_misalign;
463 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (exp);
465 if (pi && get_ptr_info_alignment (pi, &ptr_align, &ptr_misalign))
467 *bitposp = ptr_misalign * BITS_PER_UNIT;
468 *alignp = ptr_align * BITS_PER_UNIT;
469 /* Make sure to return a sensible alignment when the multiplication
470 by BITS_PER_UNIT overflowed. */
471 if (*alignp == 0)
472 *alignp = 1u << (HOST_BITS_PER_INT - 1);
473 /* We cannot really tell whether this result is an approximation. */
474 return false;
476 else
478 *bitposp = 0;
479 *alignp = BITS_PER_UNIT;
480 return false;
483 else if (TREE_CODE (exp) == INTEGER_CST)
485 *alignp = BIGGEST_ALIGNMENT;
486 *bitposp = ((TREE_INT_CST_LOW (exp) * BITS_PER_UNIT)
487 & (BIGGEST_ALIGNMENT - 1));
488 return true;
491 *bitposp = 0;
492 *alignp = BITS_PER_UNIT;
493 return false;
496 /* Return the alignment in bits of EXP, a pointer valued expression.
497 The alignment returned is, by default, the alignment of the thing that
498 EXP points to. If it is not a POINTER_TYPE, 0 is returned.
500 Otherwise, look at the expression to see if we can do better, i.e., if the
501 expression is actually pointing at an object whose alignment is tighter. */
503 unsigned int
504 get_pointer_alignment (tree exp)
506 unsigned HOST_WIDE_INT bitpos = 0;
507 unsigned int align;
509 get_pointer_alignment_1 (exp, &align, &bitpos);
511 /* align and bitpos now specify known low bits of the pointer.
512 ptr & (align - 1) == bitpos. */
514 if (bitpos != 0)
515 align = least_bit_hwi (bitpos);
517 return align;
520 /* Return the number of non-zero elements in the sequence
521 [ PTR, PTR + MAXELTS ) where each element's size is ELTSIZE bytes.
522 ELTSIZE must be a power of 2 less than 8. Used by c_strlen. */
524 static unsigned
525 string_length (const void *ptr, unsigned eltsize, unsigned maxelts)
527 gcc_checking_assert (eltsize == 1 || eltsize == 2 || eltsize == 4);
529 unsigned n;
531 if (eltsize == 1)
533 /* Optimize the common case of plain char. */
534 for (n = 0; n < maxelts; n++)
536 const char *elt = (const char*) ptr + n;
537 if (!*elt)
538 break;
541 else
543 for (n = 0; n < maxelts; n++)
545 const char *elt = (const char*) ptr + n * eltsize;
546 if (!memcmp (elt, "\0\0\0\0", eltsize))
547 break;
550 return n;
553 /* Compute the length of a null-terminated character string or wide
554 character string handling character sizes of 1, 2, and 4 bytes.
555 TREE_STRING_LENGTH is not the right way because it evaluates to
556 the size of the character array in bytes (as opposed to characters)
557 and because it can contain a zero byte in the middle.
559 ONLY_VALUE should be nonzero if the result is not going to be emitted
560 into the instruction stream and zero if it is going to be expanded.
561 E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is nonzero, constant 3
562 is returned, otherwise NULL, since
563 len = c_strlen (src, 1); if (len) expand_expr (len, ...); would not
564 evaluate the side-effects.
566 If ONLY_VALUE is two then we do not emit warnings about out-of-bound
567 accesses. Note that this implies the result is not going to be emitted
568 into the instruction stream.
570 The value returned is of type `ssizetype'.
572 Unfortunately, string_constant can't access the values of const char
573 arrays with initializers, so neither can we do so here. */
575 tree
576 c_strlen (tree src, int only_value)
578 STRIP_NOPS (src);
579 if (TREE_CODE (src) == COND_EXPR
580 && (only_value || !TREE_SIDE_EFFECTS (TREE_OPERAND (src, 0))))
582 tree len1, len2;
584 len1 = c_strlen (TREE_OPERAND (src, 1), only_value);
585 len2 = c_strlen (TREE_OPERAND (src, 2), only_value);
586 if (tree_int_cst_equal (len1, len2))
587 return len1;
590 if (TREE_CODE (src) == COMPOUND_EXPR
591 && (only_value || !TREE_SIDE_EFFECTS (TREE_OPERAND (src, 0))))
592 return c_strlen (TREE_OPERAND (src, 1), only_value);
594 location_t loc = EXPR_LOC_OR_LOC (src, input_location);
596 /* Offset from the beginning of the string in bytes. */
597 tree byteoff;
598 src = string_constant (src, &byteoff);
599 if (src == 0)
600 return NULL_TREE;
602 /* Determine the size of the string element. */
603 unsigned eltsize
604 = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (src))));
606 /* Set MAXELTS to sizeof (SRC) / sizeof (*SRC) - 1, the maximum possible
607 length of SRC. */
608 unsigned maxelts = TREE_STRING_LENGTH (src) / eltsize - 1;
610 /* PTR can point to the byte representation of any string type, including
611 char* and wchar_t*. */
612 const char *ptr = TREE_STRING_POINTER (src);
614 if (byteoff && TREE_CODE (byteoff) != INTEGER_CST)
616 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
617 compute the offset to the following null if we don't know where to
618 start searching for it. */
619 if (string_length (ptr, eltsize, maxelts) < maxelts)
621 /* Return when an embedded null character is found. */
622 return NULL_TREE;
625 if (!maxelts)
626 return ssize_int (0);
628 /* We don't know the starting offset, but we do know that the string
629 has no internal zero bytes. We can assume that the offset falls
630 within the bounds of the string; otherwise, the programmer deserves
631 what he gets. Subtract the offset from the length of the string,
632 and return that. This would perhaps not be valid if we were dealing
633 with named arrays in addition to literal string constants. */
635 return size_diffop_loc (loc, size_int (maxelts * eltsize), byteoff);
638 /* Offset from the beginning of the string in elements. */
639 HOST_WIDE_INT eltoff;
641 /* We have a known offset into the string. Start searching there for
642 a null character if we can represent it as a single HOST_WIDE_INT. */
643 if (byteoff == 0)
644 eltoff = 0;
645 else if (! tree_fits_shwi_p (byteoff))
646 eltoff = -1;
647 else
648 eltoff = tree_to_shwi (byteoff) / eltsize;
650 /* If the offset is known to be out of bounds, warn, and call strlen at
651 runtime. */
652 if (eltoff < 0 || eltoff > maxelts)
654 /* Suppress multiple warnings for propagated constant strings. */
655 if (only_value != 2
656 && !TREE_NO_WARNING (src))
658 warning_at (loc, OPT_Warray_bounds,
659 "offset %qwi outside bounds of constant string",
660 eltoff);
661 TREE_NO_WARNING (src) = 1;
663 return NULL_TREE;
666 /* Use strlen to search for the first zero byte. Since any strings
667 constructed with build_string will have nulls appended, we win even
668 if we get handed something like (char[4])"abcd".
670 Since ELTOFF is our starting index into the string, no further
671 calculation is needed. */
672 unsigned len = string_length (ptr + eltoff * eltsize, eltsize,
673 maxelts - eltoff);
675 return ssize_int (len);
678 /* Return a constant integer corresponding to target reading
679 GET_MODE_BITSIZE (MODE) bits from string constant STR. */
681 static rtx
682 c_readstr (const char *str, scalar_int_mode mode)
684 HOST_WIDE_INT ch;
685 unsigned int i, j;
686 HOST_WIDE_INT tmp[MAX_BITSIZE_MODE_ANY_INT / HOST_BITS_PER_WIDE_INT];
688 gcc_assert (GET_MODE_CLASS (mode) == MODE_INT);
689 unsigned int len = (GET_MODE_PRECISION (mode) + HOST_BITS_PER_WIDE_INT - 1)
690 / HOST_BITS_PER_WIDE_INT;
692 gcc_assert (len <= MAX_BITSIZE_MODE_ANY_INT / HOST_BITS_PER_WIDE_INT);
693 for (i = 0; i < len; i++)
694 tmp[i] = 0;
696 ch = 1;
697 for (i = 0; i < GET_MODE_SIZE (mode); i++)
699 j = i;
700 if (WORDS_BIG_ENDIAN)
701 j = GET_MODE_SIZE (mode) - i - 1;
702 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
703 && GET_MODE_SIZE (mode) >= UNITS_PER_WORD)
704 j = j + UNITS_PER_WORD - 2 * (j % UNITS_PER_WORD) - 1;
705 j *= BITS_PER_UNIT;
707 if (ch)
708 ch = (unsigned char) str[i];
709 tmp[j / HOST_BITS_PER_WIDE_INT] |= ch << (j % HOST_BITS_PER_WIDE_INT);
712 wide_int c = wide_int::from_array (tmp, len, GET_MODE_PRECISION (mode));
713 return immed_wide_int_const (c, mode);
716 /* Cast a target constant CST to target CHAR and if that value fits into
717 host char type, return zero and put that value into variable pointed to by
718 P. */
720 static int
721 target_char_cast (tree cst, char *p)
723 unsigned HOST_WIDE_INT val, hostval;
725 if (TREE_CODE (cst) != INTEGER_CST
726 || CHAR_TYPE_SIZE > HOST_BITS_PER_WIDE_INT)
727 return 1;
729 /* Do not care if it fits or not right here. */
730 val = TREE_INT_CST_LOW (cst);
732 if (CHAR_TYPE_SIZE < HOST_BITS_PER_WIDE_INT)
733 val &= (HOST_WIDE_INT_1U << CHAR_TYPE_SIZE) - 1;
735 hostval = val;
736 if (HOST_BITS_PER_CHAR < HOST_BITS_PER_WIDE_INT)
737 hostval &= (HOST_WIDE_INT_1U << HOST_BITS_PER_CHAR) - 1;
739 if (val != hostval)
740 return 1;
742 *p = hostval;
743 return 0;
746 /* Similar to save_expr, but assumes that arbitrary code is not executed
747 in between the multiple evaluations. In particular, we assume that a
748 non-addressable local variable will not be modified. */
750 static tree
751 builtin_save_expr (tree exp)
753 if (TREE_CODE (exp) == SSA_NAME
754 || (TREE_ADDRESSABLE (exp) == 0
755 && (TREE_CODE (exp) == PARM_DECL
756 || (VAR_P (exp) && !TREE_STATIC (exp)))))
757 return exp;
759 return save_expr (exp);
762 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
763 times to get the address of either a higher stack frame, or a return
764 address located within it (depending on FNDECL_CODE). */
766 static rtx
767 expand_builtin_return_addr (enum built_in_function fndecl_code, int count)
769 int i;
770 rtx tem = INITIAL_FRAME_ADDRESS_RTX;
771 if (tem == NULL_RTX)
773 /* For a zero count with __builtin_return_address, we don't care what
774 frame address we return, because target-specific definitions will
775 override us. Therefore frame pointer elimination is OK, and using
776 the soft frame pointer is OK.
778 For a nonzero count, or a zero count with __builtin_frame_address,
779 we require a stable offset from the current frame pointer to the
780 previous one, so we must use the hard frame pointer, and
781 we must disable frame pointer elimination. */
782 if (count == 0 && fndecl_code == BUILT_IN_RETURN_ADDRESS)
783 tem = frame_pointer_rtx;
784 else
786 tem = hard_frame_pointer_rtx;
788 /* Tell reload not to eliminate the frame pointer. */
789 crtl->accesses_prior_frames = 1;
793 if (count > 0)
794 SETUP_FRAME_ADDRESSES ();
796 /* On the SPARC, the return address is not in the frame, it is in a
797 register. There is no way to access it off of the current frame
798 pointer, but it can be accessed off the previous frame pointer by
799 reading the value from the register window save area. */
800 if (RETURN_ADDR_IN_PREVIOUS_FRAME && fndecl_code == BUILT_IN_RETURN_ADDRESS)
801 count--;
803 /* Scan back COUNT frames to the specified frame. */
804 for (i = 0; i < count; i++)
806 /* Assume the dynamic chain pointer is in the word that the
807 frame address points to, unless otherwise specified. */
808 tem = DYNAMIC_CHAIN_ADDRESS (tem);
809 tem = memory_address (Pmode, tem);
810 tem = gen_frame_mem (Pmode, tem);
811 tem = copy_to_reg (tem);
814 /* For __builtin_frame_address, return what we've got. But, on
815 the SPARC for example, we may have to add a bias. */
816 if (fndecl_code == BUILT_IN_FRAME_ADDRESS)
817 return FRAME_ADDR_RTX (tem);
819 /* For __builtin_return_address, get the return address from that frame. */
820 #ifdef RETURN_ADDR_RTX
821 tem = RETURN_ADDR_RTX (count, tem);
822 #else
823 tem = memory_address (Pmode,
824 plus_constant (Pmode, tem, GET_MODE_SIZE (Pmode)));
825 tem = gen_frame_mem (Pmode, tem);
826 #endif
827 return tem;
830 /* Alias set used for setjmp buffer. */
831 static alias_set_type setjmp_alias_set = -1;
833 /* Construct the leading half of a __builtin_setjmp call. Control will
834 return to RECEIVER_LABEL. This is also called directly by the SJLJ
835 exception handling code. */
837 void
838 expand_builtin_setjmp_setup (rtx buf_addr, rtx receiver_label)
840 machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
841 rtx stack_save;
842 rtx mem;
844 if (setjmp_alias_set == -1)
845 setjmp_alias_set = new_alias_set ();
847 buf_addr = convert_memory_address (Pmode, buf_addr);
849 buf_addr = force_reg (Pmode, force_operand (buf_addr, NULL_RTX));
851 /* We store the frame pointer and the address of receiver_label in
852 the buffer and use the rest of it for the stack save area, which
853 is machine-dependent. */
855 mem = gen_rtx_MEM (Pmode, buf_addr);
856 set_mem_alias_set (mem, setjmp_alias_set);
857 emit_move_insn (mem, targetm.builtin_setjmp_frame_value ());
859 mem = gen_rtx_MEM (Pmode, plus_constant (Pmode, buf_addr,
860 GET_MODE_SIZE (Pmode))),
861 set_mem_alias_set (mem, setjmp_alias_set);
863 emit_move_insn (validize_mem (mem),
864 force_reg (Pmode, gen_rtx_LABEL_REF (Pmode, receiver_label)));
866 stack_save = gen_rtx_MEM (sa_mode,
867 plus_constant (Pmode, buf_addr,
868 2 * GET_MODE_SIZE (Pmode)));
869 set_mem_alias_set (stack_save, setjmp_alias_set);
870 emit_stack_save (SAVE_NONLOCAL, &stack_save);
872 /* If there is further processing to do, do it. */
873 if (targetm.have_builtin_setjmp_setup ())
874 emit_insn (targetm.gen_builtin_setjmp_setup (buf_addr));
876 /* We have a nonlocal label. */
877 cfun->has_nonlocal_label = 1;
880 /* Construct the trailing part of a __builtin_setjmp call. This is
881 also called directly by the SJLJ exception handling code.
882 If RECEIVER_LABEL is NULL, instead contruct a nonlocal goto handler. */
884 void
885 expand_builtin_setjmp_receiver (rtx receiver_label)
887 rtx chain;
889 /* Mark the FP as used when we get here, so we have to make sure it's
890 marked as used by this function. */
891 emit_use (hard_frame_pointer_rtx);
893 /* Mark the static chain as clobbered here so life information
894 doesn't get messed up for it. */
895 chain = rtx_for_static_chain (current_function_decl, true);
896 if (chain && REG_P (chain))
897 emit_clobber (chain);
899 /* Now put in the code to restore the frame pointer, and argument
900 pointer, if needed. */
901 if (! targetm.have_nonlocal_goto ())
903 /* First adjust our frame pointer to its actual value. It was
904 previously set to the start of the virtual area corresponding to
905 the stacked variables when we branched here and now needs to be
906 adjusted to the actual hardware fp value.
908 Assignments to virtual registers are converted by
909 instantiate_virtual_regs into the corresponding assignment
910 to the underlying register (fp in this case) that makes
911 the original assignment true.
912 So the following insn will actually be decrementing fp by
913 TARGET_STARTING_FRAME_OFFSET. */
914 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
916 /* Restoring the frame pointer also modifies the hard frame pointer.
917 Mark it used (so that the previous assignment remains live once
918 the frame pointer is eliminated) and clobbered (to represent the
919 implicit update from the assignment). */
920 emit_use (hard_frame_pointer_rtx);
921 emit_clobber (hard_frame_pointer_rtx);
924 if (!HARD_FRAME_POINTER_IS_ARG_POINTER && fixed_regs[ARG_POINTER_REGNUM])
926 /* If the argument pointer can be eliminated in favor of the
927 frame pointer, we don't need to restore it. We assume here
928 that if such an elimination is present, it can always be used.
929 This is the case on all known machines; if we don't make this
930 assumption, we do unnecessary saving on many machines. */
931 size_t i;
932 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
934 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
935 if (elim_regs[i].from == ARG_POINTER_REGNUM
936 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
937 break;
939 if (i == ARRAY_SIZE (elim_regs))
941 /* Now restore our arg pointer from the address at which it
942 was saved in our stack frame. */
943 emit_move_insn (crtl->args.internal_arg_pointer,
944 copy_to_reg (get_arg_pointer_save_area ()));
948 if (receiver_label != NULL && targetm.have_builtin_setjmp_receiver ())
949 emit_insn (targetm.gen_builtin_setjmp_receiver (receiver_label));
950 else if (targetm.have_nonlocal_goto_receiver ())
951 emit_insn (targetm.gen_nonlocal_goto_receiver ());
952 else
953 { /* Nothing */ }
955 /* We must not allow the code we just generated to be reordered by
956 scheduling. Specifically, the update of the frame pointer must
957 happen immediately, not later. */
958 emit_insn (gen_blockage ());
961 /* __builtin_longjmp is passed a pointer to an array of five words (not
962 all will be used on all machines). It operates similarly to the C
963 library function of the same name, but is more efficient. Much of
964 the code below is copied from the handling of non-local gotos. */
966 static void
967 expand_builtin_longjmp (rtx buf_addr, rtx value)
969 rtx fp, lab, stack;
970 rtx_insn *insn, *last;
971 machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
973 /* DRAP is needed for stack realign if longjmp is expanded to current
974 function */
975 if (SUPPORTS_STACK_ALIGNMENT)
976 crtl->need_drap = true;
978 if (setjmp_alias_set == -1)
979 setjmp_alias_set = new_alias_set ();
981 buf_addr = convert_memory_address (Pmode, buf_addr);
983 buf_addr = force_reg (Pmode, buf_addr);
985 /* We require that the user must pass a second argument of 1, because
986 that is what builtin_setjmp will return. */
987 gcc_assert (value == const1_rtx);
989 last = get_last_insn ();
990 if (targetm.have_builtin_longjmp ())
991 emit_insn (targetm.gen_builtin_longjmp (buf_addr));
992 else
994 fp = gen_rtx_MEM (Pmode, buf_addr);
995 lab = gen_rtx_MEM (Pmode, plus_constant (Pmode, buf_addr,
996 GET_MODE_SIZE (Pmode)));
998 stack = gen_rtx_MEM (sa_mode, plus_constant (Pmode, buf_addr,
999 2 * GET_MODE_SIZE (Pmode)));
1000 set_mem_alias_set (fp, setjmp_alias_set);
1001 set_mem_alias_set (lab, setjmp_alias_set);
1002 set_mem_alias_set (stack, setjmp_alias_set);
1004 /* Pick up FP, label, and SP from the block and jump. This code is
1005 from expand_goto in stmt.c; see there for detailed comments. */
1006 if (targetm.have_nonlocal_goto ())
1007 /* We have to pass a value to the nonlocal_goto pattern that will
1008 get copied into the static_chain pointer, but it does not matter
1009 what that value is, because builtin_setjmp does not use it. */
1010 emit_insn (targetm.gen_nonlocal_goto (value, lab, stack, fp));
1011 else
1013 lab = copy_to_reg (lab);
1015 emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
1016 emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
1018 emit_move_insn (hard_frame_pointer_rtx, fp);
1019 emit_stack_restore (SAVE_NONLOCAL, stack);
1021 emit_use (hard_frame_pointer_rtx);
1022 emit_use (stack_pointer_rtx);
1023 emit_indirect_jump (lab);
1027 /* Search backwards and mark the jump insn as a non-local goto.
1028 Note that this precludes the use of __builtin_longjmp to a
1029 __builtin_setjmp target in the same function. However, we've
1030 already cautioned the user that these functions are for
1031 internal exception handling use only. */
1032 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
1034 gcc_assert (insn != last);
1036 if (JUMP_P (insn))
1038 add_reg_note (insn, REG_NON_LOCAL_GOTO, const0_rtx);
1039 break;
1041 else if (CALL_P (insn))
1042 break;
1046 static inline bool
1047 more_const_call_expr_args_p (const const_call_expr_arg_iterator *iter)
1049 return (iter->i < iter->n);
1052 /* This function validates the types of a function call argument list
1053 against a specified list of tree_codes. If the last specifier is a 0,
1054 that represents an ellipsis, otherwise the last specifier must be a
1055 VOID_TYPE. */
1057 static bool
1058 validate_arglist (const_tree callexpr, ...)
1060 enum tree_code code;
1061 bool res = 0;
1062 va_list ap;
1063 const_call_expr_arg_iterator iter;
1064 const_tree arg;
1066 va_start (ap, callexpr);
1067 init_const_call_expr_arg_iterator (callexpr, &iter);
1069 /* Get a bitmap of pointer argument numbers declared attribute nonnull. */
1070 tree fn = CALL_EXPR_FN (callexpr);
1071 bitmap argmap = get_nonnull_args (TREE_TYPE (TREE_TYPE (fn)));
1073 for (unsigned argno = 1; ; ++argno)
1075 code = (enum tree_code) va_arg (ap, int);
1077 switch (code)
1079 case 0:
1080 /* This signifies an ellipses, any further arguments are all ok. */
1081 res = true;
1082 goto end;
1083 case VOID_TYPE:
1084 /* This signifies an endlink, if no arguments remain, return
1085 true, otherwise return false. */
1086 res = !more_const_call_expr_args_p (&iter);
1087 goto end;
1088 case POINTER_TYPE:
1089 /* The actual argument must be nonnull when either the whole
1090 called function has been declared nonnull, or when the formal
1091 argument corresponding to the actual argument has been. */
1092 if (argmap
1093 && (bitmap_empty_p (argmap) || bitmap_bit_p (argmap, argno)))
1095 arg = next_const_call_expr_arg (&iter);
1096 if (!validate_arg (arg, code) || integer_zerop (arg))
1097 goto end;
1098 break;
1100 /* FALLTHRU */
1101 default:
1102 /* If no parameters remain or the parameter's code does not
1103 match the specified code, return false. Otherwise continue
1104 checking any remaining arguments. */
1105 arg = next_const_call_expr_arg (&iter);
1106 if (!validate_arg (arg, code))
1107 goto end;
1108 break;
1112 /* We need gotos here since we can only have one VA_CLOSE in a
1113 function. */
1114 end: ;
1115 va_end (ap);
1117 BITMAP_FREE (argmap);
1119 return res;
1122 /* Expand a call to __builtin_nonlocal_goto. We're passed the target label
1123 and the address of the save area. */
1125 static rtx
1126 expand_builtin_nonlocal_goto (tree exp)
1128 tree t_label, t_save_area;
1129 rtx r_label, r_save_area, r_fp, r_sp;
1130 rtx_insn *insn;
1132 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
1133 return NULL_RTX;
1135 t_label = CALL_EXPR_ARG (exp, 0);
1136 t_save_area = CALL_EXPR_ARG (exp, 1);
1138 r_label = expand_normal (t_label);
1139 r_label = convert_memory_address (Pmode, r_label);
1140 r_save_area = expand_normal (t_save_area);
1141 r_save_area = convert_memory_address (Pmode, r_save_area);
1142 /* Copy the address of the save location to a register just in case it was
1143 based on the frame pointer. */
1144 r_save_area = copy_to_reg (r_save_area);
1145 r_fp = gen_rtx_MEM (Pmode, r_save_area);
1146 r_sp = gen_rtx_MEM (STACK_SAVEAREA_MODE (SAVE_NONLOCAL),
1147 plus_constant (Pmode, r_save_area,
1148 GET_MODE_SIZE (Pmode)));
1150 crtl->has_nonlocal_goto = 1;
1152 /* ??? We no longer need to pass the static chain value, afaik. */
1153 if (targetm.have_nonlocal_goto ())
1154 emit_insn (targetm.gen_nonlocal_goto (const0_rtx, r_label, r_sp, r_fp));
1155 else
1157 r_label = copy_to_reg (r_label);
1159 emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
1160 emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
1162 /* Restore frame pointer for containing function. */
1163 emit_move_insn (hard_frame_pointer_rtx, r_fp);
1164 emit_stack_restore (SAVE_NONLOCAL, r_sp);
1166 /* USE of hard_frame_pointer_rtx added for consistency;
1167 not clear if really needed. */
1168 emit_use (hard_frame_pointer_rtx);
1169 emit_use (stack_pointer_rtx);
1171 /* If the architecture is using a GP register, we must
1172 conservatively assume that the target function makes use of it.
1173 The prologue of functions with nonlocal gotos must therefore
1174 initialize the GP register to the appropriate value, and we
1175 must then make sure that this value is live at the point
1176 of the jump. (Note that this doesn't necessarily apply
1177 to targets with a nonlocal_goto pattern; they are free
1178 to implement it in their own way. Note also that this is
1179 a no-op if the GP register is a global invariant.) */
1180 unsigned regnum = PIC_OFFSET_TABLE_REGNUM;
1181 if (regnum != INVALID_REGNUM && fixed_regs[regnum])
1182 emit_use (pic_offset_table_rtx);
1184 emit_indirect_jump (r_label);
1187 /* Search backwards to the jump insn and mark it as a
1188 non-local goto. */
1189 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
1191 if (JUMP_P (insn))
1193 add_reg_note (insn, REG_NON_LOCAL_GOTO, const0_rtx);
1194 break;
1196 else if (CALL_P (insn))
1197 break;
1200 return const0_rtx;
1203 /* __builtin_update_setjmp_buf is passed a pointer to an array of five words
1204 (not all will be used on all machines) that was passed to __builtin_setjmp.
1205 It updates the stack pointer in that block to the current value. This is
1206 also called directly by the SJLJ exception handling code. */
1208 void
1209 expand_builtin_update_setjmp_buf (rtx buf_addr)
1211 machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
1212 buf_addr = convert_memory_address (Pmode, buf_addr);
1213 rtx stack_save
1214 = gen_rtx_MEM (sa_mode,
1215 memory_address
1216 (sa_mode,
1217 plus_constant (Pmode, buf_addr,
1218 2 * GET_MODE_SIZE (Pmode))));
1220 emit_stack_save (SAVE_NONLOCAL, &stack_save);
1223 /* Expand a call to __builtin_prefetch. For a target that does not support
1224 data prefetch, evaluate the memory address argument in case it has side
1225 effects. */
1227 static void
1228 expand_builtin_prefetch (tree exp)
1230 tree arg0, arg1, arg2;
1231 int nargs;
1232 rtx op0, op1, op2;
1234 if (!validate_arglist (exp, POINTER_TYPE, 0))
1235 return;
1237 arg0 = CALL_EXPR_ARG (exp, 0);
1239 /* Arguments 1 and 2 are optional; argument 1 (read/write) defaults to
1240 zero (read) and argument 2 (locality) defaults to 3 (high degree of
1241 locality). */
1242 nargs = call_expr_nargs (exp);
1243 if (nargs > 1)
1244 arg1 = CALL_EXPR_ARG (exp, 1);
1245 else
1246 arg1 = integer_zero_node;
1247 if (nargs > 2)
1248 arg2 = CALL_EXPR_ARG (exp, 2);
1249 else
1250 arg2 = integer_three_node;
1252 /* Argument 0 is an address. */
1253 op0 = expand_expr (arg0, NULL_RTX, Pmode, EXPAND_NORMAL);
1255 /* Argument 1 (read/write flag) must be a compile-time constant int. */
1256 if (TREE_CODE (arg1) != INTEGER_CST)
1258 error ("second argument to %<__builtin_prefetch%> must be a constant");
1259 arg1 = integer_zero_node;
1261 op1 = expand_normal (arg1);
1262 /* Argument 1 must be either zero or one. */
1263 if (INTVAL (op1) != 0 && INTVAL (op1) != 1)
1265 warning (0, "invalid second argument to %<__builtin_prefetch%>;"
1266 " using zero");
1267 op1 = const0_rtx;
1270 /* Argument 2 (locality) must be a compile-time constant int. */
1271 if (TREE_CODE (arg2) != INTEGER_CST)
1273 error ("third argument to %<__builtin_prefetch%> must be a constant");
1274 arg2 = integer_zero_node;
1276 op2 = expand_normal (arg2);
1277 /* Argument 2 must be 0, 1, 2, or 3. */
1278 if (INTVAL (op2) < 0 || INTVAL (op2) > 3)
1280 warning (0, "invalid third argument to %<__builtin_prefetch%>; using zero");
1281 op2 = const0_rtx;
1284 if (targetm.have_prefetch ())
1286 struct expand_operand ops[3];
1288 create_address_operand (&ops[0], op0);
1289 create_integer_operand (&ops[1], INTVAL (op1));
1290 create_integer_operand (&ops[2], INTVAL (op2));
1291 if (maybe_expand_insn (targetm.code_for_prefetch, 3, ops))
1292 return;
1295 /* Don't do anything with direct references to volatile memory, but
1296 generate code to handle other side effects. */
1297 if (!MEM_P (op0) && side_effects_p (op0))
1298 emit_insn (op0);
1301 /* Get a MEM rtx for expression EXP which is the address of an operand
1302 to be used in a string instruction (cmpstrsi, movmemsi, ..). LEN is
1303 the maximum length of the block of memory that might be accessed or
1304 NULL if unknown. */
1306 static rtx
1307 get_memory_rtx (tree exp, tree len)
1309 tree orig_exp = exp;
1310 rtx addr, mem;
1312 /* When EXP is not resolved SAVE_EXPR, MEM_ATTRS can be still derived
1313 from its expression, for expr->a.b only <variable>.a.b is recorded. */
1314 if (TREE_CODE (exp) == SAVE_EXPR && !SAVE_EXPR_RESOLVED_P (exp))
1315 exp = TREE_OPERAND (exp, 0);
1317 addr = expand_expr (orig_exp, NULL_RTX, ptr_mode, EXPAND_NORMAL);
1318 mem = gen_rtx_MEM (BLKmode, memory_address (BLKmode, addr));
1320 /* Get an expression we can use to find the attributes to assign to MEM.
1321 First remove any nops. */
1322 while (CONVERT_EXPR_P (exp)
1323 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
1324 exp = TREE_OPERAND (exp, 0);
1326 /* Build a MEM_REF representing the whole accessed area as a byte blob,
1327 (as builtin stringops may alias with anything). */
1328 exp = fold_build2 (MEM_REF,
1329 build_array_type (char_type_node,
1330 build_range_type (sizetype,
1331 size_one_node, len)),
1332 exp, build_int_cst (ptr_type_node, 0));
1334 /* If the MEM_REF has no acceptable address, try to get the base object
1335 from the original address we got, and build an all-aliasing
1336 unknown-sized access to that one. */
1337 if (is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
1338 set_mem_attributes (mem, exp, 0);
1339 else if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
1340 && (exp = get_base_address (TREE_OPERAND (TREE_OPERAND (exp, 0),
1341 0))))
1343 exp = build_fold_addr_expr (exp);
1344 exp = fold_build2 (MEM_REF,
1345 build_array_type (char_type_node,
1346 build_range_type (sizetype,
1347 size_zero_node,
1348 NULL)),
1349 exp, build_int_cst (ptr_type_node, 0));
1350 set_mem_attributes (mem, exp, 0);
1352 set_mem_alias_set (mem, 0);
1353 return mem;
1356 /* Built-in functions to perform an untyped call and return. */
1358 #define apply_args_mode \
1359 (this_target_builtins->x_apply_args_mode)
1360 #define apply_result_mode \
1361 (this_target_builtins->x_apply_result_mode)
1363 /* Return the size required for the block returned by __builtin_apply_args,
1364 and initialize apply_args_mode. */
1366 static int
1367 apply_args_size (void)
1369 static int size = -1;
1370 int align;
1371 unsigned int regno;
1373 /* The values computed by this function never change. */
1374 if (size < 0)
1376 /* The first value is the incoming arg-pointer. */
1377 size = GET_MODE_SIZE (Pmode);
1379 /* The second value is the structure value address unless this is
1380 passed as an "invisible" first argument. */
1381 if (targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0))
1382 size += GET_MODE_SIZE (Pmode);
1384 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1385 if (FUNCTION_ARG_REGNO_P (regno))
1387 fixed_size_mode mode = targetm.calls.get_raw_arg_mode (regno);
1389 gcc_assert (mode != VOIDmode);
1391 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1392 if (size % align != 0)
1393 size = CEIL (size, align) * align;
1394 size += GET_MODE_SIZE (mode);
1395 apply_args_mode[regno] = mode;
1397 else
1399 apply_args_mode[regno] = as_a <fixed_size_mode> (VOIDmode);
1402 return size;
1405 /* Return the size required for the block returned by __builtin_apply,
1406 and initialize apply_result_mode. */
1408 static int
1409 apply_result_size (void)
1411 static int size = -1;
1412 int align, regno;
1414 /* The values computed by this function never change. */
1415 if (size < 0)
1417 size = 0;
1419 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1420 if (targetm.calls.function_value_regno_p (regno))
1422 fixed_size_mode mode = targetm.calls.get_raw_result_mode (regno);
1424 gcc_assert (mode != VOIDmode);
1426 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1427 if (size % align != 0)
1428 size = CEIL (size, align) * align;
1429 size += GET_MODE_SIZE (mode);
1430 apply_result_mode[regno] = mode;
1432 else
1433 apply_result_mode[regno] = as_a <fixed_size_mode> (VOIDmode);
1435 /* Allow targets that use untyped_call and untyped_return to override
1436 the size so that machine-specific information can be stored here. */
1437 #ifdef APPLY_RESULT_SIZE
1438 size = APPLY_RESULT_SIZE;
1439 #endif
1441 return size;
1444 /* Create a vector describing the result block RESULT. If SAVEP is true,
1445 the result block is used to save the values; otherwise it is used to
1446 restore the values. */
1448 static rtx
1449 result_vector (int savep, rtx result)
1451 int regno, size, align, nelts;
1452 fixed_size_mode mode;
1453 rtx reg, mem;
1454 rtx *savevec = XALLOCAVEC (rtx, FIRST_PSEUDO_REGISTER);
1456 size = nelts = 0;
1457 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1458 if ((mode = apply_result_mode[regno]) != VOIDmode)
1460 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1461 if (size % align != 0)
1462 size = CEIL (size, align) * align;
1463 reg = gen_rtx_REG (mode, savep ? regno : INCOMING_REGNO (regno));
1464 mem = adjust_address (result, mode, size);
1465 savevec[nelts++] = (savep
1466 ? gen_rtx_SET (mem, reg)
1467 : gen_rtx_SET (reg, mem));
1468 size += GET_MODE_SIZE (mode);
1470 return gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (nelts, savevec));
1473 /* Save the state required to perform an untyped call with the same
1474 arguments as were passed to the current function. */
1476 static rtx
1477 expand_builtin_apply_args_1 (void)
1479 rtx registers, tem;
1480 int size, align, regno;
1481 fixed_size_mode mode;
1482 rtx struct_incoming_value = targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 1);
1484 /* Create a block where the arg-pointer, structure value address,
1485 and argument registers can be saved. */
1486 registers = assign_stack_local (BLKmode, apply_args_size (), -1);
1488 /* Walk past the arg-pointer and structure value address. */
1489 size = GET_MODE_SIZE (Pmode);
1490 if (targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0))
1491 size += GET_MODE_SIZE (Pmode);
1493 /* Save each register used in calling a function to the block. */
1494 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1495 if ((mode = apply_args_mode[regno]) != VOIDmode)
1497 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1498 if (size % align != 0)
1499 size = CEIL (size, align) * align;
1501 tem = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1503 emit_move_insn (adjust_address (registers, mode, size), tem);
1504 size += GET_MODE_SIZE (mode);
1507 /* Save the arg pointer to the block. */
1508 tem = copy_to_reg (crtl->args.internal_arg_pointer);
1509 /* We need the pointer as the caller actually passed them to us, not
1510 as we might have pretended they were passed. Make sure it's a valid
1511 operand, as emit_move_insn isn't expected to handle a PLUS. */
1512 if (STACK_GROWS_DOWNWARD)
1514 = force_operand (plus_constant (Pmode, tem,
1515 crtl->args.pretend_args_size),
1516 NULL_RTX);
1517 emit_move_insn (adjust_address (registers, Pmode, 0), tem);
1519 size = GET_MODE_SIZE (Pmode);
1521 /* Save the structure value address unless this is passed as an
1522 "invisible" first argument. */
1523 if (struct_incoming_value)
1525 emit_move_insn (adjust_address (registers, Pmode, size),
1526 copy_to_reg (struct_incoming_value));
1527 size += GET_MODE_SIZE (Pmode);
1530 /* Return the address of the block. */
1531 return copy_addr_to_reg (XEXP (registers, 0));
1534 /* __builtin_apply_args returns block of memory allocated on
1535 the stack into which is stored the arg pointer, structure
1536 value address, static chain, and all the registers that might
1537 possibly be used in performing a function call. The code is
1538 moved to the start of the function so the incoming values are
1539 saved. */
1541 static rtx
1542 expand_builtin_apply_args (void)
1544 /* Don't do __builtin_apply_args more than once in a function.
1545 Save the result of the first call and reuse it. */
1546 if (apply_args_value != 0)
1547 return apply_args_value;
1549 /* When this function is called, it means that registers must be
1550 saved on entry to this function. So we migrate the
1551 call to the first insn of this function. */
1552 rtx temp;
1554 start_sequence ();
1555 temp = expand_builtin_apply_args_1 ();
1556 rtx_insn *seq = get_insns ();
1557 end_sequence ();
1559 apply_args_value = temp;
1561 /* Put the insns after the NOTE that starts the function.
1562 If this is inside a start_sequence, make the outer-level insn
1563 chain current, so the code is placed at the start of the
1564 function. If internal_arg_pointer is a non-virtual pseudo,
1565 it needs to be placed after the function that initializes
1566 that pseudo. */
1567 push_topmost_sequence ();
1568 if (REG_P (crtl->args.internal_arg_pointer)
1569 && REGNO (crtl->args.internal_arg_pointer) > LAST_VIRTUAL_REGISTER)
1570 emit_insn_before (seq, parm_birth_insn);
1571 else
1572 emit_insn_before (seq, NEXT_INSN (entry_of_function ()));
1573 pop_topmost_sequence ();
1574 return temp;
1578 /* Perform an untyped call and save the state required to perform an
1579 untyped return of whatever value was returned by the given function. */
1581 static rtx
1582 expand_builtin_apply (rtx function, rtx arguments, rtx argsize)
1584 int size, align, regno;
1585 fixed_size_mode mode;
1586 rtx incoming_args, result, reg, dest, src;
1587 rtx_call_insn *call_insn;
1588 rtx old_stack_level = 0;
1589 rtx call_fusage = 0;
1590 rtx struct_value = targetm.calls.struct_value_rtx (cfun ? TREE_TYPE (cfun->decl) : 0, 0);
1592 arguments = convert_memory_address (Pmode, arguments);
1594 /* Create a block where the return registers can be saved. */
1595 result = assign_stack_local (BLKmode, apply_result_size (), -1);
1597 /* Fetch the arg pointer from the ARGUMENTS block. */
1598 incoming_args = gen_reg_rtx (Pmode);
1599 emit_move_insn (incoming_args, gen_rtx_MEM (Pmode, arguments));
1600 if (!STACK_GROWS_DOWNWARD)
1601 incoming_args = expand_simple_binop (Pmode, MINUS, incoming_args, argsize,
1602 incoming_args, 0, OPTAB_LIB_WIDEN);
1604 /* Push a new argument block and copy the arguments. Do not allow
1605 the (potential) memcpy call below to interfere with our stack
1606 manipulations. */
1607 do_pending_stack_adjust ();
1608 NO_DEFER_POP;
1610 /* Save the stack with nonlocal if available. */
1611 if (targetm.have_save_stack_nonlocal ())
1612 emit_stack_save (SAVE_NONLOCAL, &old_stack_level);
1613 else
1614 emit_stack_save (SAVE_BLOCK, &old_stack_level);
1616 /* Allocate a block of memory onto the stack and copy the memory
1617 arguments to the outgoing arguments address. We can pass TRUE
1618 as the 4th argument because we just saved the stack pointer
1619 and will restore it right after the call. */
1620 allocate_dynamic_stack_space (argsize, 0, BIGGEST_ALIGNMENT, -1, true);
1622 /* Set DRAP flag to true, even though allocate_dynamic_stack_space
1623 may have already set current_function_calls_alloca to true.
1624 current_function_calls_alloca won't be set if argsize is zero,
1625 so we have to guarantee need_drap is true here. */
1626 if (SUPPORTS_STACK_ALIGNMENT)
1627 crtl->need_drap = true;
1629 dest = virtual_outgoing_args_rtx;
1630 if (!STACK_GROWS_DOWNWARD)
1632 if (CONST_INT_P (argsize))
1633 dest = plus_constant (Pmode, dest, -INTVAL (argsize));
1634 else
1635 dest = gen_rtx_PLUS (Pmode, dest, negate_rtx (Pmode, argsize));
1637 dest = gen_rtx_MEM (BLKmode, dest);
1638 set_mem_align (dest, PARM_BOUNDARY);
1639 src = gen_rtx_MEM (BLKmode, incoming_args);
1640 set_mem_align (src, PARM_BOUNDARY);
1641 emit_block_move (dest, src, argsize, BLOCK_OP_NORMAL);
1643 /* Refer to the argument block. */
1644 apply_args_size ();
1645 arguments = gen_rtx_MEM (BLKmode, arguments);
1646 set_mem_align (arguments, PARM_BOUNDARY);
1648 /* Walk past the arg-pointer and structure value address. */
1649 size = GET_MODE_SIZE (Pmode);
1650 if (struct_value)
1651 size += GET_MODE_SIZE (Pmode);
1653 /* Restore each of the registers previously saved. Make USE insns
1654 for each of these registers for use in making the call. */
1655 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1656 if ((mode = apply_args_mode[regno]) != VOIDmode)
1658 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1659 if (size % align != 0)
1660 size = CEIL (size, align) * align;
1661 reg = gen_rtx_REG (mode, regno);
1662 emit_move_insn (reg, adjust_address (arguments, mode, size));
1663 use_reg (&call_fusage, reg);
1664 size += GET_MODE_SIZE (mode);
1667 /* Restore the structure value address unless this is passed as an
1668 "invisible" first argument. */
1669 size = GET_MODE_SIZE (Pmode);
1670 if (struct_value)
1672 rtx value = gen_reg_rtx (Pmode);
1673 emit_move_insn (value, adjust_address (arguments, Pmode, size));
1674 emit_move_insn (struct_value, value);
1675 if (REG_P (struct_value))
1676 use_reg (&call_fusage, struct_value);
1677 size += GET_MODE_SIZE (Pmode);
1680 /* All arguments and registers used for the call are set up by now! */
1681 function = prepare_call_address (NULL, function, NULL, &call_fusage, 0, 0);
1683 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1684 and we don't want to load it into a register as an optimization,
1685 because prepare_call_address already did it if it should be done. */
1686 if (GET_CODE (function) != SYMBOL_REF)
1687 function = memory_address (FUNCTION_MODE, function);
1689 /* Generate the actual call instruction and save the return value. */
1690 if (targetm.have_untyped_call ())
1692 rtx mem = gen_rtx_MEM (FUNCTION_MODE, function);
1693 emit_call_insn (targetm.gen_untyped_call (mem, result,
1694 result_vector (1, result)));
1696 else if (targetm.have_call_value ())
1698 rtx valreg = 0;
1700 /* Locate the unique return register. It is not possible to
1701 express a call that sets more than one return register using
1702 call_value; use untyped_call for that. In fact, untyped_call
1703 only needs to save the return registers in the given block. */
1704 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1705 if ((mode = apply_result_mode[regno]) != VOIDmode)
1707 gcc_assert (!valreg); /* have_untyped_call required. */
1709 valreg = gen_rtx_REG (mode, regno);
1712 emit_insn (targetm.gen_call_value (valreg,
1713 gen_rtx_MEM (FUNCTION_MODE, function),
1714 const0_rtx, NULL_RTX, const0_rtx));
1716 emit_move_insn (adjust_address (result, GET_MODE (valreg), 0), valreg);
1718 else
1719 gcc_unreachable ();
1721 /* Find the CALL insn we just emitted, and attach the register usage
1722 information. */
1723 call_insn = last_call_insn ();
1724 add_function_usage_to (call_insn, call_fusage);
1726 /* Restore the stack. */
1727 if (targetm.have_save_stack_nonlocal ())
1728 emit_stack_restore (SAVE_NONLOCAL, old_stack_level);
1729 else
1730 emit_stack_restore (SAVE_BLOCK, old_stack_level);
1731 fixup_args_size_notes (call_insn, get_last_insn (), 0);
1733 OK_DEFER_POP;
1735 /* Return the address of the result block. */
1736 result = copy_addr_to_reg (XEXP (result, 0));
1737 return convert_memory_address (ptr_mode, result);
1740 /* Perform an untyped return. */
1742 static void
1743 expand_builtin_return (rtx result)
1745 int size, align, regno;
1746 fixed_size_mode mode;
1747 rtx reg;
1748 rtx_insn *call_fusage = 0;
1750 result = convert_memory_address (Pmode, result);
1752 apply_result_size ();
1753 result = gen_rtx_MEM (BLKmode, result);
1755 if (targetm.have_untyped_return ())
1757 rtx vector = result_vector (0, result);
1758 emit_jump_insn (targetm.gen_untyped_return (result, vector));
1759 emit_barrier ();
1760 return;
1763 /* Restore the return value and note that each value is used. */
1764 size = 0;
1765 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1766 if ((mode = apply_result_mode[regno]) != VOIDmode)
1768 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1769 if (size % align != 0)
1770 size = CEIL (size, align) * align;
1771 reg = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1772 emit_move_insn (reg, adjust_address (result, mode, size));
1774 push_to_sequence (call_fusage);
1775 emit_use (reg);
1776 call_fusage = get_insns ();
1777 end_sequence ();
1778 size += GET_MODE_SIZE (mode);
1781 /* Put the USE insns before the return. */
1782 emit_insn (call_fusage);
1784 /* Return whatever values was restored by jumping directly to the end
1785 of the function. */
1786 expand_naked_return ();
1789 /* Used by expand_builtin_classify_type and fold_builtin_classify_type. */
1791 static enum type_class
1792 type_to_class (tree type)
1794 switch (TREE_CODE (type))
1796 case VOID_TYPE: return void_type_class;
1797 case INTEGER_TYPE: return integer_type_class;
1798 case ENUMERAL_TYPE: return enumeral_type_class;
1799 case BOOLEAN_TYPE: return boolean_type_class;
1800 case POINTER_TYPE: return pointer_type_class;
1801 case REFERENCE_TYPE: return reference_type_class;
1802 case OFFSET_TYPE: return offset_type_class;
1803 case REAL_TYPE: return real_type_class;
1804 case COMPLEX_TYPE: return complex_type_class;
1805 case FUNCTION_TYPE: return function_type_class;
1806 case METHOD_TYPE: return method_type_class;
1807 case RECORD_TYPE: return record_type_class;
1808 case UNION_TYPE:
1809 case QUAL_UNION_TYPE: return union_type_class;
1810 case ARRAY_TYPE: return (TYPE_STRING_FLAG (type)
1811 ? string_type_class : array_type_class);
1812 case LANG_TYPE: return lang_type_class;
1813 default: return no_type_class;
1817 /* Expand a call EXP to __builtin_classify_type. */
1819 static rtx
1820 expand_builtin_classify_type (tree exp)
1822 if (call_expr_nargs (exp))
1823 return GEN_INT (type_to_class (TREE_TYPE (CALL_EXPR_ARG (exp, 0))));
1824 return GEN_INT (no_type_class);
1827 /* This helper macro, meant to be used in mathfn_built_in below, determines
1828 which among a set of builtin math functions is appropriate for a given type
1829 mode. The `F' (float) and `L' (long double) are automatically generated
1830 from the 'double' case. If a function supports the _Float<N> and _Float<N>X
1831 types, there are additional types that are considered with 'F32', 'F64',
1832 'F128', etc. suffixes. */
1833 #define CASE_MATHFN(MATHFN) \
1834 CASE_CFN_##MATHFN: \
1835 fcode = BUILT_IN_##MATHFN; fcodef = BUILT_IN_##MATHFN##F ; \
1836 fcodel = BUILT_IN_##MATHFN##L ; break;
1837 /* Similar to the above, but also add support for the _Float<N> and _Float<N>X
1838 types. */
1839 #define CASE_MATHFN_FLOATN(MATHFN) \
1840 CASE_CFN_##MATHFN: \
1841 fcode = BUILT_IN_##MATHFN; fcodef = BUILT_IN_##MATHFN##F ; \
1842 fcodel = BUILT_IN_##MATHFN##L ; fcodef16 = BUILT_IN_##MATHFN##F16 ; \
1843 fcodef32 = BUILT_IN_##MATHFN##F32; fcodef64 = BUILT_IN_##MATHFN##F64 ; \
1844 fcodef128 = BUILT_IN_##MATHFN##F128 ; fcodef32x = BUILT_IN_##MATHFN##F32X ; \
1845 fcodef64x = BUILT_IN_##MATHFN##F64X ; fcodef128x = BUILT_IN_##MATHFN##F128X ;\
1846 break;
1847 /* Similar to above, but appends _R after any F/L suffix. */
1848 #define CASE_MATHFN_REENT(MATHFN) \
1849 case CFN_BUILT_IN_##MATHFN##_R: \
1850 case CFN_BUILT_IN_##MATHFN##F_R: \
1851 case CFN_BUILT_IN_##MATHFN##L_R: \
1852 fcode = BUILT_IN_##MATHFN##_R; fcodef = BUILT_IN_##MATHFN##F_R ; \
1853 fcodel = BUILT_IN_##MATHFN##L_R ; break;
1855 /* Return a function equivalent to FN but operating on floating-point
1856 values of type TYPE, or END_BUILTINS if no such function exists.
1857 This is purely an operation on function codes; it does not guarantee
1858 that the target actually has an implementation of the function. */
1860 static built_in_function
1861 mathfn_built_in_2 (tree type, combined_fn fn)
1863 tree mtype;
1864 built_in_function fcode, fcodef, fcodel;
1865 built_in_function fcodef16 = END_BUILTINS;
1866 built_in_function fcodef32 = END_BUILTINS;
1867 built_in_function fcodef64 = END_BUILTINS;
1868 built_in_function fcodef128 = END_BUILTINS;
1869 built_in_function fcodef32x = END_BUILTINS;
1870 built_in_function fcodef64x = END_BUILTINS;
1871 built_in_function fcodef128x = END_BUILTINS;
1873 switch (fn)
1875 CASE_MATHFN (ACOS)
1876 CASE_MATHFN (ACOSH)
1877 CASE_MATHFN (ASIN)
1878 CASE_MATHFN (ASINH)
1879 CASE_MATHFN (ATAN)
1880 CASE_MATHFN (ATAN2)
1881 CASE_MATHFN (ATANH)
1882 CASE_MATHFN (CBRT)
1883 CASE_MATHFN_FLOATN (CEIL)
1884 CASE_MATHFN (CEXPI)
1885 CASE_MATHFN_FLOATN (COPYSIGN)
1886 CASE_MATHFN (COS)
1887 CASE_MATHFN (COSH)
1888 CASE_MATHFN (DREM)
1889 CASE_MATHFN (ERF)
1890 CASE_MATHFN (ERFC)
1891 CASE_MATHFN (EXP)
1892 CASE_MATHFN (EXP10)
1893 CASE_MATHFN (EXP2)
1894 CASE_MATHFN (EXPM1)
1895 CASE_MATHFN (FABS)
1896 CASE_MATHFN (FDIM)
1897 CASE_MATHFN_FLOATN (FLOOR)
1898 CASE_MATHFN_FLOATN (FMA)
1899 CASE_MATHFN_FLOATN (FMAX)
1900 CASE_MATHFN_FLOATN (FMIN)
1901 CASE_MATHFN (FMOD)
1902 CASE_MATHFN (FREXP)
1903 CASE_MATHFN (GAMMA)
1904 CASE_MATHFN_REENT (GAMMA) /* GAMMA_R */
1905 CASE_MATHFN (HUGE_VAL)
1906 CASE_MATHFN (HYPOT)
1907 CASE_MATHFN (ILOGB)
1908 CASE_MATHFN (ICEIL)
1909 CASE_MATHFN (IFLOOR)
1910 CASE_MATHFN (INF)
1911 CASE_MATHFN (IRINT)
1912 CASE_MATHFN (IROUND)
1913 CASE_MATHFN (ISINF)
1914 CASE_MATHFN (J0)
1915 CASE_MATHFN (J1)
1916 CASE_MATHFN (JN)
1917 CASE_MATHFN (LCEIL)
1918 CASE_MATHFN (LDEXP)
1919 CASE_MATHFN (LFLOOR)
1920 CASE_MATHFN (LGAMMA)
1921 CASE_MATHFN_REENT (LGAMMA) /* LGAMMA_R */
1922 CASE_MATHFN (LLCEIL)
1923 CASE_MATHFN (LLFLOOR)
1924 CASE_MATHFN (LLRINT)
1925 CASE_MATHFN (LLROUND)
1926 CASE_MATHFN (LOG)
1927 CASE_MATHFN (LOG10)
1928 CASE_MATHFN (LOG1P)
1929 CASE_MATHFN (LOG2)
1930 CASE_MATHFN (LOGB)
1931 CASE_MATHFN (LRINT)
1932 CASE_MATHFN (LROUND)
1933 CASE_MATHFN (MODF)
1934 CASE_MATHFN (NAN)
1935 CASE_MATHFN (NANS)
1936 CASE_MATHFN_FLOATN (NEARBYINT)
1937 CASE_MATHFN (NEXTAFTER)
1938 CASE_MATHFN (NEXTTOWARD)
1939 CASE_MATHFN (POW)
1940 CASE_MATHFN (POWI)
1941 CASE_MATHFN (POW10)
1942 CASE_MATHFN (REMAINDER)
1943 CASE_MATHFN (REMQUO)
1944 CASE_MATHFN_FLOATN (RINT)
1945 CASE_MATHFN_FLOATN (ROUND)
1946 CASE_MATHFN (SCALB)
1947 CASE_MATHFN (SCALBLN)
1948 CASE_MATHFN (SCALBN)
1949 CASE_MATHFN (SIGNBIT)
1950 CASE_MATHFN (SIGNIFICAND)
1951 CASE_MATHFN (SIN)
1952 CASE_MATHFN (SINCOS)
1953 CASE_MATHFN (SINH)
1954 CASE_MATHFN_FLOATN (SQRT)
1955 CASE_MATHFN (TAN)
1956 CASE_MATHFN (TANH)
1957 CASE_MATHFN (TGAMMA)
1958 CASE_MATHFN_FLOATN (TRUNC)
1959 CASE_MATHFN (Y0)
1960 CASE_MATHFN (Y1)
1961 CASE_MATHFN (YN)
1963 default:
1964 return END_BUILTINS;
1967 mtype = TYPE_MAIN_VARIANT (type);
1968 if (mtype == double_type_node)
1969 return fcode;
1970 else if (mtype == float_type_node)
1971 return fcodef;
1972 else if (mtype == long_double_type_node)
1973 return fcodel;
1974 else if (mtype == float16_type_node)
1975 return fcodef16;
1976 else if (mtype == float32_type_node)
1977 return fcodef32;
1978 else if (mtype == float64_type_node)
1979 return fcodef64;
1980 else if (mtype == float128_type_node)
1981 return fcodef128;
1982 else if (mtype == float32x_type_node)
1983 return fcodef32x;
1984 else if (mtype == float64x_type_node)
1985 return fcodef64x;
1986 else if (mtype == float128x_type_node)
1987 return fcodef128x;
1988 else
1989 return END_BUILTINS;
1992 /* Return mathematic function equivalent to FN but operating directly on TYPE,
1993 if available. If IMPLICIT_P is true use the implicit builtin declaration,
1994 otherwise use the explicit declaration. If we can't do the conversion,
1995 return null. */
1997 static tree
1998 mathfn_built_in_1 (tree type, combined_fn fn, bool implicit_p)
2000 built_in_function fcode2 = mathfn_built_in_2 (type, fn);
2001 if (fcode2 == END_BUILTINS)
2002 return NULL_TREE;
2004 if (implicit_p && !builtin_decl_implicit_p (fcode2))
2005 return NULL_TREE;
2007 return builtin_decl_explicit (fcode2);
2010 /* Like mathfn_built_in_1, but always use the implicit array. */
2012 tree
2013 mathfn_built_in (tree type, combined_fn fn)
2015 return mathfn_built_in_1 (type, fn, /*implicit=*/ 1);
2018 /* Like mathfn_built_in_1, but take a built_in_function and
2019 always use the implicit array. */
2021 tree
2022 mathfn_built_in (tree type, enum built_in_function fn)
2024 return mathfn_built_in_1 (type, as_combined_fn (fn), /*implicit=*/ 1);
2027 /* If BUILT_IN_NORMAL function FNDECL has an associated internal function,
2028 return its code, otherwise return IFN_LAST. Note that this function
2029 only tests whether the function is defined in internals.def, not whether
2030 it is actually available on the target. */
2032 internal_fn
2033 associated_internal_fn (tree fndecl)
2035 gcc_checking_assert (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL);
2036 tree return_type = TREE_TYPE (TREE_TYPE (fndecl));
2037 switch (DECL_FUNCTION_CODE (fndecl))
2039 #define DEF_INTERNAL_FLT_FN(NAME, FLAGS, OPTAB, TYPE) \
2040 CASE_FLT_FN (BUILT_IN_##NAME): return IFN_##NAME;
2041 #define DEF_INTERNAL_FLT_FLOATN_FN(NAME, FLAGS, OPTAB, TYPE) \
2042 CASE_FLT_FN (BUILT_IN_##NAME): return IFN_##NAME; \
2043 CASE_FLT_FN_FLOATN_NX (BUILT_IN_##NAME): return IFN_##NAME;
2044 #define DEF_INTERNAL_INT_FN(NAME, FLAGS, OPTAB, TYPE) \
2045 CASE_INT_FN (BUILT_IN_##NAME): return IFN_##NAME;
2046 #include "internal-fn.def"
2048 CASE_FLT_FN (BUILT_IN_POW10):
2049 return IFN_EXP10;
2051 CASE_FLT_FN (BUILT_IN_DREM):
2052 return IFN_REMAINDER;
2054 CASE_FLT_FN (BUILT_IN_SCALBN):
2055 CASE_FLT_FN (BUILT_IN_SCALBLN):
2056 if (REAL_MODE_FORMAT (TYPE_MODE (return_type))->b == 2)
2057 return IFN_LDEXP;
2058 return IFN_LAST;
2060 default:
2061 return IFN_LAST;
2065 /* If CALL is a call to a BUILT_IN_NORMAL function that could be replaced
2066 on the current target by a call to an internal function, return the
2067 code of that internal function, otherwise return IFN_LAST. The caller
2068 is responsible for ensuring that any side-effects of the built-in
2069 call are dealt with correctly. E.g. if CALL sets errno, the caller
2070 must decide that the errno result isn't needed or make it available
2071 in some other way. */
2073 internal_fn
2074 replacement_internal_fn (gcall *call)
2076 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL))
2078 internal_fn ifn = associated_internal_fn (gimple_call_fndecl (call));
2079 if (ifn != IFN_LAST)
2081 tree_pair types = direct_internal_fn_types (ifn, call);
2082 optimization_type opt_type = bb_optimization_type (gimple_bb (call));
2083 if (direct_internal_fn_supported_p (ifn, types, opt_type))
2084 return ifn;
2087 return IFN_LAST;
2090 /* Expand a call to the builtin trinary math functions (fma).
2091 Return NULL_RTX if a normal call should be emitted rather than expanding the
2092 function in-line. EXP is the expression that is a call to the builtin
2093 function; if convenient, the result should be placed in TARGET.
2094 SUBTARGET may be used as the target for computing one of EXP's
2095 operands. */
2097 static rtx
2098 expand_builtin_mathfn_ternary (tree exp, rtx target, rtx subtarget)
2100 optab builtin_optab;
2101 rtx op0, op1, op2, result;
2102 rtx_insn *insns;
2103 tree fndecl = get_callee_fndecl (exp);
2104 tree arg0, arg1, arg2;
2105 machine_mode mode;
2107 if (!validate_arglist (exp, REAL_TYPE, REAL_TYPE, REAL_TYPE, VOID_TYPE))
2108 return NULL_RTX;
2110 arg0 = CALL_EXPR_ARG (exp, 0);
2111 arg1 = CALL_EXPR_ARG (exp, 1);
2112 arg2 = CALL_EXPR_ARG (exp, 2);
2114 switch (DECL_FUNCTION_CODE (fndecl))
2116 CASE_FLT_FN (BUILT_IN_FMA):
2117 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMA):
2118 builtin_optab = fma_optab; break;
2119 default:
2120 gcc_unreachable ();
2123 /* Make a suitable register to place result in. */
2124 mode = TYPE_MODE (TREE_TYPE (exp));
2126 /* Before working hard, check whether the instruction is available. */
2127 if (optab_handler (builtin_optab, mode) == CODE_FOR_nothing)
2128 return NULL_RTX;
2130 result = gen_reg_rtx (mode);
2132 /* Always stabilize the argument list. */
2133 CALL_EXPR_ARG (exp, 0) = arg0 = builtin_save_expr (arg0);
2134 CALL_EXPR_ARG (exp, 1) = arg1 = builtin_save_expr (arg1);
2135 CALL_EXPR_ARG (exp, 2) = arg2 = builtin_save_expr (arg2);
2137 op0 = expand_expr (arg0, subtarget, VOIDmode, EXPAND_NORMAL);
2138 op1 = expand_normal (arg1);
2139 op2 = expand_normal (arg2);
2141 start_sequence ();
2143 /* Compute into RESULT.
2144 Set RESULT to wherever the result comes back. */
2145 result = expand_ternary_op (mode, builtin_optab, op0, op1, op2,
2146 result, 0);
2148 /* If we were unable to expand via the builtin, stop the sequence
2149 (without outputting the insns) and call to the library function
2150 with the stabilized argument list. */
2151 if (result == 0)
2153 end_sequence ();
2154 return expand_call (exp, target, target == const0_rtx);
2157 /* Output the entire sequence. */
2158 insns = get_insns ();
2159 end_sequence ();
2160 emit_insn (insns);
2162 return result;
2165 /* Expand a call to the builtin sin and cos math functions.
2166 Return NULL_RTX if a normal call should be emitted rather than expanding the
2167 function in-line. EXP is the expression that is a call to the builtin
2168 function; if convenient, the result should be placed in TARGET.
2169 SUBTARGET may be used as the target for computing one of EXP's
2170 operands. */
2172 static rtx
2173 expand_builtin_mathfn_3 (tree exp, rtx target, rtx subtarget)
2175 optab builtin_optab;
2176 rtx op0;
2177 rtx_insn *insns;
2178 tree fndecl = get_callee_fndecl (exp);
2179 machine_mode mode;
2180 tree arg;
2182 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
2183 return NULL_RTX;
2185 arg = CALL_EXPR_ARG (exp, 0);
2187 switch (DECL_FUNCTION_CODE (fndecl))
2189 CASE_FLT_FN (BUILT_IN_SIN):
2190 CASE_FLT_FN (BUILT_IN_COS):
2191 builtin_optab = sincos_optab; break;
2192 default:
2193 gcc_unreachable ();
2196 /* Make a suitable register to place result in. */
2197 mode = TYPE_MODE (TREE_TYPE (exp));
2199 /* Check if sincos insn is available, otherwise fallback
2200 to sin or cos insn. */
2201 if (optab_handler (builtin_optab, mode) == CODE_FOR_nothing)
2202 switch (DECL_FUNCTION_CODE (fndecl))
2204 CASE_FLT_FN (BUILT_IN_SIN):
2205 builtin_optab = sin_optab; break;
2206 CASE_FLT_FN (BUILT_IN_COS):
2207 builtin_optab = cos_optab; break;
2208 default:
2209 gcc_unreachable ();
2212 /* Before working hard, check whether the instruction is available. */
2213 if (optab_handler (builtin_optab, mode) != CODE_FOR_nothing)
2215 rtx result = gen_reg_rtx (mode);
2217 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2218 need to expand the argument again. This way, we will not perform
2219 side-effects more the once. */
2220 CALL_EXPR_ARG (exp, 0) = arg = builtin_save_expr (arg);
2222 op0 = expand_expr (arg, subtarget, VOIDmode, EXPAND_NORMAL);
2224 start_sequence ();
2226 /* Compute into RESULT.
2227 Set RESULT to wherever the result comes back. */
2228 if (builtin_optab == sincos_optab)
2230 int ok;
2232 switch (DECL_FUNCTION_CODE (fndecl))
2234 CASE_FLT_FN (BUILT_IN_SIN):
2235 ok = expand_twoval_unop (builtin_optab, op0, 0, result, 0);
2236 break;
2237 CASE_FLT_FN (BUILT_IN_COS):
2238 ok = expand_twoval_unop (builtin_optab, op0, result, 0, 0);
2239 break;
2240 default:
2241 gcc_unreachable ();
2243 gcc_assert (ok);
2245 else
2246 result = expand_unop (mode, builtin_optab, op0, result, 0);
2248 if (result != 0)
2250 /* Output the entire sequence. */
2251 insns = get_insns ();
2252 end_sequence ();
2253 emit_insn (insns);
2254 return result;
2257 /* If we were unable to expand via the builtin, stop the sequence
2258 (without outputting the insns) and call to the library function
2259 with the stabilized argument list. */
2260 end_sequence ();
2263 return expand_call (exp, target, target == const0_rtx);
2266 /* Given an interclass math builtin decl FNDECL and it's argument ARG
2267 return an RTL instruction code that implements the functionality.
2268 If that isn't possible or available return CODE_FOR_nothing. */
2270 static enum insn_code
2271 interclass_mathfn_icode (tree arg, tree fndecl)
2273 bool errno_set = false;
2274 optab builtin_optab = unknown_optab;
2275 machine_mode mode;
2277 switch (DECL_FUNCTION_CODE (fndecl))
2279 CASE_FLT_FN (BUILT_IN_ILOGB):
2280 errno_set = true; builtin_optab = ilogb_optab; break;
2281 CASE_FLT_FN (BUILT_IN_ISINF):
2282 builtin_optab = isinf_optab; break;
2283 case BUILT_IN_ISNORMAL:
2284 case BUILT_IN_ISFINITE:
2285 CASE_FLT_FN (BUILT_IN_FINITE):
2286 case BUILT_IN_FINITED32:
2287 case BUILT_IN_FINITED64:
2288 case BUILT_IN_FINITED128:
2289 case BUILT_IN_ISINFD32:
2290 case BUILT_IN_ISINFD64:
2291 case BUILT_IN_ISINFD128:
2292 /* These builtins have no optabs (yet). */
2293 break;
2294 default:
2295 gcc_unreachable ();
2298 /* There's no easy way to detect the case we need to set EDOM. */
2299 if (flag_errno_math && errno_set)
2300 return CODE_FOR_nothing;
2302 /* Optab mode depends on the mode of the input argument. */
2303 mode = TYPE_MODE (TREE_TYPE (arg));
2305 if (builtin_optab)
2306 return optab_handler (builtin_optab, mode);
2307 return CODE_FOR_nothing;
2310 /* Expand a call to one of the builtin math functions that operate on
2311 floating point argument and output an integer result (ilogb, isinf,
2312 isnan, etc).
2313 Return 0 if a normal call should be emitted rather than expanding the
2314 function in-line. EXP is the expression that is a call to the builtin
2315 function; if convenient, the result should be placed in TARGET. */
2317 static rtx
2318 expand_builtin_interclass_mathfn (tree exp, rtx target)
2320 enum insn_code icode = CODE_FOR_nothing;
2321 rtx op0;
2322 tree fndecl = get_callee_fndecl (exp);
2323 machine_mode mode;
2324 tree arg;
2326 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
2327 return NULL_RTX;
2329 arg = CALL_EXPR_ARG (exp, 0);
2330 icode = interclass_mathfn_icode (arg, fndecl);
2331 mode = TYPE_MODE (TREE_TYPE (arg));
2333 if (icode != CODE_FOR_nothing)
2335 struct expand_operand ops[1];
2336 rtx_insn *last = get_last_insn ();
2337 tree orig_arg = arg;
2339 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2340 need to expand the argument again. This way, we will not perform
2341 side-effects more the once. */
2342 CALL_EXPR_ARG (exp, 0) = arg = builtin_save_expr (arg);
2344 op0 = expand_expr (arg, NULL_RTX, VOIDmode, EXPAND_NORMAL);
2346 if (mode != GET_MODE (op0))
2347 op0 = convert_to_mode (mode, op0, 0);
2349 create_output_operand (&ops[0], target, TYPE_MODE (TREE_TYPE (exp)));
2350 if (maybe_legitimize_operands (icode, 0, 1, ops)
2351 && maybe_emit_unop_insn (icode, ops[0].value, op0, UNKNOWN))
2352 return ops[0].value;
2354 delete_insns_since (last);
2355 CALL_EXPR_ARG (exp, 0) = orig_arg;
2358 return NULL_RTX;
2361 /* Expand a call to the builtin sincos math function.
2362 Return NULL_RTX if a normal call should be emitted rather than expanding the
2363 function in-line. EXP is the expression that is a call to the builtin
2364 function. */
2366 static rtx
2367 expand_builtin_sincos (tree exp)
2369 rtx op0, op1, op2, target1, target2;
2370 machine_mode mode;
2371 tree arg, sinp, cosp;
2372 int result;
2373 location_t loc = EXPR_LOCATION (exp);
2374 tree alias_type, alias_off;
2376 if (!validate_arglist (exp, REAL_TYPE,
2377 POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2378 return NULL_RTX;
2380 arg = CALL_EXPR_ARG (exp, 0);
2381 sinp = CALL_EXPR_ARG (exp, 1);
2382 cosp = CALL_EXPR_ARG (exp, 2);
2384 /* Make a suitable register to place result in. */
2385 mode = TYPE_MODE (TREE_TYPE (arg));
2387 /* Check if sincos insn is available, otherwise emit the call. */
2388 if (optab_handler (sincos_optab, mode) == CODE_FOR_nothing)
2389 return NULL_RTX;
2391 target1 = gen_reg_rtx (mode);
2392 target2 = gen_reg_rtx (mode);
2394 op0 = expand_normal (arg);
2395 alias_type = build_pointer_type_for_mode (TREE_TYPE (arg), ptr_mode, true);
2396 alias_off = build_int_cst (alias_type, 0);
2397 op1 = expand_normal (fold_build2_loc (loc, MEM_REF, TREE_TYPE (arg),
2398 sinp, alias_off));
2399 op2 = expand_normal (fold_build2_loc (loc, MEM_REF, TREE_TYPE (arg),
2400 cosp, alias_off));
2402 /* Compute into target1 and target2.
2403 Set TARGET to wherever the result comes back. */
2404 result = expand_twoval_unop (sincos_optab, op0, target2, target1, 0);
2405 gcc_assert (result);
2407 /* Move target1 and target2 to the memory locations indicated
2408 by op1 and op2. */
2409 emit_move_insn (op1, target1);
2410 emit_move_insn (op2, target2);
2412 return const0_rtx;
2415 /* Expand a call to the internal cexpi builtin to the sincos math function.
2416 EXP is the expression that is a call to the builtin function; if convenient,
2417 the result should be placed in TARGET. */
2419 static rtx
2420 expand_builtin_cexpi (tree exp, rtx target)
2422 tree fndecl = get_callee_fndecl (exp);
2423 tree arg, type;
2424 machine_mode mode;
2425 rtx op0, op1, op2;
2426 location_t loc = EXPR_LOCATION (exp);
2428 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
2429 return NULL_RTX;
2431 arg = CALL_EXPR_ARG (exp, 0);
2432 type = TREE_TYPE (arg);
2433 mode = TYPE_MODE (TREE_TYPE (arg));
2435 /* Try expanding via a sincos optab, fall back to emitting a libcall
2436 to sincos or cexp. We are sure we have sincos or cexp because cexpi
2437 is only generated from sincos, cexp or if we have either of them. */
2438 if (optab_handler (sincos_optab, mode) != CODE_FOR_nothing)
2440 op1 = gen_reg_rtx (mode);
2441 op2 = gen_reg_rtx (mode);
2443 op0 = expand_expr (arg, NULL_RTX, VOIDmode, EXPAND_NORMAL);
2445 /* Compute into op1 and op2. */
2446 expand_twoval_unop (sincos_optab, op0, op2, op1, 0);
2448 else if (targetm.libc_has_function (function_sincos))
2450 tree call, fn = NULL_TREE;
2451 tree top1, top2;
2452 rtx op1a, op2a;
2454 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIF)
2455 fn = builtin_decl_explicit (BUILT_IN_SINCOSF);
2456 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPI)
2457 fn = builtin_decl_explicit (BUILT_IN_SINCOS);
2458 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIL)
2459 fn = builtin_decl_explicit (BUILT_IN_SINCOSL);
2460 else
2461 gcc_unreachable ();
2463 op1 = assign_temp (TREE_TYPE (arg), 1, 1);
2464 op2 = assign_temp (TREE_TYPE (arg), 1, 1);
2465 op1a = copy_addr_to_reg (XEXP (op1, 0));
2466 op2a = copy_addr_to_reg (XEXP (op2, 0));
2467 top1 = make_tree (build_pointer_type (TREE_TYPE (arg)), op1a);
2468 top2 = make_tree (build_pointer_type (TREE_TYPE (arg)), op2a);
2470 /* Make sure not to fold the sincos call again. */
2471 call = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
2472 expand_normal (build_call_nary (TREE_TYPE (TREE_TYPE (fn)),
2473 call, 3, arg, top1, top2));
2475 else
2477 tree call, fn = NULL_TREE, narg;
2478 tree ctype = build_complex_type (type);
2480 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIF)
2481 fn = builtin_decl_explicit (BUILT_IN_CEXPF);
2482 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPI)
2483 fn = builtin_decl_explicit (BUILT_IN_CEXP);
2484 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIL)
2485 fn = builtin_decl_explicit (BUILT_IN_CEXPL);
2486 else
2487 gcc_unreachable ();
2489 /* If we don't have a decl for cexp create one. This is the
2490 friendliest fallback if the user calls __builtin_cexpi
2491 without full target C99 function support. */
2492 if (fn == NULL_TREE)
2494 tree fntype;
2495 const char *name = NULL;
2497 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIF)
2498 name = "cexpf";
2499 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPI)
2500 name = "cexp";
2501 else if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CEXPIL)
2502 name = "cexpl";
2504 fntype = build_function_type_list (ctype, ctype, NULL_TREE);
2505 fn = build_fn_decl (name, fntype);
2508 narg = fold_build2_loc (loc, COMPLEX_EXPR, ctype,
2509 build_real (type, dconst0), arg);
2511 /* Make sure not to fold the cexp call again. */
2512 call = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
2513 return expand_expr (build_call_nary (ctype, call, 1, narg),
2514 target, VOIDmode, EXPAND_NORMAL);
2517 /* Now build the proper return type. */
2518 return expand_expr (build2 (COMPLEX_EXPR, build_complex_type (type),
2519 make_tree (TREE_TYPE (arg), op2),
2520 make_tree (TREE_TYPE (arg), op1)),
2521 target, VOIDmode, EXPAND_NORMAL);
2524 /* Conveniently construct a function call expression. FNDECL names the
2525 function to be called, N is the number of arguments, and the "..."
2526 parameters are the argument expressions. Unlike build_call_exr
2527 this doesn't fold the call, hence it will always return a CALL_EXPR. */
2529 static tree
2530 build_call_nofold_loc (location_t loc, tree fndecl, int n, ...)
2532 va_list ap;
2533 tree fntype = TREE_TYPE (fndecl);
2534 tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
2536 va_start (ap, n);
2537 fn = build_call_valist (TREE_TYPE (fntype), fn, n, ap);
2538 va_end (ap);
2539 SET_EXPR_LOCATION (fn, loc);
2540 return fn;
2543 /* Expand a call to one of the builtin rounding functions gcc defines
2544 as an extension (lfloor and lceil). As these are gcc extensions we
2545 do not need to worry about setting errno to EDOM.
2546 If expanding via optab fails, lower expression to (int)(floor(x)).
2547 EXP is the expression that is a call to the builtin function;
2548 if convenient, the result should be placed in TARGET. */
2550 static rtx
2551 expand_builtin_int_roundingfn (tree exp, rtx target)
2553 convert_optab builtin_optab;
2554 rtx op0, tmp;
2555 rtx_insn *insns;
2556 tree fndecl = get_callee_fndecl (exp);
2557 enum built_in_function fallback_fn;
2558 tree fallback_fndecl;
2559 machine_mode mode;
2560 tree arg;
2562 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
2563 gcc_unreachable ();
2565 arg = CALL_EXPR_ARG (exp, 0);
2567 switch (DECL_FUNCTION_CODE (fndecl))
2569 CASE_FLT_FN (BUILT_IN_ICEIL):
2570 CASE_FLT_FN (BUILT_IN_LCEIL):
2571 CASE_FLT_FN (BUILT_IN_LLCEIL):
2572 builtin_optab = lceil_optab;
2573 fallback_fn = BUILT_IN_CEIL;
2574 break;
2576 CASE_FLT_FN (BUILT_IN_IFLOOR):
2577 CASE_FLT_FN (BUILT_IN_LFLOOR):
2578 CASE_FLT_FN (BUILT_IN_LLFLOOR):
2579 builtin_optab = lfloor_optab;
2580 fallback_fn = BUILT_IN_FLOOR;
2581 break;
2583 default:
2584 gcc_unreachable ();
2587 /* Make a suitable register to place result in. */
2588 mode = TYPE_MODE (TREE_TYPE (exp));
2590 target = gen_reg_rtx (mode);
2592 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2593 need to expand the argument again. This way, we will not perform
2594 side-effects more the once. */
2595 CALL_EXPR_ARG (exp, 0) = arg = builtin_save_expr (arg);
2597 op0 = expand_expr (arg, NULL, VOIDmode, EXPAND_NORMAL);
2599 start_sequence ();
2601 /* Compute into TARGET. */
2602 if (expand_sfix_optab (target, op0, builtin_optab))
2604 /* Output the entire sequence. */
2605 insns = get_insns ();
2606 end_sequence ();
2607 emit_insn (insns);
2608 return target;
2611 /* If we were unable to expand via the builtin, stop the sequence
2612 (without outputting the insns). */
2613 end_sequence ();
2615 /* Fall back to floating point rounding optab. */
2616 fallback_fndecl = mathfn_built_in (TREE_TYPE (arg), fallback_fn);
2618 /* For non-C99 targets we may end up without a fallback fndecl here
2619 if the user called __builtin_lfloor directly. In this case emit
2620 a call to the floor/ceil variants nevertheless. This should result
2621 in the best user experience for not full C99 targets. */
2622 if (fallback_fndecl == NULL_TREE)
2624 tree fntype;
2625 const char *name = NULL;
2627 switch (DECL_FUNCTION_CODE (fndecl))
2629 case BUILT_IN_ICEIL:
2630 case BUILT_IN_LCEIL:
2631 case BUILT_IN_LLCEIL:
2632 name = "ceil";
2633 break;
2634 case BUILT_IN_ICEILF:
2635 case BUILT_IN_LCEILF:
2636 case BUILT_IN_LLCEILF:
2637 name = "ceilf";
2638 break;
2639 case BUILT_IN_ICEILL:
2640 case BUILT_IN_LCEILL:
2641 case BUILT_IN_LLCEILL:
2642 name = "ceill";
2643 break;
2644 case BUILT_IN_IFLOOR:
2645 case BUILT_IN_LFLOOR:
2646 case BUILT_IN_LLFLOOR:
2647 name = "floor";
2648 break;
2649 case BUILT_IN_IFLOORF:
2650 case BUILT_IN_LFLOORF:
2651 case BUILT_IN_LLFLOORF:
2652 name = "floorf";
2653 break;
2654 case BUILT_IN_IFLOORL:
2655 case BUILT_IN_LFLOORL:
2656 case BUILT_IN_LLFLOORL:
2657 name = "floorl";
2658 break;
2659 default:
2660 gcc_unreachable ();
2663 fntype = build_function_type_list (TREE_TYPE (arg),
2664 TREE_TYPE (arg), NULL_TREE);
2665 fallback_fndecl = build_fn_decl (name, fntype);
2668 exp = build_call_nofold_loc (EXPR_LOCATION (exp), fallback_fndecl, 1, arg);
2670 tmp = expand_normal (exp);
2671 tmp = maybe_emit_group_store (tmp, TREE_TYPE (exp));
2673 /* Truncate the result of floating point optab to integer
2674 via expand_fix (). */
2675 target = gen_reg_rtx (mode);
2676 expand_fix (target, tmp, 0);
2678 return target;
2681 /* Expand a call to one of the builtin math functions doing integer
2682 conversion (lrint).
2683 Return 0 if a normal call should be emitted rather than expanding the
2684 function in-line. EXP is the expression that is a call to the builtin
2685 function; if convenient, the result should be placed in TARGET. */
2687 static rtx
2688 expand_builtin_int_roundingfn_2 (tree exp, rtx target)
2690 convert_optab builtin_optab;
2691 rtx op0;
2692 rtx_insn *insns;
2693 tree fndecl = get_callee_fndecl (exp);
2694 tree arg;
2695 machine_mode mode;
2696 enum built_in_function fallback_fn = BUILT_IN_NONE;
2698 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
2699 gcc_unreachable ();
2701 arg = CALL_EXPR_ARG (exp, 0);
2703 switch (DECL_FUNCTION_CODE (fndecl))
2705 CASE_FLT_FN (BUILT_IN_IRINT):
2706 fallback_fn = BUILT_IN_LRINT;
2707 gcc_fallthrough ();
2708 CASE_FLT_FN (BUILT_IN_LRINT):
2709 CASE_FLT_FN (BUILT_IN_LLRINT):
2710 builtin_optab = lrint_optab;
2711 break;
2713 CASE_FLT_FN (BUILT_IN_IROUND):
2714 fallback_fn = BUILT_IN_LROUND;
2715 gcc_fallthrough ();
2716 CASE_FLT_FN (BUILT_IN_LROUND):
2717 CASE_FLT_FN (BUILT_IN_LLROUND):
2718 builtin_optab = lround_optab;
2719 break;
2721 default:
2722 gcc_unreachable ();
2725 /* There's no easy way to detect the case we need to set EDOM. */
2726 if (flag_errno_math && fallback_fn == BUILT_IN_NONE)
2727 return NULL_RTX;
2729 /* Make a suitable register to place result in. */
2730 mode = TYPE_MODE (TREE_TYPE (exp));
2732 /* There's no easy way to detect the case we need to set EDOM. */
2733 if (!flag_errno_math)
2735 rtx result = gen_reg_rtx (mode);
2737 /* Wrap the computation of the argument in a SAVE_EXPR, as we may
2738 need to expand the argument again. This way, we will not perform
2739 side-effects more the once. */
2740 CALL_EXPR_ARG (exp, 0) = arg = builtin_save_expr (arg);
2742 op0 = expand_expr (arg, NULL, VOIDmode, EXPAND_NORMAL);
2744 start_sequence ();
2746 if (expand_sfix_optab (result, op0, builtin_optab))
2748 /* Output the entire sequence. */
2749 insns = get_insns ();
2750 end_sequence ();
2751 emit_insn (insns);
2752 return result;
2755 /* If we were unable to expand via the builtin, stop the sequence
2756 (without outputting the insns) and call to the library function
2757 with the stabilized argument list. */
2758 end_sequence ();
2761 if (fallback_fn != BUILT_IN_NONE)
2763 /* Fall back to rounding to long int. Use implicit_p 0 - for non-C99
2764 targets, (int) round (x) should never be transformed into
2765 BUILT_IN_IROUND and if __builtin_iround is called directly, emit
2766 a call to lround in the hope that the target provides at least some
2767 C99 functions. This should result in the best user experience for
2768 not full C99 targets. */
2769 tree fallback_fndecl = mathfn_built_in_1
2770 (TREE_TYPE (arg), as_combined_fn (fallback_fn), 0);
2772 exp = build_call_nofold_loc (EXPR_LOCATION (exp),
2773 fallback_fndecl, 1, arg);
2775 target = expand_call (exp, NULL_RTX, target == const0_rtx);
2776 target = maybe_emit_group_store (target, TREE_TYPE (exp));
2777 return convert_to_mode (mode, target, 0);
2780 return expand_call (exp, target, target == const0_rtx);
2783 /* Expand a call to the powi built-in mathematical function. Return NULL_RTX if
2784 a normal call should be emitted rather than expanding the function
2785 in-line. EXP is the expression that is a call to the builtin
2786 function; if convenient, the result should be placed in TARGET. */
2788 static rtx
2789 expand_builtin_powi (tree exp, rtx target)
2791 tree arg0, arg1;
2792 rtx op0, op1;
2793 machine_mode mode;
2794 machine_mode mode2;
2796 if (! validate_arglist (exp, REAL_TYPE, INTEGER_TYPE, VOID_TYPE))
2797 return NULL_RTX;
2799 arg0 = CALL_EXPR_ARG (exp, 0);
2800 arg1 = CALL_EXPR_ARG (exp, 1);
2801 mode = TYPE_MODE (TREE_TYPE (exp));
2803 /* Emit a libcall to libgcc. */
2805 /* Mode of the 2nd argument must match that of an int. */
2806 mode2 = int_mode_for_size (INT_TYPE_SIZE, 0).require ();
2808 if (target == NULL_RTX)
2809 target = gen_reg_rtx (mode);
2811 op0 = expand_expr (arg0, NULL_RTX, mode, EXPAND_NORMAL);
2812 if (GET_MODE (op0) != mode)
2813 op0 = convert_to_mode (mode, op0, 0);
2814 op1 = expand_expr (arg1, NULL_RTX, mode2, EXPAND_NORMAL);
2815 if (GET_MODE (op1) != mode2)
2816 op1 = convert_to_mode (mode2, op1, 0);
2818 target = emit_library_call_value (optab_libfunc (powi_optab, mode),
2819 target, LCT_CONST, mode,
2820 op0, mode, op1, mode2);
2822 return target;
2825 /* Expand expression EXP which is a call to the strlen builtin. Return
2826 NULL_RTX if we failed the caller should emit a normal call, otherwise
2827 try to get the result in TARGET, if convenient. */
2829 static rtx
2830 expand_builtin_strlen (tree exp, rtx target,
2831 machine_mode target_mode)
2833 if (!validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
2834 return NULL_RTX;
2836 struct expand_operand ops[4];
2837 rtx pat;
2838 tree len;
2839 tree src = CALL_EXPR_ARG (exp, 0);
2840 rtx src_reg;
2841 rtx_insn *before_strlen;
2842 machine_mode insn_mode;
2843 enum insn_code icode = CODE_FOR_nothing;
2844 unsigned int align;
2846 /* If the length can be computed at compile-time, return it. */
2847 len = c_strlen (src, 0);
2848 if (len)
2849 return expand_expr (len, target, target_mode, EXPAND_NORMAL);
2851 /* If the length can be computed at compile-time and is constant
2852 integer, but there are side-effects in src, evaluate
2853 src for side-effects, then return len.
2854 E.g. x = strlen (i++ ? "xfoo" + 1 : "bar");
2855 can be optimized into: i++; x = 3; */
2856 len = c_strlen (src, 1);
2857 if (len && TREE_CODE (len) == INTEGER_CST)
2859 expand_expr (src, const0_rtx, VOIDmode, EXPAND_NORMAL);
2860 return expand_expr (len, target, target_mode, EXPAND_NORMAL);
2863 align = get_pointer_alignment (src) / BITS_PER_UNIT;
2865 /* If SRC is not a pointer type, don't do this operation inline. */
2866 if (align == 0)
2867 return NULL_RTX;
2869 /* Bail out if we can't compute strlen in the right mode. */
2870 FOR_EACH_MODE_FROM (insn_mode, target_mode)
2872 icode = optab_handler (strlen_optab, insn_mode);
2873 if (icode != CODE_FOR_nothing)
2874 break;
2876 if (insn_mode == VOIDmode)
2877 return NULL_RTX;
2879 /* Make a place to hold the source address. We will not expand
2880 the actual source until we are sure that the expansion will
2881 not fail -- there are trees that cannot be expanded twice. */
2882 src_reg = gen_reg_rtx (Pmode);
2884 /* Mark the beginning of the strlen sequence so we can emit the
2885 source operand later. */
2886 before_strlen = get_last_insn ();
2888 create_output_operand (&ops[0], target, insn_mode);
2889 create_fixed_operand (&ops[1], gen_rtx_MEM (BLKmode, src_reg));
2890 create_integer_operand (&ops[2], 0);
2891 create_integer_operand (&ops[3], align);
2892 if (!maybe_expand_insn (icode, 4, ops))
2893 return NULL_RTX;
2895 /* Check to see if the argument was declared attribute nonstring
2896 and if so, issue a warning since at this point it's not known
2897 to be nul-terminated. */
2898 maybe_warn_nonstring_arg (get_callee_fndecl (exp), exp);
2900 /* Now that we are assured of success, expand the source. */
2901 start_sequence ();
2902 pat = expand_expr (src, src_reg, Pmode, EXPAND_NORMAL);
2903 if (pat != src_reg)
2905 #ifdef POINTERS_EXTEND_UNSIGNED
2906 if (GET_MODE (pat) != Pmode)
2907 pat = convert_to_mode (Pmode, pat,
2908 POINTERS_EXTEND_UNSIGNED);
2909 #endif
2910 emit_move_insn (src_reg, pat);
2912 pat = get_insns ();
2913 end_sequence ();
2915 if (before_strlen)
2916 emit_insn_after (pat, before_strlen);
2917 else
2918 emit_insn_before (pat, get_insns ());
2920 /* Return the value in the proper mode for this function. */
2921 if (GET_MODE (ops[0].value) == target_mode)
2922 target = ops[0].value;
2923 else if (target != 0)
2924 convert_move (target, ops[0].value, 0);
2925 else
2926 target = convert_to_mode (target_mode, ops[0].value, 0);
2928 return target;
2931 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2932 bytes from constant string DATA + OFFSET and return it as target
2933 constant. */
2935 static rtx
2936 builtin_memcpy_read_str (void *data, HOST_WIDE_INT offset,
2937 scalar_int_mode mode)
2939 const char *str = (const char *) data;
2941 gcc_assert (offset >= 0
2942 && ((unsigned HOST_WIDE_INT) offset + GET_MODE_SIZE (mode)
2943 <= strlen (str) + 1));
2945 return c_readstr (str + offset, mode);
2948 /* LEN specify length of the block of memcpy/memset operation.
2949 Figure out its range and put it into MIN_SIZE/MAX_SIZE.
2950 In some cases we can make very likely guess on max size, then we
2951 set it into PROBABLE_MAX_SIZE. */
2953 static void
2954 determine_block_size (tree len, rtx len_rtx,
2955 unsigned HOST_WIDE_INT *min_size,
2956 unsigned HOST_WIDE_INT *max_size,
2957 unsigned HOST_WIDE_INT *probable_max_size)
2959 if (CONST_INT_P (len_rtx))
2961 *min_size = *max_size = *probable_max_size = UINTVAL (len_rtx);
2962 return;
2964 else
2966 wide_int min, max;
2967 enum value_range_type range_type = VR_UNDEFINED;
2969 /* Determine bounds from the type. */
2970 if (tree_fits_uhwi_p (TYPE_MIN_VALUE (TREE_TYPE (len))))
2971 *min_size = tree_to_uhwi (TYPE_MIN_VALUE (TREE_TYPE (len)));
2972 else
2973 *min_size = 0;
2974 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (TREE_TYPE (len))))
2975 *probable_max_size = *max_size
2976 = tree_to_uhwi (TYPE_MAX_VALUE (TREE_TYPE (len)));
2977 else
2978 *probable_max_size = *max_size = GET_MODE_MASK (GET_MODE (len_rtx));
2980 if (TREE_CODE (len) == SSA_NAME)
2981 range_type = get_range_info (len, &min, &max);
2982 if (range_type == VR_RANGE)
2984 if (wi::fits_uhwi_p (min) && *min_size < min.to_uhwi ())
2985 *min_size = min.to_uhwi ();
2986 if (wi::fits_uhwi_p (max) && *max_size > max.to_uhwi ())
2987 *probable_max_size = *max_size = max.to_uhwi ();
2989 else if (range_type == VR_ANTI_RANGE)
2991 /* Anti range 0...N lets us to determine minimal size to N+1. */
2992 if (min == 0)
2994 if (wi::fits_uhwi_p (max) && max.to_uhwi () + 1 != 0)
2995 *min_size = max.to_uhwi () + 1;
2997 /* Code like
2999 int n;
3000 if (n < 100)
3001 memcpy (a, b, n)
3003 Produce anti range allowing negative values of N. We still
3004 can use the information and make a guess that N is not negative.
3006 else if (!wi::leu_p (max, 1 << 30) && wi::fits_uhwi_p (min))
3007 *probable_max_size = min.to_uhwi () - 1;
3010 gcc_checking_assert (*max_size <=
3011 (unsigned HOST_WIDE_INT)
3012 GET_MODE_MASK (GET_MODE (len_rtx)));
3015 /* Try to verify that the sizes and lengths of the arguments to a string
3016 manipulation function given by EXP are within valid bounds and that
3017 the operation does not lead to buffer overflow or read past the end.
3018 Arguments other than EXP may be null. When non-null, the arguments
3019 have the following meaning:
3020 DST is the destination of a copy call or NULL otherwise.
3021 SRC is the source of a copy call or NULL otherwise.
3022 DSTWRITE is the number of bytes written into the destination obtained
3023 from the user-supplied size argument to the function (such as in
3024 memcpy(DST, SRCs, DSTWRITE) or strncpy(DST, DRC, DSTWRITE).
3025 MAXREAD is the user-supplied bound on the length of the source sequence
3026 (such as in strncat(d, s, N). It specifies the upper limit on the number
3027 of bytes to write. If NULL, it's taken to be the same as DSTWRITE.
3028 SRCSTR is the source string (such as in strcpy(DST, SRC)) when the
3029 expression EXP is a string function call (as opposed to a memory call
3030 like memcpy). As an exception, SRCSTR can also be an integer denoting
3031 the precomputed size of the source string or object (for functions like
3032 memcpy).
3033 DSTSIZE is the size of the destination object specified by the last
3034 argument to the _chk builtins, typically resulting from the expansion
3035 of __builtin_object_size (such as in __builtin___strcpy_chk(DST, SRC,
3036 DSTSIZE).
3038 When DSTWRITE is null LEN is checked to verify that it doesn't exceed
3039 SIZE_MAX.
3041 If the call is successfully verified as safe return true, otherwise
3042 return false. */
3044 static bool
3045 check_access (tree exp, tree, tree, tree dstwrite,
3046 tree maxread, tree srcstr, tree dstsize)
3048 int opt = OPT_Wstringop_overflow_;
3050 /* The size of the largest object is half the address space, or
3051 PTRDIFF_MAX. (This is way too permissive.) */
3052 tree maxobjsize = max_object_size ();
3054 /* Either the length of the source string for string functions or
3055 the size of the source object for raw memory functions. */
3056 tree slen = NULL_TREE;
3058 tree range[2] = { NULL_TREE, NULL_TREE };
3060 /* Set to true when the exact number of bytes written by a string
3061 function like strcpy is not known and the only thing that is
3062 known is that it must be at least one (for the terminating nul). */
3063 bool at_least_one = false;
3064 if (srcstr)
3066 /* SRCSTR is normally a pointer to string but as a special case
3067 it can be an integer denoting the length of a string. */
3068 if (POINTER_TYPE_P (TREE_TYPE (srcstr)))
3070 /* Try to determine the range of lengths the source string
3071 refers to. If it can be determined and is less than
3072 the upper bound given by MAXREAD add one to it for
3073 the terminating nul. Otherwise, set it to one for
3074 the same reason, or to MAXREAD as appropriate. */
3075 get_range_strlen (srcstr, range);
3076 if (range[0] && (!maxread || TREE_CODE (maxread) == INTEGER_CST))
3078 if (maxread && tree_int_cst_le (maxread, range[0]))
3079 range[0] = range[1] = maxread;
3080 else
3081 range[0] = fold_build2 (PLUS_EXPR, size_type_node,
3082 range[0], size_one_node);
3084 if (maxread && tree_int_cst_le (maxread, range[1]))
3085 range[1] = maxread;
3086 else if (!integer_all_onesp (range[1]))
3087 range[1] = fold_build2 (PLUS_EXPR, size_type_node,
3088 range[1], size_one_node);
3090 slen = range[0];
3092 else
3094 at_least_one = true;
3095 slen = size_one_node;
3098 else
3099 slen = srcstr;
3102 if (!dstwrite && !maxread)
3104 /* When the only available piece of data is the object size
3105 there is nothing to do. */
3106 if (!slen)
3107 return true;
3109 /* Otherwise, when the length of the source sequence is known
3110 (as with strlen), set DSTWRITE to it. */
3111 if (!range[0])
3112 dstwrite = slen;
3115 if (!dstsize)
3116 dstsize = maxobjsize;
3118 if (dstwrite)
3119 get_size_range (dstwrite, range);
3121 tree func = get_callee_fndecl (exp);
3123 /* First check the number of bytes to be written against the maximum
3124 object size. */
3125 if (range[0] && tree_int_cst_lt (maxobjsize, range[0]))
3127 location_t loc = tree_nonartificial_location (exp);
3128 loc = expansion_point_location_if_in_system_header (loc);
3130 if (range[0] == range[1])
3131 warning_at (loc, opt,
3132 "%K%qD specified size %E "
3133 "exceeds maximum object size %E",
3134 exp, func, range[0], maxobjsize);
3135 else
3136 warning_at (loc, opt,
3137 "%K%qD specified size between %E and %E "
3138 "exceeds maximum object size %E",
3139 exp, func,
3140 range[0], range[1], maxobjsize);
3141 return false;
3144 /* The number of bytes to write is "exact" if DSTWRITE is non-null,
3145 constant, and in range of unsigned HOST_WIDE_INT. */
3146 bool exactwrite = dstwrite && tree_fits_uhwi_p (dstwrite);
3148 /* Next check the number of bytes to be written against the destination
3149 object size. */
3150 if (range[0] || !exactwrite || integer_all_onesp (dstwrite))
3152 if (range[0]
3153 && ((tree_fits_uhwi_p (dstsize)
3154 && tree_int_cst_lt (dstsize, range[0]))
3155 || (tree_fits_uhwi_p (dstwrite)
3156 && tree_int_cst_lt (dstwrite, range[0]))))
3158 if (TREE_NO_WARNING (exp))
3159 return false;
3161 location_t loc = tree_nonartificial_location (exp);
3162 loc = expansion_point_location_if_in_system_header (loc);
3164 if (dstwrite == slen && at_least_one)
3166 /* This is a call to strcpy with a destination of 0 size
3167 and a source of unknown length. The call will write
3168 at least one byte past the end of the destination. */
3169 warning_at (loc, opt,
3170 "%K%qD writing %E or more bytes into a region "
3171 "of size %E overflows the destination",
3172 exp, func, range[0], dstsize);
3174 else if (tree_int_cst_equal (range[0], range[1]))
3175 warning_n (loc, opt, tree_to_uhwi (range[0]),
3176 "%K%qD writing %E byte into a region "
3177 "of size %E overflows the destination",
3178 "%K%qD writing %E bytes into a region "
3179 "of size %E overflows the destination",
3180 exp, func, range[0], dstsize);
3181 else if (tree_int_cst_sign_bit (range[1]))
3183 /* Avoid printing the upper bound if it's invalid. */
3184 warning_at (loc, opt,
3185 "%K%qD writing %E or more bytes into a region "
3186 "of size %E overflows the destination",
3187 exp, func, range[0], dstsize);
3189 else
3190 warning_at (loc, opt,
3191 "%K%qD writing between %E and %E bytes into "
3192 "a region of size %E overflows the destination",
3193 exp, func, range[0], range[1],
3194 dstsize);
3196 /* Return error when an overflow has been detected. */
3197 return false;
3201 /* Check the maximum length of the source sequence against the size
3202 of the destination object if known, or against the maximum size
3203 of an object. */
3204 if (maxread)
3206 get_size_range (maxread, range);
3208 /* Use the lower end for MAXREAD from now on. */
3209 if (range[0])
3210 maxread = range[0];
3212 if (range[0] && dstsize && tree_fits_uhwi_p (dstsize))
3214 location_t loc = tree_nonartificial_location (exp);
3215 loc = expansion_point_location_if_in_system_header (loc);
3217 if (tree_int_cst_lt (maxobjsize, range[0]))
3219 if (TREE_NO_WARNING (exp))
3220 return false;
3222 /* Warn about crazy big sizes first since that's more
3223 likely to be meaningful than saying that the bound
3224 is greater than the object size if both are big. */
3225 if (range[0] == range[1])
3226 warning_at (loc, opt,
3227 "%K%qD specified bound %E "
3228 "exceeds maximum object size %E",
3229 exp, func,
3230 range[0], maxobjsize);
3231 else
3232 warning_at (loc, opt,
3233 "%K%qD specified bound between %E and %E "
3234 "exceeds maximum object size %E",
3235 exp, func,
3236 range[0], range[1], maxobjsize);
3238 return false;
3241 if (dstsize != maxobjsize && tree_int_cst_lt (dstsize, range[0]))
3243 if (TREE_NO_WARNING (exp))
3244 return false;
3246 if (tree_int_cst_equal (range[0], range[1]))
3247 warning_at (loc, opt,
3248 "%K%qD specified bound %E "
3249 "exceeds destination size %E",
3250 exp, func,
3251 range[0], dstsize);
3252 else
3253 warning_at (loc, opt,
3254 "%K%qD specified bound between %E and %E "
3255 "exceeds destination size %E",
3256 exp, func,
3257 range[0], range[1], dstsize);
3258 return false;
3263 /* Check for reading past the end of SRC. */
3264 if (slen
3265 && slen == srcstr
3266 && dstwrite && range[0]
3267 && tree_int_cst_lt (slen, range[0]))
3269 if (TREE_NO_WARNING (exp))
3270 return false;
3272 location_t loc = tree_nonartificial_location (exp);
3274 if (tree_int_cst_equal (range[0], range[1]))
3275 warning_n (loc, opt, tree_to_uhwi (range[0]),
3276 "%K%qD reading %E byte from a region of size %E",
3277 "%K%qD reading %E bytes from a region of size %E",
3278 exp, func, range[0], slen);
3279 else if (tree_int_cst_sign_bit (range[1]))
3281 /* Avoid printing the upper bound if it's invalid. */
3282 warning_at (loc, opt,
3283 "%K%qD reading %E or more bytes from a region "
3284 "of size %E",
3285 exp, func, range[0], slen);
3287 else
3288 warning_at (loc, opt,
3289 "%K%qD reading between %E and %E bytes from a region "
3290 "of size %E",
3291 exp, func, range[0], range[1], slen);
3292 return false;
3295 return true;
3298 /* Helper to compute the size of the object referenced by the DEST
3299 expression which must have pointer type, using Object Size type
3300 OSTYPE (only the least significant 2 bits are used). Return
3301 an estimate of the size of the object if successful or NULL when
3302 the size cannot be determined. When the referenced object involves
3303 a non-constant offset in some range the returned value represents
3304 the largest size given the smallest non-negative offset in the
3305 range. The function is intended for diagnostics and should not
3306 be used to influence code generation or optimization. */
3308 tree
3309 compute_objsize (tree dest, int ostype)
3311 unsigned HOST_WIDE_INT size;
3313 /* Only the two least significant bits are meaningful. */
3314 ostype &= 3;
3316 if (compute_builtin_object_size (dest, ostype, &size))
3317 return build_int_cst (sizetype, size);
3319 if (TREE_CODE (dest) == SSA_NAME)
3321 gimple *stmt = SSA_NAME_DEF_STMT (dest);
3322 if (!is_gimple_assign (stmt))
3323 return NULL_TREE;
3325 dest = gimple_assign_rhs1 (stmt);
3327 tree_code code = gimple_assign_rhs_code (stmt);
3328 if (code == POINTER_PLUS_EXPR)
3330 /* compute_builtin_object_size fails for addresses with
3331 non-constant offsets. Try to determine the range of
3332 such an offset here and use it to adjus the constant
3333 size. */
3334 tree off = gimple_assign_rhs2 (stmt);
3335 if (TREE_CODE (off) == SSA_NAME
3336 && INTEGRAL_TYPE_P (TREE_TYPE (off)))
3338 wide_int min, max;
3339 enum value_range_type rng = get_range_info (off, &min, &max);
3341 if (rng == VR_RANGE)
3343 if (tree size = compute_objsize (dest, ostype))
3345 wide_int wisiz = wi::to_wide (size);
3347 /* Ignore negative offsets for now. For others,
3348 use the lower bound as the most optimistic
3349 estimate of the (remaining)size. */
3350 if (wi::sign_mask (min))
3352 else if (wi::ltu_p (min, wisiz))
3353 return wide_int_to_tree (TREE_TYPE (size),
3354 wi::sub (wisiz, min));
3355 else
3356 return size_zero_node;
3361 else if (code != ADDR_EXPR)
3362 return NULL_TREE;
3365 /* Unless computing the largest size (for memcpy and other raw memory
3366 functions), try to determine the size of the object from its type. */
3367 if (!ostype)
3368 return NULL_TREE;
3370 if (TREE_CODE (dest) != ADDR_EXPR)
3371 return NULL_TREE;
3373 tree type = TREE_TYPE (dest);
3374 if (TREE_CODE (type) == POINTER_TYPE)
3375 type = TREE_TYPE (type);
3377 type = TYPE_MAIN_VARIANT (type);
3379 if (TREE_CODE (type) == ARRAY_TYPE
3380 && !array_at_struct_end_p (TREE_OPERAND (dest, 0)))
3382 /* Return the constant size unless it's zero (that's a zero-length
3383 array likely at the end of a struct). */
3384 tree size = TYPE_SIZE_UNIT (type);
3385 if (size && TREE_CODE (size) == INTEGER_CST
3386 && !integer_zerop (size))
3387 return size;
3390 return NULL_TREE;
3393 /* Helper to determine and check the sizes of the source and the destination
3394 of calls to __builtin_{bzero,memcpy,mempcpy,memset} calls. EXP is the
3395 call expression, DEST is the destination argument, SRC is the source
3396 argument or null, and LEN is the number of bytes. Use Object Size type-0
3397 regardless of the OPT_Wstringop_overflow_ setting. Return true on success
3398 (no overflow or invalid sizes), false otherwise. */
3400 static bool
3401 check_memop_access (tree exp, tree dest, tree src, tree size)
3403 /* For functions like memset and memcpy that operate on raw memory
3404 try to determine the size of the largest source and destination
3405 object using type-0 Object Size regardless of the object size
3406 type specified by the option. */
3407 tree srcsize = src ? compute_objsize (src, 0) : NULL_TREE;
3408 tree dstsize = compute_objsize (dest, 0);
3410 return check_access (exp, dest, src, size, /*maxread=*/NULL_TREE,
3411 srcsize, dstsize);
3414 /* Validate memchr arguments without performing any expansion.
3415 Return NULL_RTX. */
3417 static rtx
3418 expand_builtin_memchr (tree exp, rtx)
3420 if (!validate_arglist (exp,
3421 POINTER_TYPE, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
3422 return NULL_RTX;
3424 tree arg1 = CALL_EXPR_ARG (exp, 0);
3425 tree len = CALL_EXPR_ARG (exp, 2);
3427 /* Diagnose calls where the specified length exceeds the size
3428 of the object. */
3429 if (warn_stringop_overflow)
3431 tree size = compute_objsize (arg1, 0);
3432 check_access (exp, /*dst=*/NULL_TREE, /*src=*/NULL_TREE, len,
3433 /*maxread=*/NULL_TREE, size, /*objsize=*/NULL_TREE);
3436 return NULL_RTX;
3439 /* Expand a call EXP to the memcpy builtin.
3440 Return NULL_RTX if we failed, the caller should emit a normal call,
3441 otherwise try to get the result in TARGET, if convenient (and in
3442 mode MODE if that's convenient). */
3444 static rtx
3445 expand_builtin_memcpy (tree exp, rtx target)
3447 if (!validate_arglist (exp,
3448 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3449 return NULL_RTX;
3451 tree dest = CALL_EXPR_ARG (exp, 0);
3452 tree src = CALL_EXPR_ARG (exp, 1);
3453 tree len = CALL_EXPR_ARG (exp, 2);
3455 check_memop_access (exp, dest, src, len);
3457 return expand_builtin_memory_copy_args (dest, src, len, target, exp,
3458 /*endp=*/ 0);
3461 /* Check a call EXP to the memmove built-in for validity.
3462 Return NULL_RTX on both success and failure. */
3464 static rtx
3465 expand_builtin_memmove (tree exp, rtx)
3467 if (!validate_arglist (exp,
3468 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3469 return NULL_RTX;
3471 tree dest = CALL_EXPR_ARG (exp, 0);
3472 tree src = CALL_EXPR_ARG (exp, 1);
3473 tree len = CALL_EXPR_ARG (exp, 2);
3475 check_memop_access (exp, dest, src, len);
3477 return NULL_RTX;
3480 /* Expand an instrumented call EXP to the memcpy builtin.
3481 Return NULL_RTX if we failed, the caller should emit a normal call,
3482 otherwise try to get the result in TARGET, if convenient (and in
3483 mode MODE if that's convenient). */
3485 static rtx
3486 expand_builtin_memcpy_with_bounds (tree exp, rtx target)
3488 if (!validate_arglist (exp,
3489 POINTER_TYPE, POINTER_BOUNDS_TYPE,
3490 POINTER_TYPE, POINTER_BOUNDS_TYPE,
3491 INTEGER_TYPE, VOID_TYPE))
3492 return NULL_RTX;
3493 else
3495 tree dest = CALL_EXPR_ARG (exp, 0);
3496 tree src = CALL_EXPR_ARG (exp, 2);
3497 tree len = CALL_EXPR_ARG (exp, 4);
3498 rtx res = expand_builtin_memory_copy_args (dest, src, len, target, exp,
3499 /*end_p=*/ 0);
3501 /* Return src bounds with the result. */
3502 if (res)
3504 rtx bnd = force_reg (targetm.chkp_bound_mode (),
3505 expand_normal (CALL_EXPR_ARG (exp, 1)));
3506 res = chkp_join_splitted_slot (res, bnd);
3508 return res;
3512 /* Expand a call EXP to the mempcpy builtin.
3513 Return NULL_RTX if we failed; the caller should emit a normal call,
3514 otherwise try to get the result in TARGET, if convenient (and in
3515 mode MODE if that's convenient). If ENDP is 0 return the
3516 destination pointer, if ENDP is 1 return the end pointer ala
3517 mempcpy, and if ENDP is 2 return the end pointer minus one ala
3518 stpcpy. */
3520 static rtx
3521 expand_builtin_mempcpy (tree exp, rtx target)
3523 if (!validate_arglist (exp,
3524 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3525 return NULL_RTX;
3527 tree dest = CALL_EXPR_ARG (exp, 0);
3528 tree src = CALL_EXPR_ARG (exp, 1);
3529 tree len = CALL_EXPR_ARG (exp, 2);
3531 /* Policy does not generally allow using compute_objsize (which
3532 is used internally by check_memop_size) to change code generation
3533 or drive optimization decisions.
3535 In this instance it is safe because the code we generate has
3536 the same semantics regardless of the return value of
3537 check_memop_sizes. Exactly the same amount of data is copied
3538 and the return value is exactly the same in both cases.
3540 Furthermore, check_memop_size always uses mode 0 for the call to
3541 compute_objsize, so the imprecise nature of compute_objsize is
3542 avoided. */
3544 /* Avoid expanding mempcpy into memcpy when the call is determined
3545 to overflow the buffer. This also prevents the same overflow
3546 from being diagnosed again when expanding memcpy. */
3547 if (!check_memop_access (exp, dest, src, len))
3548 return NULL_RTX;
3550 return expand_builtin_mempcpy_args (dest, src, len,
3551 target, exp, /*endp=*/ 1);
3554 /* Expand an instrumented call EXP to the mempcpy builtin.
3555 Return NULL_RTX if we failed, the caller should emit a normal call,
3556 otherwise try to get the result in TARGET, if convenient (and in
3557 mode MODE if that's convenient). */
3559 static rtx
3560 expand_builtin_mempcpy_with_bounds (tree exp, rtx target)
3562 if (!validate_arglist (exp,
3563 POINTER_TYPE, POINTER_BOUNDS_TYPE,
3564 POINTER_TYPE, POINTER_BOUNDS_TYPE,
3565 INTEGER_TYPE, VOID_TYPE))
3566 return NULL_RTX;
3567 else
3569 tree dest = CALL_EXPR_ARG (exp, 0);
3570 tree src = CALL_EXPR_ARG (exp, 2);
3571 tree len = CALL_EXPR_ARG (exp, 4);
3572 rtx res = expand_builtin_mempcpy_args (dest, src, len, target,
3573 exp, 1);
3575 /* Return src bounds with the result. */
3576 if (res)
3578 rtx bnd = force_reg (targetm.chkp_bound_mode (),
3579 expand_normal (CALL_EXPR_ARG (exp, 1)));
3580 res = chkp_join_splitted_slot (res, bnd);
3582 return res;
3586 /* Helper function to do the actual work for expand of memory copy family
3587 functions (memcpy, mempcpy, stpcpy). Expansing should assign LEN bytes
3588 of memory from SRC to DEST and assign to TARGET if convenient.
3589 If ENDP is 0 return the
3590 destination pointer, if ENDP is 1 return the end pointer ala
3591 mempcpy, and if ENDP is 2 return the end pointer minus one ala
3592 stpcpy. */
3594 static rtx
3595 expand_builtin_memory_copy_args (tree dest, tree src, tree len,
3596 rtx target, tree exp, int endp)
3598 const char *src_str;
3599 unsigned int src_align = get_pointer_alignment (src);
3600 unsigned int dest_align = get_pointer_alignment (dest);
3601 rtx dest_mem, src_mem, dest_addr, len_rtx;
3602 HOST_WIDE_INT expected_size = -1;
3603 unsigned int expected_align = 0;
3604 unsigned HOST_WIDE_INT min_size;
3605 unsigned HOST_WIDE_INT max_size;
3606 unsigned HOST_WIDE_INT probable_max_size;
3608 /* If DEST is not a pointer type, call the normal function. */
3609 if (dest_align == 0)
3610 return NULL_RTX;
3612 /* If either SRC is not a pointer type, don't do this
3613 operation in-line. */
3614 if (src_align == 0)
3615 return NULL_RTX;
3617 if (currently_expanding_gimple_stmt)
3618 stringop_block_profile (currently_expanding_gimple_stmt,
3619 &expected_align, &expected_size);
3621 if (expected_align < dest_align)
3622 expected_align = dest_align;
3623 dest_mem = get_memory_rtx (dest, len);
3624 set_mem_align (dest_mem, dest_align);
3625 len_rtx = expand_normal (len);
3626 determine_block_size (len, len_rtx, &min_size, &max_size,
3627 &probable_max_size);
3628 src_str = c_getstr (src);
3630 /* If SRC is a string constant and block move would be done
3631 by pieces, we can avoid loading the string from memory
3632 and only stored the computed constants. */
3633 if (src_str
3634 && CONST_INT_P (len_rtx)
3635 && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <= strlen (src_str) + 1
3636 && can_store_by_pieces (INTVAL (len_rtx), builtin_memcpy_read_str,
3637 CONST_CAST (char *, src_str),
3638 dest_align, false))
3640 dest_mem = store_by_pieces (dest_mem, INTVAL (len_rtx),
3641 builtin_memcpy_read_str,
3642 CONST_CAST (char *, src_str),
3643 dest_align, false, endp);
3644 dest_mem = force_operand (XEXP (dest_mem, 0), target);
3645 dest_mem = convert_memory_address (ptr_mode, dest_mem);
3646 return dest_mem;
3649 src_mem = get_memory_rtx (src, len);
3650 set_mem_align (src_mem, src_align);
3652 /* Copy word part most expediently. */
3653 enum block_op_methods method = BLOCK_OP_NORMAL;
3654 if (CALL_EXPR_TAILCALL (exp) && (endp == 0 || target == const0_rtx))
3655 method = BLOCK_OP_TAILCALL;
3656 if (endp == 1 && target != const0_rtx)
3657 method = BLOCK_OP_NO_LIBCALL_RET;
3658 dest_addr = emit_block_move_hints (dest_mem, src_mem, len_rtx, method,
3659 expected_align, expected_size,
3660 min_size, max_size, probable_max_size);
3661 if (dest_addr == pc_rtx)
3662 return NULL_RTX;
3664 if (dest_addr == 0)
3666 dest_addr = force_operand (XEXP (dest_mem, 0), target);
3667 dest_addr = convert_memory_address (ptr_mode, dest_addr);
3670 if (endp && target != const0_rtx)
3672 dest_addr = gen_rtx_PLUS (ptr_mode, dest_addr, len_rtx);
3673 /* stpcpy pointer to last byte. */
3674 if (endp == 2)
3675 dest_addr = gen_rtx_MINUS (ptr_mode, dest_addr, const1_rtx);
3678 return dest_addr;
3681 static rtx
3682 expand_builtin_mempcpy_args (tree dest, tree src, tree len,
3683 rtx target, tree orig_exp, int endp)
3685 return expand_builtin_memory_copy_args (dest, src, len, target, orig_exp,
3686 endp);
3689 /* Expand into a movstr instruction, if one is available. Return NULL_RTX if
3690 we failed, the caller should emit a normal call, otherwise try to
3691 get the result in TARGET, if convenient. If ENDP is 0 return the
3692 destination pointer, if ENDP is 1 return the end pointer ala
3693 mempcpy, and if ENDP is 2 return the end pointer minus one ala
3694 stpcpy. */
3696 static rtx
3697 expand_movstr (tree dest, tree src, rtx target, int endp)
3699 struct expand_operand ops[3];
3700 rtx dest_mem;
3701 rtx src_mem;
3703 if (!targetm.have_movstr ())
3704 return NULL_RTX;
3706 dest_mem = get_memory_rtx (dest, NULL);
3707 src_mem = get_memory_rtx (src, NULL);
3708 if (!endp)
3710 target = force_reg (Pmode, XEXP (dest_mem, 0));
3711 dest_mem = replace_equiv_address (dest_mem, target);
3714 create_output_operand (&ops[0], endp ? target : NULL_RTX, Pmode);
3715 create_fixed_operand (&ops[1], dest_mem);
3716 create_fixed_operand (&ops[2], src_mem);
3717 if (!maybe_expand_insn (targetm.code_for_movstr, 3, ops))
3718 return NULL_RTX;
3720 if (endp && target != const0_rtx)
3722 target = ops[0].value;
3723 /* movstr is supposed to set end to the address of the NUL
3724 terminator. If the caller requested a mempcpy-like return value,
3725 adjust it. */
3726 if (endp == 1)
3728 rtx tem = plus_constant (GET_MODE (target),
3729 gen_lowpart (GET_MODE (target), target), 1);
3730 emit_move_insn (target, force_operand (tem, NULL_RTX));
3733 return target;
3736 /* Do some very basic size validation of a call to the strcpy builtin
3737 given by EXP. Return NULL_RTX to have the built-in expand to a call
3738 to the library function. */
3740 static rtx
3741 expand_builtin_strcat (tree exp, rtx)
3743 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE)
3744 || !warn_stringop_overflow)
3745 return NULL_RTX;
3747 tree dest = CALL_EXPR_ARG (exp, 0);
3748 tree src = CALL_EXPR_ARG (exp, 1);
3750 /* There is no way here to determine the length of the string in
3751 the destination to which the SRC string is being appended so
3752 just diagnose cases when the souce string is longer than
3753 the destination object. */
3755 tree destsize = compute_objsize (dest, warn_stringop_overflow - 1);
3757 check_access (exp, dest, src, /*size=*/NULL_TREE, /*maxread=*/NULL_TREE, src,
3758 destsize);
3760 return NULL_RTX;
3763 /* Expand expression EXP, which is a call to the strcpy builtin. Return
3764 NULL_RTX if we failed the caller should emit a normal call, otherwise
3765 try to get the result in TARGET, if convenient (and in mode MODE if that's
3766 convenient). */
3768 static rtx
3769 expand_builtin_strcpy (tree exp, rtx target)
3771 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3772 return NULL_RTX;
3774 tree dest = CALL_EXPR_ARG (exp, 0);
3775 tree src = CALL_EXPR_ARG (exp, 1);
3777 if (warn_stringop_overflow)
3779 tree destsize = compute_objsize (dest, warn_stringop_overflow - 1);
3780 check_access (exp, dest, src, /*size=*/NULL_TREE, /*maxread=*/NULL_TREE,
3781 src, destsize);
3784 return expand_builtin_strcpy_args (dest, src, target);
3787 /* Helper function to do the actual work for expand_builtin_strcpy. The
3788 arguments to the builtin_strcpy call DEST and SRC are broken out
3789 so that this can also be called without constructing an actual CALL_EXPR.
3790 The other arguments and return value are the same as for
3791 expand_builtin_strcpy. */
3793 static rtx
3794 expand_builtin_strcpy_args (tree dest, tree src, rtx target)
3796 return expand_movstr (dest, src, target, /*endp=*/0);
3799 /* Expand a call EXP to the stpcpy builtin.
3800 Return NULL_RTX if we failed the caller should emit a normal call,
3801 otherwise try to get the result in TARGET, if convenient (and in
3802 mode MODE if that's convenient). */
3804 static rtx
3805 expand_builtin_stpcpy (tree exp, rtx target, machine_mode mode)
3807 tree dst, src;
3808 location_t loc = EXPR_LOCATION (exp);
3810 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3811 return NULL_RTX;
3813 dst = CALL_EXPR_ARG (exp, 0);
3814 src = CALL_EXPR_ARG (exp, 1);
3816 if (warn_stringop_overflow)
3818 tree destsize = compute_objsize (dst, warn_stringop_overflow - 1);
3819 check_access (exp, dst, src, /*size=*/NULL_TREE, /*maxread=*/NULL_TREE,
3820 src, destsize);
3823 /* If return value is ignored, transform stpcpy into strcpy. */
3824 if (target == const0_rtx && builtin_decl_implicit (BUILT_IN_STRCPY))
3826 tree fn = builtin_decl_implicit (BUILT_IN_STRCPY);
3827 tree result = build_call_nofold_loc (loc, fn, 2, dst, src);
3828 return expand_expr (result, target, mode, EXPAND_NORMAL);
3830 else
3832 tree len, lenp1;
3833 rtx ret;
3835 /* Ensure we get an actual string whose length can be evaluated at
3836 compile-time, not an expression containing a string. This is
3837 because the latter will potentially produce pessimized code
3838 when used to produce the return value. */
3839 if (! c_getstr (src) || ! (len = c_strlen (src, 0)))
3840 return expand_movstr (dst, src, target, /*endp=*/2);
3842 lenp1 = size_binop_loc (loc, PLUS_EXPR, len, ssize_int (1));
3843 ret = expand_builtin_mempcpy_args (dst, src, lenp1,
3844 target, exp, /*endp=*/2);
3846 if (ret)
3847 return ret;
3849 if (TREE_CODE (len) == INTEGER_CST)
3851 rtx len_rtx = expand_normal (len);
3853 if (CONST_INT_P (len_rtx))
3855 ret = expand_builtin_strcpy_args (dst, src, target);
3857 if (ret)
3859 if (! target)
3861 if (mode != VOIDmode)
3862 target = gen_reg_rtx (mode);
3863 else
3864 target = gen_reg_rtx (GET_MODE (ret));
3866 if (GET_MODE (target) != GET_MODE (ret))
3867 ret = gen_lowpart (GET_MODE (target), ret);
3869 ret = plus_constant (GET_MODE (ret), ret, INTVAL (len_rtx));
3870 ret = emit_move_insn (target, force_operand (ret, NULL_RTX));
3871 gcc_assert (ret);
3873 return target;
3878 return expand_movstr (dst, src, target, /*endp=*/2);
3882 /* Check a call EXP to the stpncpy built-in for validity.
3883 Return NULL_RTX on both success and failure. */
3885 static rtx
3886 expand_builtin_stpncpy (tree exp, rtx)
3888 if (!validate_arglist (exp,
3889 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE)
3890 || !warn_stringop_overflow)
3891 return NULL_RTX;
3893 /* The source and destination of the call. */
3894 tree dest = CALL_EXPR_ARG (exp, 0);
3895 tree src = CALL_EXPR_ARG (exp, 1);
3897 /* The exact number of bytes to write (not the maximum). */
3898 tree len = CALL_EXPR_ARG (exp, 2);
3900 /* The size of the destination object. */
3901 tree destsize = compute_objsize (dest, warn_stringop_overflow - 1);
3903 check_access (exp, dest, src, len, /*maxread=*/NULL_TREE, src, destsize);
3905 return NULL_RTX;
3908 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
3909 bytes from constant string DATA + OFFSET and return it as target
3910 constant. */
3913 builtin_strncpy_read_str (void *data, HOST_WIDE_INT offset,
3914 scalar_int_mode mode)
3916 const char *str = (const char *) data;
3918 if ((unsigned HOST_WIDE_INT) offset > strlen (str))
3919 return const0_rtx;
3921 return c_readstr (str + offset, mode);
3924 /* Helper to check the sizes of sequences and the destination of calls
3925 to __builtin_strncat and __builtin___strncat_chk. Returns true on
3926 success (no overflow or invalid sizes), false otherwise. */
3928 static bool
3929 check_strncat_sizes (tree exp, tree objsize)
3931 tree dest = CALL_EXPR_ARG (exp, 0);
3932 tree src = CALL_EXPR_ARG (exp, 1);
3933 tree maxread = CALL_EXPR_ARG (exp, 2);
3935 /* Try to determine the range of lengths that the source expression
3936 refers to. */
3937 tree lenrange[2];
3938 get_range_strlen (src, lenrange);
3940 /* Try to verify that the destination is big enough for the shortest
3941 string. */
3943 if (!objsize && warn_stringop_overflow)
3945 /* If it hasn't been provided by __strncat_chk, try to determine
3946 the size of the destination object into which the source is
3947 being copied. */
3948 objsize = compute_objsize (dest, warn_stringop_overflow - 1);
3951 /* Add one for the terminating nul. */
3952 tree srclen = (lenrange[0]
3953 ? fold_build2 (PLUS_EXPR, size_type_node, lenrange[0],
3954 size_one_node)
3955 : NULL_TREE);
3957 /* The strncat function copies at most MAXREAD bytes and always appends
3958 the terminating nul so the specified upper bound should never be equal
3959 to (or greater than) the size of the destination. */
3960 if (tree_fits_uhwi_p (maxread) && tree_fits_uhwi_p (objsize)
3961 && tree_int_cst_equal (objsize, maxread))
3963 location_t loc = tree_nonartificial_location (exp);
3964 loc = expansion_point_location_if_in_system_header (loc);
3966 warning_at (loc, OPT_Wstringop_overflow_,
3967 "%K%qD specified bound %E equals destination size",
3968 exp, get_callee_fndecl (exp), maxread);
3970 return false;
3973 if (!srclen
3974 || (maxread && tree_fits_uhwi_p (maxread)
3975 && tree_fits_uhwi_p (srclen)
3976 && tree_int_cst_lt (maxread, srclen)))
3977 srclen = maxread;
3979 /* The number of bytes to write is LEN but check_access will also
3980 check SRCLEN if LEN's value isn't known. */
3981 return check_access (exp, dest, src, /*size=*/NULL_TREE, maxread, srclen,
3982 objsize);
3985 /* Similar to expand_builtin_strcat, do some very basic size validation
3986 of a call to the strcpy builtin given by EXP. Return NULL_RTX to have
3987 the built-in expand to a call to the library function. */
3989 static rtx
3990 expand_builtin_strncat (tree exp, rtx)
3992 if (!validate_arglist (exp,
3993 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE)
3994 || !warn_stringop_overflow)
3995 return NULL_RTX;
3997 tree dest = CALL_EXPR_ARG (exp, 0);
3998 tree src = CALL_EXPR_ARG (exp, 1);
3999 /* The upper bound on the number of bytes to write. */
4000 tree maxread = CALL_EXPR_ARG (exp, 2);
4001 /* The length of the source sequence. */
4002 tree slen = c_strlen (src, 1);
4004 /* Try to determine the range of lengths that the source expression
4005 refers to. */
4006 tree lenrange[2];
4007 if (slen)
4008 lenrange[0] = lenrange[1] = slen;
4009 else
4010 get_range_strlen (src, lenrange);
4012 /* Try to verify that the destination is big enough for the shortest
4013 string. First try to determine the size of the destination object
4014 into which the source is being copied. */
4015 tree destsize = compute_objsize (dest, warn_stringop_overflow - 1);
4017 /* Add one for the terminating nul. */
4018 tree srclen = (lenrange[0]
4019 ? fold_build2 (PLUS_EXPR, size_type_node, lenrange[0],
4020 size_one_node)
4021 : NULL_TREE);
4023 /* The strncat function copies at most MAXREAD bytes and always appends
4024 the terminating nul so the specified upper bound should never be equal
4025 to (or greater than) the size of the destination. */
4026 if (tree_fits_uhwi_p (maxread) && tree_fits_uhwi_p (destsize)
4027 && tree_int_cst_equal (destsize, maxread))
4029 location_t loc = tree_nonartificial_location (exp);
4030 loc = expansion_point_location_if_in_system_header (loc);
4032 warning_at (loc, OPT_Wstringop_overflow_,
4033 "%K%qD specified bound %E equals destination size",
4034 exp, get_callee_fndecl (exp), maxread);
4036 return NULL_RTX;
4039 if (!srclen
4040 || (maxread && tree_fits_uhwi_p (maxread)
4041 && tree_fits_uhwi_p (srclen)
4042 && tree_int_cst_lt (maxread, srclen)))
4043 srclen = maxread;
4045 /* The number of bytes to write is SRCLEN. */
4046 check_access (exp, dest, src, NULL_TREE, maxread, srclen, destsize);
4048 return NULL_RTX;
4051 /* Expand expression EXP, which is a call to the strncpy builtin. Return
4052 NULL_RTX if we failed the caller should emit a normal call. */
4054 static rtx
4055 expand_builtin_strncpy (tree exp, rtx target)
4057 location_t loc = EXPR_LOCATION (exp);
4059 if (validate_arglist (exp,
4060 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
4062 tree dest = CALL_EXPR_ARG (exp, 0);
4063 tree src = CALL_EXPR_ARG (exp, 1);
4064 /* The number of bytes to write (not the maximum). */
4065 tree len = CALL_EXPR_ARG (exp, 2);
4066 /* The length of the source sequence. */
4067 tree slen = c_strlen (src, 1);
4069 if (warn_stringop_overflow)
4071 tree destsize = compute_objsize (dest,
4072 warn_stringop_overflow - 1);
4074 /* The number of bytes to write is LEN but check_access will also
4075 check SLEN if LEN's value isn't known. */
4076 check_access (exp, dest, src, len, /*maxread=*/NULL_TREE, src,
4077 destsize);
4080 /* We must be passed a constant len and src parameter. */
4081 if (!tree_fits_uhwi_p (len) || !slen || !tree_fits_uhwi_p (slen))
4082 return NULL_RTX;
4084 slen = size_binop_loc (loc, PLUS_EXPR, slen, ssize_int (1));
4086 /* We're required to pad with trailing zeros if the requested
4087 len is greater than strlen(s2)+1. In that case try to
4088 use store_by_pieces, if it fails, punt. */
4089 if (tree_int_cst_lt (slen, len))
4091 unsigned int dest_align = get_pointer_alignment (dest);
4092 const char *p = c_getstr (src);
4093 rtx dest_mem;
4095 if (!p || dest_align == 0 || !tree_fits_uhwi_p (len)
4096 || !can_store_by_pieces (tree_to_uhwi (len),
4097 builtin_strncpy_read_str,
4098 CONST_CAST (char *, p),
4099 dest_align, false))
4100 return NULL_RTX;
4102 dest_mem = get_memory_rtx (dest, len);
4103 store_by_pieces (dest_mem, tree_to_uhwi (len),
4104 builtin_strncpy_read_str,
4105 CONST_CAST (char *, p), dest_align, false, 0);
4106 dest_mem = force_operand (XEXP (dest_mem, 0), target);
4107 dest_mem = convert_memory_address (ptr_mode, dest_mem);
4108 return dest_mem;
4111 return NULL_RTX;
4114 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
4115 bytes from constant string DATA + OFFSET and return it as target
4116 constant. */
4119 builtin_memset_read_str (void *data, HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
4120 scalar_int_mode mode)
4122 const char *c = (const char *) data;
4123 char *p = XALLOCAVEC (char, GET_MODE_SIZE (mode));
4125 memset (p, *c, GET_MODE_SIZE (mode));
4127 return c_readstr (p, mode);
4130 /* Callback routine for store_by_pieces. Return the RTL of a register
4131 containing GET_MODE_SIZE (MODE) consecutive copies of the unsigned
4132 char value given in the RTL register data. For example, if mode is
4133 4 bytes wide, return the RTL for 0x01010101*data. */
4135 static rtx
4136 builtin_memset_gen_str (void *data, HOST_WIDE_INT offset ATTRIBUTE_UNUSED,
4137 scalar_int_mode mode)
4139 rtx target, coeff;
4140 size_t size;
4141 char *p;
4143 size = GET_MODE_SIZE (mode);
4144 if (size == 1)
4145 return (rtx) data;
4147 p = XALLOCAVEC (char, size);
4148 memset (p, 1, size);
4149 coeff = c_readstr (p, mode);
4151 target = convert_to_mode (mode, (rtx) data, 1);
4152 target = expand_mult (mode, target, coeff, NULL_RTX, 1);
4153 return force_reg (mode, target);
4156 /* Expand expression EXP, which is a call to the memset builtin. Return
4157 NULL_RTX if we failed the caller should emit a normal call, otherwise
4158 try to get the result in TARGET, if convenient (and in mode MODE if that's
4159 convenient). */
4161 static rtx
4162 expand_builtin_memset (tree exp, rtx target, machine_mode mode)
4164 if (!validate_arglist (exp,
4165 POINTER_TYPE, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
4166 return NULL_RTX;
4168 tree dest = CALL_EXPR_ARG (exp, 0);
4169 tree val = CALL_EXPR_ARG (exp, 1);
4170 tree len = CALL_EXPR_ARG (exp, 2);
4172 check_memop_access (exp, dest, NULL_TREE, len);
4174 return expand_builtin_memset_args (dest, val, len, target, mode, exp);
4177 /* Expand expression EXP, which is an instrumented call to the memset builtin.
4178 Return NULL_RTX if we failed the caller should emit a normal call, otherwise
4179 try to get the result in TARGET, if convenient (and in mode MODE if that's
4180 convenient). */
4182 static rtx
4183 expand_builtin_memset_with_bounds (tree exp, rtx target, machine_mode mode)
4185 if (!validate_arglist (exp,
4186 POINTER_TYPE, POINTER_BOUNDS_TYPE,
4187 INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
4188 return NULL_RTX;
4189 else
4191 tree dest = CALL_EXPR_ARG (exp, 0);
4192 tree val = CALL_EXPR_ARG (exp, 2);
4193 tree len = CALL_EXPR_ARG (exp, 3);
4194 rtx res = expand_builtin_memset_args (dest, val, len, target, mode, exp);
4196 /* Return src bounds with the result. */
4197 if (res)
4199 rtx bnd = force_reg (targetm.chkp_bound_mode (),
4200 expand_normal (CALL_EXPR_ARG (exp, 1)));
4201 res = chkp_join_splitted_slot (res, bnd);
4203 return res;
4207 /* Helper function to do the actual work for expand_builtin_memset. The
4208 arguments to the builtin_memset call DEST, VAL, and LEN are broken out
4209 so that this can also be called without constructing an actual CALL_EXPR.
4210 The other arguments and return value are the same as for
4211 expand_builtin_memset. */
4213 static rtx
4214 expand_builtin_memset_args (tree dest, tree val, tree len,
4215 rtx target, machine_mode mode, tree orig_exp)
4217 tree fndecl, fn;
4218 enum built_in_function fcode;
4219 machine_mode val_mode;
4220 char c;
4221 unsigned int dest_align;
4222 rtx dest_mem, dest_addr, len_rtx;
4223 HOST_WIDE_INT expected_size = -1;
4224 unsigned int expected_align = 0;
4225 unsigned HOST_WIDE_INT min_size;
4226 unsigned HOST_WIDE_INT max_size;
4227 unsigned HOST_WIDE_INT probable_max_size;
4229 dest_align = get_pointer_alignment (dest);
4231 /* If DEST is not a pointer type, don't do this operation in-line. */
4232 if (dest_align == 0)
4233 return NULL_RTX;
4235 if (currently_expanding_gimple_stmt)
4236 stringop_block_profile (currently_expanding_gimple_stmt,
4237 &expected_align, &expected_size);
4239 if (expected_align < dest_align)
4240 expected_align = dest_align;
4242 /* If the LEN parameter is zero, return DEST. */
4243 if (integer_zerop (len))
4245 /* Evaluate and ignore VAL in case it has side-effects. */
4246 expand_expr (val, const0_rtx, VOIDmode, EXPAND_NORMAL);
4247 return expand_expr (dest, target, mode, EXPAND_NORMAL);
4250 /* Stabilize the arguments in case we fail. */
4251 dest = builtin_save_expr (dest);
4252 val = builtin_save_expr (val);
4253 len = builtin_save_expr (len);
4255 len_rtx = expand_normal (len);
4256 determine_block_size (len, len_rtx, &min_size, &max_size,
4257 &probable_max_size);
4258 dest_mem = get_memory_rtx (dest, len);
4259 val_mode = TYPE_MODE (unsigned_char_type_node);
4261 if (TREE_CODE (val) != INTEGER_CST)
4263 rtx val_rtx;
4265 val_rtx = expand_normal (val);
4266 val_rtx = convert_to_mode (val_mode, val_rtx, 0);
4268 /* Assume that we can memset by pieces if we can store
4269 * the coefficients by pieces (in the required modes).
4270 * We can't pass builtin_memset_gen_str as that emits RTL. */
4271 c = 1;
4272 if (tree_fits_uhwi_p (len)
4273 && can_store_by_pieces (tree_to_uhwi (len),
4274 builtin_memset_read_str, &c, dest_align,
4275 true))
4277 val_rtx = force_reg (val_mode, val_rtx);
4278 store_by_pieces (dest_mem, tree_to_uhwi (len),
4279 builtin_memset_gen_str, val_rtx, dest_align,
4280 true, 0);
4282 else if (!set_storage_via_setmem (dest_mem, len_rtx, val_rtx,
4283 dest_align, expected_align,
4284 expected_size, min_size, max_size,
4285 probable_max_size))
4286 goto do_libcall;
4288 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
4289 dest_mem = convert_memory_address (ptr_mode, dest_mem);
4290 return dest_mem;
4293 if (target_char_cast (val, &c))
4294 goto do_libcall;
4296 if (c)
4298 if (tree_fits_uhwi_p (len)
4299 && can_store_by_pieces (tree_to_uhwi (len),
4300 builtin_memset_read_str, &c, dest_align,
4301 true))
4302 store_by_pieces (dest_mem, tree_to_uhwi (len),
4303 builtin_memset_read_str, &c, dest_align, true, 0);
4304 else if (!set_storage_via_setmem (dest_mem, len_rtx,
4305 gen_int_mode (c, val_mode),
4306 dest_align, expected_align,
4307 expected_size, min_size, max_size,
4308 probable_max_size))
4309 goto do_libcall;
4311 dest_mem = force_operand (XEXP (dest_mem, 0), NULL_RTX);
4312 dest_mem = convert_memory_address (ptr_mode, dest_mem);
4313 return dest_mem;
4316 set_mem_align (dest_mem, dest_align);
4317 dest_addr = clear_storage_hints (dest_mem, len_rtx,
4318 CALL_EXPR_TAILCALL (orig_exp)
4319 ? BLOCK_OP_TAILCALL : BLOCK_OP_NORMAL,
4320 expected_align, expected_size,
4321 min_size, max_size,
4322 probable_max_size);
4324 if (dest_addr == 0)
4326 dest_addr = force_operand (XEXP (dest_mem, 0), NULL_RTX);
4327 dest_addr = convert_memory_address (ptr_mode, dest_addr);
4330 return dest_addr;
4332 do_libcall:
4333 fndecl = get_callee_fndecl (orig_exp);
4334 fcode = DECL_FUNCTION_CODE (fndecl);
4335 if (fcode == BUILT_IN_MEMSET
4336 || fcode == BUILT_IN_CHKP_MEMSET_NOBND_NOCHK_CHKP)
4337 fn = build_call_nofold_loc (EXPR_LOCATION (orig_exp), fndecl, 3,
4338 dest, val, len);
4339 else if (fcode == BUILT_IN_BZERO)
4340 fn = build_call_nofold_loc (EXPR_LOCATION (orig_exp), fndecl, 2,
4341 dest, len);
4342 else
4343 gcc_unreachable ();
4344 gcc_assert (TREE_CODE (fn) == CALL_EXPR);
4345 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (orig_exp);
4346 return expand_call (fn, target, target == const0_rtx);
4349 /* Expand expression EXP, which is a call to the bzero builtin. Return
4350 NULL_RTX if we failed the caller should emit a normal call. */
4352 static rtx
4353 expand_builtin_bzero (tree exp)
4355 if (!validate_arglist (exp, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
4356 return NULL_RTX;
4358 tree dest = CALL_EXPR_ARG (exp, 0);
4359 tree size = CALL_EXPR_ARG (exp, 1);
4361 check_memop_access (exp, dest, NULL_TREE, size);
4363 /* New argument list transforming bzero(ptr x, int y) to
4364 memset(ptr x, int 0, size_t y). This is done this way
4365 so that if it isn't expanded inline, we fallback to
4366 calling bzero instead of memset. */
4368 location_t loc = EXPR_LOCATION (exp);
4370 return expand_builtin_memset_args (dest, integer_zero_node,
4371 fold_convert_loc (loc,
4372 size_type_node, size),
4373 const0_rtx, VOIDmode, exp);
4376 /* Try to expand cmpstr operation ICODE with the given operands.
4377 Return the result rtx on success, otherwise return null. */
4379 static rtx
4380 expand_cmpstr (insn_code icode, rtx target, rtx arg1_rtx, rtx arg2_rtx,
4381 HOST_WIDE_INT align)
4383 machine_mode insn_mode = insn_data[icode].operand[0].mode;
4385 if (target && (!REG_P (target) || HARD_REGISTER_P (target)))
4386 target = NULL_RTX;
4388 struct expand_operand ops[4];
4389 create_output_operand (&ops[0], target, insn_mode);
4390 create_fixed_operand (&ops[1], arg1_rtx);
4391 create_fixed_operand (&ops[2], arg2_rtx);
4392 create_integer_operand (&ops[3], align);
4393 if (maybe_expand_insn (icode, 4, ops))
4394 return ops[0].value;
4395 return NULL_RTX;
4398 /* Expand expression EXP, which is a call to the memcmp built-in function.
4399 Return NULL_RTX if we failed and the caller should emit a normal call,
4400 otherwise try to get the result in TARGET, if convenient.
4401 RESULT_EQ is true if we can relax the returned value to be either zero
4402 or nonzero, without caring about the sign. */
4404 static rtx
4405 expand_builtin_memcmp (tree exp, rtx target, bool result_eq)
4407 if (!validate_arglist (exp,
4408 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
4409 return NULL_RTX;
4411 tree arg1 = CALL_EXPR_ARG (exp, 0);
4412 tree arg2 = CALL_EXPR_ARG (exp, 1);
4413 tree len = CALL_EXPR_ARG (exp, 2);
4415 /* Diagnose calls where the specified length exceeds the size of either
4416 object. */
4417 if (warn_stringop_overflow)
4419 tree size = compute_objsize (arg1, 0);
4420 if (check_access (exp, /*dst=*/NULL_TREE, /*src=*/NULL_TREE, len,
4421 /*maxread=*/NULL_TREE, size, /*objsize=*/NULL_TREE))
4423 size = compute_objsize (arg2, 0);
4424 check_access (exp, /*dst=*/NULL_TREE, /*src=*/NULL_TREE, len,
4425 /*maxread=*/NULL_TREE, size, /*objsize=*/NULL_TREE);
4429 machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
4430 location_t loc = EXPR_LOCATION (exp);
4432 unsigned int arg1_align = get_pointer_alignment (arg1) / BITS_PER_UNIT;
4433 unsigned int arg2_align = get_pointer_alignment (arg2) / BITS_PER_UNIT;
4435 /* If we don't have POINTER_TYPE, call the function. */
4436 if (arg1_align == 0 || arg2_align == 0)
4437 return NULL_RTX;
4439 rtx arg1_rtx = get_memory_rtx (arg1, len);
4440 rtx arg2_rtx = get_memory_rtx (arg2, len);
4441 rtx len_rtx = expand_normal (fold_convert_loc (loc, sizetype, len));
4443 /* Set MEM_SIZE as appropriate. */
4444 if (CONST_INT_P (len_rtx))
4446 set_mem_size (arg1_rtx, INTVAL (len_rtx));
4447 set_mem_size (arg2_rtx, INTVAL (len_rtx));
4450 by_pieces_constfn constfn = NULL;
4452 const char *src_str = c_getstr (arg2);
4453 if (result_eq && src_str == NULL)
4455 src_str = c_getstr (arg1);
4456 if (src_str != NULL)
4457 std::swap (arg1_rtx, arg2_rtx);
4460 /* If SRC is a string constant and block move would be done
4461 by pieces, we can avoid loading the string from memory
4462 and only stored the computed constants. */
4463 if (src_str
4464 && CONST_INT_P (len_rtx)
4465 && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <= strlen (src_str) + 1)
4466 constfn = builtin_memcpy_read_str;
4468 rtx result = emit_block_cmp_hints (arg1_rtx, arg2_rtx, len_rtx,
4469 TREE_TYPE (len), target,
4470 result_eq, constfn,
4471 CONST_CAST (char *, src_str));
4473 if (result)
4475 /* Return the value in the proper mode for this function. */
4476 if (GET_MODE (result) == mode)
4477 return result;
4479 if (target != 0)
4481 convert_move (target, result, 0);
4482 return target;
4485 return convert_to_mode (mode, result, 0);
4488 return NULL_RTX;
4491 /* Expand expression EXP, which is a call to the strcmp builtin. Return NULL_RTX
4492 if we failed the caller should emit a normal call, otherwise try to get
4493 the result in TARGET, if convenient. */
4495 static rtx
4496 expand_builtin_strcmp (tree exp, ATTRIBUTE_UNUSED rtx target)
4498 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
4499 return NULL_RTX;
4501 insn_code cmpstr_icode = direct_optab_handler (cmpstr_optab, SImode);
4502 insn_code cmpstrn_icode = direct_optab_handler (cmpstrn_optab, SImode);
4503 if (cmpstr_icode == CODE_FOR_nothing && cmpstrn_icode == CODE_FOR_nothing)
4504 return NULL_RTX;
4506 tree arg1 = CALL_EXPR_ARG (exp, 0);
4507 tree arg2 = CALL_EXPR_ARG (exp, 1);
4509 unsigned int arg1_align = get_pointer_alignment (arg1) / BITS_PER_UNIT;
4510 unsigned int arg2_align = get_pointer_alignment (arg2) / BITS_PER_UNIT;
4512 /* If we don't have POINTER_TYPE, call the function. */
4513 if (arg1_align == 0 || arg2_align == 0)
4514 return NULL_RTX;
4516 /* Stabilize the arguments in case gen_cmpstr(n)si fail. */
4517 arg1 = builtin_save_expr (arg1);
4518 arg2 = builtin_save_expr (arg2);
4520 rtx arg1_rtx = get_memory_rtx (arg1, NULL);
4521 rtx arg2_rtx = get_memory_rtx (arg2, NULL);
4523 rtx result = NULL_RTX;
4524 /* Try to call cmpstrsi. */
4525 if (cmpstr_icode != CODE_FOR_nothing)
4526 result = expand_cmpstr (cmpstr_icode, target, arg1_rtx, arg2_rtx,
4527 MIN (arg1_align, arg2_align));
4529 /* Try to determine at least one length and call cmpstrnsi. */
4530 if (!result && cmpstrn_icode != CODE_FOR_nothing)
4532 tree len;
4533 rtx arg3_rtx;
4535 tree len1 = c_strlen (arg1, 1);
4536 tree len2 = c_strlen (arg2, 1);
4538 if (len1)
4539 len1 = size_binop (PLUS_EXPR, ssize_int (1), len1);
4540 if (len2)
4541 len2 = size_binop (PLUS_EXPR, ssize_int (1), len2);
4543 /* If we don't have a constant length for the first, use the length
4544 of the second, if we know it. We don't require a constant for
4545 this case; some cost analysis could be done if both are available
4546 but neither is constant. For now, assume they're equally cheap,
4547 unless one has side effects. If both strings have constant lengths,
4548 use the smaller. */
4550 if (!len1)
4551 len = len2;
4552 else if (!len2)
4553 len = len1;
4554 else if (TREE_SIDE_EFFECTS (len1))
4555 len = len2;
4556 else if (TREE_SIDE_EFFECTS (len2))
4557 len = len1;
4558 else if (TREE_CODE (len1) != INTEGER_CST)
4559 len = len2;
4560 else if (TREE_CODE (len2) != INTEGER_CST)
4561 len = len1;
4562 else if (tree_int_cst_lt (len1, len2))
4563 len = len1;
4564 else
4565 len = len2;
4567 /* If both arguments have side effects, we cannot optimize. */
4568 if (len && !TREE_SIDE_EFFECTS (len))
4570 arg3_rtx = expand_normal (len);
4571 result = expand_cmpstrn_or_cmpmem
4572 (cmpstrn_icode, target, arg1_rtx, arg2_rtx, TREE_TYPE (len),
4573 arg3_rtx, MIN (arg1_align, arg2_align));
4577 /* Check to see if the argument was declared attribute nonstring
4578 and if so, issue a warning since at this point it's not known
4579 to be nul-terminated. */
4580 tree fndecl = get_callee_fndecl (exp);
4581 maybe_warn_nonstring_arg (fndecl, exp);
4583 if (result)
4585 /* Return the value in the proper mode for this function. */
4586 machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
4587 if (GET_MODE (result) == mode)
4588 return result;
4589 if (target == 0)
4590 return convert_to_mode (mode, result, 0);
4591 convert_move (target, result, 0);
4592 return target;
4595 /* Expand the library call ourselves using a stabilized argument
4596 list to avoid re-evaluating the function's arguments twice. */
4597 tree fn = build_call_nofold_loc (EXPR_LOCATION (exp), fndecl, 2, arg1, arg2);
4598 gcc_assert (TREE_CODE (fn) == CALL_EXPR);
4599 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
4600 return expand_call (fn, target, target == const0_rtx);
4603 /* Expand expression EXP, which is a call to the strncmp builtin. Return
4604 NULL_RTX if we failed the caller should emit a normal call, otherwise try to get
4605 the result in TARGET, if convenient. */
4607 static rtx
4608 expand_builtin_strncmp (tree exp, ATTRIBUTE_UNUSED rtx target,
4609 ATTRIBUTE_UNUSED machine_mode mode)
4611 if (!validate_arglist (exp,
4612 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
4613 return NULL_RTX;
4615 /* If c_strlen can determine an expression for one of the string
4616 lengths, and it doesn't have side effects, then emit cmpstrnsi
4617 using length MIN(strlen(string)+1, arg3). */
4618 insn_code cmpstrn_icode = direct_optab_handler (cmpstrn_optab, SImode);
4619 if (cmpstrn_icode == CODE_FOR_nothing)
4620 return NULL_RTX;
4622 tree len;
4624 tree arg1 = CALL_EXPR_ARG (exp, 0);
4625 tree arg2 = CALL_EXPR_ARG (exp, 1);
4626 tree arg3 = CALL_EXPR_ARG (exp, 2);
4628 unsigned int arg1_align = get_pointer_alignment (arg1) / BITS_PER_UNIT;
4629 unsigned int arg2_align = get_pointer_alignment (arg2) / BITS_PER_UNIT;
4631 tree len1 = c_strlen (arg1, 1);
4632 tree len2 = c_strlen (arg2, 1);
4634 location_t loc = EXPR_LOCATION (exp);
4636 if (len1)
4637 len1 = size_binop_loc (loc, PLUS_EXPR, ssize_int (1), len1);
4638 if (len2)
4639 len2 = size_binop_loc (loc, PLUS_EXPR, ssize_int (1), len2);
4641 tree len3 = fold_convert_loc (loc, sizetype, arg3);
4643 /* If we don't have a constant length for the first, use the length
4644 of the second, if we know it. If neither string is constant length,
4645 use the given length argument. We don't require a constant for
4646 this case; some cost analysis could be done if both are available
4647 but neither is constant. For now, assume they're equally cheap,
4648 unless one has side effects. If both strings have constant lengths,
4649 use the smaller. */
4651 if (!len1 && !len2)
4652 len = len3;
4653 else if (!len1)
4654 len = len2;
4655 else if (!len2)
4656 len = len1;
4657 else if (TREE_SIDE_EFFECTS (len1))
4658 len = len2;
4659 else if (TREE_SIDE_EFFECTS (len2))
4660 len = len1;
4661 else if (TREE_CODE (len1) != INTEGER_CST)
4662 len = len2;
4663 else if (TREE_CODE (len2) != INTEGER_CST)
4664 len = len1;
4665 else if (tree_int_cst_lt (len1, len2))
4666 len = len1;
4667 else
4668 len = len2;
4670 /* If we are not using the given length, we must incorporate it here.
4671 The actual new length parameter will be MIN(len,arg3) in this case. */
4672 if (len != len3)
4673 len = fold_build2_loc (loc, MIN_EXPR, TREE_TYPE (len), len, len3);
4674 rtx arg1_rtx = get_memory_rtx (arg1, len);
4675 rtx arg2_rtx = get_memory_rtx (arg2, len);
4676 rtx arg3_rtx = expand_normal (len);
4677 rtx result = expand_cmpstrn_or_cmpmem (cmpstrn_icode, target, arg1_rtx,
4678 arg2_rtx, TREE_TYPE (len), arg3_rtx,
4679 MIN (arg1_align, arg2_align));
4681 /* Check to see if the argument was declared attribute nonstring
4682 and if so, issue a warning since at this point it's not known
4683 to be nul-terminated. */
4684 tree fndecl = get_callee_fndecl (exp);
4685 maybe_warn_nonstring_arg (fndecl, exp);
4687 if (result)
4689 /* Return the value in the proper mode for this function. */
4690 mode = TYPE_MODE (TREE_TYPE (exp));
4691 if (GET_MODE (result) == mode)
4692 return result;
4693 if (target == 0)
4694 return convert_to_mode (mode, result, 0);
4695 convert_move (target, result, 0);
4696 return target;
4699 /* Expand the library call ourselves using a stabilized argument
4700 list to avoid re-evaluating the function's arguments twice. */
4701 tree fn = build_call_nofold_loc (loc, fndecl, 3, arg1, arg2, len);
4702 gcc_assert (TREE_CODE (fn) == CALL_EXPR);
4703 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
4704 return expand_call (fn, target, target == const0_rtx);
4707 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
4708 if that's convenient. */
4711 expand_builtin_saveregs (void)
4713 rtx val;
4714 rtx_insn *seq;
4716 /* Don't do __builtin_saveregs more than once in a function.
4717 Save the result of the first call and reuse it. */
4718 if (saveregs_value != 0)
4719 return saveregs_value;
4721 /* When this function is called, it means that registers must be
4722 saved on entry to this function. So we migrate the call to the
4723 first insn of this function. */
4725 start_sequence ();
4727 /* Do whatever the machine needs done in this case. */
4728 val = targetm.calls.expand_builtin_saveregs ();
4730 seq = get_insns ();
4731 end_sequence ();
4733 saveregs_value = val;
4735 /* Put the insns after the NOTE that starts the function. If this
4736 is inside a start_sequence, make the outer-level insn chain current, so
4737 the code is placed at the start of the function. */
4738 push_topmost_sequence ();
4739 emit_insn_after (seq, entry_of_function ());
4740 pop_topmost_sequence ();
4742 return val;
4745 /* Expand a call to __builtin_next_arg. */
4747 static rtx
4748 expand_builtin_next_arg (void)
4750 /* Checking arguments is already done in fold_builtin_next_arg
4751 that must be called before this function. */
4752 return expand_binop (ptr_mode, add_optab,
4753 crtl->args.internal_arg_pointer,
4754 crtl->args.arg_offset_rtx,
4755 NULL_RTX, 0, OPTAB_LIB_WIDEN);
4758 /* Make it easier for the backends by protecting the valist argument
4759 from multiple evaluations. */
4761 static tree
4762 stabilize_va_list_loc (location_t loc, tree valist, int needs_lvalue)
4764 tree vatype = targetm.canonical_va_list_type (TREE_TYPE (valist));
4766 /* The current way of determining the type of valist is completely
4767 bogus. We should have the information on the va builtin instead. */
4768 if (!vatype)
4769 vatype = targetm.fn_abi_va_list (cfun->decl);
4771 if (TREE_CODE (vatype) == ARRAY_TYPE)
4773 if (TREE_SIDE_EFFECTS (valist))
4774 valist = save_expr (valist);
4776 /* For this case, the backends will be expecting a pointer to
4777 vatype, but it's possible we've actually been given an array
4778 (an actual TARGET_CANONICAL_VA_LIST_TYPE (valist)).
4779 So fix it. */
4780 if (TREE_CODE (TREE_TYPE (valist)) == ARRAY_TYPE)
4782 tree p1 = build_pointer_type (TREE_TYPE (vatype));
4783 valist = build_fold_addr_expr_with_type_loc (loc, valist, p1);
4786 else
4788 tree pt = build_pointer_type (vatype);
4790 if (! needs_lvalue)
4792 if (! TREE_SIDE_EFFECTS (valist))
4793 return valist;
4795 valist = fold_build1_loc (loc, ADDR_EXPR, pt, valist);
4796 TREE_SIDE_EFFECTS (valist) = 1;
4799 if (TREE_SIDE_EFFECTS (valist))
4800 valist = save_expr (valist);
4801 valist = fold_build2_loc (loc, MEM_REF,
4802 vatype, valist, build_int_cst (pt, 0));
4805 return valist;
4808 /* The "standard" definition of va_list is void*. */
4810 tree
4811 std_build_builtin_va_list (void)
4813 return ptr_type_node;
4816 /* The "standard" abi va_list is va_list_type_node. */
4818 tree
4819 std_fn_abi_va_list (tree fndecl ATTRIBUTE_UNUSED)
4821 return va_list_type_node;
4824 /* The "standard" type of va_list is va_list_type_node. */
4826 tree
4827 std_canonical_va_list_type (tree type)
4829 tree wtype, htype;
4831 wtype = va_list_type_node;
4832 htype = type;
4834 if (TREE_CODE (wtype) == ARRAY_TYPE)
4836 /* If va_list is an array type, the argument may have decayed
4837 to a pointer type, e.g. by being passed to another function.
4838 In that case, unwrap both types so that we can compare the
4839 underlying records. */
4840 if (TREE_CODE (htype) == ARRAY_TYPE
4841 || POINTER_TYPE_P (htype))
4843 wtype = TREE_TYPE (wtype);
4844 htype = TREE_TYPE (htype);
4847 if (TYPE_MAIN_VARIANT (wtype) == TYPE_MAIN_VARIANT (htype))
4848 return va_list_type_node;
4850 return NULL_TREE;
4853 /* The "standard" implementation of va_start: just assign `nextarg' to
4854 the variable. */
4856 void
4857 std_expand_builtin_va_start (tree valist, rtx nextarg)
4859 rtx va_r = expand_expr (valist, NULL_RTX, VOIDmode, EXPAND_WRITE);
4860 convert_move (va_r, nextarg, 0);
4862 /* We do not have any valid bounds for the pointer, so
4863 just store zero bounds for it. */
4864 if (chkp_function_instrumented_p (current_function_decl))
4865 chkp_expand_bounds_reset_for_mem (valist,
4866 make_tree (TREE_TYPE (valist),
4867 nextarg));
4870 /* Expand EXP, a call to __builtin_va_start. */
4872 static rtx
4873 expand_builtin_va_start (tree exp)
4875 rtx nextarg;
4876 tree valist;
4877 location_t loc = EXPR_LOCATION (exp);
4879 if (call_expr_nargs (exp) < 2)
4881 error_at (loc, "too few arguments to function %<va_start%>");
4882 return const0_rtx;
4885 if (fold_builtin_next_arg (exp, true))
4886 return const0_rtx;
4888 nextarg = expand_builtin_next_arg ();
4889 valist = stabilize_va_list_loc (loc, CALL_EXPR_ARG (exp, 0), 1);
4891 if (targetm.expand_builtin_va_start)
4892 targetm.expand_builtin_va_start (valist, nextarg);
4893 else
4894 std_expand_builtin_va_start (valist, nextarg);
4896 return const0_rtx;
4899 /* Expand EXP, a call to __builtin_va_end. */
4901 static rtx
4902 expand_builtin_va_end (tree exp)
4904 tree valist = CALL_EXPR_ARG (exp, 0);
4906 /* Evaluate for side effects, if needed. I hate macros that don't
4907 do that. */
4908 if (TREE_SIDE_EFFECTS (valist))
4909 expand_expr (valist, const0_rtx, VOIDmode, EXPAND_NORMAL);
4911 return const0_rtx;
4914 /* Expand EXP, a call to __builtin_va_copy. We do this as a
4915 builtin rather than just as an assignment in stdarg.h because of the
4916 nastiness of array-type va_list types. */
4918 static rtx
4919 expand_builtin_va_copy (tree exp)
4921 tree dst, src, t;
4922 location_t loc = EXPR_LOCATION (exp);
4924 dst = CALL_EXPR_ARG (exp, 0);
4925 src = CALL_EXPR_ARG (exp, 1);
4927 dst = stabilize_va_list_loc (loc, dst, 1);
4928 src = stabilize_va_list_loc (loc, src, 0);
4930 gcc_assert (cfun != NULL && cfun->decl != NULL_TREE);
4932 if (TREE_CODE (targetm.fn_abi_va_list (cfun->decl)) != ARRAY_TYPE)
4934 t = build2 (MODIFY_EXPR, targetm.fn_abi_va_list (cfun->decl), dst, src);
4935 TREE_SIDE_EFFECTS (t) = 1;
4936 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
4938 else
4940 rtx dstb, srcb, size;
4942 /* Evaluate to pointers. */
4943 dstb = expand_expr (dst, NULL_RTX, Pmode, EXPAND_NORMAL);
4944 srcb = expand_expr (src, NULL_RTX, Pmode, EXPAND_NORMAL);
4945 size = expand_expr (TYPE_SIZE_UNIT (targetm.fn_abi_va_list (cfun->decl)),
4946 NULL_RTX, VOIDmode, EXPAND_NORMAL);
4948 dstb = convert_memory_address (Pmode, dstb);
4949 srcb = convert_memory_address (Pmode, srcb);
4951 /* "Dereference" to BLKmode memories. */
4952 dstb = gen_rtx_MEM (BLKmode, dstb);
4953 set_mem_alias_set (dstb, get_alias_set (TREE_TYPE (TREE_TYPE (dst))));
4954 set_mem_align (dstb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
4955 srcb = gen_rtx_MEM (BLKmode, srcb);
4956 set_mem_alias_set (srcb, get_alias_set (TREE_TYPE (TREE_TYPE (src))));
4957 set_mem_align (srcb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
4959 /* Copy. */
4960 emit_block_move (dstb, srcb, size, BLOCK_OP_NORMAL);
4963 return const0_rtx;
4966 /* Expand a call to one of the builtin functions __builtin_frame_address or
4967 __builtin_return_address. */
4969 static rtx
4970 expand_builtin_frame_address (tree fndecl, tree exp)
4972 /* The argument must be a nonnegative integer constant.
4973 It counts the number of frames to scan up the stack.
4974 The value is either the frame pointer value or the return
4975 address saved in that frame. */
4976 if (call_expr_nargs (exp) == 0)
4977 /* Warning about missing arg was already issued. */
4978 return const0_rtx;
4979 else if (! tree_fits_uhwi_p (CALL_EXPR_ARG (exp, 0)))
4981 error ("invalid argument to %qD", fndecl);
4982 return const0_rtx;
4984 else
4986 /* Number of frames to scan up the stack. */
4987 unsigned HOST_WIDE_INT count = tree_to_uhwi (CALL_EXPR_ARG (exp, 0));
4989 rtx tem = expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl), count);
4991 /* Some ports cannot access arbitrary stack frames. */
4992 if (tem == NULL)
4994 warning (0, "unsupported argument to %qD", fndecl);
4995 return const0_rtx;
4998 if (count)
5000 /* Warn since no effort is made to ensure that any frame
5001 beyond the current one exists or can be safely reached. */
5002 warning (OPT_Wframe_address, "calling %qD with "
5003 "a nonzero argument is unsafe", fndecl);
5006 /* For __builtin_frame_address, return what we've got. */
5007 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
5008 return tem;
5010 if (!REG_P (tem)
5011 && ! CONSTANT_P (tem))
5012 tem = copy_addr_to_reg (tem);
5013 return tem;
5017 /* Expand EXP, a call to the alloca builtin. Return NULL_RTX if we
5018 failed and the caller should emit a normal call. */
5020 static rtx
5021 expand_builtin_alloca (tree exp)
5023 rtx op0;
5024 rtx result;
5025 unsigned int align;
5026 tree fndecl = get_callee_fndecl (exp);
5027 HOST_WIDE_INT max_size;
5028 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
5029 bool alloca_for_var = CALL_ALLOCA_FOR_VAR_P (exp);
5030 bool valid_arglist
5031 = (fcode == BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
5032 ? validate_arglist (exp, INTEGER_TYPE, INTEGER_TYPE, INTEGER_TYPE,
5033 VOID_TYPE)
5034 : fcode == BUILT_IN_ALLOCA_WITH_ALIGN
5035 ? validate_arglist (exp, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE)
5036 : validate_arglist (exp, INTEGER_TYPE, VOID_TYPE));
5038 if (!valid_arglist)
5039 return NULL_RTX;
5041 if ((alloca_for_var && !warn_vla_limit)
5042 || (!alloca_for_var && !warn_alloca_limit))
5044 /* -Walloca-larger-than and -Wvla-larger-than settings override
5045 the more general -Walloc-size-larger-than so unless either of
5046 the former options is specified check the alloca arguments for
5047 overflow. */
5048 tree args[] = { CALL_EXPR_ARG (exp, 0), NULL_TREE };
5049 int idx[] = { 0, -1 };
5050 maybe_warn_alloc_args_overflow (fndecl, exp, args, idx);
5053 /* Compute the argument. */
5054 op0 = expand_normal (CALL_EXPR_ARG (exp, 0));
5056 /* Compute the alignment. */
5057 align = (fcode == BUILT_IN_ALLOCA
5058 ? BIGGEST_ALIGNMENT
5059 : TREE_INT_CST_LOW (CALL_EXPR_ARG (exp, 1)));
5061 /* Compute the maximum size. */
5062 max_size = (fcode == BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
5063 ? TREE_INT_CST_LOW (CALL_EXPR_ARG (exp, 2))
5064 : -1);
5066 /* Allocate the desired space. If the allocation stems from the declaration
5067 of a variable-sized object, it cannot accumulate. */
5068 result
5069 = allocate_dynamic_stack_space (op0, 0, align, max_size, alloca_for_var);
5070 result = convert_memory_address (ptr_mode, result);
5072 return result;
5075 /* Emit a call to __asan_allocas_unpoison call in EXP. Replace second argument
5076 of the call with virtual_stack_dynamic_rtx because in asan pass we emit a
5077 dummy value into second parameter relying on this function to perform the
5078 change. See motivation for this in comment to handle_builtin_stack_restore
5079 function. */
5081 static rtx
5082 expand_asan_emit_allocas_unpoison (tree exp)
5084 tree arg0 = CALL_EXPR_ARG (exp, 0);
5085 rtx top = expand_expr (arg0, NULL_RTX, ptr_mode, EXPAND_NORMAL);
5086 rtx bot = convert_memory_address (ptr_mode, virtual_stack_dynamic_rtx);
5087 rtx ret = init_one_libfunc ("__asan_allocas_unpoison");
5088 ret = emit_library_call_value (ret, NULL_RTX, LCT_NORMAL, ptr_mode,
5089 top, ptr_mode, bot, ptr_mode);
5090 return ret;
5093 /* Expand a call to bswap builtin in EXP.
5094 Return NULL_RTX if a normal call should be emitted rather than expanding the
5095 function in-line. If convenient, the result should be placed in TARGET.
5096 SUBTARGET may be used as the target for computing one of EXP's operands. */
5098 static rtx
5099 expand_builtin_bswap (machine_mode target_mode, tree exp, rtx target,
5100 rtx subtarget)
5102 tree arg;
5103 rtx op0;
5105 if (!validate_arglist (exp, INTEGER_TYPE, VOID_TYPE))
5106 return NULL_RTX;
5108 arg = CALL_EXPR_ARG (exp, 0);
5109 op0 = expand_expr (arg,
5110 subtarget && GET_MODE (subtarget) == target_mode
5111 ? subtarget : NULL_RTX,
5112 target_mode, EXPAND_NORMAL);
5113 if (GET_MODE (op0) != target_mode)
5114 op0 = convert_to_mode (target_mode, op0, 1);
5116 target = expand_unop (target_mode, bswap_optab, op0, target, 1);
5118 gcc_assert (target);
5120 return convert_to_mode (target_mode, target, 1);
5123 /* Expand a call to a unary builtin in EXP.
5124 Return NULL_RTX if a normal call should be emitted rather than expanding the
5125 function in-line. If convenient, the result should be placed in TARGET.
5126 SUBTARGET may be used as the target for computing one of EXP's operands. */
5128 static rtx
5129 expand_builtin_unop (machine_mode target_mode, tree exp, rtx target,
5130 rtx subtarget, optab op_optab)
5132 rtx op0;
5134 if (!validate_arglist (exp, INTEGER_TYPE, VOID_TYPE))
5135 return NULL_RTX;
5137 /* Compute the argument. */
5138 op0 = expand_expr (CALL_EXPR_ARG (exp, 0),
5139 (subtarget
5140 && (TYPE_MODE (TREE_TYPE (CALL_EXPR_ARG (exp, 0)))
5141 == GET_MODE (subtarget))) ? subtarget : NULL_RTX,
5142 VOIDmode, EXPAND_NORMAL);
5143 /* Compute op, into TARGET if possible.
5144 Set TARGET to wherever the result comes back. */
5145 target = expand_unop (TYPE_MODE (TREE_TYPE (CALL_EXPR_ARG (exp, 0))),
5146 op_optab, op0, target, op_optab != clrsb_optab);
5147 gcc_assert (target);
5149 return convert_to_mode (target_mode, target, 0);
5152 /* Expand a call to __builtin_expect. We just return our argument
5153 as the builtin_expect semantic should've been already executed by
5154 tree branch prediction pass. */
5156 static rtx
5157 expand_builtin_expect (tree exp, rtx target)
5159 tree arg;
5161 if (call_expr_nargs (exp) < 2)
5162 return const0_rtx;
5163 arg = CALL_EXPR_ARG (exp, 0);
5165 target = expand_expr (arg, target, VOIDmode, EXPAND_NORMAL);
5166 /* When guessing was done, the hints should be already stripped away. */
5167 gcc_assert (!flag_guess_branch_prob
5168 || optimize == 0 || seen_error ());
5169 return target;
5172 /* Expand a call to __builtin_assume_aligned. We just return our first
5173 argument as the builtin_assume_aligned semantic should've been already
5174 executed by CCP. */
5176 static rtx
5177 expand_builtin_assume_aligned (tree exp, rtx target)
5179 if (call_expr_nargs (exp) < 2)
5180 return const0_rtx;
5181 target = expand_expr (CALL_EXPR_ARG (exp, 0), target, VOIDmode,
5182 EXPAND_NORMAL);
5183 gcc_assert (!TREE_SIDE_EFFECTS (CALL_EXPR_ARG (exp, 1))
5184 && (call_expr_nargs (exp) < 3
5185 || !TREE_SIDE_EFFECTS (CALL_EXPR_ARG (exp, 2))));
5186 return target;
5189 void
5190 expand_builtin_trap (void)
5192 if (targetm.have_trap ())
5194 rtx_insn *insn = emit_insn (targetm.gen_trap ());
5195 /* For trap insns when not accumulating outgoing args force
5196 REG_ARGS_SIZE note to prevent crossjumping of calls with
5197 different args sizes. */
5198 if (!ACCUMULATE_OUTGOING_ARGS)
5199 add_args_size_note (insn, stack_pointer_delta);
5201 else
5203 tree fn = builtin_decl_implicit (BUILT_IN_ABORT);
5204 tree call_expr = build_call_expr (fn, 0);
5205 expand_call (call_expr, NULL_RTX, false);
5208 emit_barrier ();
5211 /* Expand a call to __builtin_unreachable. We do nothing except emit
5212 a barrier saying that control flow will not pass here.
5214 It is the responsibility of the program being compiled to ensure
5215 that control flow does never reach __builtin_unreachable. */
5216 static void
5217 expand_builtin_unreachable (void)
5219 emit_barrier ();
5222 /* Expand EXP, a call to fabs, fabsf or fabsl.
5223 Return NULL_RTX if a normal call should be emitted rather than expanding
5224 the function inline. If convenient, the result should be placed
5225 in TARGET. SUBTARGET may be used as the target for computing
5226 the operand. */
5228 static rtx
5229 expand_builtin_fabs (tree exp, rtx target, rtx subtarget)
5231 machine_mode mode;
5232 tree arg;
5233 rtx op0;
5235 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
5236 return NULL_RTX;
5238 arg = CALL_EXPR_ARG (exp, 0);
5239 CALL_EXPR_ARG (exp, 0) = arg = builtin_save_expr (arg);
5240 mode = TYPE_MODE (TREE_TYPE (arg));
5241 op0 = expand_expr (arg, subtarget, VOIDmode, EXPAND_NORMAL);
5242 return expand_abs (mode, op0, target, 0, safe_from_p (target, arg, 1));
5245 /* Expand EXP, a call to copysign, copysignf, or copysignl.
5246 Return NULL is a normal call should be emitted rather than expanding the
5247 function inline. If convenient, the result should be placed in TARGET.
5248 SUBTARGET may be used as the target for computing the operand. */
5250 static rtx
5251 expand_builtin_copysign (tree exp, rtx target, rtx subtarget)
5253 rtx op0, op1;
5254 tree arg;
5256 if (!validate_arglist (exp, REAL_TYPE, REAL_TYPE, VOID_TYPE))
5257 return NULL_RTX;
5259 arg = CALL_EXPR_ARG (exp, 0);
5260 op0 = expand_expr (arg, subtarget, VOIDmode, EXPAND_NORMAL);
5262 arg = CALL_EXPR_ARG (exp, 1);
5263 op1 = expand_normal (arg);
5265 return expand_copysign (op0, op1, target);
5268 /* Expand a call to __builtin___clear_cache. */
5270 static rtx
5271 expand_builtin___clear_cache (tree exp)
5273 if (!targetm.code_for_clear_cache)
5275 #ifdef CLEAR_INSN_CACHE
5276 /* There is no "clear_cache" insn, and __clear_cache() in libgcc
5277 does something. Just do the default expansion to a call to
5278 __clear_cache(). */
5279 return NULL_RTX;
5280 #else
5281 /* There is no "clear_cache" insn, and __clear_cache() in libgcc
5282 does nothing. There is no need to call it. Do nothing. */
5283 return const0_rtx;
5284 #endif /* CLEAR_INSN_CACHE */
5287 /* We have a "clear_cache" insn, and it will handle everything. */
5288 tree begin, end;
5289 rtx begin_rtx, end_rtx;
5291 /* We must not expand to a library call. If we did, any
5292 fallback library function in libgcc that might contain a call to
5293 __builtin___clear_cache() would recurse infinitely. */
5294 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
5296 error ("both arguments to %<__builtin___clear_cache%> must be pointers");
5297 return const0_rtx;
5300 if (targetm.have_clear_cache ())
5302 struct expand_operand ops[2];
5304 begin = CALL_EXPR_ARG (exp, 0);
5305 begin_rtx = expand_expr (begin, NULL_RTX, Pmode, EXPAND_NORMAL);
5307 end = CALL_EXPR_ARG (exp, 1);
5308 end_rtx = expand_expr (end, NULL_RTX, Pmode, EXPAND_NORMAL);
5310 create_address_operand (&ops[0], begin_rtx);
5311 create_address_operand (&ops[1], end_rtx);
5312 if (maybe_expand_insn (targetm.code_for_clear_cache, 2, ops))
5313 return const0_rtx;
5315 return const0_rtx;
5318 /* Given a trampoline address, make sure it satisfies TRAMPOLINE_ALIGNMENT. */
5320 static rtx
5321 round_trampoline_addr (rtx tramp)
5323 rtx temp, addend, mask;
5325 /* If we don't need too much alignment, we'll have been guaranteed
5326 proper alignment by get_trampoline_type. */
5327 if (TRAMPOLINE_ALIGNMENT <= STACK_BOUNDARY)
5328 return tramp;
5330 /* Round address up to desired boundary. */
5331 temp = gen_reg_rtx (Pmode);
5332 addend = gen_int_mode (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT - 1, Pmode);
5333 mask = gen_int_mode (-TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT, Pmode);
5335 temp = expand_simple_binop (Pmode, PLUS, tramp, addend,
5336 temp, 0, OPTAB_LIB_WIDEN);
5337 tramp = expand_simple_binop (Pmode, AND, temp, mask,
5338 temp, 0, OPTAB_LIB_WIDEN);
5340 return tramp;
5343 static rtx
5344 expand_builtin_init_trampoline (tree exp, bool onstack)
5346 tree t_tramp, t_func, t_chain;
5347 rtx m_tramp, r_tramp, r_chain, tmp;
5349 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE,
5350 POINTER_TYPE, VOID_TYPE))
5351 return NULL_RTX;
5353 t_tramp = CALL_EXPR_ARG (exp, 0);
5354 t_func = CALL_EXPR_ARG (exp, 1);
5355 t_chain = CALL_EXPR_ARG (exp, 2);
5357 r_tramp = expand_normal (t_tramp);
5358 m_tramp = gen_rtx_MEM (BLKmode, r_tramp);
5359 MEM_NOTRAP_P (m_tramp) = 1;
5361 /* If ONSTACK, the TRAMP argument should be the address of a field
5362 within the local function's FRAME decl. Either way, let's see if
5363 we can fill in the MEM_ATTRs for this memory. */
5364 if (TREE_CODE (t_tramp) == ADDR_EXPR)
5365 set_mem_attributes (m_tramp, TREE_OPERAND (t_tramp, 0), true);
5367 /* Creator of a heap trampoline is responsible for making sure the
5368 address is aligned to at least STACK_BOUNDARY. Normally malloc
5369 will ensure this anyhow. */
5370 tmp = round_trampoline_addr (r_tramp);
5371 if (tmp != r_tramp)
5373 m_tramp = change_address (m_tramp, BLKmode, tmp);
5374 set_mem_align (m_tramp, TRAMPOLINE_ALIGNMENT);
5375 set_mem_size (m_tramp, TRAMPOLINE_SIZE);
5378 /* The FUNC argument should be the address of the nested function.
5379 Extract the actual function decl to pass to the hook. */
5380 gcc_assert (TREE_CODE (t_func) == ADDR_EXPR);
5381 t_func = TREE_OPERAND (t_func, 0);
5382 gcc_assert (TREE_CODE (t_func) == FUNCTION_DECL);
5384 r_chain = expand_normal (t_chain);
5386 /* Generate insns to initialize the trampoline. */
5387 targetm.calls.trampoline_init (m_tramp, t_func, r_chain);
5389 if (onstack)
5391 trampolines_created = 1;
5393 if (targetm.calls.custom_function_descriptors != 0)
5394 warning_at (DECL_SOURCE_LOCATION (t_func), OPT_Wtrampolines,
5395 "trampoline generated for nested function %qD", t_func);
5398 return const0_rtx;
5401 static rtx
5402 expand_builtin_adjust_trampoline (tree exp)
5404 rtx tramp;
5406 if (!validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
5407 return NULL_RTX;
5409 tramp = expand_normal (CALL_EXPR_ARG (exp, 0));
5410 tramp = round_trampoline_addr (tramp);
5411 if (targetm.calls.trampoline_adjust_address)
5412 tramp = targetm.calls.trampoline_adjust_address (tramp);
5414 return tramp;
5417 /* Expand a call to the builtin descriptor initialization routine.
5418 A descriptor is made up of a couple of pointers to the static
5419 chain and the code entry in this order. */
5421 static rtx
5422 expand_builtin_init_descriptor (tree exp)
5424 tree t_descr, t_func, t_chain;
5425 rtx m_descr, r_descr, r_func, r_chain;
5427 if (!validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, POINTER_TYPE,
5428 VOID_TYPE))
5429 return NULL_RTX;
5431 t_descr = CALL_EXPR_ARG (exp, 0);
5432 t_func = CALL_EXPR_ARG (exp, 1);
5433 t_chain = CALL_EXPR_ARG (exp, 2);
5435 r_descr = expand_normal (t_descr);
5436 m_descr = gen_rtx_MEM (BLKmode, r_descr);
5437 MEM_NOTRAP_P (m_descr) = 1;
5439 r_func = expand_normal (t_func);
5440 r_chain = expand_normal (t_chain);
5442 /* Generate insns to initialize the descriptor. */
5443 emit_move_insn (adjust_address_nv (m_descr, ptr_mode, 0), r_chain);
5444 emit_move_insn (adjust_address_nv (m_descr, ptr_mode,
5445 POINTER_SIZE / BITS_PER_UNIT), r_func);
5447 return const0_rtx;
5450 /* Expand a call to the builtin descriptor adjustment routine. */
5452 static rtx
5453 expand_builtin_adjust_descriptor (tree exp)
5455 rtx tramp;
5457 if (!validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
5458 return NULL_RTX;
5460 tramp = expand_normal (CALL_EXPR_ARG (exp, 0));
5462 /* Unalign the descriptor to allow runtime identification. */
5463 tramp = plus_constant (ptr_mode, tramp,
5464 targetm.calls.custom_function_descriptors);
5466 return force_operand (tramp, NULL_RTX);
5469 /* Expand the call EXP to the built-in signbit, signbitf or signbitl
5470 function. The function first checks whether the back end provides
5471 an insn to implement signbit for the respective mode. If not, it
5472 checks whether the floating point format of the value is such that
5473 the sign bit can be extracted. If that is not the case, error out.
5474 EXP is the expression that is a call to the builtin function; if
5475 convenient, the result should be placed in TARGET. */
5476 static rtx
5477 expand_builtin_signbit (tree exp, rtx target)
5479 const struct real_format *fmt;
5480 scalar_float_mode fmode;
5481 scalar_int_mode rmode, imode;
5482 tree arg;
5483 int word, bitpos;
5484 enum insn_code icode;
5485 rtx temp;
5486 location_t loc = EXPR_LOCATION (exp);
5488 if (!validate_arglist (exp, REAL_TYPE, VOID_TYPE))
5489 return NULL_RTX;
5491 arg = CALL_EXPR_ARG (exp, 0);
5492 fmode = SCALAR_FLOAT_TYPE_MODE (TREE_TYPE (arg));
5493 rmode = SCALAR_INT_TYPE_MODE (TREE_TYPE (exp));
5494 fmt = REAL_MODE_FORMAT (fmode);
5496 arg = builtin_save_expr (arg);
5498 /* Expand the argument yielding a RTX expression. */
5499 temp = expand_normal (arg);
5501 /* Check if the back end provides an insn that handles signbit for the
5502 argument's mode. */
5503 icode = optab_handler (signbit_optab, fmode);
5504 if (icode != CODE_FOR_nothing)
5506 rtx_insn *last = get_last_insn ();
5507 target = gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp)));
5508 if (maybe_emit_unop_insn (icode, target, temp, UNKNOWN))
5509 return target;
5510 delete_insns_since (last);
5513 /* For floating point formats without a sign bit, implement signbit
5514 as "ARG < 0.0". */
5515 bitpos = fmt->signbit_ro;
5516 if (bitpos < 0)
5518 /* But we can't do this if the format supports signed zero. */
5519 gcc_assert (!fmt->has_signed_zero || !HONOR_SIGNED_ZEROS (fmode));
5521 arg = fold_build2_loc (loc, LT_EXPR, TREE_TYPE (exp), arg,
5522 build_real (TREE_TYPE (arg), dconst0));
5523 return expand_expr (arg, target, VOIDmode, EXPAND_NORMAL);
5526 if (GET_MODE_SIZE (fmode) <= UNITS_PER_WORD)
5528 imode = int_mode_for_mode (fmode).require ();
5529 temp = gen_lowpart (imode, temp);
5531 else
5533 imode = word_mode;
5534 /* Handle targets with different FP word orders. */
5535 if (FLOAT_WORDS_BIG_ENDIAN)
5536 word = (GET_MODE_BITSIZE (fmode) - bitpos) / BITS_PER_WORD;
5537 else
5538 word = bitpos / BITS_PER_WORD;
5539 temp = operand_subword_force (temp, word, fmode);
5540 bitpos = bitpos % BITS_PER_WORD;
5543 /* Force the intermediate word_mode (or narrower) result into a
5544 register. This avoids attempting to create paradoxical SUBREGs
5545 of floating point modes below. */
5546 temp = force_reg (imode, temp);
5548 /* If the bitpos is within the "result mode" lowpart, the operation
5549 can be implement with a single bitwise AND. Otherwise, we need
5550 a right shift and an AND. */
5552 if (bitpos < GET_MODE_BITSIZE (rmode))
5554 wide_int mask = wi::set_bit_in_zero (bitpos, GET_MODE_PRECISION (rmode));
5556 if (GET_MODE_SIZE (imode) > GET_MODE_SIZE (rmode))
5557 temp = gen_lowpart (rmode, temp);
5558 temp = expand_binop (rmode, and_optab, temp,
5559 immed_wide_int_const (mask, rmode),
5560 NULL_RTX, 1, OPTAB_LIB_WIDEN);
5562 else
5564 /* Perform a logical right shift to place the signbit in the least
5565 significant bit, then truncate the result to the desired mode
5566 and mask just this bit. */
5567 temp = expand_shift (RSHIFT_EXPR, imode, temp, bitpos, NULL_RTX, 1);
5568 temp = gen_lowpart (rmode, temp);
5569 temp = expand_binop (rmode, and_optab, temp, const1_rtx,
5570 NULL_RTX, 1, OPTAB_LIB_WIDEN);
5573 return temp;
5576 /* Expand fork or exec calls. TARGET is the desired target of the
5577 call. EXP is the call. FN is the
5578 identificator of the actual function. IGNORE is nonzero if the
5579 value is to be ignored. */
5581 static rtx
5582 expand_builtin_fork_or_exec (tree fn, tree exp, rtx target, int ignore)
5584 tree id, decl;
5585 tree call;
5587 /* If we are not profiling, just call the function. */
5588 if (!profile_arc_flag)
5589 return NULL_RTX;
5591 /* Otherwise call the wrapper. This should be equivalent for the rest of
5592 compiler, so the code does not diverge, and the wrapper may run the
5593 code necessary for keeping the profiling sane. */
5595 switch (DECL_FUNCTION_CODE (fn))
5597 case BUILT_IN_FORK:
5598 id = get_identifier ("__gcov_fork");
5599 break;
5601 case BUILT_IN_EXECL:
5602 id = get_identifier ("__gcov_execl");
5603 break;
5605 case BUILT_IN_EXECV:
5606 id = get_identifier ("__gcov_execv");
5607 break;
5609 case BUILT_IN_EXECLP:
5610 id = get_identifier ("__gcov_execlp");
5611 break;
5613 case BUILT_IN_EXECLE:
5614 id = get_identifier ("__gcov_execle");
5615 break;
5617 case BUILT_IN_EXECVP:
5618 id = get_identifier ("__gcov_execvp");
5619 break;
5621 case BUILT_IN_EXECVE:
5622 id = get_identifier ("__gcov_execve");
5623 break;
5625 default:
5626 gcc_unreachable ();
5629 decl = build_decl (DECL_SOURCE_LOCATION (fn),
5630 FUNCTION_DECL, id, TREE_TYPE (fn));
5631 DECL_EXTERNAL (decl) = 1;
5632 TREE_PUBLIC (decl) = 1;
5633 DECL_ARTIFICIAL (decl) = 1;
5634 TREE_NOTHROW (decl) = 1;
5635 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5636 DECL_VISIBILITY_SPECIFIED (decl) = 1;
5637 call = rewrite_call_expr (EXPR_LOCATION (exp), exp, 0, decl, 0);
5638 return expand_call (call, target, ignore);
5643 /* Reconstitute a mode for a __sync intrinsic operation. Since the type of
5644 the pointer in these functions is void*, the tree optimizers may remove
5645 casts. The mode computed in expand_builtin isn't reliable either, due
5646 to __sync_bool_compare_and_swap.
5648 FCODE_DIFF should be fcode - base, where base is the FOO_1 code for the
5649 group of builtins. This gives us log2 of the mode size. */
5651 static inline machine_mode
5652 get_builtin_sync_mode (int fcode_diff)
5654 /* The size is not negotiable, so ask not to get BLKmode in return
5655 if the target indicates that a smaller size would be better. */
5656 return int_mode_for_size (BITS_PER_UNIT << fcode_diff, 0).require ();
5659 /* Expand the memory expression LOC and return the appropriate memory operand
5660 for the builtin_sync operations. */
5662 static rtx
5663 get_builtin_sync_mem (tree loc, machine_mode mode)
5665 rtx addr, mem;
5667 addr = expand_expr (loc, NULL_RTX, ptr_mode, EXPAND_SUM);
5668 addr = convert_memory_address (Pmode, addr);
5670 /* Note that we explicitly do not want any alias information for this
5671 memory, so that we kill all other live memories. Otherwise we don't
5672 satisfy the full barrier semantics of the intrinsic. */
5673 mem = validize_mem (gen_rtx_MEM (mode, addr));
5675 /* The alignment needs to be at least according to that of the mode. */
5676 set_mem_align (mem, MAX (GET_MODE_ALIGNMENT (mode),
5677 get_pointer_alignment (loc)));
5678 set_mem_alias_set (mem, ALIAS_SET_MEMORY_BARRIER);
5679 MEM_VOLATILE_P (mem) = 1;
5681 return mem;
5684 /* Make sure an argument is in the right mode.
5685 EXP is the tree argument.
5686 MODE is the mode it should be in. */
5688 static rtx
5689 expand_expr_force_mode (tree exp, machine_mode mode)
5691 rtx val;
5692 machine_mode old_mode;
5694 val = expand_expr (exp, NULL_RTX, mode, EXPAND_NORMAL);
5695 /* If VAL is promoted to a wider mode, convert it back to MODE. Take care
5696 of CONST_INTs, where we know the old_mode only from the call argument. */
5698 old_mode = GET_MODE (val);
5699 if (old_mode == VOIDmode)
5700 old_mode = TYPE_MODE (TREE_TYPE (exp));
5701 val = convert_modes (mode, old_mode, val, 1);
5702 return val;
5706 /* Expand the __sync_xxx_and_fetch and __sync_fetch_and_xxx intrinsics.
5707 EXP is the CALL_EXPR. CODE is the rtx code
5708 that corresponds to the arithmetic or logical operation from the name;
5709 an exception here is that NOT actually means NAND. TARGET is an optional
5710 place for us to store the results; AFTER is true if this is the
5711 fetch_and_xxx form. */
5713 static rtx
5714 expand_builtin_sync_operation (machine_mode mode, tree exp,
5715 enum rtx_code code, bool after,
5716 rtx target)
5718 rtx val, mem;
5719 location_t loc = EXPR_LOCATION (exp);
5721 if (code == NOT && warn_sync_nand)
5723 tree fndecl = get_callee_fndecl (exp);
5724 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
5726 static bool warned_f_a_n, warned_n_a_f;
5728 switch (fcode)
5730 case BUILT_IN_SYNC_FETCH_AND_NAND_1:
5731 case BUILT_IN_SYNC_FETCH_AND_NAND_2:
5732 case BUILT_IN_SYNC_FETCH_AND_NAND_4:
5733 case BUILT_IN_SYNC_FETCH_AND_NAND_8:
5734 case BUILT_IN_SYNC_FETCH_AND_NAND_16:
5735 if (warned_f_a_n)
5736 break;
5738 fndecl = builtin_decl_implicit (BUILT_IN_SYNC_FETCH_AND_NAND_N);
5739 inform (loc, "%qD changed semantics in GCC 4.4", fndecl);
5740 warned_f_a_n = true;
5741 break;
5743 case BUILT_IN_SYNC_NAND_AND_FETCH_1:
5744 case BUILT_IN_SYNC_NAND_AND_FETCH_2:
5745 case BUILT_IN_SYNC_NAND_AND_FETCH_4:
5746 case BUILT_IN_SYNC_NAND_AND_FETCH_8:
5747 case BUILT_IN_SYNC_NAND_AND_FETCH_16:
5748 if (warned_n_a_f)
5749 break;
5751 fndecl = builtin_decl_implicit (BUILT_IN_SYNC_NAND_AND_FETCH_N);
5752 inform (loc, "%qD changed semantics in GCC 4.4", fndecl);
5753 warned_n_a_f = true;
5754 break;
5756 default:
5757 gcc_unreachable ();
5761 /* Expand the operands. */
5762 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5763 val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
5765 return expand_atomic_fetch_op (target, mem, val, code, MEMMODEL_SYNC_SEQ_CST,
5766 after);
5769 /* Expand the __sync_val_compare_and_swap and __sync_bool_compare_and_swap
5770 intrinsics. EXP is the CALL_EXPR. IS_BOOL is
5771 true if this is the boolean form. TARGET is a place for us to store the
5772 results; this is NOT optional if IS_BOOL is true. */
5774 static rtx
5775 expand_builtin_compare_and_swap (machine_mode mode, tree exp,
5776 bool is_bool, rtx target)
5778 rtx old_val, new_val, mem;
5779 rtx *pbool, *poval;
5781 /* Expand the operands. */
5782 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5783 old_val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
5784 new_val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 2), mode);
5786 pbool = poval = NULL;
5787 if (target != const0_rtx)
5789 if (is_bool)
5790 pbool = &target;
5791 else
5792 poval = &target;
5794 if (!expand_atomic_compare_and_swap (pbool, poval, mem, old_val, new_val,
5795 false, MEMMODEL_SYNC_SEQ_CST,
5796 MEMMODEL_SYNC_SEQ_CST))
5797 return NULL_RTX;
5799 return target;
5802 /* Expand the __sync_lock_test_and_set intrinsic. Note that the most
5803 general form is actually an atomic exchange, and some targets only
5804 support a reduced form with the second argument being a constant 1.
5805 EXP is the CALL_EXPR; TARGET is an optional place for us to store
5806 the results. */
5808 static rtx
5809 expand_builtin_sync_lock_test_and_set (machine_mode mode, tree exp,
5810 rtx target)
5812 rtx val, mem;
5814 /* Expand the operands. */
5815 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5816 val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
5818 return expand_sync_lock_test_and_set (target, mem, val);
5821 /* Expand the __sync_lock_release intrinsic. EXP is the CALL_EXPR. */
5823 static void
5824 expand_builtin_sync_lock_release (machine_mode mode, tree exp)
5826 rtx mem;
5828 /* Expand the operands. */
5829 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5831 expand_atomic_store (mem, const0_rtx, MEMMODEL_SYNC_RELEASE, true);
5834 /* Given an integer representing an ``enum memmodel'', verify its
5835 correctness and return the memory model enum. */
5837 static enum memmodel
5838 get_memmodel (tree exp)
5840 rtx op;
5841 unsigned HOST_WIDE_INT val;
5842 source_location loc
5843 = expansion_point_location_if_in_system_header (input_location);
5845 /* If the parameter is not a constant, it's a run time value so we'll just
5846 convert it to MEMMODEL_SEQ_CST to avoid annoying runtime checking. */
5847 if (TREE_CODE (exp) != INTEGER_CST)
5848 return MEMMODEL_SEQ_CST;
5850 op = expand_normal (exp);
5852 val = INTVAL (op);
5853 if (targetm.memmodel_check)
5854 val = targetm.memmodel_check (val);
5855 else if (val & ~MEMMODEL_MASK)
5857 warning_at (loc, OPT_Winvalid_memory_model,
5858 "unknown architecture specifier in memory model to builtin");
5859 return MEMMODEL_SEQ_CST;
5862 /* Should never see a user explicit SYNC memodel model, so >= LAST works. */
5863 if (memmodel_base (val) >= MEMMODEL_LAST)
5865 warning_at (loc, OPT_Winvalid_memory_model,
5866 "invalid memory model argument to builtin");
5867 return MEMMODEL_SEQ_CST;
5870 /* Workaround for Bugzilla 59448. GCC doesn't track consume properly, so
5871 be conservative and promote consume to acquire. */
5872 if (val == MEMMODEL_CONSUME)
5873 val = MEMMODEL_ACQUIRE;
5875 return (enum memmodel) val;
5878 /* Expand the __atomic_exchange intrinsic:
5879 TYPE __atomic_exchange (TYPE *object, TYPE desired, enum memmodel)
5880 EXP is the CALL_EXPR.
5881 TARGET is an optional place for us to store the results. */
5883 static rtx
5884 expand_builtin_atomic_exchange (machine_mode mode, tree exp, rtx target)
5886 rtx val, mem;
5887 enum memmodel model;
5889 model = get_memmodel (CALL_EXPR_ARG (exp, 2));
5891 if (!flag_inline_atomics)
5892 return NULL_RTX;
5894 /* Expand the operands. */
5895 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5896 val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
5898 return expand_atomic_exchange (target, mem, val, model);
5901 /* Expand the __atomic_compare_exchange intrinsic:
5902 bool __atomic_compare_exchange (TYPE *object, TYPE *expect,
5903 TYPE desired, BOOL weak,
5904 enum memmodel success,
5905 enum memmodel failure)
5906 EXP is the CALL_EXPR.
5907 TARGET is an optional place for us to store the results. */
5909 static rtx
5910 expand_builtin_atomic_compare_exchange (machine_mode mode, tree exp,
5911 rtx target)
5913 rtx expect, desired, mem, oldval;
5914 rtx_code_label *label;
5915 enum memmodel success, failure;
5916 tree weak;
5917 bool is_weak;
5918 source_location loc
5919 = expansion_point_location_if_in_system_header (input_location);
5921 success = get_memmodel (CALL_EXPR_ARG (exp, 4));
5922 failure = get_memmodel (CALL_EXPR_ARG (exp, 5));
5924 if (failure > success)
5926 warning_at (loc, OPT_Winvalid_memory_model,
5927 "failure memory model cannot be stronger than success "
5928 "memory model for %<__atomic_compare_exchange%>");
5929 success = MEMMODEL_SEQ_CST;
5932 if (is_mm_release (failure) || is_mm_acq_rel (failure))
5934 warning_at (loc, OPT_Winvalid_memory_model,
5935 "invalid failure memory model for "
5936 "%<__atomic_compare_exchange%>");
5937 failure = MEMMODEL_SEQ_CST;
5938 success = MEMMODEL_SEQ_CST;
5942 if (!flag_inline_atomics)
5943 return NULL_RTX;
5945 /* Expand the operands. */
5946 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
5948 expect = expand_normal (CALL_EXPR_ARG (exp, 1));
5949 expect = convert_memory_address (Pmode, expect);
5950 expect = gen_rtx_MEM (mode, expect);
5951 desired = expand_expr_force_mode (CALL_EXPR_ARG (exp, 2), mode);
5953 weak = CALL_EXPR_ARG (exp, 3);
5954 is_weak = false;
5955 if (tree_fits_shwi_p (weak) && tree_to_shwi (weak) != 0)
5956 is_weak = true;
5958 if (target == const0_rtx)
5959 target = NULL;
5961 /* Lest the rtl backend create a race condition with an imporoper store
5962 to memory, always create a new pseudo for OLDVAL. */
5963 oldval = NULL;
5965 if (!expand_atomic_compare_and_swap (&target, &oldval, mem, expect, desired,
5966 is_weak, success, failure))
5967 return NULL_RTX;
5969 /* Conditionally store back to EXPECT, lest we create a race condition
5970 with an improper store to memory. */
5971 /* ??? With a rearrangement of atomics at the gimple level, we can handle
5972 the normal case where EXPECT is totally private, i.e. a register. At
5973 which point the store can be unconditional. */
5974 label = gen_label_rtx ();
5975 emit_cmp_and_jump_insns (target, const0_rtx, NE, NULL,
5976 GET_MODE (target), 1, label);
5977 emit_move_insn (expect, oldval);
5978 emit_label (label);
5980 return target;
5983 /* Helper function for expand_ifn_atomic_compare_exchange - expand
5984 internal ATOMIC_COMPARE_EXCHANGE call into __atomic_compare_exchange_N
5985 call. The weak parameter must be dropped to match the expected parameter
5986 list and the expected argument changed from value to pointer to memory
5987 slot. */
5989 static void
5990 expand_ifn_atomic_compare_exchange_into_call (gcall *call, machine_mode mode)
5992 unsigned int z;
5993 vec<tree, va_gc> *vec;
5995 vec_alloc (vec, 5);
5996 vec->quick_push (gimple_call_arg (call, 0));
5997 tree expected = gimple_call_arg (call, 1);
5998 rtx x = assign_stack_temp_for_type (mode, GET_MODE_SIZE (mode),
5999 TREE_TYPE (expected));
6000 rtx expd = expand_expr (expected, x, mode, EXPAND_NORMAL);
6001 if (expd != x)
6002 emit_move_insn (x, expd);
6003 tree v = make_tree (TREE_TYPE (expected), x);
6004 vec->quick_push (build1 (ADDR_EXPR,
6005 build_pointer_type (TREE_TYPE (expected)), v));
6006 vec->quick_push (gimple_call_arg (call, 2));
6007 /* Skip the boolean weak parameter. */
6008 for (z = 4; z < 6; z++)
6009 vec->quick_push (gimple_call_arg (call, z));
6010 /* At present we only have BUILT_IN_ATOMIC_COMPARE_EXCHANGE_{1,2,4,8,16}. */
6011 unsigned int bytes_log2 = exact_log2 (GET_MODE_SIZE (mode).to_constant ());
6012 gcc_assert (bytes_log2 < 5);
6013 built_in_function fncode
6014 = (built_in_function) ((int) BUILT_IN_ATOMIC_COMPARE_EXCHANGE_1
6015 + bytes_log2);
6016 tree fndecl = builtin_decl_explicit (fncode);
6017 tree fn = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fndecl)),
6018 fndecl);
6019 tree exp = build_call_vec (boolean_type_node, fn, vec);
6020 tree lhs = gimple_call_lhs (call);
6021 rtx boolret = expand_call (exp, NULL_RTX, lhs == NULL_TREE);
6022 if (lhs)
6024 rtx target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
6025 if (GET_MODE (boolret) != mode)
6026 boolret = convert_modes (mode, GET_MODE (boolret), boolret, 1);
6027 x = force_reg (mode, x);
6028 write_complex_part (target, boolret, true);
6029 write_complex_part (target, x, false);
6033 /* Expand IFN_ATOMIC_COMPARE_EXCHANGE internal function. */
6035 void
6036 expand_ifn_atomic_compare_exchange (gcall *call)
6038 int size = tree_to_shwi (gimple_call_arg (call, 3)) & 255;
6039 gcc_assert (size == 1 || size == 2 || size == 4 || size == 8 || size == 16);
6040 machine_mode mode = int_mode_for_size (BITS_PER_UNIT * size, 0).require ();
6041 rtx expect, desired, mem, oldval, boolret;
6042 enum memmodel success, failure;
6043 tree lhs;
6044 bool is_weak;
6045 source_location loc
6046 = expansion_point_location_if_in_system_header (gimple_location (call));
6048 success = get_memmodel (gimple_call_arg (call, 4));
6049 failure = get_memmodel (gimple_call_arg (call, 5));
6051 if (failure > success)
6053 warning_at (loc, OPT_Winvalid_memory_model,
6054 "failure memory model cannot be stronger than success "
6055 "memory model for %<__atomic_compare_exchange%>");
6056 success = MEMMODEL_SEQ_CST;
6059 if (is_mm_release (failure) || is_mm_acq_rel (failure))
6061 warning_at (loc, OPT_Winvalid_memory_model,
6062 "invalid failure memory model for "
6063 "%<__atomic_compare_exchange%>");
6064 failure = MEMMODEL_SEQ_CST;
6065 success = MEMMODEL_SEQ_CST;
6068 if (!flag_inline_atomics)
6070 expand_ifn_atomic_compare_exchange_into_call (call, mode);
6071 return;
6074 /* Expand the operands. */
6075 mem = get_builtin_sync_mem (gimple_call_arg (call, 0), mode);
6077 expect = expand_expr_force_mode (gimple_call_arg (call, 1), mode);
6078 desired = expand_expr_force_mode (gimple_call_arg (call, 2), mode);
6080 is_weak = (tree_to_shwi (gimple_call_arg (call, 3)) & 256) != 0;
6082 boolret = NULL;
6083 oldval = NULL;
6085 if (!expand_atomic_compare_and_swap (&boolret, &oldval, mem, expect, desired,
6086 is_weak, success, failure))
6088 expand_ifn_atomic_compare_exchange_into_call (call, mode);
6089 return;
6092 lhs = gimple_call_lhs (call);
6093 if (lhs)
6095 rtx target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
6096 if (GET_MODE (boolret) != mode)
6097 boolret = convert_modes (mode, GET_MODE (boolret), boolret, 1);
6098 write_complex_part (target, boolret, true);
6099 write_complex_part (target, oldval, false);
6103 /* Expand the __atomic_load intrinsic:
6104 TYPE __atomic_load (TYPE *object, enum memmodel)
6105 EXP is the CALL_EXPR.
6106 TARGET is an optional place for us to store the results. */
6108 static rtx
6109 expand_builtin_atomic_load (machine_mode mode, tree exp, rtx target)
6111 rtx mem;
6112 enum memmodel model;
6114 model = get_memmodel (CALL_EXPR_ARG (exp, 1));
6115 if (is_mm_release (model) || is_mm_acq_rel (model))
6117 source_location loc
6118 = expansion_point_location_if_in_system_header (input_location);
6119 warning_at (loc, OPT_Winvalid_memory_model,
6120 "invalid memory model for %<__atomic_load%>");
6121 model = MEMMODEL_SEQ_CST;
6124 if (!flag_inline_atomics)
6125 return NULL_RTX;
6127 /* Expand the operand. */
6128 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
6130 return expand_atomic_load (target, mem, model);
6134 /* Expand the __atomic_store intrinsic:
6135 void __atomic_store (TYPE *object, TYPE desired, enum memmodel)
6136 EXP is the CALL_EXPR.
6137 TARGET is an optional place for us to store the results. */
6139 static rtx
6140 expand_builtin_atomic_store (machine_mode mode, tree exp)
6142 rtx mem, val;
6143 enum memmodel model;
6145 model = get_memmodel (CALL_EXPR_ARG (exp, 2));
6146 if (!(is_mm_relaxed (model) || is_mm_seq_cst (model)
6147 || is_mm_release (model)))
6149 source_location loc
6150 = expansion_point_location_if_in_system_header (input_location);
6151 warning_at (loc, OPT_Winvalid_memory_model,
6152 "invalid memory model for %<__atomic_store%>");
6153 model = MEMMODEL_SEQ_CST;
6156 if (!flag_inline_atomics)
6157 return NULL_RTX;
6159 /* Expand the operands. */
6160 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
6161 val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
6163 return expand_atomic_store (mem, val, model, false);
6166 /* Expand the __atomic_fetch_XXX intrinsic:
6167 TYPE __atomic_fetch_XXX (TYPE *object, TYPE val, enum memmodel)
6168 EXP is the CALL_EXPR.
6169 TARGET is an optional place for us to store the results.
6170 CODE is the operation, PLUS, MINUS, ADD, XOR, or IOR.
6171 FETCH_AFTER is true if returning the result of the operation.
6172 FETCH_AFTER is false if returning the value before the operation.
6173 IGNORE is true if the result is not used.
6174 EXT_CALL is the correct builtin for an external call if this cannot be
6175 resolved to an instruction sequence. */
6177 static rtx
6178 expand_builtin_atomic_fetch_op (machine_mode mode, tree exp, rtx target,
6179 enum rtx_code code, bool fetch_after,
6180 bool ignore, enum built_in_function ext_call)
6182 rtx val, mem, ret;
6183 enum memmodel model;
6184 tree fndecl;
6185 tree addr;
6187 model = get_memmodel (CALL_EXPR_ARG (exp, 2));
6189 /* Expand the operands. */
6190 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
6191 val = expand_expr_force_mode (CALL_EXPR_ARG (exp, 1), mode);
6193 /* Only try generating instructions if inlining is turned on. */
6194 if (flag_inline_atomics)
6196 ret = expand_atomic_fetch_op (target, mem, val, code, model, fetch_after);
6197 if (ret)
6198 return ret;
6201 /* Return if a different routine isn't needed for the library call. */
6202 if (ext_call == BUILT_IN_NONE)
6203 return NULL_RTX;
6205 /* Change the call to the specified function. */
6206 fndecl = get_callee_fndecl (exp);
6207 addr = CALL_EXPR_FN (exp);
6208 STRIP_NOPS (addr);
6210 gcc_assert (TREE_OPERAND (addr, 0) == fndecl);
6211 TREE_OPERAND (addr, 0) = builtin_decl_explicit (ext_call);
6213 /* If we will emit code after the call, the call can not be a tail call.
6214 If it is emitted as a tail call, a barrier is emitted after it, and
6215 then all trailing code is removed. */
6216 if (!ignore)
6217 CALL_EXPR_TAILCALL (exp) = 0;
6219 /* Expand the call here so we can emit trailing code. */
6220 ret = expand_call (exp, target, ignore);
6222 /* Replace the original function just in case it matters. */
6223 TREE_OPERAND (addr, 0) = fndecl;
6225 /* Then issue the arithmetic correction to return the right result. */
6226 if (!ignore)
6228 if (code == NOT)
6230 ret = expand_simple_binop (mode, AND, ret, val, NULL_RTX, true,
6231 OPTAB_LIB_WIDEN);
6232 ret = expand_simple_unop (mode, NOT, ret, target, true);
6234 else
6235 ret = expand_simple_binop (mode, code, ret, val, target, true,
6236 OPTAB_LIB_WIDEN);
6238 return ret;
6241 /* Expand IFN_ATOMIC_BIT_TEST_AND_* internal function. */
6243 void
6244 expand_ifn_atomic_bit_test_and (gcall *call)
6246 tree ptr = gimple_call_arg (call, 0);
6247 tree bit = gimple_call_arg (call, 1);
6248 tree flag = gimple_call_arg (call, 2);
6249 tree lhs = gimple_call_lhs (call);
6250 enum memmodel model = MEMMODEL_SYNC_SEQ_CST;
6251 machine_mode mode = TYPE_MODE (TREE_TYPE (flag));
6252 enum rtx_code code;
6253 optab optab;
6254 struct expand_operand ops[5];
6256 gcc_assert (flag_inline_atomics);
6258 if (gimple_call_num_args (call) == 4)
6259 model = get_memmodel (gimple_call_arg (call, 3));
6261 rtx mem = get_builtin_sync_mem (ptr, mode);
6262 rtx val = expand_expr_force_mode (bit, mode);
6264 switch (gimple_call_internal_fn (call))
6266 case IFN_ATOMIC_BIT_TEST_AND_SET:
6267 code = IOR;
6268 optab = atomic_bit_test_and_set_optab;
6269 break;
6270 case IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT:
6271 code = XOR;
6272 optab = atomic_bit_test_and_complement_optab;
6273 break;
6274 case IFN_ATOMIC_BIT_TEST_AND_RESET:
6275 code = AND;
6276 optab = atomic_bit_test_and_reset_optab;
6277 break;
6278 default:
6279 gcc_unreachable ();
6282 if (lhs == NULL_TREE)
6284 val = expand_simple_binop (mode, ASHIFT, const1_rtx,
6285 val, NULL_RTX, true, OPTAB_DIRECT);
6286 if (code == AND)
6287 val = expand_simple_unop (mode, NOT, val, NULL_RTX, true);
6288 expand_atomic_fetch_op (const0_rtx, mem, val, code, model, false);
6289 return;
6292 rtx target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
6293 enum insn_code icode = direct_optab_handler (optab, mode);
6294 gcc_assert (icode != CODE_FOR_nothing);
6295 create_output_operand (&ops[0], target, mode);
6296 create_fixed_operand (&ops[1], mem);
6297 create_convert_operand_to (&ops[2], val, mode, true);
6298 create_integer_operand (&ops[3], model);
6299 create_integer_operand (&ops[4], integer_onep (flag));
6300 if (maybe_expand_insn (icode, 5, ops))
6301 return;
6303 rtx bitval = val;
6304 val = expand_simple_binop (mode, ASHIFT, const1_rtx,
6305 val, NULL_RTX, true, OPTAB_DIRECT);
6306 rtx maskval = val;
6307 if (code == AND)
6308 val = expand_simple_unop (mode, NOT, val, NULL_RTX, true);
6309 rtx result = expand_atomic_fetch_op (gen_reg_rtx (mode), mem, val,
6310 code, model, false);
6311 if (integer_onep (flag))
6313 result = expand_simple_binop (mode, ASHIFTRT, result, bitval,
6314 NULL_RTX, true, OPTAB_DIRECT);
6315 result = expand_simple_binop (mode, AND, result, const1_rtx, target,
6316 true, OPTAB_DIRECT);
6318 else
6319 result = expand_simple_binop (mode, AND, result, maskval, target, true,
6320 OPTAB_DIRECT);
6321 if (result != target)
6322 emit_move_insn (target, result);
6325 /* Expand an atomic clear operation.
6326 void _atomic_clear (BOOL *obj, enum memmodel)
6327 EXP is the call expression. */
6329 static rtx
6330 expand_builtin_atomic_clear (tree exp)
6332 machine_mode mode;
6333 rtx mem, ret;
6334 enum memmodel model;
6336 mode = int_mode_for_size (BOOL_TYPE_SIZE, 0).require ();
6337 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
6338 model = get_memmodel (CALL_EXPR_ARG (exp, 1));
6340 if (is_mm_consume (model) || is_mm_acquire (model) || is_mm_acq_rel (model))
6342 source_location loc
6343 = expansion_point_location_if_in_system_header (input_location);
6344 warning_at (loc, OPT_Winvalid_memory_model,
6345 "invalid memory model for %<__atomic_store%>");
6346 model = MEMMODEL_SEQ_CST;
6349 /* Try issuing an __atomic_store, and allow fallback to __sync_lock_release.
6350 Failing that, a store is issued by __atomic_store. The only way this can
6351 fail is if the bool type is larger than a word size. Unlikely, but
6352 handle it anyway for completeness. Assume a single threaded model since
6353 there is no atomic support in this case, and no barriers are required. */
6354 ret = expand_atomic_store (mem, const0_rtx, model, true);
6355 if (!ret)
6356 emit_move_insn (mem, const0_rtx);
6357 return const0_rtx;
6360 /* Expand an atomic test_and_set operation.
6361 bool _atomic_test_and_set (BOOL *obj, enum memmodel)
6362 EXP is the call expression. */
6364 static rtx
6365 expand_builtin_atomic_test_and_set (tree exp, rtx target)
6367 rtx mem;
6368 enum memmodel model;
6369 machine_mode mode;
6371 mode = int_mode_for_size (BOOL_TYPE_SIZE, 0).require ();
6372 mem = get_builtin_sync_mem (CALL_EXPR_ARG (exp, 0), mode);
6373 model = get_memmodel (CALL_EXPR_ARG (exp, 1));
6375 return expand_atomic_test_and_set (target, mem, model);
6379 /* Return true if (optional) argument ARG1 of size ARG0 is always lock free on
6380 this architecture. If ARG1 is NULL, use typical alignment for size ARG0. */
6382 static tree
6383 fold_builtin_atomic_always_lock_free (tree arg0, tree arg1)
6385 int size;
6386 machine_mode mode;
6387 unsigned int mode_align, type_align;
6389 if (TREE_CODE (arg0) != INTEGER_CST)
6390 return NULL_TREE;
6392 /* We need a corresponding integer mode for the access to be lock-free. */
6393 size = INTVAL (expand_normal (arg0)) * BITS_PER_UNIT;
6394 if (!int_mode_for_size (size, 0).exists (&mode))
6395 return boolean_false_node;
6397 mode_align = GET_MODE_ALIGNMENT (mode);
6399 if (TREE_CODE (arg1) == INTEGER_CST)
6401 unsigned HOST_WIDE_INT val = UINTVAL (expand_normal (arg1));
6403 /* Either this argument is null, or it's a fake pointer encoding
6404 the alignment of the object. */
6405 val = least_bit_hwi (val);
6406 val *= BITS_PER_UNIT;
6408 if (val == 0 || mode_align < val)
6409 type_align = mode_align;
6410 else
6411 type_align = val;
6413 else
6415 tree ttype = TREE_TYPE (arg1);
6417 /* This function is usually invoked and folded immediately by the front
6418 end before anything else has a chance to look at it. The pointer
6419 parameter at this point is usually cast to a void *, so check for that
6420 and look past the cast. */
6421 if (CONVERT_EXPR_P (arg1)
6422 && POINTER_TYPE_P (ttype)
6423 && VOID_TYPE_P (TREE_TYPE (ttype))
6424 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg1, 0))))
6425 arg1 = TREE_OPERAND (arg1, 0);
6427 ttype = TREE_TYPE (arg1);
6428 gcc_assert (POINTER_TYPE_P (ttype));
6430 /* Get the underlying type of the object. */
6431 ttype = TREE_TYPE (ttype);
6432 type_align = TYPE_ALIGN (ttype);
6435 /* If the object has smaller alignment, the lock free routines cannot
6436 be used. */
6437 if (type_align < mode_align)
6438 return boolean_false_node;
6440 /* Check if a compare_and_swap pattern exists for the mode which represents
6441 the required size. The pattern is not allowed to fail, so the existence
6442 of the pattern indicates support is present. Also require that an
6443 atomic load exists for the required size. */
6444 if (can_compare_and_swap_p (mode, true) && can_atomic_load_p (mode))
6445 return boolean_true_node;
6446 else
6447 return boolean_false_node;
6450 /* Return true if the parameters to call EXP represent an object which will
6451 always generate lock free instructions. The first argument represents the
6452 size of the object, and the second parameter is a pointer to the object
6453 itself. If NULL is passed for the object, then the result is based on
6454 typical alignment for an object of the specified size. Otherwise return
6455 false. */
6457 static rtx
6458 expand_builtin_atomic_always_lock_free (tree exp)
6460 tree size;
6461 tree arg0 = CALL_EXPR_ARG (exp, 0);
6462 tree arg1 = CALL_EXPR_ARG (exp, 1);
6464 if (TREE_CODE (arg0) != INTEGER_CST)
6466 error ("non-constant argument 1 to __atomic_always_lock_free");
6467 return const0_rtx;
6470 size = fold_builtin_atomic_always_lock_free (arg0, arg1);
6471 if (size == boolean_true_node)
6472 return const1_rtx;
6473 return const0_rtx;
6476 /* Return a one or zero if it can be determined that object ARG1 of size ARG
6477 is lock free on this architecture. */
6479 static tree
6480 fold_builtin_atomic_is_lock_free (tree arg0, tree arg1)
6482 if (!flag_inline_atomics)
6483 return NULL_TREE;
6485 /* If it isn't always lock free, don't generate a result. */
6486 if (fold_builtin_atomic_always_lock_free (arg0, arg1) == boolean_true_node)
6487 return boolean_true_node;
6489 return NULL_TREE;
6492 /* Return true if the parameters to call EXP represent an object which will
6493 always generate lock free instructions. The first argument represents the
6494 size of the object, and the second parameter is a pointer to the object
6495 itself. If NULL is passed for the object, then the result is based on
6496 typical alignment for an object of the specified size. Otherwise return
6497 NULL*/
6499 static rtx
6500 expand_builtin_atomic_is_lock_free (tree exp)
6502 tree size;
6503 tree arg0 = CALL_EXPR_ARG (exp, 0);
6504 tree arg1 = CALL_EXPR_ARG (exp, 1);
6506 if (!INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
6508 error ("non-integer argument 1 to __atomic_is_lock_free");
6509 return NULL_RTX;
6512 if (!flag_inline_atomics)
6513 return NULL_RTX;
6515 /* If the value is known at compile time, return the RTX for it. */
6516 size = fold_builtin_atomic_is_lock_free (arg0, arg1);
6517 if (size == boolean_true_node)
6518 return const1_rtx;
6520 return NULL_RTX;
6523 /* Expand the __atomic_thread_fence intrinsic:
6524 void __atomic_thread_fence (enum memmodel)
6525 EXP is the CALL_EXPR. */
6527 static void
6528 expand_builtin_atomic_thread_fence (tree exp)
6530 enum memmodel model = get_memmodel (CALL_EXPR_ARG (exp, 0));
6531 expand_mem_thread_fence (model);
6534 /* Expand the __atomic_signal_fence intrinsic:
6535 void __atomic_signal_fence (enum memmodel)
6536 EXP is the CALL_EXPR. */
6538 static void
6539 expand_builtin_atomic_signal_fence (tree exp)
6541 enum memmodel model = get_memmodel (CALL_EXPR_ARG (exp, 0));
6542 expand_mem_signal_fence (model);
6545 /* Expand the __sync_synchronize intrinsic. */
6547 static void
6548 expand_builtin_sync_synchronize (void)
6550 expand_mem_thread_fence (MEMMODEL_SYNC_SEQ_CST);
6553 static rtx
6554 expand_builtin_thread_pointer (tree exp, rtx target)
6556 enum insn_code icode;
6557 if (!validate_arglist (exp, VOID_TYPE))
6558 return const0_rtx;
6559 icode = direct_optab_handler (get_thread_pointer_optab, Pmode);
6560 if (icode != CODE_FOR_nothing)
6562 struct expand_operand op;
6563 /* If the target is not sutitable then create a new target. */
6564 if (target == NULL_RTX
6565 || !REG_P (target)
6566 || GET_MODE (target) != Pmode)
6567 target = gen_reg_rtx (Pmode);
6568 create_output_operand (&op, target, Pmode);
6569 expand_insn (icode, 1, &op);
6570 return target;
6572 error ("__builtin_thread_pointer is not supported on this target");
6573 return const0_rtx;
6576 static void
6577 expand_builtin_set_thread_pointer (tree exp)
6579 enum insn_code icode;
6580 if (!validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
6581 return;
6582 icode = direct_optab_handler (set_thread_pointer_optab, Pmode);
6583 if (icode != CODE_FOR_nothing)
6585 struct expand_operand op;
6586 rtx val = expand_expr (CALL_EXPR_ARG (exp, 0), NULL_RTX,
6587 Pmode, EXPAND_NORMAL);
6588 create_input_operand (&op, val, Pmode);
6589 expand_insn (icode, 1, &op);
6590 return;
6592 error ("__builtin_set_thread_pointer is not supported on this target");
6596 /* Emit code to restore the current value of stack. */
6598 static void
6599 expand_stack_restore (tree var)
6601 rtx_insn *prev;
6602 rtx sa = expand_normal (var);
6604 sa = convert_memory_address (Pmode, sa);
6606 prev = get_last_insn ();
6607 emit_stack_restore (SAVE_BLOCK, sa);
6609 record_new_stack_level ();
6611 fixup_args_size_notes (prev, get_last_insn (), 0);
6614 /* Emit code to save the current value of stack. */
6616 static rtx
6617 expand_stack_save (void)
6619 rtx ret = NULL_RTX;
6621 emit_stack_save (SAVE_BLOCK, &ret);
6622 return ret;
6626 /* Expand an expression EXP that calls a built-in function,
6627 with result going to TARGET if that's convenient
6628 (and in mode MODE if that's convenient).
6629 SUBTARGET may be used as the target for computing one of EXP's operands.
6630 IGNORE is nonzero if the value is to be ignored. */
6633 expand_builtin (tree exp, rtx target, rtx subtarget, machine_mode mode,
6634 int ignore)
6636 tree fndecl = get_callee_fndecl (exp);
6637 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
6638 machine_mode target_mode = TYPE_MODE (TREE_TYPE (exp));
6639 int flags;
6641 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
6642 return targetm.expand_builtin (exp, target, subtarget, mode, ignore);
6644 /* When ASan is enabled, we don't want to expand some memory/string
6645 builtins and rely on libsanitizer's hooks. This allows us to avoid
6646 redundant checks and be sure, that possible overflow will be detected
6647 by ASan. */
6649 if ((flag_sanitize & SANITIZE_ADDRESS) && asan_intercepted_p (fcode))
6650 return expand_call (exp, target, ignore);
6652 /* When not optimizing, generate calls to library functions for a certain
6653 set of builtins. */
6654 if (!optimize
6655 && !called_as_built_in (fndecl)
6656 && fcode != BUILT_IN_FORK
6657 && fcode != BUILT_IN_EXECL
6658 && fcode != BUILT_IN_EXECV
6659 && fcode != BUILT_IN_EXECLP
6660 && fcode != BUILT_IN_EXECLE
6661 && fcode != BUILT_IN_EXECVP
6662 && fcode != BUILT_IN_EXECVE
6663 && !ALLOCA_FUNCTION_CODE_P (fcode)
6664 && fcode != BUILT_IN_FREE
6665 && fcode != BUILT_IN_CHKP_SET_PTR_BOUNDS
6666 && fcode != BUILT_IN_CHKP_INIT_PTR_BOUNDS
6667 && fcode != BUILT_IN_CHKP_NULL_PTR_BOUNDS
6668 && fcode != BUILT_IN_CHKP_COPY_PTR_BOUNDS
6669 && fcode != BUILT_IN_CHKP_NARROW_PTR_BOUNDS
6670 && fcode != BUILT_IN_CHKP_STORE_PTR_BOUNDS
6671 && fcode != BUILT_IN_CHKP_CHECK_PTR_LBOUNDS
6672 && fcode != BUILT_IN_CHKP_CHECK_PTR_UBOUNDS
6673 && fcode != BUILT_IN_CHKP_CHECK_PTR_BOUNDS
6674 && fcode != BUILT_IN_CHKP_GET_PTR_LBOUND
6675 && fcode != BUILT_IN_CHKP_GET_PTR_UBOUND
6676 && fcode != BUILT_IN_CHKP_BNDRET)
6677 return expand_call (exp, target, ignore);
6679 /* The built-in function expanders test for target == const0_rtx
6680 to determine whether the function's result will be ignored. */
6681 if (ignore)
6682 target = const0_rtx;
6684 /* If the result of a pure or const built-in function is ignored, and
6685 none of its arguments are volatile, we can avoid expanding the
6686 built-in call and just evaluate the arguments for side-effects. */
6687 if (target == const0_rtx
6688 && ((flags = flags_from_decl_or_type (fndecl)) & (ECF_CONST | ECF_PURE))
6689 && !(flags & ECF_LOOPING_CONST_OR_PURE))
6691 bool volatilep = false;
6692 tree arg;
6693 call_expr_arg_iterator iter;
6695 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
6696 if (TREE_THIS_VOLATILE (arg))
6698 volatilep = true;
6699 break;
6702 if (! volatilep)
6704 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
6705 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
6706 return const0_rtx;
6710 /* expand_builtin_with_bounds is supposed to be used for
6711 instrumented builtin calls. */
6712 gcc_assert (!CALL_WITH_BOUNDS_P (exp));
6714 switch (fcode)
6716 CASE_FLT_FN (BUILT_IN_FABS):
6717 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FABS):
6718 case BUILT_IN_FABSD32:
6719 case BUILT_IN_FABSD64:
6720 case BUILT_IN_FABSD128:
6721 target = expand_builtin_fabs (exp, target, subtarget);
6722 if (target)
6723 return target;
6724 break;
6726 CASE_FLT_FN (BUILT_IN_COPYSIGN):
6727 CASE_FLT_FN_FLOATN_NX (BUILT_IN_COPYSIGN):
6728 target = expand_builtin_copysign (exp, target, subtarget);
6729 if (target)
6730 return target;
6731 break;
6733 /* Just do a normal library call if we were unable to fold
6734 the values. */
6735 CASE_FLT_FN (BUILT_IN_CABS):
6736 break;
6738 CASE_FLT_FN (BUILT_IN_FMA):
6739 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMA):
6740 target = expand_builtin_mathfn_ternary (exp, target, subtarget);
6741 if (target)
6742 return target;
6743 break;
6745 CASE_FLT_FN (BUILT_IN_ILOGB):
6746 if (! flag_unsafe_math_optimizations)
6747 break;
6748 gcc_fallthrough ();
6749 CASE_FLT_FN (BUILT_IN_ISINF):
6750 CASE_FLT_FN (BUILT_IN_FINITE):
6751 case BUILT_IN_ISFINITE:
6752 case BUILT_IN_ISNORMAL:
6753 target = expand_builtin_interclass_mathfn (exp, target);
6754 if (target)
6755 return target;
6756 break;
6758 CASE_FLT_FN (BUILT_IN_ICEIL):
6759 CASE_FLT_FN (BUILT_IN_LCEIL):
6760 CASE_FLT_FN (BUILT_IN_LLCEIL):
6761 CASE_FLT_FN (BUILT_IN_LFLOOR):
6762 CASE_FLT_FN (BUILT_IN_IFLOOR):
6763 CASE_FLT_FN (BUILT_IN_LLFLOOR):
6764 target = expand_builtin_int_roundingfn (exp, target);
6765 if (target)
6766 return target;
6767 break;
6769 CASE_FLT_FN (BUILT_IN_IRINT):
6770 CASE_FLT_FN (BUILT_IN_LRINT):
6771 CASE_FLT_FN (BUILT_IN_LLRINT):
6772 CASE_FLT_FN (BUILT_IN_IROUND):
6773 CASE_FLT_FN (BUILT_IN_LROUND):
6774 CASE_FLT_FN (BUILT_IN_LLROUND):
6775 target = expand_builtin_int_roundingfn_2 (exp, target);
6776 if (target)
6777 return target;
6778 break;
6780 CASE_FLT_FN (BUILT_IN_POWI):
6781 target = expand_builtin_powi (exp, target);
6782 if (target)
6783 return target;
6784 break;
6786 CASE_FLT_FN (BUILT_IN_CEXPI):
6787 target = expand_builtin_cexpi (exp, target);
6788 gcc_assert (target);
6789 return target;
6791 CASE_FLT_FN (BUILT_IN_SIN):
6792 CASE_FLT_FN (BUILT_IN_COS):
6793 if (! flag_unsafe_math_optimizations)
6794 break;
6795 target = expand_builtin_mathfn_3 (exp, target, subtarget);
6796 if (target)
6797 return target;
6798 break;
6800 CASE_FLT_FN (BUILT_IN_SINCOS):
6801 if (! flag_unsafe_math_optimizations)
6802 break;
6803 target = expand_builtin_sincos (exp);
6804 if (target)
6805 return target;
6806 break;
6808 case BUILT_IN_APPLY_ARGS:
6809 return expand_builtin_apply_args ();
6811 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
6812 FUNCTION with a copy of the parameters described by
6813 ARGUMENTS, and ARGSIZE. It returns a block of memory
6814 allocated on the stack into which is stored all the registers
6815 that might possibly be used for returning the result of a
6816 function. ARGUMENTS is the value returned by
6817 __builtin_apply_args. ARGSIZE is the number of bytes of
6818 arguments that must be copied. ??? How should this value be
6819 computed? We'll also need a safe worst case value for varargs
6820 functions. */
6821 case BUILT_IN_APPLY:
6822 if (!validate_arglist (exp, POINTER_TYPE,
6823 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE)
6824 && !validate_arglist (exp, REFERENCE_TYPE,
6825 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
6826 return const0_rtx;
6827 else
6829 rtx ops[3];
6831 ops[0] = expand_normal (CALL_EXPR_ARG (exp, 0));
6832 ops[1] = expand_normal (CALL_EXPR_ARG (exp, 1));
6833 ops[2] = expand_normal (CALL_EXPR_ARG (exp, 2));
6835 return expand_builtin_apply (ops[0], ops[1], ops[2]);
6838 /* __builtin_return (RESULT) causes the function to return the
6839 value described by RESULT. RESULT is address of the block of
6840 memory returned by __builtin_apply. */
6841 case BUILT_IN_RETURN:
6842 if (validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
6843 expand_builtin_return (expand_normal (CALL_EXPR_ARG (exp, 0)));
6844 return const0_rtx;
6846 case BUILT_IN_SAVEREGS:
6847 return expand_builtin_saveregs ();
6849 case BUILT_IN_VA_ARG_PACK:
6850 /* All valid uses of __builtin_va_arg_pack () are removed during
6851 inlining. */
6852 error ("%Kinvalid use of %<__builtin_va_arg_pack ()%>", exp);
6853 return const0_rtx;
6855 case BUILT_IN_VA_ARG_PACK_LEN:
6856 /* All valid uses of __builtin_va_arg_pack_len () are removed during
6857 inlining. */
6858 error ("%Kinvalid use of %<__builtin_va_arg_pack_len ()%>", exp);
6859 return const0_rtx;
6861 /* Return the address of the first anonymous stack arg. */
6862 case BUILT_IN_NEXT_ARG:
6863 if (fold_builtin_next_arg (exp, false))
6864 return const0_rtx;
6865 return expand_builtin_next_arg ();
6867 case BUILT_IN_CLEAR_CACHE:
6868 target = expand_builtin___clear_cache (exp);
6869 if (target)
6870 return target;
6871 break;
6873 case BUILT_IN_CLASSIFY_TYPE:
6874 return expand_builtin_classify_type (exp);
6876 case BUILT_IN_CONSTANT_P:
6877 return const0_rtx;
6879 case BUILT_IN_FRAME_ADDRESS:
6880 case BUILT_IN_RETURN_ADDRESS:
6881 return expand_builtin_frame_address (fndecl, exp);
6883 /* Returns the address of the area where the structure is returned.
6884 0 otherwise. */
6885 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
6886 if (call_expr_nargs (exp) != 0
6887 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl)))
6888 || !MEM_P (DECL_RTL (DECL_RESULT (current_function_decl))))
6889 return const0_rtx;
6890 else
6891 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl)), 0);
6893 CASE_BUILT_IN_ALLOCA:
6894 target = expand_builtin_alloca (exp);
6895 if (target)
6896 return target;
6897 break;
6899 case BUILT_IN_ASAN_ALLOCAS_UNPOISON:
6900 return expand_asan_emit_allocas_unpoison (exp);
6902 case BUILT_IN_STACK_SAVE:
6903 return expand_stack_save ();
6905 case BUILT_IN_STACK_RESTORE:
6906 expand_stack_restore (CALL_EXPR_ARG (exp, 0));
6907 return const0_rtx;
6909 case BUILT_IN_BSWAP16:
6910 case BUILT_IN_BSWAP32:
6911 case BUILT_IN_BSWAP64:
6912 target = expand_builtin_bswap (target_mode, exp, target, subtarget);
6913 if (target)
6914 return target;
6915 break;
6917 CASE_INT_FN (BUILT_IN_FFS):
6918 target = expand_builtin_unop (target_mode, exp, target,
6919 subtarget, ffs_optab);
6920 if (target)
6921 return target;
6922 break;
6924 CASE_INT_FN (BUILT_IN_CLZ):
6925 target = expand_builtin_unop (target_mode, exp, target,
6926 subtarget, clz_optab);
6927 if (target)
6928 return target;
6929 break;
6931 CASE_INT_FN (BUILT_IN_CTZ):
6932 target = expand_builtin_unop (target_mode, exp, target,
6933 subtarget, ctz_optab);
6934 if (target)
6935 return target;
6936 break;
6938 CASE_INT_FN (BUILT_IN_CLRSB):
6939 target = expand_builtin_unop (target_mode, exp, target,
6940 subtarget, clrsb_optab);
6941 if (target)
6942 return target;
6943 break;
6945 CASE_INT_FN (BUILT_IN_POPCOUNT):
6946 target = expand_builtin_unop (target_mode, exp, target,
6947 subtarget, popcount_optab);
6948 if (target)
6949 return target;
6950 break;
6952 CASE_INT_FN (BUILT_IN_PARITY):
6953 target = expand_builtin_unop (target_mode, exp, target,
6954 subtarget, parity_optab);
6955 if (target)
6956 return target;
6957 break;
6959 case BUILT_IN_STRLEN:
6960 target = expand_builtin_strlen (exp, target, target_mode);
6961 if (target)
6962 return target;
6963 break;
6965 case BUILT_IN_STRCAT:
6966 target = expand_builtin_strcat (exp, target);
6967 if (target)
6968 return target;
6969 break;
6971 case BUILT_IN_STRCPY:
6972 target = expand_builtin_strcpy (exp, target);
6973 if (target)
6974 return target;
6975 break;
6977 case BUILT_IN_STRNCAT:
6978 target = expand_builtin_strncat (exp, target);
6979 if (target)
6980 return target;
6981 break;
6983 case BUILT_IN_STRNCPY:
6984 target = expand_builtin_strncpy (exp, target);
6985 if (target)
6986 return target;
6987 break;
6989 case BUILT_IN_STPCPY:
6990 target = expand_builtin_stpcpy (exp, target, mode);
6991 if (target)
6992 return target;
6993 break;
6995 case BUILT_IN_STPNCPY:
6996 target = expand_builtin_stpncpy (exp, target);
6997 if (target)
6998 return target;
6999 break;
7001 case BUILT_IN_MEMCHR:
7002 target = expand_builtin_memchr (exp, target);
7003 if (target)
7004 return target;
7005 break;
7007 case BUILT_IN_MEMCPY:
7008 target = expand_builtin_memcpy (exp, target);
7009 if (target)
7010 return target;
7011 break;
7013 case BUILT_IN_MEMMOVE:
7014 target = expand_builtin_memmove (exp, target);
7015 if (target)
7016 return target;
7017 break;
7019 case BUILT_IN_MEMPCPY:
7020 target = expand_builtin_mempcpy (exp, target);
7021 if (target)
7022 return target;
7023 break;
7025 case BUILT_IN_MEMSET:
7026 target = expand_builtin_memset (exp, target, mode);
7027 if (target)
7028 return target;
7029 break;
7031 case BUILT_IN_BZERO:
7032 target = expand_builtin_bzero (exp);
7033 if (target)
7034 return target;
7035 break;
7037 case BUILT_IN_STRCMP:
7038 target = expand_builtin_strcmp (exp, target);
7039 if (target)
7040 return target;
7041 break;
7043 case BUILT_IN_STRNCMP:
7044 target = expand_builtin_strncmp (exp, target, mode);
7045 if (target)
7046 return target;
7047 break;
7049 case BUILT_IN_BCMP:
7050 case BUILT_IN_MEMCMP:
7051 case BUILT_IN_MEMCMP_EQ:
7052 target = expand_builtin_memcmp (exp, target, fcode == BUILT_IN_MEMCMP_EQ);
7053 if (target)
7054 return target;
7055 if (fcode == BUILT_IN_MEMCMP_EQ)
7057 tree newdecl = builtin_decl_explicit (BUILT_IN_MEMCMP);
7058 TREE_OPERAND (exp, 1) = build_fold_addr_expr (newdecl);
7060 break;
7062 case BUILT_IN_SETJMP:
7063 /* This should have been lowered to the builtins below. */
7064 gcc_unreachable ();
7066 case BUILT_IN_SETJMP_SETUP:
7067 /* __builtin_setjmp_setup is passed a pointer to an array of five words
7068 and the receiver label. */
7069 if (validate_arglist (exp, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
7071 rtx buf_addr = expand_expr (CALL_EXPR_ARG (exp, 0), subtarget,
7072 VOIDmode, EXPAND_NORMAL);
7073 tree label = TREE_OPERAND (CALL_EXPR_ARG (exp, 1), 0);
7074 rtx_insn *label_r = label_rtx (label);
7076 /* This is copied from the handling of non-local gotos. */
7077 expand_builtin_setjmp_setup (buf_addr, label_r);
7078 nonlocal_goto_handler_labels
7079 = gen_rtx_INSN_LIST (VOIDmode, label_r,
7080 nonlocal_goto_handler_labels);
7081 /* ??? Do not let expand_label treat us as such since we would
7082 not want to be both on the list of non-local labels and on
7083 the list of forced labels. */
7084 FORCED_LABEL (label) = 0;
7085 return const0_rtx;
7087 break;
7089 case BUILT_IN_SETJMP_RECEIVER:
7090 /* __builtin_setjmp_receiver is passed the receiver label. */
7091 if (validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
7093 tree label = TREE_OPERAND (CALL_EXPR_ARG (exp, 0), 0);
7094 rtx_insn *label_r = label_rtx (label);
7096 expand_builtin_setjmp_receiver (label_r);
7097 return const0_rtx;
7099 break;
7101 /* __builtin_longjmp is passed a pointer to an array of five words.
7102 It's similar to the C library longjmp function but works with
7103 __builtin_setjmp above. */
7104 case BUILT_IN_LONGJMP:
7105 if (validate_arglist (exp, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
7107 rtx buf_addr = expand_expr (CALL_EXPR_ARG (exp, 0), subtarget,
7108 VOIDmode, EXPAND_NORMAL);
7109 rtx value = expand_normal (CALL_EXPR_ARG (exp, 1));
7111 if (value != const1_rtx)
7113 error ("%<__builtin_longjmp%> second argument must be 1");
7114 return const0_rtx;
7117 expand_builtin_longjmp (buf_addr, value);
7118 return const0_rtx;
7120 break;
7122 case BUILT_IN_NONLOCAL_GOTO:
7123 target = expand_builtin_nonlocal_goto (exp);
7124 if (target)
7125 return target;
7126 break;
7128 /* This updates the setjmp buffer that is its argument with the value
7129 of the current stack pointer. */
7130 case BUILT_IN_UPDATE_SETJMP_BUF:
7131 if (validate_arglist (exp, POINTER_TYPE, VOID_TYPE))
7133 rtx buf_addr
7134 = expand_normal (CALL_EXPR_ARG (exp, 0));
7136 expand_builtin_update_setjmp_buf (buf_addr);
7137 return const0_rtx;
7139 break;
7141 case BUILT_IN_TRAP:
7142 expand_builtin_trap ();
7143 return const0_rtx;
7145 case BUILT_IN_UNREACHABLE:
7146 expand_builtin_unreachable ();
7147 return const0_rtx;
7149 CASE_FLT_FN (BUILT_IN_SIGNBIT):
7150 case BUILT_IN_SIGNBITD32:
7151 case BUILT_IN_SIGNBITD64:
7152 case BUILT_IN_SIGNBITD128:
7153 target = expand_builtin_signbit (exp, target);
7154 if (target)
7155 return target;
7156 break;
7158 /* Various hooks for the DWARF 2 __throw routine. */
7159 case BUILT_IN_UNWIND_INIT:
7160 expand_builtin_unwind_init ();
7161 return const0_rtx;
7162 case BUILT_IN_DWARF_CFA:
7163 return virtual_cfa_rtx;
7164 #ifdef DWARF2_UNWIND_INFO
7165 case BUILT_IN_DWARF_SP_COLUMN:
7166 return expand_builtin_dwarf_sp_column ();
7167 case BUILT_IN_INIT_DWARF_REG_SIZES:
7168 expand_builtin_init_dwarf_reg_sizes (CALL_EXPR_ARG (exp, 0));
7169 return const0_rtx;
7170 #endif
7171 case BUILT_IN_FROB_RETURN_ADDR:
7172 return expand_builtin_frob_return_addr (CALL_EXPR_ARG (exp, 0));
7173 case BUILT_IN_EXTRACT_RETURN_ADDR:
7174 return expand_builtin_extract_return_addr (CALL_EXPR_ARG (exp, 0));
7175 case BUILT_IN_EH_RETURN:
7176 expand_builtin_eh_return (CALL_EXPR_ARG (exp, 0),
7177 CALL_EXPR_ARG (exp, 1));
7178 return const0_rtx;
7179 case BUILT_IN_EH_RETURN_DATA_REGNO:
7180 return expand_builtin_eh_return_data_regno (exp);
7181 case BUILT_IN_EXTEND_POINTER:
7182 return expand_builtin_extend_pointer (CALL_EXPR_ARG (exp, 0));
7183 case BUILT_IN_EH_POINTER:
7184 return expand_builtin_eh_pointer (exp);
7185 case BUILT_IN_EH_FILTER:
7186 return expand_builtin_eh_filter (exp);
7187 case BUILT_IN_EH_COPY_VALUES:
7188 return expand_builtin_eh_copy_values (exp);
7190 case BUILT_IN_VA_START:
7191 return expand_builtin_va_start (exp);
7192 case BUILT_IN_VA_END:
7193 return expand_builtin_va_end (exp);
7194 case BUILT_IN_VA_COPY:
7195 return expand_builtin_va_copy (exp);
7196 case BUILT_IN_EXPECT:
7197 return expand_builtin_expect (exp, target);
7198 case BUILT_IN_ASSUME_ALIGNED:
7199 return expand_builtin_assume_aligned (exp, target);
7200 case BUILT_IN_PREFETCH:
7201 expand_builtin_prefetch (exp);
7202 return const0_rtx;
7204 case BUILT_IN_INIT_TRAMPOLINE:
7205 return expand_builtin_init_trampoline (exp, true);
7206 case BUILT_IN_INIT_HEAP_TRAMPOLINE:
7207 return expand_builtin_init_trampoline (exp, false);
7208 case BUILT_IN_ADJUST_TRAMPOLINE:
7209 return expand_builtin_adjust_trampoline (exp);
7211 case BUILT_IN_INIT_DESCRIPTOR:
7212 return expand_builtin_init_descriptor (exp);
7213 case BUILT_IN_ADJUST_DESCRIPTOR:
7214 return expand_builtin_adjust_descriptor (exp);
7216 case BUILT_IN_FORK:
7217 case BUILT_IN_EXECL:
7218 case BUILT_IN_EXECV:
7219 case BUILT_IN_EXECLP:
7220 case BUILT_IN_EXECLE:
7221 case BUILT_IN_EXECVP:
7222 case BUILT_IN_EXECVE:
7223 target = expand_builtin_fork_or_exec (fndecl, exp, target, ignore);
7224 if (target)
7225 return target;
7226 break;
7228 case BUILT_IN_SYNC_FETCH_AND_ADD_1:
7229 case BUILT_IN_SYNC_FETCH_AND_ADD_2:
7230 case BUILT_IN_SYNC_FETCH_AND_ADD_4:
7231 case BUILT_IN_SYNC_FETCH_AND_ADD_8:
7232 case BUILT_IN_SYNC_FETCH_AND_ADD_16:
7233 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_ADD_1);
7234 target = expand_builtin_sync_operation (mode, exp, PLUS, false, target);
7235 if (target)
7236 return target;
7237 break;
7239 case BUILT_IN_SYNC_FETCH_AND_SUB_1:
7240 case BUILT_IN_SYNC_FETCH_AND_SUB_2:
7241 case BUILT_IN_SYNC_FETCH_AND_SUB_4:
7242 case BUILT_IN_SYNC_FETCH_AND_SUB_8:
7243 case BUILT_IN_SYNC_FETCH_AND_SUB_16:
7244 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_SUB_1);
7245 target = expand_builtin_sync_operation (mode, exp, MINUS, false, target);
7246 if (target)
7247 return target;
7248 break;
7250 case BUILT_IN_SYNC_FETCH_AND_OR_1:
7251 case BUILT_IN_SYNC_FETCH_AND_OR_2:
7252 case BUILT_IN_SYNC_FETCH_AND_OR_4:
7253 case BUILT_IN_SYNC_FETCH_AND_OR_8:
7254 case BUILT_IN_SYNC_FETCH_AND_OR_16:
7255 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_OR_1);
7256 target = expand_builtin_sync_operation (mode, exp, IOR, false, target);
7257 if (target)
7258 return target;
7259 break;
7261 case BUILT_IN_SYNC_FETCH_AND_AND_1:
7262 case BUILT_IN_SYNC_FETCH_AND_AND_2:
7263 case BUILT_IN_SYNC_FETCH_AND_AND_4:
7264 case BUILT_IN_SYNC_FETCH_AND_AND_8:
7265 case BUILT_IN_SYNC_FETCH_AND_AND_16:
7266 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_AND_1);
7267 target = expand_builtin_sync_operation (mode, exp, AND, false, target);
7268 if (target)
7269 return target;
7270 break;
7272 case BUILT_IN_SYNC_FETCH_AND_XOR_1:
7273 case BUILT_IN_SYNC_FETCH_AND_XOR_2:
7274 case BUILT_IN_SYNC_FETCH_AND_XOR_4:
7275 case BUILT_IN_SYNC_FETCH_AND_XOR_8:
7276 case BUILT_IN_SYNC_FETCH_AND_XOR_16:
7277 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_XOR_1);
7278 target = expand_builtin_sync_operation (mode, exp, XOR, false, target);
7279 if (target)
7280 return target;
7281 break;
7283 case BUILT_IN_SYNC_FETCH_AND_NAND_1:
7284 case BUILT_IN_SYNC_FETCH_AND_NAND_2:
7285 case BUILT_IN_SYNC_FETCH_AND_NAND_4:
7286 case BUILT_IN_SYNC_FETCH_AND_NAND_8:
7287 case BUILT_IN_SYNC_FETCH_AND_NAND_16:
7288 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_FETCH_AND_NAND_1);
7289 target = expand_builtin_sync_operation (mode, exp, NOT, false, target);
7290 if (target)
7291 return target;
7292 break;
7294 case BUILT_IN_SYNC_ADD_AND_FETCH_1:
7295 case BUILT_IN_SYNC_ADD_AND_FETCH_2:
7296 case BUILT_IN_SYNC_ADD_AND_FETCH_4:
7297 case BUILT_IN_SYNC_ADD_AND_FETCH_8:
7298 case BUILT_IN_SYNC_ADD_AND_FETCH_16:
7299 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_ADD_AND_FETCH_1);
7300 target = expand_builtin_sync_operation (mode, exp, PLUS, true, target);
7301 if (target)
7302 return target;
7303 break;
7305 case BUILT_IN_SYNC_SUB_AND_FETCH_1:
7306 case BUILT_IN_SYNC_SUB_AND_FETCH_2:
7307 case BUILT_IN_SYNC_SUB_AND_FETCH_4:
7308 case BUILT_IN_SYNC_SUB_AND_FETCH_8:
7309 case BUILT_IN_SYNC_SUB_AND_FETCH_16:
7310 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_SUB_AND_FETCH_1);
7311 target = expand_builtin_sync_operation (mode, exp, MINUS, true, target);
7312 if (target)
7313 return target;
7314 break;
7316 case BUILT_IN_SYNC_OR_AND_FETCH_1:
7317 case BUILT_IN_SYNC_OR_AND_FETCH_2:
7318 case BUILT_IN_SYNC_OR_AND_FETCH_4:
7319 case BUILT_IN_SYNC_OR_AND_FETCH_8:
7320 case BUILT_IN_SYNC_OR_AND_FETCH_16:
7321 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_OR_AND_FETCH_1);
7322 target = expand_builtin_sync_operation (mode, exp, IOR, true, target);
7323 if (target)
7324 return target;
7325 break;
7327 case BUILT_IN_SYNC_AND_AND_FETCH_1:
7328 case BUILT_IN_SYNC_AND_AND_FETCH_2:
7329 case BUILT_IN_SYNC_AND_AND_FETCH_4:
7330 case BUILT_IN_SYNC_AND_AND_FETCH_8:
7331 case BUILT_IN_SYNC_AND_AND_FETCH_16:
7332 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_AND_AND_FETCH_1);
7333 target = expand_builtin_sync_operation (mode, exp, AND, true, target);
7334 if (target)
7335 return target;
7336 break;
7338 case BUILT_IN_SYNC_XOR_AND_FETCH_1:
7339 case BUILT_IN_SYNC_XOR_AND_FETCH_2:
7340 case BUILT_IN_SYNC_XOR_AND_FETCH_4:
7341 case BUILT_IN_SYNC_XOR_AND_FETCH_8:
7342 case BUILT_IN_SYNC_XOR_AND_FETCH_16:
7343 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_XOR_AND_FETCH_1);
7344 target = expand_builtin_sync_operation (mode, exp, XOR, true, target);
7345 if (target)
7346 return target;
7347 break;
7349 case BUILT_IN_SYNC_NAND_AND_FETCH_1:
7350 case BUILT_IN_SYNC_NAND_AND_FETCH_2:
7351 case BUILT_IN_SYNC_NAND_AND_FETCH_4:
7352 case BUILT_IN_SYNC_NAND_AND_FETCH_8:
7353 case BUILT_IN_SYNC_NAND_AND_FETCH_16:
7354 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_NAND_AND_FETCH_1);
7355 target = expand_builtin_sync_operation (mode, exp, NOT, true, target);
7356 if (target)
7357 return target;
7358 break;
7360 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_1:
7361 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_2:
7362 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_4:
7363 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_8:
7364 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_16:
7365 if (mode == VOIDmode)
7366 mode = TYPE_MODE (boolean_type_node);
7367 if (!target || !register_operand (target, mode))
7368 target = gen_reg_rtx (mode);
7370 mode = get_builtin_sync_mode
7371 (fcode - BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_1);
7372 target = expand_builtin_compare_and_swap (mode, exp, true, target);
7373 if (target)
7374 return target;
7375 break;
7377 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_1:
7378 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_2:
7379 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_4:
7380 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_8:
7381 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_16:
7382 mode = get_builtin_sync_mode
7383 (fcode - BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_1);
7384 target = expand_builtin_compare_and_swap (mode, exp, false, target);
7385 if (target)
7386 return target;
7387 break;
7389 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_1:
7390 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_2:
7391 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_4:
7392 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_8:
7393 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_16:
7394 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_LOCK_TEST_AND_SET_1);
7395 target = expand_builtin_sync_lock_test_and_set (mode, exp, target);
7396 if (target)
7397 return target;
7398 break;
7400 case BUILT_IN_SYNC_LOCK_RELEASE_1:
7401 case BUILT_IN_SYNC_LOCK_RELEASE_2:
7402 case BUILT_IN_SYNC_LOCK_RELEASE_4:
7403 case BUILT_IN_SYNC_LOCK_RELEASE_8:
7404 case BUILT_IN_SYNC_LOCK_RELEASE_16:
7405 mode = get_builtin_sync_mode (fcode - BUILT_IN_SYNC_LOCK_RELEASE_1);
7406 expand_builtin_sync_lock_release (mode, exp);
7407 return const0_rtx;
7409 case BUILT_IN_SYNC_SYNCHRONIZE:
7410 expand_builtin_sync_synchronize ();
7411 return const0_rtx;
7413 case BUILT_IN_ATOMIC_EXCHANGE_1:
7414 case BUILT_IN_ATOMIC_EXCHANGE_2:
7415 case BUILT_IN_ATOMIC_EXCHANGE_4:
7416 case BUILT_IN_ATOMIC_EXCHANGE_8:
7417 case BUILT_IN_ATOMIC_EXCHANGE_16:
7418 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_EXCHANGE_1);
7419 target = expand_builtin_atomic_exchange (mode, exp, target);
7420 if (target)
7421 return target;
7422 break;
7424 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_1:
7425 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_2:
7426 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_4:
7427 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_8:
7428 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_16:
7430 unsigned int nargs, z;
7431 vec<tree, va_gc> *vec;
7433 mode =
7434 get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_COMPARE_EXCHANGE_1);
7435 target = expand_builtin_atomic_compare_exchange (mode, exp, target);
7436 if (target)
7437 return target;
7439 /* If this is turned into an external library call, the weak parameter
7440 must be dropped to match the expected parameter list. */
7441 nargs = call_expr_nargs (exp);
7442 vec_alloc (vec, nargs - 1);
7443 for (z = 0; z < 3; z++)
7444 vec->quick_push (CALL_EXPR_ARG (exp, z));
7445 /* Skip the boolean weak parameter. */
7446 for (z = 4; z < 6; z++)
7447 vec->quick_push (CALL_EXPR_ARG (exp, z));
7448 exp = build_call_vec (TREE_TYPE (exp), CALL_EXPR_FN (exp), vec);
7449 break;
7452 case BUILT_IN_ATOMIC_LOAD_1:
7453 case BUILT_IN_ATOMIC_LOAD_2:
7454 case BUILT_IN_ATOMIC_LOAD_4:
7455 case BUILT_IN_ATOMIC_LOAD_8:
7456 case BUILT_IN_ATOMIC_LOAD_16:
7457 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_LOAD_1);
7458 target = expand_builtin_atomic_load (mode, exp, target);
7459 if (target)
7460 return target;
7461 break;
7463 case BUILT_IN_ATOMIC_STORE_1:
7464 case BUILT_IN_ATOMIC_STORE_2:
7465 case BUILT_IN_ATOMIC_STORE_4:
7466 case BUILT_IN_ATOMIC_STORE_8:
7467 case BUILT_IN_ATOMIC_STORE_16:
7468 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_STORE_1);
7469 target = expand_builtin_atomic_store (mode, exp);
7470 if (target)
7471 return const0_rtx;
7472 break;
7474 case BUILT_IN_ATOMIC_ADD_FETCH_1:
7475 case BUILT_IN_ATOMIC_ADD_FETCH_2:
7476 case BUILT_IN_ATOMIC_ADD_FETCH_4:
7477 case BUILT_IN_ATOMIC_ADD_FETCH_8:
7478 case BUILT_IN_ATOMIC_ADD_FETCH_16:
7480 enum built_in_function lib;
7481 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_ADD_FETCH_1);
7482 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_ADD_1 +
7483 (fcode - BUILT_IN_ATOMIC_ADD_FETCH_1));
7484 target = expand_builtin_atomic_fetch_op (mode, exp, target, PLUS, true,
7485 ignore, lib);
7486 if (target)
7487 return target;
7488 break;
7490 case BUILT_IN_ATOMIC_SUB_FETCH_1:
7491 case BUILT_IN_ATOMIC_SUB_FETCH_2:
7492 case BUILT_IN_ATOMIC_SUB_FETCH_4:
7493 case BUILT_IN_ATOMIC_SUB_FETCH_8:
7494 case BUILT_IN_ATOMIC_SUB_FETCH_16:
7496 enum built_in_function lib;
7497 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_SUB_FETCH_1);
7498 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_SUB_1 +
7499 (fcode - BUILT_IN_ATOMIC_SUB_FETCH_1));
7500 target = expand_builtin_atomic_fetch_op (mode, exp, target, MINUS, true,
7501 ignore, lib);
7502 if (target)
7503 return target;
7504 break;
7506 case BUILT_IN_ATOMIC_AND_FETCH_1:
7507 case BUILT_IN_ATOMIC_AND_FETCH_2:
7508 case BUILT_IN_ATOMIC_AND_FETCH_4:
7509 case BUILT_IN_ATOMIC_AND_FETCH_8:
7510 case BUILT_IN_ATOMIC_AND_FETCH_16:
7512 enum built_in_function lib;
7513 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_AND_FETCH_1);
7514 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_AND_1 +
7515 (fcode - BUILT_IN_ATOMIC_AND_FETCH_1));
7516 target = expand_builtin_atomic_fetch_op (mode, exp, target, AND, true,
7517 ignore, lib);
7518 if (target)
7519 return target;
7520 break;
7522 case BUILT_IN_ATOMIC_NAND_FETCH_1:
7523 case BUILT_IN_ATOMIC_NAND_FETCH_2:
7524 case BUILT_IN_ATOMIC_NAND_FETCH_4:
7525 case BUILT_IN_ATOMIC_NAND_FETCH_8:
7526 case BUILT_IN_ATOMIC_NAND_FETCH_16:
7528 enum built_in_function lib;
7529 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_NAND_FETCH_1);
7530 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_NAND_1 +
7531 (fcode - BUILT_IN_ATOMIC_NAND_FETCH_1));
7532 target = expand_builtin_atomic_fetch_op (mode, exp, target, NOT, true,
7533 ignore, lib);
7534 if (target)
7535 return target;
7536 break;
7538 case BUILT_IN_ATOMIC_XOR_FETCH_1:
7539 case BUILT_IN_ATOMIC_XOR_FETCH_2:
7540 case BUILT_IN_ATOMIC_XOR_FETCH_4:
7541 case BUILT_IN_ATOMIC_XOR_FETCH_8:
7542 case BUILT_IN_ATOMIC_XOR_FETCH_16:
7544 enum built_in_function lib;
7545 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_XOR_FETCH_1);
7546 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_XOR_1 +
7547 (fcode - BUILT_IN_ATOMIC_XOR_FETCH_1));
7548 target = expand_builtin_atomic_fetch_op (mode, exp, target, XOR, true,
7549 ignore, lib);
7550 if (target)
7551 return target;
7552 break;
7554 case BUILT_IN_ATOMIC_OR_FETCH_1:
7555 case BUILT_IN_ATOMIC_OR_FETCH_2:
7556 case BUILT_IN_ATOMIC_OR_FETCH_4:
7557 case BUILT_IN_ATOMIC_OR_FETCH_8:
7558 case BUILT_IN_ATOMIC_OR_FETCH_16:
7560 enum built_in_function lib;
7561 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_OR_FETCH_1);
7562 lib = (enum built_in_function)((int)BUILT_IN_ATOMIC_FETCH_OR_1 +
7563 (fcode - BUILT_IN_ATOMIC_OR_FETCH_1));
7564 target = expand_builtin_atomic_fetch_op (mode, exp, target, IOR, true,
7565 ignore, lib);
7566 if (target)
7567 return target;
7568 break;
7570 case BUILT_IN_ATOMIC_FETCH_ADD_1:
7571 case BUILT_IN_ATOMIC_FETCH_ADD_2:
7572 case BUILT_IN_ATOMIC_FETCH_ADD_4:
7573 case BUILT_IN_ATOMIC_FETCH_ADD_8:
7574 case BUILT_IN_ATOMIC_FETCH_ADD_16:
7575 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_ADD_1);
7576 target = expand_builtin_atomic_fetch_op (mode, exp, target, PLUS, false,
7577 ignore, BUILT_IN_NONE);
7578 if (target)
7579 return target;
7580 break;
7582 case BUILT_IN_ATOMIC_FETCH_SUB_1:
7583 case BUILT_IN_ATOMIC_FETCH_SUB_2:
7584 case BUILT_IN_ATOMIC_FETCH_SUB_4:
7585 case BUILT_IN_ATOMIC_FETCH_SUB_8:
7586 case BUILT_IN_ATOMIC_FETCH_SUB_16:
7587 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_SUB_1);
7588 target = expand_builtin_atomic_fetch_op (mode, exp, target, MINUS, false,
7589 ignore, BUILT_IN_NONE);
7590 if (target)
7591 return target;
7592 break;
7594 case BUILT_IN_ATOMIC_FETCH_AND_1:
7595 case BUILT_IN_ATOMIC_FETCH_AND_2:
7596 case BUILT_IN_ATOMIC_FETCH_AND_4:
7597 case BUILT_IN_ATOMIC_FETCH_AND_8:
7598 case BUILT_IN_ATOMIC_FETCH_AND_16:
7599 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_AND_1);
7600 target = expand_builtin_atomic_fetch_op (mode, exp, target, AND, false,
7601 ignore, BUILT_IN_NONE);
7602 if (target)
7603 return target;
7604 break;
7606 case BUILT_IN_ATOMIC_FETCH_NAND_1:
7607 case BUILT_IN_ATOMIC_FETCH_NAND_2:
7608 case BUILT_IN_ATOMIC_FETCH_NAND_4:
7609 case BUILT_IN_ATOMIC_FETCH_NAND_8:
7610 case BUILT_IN_ATOMIC_FETCH_NAND_16:
7611 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_NAND_1);
7612 target = expand_builtin_atomic_fetch_op (mode, exp, target, NOT, false,
7613 ignore, BUILT_IN_NONE);
7614 if (target)
7615 return target;
7616 break;
7618 case BUILT_IN_ATOMIC_FETCH_XOR_1:
7619 case BUILT_IN_ATOMIC_FETCH_XOR_2:
7620 case BUILT_IN_ATOMIC_FETCH_XOR_4:
7621 case BUILT_IN_ATOMIC_FETCH_XOR_8:
7622 case BUILT_IN_ATOMIC_FETCH_XOR_16:
7623 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_XOR_1);
7624 target = expand_builtin_atomic_fetch_op (mode, exp, target, XOR, false,
7625 ignore, BUILT_IN_NONE);
7626 if (target)
7627 return target;
7628 break;
7630 case BUILT_IN_ATOMIC_FETCH_OR_1:
7631 case BUILT_IN_ATOMIC_FETCH_OR_2:
7632 case BUILT_IN_ATOMIC_FETCH_OR_4:
7633 case BUILT_IN_ATOMIC_FETCH_OR_8:
7634 case BUILT_IN_ATOMIC_FETCH_OR_16:
7635 mode = get_builtin_sync_mode (fcode - BUILT_IN_ATOMIC_FETCH_OR_1);
7636 target = expand_builtin_atomic_fetch_op (mode, exp, target, IOR, false,
7637 ignore, BUILT_IN_NONE);
7638 if (target)
7639 return target;
7640 break;
7642 case BUILT_IN_ATOMIC_TEST_AND_SET:
7643 return expand_builtin_atomic_test_and_set (exp, target);
7645 case BUILT_IN_ATOMIC_CLEAR:
7646 return expand_builtin_atomic_clear (exp);
7648 case BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE:
7649 return expand_builtin_atomic_always_lock_free (exp);
7651 case BUILT_IN_ATOMIC_IS_LOCK_FREE:
7652 target = expand_builtin_atomic_is_lock_free (exp);
7653 if (target)
7654 return target;
7655 break;
7657 case BUILT_IN_ATOMIC_THREAD_FENCE:
7658 expand_builtin_atomic_thread_fence (exp);
7659 return const0_rtx;
7661 case BUILT_IN_ATOMIC_SIGNAL_FENCE:
7662 expand_builtin_atomic_signal_fence (exp);
7663 return const0_rtx;
7665 case BUILT_IN_OBJECT_SIZE:
7666 return expand_builtin_object_size (exp);
7668 case BUILT_IN_MEMCPY_CHK:
7669 case BUILT_IN_MEMPCPY_CHK:
7670 case BUILT_IN_MEMMOVE_CHK:
7671 case BUILT_IN_MEMSET_CHK:
7672 target = expand_builtin_memory_chk (exp, target, mode, fcode);
7673 if (target)
7674 return target;
7675 break;
7677 case BUILT_IN_STRCPY_CHK:
7678 case BUILT_IN_STPCPY_CHK:
7679 case BUILT_IN_STRNCPY_CHK:
7680 case BUILT_IN_STPNCPY_CHK:
7681 case BUILT_IN_STRCAT_CHK:
7682 case BUILT_IN_STRNCAT_CHK:
7683 case BUILT_IN_SNPRINTF_CHK:
7684 case BUILT_IN_VSNPRINTF_CHK:
7685 maybe_emit_chk_warning (exp, fcode);
7686 break;
7688 case BUILT_IN_SPRINTF_CHK:
7689 case BUILT_IN_VSPRINTF_CHK:
7690 maybe_emit_sprintf_chk_warning (exp, fcode);
7691 break;
7693 case BUILT_IN_FREE:
7694 if (warn_free_nonheap_object)
7695 maybe_emit_free_warning (exp);
7696 break;
7698 case BUILT_IN_THREAD_POINTER:
7699 return expand_builtin_thread_pointer (exp, target);
7701 case BUILT_IN_SET_THREAD_POINTER:
7702 expand_builtin_set_thread_pointer (exp);
7703 return const0_rtx;
7705 case BUILT_IN_CHKP_INIT_PTR_BOUNDS:
7706 case BUILT_IN_CHKP_NULL_PTR_BOUNDS:
7707 case BUILT_IN_CHKP_COPY_PTR_BOUNDS:
7708 case BUILT_IN_CHKP_CHECK_PTR_LBOUNDS:
7709 case BUILT_IN_CHKP_CHECK_PTR_UBOUNDS:
7710 case BUILT_IN_CHKP_CHECK_PTR_BOUNDS:
7711 case BUILT_IN_CHKP_SET_PTR_BOUNDS:
7712 case BUILT_IN_CHKP_NARROW_PTR_BOUNDS:
7713 case BUILT_IN_CHKP_STORE_PTR_BOUNDS:
7714 case BUILT_IN_CHKP_GET_PTR_LBOUND:
7715 case BUILT_IN_CHKP_GET_PTR_UBOUND:
7716 /* We allow user CHKP builtins if Pointer Bounds
7717 Checker is off. */
7718 if (!chkp_function_instrumented_p (current_function_decl))
7720 if (fcode == BUILT_IN_CHKP_SET_PTR_BOUNDS
7721 || fcode == BUILT_IN_CHKP_NARROW_PTR_BOUNDS
7722 || fcode == BUILT_IN_CHKP_INIT_PTR_BOUNDS
7723 || fcode == BUILT_IN_CHKP_NULL_PTR_BOUNDS
7724 || fcode == BUILT_IN_CHKP_COPY_PTR_BOUNDS)
7725 return expand_normal (CALL_EXPR_ARG (exp, 0));
7726 else if (fcode == BUILT_IN_CHKP_GET_PTR_LBOUND)
7727 return expand_normal (size_zero_node);
7728 else if (fcode == BUILT_IN_CHKP_GET_PTR_UBOUND)
7729 return expand_normal (size_int (-1));
7730 else
7731 return const0_rtx;
7733 /* FALLTHROUGH */
7735 case BUILT_IN_CHKP_BNDMK:
7736 case BUILT_IN_CHKP_BNDSTX:
7737 case BUILT_IN_CHKP_BNDCL:
7738 case BUILT_IN_CHKP_BNDCU:
7739 case BUILT_IN_CHKP_BNDLDX:
7740 case BUILT_IN_CHKP_BNDRET:
7741 case BUILT_IN_CHKP_INTERSECT:
7742 case BUILT_IN_CHKP_NARROW:
7743 case BUILT_IN_CHKP_EXTRACT_LOWER:
7744 case BUILT_IN_CHKP_EXTRACT_UPPER:
7745 /* Software implementation of Pointer Bounds Checker is NYI.
7746 Target support is required. */
7747 error ("Your target platform does not support -fcheck-pointer-bounds");
7748 break;
7750 case BUILT_IN_ACC_ON_DEVICE:
7751 /* Do library call, if we failed to expand the builtin when
7752 folding. */
7753 break;
7755 default: /* just do library call, if unknown builtin */
7756 break;
7759 /* The switch statement above can drop through to cause the function
7760 to be called normally. */
7761 return expand_call (exp, target, ignore);
7764 /* Similar to expand_builtin but is used for instrumented calls. */
7767 expand_builtin_with_bounds (tree exp, rtx target,
7768 rtx subtarget ATTRIBUTE_UNUSED,
7769 machine_mode mode, int ignore)
7771 tree fndecl = get_callee_fndecl (exp);
7772 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
7774 gcc_assert (CALL_WITH_BOUNDS_P (exp));
7776 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
7777 return targetm.expand_builtin (exp, target, subtarget, mode, ignore);
7779 gcc_assert (fcode > BEGIN_CHKP_BUILTINS
7780 && fcode < END_CHKP_BUILTINS);
7782 switch (fcode)
7784 case BUILT_IN_CHKP_MEMCPY_NOBND_NOCHK_CHKP:
7785 target = expand_builtin_memcpy_with_bounds (exp, target);
7786 if (target)
7787 return target;
7788 break;
7790 case BUILT_IN_CHKP_MEMPCPY_NOBND_NOCHK_CHKP:
7791 target = expand_builtin_mempcpy_with_bounds (exp, target);
7792 if (target)
7793 return target;
7794 break;
7796 case BUILT_IN_CHKP_MEMSET_NOBND_NOCHK_CHKP:
7797 target = expand_builtin_memset_with_bounds (exp, target, mode);
7798 if (target)
7799 return target;
7800 break;
7802 case BUILT_IN_MEMCPY_CHKP:
7803 case BUILT_IN_MEMMOVE_CHKP:
7804 case BUILT_IN_MEMPCPY_CHKP:
7805 if (call_expr_nargs (exp) > 3)
7807 /* memcpy_chkp (void *dst, size_t dstbnd,
7808 const void *src, size_t srcbnd, size_t n)
7809 and others take a pointer bound argument just after each
7810 pointer argument. */
7811 tree dest = CALL_EXPR_ARG (exp, 0);
7812 tree src = CALL_EXPR_ARG (exp, 2);
7813 tree len = CALL_EXPR_ARG (exp, 4);
7815 check_memop_access (exp, dest, src, len);
7816 break;
7819 default:
7820 break;
7823 /* The switch statement above can drop through to cause the function
7824 to be called normally. */
7825 return expand_call (exp, target, ignore);
7828 /* Determine whether a tree node represents a call to a built-in
7829 function. If the tree T is a call to a built-in function with
7830 the right number of arguments of the appropriate types, return
7831 the DECL_FUNCTION_CODE of the call, e.g. BUILT_IN_SQRT.
7832 Otherwise the return value is END_BUILTINS. */
7834 enum built_in_function
7835 builtin_mathfn_code (const_tree t)
7837 const_tree fndecl, arg, parmlist;
7838 const_tree argtype, parmtype;
7839 const_call_expr_arg_iterator iter;
7841 if (TREE_CODE (t) != CALL_EXPR)
7842 return END_BUILTINS;
7844 fndecl = get_callee_fndecl (t);
7845 if (fndecl == NULL_TREE
7846 || TREE_CODE (fndecl) != FUNCTION_DECL
7847 || ! DECL_BUILT_IN (fndecl)
7848 || DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
7849 return END_BUILTINS;
7851 parmlist = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
7852 init_const_call_expr_arg_iterator (t, &iter);
7853 for (; parmlist; parmlist = TREE_CHAIN (parmlist))
7855 /* If a function doesn't take a variable number of arguments,
7856 the last element in the list will have type `void'. */
7857 parmtype = TREE_VALUE (parmlist);
7858 if (VOID_TYPE_P (parmtype))
7860 if (more_const_call_expr_args_p (&iter))
7861 return END_BUILTINS;
7862 return DECL_FUNCTION_CODE (fndecl);
7865 if (! more_const_call_expr_args_p (&iter))
7866 return END_BUILTINS;
7868 arg = next_const_call_expr_arg (&iter);
7869 argtype = TREE_TYPE (arg);
7871 if (SCALAR_FLOAT_TYPE_P (parmtype))
7873 if (! SCALAR_FLOAT_TYPE_P (argtype))
7874 return END_BUILTINS;
7876 else if (COMPLEX_FLOAT_TYPE_P (parmtype))
7878 if (! COMPLEX_FLOAT_TYPE_P (argtype))
7879 return END_BUILTINS;
7881 else if (POINTER_TYPE_P (parmtype))
7883 if (! POINTER_TYPE_P (argtype))
7884 return END_BUILTINS;
7886 else if (INTEGRAL_TYPE_P (parmtype))
7888 if (! INTEGRAL_TYPE_P (argtype))
7889 return END_BUILTINS;
7891 else
7892 return END_BUILTINS;
7895 /* Variable-length argument list. */
7896 return DECL_FUNCTION_CODE (fndecl);
7899 /* Fold a call to __builtin_constant_p, if we know its argument ARG will
7900 evaluate to a constant. */
7902 static tree
7903 fold_builtin_constant_p (tree arg)
7905 /* We return 1 for a numeric type that's known to be a constant
7906 value at compile-time or for an aggregate type that's a
7907 literal constant. */
7908 STRIP_NOPS (arg);
7910 /* If we know this is a constant, emit the constant of one. */
7911 if (CONSTANT_CLASS_P (arg)
7912 || (TREE_CODE (arg) == CONSTRUCTOR
7913 && TREE_CONSTANT (arg)))
7914 return integer_one_node;
7915 if (TREE_CODE (arg) == ADDR_EXPR)
7917 tree op = TREE_OPERAND (arg, 0);
7918 if (TREE_CODE (op) == STRING_CST
7919 || (TREE_CODE (op) == ARRAY_REF
7920 && integer_zerop (TREE_OPERAND (op, 1))
7921 && TREE_CODE (TREE_OPERAND (op, 0)) == STRING_CST))
7922 return integer_one_node;
7925 /* If this expression has side effects, show we don't know it to be a
7926 constant. Likewise if it's a pointer or aggregate type since in
7927 those case we only want literals, since those are only optimized
7928 when generating RTL, not later.
7929 And finally, if we are compiling an initializer, not code, we
7930 need to return a definite result now; there's not going to be any
7931 more optimization done. */
7932 if (TREE_SIDE_EFFECTS (arg)
7933 || AGGREGATE_TYPE_P (TREE_TYPE (arg))
7934 || POINTER_TYPE_P (TREE_TYPE (arg))
7935 || cfun == 0
7936 || folding_initializer
7937 || force_folding_builtin_constant_p)
7938 return integer_zero_node;
7940 return NULL_TREE;
7943 /* Create builtin_expect with PRED and EXPECTED as its arguments and
7944 return it as a truthvalue. */
7946 static tree
7947 build_builtin_expect_predicate (location_t loc, tree pred, tree expected,
7948 tree predictor)
7950 tree fn, arg_types, pred_type, expected_type, call_expr, ret_type;
7952 fn = builtin_decl_explicit (BUILT_IN_EXPECT);
7953 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
7954 ret_type = TREE_TYPE (TREE_TYPE (fn));
7955 pred_type = TREE_VALUE (arg_types);
7956 expected_type = TREE_VALUE (TREE_CHAIN (arg_types));
7958 pred = fold_convert_loc (loc, pred_type, pred);
7959 expected = fold_convert_loc (loc, expected_type, expected);
7960 call_expr = build_call_expr_loc (loc, fn, predictor ? 3 : 2, pred, expected,
7961 predictor);
7963 return build2 (NE_EXPR, TREE_TYPE (pred), call_expr,
7964 build_int_cst (ret_type, 0));
7967 /* Fold a call to builtin_expect with arguments ARG0 and ARG1. Return
7968 NULL_TREE if no simplification is possible. */
7970 tree
7971 fold_builtin_expect (location_t loc, tree arg0, tree arg1, tree arg2)
7973 tree inner, fndecl, inner_arg0;
7974 enum tree_code code;
7976 /* Distribute the expected value over short-circuiting operators.
7977 See through the cast from truthvalue_type_node to long. */
7978 inner_arg0 = arg0;
7979 while (CONVERT_EXPR_P (inner_arg0)
7980 && INTEGRAL_TYPE_P (TREE_TYPE (inner_arg0))
7981 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (inner_arg0, 0))))
7982 inner_arg0 = TREE_OPERAND (inner_arg0, 0);
7984 /* If this is a builtin_expect within a builtin_expect keep the
7985 inner one. See through a comparison against a constant. It
7986 might have been added to create a thruthvalue. */
7987 inner = inner_arg0;
7989 if (COMPARISON_CLASS_P (inner)
7990 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST)
7991 inner = TREE_OPERAND (inner, 0);
7993 if (TREE_CODE (inner) == CALL_EXPR
7994 && (fndecl = get_callee_fndecl (inner))
7995 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7996 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_EXPECT)
7997 return arg0;
7999 inner = inner_arg0;
8000 code = TREE_CODE (inner);
8001 if (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR)
8003 tree op0 = TREE_OPERAND (inner, 0);
8004 tree op1 = TREE_OPERAND (inner, 1);
8005 arg1 = save_expr (arg1);
8007 op0 = build_builtin_expect_predicate (loc, op0, arg1, arg2);
8008 op1 = build_builtin_expect_predicate (loc, op1, arg1, arg2);
8009 inner = build2 (code, TREE_TYPE (inner), op0, op1);
8011 return fold_convert_loc (loc, TREE_TYPE (arg0), inner);
8014 /* If the argument isn't invariant then there's nothing else we can do. */
8015 if (!TREE_CONSTANT (inner_arg0))
8016 return NULL_TREE;
8018 /* If we expect that a comparison against the argument will fold to
8019 a constant return the constant. In practice, this means a true
8020 constant or the address of a non-weak symbol. */
8021 inner = inner_arg0;
8022 STRIP_NOPS (inner);
8023 if (TREE_CODE (inner) == ADDR_EXPR)
8027 inner = TREE_OPERAND (inner, 0);
8029 while (TREE_CODE (inner) == COMPONENT_REF
8030 || TREE_CODE (inner) == ARRAY_REF);
8031 if (VAR_OR_FUNCTION_DECL_P (inner) && DECL_WEAK (inner))
8032 return NULL_TREE;
8035 /* Otherwise, ARG0 already has the proper type for the return value. */
8036 return arg0;
8039 /* Fold a call to __builtin_classify_type with argument ARG. */
8041 static tree
8042 fold_builtin_classify_type (tree arg)
8044 if (arg == 0)
8045 return build_int_cst (integer_type_node, no_type_class);
8047 return build_int_cst (integer_type_node, type_to_class (TREE_TYPE (arg)));
8050 /* Fold a call to __builtin_strlen with argument ARG. */
8052 static tree
8053 fold_builtin_strlen (location_t loc, tree type, tree arg)
8055 if (!validate_arg (arg, POINTER_TYPE))
8056 return NULL_TREE;
8057 else
8059 tree len = c_strlen (arg, 0);
8061 if (len)
8062 return fold_convert_loc (loc, type, len);
8064 return NULL_TREE;
8068 /* Fold a call to __builtin_inf or __builtin_huge_val. */
8070 static tree
8071 fold_builtin_inf (location_t loc, tree type, int warn)
8073 REAL_VALUE_TYPE real;
8075 /* __builtin_inff is intended to be usable to define INFINITY on all
8076 targets. If an infinity is not available, INFINITY expands "to a
8077 positive constant of type float that overflows at translation
8078 time", footnote "In this case, using INFINITY will violate the
8079 constraint in 6.4.4 and thus require a diagnostic." (C99 7.12#4).
8080 Thus we pedwarn to ensure this constraint violation is
8081 diagnosed. */
8082 if (!MODE_HAS_INFINITIES (TYPE_MODE (type)) && warn)
8083 pedwarn (loc, 0, "target format does not support infinity");
8085 real_inf (&real);
8086 return build_real (type, real);
8089 /* Fold function call to builtin sincos, sincosf, or sincosl. Return
8090 NULL_TREE if no simplification can be made. */
8092 static tree
8093 fold_builtin_sincos (location_t loc,
8094 tree arg0, tree arg1, tree arg2)
8096 tree type;
8097 tree fndecl, call = NULL_TREE;
8099 if (!validate_arg (arg0, REAL_TYPE)
8100 || !validate_arg (arg1, POINTER_TYPE)
8101 || !validate_arg (arg2, POINTER_TYPE))
8102 return NULL_TREE;
8104 type = TREE_TYPE (arg0);
8106 /* Calculate the result when the argument is a constant. */
8107 built_in_function fn = mathfn_built_in_2 (type, CFN_BUILT_IN_CEXPI);
8108 if (fn == END_BUILTINS)
8109 return NULL_TREE;
8111 /* Canonicalize sincos to cexpi. */
8112 if (TREE_CODE (arg0) == REAL_CST)
8114 tree complex_type = build_complex_type (type);
8115 call = fold_const_call (as_combined_fn (fn), complex_type, arg0);
8117 if (!call)
8119 if (!targetm.libc_has_function (function_c99_math_complex)
8120 || !builtin_decl_implicit_p (fn))
8121 return NULL_TREE;
8122 fndecl = builtin_decl_explicit (fn);
8123 call = build_call_expr_loc (loc, fndecl, 1, arg0);
8124 call = builtin_save_expr (call);
8127 return build2 (COMPOUND_EXPR, void_type_node,
8128 build2 (MODIFY_EXPR, void_type_node,
8129 build_fold_indirect_ref_loc (loc, arg1),
8130 fold_build1_loc (loc, IMAGPART_EXPR, type, call)),
8131 build2 (MODIFY_EXPR, void_type_node,
8132 build_fold_indirect_ref_loc (loc, arg2),
8133 fold_build1_loc (loc, REALPART_EXPR, type, call)));
8136 /* Fold function call to builtin memcmp with arguments ARG1 and ARG2.
8137 Return NULL_TREE if no simplification can be made. */
8139 static tree
8140 fold_builtin_memcmp (location_t loc, tree arg1, tree arg2, tree len)
8142 if (!validate_arg (arg1, POINTER_TYPE)
8143 || !validate_arg (arg2, POINTER_TYPE)
8144 || !validate_arg (len, INTEGER_TYPE))
8145 return NULL_TREE;
8147 /* If the LEN parameter is zero, return zero. */
8148 if (integer_zerop (len))
8149 return omit_two_operands_loc (loc, integer_type_node, integer_zero_node,
8150 arg1, arg2);
8152 /* If ARG1 and ARG2 are the same (and not volatile), return zero. */
8153 if (operand_equal_p (arg1, arg2, 0))
8154 return omit_one_operand_loc (loc, integer_type_node, integer_zero_node, len);
8156 /* If len parameter is one, return an expression corresponding to
8157 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
8158 if (tree_fits_uhwi_p (len) && tree_to_uhwi (len) == 1)
8160 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
8161 tree cst_uchar_ptr_node
8162 = build_pointer_type_for_mode (cst_uchar_node, ptr_mode, true);
8164 tree ind1
8165 = fold_convert_loc (loc, integer_type_node,
8166 build1 (INDIRECT_REF, cst_uchar_node,
8167 fold_convert_loc (loc,
8168 cst_uchar_ptr_node,
8169 arg1)));
8170 tree ind2
8171 = fold_convert_loc (loc, integer_type_node,
8172 build1 (INDIRECT_REF, cst_uchar_node,
8173 fold_convert_loc (loc,
8174 cst_uchar_ptr_node,
8175 arg2)));
8176 return fold_build2_loc (loc, MINUS_EXPR, integer_type_node, ind1, ind2);
8179 return NULL_TREE;
8182 /* Fold a call to builtin isascii with argument ARG. */
8184 static tree
8185 fold_builtin_isascii (location_t loc, tree arg)
8187 if (!validate_arg (arg, INTEGER_TYPE))
8188 return NULL_TREE;
8189 else
8191 /* Transform isascii(c) -> ((c & ~0x7f) == 0). */
8192 arg = fold_build2 (BIT_AND_EXPR, integer_type_node, arg,
8193 build_int_cst (integer_type_node,
8194 ~ (unsigned HOST_WIDE_INT) 0x7f));
8195 return fold_build2_loc (loc, EQ_EXPR, integer_type_node,
8196 arg, integer_zero_node);
8200 /* Fold a call to builtin toascii with argument ARG. */
8202 static tree
8203 fold_builtin_toascii (location_t loc, tree arg)
8205 if (!validate_arg (arg, INTEGER_TYPE))
8206 return NULL_TREE;
8208 /* Transform toascii(c) -> (c & 0x7f). */
8209 return fold_build2_loc (loc, BIT_AND_EXPR, integer_type_node, arg,
8210 build_int_cst (integer_type_node, 0x7f));
8213 /* Fold a call to builtin isdigit with argument ARG. */
8215 static tree
8216 fold_builtin_isdigit (location_t loc, tree arg)
8218 if (!validate_arg (arg, INTEGER_TYPE))
8219 return NULL_TREE;
8220 else
8222 /* Transform isdigit(c) -> (unsigned)(c) - '0' <= 9. */
8223 /* According to the C standard, isdigit is unaffected by locale.
8224 However, it definitely is affected by the target character set. */
8225 unsigned HOST_WIDE_INT target_digit0
8226 = lang_hooks.to_target_charset ('0');
8228 if (target_digit0 == 0)
8229 return NULL_TREE;
8231 arg = fold_convert_loc (loc, unsigned_type_node, arg);
8232 arg = fold_build2 (MINUS_EXPR, unsigned_type_node, arg,
8233 build_int_cst (unsigned_type_node, target_digit0));
8234 return fold_build2_loc (loc, LE_EXPR, integer_type_node, arg,
8235 build_int_cst (unsigned_type_node, 9));
8239 /* Fold a call to fabs, fabsf or fabsl with argument ARG. */
8241 static tree
8242 fold_builtin_fabs (location_t loc, tree arg, tree type)
8244 if (!validate_arg (arg, REAL_TYPE))
8245 return NULL_TREE;
8247 arg = fold_convert_loc (loc, type, arg);
8248 return fold_build1_loc (loc, ABS_EXPR, type, arg);
8251 /* Fold a call to abs, labs, llabs or imaxabs with argument ARG. */
8253 static tree
8254 fold_builtin_abs (location_t loc, tree arg, tree type)
8256 if (!validate_arg (arg, INTEGER_TYPE))
8257 return NULL_TREE;
8259 arg = fold_convert_loc (loc, type, arg);
8260 return fold_build1_loc (loc, ABS_EXPR, type, arg);
8263 /* Fold a call to fma, fmaf, or fmal with arguments ARG[012]. */
8265 static tree
8266 fold_builtin_fma (location_t loc, tree arg0, tree arg1, tree arg2, tree type)
8268 /* ??? Only expand to FMA_EXPR if it's directly supported. */
8269 if (validate_arg (arg0, REAL_TYPE)
8270 && validate_arg (arg1, REAL_TYPE)
8271 && validate_arg (arg2, REAL_TYPE)
8272 && optab_handler (fma_optab, TYPE_MODE (type)) != CODE_FOR_nothing)
8273 return fold_build3_loc (loc, FMA_EXPR, type, arg0, arg1, arg2);
8275 return NULL_TREE;
8278 /* Fold a call to builtin carg(a+bi) -> atan2(b,a). */
8280 static tree
8281 fold_builtin_carg (location_t loc, tree arg, tree type)
8283 if (validate_arg (arg, COMPLEX_TYPE)
8284 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg))) == REAL_TYPE)
8286 tree atan2_fn = mathfn_built_in (type, BUILT_IN_ATAN2);
8288 if (atan2_fn)
8290 tree new_arg = builtin_save_expr (arg);
8291 tree r_arg = fold_build1_loc (loc, REALPART_EXPR, type, new_arg);
8292 tree i_arg = fold_build1_loc (loc, IMAGPART_EXPR, type, new_arg);
8293 return build_call_expr_loc (loc, atan2_fn, 2, i_arg, r_arg);
8297 return NULL_TREE;
8300 /* Fold a call to builtin frexp, we can assume the base is 2. */
8302 static tree
8303 fold_builtin_frexp (location_t loc, tree arg0, tree arg1, tree rettype)
8305 if (! validate_arg (arg0, REAL_TYPE) || ! validate_arg (arg1, POINTER_TYPE))
8306 return NULL_TREE;
8308 STRIP_NOPS (arg0);
8310 if (!(TREE_CODE (arg0) == REAL_CST && ! TREE_OVERFLOW (arg0)))
8311 return NULL_TREE;
8313 arg1 = build_fold_indirect_ref_loc (loc, arg1);
8315 /* Proceed if a valid pointer type was passed in. */
8316 if (TYPE_MAIN_VARIANT (TREE_TYPE (arg1)) == integer_type_node)
8318 const REAL_VALUE_TYPE *const value = TREE_REAL_CST_PTR (arg0);
8319 tree frac, exp;
8321 switch (value->cl)
8323 case rvc_zero:
8324 /* For +-0, return (*exp = 0, +-0). */
8325 exp = integer_zero_node;
8326 frac = arg0;
8327 break;
8328 case rvc_nan:
8329 case rvc_inf:
8330 /* For +-NaN or +-Inf, *exp is unspecified, return arg0. */
8331 return omit_one_operand_loc (loc, rettype, arg0, arg1);
8332 case rvc_normal:
8334 /* Since the frexp function always expects base 2, and in
8335 GCC normalized significands are already in the range
8336 [0.5, 1.0), we have exactly what frexp wants. */
8337 REAL_VALUE_TYPE frac_rvt = *value;
8338 SET_REAL_EXP (&frac_rvt, 0);
8339 frac = build_real (rettype, frac_rvt);
8340 exp = build_int_cst (integer_type_node, REAL_EXP (value));
8342 break;
8343 default:
8344 gcc_unreachable ();
8347 /* Create the COMPOUND_EXPR (*arg1 = trunc, frac). */
8348 arg1 = fold_build2_loc (loc, MODIFY_EXPR, rettype, arg1, exp);
8349 TREE_SIDE_EFFECTS (arg1) = 1;
8350 return fold_build2_loc (loc, COMPOUND_EXPR, rettype, arg1, frac);
8353 return NULL_TREE;
8356 /* Fold a call to builtin modf. */
8358 static tree
8359 fold_builtin_modf (location_t loc, tree arg0, tree arg1, tree rettype)
8361 if (! validate_arg (arg0, REAL_TYPE) || ! validate_arg (arg1, POINTER_TYPE))
8362 return NULL_TREE;
8364 STRIP_NOPS (arg0);
8366 if (!(TREE_CODE (arg0) == REAL_CST && ! TREE_OVERFLOW (arg0)))
8367 return NULL_TREE;
8369 arg1 = build_fold_indirect_ref_loc (loc, arg1);
8371 /* Proceed if a valid pointer type was passed in. */
8372 if (TYPE_MAIN_VARIANT (TREE_TYPE (arg1)) == TYPE_MAIN_VARIANT (rettype))
8374 const REAL_VALUE_TYPE *const value = TREE_REAL_CST_PTR (arg0);
8375 REAL_VALUE_TYPE trunc, frac;
8377 switch (value->cl)
8379 case rvc_nan:
8380 case rvc_zero:
8381 /* For +-NaN or +-0, return (*arg1 = arg0, arg0). */
8382 trunc = frac = *value;
8383 break;
8384 case rvc_inf:
8385 /* For +-Inf, return (*arg1 = arg0, +-0). */
8386 frac = dconst0;
8387 frac.sign = value->sign;
8388 trunc = *value;
8389 break;
8390 case rvc_normal:
8391 /* Return (*arg1 = trunc(arg0), arg0-trunc(arg0)). */
8392 real_trunc (&trunc, VOIDmode, value);
8393 real_arithmetic (&frac, MINUS_EXPR, value, &trunc);
8394 /* If the original number was negative and already
8395 integral, then the fractional part is -0.0. */
8396 if (value->sign && frac.cl == rvc_zero)
8397 frac.sign = value->sign;
8398 break;
8401 /* Create the COMPOUND_EXPR (*arg1 = trunc, frac). */
8402 arg1 = fold_build2_loc (loc, MODIFY_EXPR, rettype, arg1,
8403 build_real (rettype, trunc));
8404 TREE_SIDE_EFFECTS (arg1) = 1;
8405 return fold_build2_loc (loc, COMPOUND_EXPR, rettype, arg1,
8406 build_real (rettype, frac));
8409 return NULL_TREE;
8412 /* Given a location LOC, an interclass builtin function decl FNDECL
8413 and its single argument ARG, return an folded expression computing
8414 the same, or NULL_TREE if we either couldn't or didn't want to fold
8415 (the latter happen if there's an RTL instruction available). */
8417 static tree
8418 fold_builtin_interclass_mathfn (location_t loc, tree fndecl, tree arg)
8420 machine_mode mode;
8422 if (!validate_arg (arg, REAL_TYPE))
8423 return NULL_TREE;
8425 if (interclass_mathfn_icode (arg, fndecl) != CODE_FOR_nothing)
8426 return NULL_TREE;
8428 mode = TYPE_MODE (TREE_TYPE (arg));
8430 bool is_ibm_extended = MODE_COMPOSITE_P (mode);
8432 /* If there is no optab, try generic code. */
8433 switch (DECL_FUNCTION_CODE (fndecl))
8435 tree result;
8437 CASE_FLT_FN (BUILT_IN_ISINF):
8439 /* isinf(x) -> isgreater(fabs(x),DBL_MAX). */
8440 tree const isgr_fn = builtin_decl_explicit (BUILT_IN_ISGREATER);
8441 tree type = TREE_TYPE (arg);
8442 REAL_VALUE_TYPE r;
8443 char buf[128];
8445 if (is_ibm_extended)
8447 /* NaN and Inf are encoded in the high-order double value
8448 only. The low-order value is not significant. */
8449 type = double_type_node;
8450 mode = DFmode;
8451 arg = fold_build1_loc (loc, NOP_EXPR, type, arg);
8453 get_max_float (REAL_MODE_FORMAT (mode), buf, sizeof (buf));
8454 real_from_string (&r, buf);
8455 result = build_call_expr (isgr_fn, 2,
8456 fold_build1_loc (loc, ABS_EXPR, type, arg),
8457 build_real (type, r));
8458 return result;
8460 CASE_FLT_FN (BUILT_IN_FINITE):
8461 case BUILT_IN_ISFINITE:
8463 /* isfinite(x) -> islessequal(fabs(x),DBL_MAX). */
8464 tree const isle_fn = builtin_decl_explicit (BUILT_IN_ISLESSEQUAL);
8465 tree type = TREE_TYPE (arg);
8466 REAL_VALUE_TYPE r;
8467 char buf[128];
8469 if (is_ibm_extended)
8471 /* NaN and Inf are encoded in the high-order double value
8472 only. The low-order value is not significant. */
8473 type = double_type_node;
8474 mode = DFmode;
8475 arg = fold_build1_loc (loc, NOP_EXPR, type, arg);
8477 get_max_float (REAL_MODE_FORMAT (mode), buf, sizeof (buf));
8478 real_from_string (&r, buf);
8479 result = build_call_expr (isle_fn, 2,
8480 fold_build1_loc (loc, ABS_EXPR, type, arg),
8481 build_real (type, r));
8482 /*result = fold_build2_loc (loc, UNGT_EXPR,
8483 TREE_TYPE (TREE_TYPE (fndecl)),
8484 fold_build1_loc (loc, ABS_EXPR, type, arg),
8485 build_real (type, r));
8486 result = fold_build1_loc (loc, TRUTH_NOT_EXPR,
8487 TREE_TYPE (TREE_TYPE (fndecl)),
8488 result);*/
8489 return result;
8491 case BUILT_IN_ISNORMAL:
8493 /* isnormal(x) -> isgreaterequal(fabs(x),DBL_MIN) &
8494 islessequal(fabs(x),DBL_MAX). */
8495 tree const isle_fn = builtin_decl_explicit (BUILT_IN_ISLESSEQUAL);
8496 tree type = TREE_TYPE (arg);
8497 tree orig_arg, max_exp, min_exp;
8498 machine_mode orig_mode = mode;
8499 REAL_VALUE_TYPE rmax, rmin;
8500 char buf[128];
8502 orig_arg = arg = builtin_save_expr (arg);
8503 if (is_ibm_extended)
8505 /* Use double to test the normal range of IBM extended
8506 precision. Emin for IBM extended precision is
8507 different to emin for IEEE double, being 53 higher
8508 since the low double exponent is at least 53 lower
8509 than the high double exponent. */
8510 type = double_type_node;
8511 mode = DFmode;
8512 arg = fold_build1_loc (loc, NOP_EXPR, type, arg);
8514 arg = fold_build1_loc (loc, ABS_EXPR, type, arg);
8516 get_max_float (REAL_MODE_FORMAT (mode), buf, sizeof (buf));
8517 real_from_string (&rmax, buf);
8518 sprintf (buf, "0x1p%d", REAL_MODE_FORMAT (orig_mode)->emin - 1);
8519 real_from_string (&rmin, buf);
8520 max_exp = build_real (type, rmax);
8521 min_exp = build_real (type, rmin);
8523 max_exp = build_call_expr (isle_fn, 2, arg, max_exp);
8524 if (is_ibm_extended)
8526 /* Testing the high end of the range is done just using
8527 the high double, using the same test as isfinite().
8528 For the subnormal end of the range we first test the
8529 high double, then if its magnitude is equal to the
8530 limit of 0x1p-969, we test whether the low double is
8531 non-zero and opposite sign to the high double. */
8532 tree const islt_fn = builtin_decl_explicit (BUILT_IN_ISLESS);
8533 tree const isgt_fn = builtin_decl_explicit (BUILT_IN_ISGREATER);
8534 tree gt_min = build_call_expr (isgt_fn, 2, arg, min_exp);
8535 tree eq_min = fold_build2 (EQ_EXPR, integer_type_node,
8536 arg, min_exp);
8537 tree as_complex = build1 (VIEW_CONVERT_EXPR,
8538 complex_double_type_node, orig_arg);
8539 tree hi_dbl = build1 (REALPART_EXPR, type, as_complex);
8540 tree lo_dbl = build1 (IMAGPART_EXPR, type, as_complex);
8541 tree zero = build_real (type, dconst0);
8542 tree hilt = build_call_expr (islt_fn, 2, hi_dbl, zero);
8543 tree lolt = build_call_expr (islt_fn, 2, lo_dbl, zero);
8544 tree logt = build_call_expr (isgt_fn, 2, lo_dbl, zero);
8545 tree ok_lo = fold_build1 (TRUTH_NOT_EXPR, integer_type_node,
8546 fold_build3 (COND_EXPR,
8547 integer_type_node,
8548 hilt, logt, lolt));
8549 eq_min = fold_build2 (TRUTH_ANDIF_EXPR, integer_type_node,
8550 eq_min, ok_lo);
8551 min_exp = fold_build2 (TRUTH_ORIF_EXPR, integer_type_node,
8552 gt_min, eq_min);
8554 else
8556 tree const isge_fn
8557 = builtin_decl_explicit (BUILT_IN_ISGREATEREQUAL);
8558 min_exp = build_call_expr (isge_fn, 2, arg, min_exp);
8560 result = fold_build2 (BIT_AND_EXPR, integer_type_node,
8561 max_exp, min_exp);
8562 return result;
8564 default:
8565 break;
8568 return NULL_TREE;
8571 /* Fold a call to __builtin_isnan(), __builtin_isinf, __builtin_finite.
8572 ARG is the argument for the call. */
8574 static tree
8575 fold_builtin_classify (location_t loc, tree fndecl, tree arg, int builtin_index)
8577 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8579 if (!validate_arg (arg, REAL_TYPE))
8580 return NULL_TREE;
8582 switch (builtin_index)
8584 case BUILT_IN_ISINF:
8585 if (!HONOR_INFINITIES (arg))
8586 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
8588 return NULL_TREE;
8590 case BUILT_IN_ISINF_SIGN:
8592 /* isinf_sign(x) -> isinf(x) ? (signbit(x) ? -1 : 1) : 0 */
8593 /* In a boolean context, GCC will fold the inner COND_EXPR to
8594 1. So e.g. "if (isinf_sign(x))" would be folded to just
8595 "if (isinf(x) ? 1 : 0)" which becomes "if (isinf(x))". */
8596 tree signbit_fn = builtin_decl_explicit (BUILT_IN_SIGNBIT);
8597 tree isinf_fn = builtin_decl_explicit (BUILT_IN_ISINF);
8598 tree tmp = NULL_TREE;
8600 arg = builtin_save_expr (arg);
8602 if (signbit_fn && isinf_fn)
8604 tree signbit_call = build_call_expr_loc (loc, signbit_fn, 1, arg);
8605 tree isinf_call = build_call_expr_loc (loc, isinf_fn, 1, arg);
8607 signbit_call = fold_build2_loc (loc, NE_EXPR, integer_type_node,
8608 signbit_call, integer_zero_node);
8609 isinf_call = fold_build2_loc (loc, NE_EXPR, integer_type_node,
8610 isinf_call, integer_zero_node);
8612 tmp = fold_build3_loc (loc, COND_EXPR, integer_type_node, signbit_call,
8613 integer_minus_one_node, integer_one_node);
8614 tmp = fold_build3_loc (loc, COND_EXPR, integer_type_node,
8615 isinf_call, tmp,
8616 integer_zero_node);
8619 return tmp;
8622 case BUILT_IN_ISFINITE:
8623 if (!HONOR_NANS (arg)
8624 && !HONOR_INFINITIES (arg))
8625 return omit_one_operand_loc (loc, type, integer_one_node, arg);
8627 return NULL_TREE;
8629 case BUILT_IN_ISNAN:
8630 if (!HONOR_NANS (arg))
8631 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
8634 bool is_ibm_extended = MODE_COMPOSITE_P (TYPE_MODE (TREE_TYPE (arg)));
8635 if (is_ibm_extended)
8637 /* NaN and Inf are encoded in the high-order double value
8638 only. The low-order value is not significant. */
8639 arg = fold_build1_loc (loc, NOP_EXPR, double_type_node, arg);
8642 arg = builtin_save_expr (arg);
8643 return fold_build2_loc (loc, UNORDERED_EXPR, type, arg, arg);
8645 default:
8646 gcc_unreachable ();
8650 /* Fold a call to __builtin_fpclassify(int, int, int, int, int, ...).
8651 This builtin will generate code to return the appropriate floating
8652 point classification depending on the value of the floating point
8653 number passed in. The possible return values must be supplied as
8654 int arguments to the call in the following order: FP_NAN, FP_INFINITE,
8655 FP_NORMAL, FP_SUBNORMAL and FP_ZERO. The ellipses is for exactly
8656 one floating point argument which is "type generic". */
8658 static tree
8659 fold_builtin_fpclassify (location_t loc, tree *args, int nargs)
8661 tree fp_nan, fp_infinite, fp_normal, fp_subnormal, fp_zero,
8662 arg, type, res, tmp;
8663 machine_mode mode;
8664 REAL_VALUE_TYPE r;
8665 char buf[128];
8667 /* Verify the required arguments in the original call. */
8668 if (nargs != 6
8669 || !validate_arg (args[0], INTEGER_TYPE)
8670 || !validate_arg (args[1], INTEGER_TYPE)
8671 || !validate_arg (args[2], INTEGER_TYPE)
8672 || !validate_arg (args[3], INTEGER_TYPE)
8673 || !validate_arg (args[4], INTEGER_TYPE)
8674 || !validate_arg (args[5], REAL_TYPE))
8675 return NULL_TREE;
8677 fp_nan = args[0];
8678 fp_infinite = args[1];
8679 fp_normal = args[2];
8680 fp_subnormal = args[3];
8681 fp_zero = args[4];
8682 arg = args[5];
8683 type = TREE_TYPE (arg);
8684 mode = TYPE_MODE (type);
8685 arg = builtin_save_expr (fold_build1_loc (loc, ABS_EXPR, type, arg));
8687 /* fpclassify(x) ->
8688 isnan(x) ? FP_NAN :
8689 (fabs(x) == Inf ? FP_INFINITE :
8690 (fabs(x) >= DBL_MIN ? FP_NORMAL :
8691 (x == 0 ? FP_ZERO : FP_SUBNORMAL))). */
8693 tmp = fold_build2_loc (loc, EQ_EXPR, integer_type_node, arg,
8694 build_real (type, dconst0));
8695 res = fold_build3_loc (loc, COND_EXPR, integer_type_node,
8696 tmp, fp_zero, fp_subnormal);
8698 sprintf (buf, "0x1p%d", REAL_MODE_FORMAT (mode)->emin - 1);
8699 real_from_string (&r, buf);
8700 tmp = fold_build2_loc (loc, GE_EXPR, integer_type_node,
8701 arg, build_real (type, r));
8702 res = fold_build3_loc (loc, COND_EXPR, integer_type_node, tmp, fp_normal, res);
8704 if (HONOR_INFINITIES (mode))
8706 real_inf (&r);
8707 tmp = fold_build2_loc (loc, EQ_EXPR, integer_type_node, arg,
8708 build_real (type, r));
8709 res = fold_build3_loc (loc, COND_EXPR, integer_type_node, tmp,
8710 fp_infinite, res);
8713 if (HONOR_NANS (mode))
8715 tmp = fold_build2_loc (loc, ORDERED_EXPR, integer_type_node, arg, arg);
8716 res = fold_build3_loc (loc, COND_EXPR, integer_type_node, tmp, res, fp_nan);
8719 return res;
8722 /* Fold a call to an unordered comparison function such as
8723 __builtin_isgreater(). FNDECL is the FUNCTION_DECL for the function
8724 being called and ARG0 and ARG1 are the arguments for the call.
8725 UNORDERED_CODE and ORDERED_CODE are comparison codes that give
8726 the opposite of the desired result. UNORDERED_CODE is used
8727 for modes that can hold NaNs and ORDERED_CODE is used for
8728 the rest. */
8730 static tree
8731 fold_builtin_unordered_cmp (location_t loc, tree fndecl, tree arg0, tree arg1,
8732 enum tree_code unordered_code,
8733 enum tree_code ordered_code)
8735 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8736 enum tree_code code;
8737 tree type0, type1;
8738 enum tree_code code0, code1;
8739 tree cmp_type = NULL_TREE;
8741 type0 = TREE_TYPE (arg0);
8742 type1 = TREE_TYPE (arg1);
8744 code0 = TREE_CODE (type0);
8745 code1 = TREE_CODE (type1);
8747 if (code0 == REAL_TYPE && code1 == REAL_TYPE)
8748 /* Choose the wider of two real types. */
8749 cmp_type = TYPE_PRECISION (type0) >= TYPE_PRECISION (type1)
8750 ? type0 : type1;
8751 else if (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
8752 cmp_type = type0;
8753 else if (code0 == INTEGER_TYPE && code1 == REAL_TYPE)
8754 cmp_type = type1;
8756 arg0 = fold_convert_loc (loc, cmp_type, arg0);
8757 arg1 = fold_convert_loc (loc, cmp_type, arg1);
8759 if (unordered_code == UNORDERED_EXPR)
8761 if (!HONOR_NANS (arg0))
8762 return omit_two_operands_loc (loc, type, integer_zero_node, arg0, arg1);
8763 return fold_build2_loc (loc, UNORDERED_EXPR, type, arg0, arg1);
8766 code = HONOR_NANS (arg0) ? unordered_code : ordered_code;
8767 return fold_build1_loc (loc, TRUTH_NOT_EXPR, type,
8768 fold_build2_loc (loc, code, type, arg0, arg1));
8771 /* Fold __builtin_{,s,u}{add,sub,mul}{,l,ll}_overflow, either into normal
8772 arithmetics if it can never overflow, or into internal functions that
8773 return both result of arithmetics and overflowed boolean flag in
8774 a complex integer result, or some other check for overflow.
8775 Similarly fold __builtin_{add,sub,mul}_overflow_p to just the overflow
8776 checking part of that. */
8778 static tree
8779 fold_builtin_arith_overflow (location_t loc, enum built_in_function fcode,
8780 tree arg0, tree arg1, tree arg2)
8782 enum internal_fn ifn = IFN_LAST;
8783 /* The code of the expression corresponding to the type-generic
8784 built-in, or ERROR_MARK for the type-specific ones. */
8785 enum tree_code opcode = ERROR_MARK;
8786 bool ovf_only = false;
8788 switch (fcode)
8790 case BUILT_IN_ADD_OVERFLOW_P:
8791 ovf_only = true;
8792 /* FALLTHRU */
8793 case BUILT_IN_ADD_OVERFLOW:
8794 opcode = PLUS_EXPR;
8795 /* FALLTHRU */
8796 case BUILT_IN_SADD_OVERFLOW:
8797 case BUILT_IN_SADDL_OVERFLOW:
8798 case BUILT_IN_SADDLL_OVERFLOW:
8799 case BUILT_IN_UADD_OVERFLOW:
8800 case BUILT_IN_UADDL_OVERFLOW:
8801 case BUILT_IN_UADDLL_OVERFLOW:
8802 ifn = IFN_ADD_OVERFLOW;
8803 break;
8804 case BUILT_IN_SUB_OVERFLOW_P:
8805 ovf_only = true;
8806 /* FALLTHRU */
8807 case BUILT_IN_SUB_OVERFLOW:
8808 opcode = MINUS_EXPR;
8809 /* FALLTHRU */
8810 case BUILT_IN_SSUB_OVERFLOW:
8811 case BUILT_IN_SSUBL_OVERFLOW:
8812 case BUILT_IN_SSUBLL_OVERFLOW:
8813 case BUILT_IN_USUB_OVERFLOW:
8814 case BUILT_IN_USUBL_OVERFLOW:
8815 case BUILT_IN_USUBLL_OVERFLOW:
8816 ifn = IFN_SUB_OVERFLOW;
8817 break;
8818 case BUILT_IN_MUL_OVERFLOW_P:
8819 ovf_only = true;
8820 /* FALLTHRU */
8821 case BUILT_IN_MUL_OVERFLOW:
8822 opcode = MULT_EXPR;
8823 /* FALLTHRU */
8824 case BUILT_IN_SMUL_OVERFLOW:
8825 case BUILT_IN_SMULL_OVERFLOW:
8826 case BUILT_IN_SMULLL_OVERFLOW:
8827 case BUILT_IN_UMUL_OVERFLOW:
8828 case BUILT_IN_UMULL_OVERFLOW:
8829 case BUILT_IN_UMULLL_OVERFLOW:
8830 ifn = IFN_MUL_OVERFLOW;
8831 break;
8832 default:
8833 gcc_unreachable ();
8836 /* For the "generic" overloads, the first two arguments can have different
8837 types and the last argument determines the target type to use to check
8838 for overflow. The arguments of the other overloads all have the same
8839 type. */
8840 tree type = ovf_only ? TREE_TYPE (arg2) : TREE_TYPE (TREE_TYPE (arg2));
8842 /* For the __builtin_{add,sub,mul}_overflow_p builtins, when the first two
8843 arguments are constant, attempt to fold the built-in call into a constant
8844 expression indicating whether or not it detected an overflow. */
8845 if (ovf_only
8846 && TREE_CODE (arg0) == INTEGER_CST
8847 && TREE_CODE (arg1) == INTEGER_CST)
8848 /* Perform the computation in the target type and check for overflow. */
8849 return omit_one_operand_loc (loc, boolean_type_node,
8850 arith_overflowed_p (opcode, type, arg0, arg1)
8851 ? boolean_true_node : boolean_false_node,
8852 arg2);
8854 tree ctype = build_complex_type (type);
8855 tree call = build_call_expr_internal_loc (loc, ifn, ctype,
8856 2, arg0, arg1);
8857 tree tgt = save_expr (call);
8858 tree intres = build1_loc (loc, REALPART_EXPR, type, tgt);
8859 tree ovfres = build1_loc (loc, IMAGPART_EXPR, type, tgt);
8860 ovfres = fold_convert_loc (loc, boolean_type_node, ovfres);
8862 if (ovf_only)
8863 return omit_one_operand_loc (loc, boolean_type_node, ovfres, arg2);
8865 tree mem_arg2 = build_fold_indirect_ref_loc (loc, arg2);
8866 tree store
8867 = fold_build2_loc (loc, MODIFY_EXPR, void_type_node, mem_arg2, intres);
8868 return build2_loc (loc, COMPOUND_EXPR, boolean_type_node, store, ovfres);
8871 /* Fold a call to __builtin_FILE to a constant string. */
8873 static inline tree
8874 fold_builtin_FILE (location_t loc)
8876 if (const char *fname = LOCATION_FILE (loc))
8878 /* The documentation says this builtin is equivalent to the preprocessor
8879 __FILE__ macro so it appears appropriate to use the same file prefix
8880 mappings. */
8881 fname = remap_macro_filename (fname);
8882 return build_string_literal (strlen (fname) + 1, fname);
8885 return build_string_literal (1, "");
8888 /* Fold a call to __builtin_FUNCTION to a constant string. */
8890 static inline tree
8891 fold_builtin_FUNCTION ()
8893 const char *name = "";
8895 if (current_function_decl)
8896 name = lang_hooks.decl_printable_name (current_function_decl, 0);
8898 return build_string_literal (strlen (name) + 1, name);
8901 /* Fold a call to __builtin_LINE to an integer constant. */
8903 static inline tree
8904 fold_builtin_LINE (location_t loc, tree type)
8906 return build_int_cst (type, LOCATION_LINE (loc));
8909 /* Fold a call to built-in function FNDECL with 0 arguments.
8910 This function returns NULL_TREE if no simplification was possible. */
8912 static tree
8913 fold_builtin_0 (location_t loc, tree fndecl)
8915 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8916 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
8917 switch (fcode)
8919 case BUILT_IN_FILE:
8920 return fold_builtin_FILE (loc);
8922 case BUILT_IN_FUNCTION:
8923 return fold_builtin_FUNCTION ();
8925 case BUILT_IN_LINE:
8926 return fold_builtin_LINE (loc, type);
8928 CASE_FLT_FN (BUILT_IN_INF):
8929 CASE_FLT_FN_FLOATN_NX (BUILT_IN_INF):
8930 case BUILT_IN_INFD32:
8931 case BUILT_IN_INFD64:
8932 case BUILT_IN_INFD128:
8933 return fold_builtin_inf (loc, type, true);
8935 CASE_FLT_FN (BUILT_IN_HUGE_VAL):
8936 CASE_FLT_FN_FLOATN_NX (BUILT_IN_HUGE_VAL):
8937 return fold_builtin_inf (loc, type, false);
8939 case BUILT_IN_CLASSIFY_TYPE:
8940 return fold_builtin_classify_type (NULL_TREE);
8942 default:
8943 break;
8945 return NULL_TREE;
8948 /* Fold a call to built-in function FNDECL with 1 argument, ARG0.
8949 This function returns NULL_TREE if no simplification was possible. */
8951 static tree
8952 fold_builtin_1 (location_t loc, tree fndecl, tree arg0)
8954 tree type = TREE_TYPE (TREE_TYPE (fndecl));
8955 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
8957 if (TREE_CODE (arg0) == ERROR_MARK)
8958 return NULL_TREE;
8960 if (tree ret = fold_const_call (as_combined_fn (fcode), type, arg0))
8961 return ret;
8963 switch (fcode)
8965 case BUILT_IN_CONSTANT_P:
8967 tree val = fold_builtin_constant_p (arg0);
8969 /* Gimplification will pull the CALL_EXPR for the builtin out of
8970 an if condition. When not optimizing, we'll not CSE it back.
8971 To avoid link error types of regressions, return false now. */
8972 if (!val && !optimize)
8973 val = integer_zero_node;
8975 return val;
8978 case BUILT_IN_CLASSIFY_TYPE:
8979 return fold_builtin_classify_type (arg0);
8981 case BUILT_IN_STRLEN:
8982 return fold_builtin_strlen (loc, type, arg0);
8984 CASE_FLT_FN (BUILT_IN_FABS):
8985 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FABS):
8986 case BUILT_IN_FABSD32:
8987 case BUILT_IN_FABSD64:
8988 case BUILT_IN_FABSD128:
8989 return fold_builtin_fabs (loc, arg0, type);
8991 case BUILT_IN_ABS:
8992 case BUILT_IN_LABS:
8993 case BUILT_IN_LLABS:
8994 case BUILT_IN_IMAXABS:
8995 return fold_builtin_abs (loc, arg0, type);
8997 CASE_FLT_FN (BUILT_IN_CONJ):
8998 if (validate_arg (arg0, COMPLEX_TYPE)
8999 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg0))) == REAL_TYPE)
9000 return fold_build1_loc (loc, CONJ_EXPR, type, arg0);
9001 break;
9003 CASE_FLT_FN (BUILT_IN_CREAL):
9004 if (validate_arg (arg0, COMPLEX_TYPE)
9005 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg0))) == REAL_TYPE)
9006 return non_lvalue_loc (loc, fold_build1_loc (loc, REALPART_EXPR, type, arg0));
9007 break;
9009 CASE_FLT_FN (BUILT_IN_CIMAG):
9010 if (validate_arg (arg0, COMPLEX_TYPE)
9011 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg0))) == REAL_TYPE)
9012 return non_lvalue_loc (loc, fold_build1_loc (loc, IMAGPART_EXPR, type, arg0));
9013 break;
9015 CASE_FLT_FN (BUILT_IN_CARG):
9016 return fold_builtin_carg (loc, arg0, type);
9018 case BUILT_IN_ISASCII:
9019 return fold_builtin_isascii (loc, arg0);
9021 case BUILT_IN_TOASCII:
9022 return fold_builtin_toascii (loc, arg0);
9024 case BUILT_IN_ISDIGIT:
9025 return fold_builtin_isdigit (loc, arg0);
9027 CASE_FLT_FN (BUILT_IN_FINITE):
9028 case BUILT_IN_FINITED32:
9029 case BUILT_IN_FINITED64:
9030 case BUILT_IN_FINITED128:
9031 case BUILT_IN_ISFINITE:
9033 tree ret = fold_builtin_classify (loc, fndecl, arg0, BUILT_IN_ISFINITE);
9034 if (ret)
9035 return ret;
9036 return fold_builtin_interclass_mathfn (loc, fndecl, arg0);
9039 CASE_FLT_FN (BUILT_IN_ISINF):
9040 case BUILT_IN_ISINFD32:
9041 case BUILT_IN_ISINFD64:
9042 case BUILT_IN_ISINFD128:
9044 tree ret = fold_builtin_classify (loc, fndecl, arg0, BUILT_IN_ISINF);
9045 if (ret)
9046 return ret;
9047 return fold_builtin_interclass_mathfn (loc, fndecl, arg0);
9050 case BUILT_IN_ISNORMAL:
9051 return fold_builtin_interclass_mathfn (loc, fndecl, arg0);
9053 case BUILT_IN_ISINF_SIGN:
9054 return fold_builtin_classify (loc, fndecl, arg0, BUILT_IN_ISINF_SIGN);
9056 CASE_FLT_FN (BUILT_IN_ISNAN):
9057 case BUILT_IN_ISNAND32:
9058 case BUILT_IN_ISNAND64:
9059 case BUILT_IN_ISNAND128:
9060 return fold_builtin_classify (loc, fndecl, arg0, BUILT_IN_ISNAN);
9062 case BUILT_IN_FREE:
9063 if (integer_zerop (arg0))
9064 return build_empty_stmt (loc);
9065 break;
9067 default:
9068 break;
9071 return NULL_TREE;
9075 /* Fold a call to built-in function FNDECL with 2 arguments, ARG0 and ARG1.
9076 This function returns NULL_TREE if no simplification was possible. */
9078 static tree
9079 fold_builtin_2 (location_t loc, tree fndecl, tree arg0, tree arg1)
9081 tree type = TREE_TYPE (TREE_TYPE (fndecl));
9082 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
9084 if (TREE_CODE (arg0) == ERROR_MARK
9085 || TREE_CODE (arg1) == ERROR_MARK)
9086 return NULL_TREE;
9088 if (tree ret = fold_const_call (as_combined_fn (fcode), type, arg0, arg1))
9089 return ret;
9091 switch (fcode)
9093 CASE_FLT_FN_REENT (BUILT_IN_GAMMA): /* GAMMA_R */
9094 CASE_FLT_FN_REENT (BUILT_IN_LGAMMA): /* LGAMMA_R */
9095 if (validate_arg (arg0, REAL_TYPE)
9096 && validate_arg (arg1, POINTER_TYPE))
9097 return do_mpfr_lgamma_r (arg0, arg1, type);
9098 break;
9100 CASE_FLT_FN (BUILT_IN_FREXP):
9101 return fold_builtin_frexp (loc, arg0, arg1, type);
9103 CASE_FLT_FN (BUILT_IN_MODF):
9104 return fold_builtin_modf (loc, arg0, arg1, type);
9106 case BUILT_IN_STRSPN:
9107 return fold_builtin_strspn (loc, arg0, arg1);
9109 case BUILT_IN_STRCSPN:
9110 return fold_builtin_strcspn (loc, arg0, arg1);
9112 case BUILT_IN_STRPBRK:
9113 return fold_builtin_strpbrk (loc, arg0, arg1, type);
9115 case BUILT_IN_EXPECT:
9116 return fold_builtin_expect (loc, arg0, arg1, NULL_TREE);
9118 case BUILT_IN_ISGREATER:
9119 return fold_builtin_unordered_cmp (loc, fndecl,
9120 arg0, arg1, UNLE_EXPR, LE_EXPR);
9121 case BUILT_IN_ISGREATEREQUAL:
9122 return fold_builtin_unordered_cmp (loc, fndecl,
9123 arg0, arg1, UNLT_EXPR, LT_EXPR);
9124 case BUILT_IN_ISLESS:
9125 return fold_builtin_unordered_cmp (loc, fndecl,
9126 arg0, arg1, UNGE_EXPR, GE_EXPR);
9127 case BUILT_IN_ISLESSEQUAL:
9128 return fold_builtin_unordered_cmp (loc, fndecl,
9129 arg0, arg1, UNGT_EXPR, GT_EXPR);
9130 case BUILT_IN_ISLESSGREATER:
9131 return fold_builtin_unordered_cmp (loc, fndecl,
9132 arg0, arg1, UNEQ_EXPR, EQ_EXPR);
9133 case BUILT_IN_ISUNORDERED:
9134 return fold_builtin_unordered_cmp (loc, fndecl,
9135 arg0, arg1, UNORDERED_EXPR,
9136 NOP_EXPR);
9138 /* We do the folding for va_start in the expander. */
9139 case BUILT_IN_VA_START:
9140 break;
9142 case BUILT_IN_OBJECT_SIZE:
9143 return fold_builtin_object_size (arg0, arg1);
9145 case BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE:
9146 return fold_builtin_atomic_always_lock_free (arg0, arg1);
9148 case BUILT_IN_ATOMIC_IS_LOCK_FREE:
9149 return fold_builtin_atomic_is_lock_free (arg0, arg1);
9151 default:
9152 break;
9154 return NULL_TREE;
9157 /* Fold a call to built-in function FNDECL with 3 arguments, ARG0, ARG1,
9158 and ARG2.
9159 This function returns NULL_TREE if no simplification was possible. */
9161 static tree
9162 fold_builtin_3 (location_t loc, tree fndecl,
9163 tree arg0, tree arg1, tree arg2)
9165 tree type = TREE_TYPE (TREE_TYPE (fndecl));
9166 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
9168 if (TREE_CODE (arg0) == ERROR_MARK
9169 || TREE_CODE (arg1) == ERROR_MARK
9170 || TREE_CODE (arg2) == ERROR_MARK)
9171 return NULL_TREE;
9173 if (tree ret = fold_const_call (as_combined_fn (fcode), type,
9174 arg0, arg1, arg2))
9175 return ret;
9177 switch (fcode)
9180 CASE_FLT_FN (BUILT_IN_SINCOS):
9181 return fold_builtin_sincos (loc, arg0, arg1, arg2);
9183 CASE_FLT_FN (BUILT_IN_FMA):
9184 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMA):
9185 return fold_builtin_fma (loc, arg0, arg1, arg2, type);
9187 CASE_FLT_FN (BUILT_IN_REMQUO):
9188 if (validate_arg (arg0, REAL_TYPE)
9189 && validate_arg (arg1, REAL_TYPE)
9190 && validate_arg (arg2, POINTER_TYPE))
9191 return do_mpfr_remquo (arg0, arg1, arg2);
9192 break;
9194 case BUILT_IN_MEMCMP:
9195 return fold_builtin_memcmp (loc, arg0, arg1, arg2);
9197 case BUILT_IN_EXPECT:
9198 return fold_builtin_expect (loc, arg0, arg1, arg2);
9200 case BUILT_IN_ADD_OVERFLOW:
9201 case BUILT_IN_SUB_OVERFLOW:
9202 case BUILT_IN_MUL_OVERFLOW:
9203 case BUILT_IN_ADD_OVERFLOW_P:
9204 case BUILT_IN_SUB_OVERFLOW_P:
9205 case BUILT_IN_MUL_OVERFLOW_P:
9206 case BUILT_IN_SADD_OVERFLOW:
9207 case BUILT_IN_SADDL_OVERFLOW:
9208 case BUILT_IN_SADDLL_OVERFLOW:
9209 case BUILT_IN_SSUB_OVERFLOW:
9210 case BUILT_IN_SSUBL_OVERFLOW:
9211 case BUILT_IN_SSUBLL_OVERFLOW:
9212 case BUILT_IN_SMUL_OVERFLOW:
9213 case BUILT_IN_SMULL_OVERFLOW:
9214 case BUILT_IN_SMULLL_OVERFLOW:
9215 case BUILT_IN_UADD_OVERFLOW:
9216 case BUILT_IN_UADDL_OVERFLOW:
9217 case BUILT_IN_UADDLL_OVERFLOW:
9218 case BUILT_IN_USUB_OVERFLOW:
9219 case BUILT_IN_USUBL_OVERFLOW:
9220 case BUILT_IN_USUBLL_OVERFLOW:
9221 case BUILT_IN_UMUL_OVERFLOW:
9222 case BUILT_IN_UMULL_OVERFLOW:
9223 case BUILT_IN_UMULLL_OVERFLOW:
9224 return fold_builtin_arith_overflow (loc, fcode, arg0, arg1, arg2);
9226 default:
9227 break;
9229 return NULL_TREE;
9232 /* Fold a call to built-in function FNDECL. ARGS is an array of NARGS
9233 arguments. IGNORE is true if the result of the
9234 function call is ignored. This function returns NULL_TREE if no
9235 simplification was possible. */
9237 tree
9238 fold_builtin_n (location_t loc, tree fndecl, tree *args, int nargs, bool)
9240 tree ret = NULL_TREE;
9242 switch (nargs)
9244 case 0:
9245 ret = fold_builtin_0 (loc, fndecl);
9246 break;
9247 case 1:
9248 ret = fold_builtin_1 (loc, fndecl, args[0]);
9249 break;
9250 case 2:
9251 ret = fold_builtin_2 (loc, fndecl, args[0], args[1]);
9252 break;
9253 case 3:
9254 ret = fold_builtin_3 (loc, fndecl, args[0], args[1], args[2]);
9255 break;
9256 default:
9257 ret = fold_builtin_varargs (loc, fndecl, args, nargs);
9258 break;
9260 if (ret)
9262 ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
9263 SET_EXPR_LOCATION (ret, loc);
9264 TREE_NO_WARNING (ret) = 1;
9265 return ret;
9267 return NULL_TREE;
9270 /* Construct a new CALL_EXPR to FNDECL using the tail of the argument
9271 list ARGS along with N new arguments in NEWARGS. SKIP is the number
9272 of arguments in ARGS to be omitted. OLDNARGS is the number of
9273 elements in ARGS. */
9275 static tree
9276 rewrite_call_expr_valist (location_t loc, int oldnargs, tree *args,
9277 int skip, tree fndecl, int n, va_list newargs)
9279 int nargs = oldnargs - skip + n;
9280 tree *buffer;
9282 if (n > 0)
9284 int i, j;
9286 buffer = XALLOCAVEC (tree, nargs);
9287 for (i = 0; i < n; i++)
9288 buffer[i] = va_arg (newargs, tree);
9289 for (j = skip; j < oldnargs; j++, i++)
9290 buffer[i] = args[j];
9292 else
9293 buffer = args + skip;
9295 return build_call_expr_loc_array (loc, fndecl, nargs, buffer);
9298 /* Return true if FNDECL shouldn't be folded right now.
9299 If a built-in function has an inline attribute always_inline
9300 wrapper, defer folding it after always_inline functions have
9301 been inlined, otherwise e.g. -D_FORTIFY_SOURCE checking
9302 might not be performed. */
9304 bool
9305 avoid_folding_inline_builtin (tree fndecl)
9307 return (DECL_DECLARED_INLINE_P (fndecl)
9308 && DECL_DISREGARD_INLINE_LIMITS (fndecl)
9309 && cfun
9310 && !cfun->always_inline_functions_inlined
9311 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fndecl)));
9314 /* A wrapper function for builtin folding that prevents warnings for
9315 "statement without effect" and the like, caused by removing the
9316 call node earlier than the warning is generated. */
9318 tree
9319 fold_call_expr (location_t loc, tree exp, bool ignore)
9321 tree ret = NULL_TREE;
9322 tree fndecl = get_callee_fndecl (exp);
9323 if (fndecl
9324 && TREE_CODE (fndecl) == FUNCTION_DECL
9325 && DECL_BUILT_IN (fndecl)
9326 /* If CALL_EXPR_VA_ARG_PACK is set, the arguments aren't finalized
9327 yet. Defer folding until we see all the arguments
9328 (after inlining). */
9329 && !CALL_EXPR_VA_ARG_PACK (exp))
9331 int nargs = call_expr_nargs (exp);
9333 /* Before gimplification CALL_EXPR_VA_ARG_PACK is not set, but
9334 instead last argument is __builtin_va_arg_pack (). Defer folding
9335 even in that case, until arguments are finalized. */
9336 if (nargs && TREE_CODE (CALL_EXPR_ARG (exp, nargs - 1)) == CALL_EXPR)
9338 tree fndecl2 = get_callee_fndecl (CALL_EXPR_ARG (exp, nargs - 1));
9339 if (fndecl2
9340 && TREE_CODE (fndecl2) == FUNCTION_DECL
9341 && DECL_BUILT_IN_CLASS (fndecl2) == BUILT_IN_NORMAL
9342 && DECL_FUNCTION_CODE (fndecl2) == BUILT_IN_VA_ARG_PACK)
9343 return NULL_TREE;
9346 if (avoid_folding_inline_builtin (fndecl))
9347 return NULL_TREE;
9349 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
9350 return targetm.fold_builtin (fndecl, call_expr_nargs (exp),
9351 CALL_EXPR_ARGP (exp), ignore);
9352 else
9354 tree *args = CALL_EXPR_ARGP (exp);
9355 ret = fold_builtin_n (loc, fndecl, args, nargs, ignore);
9356 if (ret)
9357 return ret;
9360 return NULL_TREE;
9363 /* Fold a CALL_EXPR with type TYPE with FN as the function expression.
9364 N arguments are passed in the array ARGARRAY. Return a folded
9365 expression or NULL_TREE if no simplification was possible. */
9367 tree
9368 fold_builtin_call_array (location_t loc, tree,
9369 tree fn,
9370 int n,
9371 tree *argarray)
9373 if (TREE_CODE (fn) != ADDR_EXPR)
9374 return NULL_TREE;
9376 tree fndecl = TREE_OPERAND (fn, 0);
9377 if (TREE_CODE (fndecl) == FUNCTION_DECL
9378 && DECL_BUILT_IN (fndecl))
9380 /* If last argument is __builtin_va_arg_pack (), arguments to this
9381 function are not finalized yet. Defer folding until they are. */
9382 if (n && TREE_CODE (argarray[n - 1]) == CALL_EXPR)
9384 tree fndecl2 = get_callee_fndecl (argarray[n - 1]);
9385 if (fndecl2
9386 && TREE_CODE (fndecl2) == FUNCTION_DECL
9387 && DECL_BUILT_IN_CLASS (fndecl2) == BUILT_IN_NORMAL
9388 && DECL_FUNCTION_CODE (fndecl2) == BUILT_IN_VA_ARG_PACK)
9389 return NULL_TREE;
9391 if (avoid_folding_inline_builtin (fndecl))
9392 return NULL_TREE;
9393 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
9394 return targetm.fold_builtin (fndecl, n, argarray, false);
9395 else
9396 return fold_builtin_n (loc, fndecl, argarray, n, false);
9399 return NULL_TREE;
9402 /* Construct a new CALL_EXPR using the tail of the argument list of EXP
9403 along with N new arguments specified as the "..." parameters. SKIP
9404 is the number of arguments in EXP to be omitted. This function is used
9405 to do varargs-to-varargs transformations. */
9407 static tree
9408 rewrite_call_expr (location_t loc, tree exp, int skip, tree fndecl, int n, ...)
9410 va_list ap;
9411 tree t;
9413 va_start (ap, n);
9414 t = rewrite_call_expr_valist (loc, call_expr_nargs (exp),
9415 CALL_EXPR_ARGP (exp), skip, fndecl, n, ap);
9416 va_end (ap);
9418 return t;
9421 /* Validate a single argument ARG against a tree code CODE representing
9422 a type. Return true when argument is valid. */
9424 static bool
9425 validate_arg (const_tree arg, enum tree_code code)
9427 if (!arg)
9428 return false;
9429 else if (code == POINTER_TYPE)
9430 return POINTER_TYPE_P (TREE_TYPE (arg));
9431 else if (code == INTEGER_TYPE)
9432 return INTEGRAL_TYPE_P (TREE_TYPE (arg));
9433 return code == TREE_CODE (TREE_TYPE (arg));
9436 /* This function validates the types of a function call argument list
9437 against a specified list of tree_codes. If the last specifier is a 0,
9438 that represents an ellipses, otherwise the last specifier must be a
9439 VOID_TYPE.
9441 This is the GIMPLE version of validate_arglist. Eventually we want to
9442 completely convert builtins.c to work from GIMPLEs and the tree based
9443 validate_arglist will then be removed. */
9445 bool
9446 validate_gimple_arglist (const gcall *call, ...)
9448 enum tree_code code;
9449 bool res = 0;
9450 va_list ap;
9451 const_tree arg;
9452 size_t i;
9454 va_start (ap, call);
9455 i = 0;
9459 code = (enum tree_code) va_arg (ap, int);
9460 switch (code)
9462 case 0:
9463 /* This signifies an ellipses, any further arguments are all ok. */
9464 res = true;
9465 goto end;
9466 case VOID_TYPE:
9467 /* This signifies an endlink, if no arguments remain, return
9468 true, otherwise return false. */
9469 res = (i == gimple_call_num_args (call));
9470 goto end;
9471 default:
9472 /* If no parameters remain or the parameter's code does not
9473 match the specified code, return false. Otherwise continue
9474 checking any remaining arguments. */
9475 arg = gimple_call_arg (call, i++);
9476 if (!validate_arg (arg, code))
9477 goto end;
9478 break;
9481 while (1);
9483 /* We need gotos here since we can only have one VA_CLOSE in a
9484 function. */
9485 end: ;
9486 va_end (ap);
9488 return res;
9491 /* Default target-specific builtin expander that does nothing. */
9494 default_expand_builtin (tree exp ATTRIBUTE_UNUSED,
9495 rtx target ATTRIBUTE_UNUSED,
9496 rtx subtarget ATTRIBUTE_UNUSED,
9497 machine_mode mode ATTRIBUTE_UNUSED,
9498 int ignore ATTRIBUTE_UNUSED)
9500 return NULL_RTX;
9503 /* Returns true is EXP represents data that would potentially reside
9504 in a readonly section. */
9506 bool
9507 readonly_data_expr (tree exp)
9509 STRIP_NOPS (exp);
9511 if (TREE_CODE (exp) != ADDR_EXPR)
9512 return false;
9514 exp = get_base_address (TREE_OPERAND (exp, 0));
9515 if (!exp)
9516 return false;
9518 /* Make sure we call decl_readonly_section only for trees it
9519 can handle (since it returns true for everything it doesn't
9520 understand). */
9521 if (TREE_CODE (exp) == STRING_CST
9522 || TREE_CODE (exp) == CONSTRUCTOR
9523 || (VAR_P (exp) && TREE_STATIC (exp)))
9524 return decl_readonly_section (exp, 0);
9525 else
9526 return false;
9529 /* Simplify a call to the strpbrk builtin. S1 and S2 are the arguments
9530 to the call, and TYPE is its return type.
9532 Return NULL_TREE if no simplification was possible, otherwise return the
9533 simplified form of the call as a tree.
9535 The simplified form may be a constant or other expression which
9536 computes the same value, but in a more efficient manner (including
9537 calls to other builtin functions).
9539 The call may contain arguments which need to be evaluated, but
9540 which are not useful to determine the result of the call. In
9541 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9542 COMPOUND_EXPR will be an argument which must be evaluated.
9543 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9544 COMPOUND_EXPR in the chain will contain the tree for the simplified
9545 form of the builtin function call. */
9547 static tree
9548 fold_builtin_strpbrk (location_t loc, tree s1, tree s2, tree type)
9550 if (!validate_arg (s1, POINTER_TYPE)
9551 || !validate_arg (s2, POINTER_TYPE))
9552 return NULL_TREE;
9553 else
9555 tree fn;
9556 const char *p1, *p2;
9558 p2 = c_getstr (s2);
9559 if (p2 == NULL)
9560 return NULL_TREE;
9562 p1 = c_getstr (s1);
9563 if (p1 != NULL)
9565 const char *r = strpbrk (p1, p2);
9566 tree tem;
9568 if (r == NULL)
9569 return build_int_cst (TREE_TYPE (s1), 0);
9571 /* Return an offset into the constant string argument. */
9572 tem = fold_build_pointer_plus_hwi_loc (loc, s1, r - p1);
9573 return fold_convert_loc (loc, type, tem);
9576 if (p2[0] == '\0')
9577 /* strpbrk(x, "") == NULL.
9578 Evaluate and ignore s1 in case it had side-effects. */
9579 return omit_one_operand_loc (loc, type, integer_zero_node, s1);
9581 if (p2[1] != '\0')
9582 return NULL_TREE; /* Really call strpbrk. */
9584 fn = builtin_decl_implicit (BUILT_IN_STRCHR);
9585 if (!fn)
9586 return NULL_TREE;
9588 /* New argument list transforming strpbrk(s1, s2) to
9589 strchr(s1, s2[0]). */
9590 return build_call_expr_loc (loc, fn, 2, s1,
9591 build_int_cst (integer_type_node, p2[0]));
9595 /* Simplify a call to the strspn builtin. S1 and S2 are the arguments
9596 to the call.
9598 Return NULL_TREE if no simplification was possible, otherwise return the
9599 simplified form of the call as a tree.
9601 The simplified form may be a constant or other expression which
9602 computes the same value, but in a more efficient manner (including
9603 calls to other builtin functions).
9605 The call may contain arguments which need to be evaluated, but
9606 which are not useful to determine the result of the call. In
9607 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9608 COMPOUND_EXPR will be an argument which must be evaluated.
9609 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9610 COMPOUND_EXPR in the chain will contain the tree for the simplified
9611 form of the builtin function call. */
9613 static tree
9614 fold_builtin_strspn (location_t loc, tree s1, tree s2)
9616 if (!validate_arg (s1, POINTER_TYPE)
9617 || !validate_arg (s2, POINTER_TYPE))
9618 return NULL_TREE;
9619 else
9621 const char *p1 = c_getstr (s1), *p2 = c_getstr (s2);
9623 /* If either argument is "", return NULL_TREE. */
9624 if ((p1 && *p1 == '\0') || (p2 && *p2 == '\0'))
9625 /* Evaluate and ignore both arguments in case either one has
9626 side-effects. */
9627 return omit_two_operands_loc (loc, size_type_node, size_zero_node,
9628 s1, s2);
9629 return NULL_TREE;
9633 /* Simplify a call to the strcspn builtin. S1 and S2 are the arguments
9634 to the call.
9636 Return NULL_TREE if no simplification was possible, otherwise return the
9637 simplified form of the call as a tree.
9639 The simplified form may be a constant or other expression which
9640 computes the same value, but in a more efficient manner (including
9641 calls to other builtin functions).
9643 The call may contain arguments which need to be evaluated, but
9644 which are not useful to determine the result of the call. In
9645 this case we return a chain of COMPOUND_EXPRs. The LHS of each
9646 COMPOUND_EXPR will be an argument which must be evaluated.
9647 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
9648 COMPOUND_EXPR in the chain will contain the tree for the simplified
9649 form of the builtin function call. */
9651 static tree
9652 fold_builtin_strcspn (location_t loc, tree s1, tree s2)
9654 if (!validate_arg (s1, POINTER_TYPE)
9655 || !validate_arg (s2, POINTER_TYPE))
9656 return NULL_TREE;
9657 else
9659 /* If the first argument is "", return NULL_TREE. */
9660 const char *p1 = c_getstr (s1);
9661 if (p1 && *p1 == '\0')
9663 /* Evaluate and ignore argument s2 in case it has
9664 side-effects. */
9665 return omit_one_operand_loc (loc, size_type_node,
9666 size_zero_node, s2);
9669 /* If the second argument is "", return __builtin_strlen(s1). */
9670 const char *p2 = c_getstr (s2);
9671 if (p2 && *p2 == '\0')
9673 tree fn = builtin_decl_implicit (BUILT_IN_STRLEN);
9675 /* If the replacement _DECL isn't initialized, don't do the
9676 transformation. */
9677 if (!fn)
9678 return NULL_TREE;
9680 return build_call_expr_loc (loc, fn, 1, s1);
9682 return NULL_TREE;
9686 /* Fold the next_arg or va_start call EXP. Returns true if there was an error
9687 produced. False otherwise. This is done so that we don't output the error
9688 or warning twice or three times. */
9690 bool
9691 fold_builtin_next_arg (tree exp, bool va_start_p)
9693 tree fntype = TREE_TYPE (current_function_decl);
9694 int nargs = call_expr_nargs (exp);
9695 tree arg;
9696 /* There is good chance the current input_location points inside the
9697 definition of the va_start macro (perhaps on the token for
9698 builtin) in a system header, so warnings will not be emitted.
9699 Use the location in real source code. */
9700 source_location current_location =
9701 linemap_unwind_to_first_non_reserved_loc (line_table, input_location,
9702 NULL);
9704 if (!stdarg_p (fntype))
9706 error ("%<va_start%> used in function with fixed args");
9707 return true;
9710 if (va_start_p)
9712 if (va_start_p && (nargs != 2))
9714 error ("wrong number of arguments to function %<va_start%>");
9715 return true;
9717 arg = CALL_EXPR_ARG (exp, 1);
9719 /* We use __builtin_va_start (ap, 0, 0) or __builtin_next_arg (0, 0)
9720 when we checked the arguments and if needed issued a warning. */
9721 else
9723 if (nargs == 0)
9725 /* Evidently an out of date version of <stdarg.h>; can't validate
9726 va_start's second argument, but can still work as intended. */
9727 warning_at (current_location,
9728 OPT_Wvarargs,
9729 "%<__builtin_next_arg%> called without an argument");
9730 return true;
9732 else if (nargs > 1)
9734 error ("wrong number of arguments to function %<__builtin_next_arg%>");
9735 return true;
9737 arg = CALL_EXPR_ARG (exp, 0);
9740 if (TREE_CODE (arg) == SSA_NAME)
9741 arg = SSA_NAME_VAR (arg);
9743 /* We destructively modify the call to be __builtin_va_start (ap, 0)
9744 or __builtin_next_arg (0) the first time we see it, after checking
9745 the arguments and if needed issuing a warning. */
9746 if (!integer_zerop (arg))
9748 tree last_parm = tree_last (DECL_ARGUMENTS (current_function_decl));
9750 /* Strip off all nops for the sake of the comparison. This
9751 is not quite the same as STRIP_NOPS. It does more.
9752 We must also strip off INDIRECT_EXPR for C++ reference
9753 parameters. */
9754 while (CONVERT_EXPR_P (arg)
9755 || TREE_CODE (arg) == INDIRECT_REF)
9756 arg = TREE_OPERAND (arg, 0);
9757 if (arg != last_parm)
9759 /* FIXME: Sometimes with the tree optimizers we can get the
9760 not the last argument even though the user used the last
9761 argument. We just warn and set the arg to be the last
9762 argument so that we will get wrong-code because of
9763 it. */
9764 warning_at (current_location,
9765 OPT_Wvarargs,
9766 "second parameter of %<va_start%> not last named argument");
9769 /* Undefined by C99 7.15.1.4p4 (va_start):
9770 "If the parameter parmN is declared with the register storage
9771 class, with a function or array type, or with a type that is
9772 not compatible with the type that results after application of
9773 the default argument promotions, the behavior is undefined."
9775 else if (DECL_REGISTER (arg))
9777 warning_at (current_location,
9778 OPT_Wvarargs,
9779 "undefined behavior when second parameter of "
9780 "%<va_start%> is declared with %<register%> storage");
9783 /* We want to verify the second parameter just once before the tree
9784 optimizers are run and then avoid keeping it in the tree,
9785 as otherwise we could warn even for correct code like:
9786 void foo (int i, ...)
9787 { va_list ap; i++; va_start (ap, i); va_end (ap); } */
9788 if (va_start_p)
9789 CALL_EXPR_ARG (exp, 1) = integer_zero_node;
9790 else
9791 CALL_EXPR_ARG (exp, 0) = integer_zero_node;
9793 return false;
9797 /* Expand a call EXP to __builtin_object_size. */
9799 static rtx
9800 expand_builtin_object_size (tree exp)
9802 tree ost;
9803 int object_size_type;
9804 tree fndecl = get_callee_fndecl (exp);
9806 if (!validate_arglist (exp, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
9808 error ("%Kfirst argument of %qD must be a pointer, second integer constant",
9809 exp, fndecl);
9810 expand_builtin_trap ();
9811 return const0_rtx;
9814 ost = CALL_EXPR_ARG (exp, 1);
9815 STRIP_NOPS (ost);
9817 if (TREE_CODE (ost) != INTEGER_CST
9818 || tree_int_cst_sgn (ost) < 0
9819 || compare_tree_int (ost, 3) > 0)
9821 error ("%Klast argument of %qD is not integer constant between 0 and 3",
9822 exp, fndecl);
9823 expand_builtin_trap ();
9824 return const0_rtx;
9827 object_size_type = tree_to_shwi (ost);
9829 return object_size_type < 2 ? constm1_rtx : const0_rtx;
9832 /* Expand EXP, a call to the __mem{cpy,pcpy,move,set}_chk builtin.
9833 FCODE is the BUILT_IN_* to use.
9834 Return NULL_RTX if we failed; the caller should emit a normal call,
9835 otherwise try to get the result in TARGET, if convenient (and in
9836 mode MODE if that's convenient). */
9838 static rtx
9839 expand_builtin_memory_chk (tree exp, rtx target, machine_mode mode,
9840 enum built_in_function fcode)
9842 if (!validate_arglist (exp,
9843 POINTER_TYPE,
9844 fcode == BUILT_IN_MEMSET_CHK
9845 ? INTEGER_TYPE : POINTER_TYPE,
9846 INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
9847 return NULL_RTX;
9849 tree dest = CALL_EXPR_ARG (exp, 0);
9850 tree src = CALL_EXPR_ARG (exp, 1);
9851 tree len = CALL_EXPR_ARG (exp, 2);
9852 tree size = CALL_EXPR_ARG (exp, 3);
9854 bool sizes_ok = check_access (exp, dest, src, len, /*maxread=*/NULL_TREE,
9855 /*str=*/NULL_TREE, size);
9857 if (!tree_fits_uhwi_p (size))
9858 return NULL_RTX;
9860 if (tree_fits_uhwi_p (len) || integer_all_onesp (size))
9862 /* Avoid transforming the checking call to an ordinary one when
9863 an overflow has been detected or when the call couldn't be
9864 validated because the size is not constant. */
9865 if (!sizes_ok && !integer_all_onesp (size) && tree_int_cst_lt (size, len))
9866 return NULL_RTX;
9868 tree fn = NULL_TREE;
9869 /* If __builtin_mem{cpy,pcpy,move,set}_chk is used, assume
9870 mem{cpy,pcpy,move,set} is available. */
9871 switch (fcode)
9873 case BUILT_IN_MEMCPY_CHK:
9874 fn = builtin_decl_explicit (BUILT_IN_MEMCPY);
9875 break;
9876 case BUILT_IN_MEMPCPY_CHK:
9877 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY);
9878 break;
9879 case BUILT_IN_MEMMOVE_CHK:
9880 fn = builtin_decl_explicit (BUILT_IN_MEMMOVE);
9881 break;
9882 case BUILT_IN_MEMSET_CHK:
9883 fn = builtin_decl_explicit (BUILT_IN_MEMSET);
9884 break;
9885 default:
9886 break;
9889 if (! fn)
9890 return NULL_RTX;
9892 fn = build_call_nofold_loc (EXPR_LOCATION (exp), fn, 3, dest, src, len);
9893 gcc_assert (TREE_CODE (fn) == CALL_EXPR);
9894 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
9895 return expand_expr (fn, target, mode, EXPAND_NORMAL);
9897 else if (fcode == BUILT_IN_MEMSET_CHK)
9898 return NULL_RTX;
9899 else
9901 unsigned int dest_align = get_pointer_alignment (dest);
9903 /* If DEST is not a pointer type, call the normal function. */
9904 if (dest_align == 0)
9905 return NULL_RTX;
9907 /* If SRC and DEST are the same (and not volatile), do nothing. */
9908 if (operand_equal_p (src, dest, 0))
9910 tree expr;
9912 if (fcode != BUILT_IN_MEMPCPY_CHK)
9914 /* Evaluate and ignore LEN in case it has side-effects. */
9915 expand_expr (len, const0_rtx, VOIDmode, EXPAND_NORMAL);
9916 return expand_expr (dest, target, mode, EXPAND_NORMAL);
9919 expr = fold_build_pointer_plus (dest, len);
9920 return expand_expr (expr, target, mode, EXPAND_NORMAL);
9923 /* __memmove_chk special case. */
9924 if (fcode == BUILT_IN_MEMMOVE_CHK)
9926 unsigned int src_align = get_pointer_alignment (src);
9928 if (src_align == 0)
9929 return NULL_RTX;
9931 /* If src is categorized for a readonly section we can use
9932 normal __memcpy_chk. */
9933 if (readonly_data_expr (src))
9935 tree fn = builtin_decl_explicit (BUILT_IN_MEMCPY_CHK);
9936 if (!fn)
9937 return NULL_RTX;
9938 fn = build_call_nofold_loc (EXPR_LOCATION (exp), fn, 4,
9939 dest, src, len, size);
9940 gcc_assert (TREE_CODE (fn) == CALL_EXPR);
9941 CALL_EXPR_TAILCALL (fn) = CALL_EXPR_TAILCALL (exp);
9942 return expand_expr (fn, target, mode, EXPAND_NORMAL);
9945 return NULL_RTX;
9949 /* Emit warning if a buffer overflow is detected at compile time. */
9951 static void
9952 maybe_emit_chk_warning (tree exp, enum built_in_function fcode)
9954 /* The source string. */
9955 tree srcstr = NULL_TREE;
9956 /* The size of the destination object. */
9957 tree objsize = NULL_TREE;
9958 /* The string that is being concatenated with (as in __strcat_chk)
9959 or null if it isn't. */
9960 tree catstr = NULL_TREE;
9961 /* The maximum length of the source sequence in a bounded operation
9962 (such as __strncat_chk) or null if the operation isn't bounded
9963 (such as __strcat_chk). */
9964 tree maxread = NULL_TREE;
9965 /* The exact size of the access (such as in __strncpy_chk). */
9966 tree size = NULL_TREE;
9968 switch (fcode)
9970 case BUILT_IN_STRCPY_CHK:
9971 case BUILT_IN_STPCPY_CHK:
9972 srcstr = CALL_EXPR_ARG (exp, 1);
9973 objsize = CALL_EXPR_ARG (exp, 2);
9974 break;
9976 case BUILT_IN_STRCAT_CHK:
9977 /* For __strcat_chk the warning will be emitted only if overflowing
9978 by at least strlen (dest) + 1 bytes. */
9979 catstr = CALL_EXPR_ARG (exp, 0);
9980 srcstr = CALL_EXPR_ARG (exp, 1);
9981 objsize = CALL_EXPR_ARG (exp, 2);
9982 break;
9984 case BUILT_IN_STRNCAT_CHK:
9985 catstr = CALL_EXPR_ARG (exp, 0);
9986 srcstr = CALL_EXPR_ARG (exp, 1);
9987 maxread = CALL_EXPR_ARG (exp, 2);
9988 objsize = CALL_EXPR_ARG (exp, 3);
9989 break;
9991 case BUILT_IN_STRNCPY_CHK:
9992 case BUILT_IN_STPNCPY_CHK:
9993 srcstr = CALL_EXPR_ARG (exp, 1);
9994 size = CALL_EXPR_ARG (exp, 2);
9995 objsize = CALL_EXPR_ARG (exp, 3);
9996 break;
9998 case BUILT_IN_SNPRINTF_CHK:
9999 case BUILT_IN_VSNPRINTF_CHK:
10000 maxread = CALL_EXPR_ARG (exp, 1);
10001 objsize = CALL_EXPR_ARG (exp, 3);
10002 break;
10003 default:
10004 gcc_unreachable ();
10007 if (catstr && maxread)
10009 /* Check __strncat_chk. There is no way to determine the length
10010 of the string to which the source string is being appended so
10011 just warn when the length of the source string is not known. */
10012 check_strncat_sizes (exp, objsize);
10013 return;
10016 /* The destination argument is the first one for all built-ins above. */
10017 tree dst = CALL_EXPR_ARG (exp, 0);
10019 check_access (exp, dst, srcstr, size, maxread, srcstr, objsize);
10022 /* Emit warning if a buffer overflow is detected at compile time
10023 in __sprintf_chk/__vsprintf_chk calls. */
10025 static void
10026 maybe_emit_sprintf_chk_warning (tree exp, enum built_in_function fcode)
10028 tree size, len, fmt;
10029 const char *fmt_str;
10030 int nargs = call_expr_nargs (exp);
10032 /* Verify the required arguments in the original call. */
10034 if (nargs < 4)
10035 return;
10036 size = CALL_EXPR_ARG (exp, 2);
10037 fmt = CALL_EXPR_ARG (exp, 3);
10039 if (! tree_fits_uhwi_p (size) || integer_all_onesp (size))
10040 return;
10042 /* Check whether the format is a literal string constant. */
10043 fmt_str = c_getstr (fmt);
10044 if (fmt_str == NULL)
10045 return;
10047 if (!init_target_chars ())
10048 return;
10050 /* If the format doesn't contain % args or %%, we know its size. */
10051 if (strchr (fmt_str, target_percent) == 0)
10052 len = build_int_cstu (size_type_node, strlen (fmt_str));
10053 /* If the format is "%s" and first ... argument is a string literal,
10054 we know it too. */
10055 else if (fcode == BUILT_IN_SPRINTF_CHK
10056 && strcmp (fmt_str, target_percent_s) == 0)
10058 tree arg;
10060 if (nargs < 5)
10061 return;
10062 arg = CALL_EXPR_ARG (exp, 4);
10063 if (! POINTER_TYPE_P (TREE_TYPE (arg)))
10064 return;
10066 len = c_strlen (arg, 1);
10067 if (!len || ! tree_fits_uhwi_p (len))
10068 return;
10070 else
10071 return;
10073 /* Add one for the terminating nul. */
10074 len = fold_build2 (PLUS_EXPR, TREE_TYPE (len), len, size_one_node);
10076 check_access (exp, /*dst=*/NULL_TREE, /*src=*/NULL_TREE, /*size=*/NULL_TREE,
10077 /*maxread=*/NULL_TREE, len, size);
10080 /* Emit warning if a free is called with address of a variable. */
10082 static void
10083 maybe_emit_free_warning (tree exp)
10085 tree arg = CALL_EXPR_ARG (exp, 0);
10087 STRIP_NOPS (arg);
10088 if (TREE_CODE (arg) != ADDR_EXPR)
10089 return;
10091 arg = get_base_address (TREE_OPERAND (arg, 0));
10092 if (arg == NULL || INDIRECT_REF_P (arg) || TREE_CODE (arg) == MEM_REF)
10093 return;
10095 if (SSA_VAR_P (arg))
10096 warning_at (tree_nonartificial_location (exp), OPT_Wfree_nonheap_object,
10097 "%Kattempt to free a non-heap object %qD", exp, arg);
10098 else
10099 warning_at (tree_nonartificial_location (exp), OPT_Wfree_nonheap_object,
10100 "%Kattempt to free a non-heap object", exp);
10103 /* Fold a call to __builtin_object_size with arguments PTR and OST,
10104 if possible. */
10106 static tree
10107 fold_builtin_object_size (tree ptr, tree ost)
10109 unsigned HOST_WIDE_INT bytes;
10110 int object_size_type;
10112 if (!validate_arg (ptr, POINTER_TYPE)
10113 || !validate_arg (ost, INTEGER_TYPE))
10114 return NULL_TREE;
10116 STRIP_NOPS (ost);
10118 if (TREE_CODE (ost) != INTEGER_CST
10119 || tree_int_cst_sgn (ost) < 0
10120 || compare_tree_int (ost, 3) > 0)
10121 return NULL_TREE;
10123 object_size_type = tree_to_shwi (ost);
10125 /* __builtin_object_size doesn't evaluate side-effects in its arguments;
10126 if there are any side-effects, it returns (size_t) -1 for types 0 and 1
10127 and (size_t) 0 for types 2 and 3. */
10128 if (TREE_SIDE_EFFECTS (ptr))
10129 return build_int_cst_type (size_type_node, object_size_type < 2 ? -1 : 0);
10131 if (TREE_CODE (ptr) == ADDR_EXPR)
10133 compute_builtin_object_size (ptr, object_size_type, &bytes);
10134 if (wi::fits_to_tree_p (bytes, size_type_node))
10135 return build_int_cstu (size_type_node, bytes);
10137 else if (TREE_CODE (ptr) == SSA_NAME)
10139 /* If object size is not known yet, delay folding until
10140 later. Maybe subsequent passes will help determining
10141 it. */
10142 if (compute_builtin_object_size (ptr, object_size_type, &bytes)
10143 && wi::fits_to_tree_p (bytes, size_type_node))
10144 return build_int_cstu (size_type_node, bytes);
10147 return NULL_TREE;
10150 /* Builtins with folding operations that operate on "..." arguments
10151 need special handling; we need to store the arguments in a convenient
10152 data structure before attempting any folding. Fortunately there are
10153 only a few builtins that fall into this category. FNDECL is the
10154 function, EXP is the CALL_EXPR for the call. */
10156 static tree
10157 fold_builtin_varargs (location_t loc, tree fndecl, tree *args, int nargs)
10159 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
10160 tree ret = NULL_TREE;
10162 switch (fcode)
10164 case BUILT_IN_FPCLASSIFY:
10165 ret = fold_builtin_fpclassify (loc, args, nargs);
10166 break;
10168 default:
10169 break;
10171 if (ret)
10173 ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
10174 SET_EXPR_LOCATION (ret, loc);
10175 TREE_NO_WARNING (ret) = 1;
10176 return ret;
10178 return NULL_TREE;
10181 /* Initialize format string characters in the target charset. */
10183 bool
10184 init_target_chars (void)
10186 static bool init;
10187 if (!init)
10189 target_newline = lang_hooks.to_target_charset ('\n');
10190 target_percent = lang_hooks.to_target_charset ('%');
10191 target_c = lang_hooks.to_target_charset ('c');
10192 target_s = lang_hooks.to_target_charset ('s');
10193 if (target_newline == 0 || target_percent == 0 || target_c == 0
10194 || target_s == 0)
10195 return false;
10197 target_percent_c[0] = target_percent;
10198 target_percent_c[1] = target_c;
10199 target_percent_c[2] = '\0';
10201 target_percent_s[0] = target_percent;
10202 target_percent_s[1] = target_s;
10203 target_percent_s[2] = '\0';
10205 target_percent_s_newline[0] = target_percent;
10206 target_percent_s_newline[1] = target_s;
10207 target_percent_s_newline[2] = target_newline;
10208 target_percent_s_newline[3] = '\0';
10210 init = true;
10212 return true;
10215 /* Helper function for do_mpfr_arg*(). Ensure M is a normal number
10216 and no overflow/underflow occurred. INEXACT is true if M was not
10217 exactly calculated. TYPE is the tree type for the result. This
10218 function assumes that you cleared the MPFR flags and then
10219 calculated M to see if anything subsequently set a flag prior to
10220 entering this function. Return NULL_TREE if any checks fail. */
10222 static tree
10223 do_mpfr_ckconv (mpfr_srcptr m, tree type, int inexact)
10225 /* Proceed iff we get a normal number, i.e. not NaN or Inf and no
10226 overflow/underflow occurred. If -frounding-math, proceed iff the
10227 result of calling FUNC was exact. */
10228 if (mpfr_number_p (m) && !mpfr_overflow_p () && !mpfr_underflow_p ()
10229 && (!flag_rounding_math || !inexact))
10231 REAL_VALUE_TYPE rr;
10233 real_from_mpfr (&rr, m, type, GMP_RNDN);
10234 /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR value,
10235 check for overflow/underflow. If the REAL_VALUE_TYPE is zero
10236 but the mpft_t is not, then we underflowed in the
10237 conversion. */
10238 if (real_isfinite (&rr)
10239 && (rr.cl == rvc_zero) == (mpfr_zero_p (m) != 0))
10241 REAL_VALUE_TYPE rmode;
10243 real_convert (&rmode, TYPE_MODE (type), &rr);
10244 /* Proceed iff the specified mode can hold the value. */
10245 if (real_identical (&rmode, &rr))
10246 return build_real (type, rmode);
10249 return NULL_TREE;
10252 /* Helper function for do_mpc_arg*(). Ensure M is a normal complex
10253 number and no overflow/underflow occurred. INEXACT is true if M
10254 was not exactly calculated. TYPE is the tree type for the result.
10255 This function assumes that you cleared the MPFR flags and then
10256 calculated M to see if anything subsequently set a flag prior to
10257 entering this function. Return NULL_TREE if any checks fail, if
10258 FORCE_CONVERT is true, then bypass the checks. */
10260 static tree
10261 do_mpc_ckconv (mpc_srcptr m, tree type, int inexact, int force_convert)
10263 /* Proceed iff we get a normal number, i.e. not NaN or Inf and no
10264 overflow/underflow occurred. If -frounding-math, proceed iff the
10265 result of calling FUNC was exact. */
10266 if (force_convert
10267 || (mpfr_number_p (mpc_realref (m)) && mpfr_number_p (mpc_imagref (m))
10268 && !mpfr_overflow_p () && !mpfr_underflow_p ()
10269 && (!flag_rounding_math || !inexact)))
10271 REAL_VALUE_TYPE re, im;
10273 real_from_mpfr (&re, mpc_realref (m), TREE_TYPE (type), GMP_RNDN);
10274 real_from_mpfr (&im, mpc_imagref (m), TREE_TYPE (type), GMP_RNDN);
10275 /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR values,
10276 check for overflow/underflow. If the REAL_VALUE_TYPE is zero
10277 but the mpft_t is not, then we underflowed in the
10278 conversion. */
10279 if (force_convert
10280 || (real_isfinite (&re) && real_isfinite (&im)
10281 && (re.cl == rvc_zero) == (mpfr_zero_p (mpc_realref (m)) != 0)
10282 && (im.cl == rvc_zero) == (mpfr_zero_p (mpc_imagref (m)) != 0)))
10284 REAL_VALUE_TYPE re_mode, im_mode;
10286 real_convert (&re_mode, TYPE_MODE (TREE_TYPE (type)), &re);
10287 real_convert (&im_mode, TYPE_MODE (TREE_TYPE (type)), &im);
10288 /* Proceed iff the specified mode can hold the value. */
10289 if (force_convert
10290 || (real_identical (&re_mode, &re)
10291 && real_identical (&im_mode, &im)))
10292 return build_complex (type, build_real (TREE_TYPE (type), re_mode),
10293 build_real (TREE_TYPE (type), im_mode));
10296 return NULL_TREE;
10299 /* If arguments ARG0 and ARG1 are REAL_CSTs, call mpfr_remquo() to set
10300 the pointer *(ARG_QUO) and return the result. The type is taken
10301 from the type of ARG0 and is used for setting the precision of the
10302 calculation and results. */
10304 static tree
10305 do_mpfr_remquo (tree arg0, tree arg1, tree arg_quo)
10307 tree const type = TREE_TYPE (arg0);
10308 tree result = NULL_TREE;
10310 STRIP_NOPS (arg0);
10311 STRIP_NOPS (arg1);
10313 /* To proceed, MPFR must exactly represent the target floating point
10314 format, which only happens when the target base equals two. */
10315 if (REAL_MODE_FORMAT (TYPE_MODE (type))->b == 2
10316 && TREE_CODE (arg0) == REAL_CST && !TREE_OVERFLOW (arg0)
10317 && TREE_CODE (arg1) == REAL_CST && !TREE_OVERFLOW (arg1))
10319 const REAL_VALUE_TYPE *const ra0 = TREE_REAL_CST_PTR (arg0);
10320 const REAL_VALUE_TYPE *const ra1 = TREE_REAL_CST_PTR (arg1);
10322 if (real_isfinite (ra0) && real_isfinite (ra1))
10324 const struct real_format *fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
10325 const int prec = fmt->p;
10326 const mp_rnd_t rnd = fmt->round_towards_zero? GMP_RNDZ : GMP_RNDN;
10327 tree result_rem;
10328 long integer_quo;
10329 mpfr_t m0, m1;
10331 mpfr_inits2 (prec, m0, m1, NULL);
10332 mpfr_from_real (m0, ra0, GMP_RNDN);
10333 mpfr_from_real (m1, ra1, GMP_RNDN);
10334 mpfr_clear_flags ();
10335 mpfr_remquo (m0, &integer_quo, m0, m1, rnd);
10336 /* Remquo is independent of the rounding mode, so pass
10337 inexact=0 to do_mpfr_ckconv(). */
10338 result_rem = do_mpfr_ckconv (m0, type, /*inexact=*/ 0);
10339 mpfr_clears (m0, m1, NULL);
10340 if (result_rem)
10342 /* MPFR calculates quo in the host's long so it may
10343 return more bits in quo than the target int can hold
10344 if sizeof(host long) > sizeof(target int). This can
10345 happen even for native compilers in LP64 mode. In
10346 these cases, modulo the quo value with the largest
10347 number that the target int can hold while leaving one
10348 bit for the sign. */
10349 if (sizeof (integer_quo) * CHAR_BIT > INT_TYPE_SIZE)
10350 integer_quo %= (long)(1UL << (INT_TYPE_SIZE - 1));
10352 /* Dereference the quo pointer argument. */
10353 arg_quo = build_fold_indirect_ref (arg_quo);
10354 /* Proceed iff a valid pointer type was passed in. */
10355 if (TYPE_MAIN_VARIANT (TREE_TYPE (arg_quo)) == integer_type_node)
10357 /* Set the value. */
10358 tree result_quo
10359 = fold_build2 (MODIFY_EXPR, TREE_TYPE (arg_quo), arg_quo,
10360 build_int_cst (TREE_TYPE (arg_quo),
10361 integer_quo));
10362 TREE_SIDE_EFFECTS (result_quo) = 1;
10363 /* Combine the quo assignment with the rem. */
10364 result = non_lvalue (fold_build2 (COMPOUND_EXPR, type,
10365 result_quo, result_rem));
10370 return result;
10373 /* If ARG is a REAL_CST, call mpfr_lgamma() on it and return the
10374 resulting value as a tree with type TYPE. The mpfr precision is
10375 set to the precision of TYPE. We assume that this mpfr function
10376 returns zero if the result could be calculated exactly within the
10377 requested precision. In addition, the integer pointer represented
10378 by ARG_SG will be dereferenced and set to the appropriate signgam
10379 (-1,1) value. */
10381 static tree
10382 do_mpfr_lgamma_r (tree arg, tree arg_sg, tree type)
10384 tree result = NULL_TREE;
10386 STRIP_NOPS (arg);
10388 /* To proceed, MPFR must exactly represent the target floating point
10389 format, which only happens when the target base equals two. Also
10390 verify ARG is a constant and that ARG_SG is an int pointer. */
10391 if (REAL_MODE_FORMAT (TYPE_MODE (type))->b == 2
10392 && TREE_CODE (arg) == REAL_CST && !TREE_OVERFLOW (arg)
10393 && TREE_CODE (TREE_TYPE (arg_sg)) == POINTER_TYPE
10394 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (arg_sg))) == integer_type_node)
10396 const REAL_VALUE_TYPE *const ra = TREE_REAL_CST_PTR (arg);
10398 /* In addition to NaN and Inf, the argument cannot be zero or a
10399 negative integer. */
10400 if (real_isfinite (ra)
10401 && ra->cl != rvc_zero
10402 && !(real_isneg (ra) && real_isinteger (ra, TYPE_MODE (type))))
10404 const struct real_format *fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
10405 const int prec = fmt->p;
10406 const mp_rnd_t rnd = fmt->round_towards_zero? GMP_RNDZ : GMP_RNDN;
10407 int inexact, sg;
10408 mpfr_t m;
10409 tree result_lg;
10411 mpfr_init2 (m, prec);
10412 mpfr_from_real (m, ra, GMP_RNDN);
10413 mpfr_clear_flags ();
10414 inexact = mpfr_lgamma (m, &sg, m, rnd);
10415 result_lg = do_mpfr_ckconv (m, type, inexact);
10416 mpfr_clear (m);
10417 if (result_lg)
10419 tree result_sg;
10421 /* Dereference the arg_sg pointer argument. */
10422 arg_sg = build_fold_indirect_ref (arg_sg);
10423 /* Assign the signgam value into *arg_sg. */
10424 result_sg = fold_build2 (MODIFY_EXPR,
10425 TREE_TYPE (arg_sg), arg_sg,
10426 build_int_cst (TREE_TYPE (arg_sg), sg));
10427 TREE_SIDE_EFFECTS (result_sg) = 1;
10428 /* Combine the signgam assignment with the lgamma result. */
10429 result = non_lvalue (fold_build2 (COMPOUND_EXPR, type,
10430 result_sg, result_lg));
10435 return result;
10438 /* If arguments ARG0 and ARG1 are a COMPLEX_CST, call the two-argument
10439 mpc function FUNC on it and return the resulting value as a tree
10440 with type TYPE. The mpfr precision is set to the precision of
10441 TYPE. We assume that function FUNC returns zero if the result
10442 could be calculated exactly within the requested precision. If
10443 DO_NONFINITE is true, then fold expressions containing Inf or NaN
10444 in the arguments and/or results. */
10446 tree
10447 do_mpc_arg2 (tree arg0, tree arg1, tree type, int do_nonfinite,
10448 int (*func)(mpc_ptr, mpc_srcptr, mpc_srcptr, mpc_rnd_t))
10450 tree result = NULL_TREE;
10452 STRIP_NOPS (arg0);
10453 STRIP_NOPS (arg1);
10455 /* To proceed, MPFR must exactly represent the target floating point
10456 format, which only happens when the target base equals two. */
10457 if (TREE_CODE (arg0) == COMPLEX_CST && !TREE_OVERFLOW (arg0)
10458 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg0))) == REAL_TYPE
10459 && TREE_CODE (arg1) == COMPLEX_CST && !TREE_OVERFLOW (arg1)
10460 && TREE_CODE (TREE_TYPE (TREE_TYPE (arg1))) == REAL_TYPE
10461 && REAL_MODE_FORMAT (TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0))))->b == 2)
10463 const REAL_VALUE_TYPE *const re0 = TREE_REAL_CST_PTR (TREE_REALPART (arg0));
10464 const REAL_VALUE_TYPE *const im0 = TREE_REAL_CST_PTR (TREE_IMAGPART (arg0));
10465 const REAL_VALUE_TYPE *const re1 = TREE_REAL_CST_PTR (TREE_REALPART (arg1));
10466 const REAL_VALUE_TYPE *const im1 = TREE_REAL_CST_PTR (TREE_IMAGPART (arg1));
10468 if (do_nonfinite
10469 || (real_isfinite (re0) && real_isfinite (im0)
10470 && real_isfinite (re1) && real_isfinite (im1)))
10472 const struct real_format *const fmt =
10473 REAL_MODE_FORMAT (TYPE_MODE (TREE_TYPE (type)));
10474 const int prec = fmt->p;
10475 const mp_rnd_t rnd = fmt->round_towards_zero ? GMP_RNDZ : GMP_RNDN;
10476 const mpc_rnd_t crnd = fmt->round_towards_zero ? MPC_RNDZZ : MPC_RNDNN;
10477 int inexact;
10478 mpc_t m0, m1;
10480 mpc_init2 (m0, prec);
10481 mpc_init2 (m1, prec);
10482 mpfr_from_real (mpc_realref (m0), re0, rnd);
10483 mpfr_from_real (mpc_imagref (m0), im0, rnd);
10484 mpfr_from_real (mpc_realref (m1), re1, rnd);
10485 mpfr_from_real (mpc_imagref (m1), im1, rnd);
10486 mpfr_clear_flags ();
10487 inexact = func (m0, m0, m1, crnd);
10488 result = do_mpc_ckconv (m0, type, inexact, do_nonfinite);
10489 mpc_clear (m0);
10490 mpc_clear (m1);
10494 return result;
10497 /* A wrapper function for builtin folding that prevents warnings for
10498 "statement without effect" and the like, caused by removing the
10499 call node earlier than the warning is generated. */
10501 tree
10502 fold_call_stmt (gcall *stmt, bool ignore)
10504 tree ret = NULL_TREE;
10505 tree fndecl = gimple_call_fndecl (stmt);
10506 location_t loc = gimple_location (stmt);
10507 if (fndecl
10508 && TREE_CODE (fndecl) == FUNCTION_DECL
10509 && DECL_BUILT_IN (fndecl)
10510 && !gimple_call_va_arg_pack_p (stmt))
10512 int nargs = gimple_call_num_args (stmt);
10513 tree *args = (nargs > 0
10514 ? gimple_call_arg_ptr (stmt, 0)
10515 : &error_mark_node);
10517 if (avoid_folding_inline_builtin (fndecl))
10518 return NULL_TREE;
10519 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
10521 return targetm.fold_builtin (fndecl, nargs, args, ignore);
10523 else
10525 ret = fold_builtin_n (loc, fndecl, args, nargs, ignore);
10526 if (ret)
10528 /* Propagate location information from original call to
10529 expansion of builtin. Otherwise things like
10530 maybe_emit_chk_warning, that operate on the expansion
10531 of a builtin, will use the wrong location information. */
10532 if (gimple_has_location (stmt))
10534 tree realret = ret;
10535 if (TREE_CODE (ret) == NOP_EXPR)
10536 realret = TREE_OPERAND (ret, 0);
10537 if (CAN_HAVE_LOCATION_P (realret)
10538 && !EXPR_HAS_LOCATION (realret))
10539 SET_EXPR_LOCATION (realret, loc);
10540 return realret;
10542 return ret;
10546 return NULL_TREE;
10549 /* Look up the function in builtin_decl that corresponds to DECL
10550 and set ASMSPEC as its user assembler name. DECL must be a
10551 function decl that declares a builtin. */
10553 void
10554 set_builtin_user_assembler_name (tree decl, const char *asmspec)
10556 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
10557 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
10558 && asmspec != 0);
10560 tree builtin = builtin_decl_explicit (DECL_FUNCTION_CODE (decl));
10561 set_user_assembler_name (builtin, asmspec);
10563 if (DECL_FUNCTION_CODE (decl) == BUILT_IN_FFS
10564 && INT_TYPE_SIZE < BITS_PER_WORD)
10566 scalar_int_mode mode = int_mode_for_size (INT_TYPE_SIZE, 0).require ();
10567 set_user_assembler_libfunc ("ffs", asmspec);
10568 set_optab_libfunc (ffs_optab, mode, "ffs");
10572 /* Return true if DECL is a builtin that expands to a constant or similarly
10573 simple code. */
10574 bool
10575 is_simple_builtin (tree decl)
10577 if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
10578 switch (DECL_FUNCTION_CODE (decl))
10580 /* Builtins that expand to constants. */
10581 case BUILT_IN_CONSTANT_P:
10582 case BUILT_IN_EXPECT:
10583 case BUILT_IN_OBJECT_SIZE:
10584 case BUILT_IN_UNREACHABLE:
10585 /* Simple register moves or loads from stack. */
10586 case BUILT_IN_ASSUME_ALIGNED:
10587 case BUILT_IN_RETURN_ADDRESS:
10588 case BUILT_IN_EXTRACT_RETURN_ADDR:
10589 case BUILT_IN_FROB_RETURN_ADDR:
10590 case BUILT_IN_RETURN:
10591 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
10592 case BUILT_IN_FRAME_ADDRESS:
10593 case BUILT_IN_VA_END:
10594 case BUILT_IN_STACK_SAVE:
10595 case BUILT_IN_STACK_RESTORE:
10596 /* Exception state returns or moves registers around. */
10597 case BUILT_IN_EH_FILTER:
10598 case BUILT_IN_EH_POINTER:
10599 case BUILT_IN_EH_COPY_VALUES:
10600 return true;
10602 default:
10603 return false;
10606 return false;
10609 /* Return true if DECL is a builtin that is not expensive, i.e., they are
10610 most probably expanded inline into reasonably simple code. This is a
10611 superset of is_simple_builtin. */
10612 bool
10613 is_inexpensive_builtin (tree decl)
10615 if (!decl)
10616 return false;
10617 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_MD)
10618 return true;
10619 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
10620 switch (DECL_FUNCTION_CODE (decl))
10622 case BUILT_IN_ABS:
10623 CASE_BUILT_IN_ALLOCA:
10624 case BUILT_IN_BSWAP16:
10625 case BUILT_IN_BSWAP32:
10626 case BUILT_IN_BSWAP64:
10627 case BUILT_IN_CLZ:
10628 case BUILT_IN_CLZIMAX:
10629 case BUILT_IN_CLZL:
10630 case BUILT_IN_CLZLL:
10631 case BUILT_IN_CTZ:
10632 case BUILT_IN_CTZIMAX:
10633 case BUILT_IN_CTZL:
10634 case BUILT_IN_CTZLL:
10635 case BUILT_IN_FFS:
10636 case BUILT_IN_FFSIMAX:
10637 case BUILT_IN_FFSL:
10638 case BUILT_IN_FFSLL:
10639 case BUILT_IN_IMAXABS:
10640 case BUILT_IN_FINITE:
10641 case BUILT_IN_FINITEF:
10642 case BUILT_IN_FINITEL:
10643 case BUILT_IN_FINITED32:
10644 case BUILT_IN_FINITED64:
10645 case BUILT_IN_FINITED128:
10646 case BUILT_IN_FPCLASSIFY:
10647 case BUILT_IN_ISFINITE:
10648 case BUILT_IN_ISINF_SIGN:
10649 case BUILT_IN_ISINF:
10650 case BUILT_IN_ISINFF:
10651 case BUILT_IN_ISINFL:
10652 case BUILT_IN_ISINFD32:
10653 case BUILT_IN_ISINFD64:
10654 case BUILT_IN_ISINFD128:
10655 case BUILT_IN_ISNAN:
10656 case BUILT_IN_ISNANF:
10657 case BUILT_IN_ISNANL:
10658 case BUILT_IN_ISNAND32:
10659 case BUILT_IN_ISNAND64:
10660 case BUILT_IN_ISNAND128:
10661 case BUILT_IN_ISNORMAL:
10662 case BUILT_IN_ISGREATER:
10663 case BUILT_IN_ISGREATEREQUAL:
10664 case BUILT_IN_ISLESS:
10665 case BUILT_IN_ISLESSEQUAL:
10666 case BUILT_IN_ISLESSGREATER:
10667 case BUILT_IN_ISUNORDERED:
10668 case BUILT_IN_VA_ARG_PACK:
10669 case BUILT_IN_VA_ARG_PACK_LEN:
10670 case BUILT_IN_VA_COPY:
10671 case BUILT_IN_TRAP:
10672 case BUILT_IN_SAVEREGS:
10673 case BUILT_IN_POPCOUNTL:
10674 case BUILT_IN_POPCOUNTLL:
10675 case BUILT_IN_POPCOUNTIMAX:
10676 case BUILT_IN_POPCOUNT:
10677 case BUILT_IN_PARITYL:
10678 case BUILT_IN_PARITYLL:
10679 case BUILT_IN_PARITYIMAX:
10680 case BUILT_IN_PARITY:
10681 case BUILT_IN_LABS:
10682 case BUILT_IN_LLABS:
10683 case BUILT_IN_PREFETCH:
10684 case BUILT_IN_ACC_ON_DEVICE:
10685 return true;
10687 default:
10688 return is_simple_builtin (decl);
10691 return false;
10694 /* Return true if T is a constant and the value cast to a target char
10695 can be represented by a host char.
10696 Store the casted char constant in *P if so. */
10698 bool
10699 target_char_cst_p (tree t, char *p)
10701 if (!tree_fits_uhwi_p (t) || CHAR_TYPE_SIZE != HOST_BITS_PER_CHAR)
10702 return false;
10704 *p = (char)tree_to_uhwi (t);
10705 return true;
10708 /* Return the maximum object size. */
10710 tree
10711 max_object_size (void)
10713 /* To do: Make this a configurable parameter. */
10714 return TYPE_MAX_VALUE (ptrdiff_type_node);