* class.c (build_class_ref): Mark _Jv_fooClass DECL_EXTERNAL.
[official-gcc.git] / gcc / builtins.c
blob1df7a0d0b5a4bfe88f155f8978488755ed587633
1 /* Expand builtin functions.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "machmode.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "obstack.h"
28 #include "flags.h"
29 #include "regs.h"
30 #include "hard-reg-set.h"
31 #include "except.h"
32 #include "function.h"
33 #include "insn-config.h"
34 #include "expr.h"
35 #include "optabs.h"
36 #include "libfuncs.h"
37 #include "recog.h"
38 #include "output.h"
39 #include "typeclass.h"
40 #include "toplev.h"
41 #include "predict.h"
42 #include "tm_p.h"
43 #include "target.h"
45 #define CALLED_AS_BUILT_IN(NODE) \
46 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
48 /* Register mappings for target machines without register windows. */
49 #ifndef INCOMING_REGNO
50 #define INCOMING_REGNO(OUT) (OUT)
51 #endif
52 #ifndef OUTGOING_REGNO
53 #define OUTGOING_REGNO(IN) (IN)
54 #endif
56 #ifndef PAD_VARARGS_DOWN
57 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
58 #endif
60 /* Define the names of the builtin function types and codes. */
61 const char *const built_in_class_names[4]
62 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
64 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA) STRINGX(X),
65 const char *const built_in_names[(int) END_BUILTINS] =
67 #include "builtins.def"
69 #undef DEF_BUILTIN
71 /* Setup an array of _DECL trees, make sure each element is
72 initialized to NULL_TREE. */
73 tree built_in_decls[(int) END_BUILTINS];
75 tree (*lang_type_promotes_to) PARAMS ((tree));
77 static int get_pointer_alignment PARAMS ((tree, unsigned int));
78 static tree c_strlen PARAMS ((tree));
79 static const char *c_getstr PARAMS ((tree));
80 static rtx c_readstr PARAMS ((const char *,
81 enum machine_mode));
82 static int target_char_cast PARAMS ((tree, char *));
83 static rtx get_memory_rtx PARAMS ((tree));
84 static int apply_args_size PARAMS ((void));
85 static int apply_result_size PARAMS ((void));
86 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
87 static rtx result_vector PARAMS ((int, rtx));
88 #endif
89 static rtx expand_builtin_setjmp PARAMS ((tree, rtx));
90 static void expand_builtin_prefetch PARAMS ((tree));
91 static rtx expand_builtin_apply_args PARAMS ((void));
92 static rtx expand_builtin_apply_args_1 PARAMS ((void));
93 static rtx expand_builtin_apply PARAMS ((rtx, rtx, rtx));
94 static void expand_builtin_return PARAMS ((rtx));
95 static enum type_class type_to_class PARAMS ((tree));
96 static rtx expand_builtin_classify_type PARAMS ((tree));
97 static rtx expand_builtin_mathfn PARAMS ((tree, rtx, rtx));
98 static rtx expand_builtin_constant_p PARAMS ((tree));
99 static rtx expand_builtin_args_info PARAMS ((tree));
100 static rtx expand_builtin_next_arg PARAMS ((tree));
101 static rtx expand_builtin_va_start PARAMS ((int, tree));
102 static rtx expand_builtin_va_end PARAMS ((tree));
103 static rtx expand_builtin_va_copy PARAMS ((tree));
104 static rtx expand_builtin_memcmp PARAMS ((tree, tree, rtx,
105 enum machine_mode));
106 static rtx expand_builtin_strcmp PARAMS ((tree, rtx,
107 enum machine_mode));
108 static rtx expand_builtin_strncmp PARAMS ((tree, rtx,
109 enum machine_mode));
110 static rtx builtin_memcpy_read_str PARAMS ((PTR, HOST_WIDE_INT,
111 enum machine_mode));
112 static rtx expand_builtin_strcat PARAMS ((tree, rtx,
113 enum machine_mode));
114 static rtx expand_builtin_strncat PARAMS ((tree, rtx,
115 enum machine_mode));
116 static rtx expand_builtin_strspn PARAMS ((tree, rtx,
117 enum machine_mode));
118 static rtx expand_builtin_strcspn PARAMS ((tree, rtx,
119 enum machine_mode));
120 static rtx expand_builtin_memcpy PARAMS ((tree, rtx,
121 enum machine_mode));
122 static rtx expand_builtin_strcpy PARAMS ((tree, rtx,
123 enum machine_mode));
124 static rtx builtin_strncpy_read_str PARAMS ((PTR, HOST_WIDE_INT,
125 enum machine_mode));
126 static rtx expand_builtin_strncpy PARAMS ((tree, rtx,
127 enum machine_mode));
128 static rtx builtin_memset_read_str PARAMS ((PTR, HOST_WIDE_INT,
129 enum machine_mode));
130 static rtx expand_builtin_memset PARAMS ((tree, rtx,
131 enum machine_mode));
132 static rtx expand_builtin_bzero PARAMS ((tree));
133 static rtx expand_builtin_strlen PARAMS ((tree, rtx));
134 static rtx expand_builtin_strstr PARAMS ((tree, rtx,
135 enum machine_mode));
136 static rtx expand_builtin_strpbrk PARAMS ((tree, rtx,
137 enum machine_mode));
138 static rtx expand_builtin_strchr PARAMS ((tree, rtx,
139 enum machine_mode));
140 static rtx expand_builtin_strrchr PARAMS ((tree, rtx,
141 enum machine_mode));
142 static rtx expand_builtin_alloca PARAMS ((tree, rtx));
143 static rtx expand_builtin_ffs PARAMS ((tree, rtx, rtx));
144 static rtx expand_builtin_frame_address PARAMS ((tree));
145 static rtx expand_builtin_fputs PARAMS ((tree, int, int));
146 static tree stabilize_va_list PARAMS ((tree, int));
147 static rtx expand_builtin_expect PARAMS ((tree, rtx));
148 static tree fold_builtin_constant_p PARAMS ((tree));
149 static tree fold_builtin_classify_type PARAMS ((tree));
150 static tree build_function_call_expr PARAMS ((tree, tree));
151 static int validate_arglist PARAMS ((tree, ...));
153 /* Return the alignment in bits of EXP, a pointer valued expression.
154 But don't return more than MAX_ALIGN no matter what.
155 The alignment returned is, by default, the alignment of the thing that
156 EXP points to. If it is not a POINTER_TYPE, 0 is returned.
158 Otherwise, look at the expression to see if we can do better, i.e., if the
159 expression is actually pointing at an object whose alignment is tighter. */
161 static int
162 get_pointer_alignment (exp, max_align)
163 tree exp;
164 unsigned int max_align;
166 unsigned int align, inner;
168 if (TREE_CODE (TREE_TYPE (exp)) != POINTER_TYPE)
169 return 0;
171 align = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
172 align = MIN (align, max_align);
174 while (1)
176 switch (TREE_CODE (exp))
178 case NOP_EXPR:
179 case CONVERT_EXPR:
180 case NON_LVALUE_EXPR:
181 exp = TREE_OPERAND (exp, 0);
182 if (TREE_CODE (TREE_TYPE (exp)) != POINTER_TYPE)
183 return align;
185 inner = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
186 align = MIN (inner, max_align);
187 break;
189 case PLUS_EXPR:
190 /* If sum of pointer + int, restrict our maximum alignment to that
191 imposed by the integer. If not, we can't do any better than
192 ALIGN. */
193 if (! host_integerp (TREE_OPERAND (exp, 1), 1))
194 return align;
196 while (((tree_low_cst (TREE_OPERAND (exp, 1), 1))
197 & (max_align / BITS_PER_UNIT - 1))
198 != 0)
199 max_align >>= 1;
201 exp = TREE_OPERAND (exp, 0);
202 break;
204 case ADDR_EXPR:
205 /* See what we are pointing at and look at its alignment. */
206 exp = TREE_OPERAND (exp, 0);
207 if (TREE_CODE (exp) == FUNCTION_DECL)
208 align = FUNCTION_BOUNDARY;
209 else if (DECL_P (exp))
210 align = DECL_ALIGN (exp);
211 #ifdef CONSTANT_ALIGNMENT
212 else if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'c')
213 align = CONSTANT_ALIGNMENT (exp, align);
214 #endif
215 return MIN (align, max_align);
217 default:
218 return align;
223 /* Compute the length of a C string. TREE_STRING_LENGTH is not the right
224 way, because it could contain a zero byte in the middle.
225 TREE_STRING_LENGTH is the size of the character array, not the string.
227 The value returned is of type `ssizetype'.
229 Unfortunately, string_constant can't access the values of const char
230 arrays with initializers, so neither can we do so here. */
232 static tree
233 c_strlen (src)
234 tree src;
236 tree offset_node;
237 HOST_WIDE_INT offset;
238 int max;
239 const char *ptr;
241 src = string_constant (src, &offset_node);
242 if (src == 0)
243 return 0;
245 max = TREE_STRING_LENGTH (src) - 1;
246 ptr = TREE_STRING_POINTER (src);
248 if (offset_node && TREE_CODE (offset_node) != INTEGER_CST)
250 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
251 compute the offset to the following null if we don't know where to
252 start searching for it. */
253 int i;
255 for (i = 0; i < max; i++)
256 if (ptr[i] == 0)
257 return 0;
259 /* We don't know the starting offset, but we do know that the string
260 has no internal zero bytes. We can assume that the offset falls
261 within the bounds of the string; otherwise, the programmer deserves
262 what he gets. Subtract the offset from the length of the string,
263 and return that. This would perhaps not be valid if we were dealing
264 with named arrays in addition to literal string constants. */
266 return size_diffop (size_int (max), offset_node);
269 /* We have a known offset into the string. Start searching there for
270 a null character if we can represent it as a single HOST_WIDE_INT. */
271 if (offset_node == 0)
272 offset = 0;
273 else if (! host_integerp (offset_node, 0))
274 offset = -1;
275 else
276 offset = tree_low_cst (offset_node, 0);
278 /* If the offset is known to be out of bounds, warn, and call strlen at
279 runtime. */
280 if (offset < 0 || offset > max)
282 warning ("offset outside bounds of constant string");
283 return 0;
286 /* Use strlen to search for the first zero byte. Since any strings
287 constructed with build_string will have nulls appended, we win even
288 if we get handed something like (char[4])"abcd".
290 Since OFFSET is our starting index into the string, no further
291 calculation is needed. */
292 return ssize_int (strlen (ptr + offset));
295 /* Return a char pointer for a C string if it is a string constant
296 or sum of string constant and integer constant. */
298 static const char *
299 c_getstr (src)
300 tree src;
302 tree offset_node;
304 src = string_constant (src, &offset_node);
305 if (src == 0)
306 return 0;
308 if (offset_node == 0)
309 return TREE_STRING_POINTER (src);
310 else if (!host_integerp (offset_node, 1)
311 || compare_tree_int (offset_node, TREE_STRING_LENGTH (src) - 1) > 0)
312 return 0;
314 return TREE_STRING_POINTER (src) + tree_low_cst (offset_node, 1);
317 /* Return a CONST_INT or CONST_DOUBLE corresponding to target reading
318 GET_MODE_BITSIZE (MODE) bits from string constant STR. */
320 static rtx
321 c_readstr (str, mode)
322 const char *str;
323 enum machine_mode mode;
325 HOST_WIDE_INT c[2];
326 HOST_WIDE_INT ch;
327 unsigned int i, j;
329 if (GET_MODE_CLASS (mode) != MODE_INT)
330 abort ();
331 c[0] = 0;
332 c[1] = 0;
333 ch = 1;
334 for (i = 0; i < GET_MODE_SIZE (mode); i++)
336 j = i;
337 if (WORDS_BIG_ENDIAN)
338 j = GET_MODE_SIZE (mode) - i - 1;
339 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
340 && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
341 j = j + UNITS_PER_WORD - 2 * (j % UNITS_PER_WORD) - 1;
342 j *= BITS_PER_UNIT;
343 if (j > 2 * HOST_BITS_PER_WIDE_INT)
344 abort ();
345 if (ch)
346 ch = (unsigned char) str[i];
347 c[j / HOST_BITS_PER_WIDE_INT] |= ch << (j % HOST_BITS_PER_WIDE_INT);
349 return immed_double_const (c[0], c[1], mode);
352 /* Cast a target constant CST to target CHAR and if that value fits into
353 host char type, return zero and put that value into variable pointed by
354 P. */
356 static int
357 target_char_cast (cst, p)
358 tree cst;
359 char *p;
361 unsigned HOST_WIDE_INT val, hostval;
363 if (!host_integerp (cst, 1)
364 || CHAR_TYPE_SIZE > HOST_BITS_PER_WIDE_INT)
365 return 1;
367 val = tree_low_cst (cst, 1);
368 if (CHAR_TYPE_SIZE < HOST_BITS_PER_WIDE_INT)
369 val &= (((unsigned HOST_WIDE_INT) 1) << CHAR_TYPE_SIZE) - 1;
371 hostval = val;
372 if (HOST_BITS_PER_CHAR < HOST_BITS_PER_WIDE_INT)
373 hostval &= (((unsigned HOST_WIDE_INT) 1) << HOST_BITS_PER_CHAR) - 1;
375 if (val != hostval)
376 return 1;
378 *p = hostval;
379 return 0;
382 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
383 times to get the address of either a higher stack frame, or a return
384 address located within it (depending on FNDECL_CODE). */
387 expand_builtin_return_addr (fndecl_code, count, tem)
388 enum built_in_function fndecl_code;
389 int count;
390 rtx tem;
392 int i;
394 /* Some machines need special handling before we can access
395 arbitrary frames. For example, on the sparc, we must first flush
396 all register windows to the stack. */
397 #ifdef SETUP_FRAME_ADDRESSES
398 if (count > 0)
399 SETUP_FRAME_ADDRESSES ();
400 #endif
402 /* On the sparc, the return address is not in the frame, it is in a
403 register. There is no way to access it off of the current frame
404 pointer, but it can be accessed off the previous frame pointer by
405 reading the value from the register window save area. */
406 #ifdef RETURN_ADDR_IN_PREVIOUS_FRAME
407 if (fndecl_code == BUILT_IN_RETURN_ADDRESS)
408 count--;
409 #endif
411 /* Scan back COUNT frames to the specified frame. */
412 for (i = 0; i < count; i++)
414 /* Assume the dynamic chain pointer is in the word that the
415 frame address points to, unless otherwise specified. */
416 #ifdef DYNAMIC_CHAIN_ADDRESS
417 tem = DYNAMIC_CHAIN_ADDRESS (tem);
418 #endif
419 tem = memory_address (Pmode, tem);
420 tem = gen_rtx_MEM (Pmode, tem);
421 set_mem_alias_set (tem, get_frame_alias_set ());
422 tem = copy_to_reg (tem);
425 /* For __builtin_frame_address, return what we've got. */
426 if (fndecl_code == BUILT_IN_FRAME_ADDRESS)
427 return tem;
429 /* For __builtin_return_address, Get the return address from that
430 frame. */
431 #ifdef RETURN_ADDR_RTX
432 tem = RETURN_ADDR_RTX (count, tem);
433 #else
434 tem = memory_address (Pmode,
435 plus_constant (tem, GET_MODE_SIZE (Pmode)));
436 tem = gen_rtx_MEM (Pmode, tem);
437 set_mem_alias_set (tem, get_frame_alias_set ());
438 #endif
439 return tem;
442 /* Alias set used for setjmp buffer. */
443 static HOST_WIDE_INT setjmp_alias_set = -1;
445 /* Construct the leading half of a __builtin_setjmp call. Control will
446 return to RECEIVER_LABEL. This is used directly by sjlj exception
447 handling code. */
449 void
450 expand_builtin_setjmp_setup (buf_addr, receiver_label)
451 rtx buf_addr;
452 rtx receiver_label;
454 enum machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
455 rtx stack_save;
456 rtx mem;
458 if (setjmp_alias_set == -1)
459 setjmp_alias_set = new_alias_set ();
461 #ifdef POINTERS_EXTEND_UNSIGNED
462 if (GET_MODE (buf_addr) != Pmode)
463 buf_addr = convert_memory_address (Pmode, buf_addr);
464 #endif
466 buf_addr = force_reg (Pmode, force_operand (buf_addr, NULL_RTX));
468 emit_queue ();
470 /* We store the frame pointer and the address of receiver_label in
471 the buffer and use the rest of it for the stack save area, which
472 is machine-dependent. */
474 #ifndef BUILTIN_SETJMP_FRAME_VALUE
475 #define BUILTIN_SETJMP_FRAME_VALUE virtual_stack_vars_rtx
476 #endif
478 mem = gen_rtx_MEM (Pmode, buf_addr);
479 set_mem_alias_set (mem, setjmp_alias_set);
480 emit_move_insn (mem, BUILTIN_SETJMP_FRAME_VALUE);
482 mem = gen_rtx_MEM (Pmode, plus_constant (buf_addr, GET_MODE_SIZE (Pmode))),
483 set_mem_alias_set (mem, setjmp_alias_set);
485 emit_move_insn (validize_mem (mem),
486 force_reg (Pmode, gen_rtx_LABEL_REF (Pmode, receiver_label)));
488 stack_save = gen_rtx_MEM (sa_mode,
489 plus_constant (buf_addr,
490 2 * GET_MODE_SIZE (Pmode)));
491 set_mem_alias_set (stack_save, setjmp_alias_set);
492 emit_stack_save (SAVE_NONLOCAL, &stack_save, NULL_RTX);
494 /* If there is further processing to do, do it. */
495 #ifdef HAVE_builtin_setjmp_setup
496 if (HAVE_builtin_setjmp_setup)
497 emit_insn (gen_builtin_setjmp_setup (buf_addr));
498 #endif
500 /* Tell optimize_save_area_alloca that extra work is going to
501 need to go on during alloca. */
502 current_function_calls_setjmp = 1;
504 /* Set this so all the registers get saved in our frame; we need to be
505 able to copy the saved values for any registers from frames we unwind. */
506 current_function_has_nonlocal_label = 1;
509 /* Construct the trailing part of a __builtin_setjmp call.
510 This is used directly by sjlj exception handling code. */
512 void
513 expand_builtin_setjmp_receiver (receiver_label)
514 rtx receiver_label ATTRIBUTE_UNUSED;
516 /* Clobber the FP when we get here, so we have to make sure it's
517 marked as used by this function. */
518 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
520 /* Mark the static chain as clobbered here so life information
521 doesn't get messed up for it. */
522 emit_insn (gen_rtx_CLOBBER (VOIDmode, static_chain_rtx));
524 /* Now put in the code to restore the frame pointer, and argument
525 pointer, if needed. The code below is from expand_end_bindings
526 in stmt.c; see detailed documentation there. */
527 #ifdef HAVE_nonlocal_goto
528 if (! HAVE_nonlocal_goto)
529 #endif
530 emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx);
532 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
533 if (fixed_regs[ARG_POINTER_REGNUM])
535 #ifdef ELIMINABLE_REGS
536 size_t i;
537 static const struct elims {const int from, to;} elim_regs[] = ELIMINABLE_REGS;
539 for (i = 0; i < ARRAY_SIZE (elim_regs); i++)
540 if (elim_regs[i].from == ARG_POINTER_REGNUM
541 && elim_regs[i].to == HARD_FRAME_POINTER_REGNUM)
542 break;
544 if (i == ARRAY_SIZE (elim_regs))
545 #endif
547 /* Now restore our arg pointer from the address at which it
548 was saved in our stack frame. */
549 emit_move_insn (virtual_incoming_args_rtx,
550 copy_to_reg (get_arg_pointer_save_area (cfun)));
553 #endif
555 #ifdef HAVE_builtin_setjmp_receiver
556 if (HAVE_builtin_setjmp_receiver)
557 emit_insn (gen_builtin_setjmp_receiver (receiver_label));
558 else
559 #endif
560 #ifdef HAVE_nonlocal_goto_receiver
561 if (HAVE_nonlocal_goto_receiver)
562 emit_insn (gen_nonlocal_goto_receiver ());
563 else
564 #endif
565 { /* Nothing */ }
567 /* @@@ This is a kludge. Not all machine descriptions define a blockage
568 insn, but we must not allow the code we just generated to be reordered
569 by scheduling. Specifically, the update of the frame pointer must
570 happen immediately, not later. So emit an ASM_INPUT to act as blockage
571 insn. */
572 emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
575 /* __builtin_setjmp is passed a pointer to an array of five words (not
576 all will be used on all machines). It operates similarly to the C
577 library function of the same name, but is more efficient. Much of
578 the code below (and for longjmp) is copied from the handling of
579 non-local gotos.
581 NOTE: This is intended for use by GNAT and the exception handling
582 scheme in the compiler and will only work in the method used by
583 them. */
585 static rtx
586 expand_builtin_setjmp (arglist, target)
587 tree arglist;
588 rtx target;
590 rtx buf_addr, next_lab, cont_lab;
592 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
593 return NULL_RTX;
595 if (target == 0 || GET_CODE (target) != REG
596 || REGNO (target) < FIRST_PSEUDO_REGISTER)
597 target = gen_reg_rtx (TYPE_MODE (integer_type_node));
599 buf_addr = expand_expr (TREE_VALUE (arglist), NULL_RTX, VOIDmode, 0);
601 next_lab = gen_label_rtx ();
602 cont_lab = gen_label_rtx ();
604 expand_builtin_setjmp_setup (buf_addr, next_lab);
606 /* Set TARGET to zero and branch to the continue label. */
607 emit_move_insn (target, const0_rtx);
608 emit_jump_insn (gen_jump (cont_lab));
609 emit_barrier ();
610 emit_label (next_lab);
612 expand_builtin_setjmp_receiver (next_lab);
614 /* Set TARGET to one. */
615 emit_move_insn (target, const1_rtx);
616 emit_label (cont_lab);
618 /* Tell flow about the strange goings on. Putting `next_lab' on
619 `nonlocal_goto_handler_labels' to indicates that function
620 calls may traverse the arc back to this label. */
622 current_function_has_nonlocal_label = 1;
623 nonlocal_goto_handler_labels
624 = gen_rtx_EXPR_LIST (VOIDmode, next_lab, nonlocal_goto_handler_labels);
626 return target;
629 /* __builtin_longjmp is passed a pointer to an array of five words (not
630 all will be used on all machines). It operates similarly to the C
631 library function of the same name, but is more efficient. Much of
632 the code below is copied from the handling of non-local gotos.
634 NOTE: This is intended for use by GNAT and the exception handling
635 scheme in the compiler and will only work in the method used by
636 them. */
638 void
639 expand_builtin_longjmp (buf_addr, value)
640 rtx buf_addr, value;
642 rtx fp, lab, stack, insn;
643 enum machine_mode sa_mode = STACK_SAVEAREA_MODE (SAVE_NONLOCAL);
645 if (setjmp_alias_set == -1)
646 setjmp_alias_set = new_alias_set ();
648 #ifdef POINTERS_EXTEND_UNSIGNED
649 if (GET_MODE (buf_addr) != Pmode)
650 buf_addr = convert_memory_address (Pmode, buf_addr);
651 #endif
653 buf_addr = force_reg (Pmode, buf_addr);
655 /* We used to store value in static_chain_rtx, but that fails if pointers
656 are smaller than integers. We instead require that the user must pass
657 a second argument of 1, because that is what builtin_setjmp will
658 return. This also makes EH slightly more efficient, since we are no
659 longer copying around a value that we don't care about. */
660 if (value != const1_rtx)
661 abort ();
663 current_function_calls_longjmp = 1;
665 #ifdef HAVE_builtin_longjmp
666 if (HAVE_builtin_longjmp)
667 emit_insn (gen_builtin_longjmp (buf_addr));
668 else
669 #endif
671 fp = gen_rtx_MEM (Pmode, buf_addr);
672 lab = gen_rtx_MEM (Pmode, plus_constant (buf_addr,
673 GET_MODE_SIZE (Pmode)));
675 stack = gen_rtx_MEM (sa_mode, plus_constant (buf_addr,
676 2 * GET_MODE_SIZE (Pmode)));
677 set_mem_alias_set (fp, setjmp_alias_set);
678 set_mem_alias_set (lab, setjmp_alias_set);
679 set_mem_alias_set (stack, setjmp_alias_set);
681 /* Pick up FP, label, and SP from the block and jump. This code is
682 from expand_goto in stmt.c; see there for detailed comments. */
683 #if HAVE_nonlocal_goto
684 if (HAVE_nonlocal_goto)
685 /* We have to pass a value to the nonlocal_goto pattern that will
686 get copied into the static_chain pointer, but it does not matter
687 what that value is, because builtin_setjmp does not use it. */
688 emit_insn (gen_nonlocal_goto (value, lab, stack, fp));
689 else
690 #endif
692 lab = copy_to_reg (lab);
694 emit_move_insn (hard_frame_pointer_rtx, fp);
695 emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
697 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
698 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
699 emit_indirect_jump (lab);
703 /* Search backwards and mark the jump insn as a non-local goto.
704 Note that this precludes the use of __builtin_longjmp to a
705 __builtin_setjmp target in the same function. However, we've
706 already cautioned the user that these functions are for
707 internal exception handling use only. */
708 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
710 if (GET_CODE (insn) == JUMP_INSN)
712 REG_NOTES (insn) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO, const0_rtx,
713 REG_NOTES (insn));
714 break;
716 else if (GET_CODE (insn) == CALL_INSN)
717 break;
721 /* Expand a call to __builtin_prefetch. For a target that does not support
722 data prefetch, evaluate the memory address argument in case it has side
723 effects. */
725 static void
726 expand_builtin_prefetch (arglist)
727 tree arglist;
729 tree arg0, arg1, arg2;
730 rtx op0, op1, op2;
732 if (!validate_arglist (arglist, POINTER_TYPE, 0))
733 return;
735 arg0 = TREE_VALUE (arglist);
736 /* Arguments 1 and 2 are optional; argument 1 (read/write) defaults to
737 zero (read) and argument 2 (locality) defaults to 3 (high degree of
738 locality). */
739 if (TREE_CHAIN (arglist))
741 arg1 = TREE_VALUE (TREE_CHAIN (arglist));
742 if (TREE_CHAIN (TREE_CHAIN (arglist)))
743 arg2 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
744 else
745 arg2 = build_int_2 (3, 0);
747 else
749 arg1 = integer_zero_node;
750 arg2 = build_int_2 (3, 0);
753 /* Argument 0 is an address. */
754 op0 = expand_expr (arg0, NULL_RTX, Pmode, EXPAND_NORMAL);
756 /* Argument 1 (read/write flag) must be a compile-time constant int. */
757 if (TREE_CODE (arg1) != INTEGER_CST)
759 error ("second arg to `__builtin_prefetch' must be a constant");
760 arg1 = integer_zero_node;
762 op1 = expand_expr (arg1, NULL_RTX, VOIDmode, 0);
763 /* Argument 1 must be either zero or one. */
764 if (INTVAL (op1) != 0 && INTVAL (op1) != 1)
766 warning ("invalid second arg to __builtin_prefetch; using zero");
767 op1 = const0_rtx;
770 /* Argument 2 (locality) must be a compile-time constant int. */
771 if (TREE_CODE (arg2) != INTEGER_CST)
773 error ("third arg to `__builtin_prefetch' must be a constant");
774 arg2 = integer_zero_node;
776 op2 = expand_expr (arg2, NULL_RTX, VOIDmode, 0);
777 /* Argument 2 must be 0, 1, 2, or 3. */
778 if (INTVAL (op2) < 0 || INTVAL (op2) > 3)
780 warning ("invalid third arg to __builtin_prefetch; using zero");
781 op2 = const0_rtx;
784 #ifdef HAVE_prefetch
785 if (HAVE_prefetch)
787 if (! (*insn_data[(int)CODE_FOR_prefetch].operand[0].predicate)
788 (op0, Pmode))
789 op0 = force_reg (Pmode, op0);
790 emit_insn (gen_prefetch (op0, op1, op2));
792 else
793 #endif
794 op0 = protect_from_queue (op0, 0);
795 /* Don't do anything with direct references to volatile memory, but
796 generate code to handle other side effects. */
797 if (GET_CODE (op0) != MEM && side_effects_p (op0))
798 emit_insn (op0);
801 /* Get a MEM rtx for expression EXP which is the address of an operand
802 to be used to be used in a string instruction (cmpstrsi, movstrsi, ..). */
804 static rtx
805 get_memory_rtx (exp)
806 tree exp;
808 rtx addr = expand_expr (exp, NULL_RTX, ptr_mode, EXPAND_SUM);
809 rtx mem;
811 #ifdef POINTERS_EXTEND_UNSIGNED
812 if (GET_MODE (addr) != Pmode)
813 addr = convert_memory_address (Pmode, addr);
814 #endif
816 mem = gen_rtx_MEM (BLKmode, memory_address (BLKmode, addr));
818 /* Get an expression we can use to find the attributes to assign to MEM.
819 If it is an ADDR_EXPR, use the operand. Otherwise, dereference it if
820 we can. First remove any nops. */
821 while ((TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
822 || TREE_CODE (exp) == NON_LVALUE_EXPR)
823 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
824 exp = TREE_OPERAND (exp, 0);
826 if (TREE_CODE (exp) == ADDR_EXPR)
828 exp = TREE_OPERAND (exp, 0);
829 set_mem_attributes (mem, exp, 0);
831 else if (POINTER_TYPE_P (TREE_TYPE (exp)))
833 exp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (exp)), exp);
834 /* memcpy, memset and other builtin stringops can alias with anything. */
835 set_mem_alias_set (mem, 0);
838 return mem;
841 /* Built-in functions to perform an untyped call and return. */
843 /* For each register that may be used for calling a function, this
844 gives a mode used to copy the register's value. VOIDmode indicates
845 the register is not used for calling a function. If the machine
846 has register windows, this gives only the outbound registers.
847 INCOMING_REGNO gives the corresponding inbound register. */
848 static enum machine_mode apply_args_mode[FIRST_PSEUDO_REGISTER];
850 /* For each register that may be used for returning values, this gives
851 a mode used to copy the register's value. VOIDmode indicates the
852 register is not used for returning values. If the machine has
853 register windows, this gives only the outbound registers.
854 INCOMING_REGNO gives the corresponding inbound register. */
855 static enum machine_mode apply_result_mode[FIRST_PSEUDO_REGISTER];
857 /* For each register that may be used for calling a function, this
858 gives the offset of that register into the block returned by
859 __builtin_apply_args. 0 indicates that the register is not
860 used for calling a function. */
861 static int apply_args_reg_offset[FIRST_PSEUDO_REGISTER];
863 /* Return the offset of register REGNO into the block returned by
864 __builtin_apply_args. This is not declared static, since it is
865 needed in objc-act.c. */
868 apply_args_register_offset (regno)
869 int regno;
871 apply_args_size ();
873 /* Arguments are always put in outgoing registers (in the argument
874 block) if such make sense. */
875 #ifdef OUTGOING_REGNO
876 regno = OUTGOING_REGNO(regno);
877 #endif
878 return apply_args_reg_offset[regno];
881 /* Return the size required for the block returned by __builtin_apply_args,
882 and initialize apply_args_mode. */
884 static int
885 apply_args_size ()
887 static int size = -1;
888 int align;
889 unsigned int regno;
890 enum machine_mode mode;
892 /* The values computed by this function never change. */
893 if (size < 0)
895 /* The first value is the incoming arg-pointer. */
896 size = GET_MODE_SIZE (Pmode);
898 /* The second value is the structure value address unless this is
899 passed as an "invisible" first argument. */
900 if (struct_value_rtx)
901 size += GET_MODE_SIZE (Pmode);
903 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
904 if (FUNCTION_ARG_REGNO_P (regno))
906 /* Search for the proper mode for copying this register's
907 value. I'm not sure this is right, but it works so far. */
908 enum machine_mode best_mode = VOIDmode;
910 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
911 mode != VOIDmode;
912 mode = GET_MODE_WIDER_MODE (mode))
913 if (HARD_REGNO_MODE_OK (regno, mode)
914 && HARD_REGNO_NREGS (regno, mode) == 1)
915 best_mode = mode;
917 if (best_mode == VOIDmode)
918 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
919 mode != VOIDmode;
920 mode = GET_MODE_WIDER_MODE (mode))
921 if (HARD_REGNO_MODE_OK (regno, mode)
922 && have_insn_for (SET, mode))
923 best_mode = mode;
925 if (best_mode == VOIDmode)
926 for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT);
927 mode != VOIDmode;
928 mode = GET_MODE_WIDER_MODE (mode))
929 if (HARD_REGNO_MODE_OK (regno, mode)
930 && have_insn_for (SET, mode))
931 best_mode = mode;
933 if (best_mode == VOIDmode)
934 for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT);
935 mode != VOIDmode;
936 mode = GET_MODE_WIDER_MODE (mode))
937 if (HARD_REGNO_MODE_OK (regno, mode)
938 && have_insn_for (SET, mode))
939 best_mode = mode;
941 mode = best_mode;
942 if (mode == VOIDmode)
943 abort ();
945 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
946 if (size % align != 0)
947 size = CEIL (size, align) * align;
948 apply_args_reg_offset[regno] = size;
949 size += GET_MODE_SIZE (mode);
950 apply_args_mode[regno] = mode;
952 else
954 apply_args_mode[regno] = VOIDmode;
955 apply_args_reg_offset[regno] = 0;
958 return size;
961 /* Return the size required for the block returned by __builtin_apply,
962 and initialize apply_result_mode. */
964 static int
965 apply_result_size ()
967 static int size = -1;
968 int align, regno;
969 enum machine_mode mode;
971 /* The values computed by this function never change. */
972 if (size < 0)
974 size = 0;
976 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
977 if (FUNCTION_VALUE_REGNO_P (regno))
979 /* Search for the proper mode for copying this register's
980 value. I'm not sure this is right, but it works so far. */
981 enum machine_mode best_mode = VOIDmode;
983 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
984 mode != TImode;
985 mode = GET_MODE_WIDER_MODE (mode))
986 if (HARD_REGNO_MODE_OK (regno, mode))
987 best_mode = mode;
989 if (best_mode == VOIDmode)
990 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
991 mode != VOIDmode;
992 mode = GET_MODE_WIDER_MODE (mode))
993 if (HARD_REGNO_MODE_OK (regno, mode)
994 && have_insn_for (SET, mode))
995 best_mode = mode;
997 if (best_mode == VOIDmode)
998 for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_FLOAT);
999 mode != VOIDmode;
1000 mode = GET_MODE_WIDER_MODE (mode))
1001 if (HARD_REGNO_MODE_OK (regno, mode)
1002 && have_insn_for (SET, mode))
1003 best_mode = mode;
1005 if (best_mode == VOIDmode)
1006 for (mode = GET_CLASS_NARROWEST_MODE (MODE_VECTOR_INT);
1007 mode != VOIDmode;
1008 mode = GET_MODE_WIDER_MODE (mode))
1009 if (HARD_REGNO_MODE_OK (regno, mode)
1010 && have_insn_for (SET, mode))
1011 best_mode = mode;
1013 mode = best_mode;
1014 if (mode == VOIDmode)
1015 abort ();
1017 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1018 if (size % align != 0)
1019 size = CEIL (size, align) * align;
1020 size += GET_MODE_SIZE (mode);
1021 apply_result_mode[regno] = mode;
1023 else
1024 apply_result_mode[regno] = VOIDmode;
1026 /* Allow targets that use untyped_call and untyped_return to override
1027 the size so that machine-specific information can be stored here. */
1028 #ifdef APPLY_RESULT_SIZE
1029 size = APPLY_RESULT_SIZE;
1030 #endif
1032 return size;
1035 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
1036 /* Create a vector describing the result block RESULT. If SAVEP is true,
1037 the result block is used to save the values; otherwise it is used to
1038 restore the values. */
1040 static rtx
1041 result_vector (savep, result)
1042 int savep;
1043 rtx result;
1045 int regno, size, align, nelts;
1046 enum machine_mode mode;
1047 rtx reg, mem;
1048 rtx *savevec = (rtx *) alloca (FIRST_PSEUDO_REGISTER * sizeof (rtx));
1050 size = nelts = 0;
1051 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1052 if ((mode = apply_result_mode[regno]) != VOIDmode)
1054 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1055 if (size % align != 0)
1056 size = CEIL (size, align) * align;
1057 reg = gen_rtx_REG (mode, savep ? regno : INCOMING_REGNO (regno));
1058 mem = adjust_address (result, mode, size);
1059 savevec[nelts++] = (savep
1060 ? gen_rtx_SET (VOIDmode, mem, reg)
1061 : gen_rtx_SET (VOIDmode, reg, mem));
1062 size += GET_MODE_SIZE (mode);
1064 return gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (nelts, savevec));
1066 #endif /* HAVE_untyped_call or HAVE_untyped_return */
1068 /* Save the state required to perform an untyped call with the same
1069 arguments as were passed to the current function. */
1071 static rtx
1072 expand_builtin_apply_args_1 ()
1074 rtx registers;
1075 int size, align, regno;
1076 enum machine_mode mode;
1078 /* Create a block where the arg-pointer, structure value address,
1079 and argument registers can be saved. */
1080 registers = assign_stack_local (BLKmode, apply_args_size (), -1);
1082 /* Walk past the arg-pointer and structure value address. */
1083 size = GET_MODE_SIZE (Pmode);
1084 if (struct_value_rtx)
1085 size += GET_MODE_SIZE (Pmode);
1087 /* Save each register used in calling a function to the block. */
1088 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1089 if ((mode = apply_args_mode[regno]) != VOIDmode)
1091 rtx tem;
1093 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1094 if (size % align != 0)
1095 size = CEIL (size, align) * align;
1097 tem = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1099 emit_move_insn (adjust_address (registers, mode, size), tem);
1100 size += GET_MODE_SIZE (mode);
1103 /* Save the arg pointer to the block. */
1104 emit_move_insn (adjust_address (registers, Pmode, 0),
1105 copy_to_reg (virtual_incoming_args_rtx));
1106 size = GET_MODE_SIZE (Pmode);
1108 /* Save the structure value address unless this is passed as an
1109 "invisible" first argument. */
1110 if (struct_value_incoming_rtx)
1112 emit_move_insn (adjust_address (registers, Pmode, size),
1113 copy_to_reg (struct_value_incoming_rtx));
1114 size += GET_MODE_SIZE (Pmode);
1117 /* Return the address of the block. */
1118 return copy_addr_to_reg (XEXP (registers, 0));
1121 /* __builtin_apply_args returns block of memory allocated on
1122 the stack into which is stored the arg pointer, structure
1123 value address, static chain, and all the registers that might
1124 possibly be used in performing a function call. The code is
1125 moved to the start of the function so the incoming values are
1126 saved. */
1128 static rtx
1129 expand_builtin_apply_args ()
1131 /* Don't do __builtin_apply_args more than once in a function.
1132 Save the result of the first call and reuse it. */
1133 if (apply_args_value != 0)
1134 return apply_args_value;
1136 /* When this function is called, it means that registers must be
1137 saved on entry to this function. So we migrate the
1138 call to the first insn of this function. */
1139 rtx temp;
1140 rtx seq;
1142 start_sequence ();
1143 temp = expand_builtin_apply_args_1 ();
1144 seq = get_insns ();
1145 end_sequence ();
1147 apply_args_value = temp;
1149 /* Put the sequence after the NOTE that starts the function.
1150 If this is inside a SEQUENCE, make the outer-level insn
1151 chain current, so the code is placed at the start of the
1152 function. */
1153 push_topmost_sequence ();
1154 emit_insns_before (seq, NEXT_INSN (get_insns ()));
1155 pop_topmost_sequence ();
1156 return temp;
1160 /* Perform an untyped call and save the state required to perform an
1161 untyped return of whatever value was returned by the given function. */
1163 static rtx
1164 expand_builtin_apply (function, arguments, argsize)
1165 rtx function, arguments, argsize;
1167 int size, align, regno;
1168 enum machine_mode mode;
1169 rtx incoming_args, result, reg, dest, src, call_insn;
1170 rtx old_stack_level = 0;
1171 rtx call_fusage = 0;
1173 #ifdef POINTERS_EXTEND_UNSIGNED
1174 if (GET_MODE (arguments) != Pmode)
1175 arguments = convert_memory_address (Pmode, arguments);
1176 #endif
1178 /* Create a block where the return registers can be saved. */
1179 result = assign_stack_local (BLKmode, apply_result_size (), -1);
1181 /* Fetch the arg pointer from the ARGUMENTS block. */
1182 incoming_args = gen_reg_rtx (Pmode);
1183 emit_move_insn (incoming_args, gen_rtx_MEM (Pmode, arguments));
1184 #ifndef STACK_GROWS_DOWNWARD
1185 incoming_args = expand_simple_binop (Pmode, MINUS, incoming_args, argsize,
1186 incoming_args, 0, OPTAB_LIB_WIDEN);
1187 #endif
1189 /* Perform postincrements before actually calling the function. */
1190 emit_queue ();
1192 /* Push a new argument block and copy the arguments. Do not allow
1193 the (potential) memcpy call below to interfere with our stack
1194 manipulations. */
1195 do_pending_stack_adjust ();
1196 NO_DEFER_POP;
1198 /* Save the stack with nonlocal if available */
1199 #ifdef HAVE_save_stack_nonlocal
1200 if (HAVE_save_stack_nonlocal)
1201 emit_stack_save (SAVE_NONLOCAL, &old_stack_level, NULL_RTX);
1202 else
1203 #endif
1204 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
1206 /* Push a block of memory onto the stack to store the memory arguments.
1207 Save the address in a register, and copy the memory arguments. ??? I
1208 haven't figured out how the calling convention macros effect this,
1209 but it's likely that the source and/or destination addresses in
1210 the block copy will need updating in machine specific ways. */
1211 dest = allocate_dynamic_stack_space (argsize, 0, BITS_PER_UNIT);
1212 dest = gen_rtx_MEM (BLKmode, dest);
1213 set_mem_align (dest, PARM_BOUNDARY);
1214 src = gen_rtx_MEM (BLKmode, incoming_args);
1215 set_mem_align (src, PARM_BOUNDARY);
1216 emit_block_move (dest, src, argsize);
1218 /* Refer to the argument block. */
1219 apply_args_size ();
1220 arguments = gen_rtx_MEM (BLKmode, arguments);
1221 set_mem_align (arguments, PARM_BOUNDARY);
1223 /* Walk past the arg-pointer and structure value address. */
1224 size = GET_MODE_SIZE (Pmode);
1225 if (struct_value_rtx)
1226 size += GET_MODE_SIZE (Pmode);
1228 /* Restore each of the registers previously saved. Make USE insns
1229 for each of these registers for use in making the call. */
1230 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1231 if ((mode = apply_args_mode[regno]) != VOIDmode)
1233 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1234 if (size % align != 0)
1235 size = CEIL (size, align) * align;
1236 reg = gen_rtx_REG (mode, regno);
1237 emit_move_insn (reg, adjust_address (arguments, mode, size));
1238 use_reg (&call_fusage, reg);
1239 size += GET_MODE_SIZE (mode);
1242 /* Restore the structure value address unless this is passed as an
1243 "invisible" first argument. */
1244 size = GET_MODE_SIZE (Pmode);
1245 if (struct_value_rtx)
1247 rtx value = gen_reg_rtx (Pmode);
1248 emit_move_insn (value, adjust_address (arguments, Pmode, size));
1249 emit_move_insn (struct_value_rtx, value);
1250 if (GET_CODE (struct_value_rtx) == REG)
1251 use_reg (&call_fusage, struct_value_rtx);
1252 size += GET_MODE_SIZE (Pmode);
1255 /* All arguments and registers used for the call are set up by now! */
1256 function = prepare_call_address (function, NULL_TREE, &call_fusage, 0, 0);
1258 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1259 and we don't want to load it into a register as an optimization,
1260 because prepare_call_address already did it if it should be done. */
1261 if (GET_CODE (function) != SYMBOL_REF)
1262 function = memory_address (FUNCTION_MODE, function);
1264 /* Generate the actual call instruction and save the return value. */
1265 #ifdef HAVE_untyped_call
1266 if (HAVE_untyped_call)
1267 emit_call_insn (gen_untyped_call (gen_rtx_MEM (FUNCTION_MODE, function),
1268 result, result_vector (1, result)));
1269 else
1270 #endif
1271 #ifdef HAVE_call_value
1272 if (HAVE_call_value)
1274 rtx valreg = 0;
1276 /* Locate the unique return register. It is not possible to
1277 express a call that sets more than one return register using
1278 call_value; use untyped_call for that. In fact, untyped_call
1279 only needs to save the return registers in the given block. */
1280 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1281 if ((mode = apply_result_mode[regno]) != VOIDmode)
1283 if (valreg)
1284 abort (); /* HAVE_untyped_call required. */
1285 valreg = gen_rtx_REG (mode, regno);
1288 emit_call_insn (GEN_CALL_VALUE (valreg,
1289 gen_rtx_MEM (FUNCTION_MODE, function),
1290 const0_rtx, NULL_RTX, const0_rtx));
1292 emit_move_insn (adjust_address (result, GET_MODE (valreg), 0), valreg);
1294 else
1295 #endif
1296 abort ();
1298 /* Find the CALL insn we just emitted. */
1299 for (call_insn = get_last_insn ();
1300 call_insn && GET_CODE (call_insn) != CALL_INSN;
1301 call_insn = PREV_INSN (call_insn))
1304 if (! call_insn)
1305 abort ();
1307 /* Put the register usage information on the CALL. If there is already
1308 some usage information, put ours at the end. */
1309 if (CALL_INSN_FUNCTION_USAGE (call_insn))
1311 rtx link;
1313 for (link = CALL_INSN_FUNCTION_USAGE (call_insn); XEXP (link, 1) != 0;
1314 link = XEXP (link, 1))
1317 XEXP (link, 1) = call_fusage;
1319 else
1320 CALL_INSN_FUNCTION_USAGE (call_insn) = call_fusage;
1322 /* Restore the stack. */
1323 #ifdef HAVE_save_stack_nonlocal
1324 if (HAVE_save_stack_nonlocal)
1325 emit_stack_restore (SAVE_NONLOCAL, old_stack_level, NULL_RTX);
1326 else
1327 #endif
1328 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
1330 OK_DEFER_POP;
1332 /* Return the address of the result block. */
1333 return copy_addr_to_reg (XEXP (result, 0));
1336 /* Perform an untyped return. */
1338 static void
1339 expand_builtin_return (result)
1340 rtx result;
1342 int size, align, regno;
1343 enum machine_mode mode;
1344 rtx reg;
1345 rtx call_fusage = 0;
1347 #ifdef POINTERS_EXTEND_UNSIGNED
1348 if (GET_MODE (result) != Pmode)
1349 result = convert_memory_address (Pmode, result);
1350 #endif
1352 apply_result_size ();
1353 result = gen_rtx_MEM (BLKmode, result);
1355 #ifdef HAVE_untyped_return
1356 if (HAVE_untyped_return)
1358 emit_jump_insn (gen_untyped_return (result, result_vector (0, result)));
1359 emit_barrier ();
1360 return;
1362 #endif
1364 /* Restore the return value and note that each value is used. */
1365 size = 0;
1366 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1367 if ((mode = apply_result_mode[regno]) != VOIDmode)
1369 align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
1370 if (size % align != 0)
1371 size = CEIL (size, align) * align;
1372 reg = gen_rtx_REG (mode, INCOMING_REGNO (regno));
1373 emit_move_insn (reg, adjust_address (result, mode, size));
1375 push_to_sequence (call_fusage);
1376 emit_insn (gen_rtx_USE (VOIDmode, reg));
1377 call_fusage = get_insns ();
1378 end_sequence ();
1379 size += GET_MODE_SIZE (mode);
1382 /* Put the USE insns before the return. */
1383 emit_insns (call_fusage);
1385 /* Return whatever values was restored by jumping directly to the end
1386 of the function. */
1387 expand_null_return ();
1390 /* Used by expand_builtin_classify_type and fold_builtin_classify_type. */
1392 static enum type_class
1393 type_to_class (type)
1394 tree type;
1396 switch (TREE_CODE (type))
1398 case VOID_TYPE: return void_type_class;
1399 case INTEGER_TYPE: return integer_type_class;
1400 case CHAR_TYPE: return char_type_class;
1401 case ENUMERAL_TYPE: return enumeral_type_class;
1402 case BOOLEAN_TYPE: return boolean_type_class;
1403 case POINTER_TYPE: return pointer_type_class;
1404 case REFERENCE_TYPE: return reference_type_class;
1405 case OFFSET_TYPE: return offset_type_class;
1406 case REAL_TYPE: return real_type_class;
1407 case COMPLEX_TYPE: return complex_type_class;
1408 case FUNCTION_TYPE: return function_type_class;
1409 case METHOD_TYPE: return method_type_class;
1410 case RECORD_TYPE: return record_type_class;
1411 case UNION_TYPE:
1412 case QUAL_UNION_TYPE: return union_type_class;
1413 case ARRAY_TYPE: return (TYPE_STRING_FLAG (type)
1414 ? string_type_class : array_type_class);
1415 case SET_TYPE: return set_type_class;
1416 case FILE_TYPE: return file_type_class;
1417 case LANG_TYPE: return lang_type_class;
1418 default: return no_type_class;
1422 /* Expand a call to __builtin_classify_type with arguments found in
1423 ARGLIST. */
1425 static rtx
1426 expand_builtin_classify_type (arglist)
1427 tree arglist;
1429 if (arglist != 0)
1430 return GEN_INT (type_to_class (TREE_TYPE (TREE_VALUE (arglist))));
1431 return GEN_INT (no_type_class);
1434 /* Expand expression EXP, which is a call to __builtin_constant_p. */
1436 static rtx
1437 expand_builtin_constant_p (exp)
1438 tree exp;
1440 tree arglist = TREE_OPERAND (exp, 1);
1441 enum machine_mode value_mode = TYPE_MODE (TREE_TYPE (exp));
1442 rtx tmp;
1444 if (arglist == 0)
1445 return const0_rtx;
1446 arglist = TREE_VALUE (arglist);
1448 /* We have taken care of the easy cases during constant folding. This
1449 case is not obvious, so emit (constant_p_rtx (ARGLIST)) and let CSE get a
1450 chance to see if it can deduce whether ARGLIST is constant. */
1452 tmp = expand_expr (arglist, NULL_RTX, VOIDmode, 0);
1453 tmp = gen_rtx_CONSTANT_P_RTX (value_mode, tmp);
1454 return tmp;
1457 /* Expand a call to one of the builtin math functions (sin, cos, or sqrt).
1458 Return 0 if a normal call should be emitted rather than expanding the
1459 function in-line. EXP is the expression that is a call to the builtin
1460 function; if convenient, the result should be placed in TARGET.
1461 SUBTARGET may be used as the target for computing one of EXP's operands. */
1463 static rtx
1464 expand_builtin_mathfn (exp, target, subtarget)
1465 tree exp;
1466 rtx target, subtarget;
1468 optab builtin_optab;
1469 rtx op0, insns;
1470 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
1471 tree arglist = TREE_OPERAND (exp, 1);
1473 if (!validate_arglist (arglist, REAL_TYPE, VOID_TYPE))
1474 return 0;
1476 /* Stabilize and compute the argument. */
1477 if (TREE_CODE (TREE_VALUE (arglist)) != VAR_DECL
1478 && TREE_CODE (TREE_VALUE (arglist)) != PARM_DECL)
1480 exp = copy_node (exp);
1481 TREE_OPERAND (exp, 1) = arglist;
1482 /* Wrap the computation of the argument in a SAVE_EXPR. That
1483 way, if we need to expand the argument again (as in the
1484 flag_errno_math case below where we cannot directly set
1485 errno), we will not perform side-effects more than once.
1486 Note that here we're mutating the original EXP as well as the
1487 copy; that's the right thing to do in case the original EXP
1488 is expanded later. */
1489 TREE_VALUE (arglist) = save_expr (TREE_VALUE (arglist));
1490 arglist = copy_node (arglist);
1492 op0 = expand_expr (TREE_VALUE (arglist), subtarget, VOIDmode, 0);
1494 /* Make a suitable register to place result in. */
1495 target = gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp)));
1497 emit_queue ();
1498 start_sequence ();
1500 switch (DECL_FUNCTION_CODE (fndecl))
1502 case BUILT_IN_SIN:
1503 case BUILT_IN_SINF:
1504 case BUILT_IN_SINL:
1505 builtin_optab = sin_optab; break;
1506 case BUILT_IN_COS:
1507 case BUILT_IN_COSF:
1508 case BUILT_IN_COSL:
1509 builtin_optab = cos_optab; break;
1510 case BUILT_IN_SQRT:
1511 case BUILT_IN_SQRTF:
1512 case BUILT_IN_SQRTL:
1513 builtin_optab = sqrt_optab; break;
1514 default:
1515 abort ();
1518 /* Compute into TARGET.
1519 Set TARGET to wherever the result comes back. */
1520 target = expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist))),
1521 builtin_optab, op0, target, 0);
1523 /* If we were unable to expand via the builtin, stop the
1524 sequence (without outputting the insns) and return 0, causing
1525 a call to the library function. */
1526 if (target == 0)
1528 end_sequence ();
1529 return 0;
1532 /* If errno must be maintained and if we are not allowing unsafe
1533 math optimizations, check the result. */
1535 if (flag_errno_math && ! flag_unsafe_math_optimizations)
1537 rtx lab1;
1539 /* Don't define the builtin FP instructions
1540 if your machine is not IEEE. */
1541 if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT)
1542 abort ();
1544 lab1 = gen_label_rtx ();
1546 /* Test the result; if it is NaN, set errno=EDOM because
1547 the argument was not in the domain. */
1548 emit_cmp_and_jump_insns (target, target, EQ, 0, GET_MODE (target),
1549 0, lab1);
1551 #ifdef TARGET_EDOM
1553 #ifdef GEN_ERRNO_RTX
1554 rtx errno_rtx = GEN_ERRNO_RTX;
1555 #else
1556 rtx errno_rtx
1557 = gen_rtx_MEM (word_mode, gen_rtx_SYMBOL_REF (Pmode, "errno"));
1558 #endif
1560 emit_move_insn (errno_rtx, GEN_INT (TARGET_EDOM));
1562 #else
1563 /* We can't set errno=EDOM directly; let the library call do it.
1564 Pop the arguments right away in case the call gets deleted. */
1565 NO_DEFER_POP;
1566 expand_call (exp, target, 0);
1567 OK_DEFER_POP;
1568 #endif
1570 emit_label (lab1);
1573 /* Output the entire sequence. */
1574 insns = get_insns ();
1575 end_sequence ();
1576 emit_insns (insns);
1578 return target;
1581 /* Expand expression EXP which is a call to the strlen builtin. Return 0
1582 if we failed the caller should emit a normal call, otherwise
1583 try to get the result in TARGET, if convenient. */
1585 static rtx
1586 expand_builtin_strlen (exp, target)
1587 tree exp;
1588 rtx target;
1590 tree arglist = TREE_OPERAND (exp, 1);
1591 enum machine_mode value_mode = TYPE_MODE (TREE_TYPE (exp));
1593 if (!validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
1594 return 0;
1595 else
1597 rtx pat;
1598 tree src = TREE_VALUE (arglist);
1600 int align
1601 = get_pointer_alignment (src, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
1603 rtx result, src_reg, char_rtx, before_strlen;
1604 enum machine_mode insn_mode = value_mode, char_mode;
1605 enum insn_code icode = CODE_FOR_nothing;
1607 /* If SRC is not a pointer type, don't do this operation inline. */
1608 if (align == 0)
1609 return 0;
1611 /* Bail out if we can't compute strlen in the right mode. */
1612 while (insn_mode != VOIDmode)
1614 icode = strlen_optab->handlers[(int) insn_mode].insn_code;
1615 if (icode != CODE_FOR_nothing)
1616 break;
1618 insn_mode = GET_MODE_WIDER_MODE (insn_mode);
1620 if (insn_mode == VOIDmode)
1621 return 0;
1623 /* Make a place to write the result of the instruction. */
1624 result = target;
1625 if (! (result != 0
1626 && GET_CODE (result) == REG
1627 && GET_MODE (result) == insn_mode
1628 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
1629 result = gen_reg_rtx (insn_mode);
1631 /* Make a place to hold the source address. We will not expand
1632 the actual source until we are sure that the expansion will
1633 not fail -- there are trees that cannot be expanded twice. */
1634 src_reg = gen_reg_rtx (Pmode);
1636 /* Mark the beginning of the strlen sequence so we can emit the
1637 source operand later. */
1638 before_strlen = get_last_insn();
1640 char_rtx = const0_rtx;
1641 char_mode = insn_data[(int) icode].operand[2].mode;
1642 if (! (*insn_data[(int) icode].operand[2].predicate) (char_rtx,
1643 char_mode))
1644 char_rtx = copy_to_mode_reg (char_mode, char_rtx);
1646 pat = GEN_FCN (icode) (result, gen_rtx_MEM (BLKmode, src_reg),
1647 char_rtx, GEN_INT (align));
1648 if (! pat)
1649 return 0;
1650 emit_insn (pat);
1652 /* Now that we are assured of success, expand the source. */
1653 start_sequence ();
1654 pat = memory_address (BLKmode,
1655 expand_expr (src, src_reg, ptr_mode, EXPAND_SUM));
1656 if (pat != src_reg)
1657 emit_move_insn (src_reg, pat);
1658 pat = gen_sequence ();
1659 end_sequence ();
1661 if (before_strlen)
1662 emit_insn_after (pat, before_strlen);
1663 else
1664 emit_insn_before (pat, get_insns ());
1666 /* Return the value in the proper mode for this function. */
1667 if (GET_MODE (result) == value_mode)
1668 target = result;
1669 else if (target != 0)
1670 convert_move (target, result, 0);
1671 else
1672 target = convert_to_mode (value_mode, result, 0);
1674 return target;
1678 /* Expand a call to the strstr builtin. Return 0 if we failed the
1679 caller should emit a normal call, otherwise try to get the result
1680 in TARGET, if convenient (and in mode MODE if that's convenient). */
1682 static rtx
1683 expand_builtin_strstr (arglist, target, mode)
1684 tree arglist;
1685 rtx target;
1686 enum machine_mode mode;
1688 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
1689 return 0;
1690 else
1692 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
1693 tree fn;
1694 const char *p1, *p2;
1696 p2 = c_getstr (s2);
1697 if (p2 == NULL)
1698 return 0;
1700 p1 = c_getstr (s1);
1701 if (p1 != NULL)
1703 const char *r = strstr (p1, p2);
1705 if (r == NULL)
1706 return const0_rtx;
1708 /* Return an offset into the constant string argument. */
1709 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1710 s1, ssize_int (r - p1))),
1711 target, mode, EXPAND_NORMAL);
1714 if (p2[0] == '\0')
1715 return expand_expr (s1, target, mode, EXPAND_NORMAL);
1717 if (p2[1] != '\0')
1718 return 0;
1720 fn = built_in_decls[BUILT_IN_STRCHR];
1721 if (!fn)
1722 return 0;
1724 /* New argument list transforming strstr(s1, s2) to
1725 strchr(s1, s2[0]). */
1726 arglist =
1727 build_tree_list (NULL_TREE, build_int_2 (p2[0], 0));
1728 arglist = tree_cons (NULL_TREE, s1, arglist);
1729 return expand_expr (build_function_call_expr (fn, arglist),
1730 target, mode, EXPAND_NORMAL);
1734 /* Expand a call to the strchr builtin. Return 0 if we failed the
1735 caller should emit a normal call, otherwise try to get the result
1736 in TARGET, if convenient (and in mode MODE if that's convenient). */
1738 static rtx
1739 expand_builtin_strchr (arglist, target, mode)
1740 tree arglist;
1741 rtx target;
1742 enum machine_mode mode;
1744 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
1745 return 0;
1746 else
1748 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
1749 const char *p1;
1751 if (TREE_CODE (s2) != INTEGER_CST)
1752 return 0;
1754 p1 = c_getstr (s1);
1755 if (p1 != NULL)
1757 char c;
1758 const char *r;
1760 if (target_char_cast (s2, &c))
1761 return 0;
1763 r = strchr (p1, c);
1765 if (r == NULL)
1766 return const0_rtx;
1768 /* Return an offset into the constant string argument. */
1769 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1770 s1, ssize_int (r - p1))),
1771 target, mode, EXPAND_NORMAL);
1774 /* FIXME: Should use here strchrM optab so that ports can optimize
1775 this. */
1776 return 0;
1780 /* Expand a call to the strrchr builtin. Return 0 if we failed the
1781 caller should emit a normal call, otherwise try to get the result
1782 in TARGET, if convenient (and in mode MODE if that's convenient). */
1784 static rtx
1785 expand_builtin_strrchr (arglist, target, mode)
1786 tree arglist;
1787 rtx target;
1788 enum machine_mode mode;
1790 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
1791 return 0;
1792 else
1794 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
1795 tree fn;
1796 const char *p1;
1798 if (TREE_CODE (s2) != INTEGER_CST)
1799 return 0;
1801 p1 = c_getstr (s1);
1802 if (p1 != NULL)
1804 char c;
1805 const char *r;
1807 if (target_char_cast (s2, &c))
1808 return 0;
1810 r = strrchr (p1, c);
1812 if (r == NULL)
1813 return const0_rtx;
1815 /* Return an offset into the constant string argument. */
1816 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1817 s1, ssize_int (r - p1))),
1818 target, mode, EXPAND_NORMAL);
1821 if (! integer_zerop (s2))
1822 return 0;
1824 fn = built_in_decls[BUILT_IN_STRCHR];
1825 if (!fn)
1826 return 0;
1828 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
1829 return expand_expr (build_function_call_expr (fn, arglist),
1830 target, mode, EXPAND_NORMAL);
1834 /* Expand a call to the strpbrk builtin. Return 0 if we failed the
1835 caller should emit a normal call, otherwise try to get the result
1836 in TARGET, if convenient (and in mode MODE if that's convenient). */
1838 static rtx
1839 expand_builtin_strpbrk (arglist, target, mode)
1840 tree arglist;
1841 rtx target;
1842 enum machine_mode mode;
1844 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
1845 return 0;
1846 else
1848 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
1849 tree fn;
1850 const char *p1, *p2;
1852 p2 = c_getstr (s2);
1853 if (p2 == NULL)
1854 return 0;
1856 p1 = c_getstr (s1);
1857 if (p1 != NULL)
1859 const char *r = strpbrk (p1, p2);
1861 if (r == NULL)
1862 return const0_rtx;
1864 /* Return an offset into the constant string argument. */
1865 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1866 s1, ssize_int (r - p1))),
1867 target, mode, EXPAND_NORMAL);
1870 if (p2[0] == '\0')
1872 /* strpbrk(x, "") == NULL.
1873 Evaluate and ignore the arguments in case they had
1874 side-effects. */
1875 expand_expr (s1, const0_rtx, VOIDmode, EXPAND_NORMAL);
1876 return const0_rtx;
1879 if (p2[1] != '\0')
1880 return 0; /* Really call strpbrk. */
1882 fn = built_in_decls[BUILT_IN_STRCHR];
1883 if (!fn)
1884 return 0;
1886 /* New argument list transforming strpbrk(s1, s2) to
1887 strchr(s1, s2[0]). */
1888 arglist =
1889 build_tree_list (NULL_TREE, build_int_2 (p2[0], 0));
1890 arglist = tree_cons (NULL_TREE, s1, arglist);
1891 return expand_expr (build_function_call_expr (fn, arglist),
1892 target, mode, EXPAND_NORMAL);
1896 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
1897 bytes from constant string DATA + OFFSET and return it as target
1898 constant. */
1900 static rtx
1901 builtin_memcpy_read_str (data, offset, mode)
1902 PTR data;
1903 HOST_WIDE_INT offset;
1904 enum machine_mode mode;
1906 const char *str = (const char *) data;
1908 if (offset < 0
1909 || ((unsigned HOST_WIDE_INT) offset + GET_MODE_SIZE (mode)
1910 > strlen (str) + 1))
1911 abort (); /* Attempt to read past the end of constant string. */
1913 return c_readstr (str + offset, mode);
1916 /* Expand a call to the memcpy builtin, with arguments in ARGLIST.
1917 Return 0 if we failed, the caller should emit a normal call, otherwise
1918 try to get the result in TARGET, if convenient (and in mode MODE if
1919 that's convenient). */
1921 static rtx
1922 expand_builtin_memcpy (arglist, target, mode)
1923 tree arglist;
1924 rtx target;
1925 enum machine_mode mode;
1927 if (!validate_arglist (arglist,
1928 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
1929 return 0;
1930 else
1932 tree dest = TREE_VALUE (arglist);
1933 tree src = TREE_VALUE (TREE_CHAIN (arglist));
1934 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
1935 const char *src_str;
1937 unsigned int src_align = get_pointer_alignment (src, BIGGEST_ALIGNMENT);
1938 unsigned int dest_align
1939 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
1940 rtx dest_mem, src_mem, dest_addr, len_rtx;
1942 /* If DEST is not a pointer type, call the normal function. */
1943 if (dest_align == 0)
1944 return 0;
1946 /* If the LEN parameter is zero, return DEST. */
1947 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 0)
1949 /* Evaluate and ignore SRC in case it has side-effects. */
1950 expand_expr (src, const0_rtx, VOIDmode, EXPAND_NORMAL);
1951 return expand_expr (dest, target, mode, EXPAND_NORMAL);
1954 /* If either SRC is not a pointer type, don't do this
1955 operation in-line. */
1956 if (src_align == 0)
1957 return 0;
1959 dest_mem = get_memory_rtx (dest);
1960 set_mem_align (dest_mem, dest_align);
1961 len_rtx = expand_expr (len, NULL_RTX, VOIDmode, 0);
1962 src_str = c_getstr (src);
1964 /* If SRC is a string constant and block move would be done
1965 by pieces, we can avoid loading the string from memory
1966 and only stored the computed constants. */
1967 if (src_str
1968 && GET_CODE (len_rtx) == CONST_INT
1969 && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <= strlen (src_str) + 1
1970 && can_store_by_pieces (INTVAL (len_rtx), builtin_memcpy_read_str,
1971 (PTR) src_str, dest_align))
1973 store_by_pieces (dest_mem, INTVAL (len_rtx),
1974 builtin_memcpy_read_str,
1975 (PTR) src_str, dest_align);
1976 return force_operand (XEXP (dest_mem, 0), NULL_RTX);
1979 src_mem = get_memory_rtx (src);
1980 set_mem_align (src_mem, src_align);
1982 /* Copy word part most expediently. */
1983 dest_addr = emit_block_move (dest_mem, src_mem, len_rtx);
1985 if (dest_addr == 0)
1986 dest_addr = force_operand (XEXP (dest_mem, 0), NULL_RTX);
1988 return dest_addr;
1992 /* Expand expression EXP, which is a call to the strcpy builtin. Return 0
1993 if we failed the caller should emit a normal call, otherwise try to get
1994 the result in TARGET, if convenient (and in mode MODE if that's
1995 convenient). */
1997 static rtx
1998 expand_builtin_strcpy (exp, target, mode)
1999 tree exp;
2000 rtx target;
2001 enum machine_mode mode;
2003 tree arglist = TREE_OPERAND (exp, 1);
2004 tree fn, len;
2006 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2007 return 0;
2009 fn = built_in_decls[BUILT_IN_MEMCPY];
2010 if (!fn)
2011 return 0;
2013 len = c_strlen (TREE_VALUE (TREE_CHAIN (arglist)));
2014 if (len == 0)
2015 return 0;
2017 len = size_binop (PLUS_EXPR, len, ssize_int (1));
2018 chainon (arglist, build_tree_list (NULL_TREE, len));
2019 return expand_expr (build_function_call_expr (fn, arglist),
2020 target, mode, EXPAND_NORMAL);
2023 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2024 bytes from constant string DATA + OFFSET and return it as target
2025 constant. */
2027 static rtx
2028 builtin_strncpy_read_str (data, offset, mode)
2029 PTR data;
2030 HOST_WIDE_INT offset;
2031 enum machine_mode mode;
2033 const char *str = (const char *) data;
2035 if ((unsigned HOST_WIDE_INT) offset > strlen (str))
2036 return const0_rtx;
2038 return c_readstr (str + offset, mode);
2041 /* Expand expression EXP, which is a call to the strncpy builtin. Return 0
2042 if we failed the caller should emit a normal call. */
2044 static rtx
2045 expand_builtin_strncpy (arglist, target, mode)
2046 tree arglist;
2047 rtx target;
2048 enum machine_mode mode;
2050 if (!validate_arglist (arglist,
2051 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2052 return 0;
2053 else
2055 tree slen = c_strlen (TREE_VALUE (TREE_CHAIN (arglist)));
2056 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2057 tree fn;
2059 /* We must be passed a constant len parameter. */
2060 if (TREE_CODE (len) != INTEGER_CST)
2061 return 0;
2063 /* If the len parameter is zero, return the dst parameter. */
2064 if (compare_tree_int (len, 0) == 0)
2066 /* Evaluate and ignore the src argument in case it has
2067 side-effects. */
2068 expand_expr (TREE_VALUE (TREE_CHAIN (arglist)), const0_rtx,
2069 VOIDmode, EXPAND_NORMAL);
2070 /* Return the dst parameter. */
2071 return expand_expr (TREE_VALUE (arglist), target, mode,
2072 EXPAND_NORMAL);
2075 /* Now, we must be passed a constant src ptr parameter. */
2076 if (slen == 0 || TREE_CODE (slen) != INTEGER_CST)
2077 return 0;
2079 slen = size_binop (PLUS_EXPR, slen, ssize_int (1));
2081 /* We're required to pad with trailing zeros if the requested
2082 len is greater than strlen(s2)+1. In that case try to
2083 use store_by_pieces, if it fails, punt. */
2084 if (tree_int_cst_lt (slen, len))
2086 tree dest = TREE_VALUE (arglist);
2087 unsigned int dest_align
2088 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
2089 const char *p = c_getstr (TREE_VALUE (TREE_CHAIN (arglist)));
2090 rtx dest_mem;
2092 if (!p || dest_align == 0 || !host_integerp (len, 1)
2093 || !can_store_by_pieces (tree_low_cst (len, 1),
2094 builtin_strncpy_read_str,
2095 (PTR) p, dest_align))
2096 return 0;
2098 dest_mem = get_memory_rtx (dest);
2099 store_by_pieces (dest_mem, tree_low_cst (len, 1),
2100 builtin_strncpy_read_str,
2101 (PTR) p, dest_align);
2102 return force_operand (XEXP (dest_mem, 0), NULL_RTX);
2105 /* OK transform into builtin memcpy. */
2106 fn = built_in_decls[BUILT_IN_MEMCPY];
2107 if (!fn)
2108 return 0;
2109 return expand_expr (build_function_call_expr (fn, arglist),
2110 target, mode, EXPAND_NORMAL);
2114 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2115 bytes from constant string DATA + OFFSET and return it as target
2116 constant. */
2118 static rtx
2119 builtin_memset_read_str (data, offset, mode)
2120 PTR data;
2121 HOST_WIDE_INT offset ATTRIBUTE_UNUSED;
2122 enum machine_mode mode;
2124 const char *c = (const char *) data;
2125 char *p = alloca (GET_MODE_SIZE (mode));
2127 memset (p, *c, GET_MODE_SIZE (mode));
2129 return c_readstr (p, mode);
2132 /* Expand expression EXP, which is a call to the memset builtin. Return 0
2133 if we failed the caller should emit a normal call, otherwise try to get
2134 the result in TARGET, if convenient (and in mode MODE if that's
2135 convenient). */
2137 static rtx
2138 expand_builtin_memset (exp, target, mode)
2139 tree exp;
2140 rtx target;
2141 enum machine_mode mode;
2143 tree arglist = TREE_OPERAND (exp, 1);
2145 if (!validate_arglist (arglist,
2146 POINTER_TYPE, INTEGER_TYPE, INTEGER_TYPE, VOID_TYPE))
2147 return 0;
2148 else
2150 tree dest = TREE_VALUE (arglist);
2151 tree val = TREE_VALUE (TREE_CHAIN (arglist));
2152 tree len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2153 char c;
2155 unsigned int dest_align
2156 = get_pointer_alignment (dest, BIGGEST_ALIGNMENT);
2157 rtx dest_mem, dest_addr, len_rtx;
2159 /* If DEST is not a pointer type, don't do this
2160 operation in-line. */
2161 if (dest_align == 0)
2162 return 0;
2164 /* If the LEN parameter is zero, return DEST. */
2165 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 0)
2167 /* Evaluate and ignore VAL in case it has side-effects. */
2168 expand_expr (val, const0_rtx, VOIDmode, EXPAND_NORMAL);
2169 return expand_expr (dest, target, mode, EXPAND_NORMAL);
2172 if (TREE_CODE (val) != INTEGER_CST)
2173 return 0;
2175 if (target_char_cast (val, &c))
2176 return 0;
2178 if (c)
2180 if (!host_integerp (len, 1))
2181 return 0;
2182 if (!can_store_by_pieces (tree_low_cst (len, 1),
2183 builtin_memset_read_str, (PTR) &c,
2184 dest_align))
2185 return 0;
2187 dest_mem = get_memory_rtx (dest);
2188 store_by_pieces (dest_mem, tree_low_cst (len, 1),
2189 builtin_memset_read_str,
2190 (PTR) &c, dest_align);
2191 return force_operand (XEXP (dest_mem, 0), NULL_RTX);
2194 len_rtx = expand_expr (len, NULL_RTX, VOIDmode, 0);
2196 dest_mem = get_memory_rtx (dest);
2197 set_mem_align (dest_mem, dest_align);
2198 dest_addr = clear_storage (dest_mem, len_rtx);
2200 if (dest_addr == 0)
2201 dest_addr = force_operand (XEXP (dest_mem, 0), NULL_RTX);
2203 return dest_addr;
2207 /* Expand expression EXP, which is a call to the bzero builtin. Return 0
2208 if we failed the caller should emit a normal call. */
2210 static rtx
2211 expand_builtin_bzero (exp)
2212 tree exp;
2214 tree arglist = TREE_OPERAND (exp, 1);
2215 tree dest, size, newarglist;
2216 rtx result;
2218 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2219 return NULL_RTX;
2221 dest = TREE_VALUE (arglist);
2222 size = TREE_VALUE (TREE_CHAIN (arglist));
2224 /* New argument list transforming bzero(ptr x, int y) to
2225 memset(ptr x, int 0, size_t y). This is done this way
2226 so that if it isn't expanded inline, we fallback to
2227 calling bzero instead of memset. */
2229 newarglist = build_tree_list (NULL_TREE, convert (sizetype, size));
2230 newarglist = tree_cons (NULL_TREE, integer_zero_node, newarglist);
2231 newarglist = tree_cons (NULL_TREE, dest, newarglist);
2233 TREE_OPERAND (exp, 1) = newarglist;
2234 result = expand_builtin_memset (exp, const0_rtx, VOIDmode);
2236 /* Always restore the original arguments. */
2237 TREE_OPERAND (exp, 1) = arglist;
2239 return result;
2242 /* Expand expression EXP, which is a call to the memcmp or the strcmp builtin.
2243 ARGLIST is the argument list for this call. Return 0 if we failed and the
2244 caller should emit a normal call, otherwise try to get the result in
2245 TARGET, if convenient (and in mode MODE, if that's convenient). */
2247 static rtx
2248 expand_builtin_memcmp (exp, arglist, target, mode)
2249 tree exp ATTRIBUTE_UNUSED;
2250 tree arglist;
2251 rtx target;
2252 enum machine_mode mode;
2254 tree arg1, arg2, len;
2256 if (!validate_arglist (arglist,
2257 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2258 return 0;
2260 arg1 = TREE_VALUE (arglist);
2261 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
2262 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2264 /* If the len parameter is zero, return zero. */
2265 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 0)
2267 /* Evaluate and ignore arg1 and arg2 in case they have
2268 side-effects. */
2269 expand_expr (arg1, const0_rtx, VOIDmode, EXPAND_NORMAL);
2270 expand_expr (arg2, const0_rtx, VOIDmode, EXPAND_NORMAL);
2271 return const0_rtx;
2274 /* If len parameter is one, return an expression corresponding to
2275 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
2276 if (host_integerp (len, 1) && tree_low_cst (len, 1) == 1)
2278 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
2279 tree cst_uchar_ptr_node = build_pointer_type (cst_uchar_node);
2280 tree ind1 =
2281 fold (build1 (CONVERT_EXPR, integer_type_node,
2282 build1 (INDIRECT_REF, cst_uchar_node,
2283 build1 (NOP_EXPR, cst_uchar_ptr_node, arg1))));
2284 tree ind2 =
2285 fold (build1 (CONVERT_EXPR, integer_type_node,
2286 build1 (INDIRECT_REF, cst_uchar_node,
2287 build1 (NOP_EXPR, cst_uchar_ptr_node, arg2))));
2288 tree result = fold (build (MINUS_EXPR, integer_type_node, ind1, ind2));
2289 return expand_expr (result, target, mode, EXPAND_NORMAL);
2292 #ifdef HAVE_cmpstrsi
2294 rtx arg1_rtx, arg2_rtx, arg3_rtx;
2295 rtx result;
2296 rtx insn;
2298 int arg1_align
2299 = get_pointer_alignment (arg1, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
2300 int arg2_align
2301 = get_pointer_alignment (arg2, BIGGEST_ALIGNMENT) / BITS_PER_UNIT;
2302 enum machine_mode insn_mode
2303 = insn_data[(int) CODE_FOR_cmpstrsi].operand[0].mode;
2305 /* If we don't have POINTER_TYPE, call the function. */
2306 if (arg1_align == 0 || arg2_align == 0)
2307 return 0;
2309 /* Make a place to write the result of the instruction. */
2310 result = target;
2311 if (! (result != 0
2312 && GET_CODE (result) == REG && GET_MODE (result) == insn_mode
2313 && REGNO (result) >= FIRST_PSEUDO_REGISTER))
2314 result = gen_reg_rtx (insn_mode);
2316 arg1_rtx = get_memory_rtx (arg1);
2317 arg2_rtx = get_memory_rtx (arg2);
2318 arg3_rtx = expand_expr (len, NULL_RTX, VOIDmode, 0);
2319 if (!HAVE_cmpstrsi)
2320 insn = NULL_RTX;
2321 else
2322 insn = gen_cmpstrsi (result, arg1_rtx, arg2_rtx, arg3_rtx,
2323 GEN_INT (MIN (arg1_align, arg2_align)));
2325 if (insn)
2326 emit_insn (insn);
2327 else
2328 emit_library_call_value (memcmp_libfunc, result, LCT_PURE_MAKE_BLOCK,
2329 TYPE_MODE (integer_type_node), 3,
2330 XEXP (arg1_rtx, 0), Pmode,
2331 XEXP (arg2_rtx, 0), Pmode,
2332 convert_to_mode (TYPE_MODE (sizetype), arg3_rtx,
2333 TREE_UNSIGNED (sizetype)),
2334 TYPE_MODE (sizetype));
2336 /* Return the value in the proper mode for this function. */
2337 mode = TYPE_MODE (TREE_TYPE (exp));
2338 if (GET_MODE (result) == mode)
2339 return result;
2340 else if (target != 0)
2342 convert_move (target, result, 0);
2343 return target;
2345 else
2346 return convert_to_mode (mode, result, 0);
2348 #endif
2350 return 0;
2353 /* Expand expression EXP, which is a call to the strcmp builtin. Return 0
2354 if we failed the caller should emit a normal call, otherwise try to get
2355 the result in TARGET, if convenient. */
2357 static rtx
2358 expand_builtin_strcmp (exp, target, mode)
2359 tree exp;
2360 rtx target;
2361 enum machine_mode mode;
2363 tree arglist = TREE_OPERAND (exp, 1);
2364 tree arg1, arg2, len, len2, fn;
2365 const char *p1, *p2;
2367 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2368 return 0;
2370 arg1 = TREE_VALUE (arglist);
2371 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
2373 p1 = c_getstr (arg1);
2374 p2 = c_getstr (arg2);
2376 if (p1 && p2)
2378 const int i = strcmp (p1, p2);
2379 return (i < 0 ? constm1_rtx : (i > 0 ? const1_rtx : const0_rtx));
2382 /* If either arg is "", return an expression corresponding to
2383 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
2384 if ((p1 && *p1 == '\0') || (p2 && *p2 == '\0'))
2386 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
2387 tree cst_uchar_ptr_node = build_pointer_type (cst_uchar_node);
2388 tree ind1 =
2389 fold (build1 (CONVERT_EXPR, integer_type_node,
2390 build1 (INDIRECT_REF, cst_uchar_node,
2391 build1 (NOP_EXPR, cst_uchar_ptr_node, arg1))));
2392 tree ind2 =
2393 fold (build1 (CONVERT_EXPR, integer_type_node,
2394 build1 (INDIRECT_REF, cst_uchar_node,
2395 build1 (NOP_EXPR, cst_uchar_ptr_node, arg2))));
2396 tree result = fold (build (MINUS_EXPR, integer_type_node, ind1, ind2));
2397 return expand_expr (result, target, mode, EXPAND_NORMAL);
2400 len = c_strlen (arg1);
2401 len2 = c_strlen (arg2);
2403 if (len)
2404 len = size_binop (PLUS_EXPR, ssize_int (1), len);
2406 if (len2)
2407 len2 = size_binop (PLUS_EXPR, ssize_int (1), len2);
2409 /* If we don't have a constant length for the first, use the length
2410 of the second, if we know it. We don't require a constant for
2411 this case; some cost analysis could be done if both are available
2412 but neither is constant. For now, assume they're equally cheap
2413 unless one has side effects.
2415 If both strings have constant lengths, use the smaller. This
2416 could arise if optimization results in strcpy being called with
2417 two fixed strings, or if the code was machine-generated. We should
2418 add some code to the `memcmp' handler below to deal with such
2419 situations, someday. */
2421 if (!len || TREE_CODE (len) != INTEGER_CST)
2423 if (len2 && !TREE_SIDE_EFFECTS (len2))
2424 len = len2;
2425 else if (len == 0)
2426 return 0;
2428 else if (len2 && TREE_CODE (len2) == INTEGER_CST
2429 && tree_int_cst_lt (len2, len))
2430 len = len2;
2432 /* If both arguments have side effects, we cannot optimize. */
2433 if (TREE_SIDE_EFFECTS (len))
2434 return 0;
2436 fn = built_in_decls[BUILT_IN_MEMCMP];
2437 if (!fn)
2438 return 0;
2440 chainon (arglist, build_tree_list (NULL_TREE, len));
2441 return expand_expr (build_function_call_expr (fn, arglist),
2442 target, mode, EXPAND_NORMAL);
2445 /* Expand expression EXP, which is a call to the strncmp builtin. Return 0
2446 if we failed the caller should emit a normal call, otherwise try to get
2447 the result in TARGET, if convenient. */
2449 static rtx
2450 expand_builtin_strncmp (exp, target, mode)
2451 tree exp;
2452 rtx target;
2453 enum machine_mode mode;
2455 tree arglist = TREE_OPERAND (exp, 1);
2456 tree fn, newarglist, len = 0;
2457 tree arg1, arg2, arg3;
2458 const char *p1, *p2;
2460 if (!validate_arglist (arglist,
2461 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2462 return 0;
2464 arg1 = TREE_VALUE (arglist);
2465 arg2 = TREE_VALUE (TREE_CHAIN (arglist));
2466 arg3 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2468 /* If the len parameter is zero, return zero. */
2469 if (host_integerp (arg3, 1) && tree_low_cst (arg3, 1) == 0)
2471 /* Evaluate and ignore arg1 and arg2 in case they have
2472 side-effects. */
2473 expand_expr (arg1, const0_rtx, VOIDmode, EXPAND_NORMAL);
2474 expand_expr (arg2, const0_rtx, VOIDmode, EXPAND_NORMAL);
2475 return const0_rtx;
2478 p1 = c_getstr (arg1);
2479 p2 = c_getstr (arg2);
2481 /* If all arguments are constant, evaluate at compile-time. */
2482 if (host_integerp (arg3, 1) && p1 && p2)
2484 const int r = strncmp (p1, p2, tree_low_cst (arg3, 1));
2485 return (r < 0 ? constm1_rtx : (r > 0 ? const1_rtx : const0_rtx));
2488 /* If len == 1 or (either string parameter is "" and (len >= 1)),
2489 return (*(const u_char*)arg1 - *(const u_char*)arg2). */
2490 if (host_integerp (arg3, 1)
2491 && (tree_low_cst (arg3, 1) == 1
2492 || (tree_low_cst (arg3, 1) > 1
2493 && ((p1 && *p1 == '\0') || (p2 && *p2 == '\0')))))
2495 tree cst_uchar_node = build_type_variant (unsigned_char_type_node, 1, 0);
2496 tree cst_uchar_ptr_node = build_pointer_type (cst_uchar_node);
2497 tree ind1 =
2498 fold (build1 (CONVERT_EXPR, integer_type_node,
2499 build1 (INDIRECT_REF, cst_uchar_node,
2500 build1 (NOP_EXPR, cst_uchar_ptr_node, arg1))));
2501 tree ind2 =
2502 fold (build1 (CONVERT_EXPR, integer_type_node,
2503 build1 (INDIRECT_REF, cst_uchar_node,
2504 build1 (NOP_EXPR, cst_uchar_ptr_node, arg2))));
2505 tree result = fold (build (MINUS_EXPR, integer_type_node, ind1, ind2));
2506 return expand_expr (result, target, mode, EXPAND_NORMAL);
2509 /* If c_strlen can determine an expression for one of the string
2510 lengths, and it doesn't have side effects, then call
2511 expand_builtin_memcmp() using length MIN(strlen(string)+1, arg3). */
2513 /* Perhaps one of the strings is really constant, if so prefer
2514 that constant length over the other string's length. */
2515 if (p1)
2516 len = c_strlen (arg1);
2517 else if (p2)
2518 len = c_strlen (arg2);
2520 /* If we still don't have a len, try either string arg as long
2521 as they don't have side effects. */
2522 if (!len && !TREE_SIDE_EFFECTS (arg1))
2523 len = c_strlen (arg1);
2524 if (!len && !TREE_SIDE_EFFECTS (arg2))
2525 len = c_strlen (arg2);
2526 /* If we still don't have a length, punt. */
2527 if (!len)
2528 return 0;
2530 fn = built_in_decls[BUILT_IN_MEMCMP];
2531 if (!fn)
2532 return 0;
2534 /* Add one to the string length. */
2535 len = fold (size_binop (PLUS_EXPR, len, ssize_int (1)));
2537 /* The actual new length parameter is MIN(len,arg3). */
2538 len = fold (build (MIN_EXPR, TREE_TYPE (len), len, arg3));
2540 newarglist = build_tree_list (NULL_TREE, len);
2541 newarglist = tree_cons (NULL_TREE, arg2, newarglist);
2542 newarglist = tree_cons (NULL_TREE, arg1, newarglist);
2543 return expand_expr (build_function_call_expr (fn, newarglist),
2544 target, mode, EXPAND_NORMAL);
2547 /* Expand expression EXP, which is a call to the strcat builtin.
2548 Return 0 if we failed the caller should emit a normal call,
2549 otherwise try to get the result in TARGET, if convenient. */
2551 static rtx
2552 expand_builtin_strcat (arglist, target, mode)
2553 tree arglist;
2554 rtx target;
2555 enum machine_mode mode;
2557 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2558 return 0;
2559 else
2561 tree dst = TREE_VALUE (arglist),
2562 src = TREE_VALUE (TREE_CHAIN (arglist));
2563 const char *p = c_getstr (src);
2565 /* If the string length is zero, return the dst parameter. */
2566 if (p && *p == '\0')
2567 return expand_expr (dst, target, mode, EXPAND_NORMAL);
2569 return 0;
2573 /* Expand expression EXP, which is a call to the strncat builtin.
2574 Return 0 if we failed the caller should emit a normal call,
2575 otherwise try to get the result in TARGET, if convenient. */
2577 static rtx
2578 expand_builtin_strncat (arglist, target, mode)
2579 tree arglist;
2580 rtx target;
2581 enum machine_mode mode;
2583 if (!validate_arglist (arglist,
2584 POINTER_TYPE, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
2585 return 0;
2586 else
2588 tree dst = TREE_VALUE (arglist),
2589 src = TREE_VALUE (TREE_CHAIN (arglist)),
2590 len = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist)));
2591 const char *p = c_getstr (src);
2593 /* If the requested length is zero, or the src parameter string
2594 length is zero, return the dst parameter. */
2595 if ((TREE_CODE (len) == INTEGER_CST && compare_tree_int (len, 0) == 0)
2596 || (p && *p == '\0'))
2598 /* Evaluate and ignore the src and len parameters in case
2599 they have side-effects. */
2600 expand_expr (src, const0_rtx, VOIDmode, EXPAND_NORMAL);
2601 expand_expr (len, const0_rtx, VOIDmode, EXPAND_NORMAL);
2602 return expand_expr (dst, target, mode, EXPAND_NORMAL);
2605 /* If the requested len is greater than or equal to the string
2606 length, call strcat. */
2607 if (TREE_CODE (len) == INTEGER_CST && p
2608 && compare_tree_int (len, strlen (p)) >= 0)
2610 tree newarglist =
2611 tree_cons (NULL_TREE, dst, build_tree_list (NULL_TREE, src)),
2612 fn = built_in_decls[BUILT_IN_STRCAT];
2614 /* If the replacement _DECL isn't initialized, don't do the
2615 transformation. */
2616 if (!fn)
2617 return 0;
2619 return expand_expr (build_function_call_expr (fn, newarglist),
2620 target, mode, EXPAND_NORMAL);
2622 return 0;
2626 /* Expand expression EXP, which is a call to the strspn builtin.
2627 Return 0 if we failed the caller should emit a normal call,
2628 otherwise try to get the result in TARGET, if convenient. */
2630 static rtx
2631 expand_builtin_strspn (arglist, target, mode)
2632 tree arglist;
2633 rtx target;
2634 enum machine_mode mode;
2636 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2637 return 0;
2638 else
2640 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
2641 const char *p1 = c_getstr (s1), *p2 = c_getstr (s2);
2643 /* If both arguments are constants, evaluate at compile-time. */
2644 if (p1 && p2)
2646 const size_t r = strspn (p1, p2);
2647 return expand_expr (size_int (r), target, mode, EXPAND_NORMAL);
2650 /* If either argument is "", return 0. */
2651 if ((p1 && *p1 == '\0') || (p2 && *p2 == '\0'))
2653 /* Evaluate and ignore both arguments in case either one has
2654 side-effects. */
2655 expand_expr (s1, const0_rtx, VOIDmode, EXPAND_NORMAL);
2656 expand_expr (s2, const0_rtx, VOIDmode, EXPAND_NORMAL);
2657 return const0_rtx;
2659 return 0;
2663 /* Expand expression EXP, which is a call to the strcspn builtin.
2664 Return 0 if we failed the caller should emit a normal call,
2665 otherwise try to get the result in TARGET, if convenient. */
2667 static rtx
2668 expand_builtin_strcspn (arglist, target, mode)
2669 tree arglist;
2670 rtx target;
2671 enum machine_mode mode;
2673 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
2674 return 0;
2675 else
2677 tree s1 = TREE_VALUE (arglist), s2 = TREE_VALUE (TREE_CHAIN (arglist));
2678 const char *p1 = c_getstr (s1), *p2 = c_getstr (s2);
2680 /* If both arguments are constants, evaluate at compile-time. */
2681 if (p1 && p2)
2683 const size_t r = strcspn (p1, p2);
2684 return expand_expr (size_int (r), target, mode, EXPAND_NORMAL);
2687 /* If the first argument is "", return 0. */
2688 if (p1 && *p1 == '\0')
2690 /* Evaluate and ignore argument s2 in case it has
2691 side-effects. */
2692 expand_expr (s2, const0_rtx, VOIDmode, EXPAND_NORMAL);
2693 return const0_rtx;
2696 /* If the second argument is "", return __builtin_strlen(s1). */
2697 if (p2 && *p2 == '\0')
2699 tree newarglist = build_tree_list (NULL_TREE, s1),
2700 fn = built_in_decls[BUILT_IN_STRLEN];
2702 /* If the replacement _DECL isn't initialized, don't do the
2703 transformation. */
2704 if (!fn)
2705 return 0;
2707 return expand_expr (build_function_call_expr (fn, newarglist),
2708 target, mode, EXPAND_NORMAL);
2710 return 0;
2714 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
2715 if that's convenient. */
2718 expand_builtin_saveregs ()
2720 rtx val, seq;
2722 /* Don't do __builtin_saveregs more than once in a function.
2723 Save the result of the first call and reuse it. */
2724 if (saveregs_value != 0)
2725 return saveregs_value;
2727 /* When this function is called, it means that registers must be
2728 saved on entry to this function. So we migrate the call to the
2729 first insn of this function. */
2731 start_sequence ();
2733 #ifdef EXPAND_BUILTIN_SAVEREGS
2734 /* Do whatever the machine needs done in this case. */
2735 val = EXPAND_BUILTIN_SAVEREGS ();
2736 #else
2737 /* ??? We used to try and build up a call to the out of line function,
2738 guessing about what registers needed saving etc. This became much
2739 harder with __builtin_va_start, since we don't have a tree for a
2740 call to __builtin_saveregs to fall back on. There was exactly one
2741 port (i860) that used this code, and I'm unconvinced it could actually
2742 handle the general case. So we no longer try to handle anything
2743 weird and make the backend absorb the evil. */
2745 error ("__builtin_saveregs not supported by this target");
2746 val = const0_rtx;
2747 #endif
2749 seq = get_insns ();
2750 end_sequence ();
2752 saveregs_value = val;
2754 /* Put the sequence after the NOTE that starts the function. If this
2755 is inside a SEQUENCE, make the outer-level insn chain current, so
2756 the code is placed at the start of the function. */
2757 push_topmost_sequence ();
2758 emit_insns_after (seq, get_insns ());
2759 pop_topmost_sequence ();
2761 return val;
2764 /* __builtin_args_info (N) returns word N of the arg space info
2765 for the current function. The number and meanings of words
2766 is controlled by the definition of CUMULATIVE_ARGS. */
2768 static rtx
2769 expand_builtin_args_info (exp)
2770 tree exp;
2772 tree arglist = TREE_OPERAND (exp, 1);
2773 int nwords = sizeof (CUMULATIVE_ARGS) / sizeof (int);
2774 int *word_ptr = (int *) &current_function_args_info;
2775 #if 0
2776 /* These are used by the code below that is if 0'ed away */
2777 int i;
2778 tree type, elts, result;
2779 #endif
2781 if (sizeof (CUMULATIVE_ARGS) % sizeof (int) != 0)
2782 abort ();
2784 if (arglist != 0)
2786 if (!host_integerp (TREE_VALUE (arglist), 0))
2787 error ("argument of `__builtin_args_info' must be constant");
2788 else
2790 HOST_WIDE_INT wordnum = tree_low_cst (TREE_VALUE (arglist), 0);
2792 if (wordnum < 0 || wordnum >= nwords)
2793 error ("argument of `__builtin_args_info' out of range");
2794 else
2795 return GEN_INT (word_ptr[wordnum]);
2798 else
2799 error ("missing argument in `__builtin_args_info'");
2801 return const0_rtx;
2803 #if 0
2804 for (i = 0; i < nwords; i++)
2805 elts = tree_cons (NULL_TREE, build_int_2 (word_ptr[i], 0));
2807 type = build_array_type (integer_type_node,
2808 build_index_type (build_int_2 (nwords, 0)));
2809 result = build (CONSTRUCTOR, type, NULL_TREE, nreverse (elts));
2810 TREE_CONSTANT (result) = 1;
2811 TREE_STATIC (result) = 1;
2812 result = build1 (INDIRECT_REF, build_pointer_type (type), result);
2813 TREE_CONSTANT (result) = 1;
2814 return expand_expr (result, NULL_RTX, VOIDmode, 0);
2815 #endif
2818 /* Expand ARGLIST, from a call to __builtin_next_arg. */
2820 static rtx
2821 expand_builtin_next_arg (arglist)
2822 tree arglist;
2824 tree fntype = TREE_TYPE (current_function_decl);
2826 if ((TYPE_ARG_TYPES (fntype) == 0
2827 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
2828 == void_type_node))
2829 && ! current_function_varargs)
2831 error ("`va_start' used in function with fixed args");
2832 return const0_rtx;
2835 if (arglist)
2837 tree last_parm = tree_last (DECL_ARGUMENTS (current_function_decl));
2838 tree arg = TREE_VALUE (arglist);
2840 /* Strip off all nops for the sake of the comparison. This
2841 is not quite the same as STRIP_NOPS. It does more.
2842 We must also strip off INDIRECT_EXPR for C++ reference
2843 parameters. */
2844 while (TREE_CODE (arg) == NOP_EXPR
2845 || TREE_CODE (arg) == CONVERT_EXPR
2846 || TREE_CODE (arg) == NON_LVALUE_EXPR
2847 || TREE_CODE (arg) == INDIRECT_REF)
2848 arg = TREE_OPERAND (arg, 0);
2849 if (arg != last_parm)
2850 warning ("second parameter of `va_start' not last named argument");
2852 else if (! current_function_varargs)
2853 /* Evidently an out of date version of <stdarg.h>; can't validate
2854 va_start's second argument, but can still work as intended. */
2855 warning ("`__builtin_next_arg' called without an argument");
2857 return expand_binop (Pmode, add_optab,
2858 current_function_internal_arg_pointer,
2859 current_function_arg_offset_rtx,
2860 NULL_RTX, 0, OPTAB_LIB_WIDEN);
2863 /* Make it easier for the backends by protecting the valist argument
2864 from multiple evaluations. */
2866 static tree
2867 stabilize_va_list (valist, needs_lvalue)
2868 tree valist;
2869 int needs_lvalue;
2871 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
2873 if (TREE_SIDE_EFFECTS (valist))
2874 valist = save_expr (valist);
2876 /* For this case, the backends will be expecting a pointer to
2877 TREE_TYPE (va_list_type_node), but it's possible we've
2878 actually been given an array (an actual va_list_type_node).
2879 So fix it. */
2880 if (TREE_CODE (TREE_TYPE (valist)) == ARRAY_TYPE)
2882 tree p1 = build_pointer_type (TREE_TYPE (va_list_type_node));
2883 tree p2 = build_pointer_type (va_list_type_node);
2885 valist = build1 (ADDR_EXPR, p2, valist);
2886 valist = fold (build1 (NOP_EXPR, p1, valist));
2889 else
2891 tree pt;
2893 if (! needs_lvalue)
2895 if (! TREE_SIDE_EFFECTS (valist))
2896 return valist;
2898 pt = build_pointer_type (va_list_type_node);
2899 valist = fold (build1 (ADDR_EXPR, pt, valist));
2900 TREE_SIDE_EFFECTS (valist) = 1;
2903 if (TREE_SIDE_EFFECTS (valist))
2904 valist = save_expr (valist);
2905 valist = fold (build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (valist)),
2906 valist));
2909 return valist;
2912 /* The "standard" implementation of va_start: just assign `nextarg' to
2913 the variable. */
2915 void
2916 std_expand_builtin_va_start (stdarg_p, valist, nextarg)
2917 int stdarg_p;
2918 tree valist;
2919 rtx nextarg;
2921 tree t;
2923 if (! stdarg_p)
2925 /* The dummy named parameter is declared as a 'word' sized
2926 object, but if a 'word' is smaller than an 'int', it would
2927 have been promoted to int when it was added to the arglist. */
2928 int align = PARM_BOUNDARY / BITS_PER_UNIT;
2929 int size = MAX (UNITS_PER_WORD,
2930 GET_MODE_SIZE (TYPE_MODE (integer_type_node)));
2931 int offset = ((size + align - 1) / align) * align;
2932 nextarg = plus_constant (nextarg, -offset);
2935 t = build (MODIFY_EXPR, TREE_TYPE (valist), valist,
2936 make_tree (ptr_type_node, nextarg));
2937 TREE_SIDE_EFFECTS (t) = 1;
2939 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
2942 /* Expand ARGLIST, which from a call to __builtin_stdarg_va_start or
2943 __builtin_varargs_va_start, depending on STDARG_P. */
2945 static rtx
2946 expand_builtin_va_start (stdarg_p, arglist)
2947 int stdarg_p;
2948 tree arglist;
2950 rtx nextarg;
2951 tree chain = arglist, valist;
2953 if (stdarg_p)
2954 nextarg = expand_builtin_next_arg (chain = TREE_CHAIN (arglist));
2955 else
2956 nextarg = expand_builtin_next_arg (NULL_TREE);
2958 if (TREE_CHAIN (chain))
2959 error ("too many arguments to function `va_start'");
2961 valist = stabilize_va_list (TREE_VALUE (arglist), 1);
2963 #ifdef EXPAND_BUILTIN_VA_START
2964 EXPAND_BUILTIN_VA_START (stdarg_p, valist, nextarg);
2965 #else
2966 std_expand_builtin_va_start (stdarg_p, valist, nextarg);
2967 #endif
2969 return const0_rtx;
2972 /* The "standard" implementation of va_arg: read the value from the
2973 current (padded) address and increment by the (padded) size. */
2976 std_expand_builtin_va_arg (valist, type)
2977 tree valist, type;
2979 tree addr_tree, t;
2980 HOST_WIDE_INT align;
2981 HOST_WIDE_INT rounded_size;
2982 rtx addr;
2984 /* Compute the rounded size of the type. */
2985 align = PARM_BOUNDARY / BITS_PER_UNIT;
2986 rounded_size = (((int_size_in_bytes (type) + align - 1) / align) * align);
2988 /* Get AP. */
2989 addr_tree = valist;
2990 if (PAD_VARARGS_DOWN)
2992 /* Small args are padded downward. */
2994 HOST_WIDE_INT adj
2995 = rounded_size > align ? rounded_size : int_size_in_bytes (type);
2997 addr_tree = build (PLUS_EXPR, TREE_TYPE (addr_tree), addr_tree,
2998 build_int_2 (rounded_size - adj, 0));
3001 addr = expand_expr (addr_tree, NULL_RTX, Pmode, EXPAND_NORMAL);
3002 addr = copy_to_reg (addr);
3004 /* Compute new value for AP. */
3005 t = build (MODIFY_EXPR, TREE_TYPE (valist), valist,
3006 build (PLUS_EXPR, TREE_TYPE (valist), valist,
3007 build_int_2 (rounded_size, 0)));
3008 TREE_SIDE_EFFECTS (t) = 1;
3009 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
3011 return addr;
3014 /* Expand __builtin_va_arg, which is not really a builtin function, but
3015 a very special sort of operator. */
3018 expand_builtin_va_arg (valist, type)
3019 tree valist, type;
3021 rtx addr, result;
3022 tree promoted_type, want_va_type, have_va_type;
3024 /* Verify that valist is of the proper type. */
3026 want_va_type = va_list_type_node;
3027 have_va_type = TREE_TYPE (valist);
3028 if (TREE_CODE (want_va_type) == ARRAY_TYPE)
3030 /* If va_list is an array type, the argument may have decayed
3031 to a pointer type, e.g. by being passed to another function.
3032 In that case, unwrap both types so that we can compare the
3033 underlying records. */
3034 if (TREE_CODE (have_va_type) == ARRAY_TYPE
3035 || TREE_CODE (have_va_type) == POINTER_TYPE)
3037 want_va_type = TREE_TYPE (want_va_type);
3038 have_va_type = TREE_TYPE (have_va_type);
3041 if (TYPE_MAIN_VARIANT (want_va_type) != TYPE_MAIN_VARIANT (have_va_type))
3043 error ("first argument to `va_arg' not of type `va_list'");
3044 addr = const0_rtx;
3047 /* Generate a diagnostic for requesting data of a type that cannot
3048 be passed through `...' due to type promotion at the call site. */
3049 else if ((promoted_type = (*lang_type_promotes_to) (type)) != NULL_TREE)
3051 const char *name = "<anonymous type>", *pname = 0;
3052 static int gave_help;
3054 if (TYPE_NAME (type))
3056 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
3057 name = IDENTIFIER_POINTER (TYPE_NAME (type));
3058 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
3059 && DECL_NAME (TYPE_NAME (type)))
3060 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
3062 if (TYPE_NAME (promoted_type))
3064 if (TREE_CODE (TYPE_NAME (promoted_type)) == IDENTIFIER_NODE)
3065 pname = IDENTIFIER_POINTER (TYPE_NAME (promoted_type));
3066 else if (TREE_CODE (TYPE_NAME (promoted_type)) == TYPE_DECL
3067 && DECL_NAME (TYPE_NAME (promoted_type)))
3068 pname = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (promoted_type)));
3071 error ("`%s' is promoted to `%s' when passed through `...'", name, pname);
3072 if (! gave_help)
3074 gave_help = 1;
3075 error ("(so you should pass `%s' not `%s' to `va_arg')", pname, name);
3078 addr = const0_rtx;
3080 else
3082 /* Make it easier for the backends by protecting the valist argument
3083 from multiple evaluations. */
3084 valist = stabilize_va_list (valist, 0);
3086 #ifdef EXPAND_BUILTIN_VA_ARG
3087 addr = EXPAND_BUILTIN_VA_ARG (valist, type);
3088 #else
3089 addr = std_expand_builtin_va_arg (valist, type);
3090 #endif
3093 #ifdef POINTERS_EXTEND_UNSIGNED
3094 if (GET_MODE (addr) != Pmode)
3095 addr = convert_memory_address (Pmode, addr);
3096 #endif
3098 result = gen_rtx_MEM (TYPE_MODE (type), addr);
3099 set_mem_alias_set (result, get_varargs_alias_set ());
3101 return result;
3104 /* Expand ARGLIST, from a call to __builtin_va_end. */
3106 static rtx
3107 expand_builtin_va_end (arglist)
3108 tree arglist;
3110 tree valist = TREE_VALUE (arglist);
3112 #ifdef EXPAND_BUILTIN_VA_END
3113 valist = stabilize_va_list (valist, 0);
3114 EXPAND_BUILTIN_VA_END(arglist);
3115 #else
3116 /* Evaluate for side effects, if needed. I hate macros that don't
3117 do that. */
3118 if (TREE_SIDE_EFFECTS (valist))
3119 expand_expr (valist, const0_rtx, VOIDmode, EXPAND_NORMAL);
3120 #endif
3122 return const0_rtx;
3125 /* Expand ARGLIST, from a call to __builtin_va_copy. We do this as a
3126 builtin rather than just as an assignment in stdarg.h because of the
3127 nastiness of array-type va_list types. */
3129 static rtx
3130 expand_builtin_va_copy (arglist)
3131 tree arglist;
3133 tree dst, src, t;
3135 dst = TREE_VALUE (arglist);
3136 src = TREE_VALUE (TREE_CHAIN (arglist));
3138 dst = stabilize_va_list (dst, 1);
3139 src = stabilize_va_list (src, 0);
3141 if (TREE_CODE (va_list_type_node) != ARRAY_TYPE)
3143 t = build (MODIFY_EXPR, va_list_type_node, dst, src);
3144 TREE_SIDE_EFFECTS (t) = 1;
3145 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
3147 else
3149 rtx dstb, srcb, size;
3151 /* Evaluate to pointers. */
3152 dstb = expand_expr (dst, NULL_RTX, Pmode, EXPAND_NORMAL);
3153 srcb = expand_expr (src, NULL_RTX, Pmode, EXPAND_NORMAL);
3154 size = expand_expr (TYPE_SIZE_UNIT (va_list_type_node), NULL_RTX,
3155 VOIDmode, EXPAND_NORMAL);
3157 #ifdef POINTERS_EXTEND_UNSIGNED
3158 if (GET_MODE (dstb) != Pmode)
3159 dstb = convert_memory_address (Pmode, dstb);
3161 if (GET_MODE (srcb) != Pmode)
3162 srcb = convert_memory_address (Pmode, srcb);
3163 #endif
3165 /* "Dereference" to BLKmode memories. */
3166 dstb = gen_rtx_MEM (BLKmode, dstb);
3167 set_mem_alias_set (dstb, get_alias_set (TREE_TYPE (TREE_TYPE (dst))));
3168 set_mem_align (dstb, TYPE_ALIGN (va_list_type_node));
3169 srcb = gen_rtx_MEM (BLKmode, srcb);
3170 set_mem_alias_set (srcb, get_alias_set (TREE_TYPE (TREE_TYPE (src))));
3171 set_mem_align (srcb, TYPE_ALIGN (va_list_type_node));
3173 /* Copy. */
3174 emit_block_move (dstb, srcb, size);
3177 return const0_rtx;
3180 /* Expand a call to one of the builtin functions __builtin_frame_address or
3181 __builtin_return_address. */
3183 static rtx
3184 expand_builtin_frame_address (exp)
3185 tree exp;
3187 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3188 tree arglist = TREE_OPERAND (exp, 1);
3190 /* The argument must be a nonnegative integer constant.
3191 It counts the number of frames to scan up the stack.
3192 The value is the return address saved in that frame. */
3193 if (arglist == 0)
3194 /* Warning about missing arg was already issued. */
3195 return const0_rtx;
3196 else if (! host_integerp (TREE_VALUE (arglist), 1))
3198 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
3199 error ("invalid arg to `__builtin_frame_address'");
3200 else
3201 error ("invalid arg to `__builtin_return_address'");
3202 return const0_rtx;
3204 else
3206 rtx tem
3207 = expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl),
3208 tree_low_cst (TREE_VALUE (arglist), 1),
3209 hard_frame_pointer_rtx);
3211 /* Some ports cannot access arbitrary stack frames. */
3212 if (tem == NULL)
3214 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
3215 warning ("unsupported arg to `__builtin_frame_address'");
3216 else
3217 warning ("unsupported arg to `__builtin_return_address'");
3218 return const0_rtx;
3221 /* For __builtin_frame_address, return what we've got. */
3222 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FRAME_ADDRESS)
3223 return tem;
3225 if (GET_CODE (tem) != REG
3226 && ! CONSTANT_P (tem))
3227 tem = copy_to_mode_reg (Pmode, tem);
3228 return tem;
3232 /* Expand a call to the alloca builtin, with arguments ARGLIST. Return 0 if
3233 we failed and the caller should emit a normal call, otherwise try to get
3234 the result in TARGET, if convenient. */
3236 static rtx
3237 expand_builtin_alloca (arglist, target)
3238 tree arglist;
3239 rtx target;
3241 rtx op0;
3242 rtx result;
3244 if (!validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
3245 return 0;
3247 /* Compute the argument. */
3248 op0 = expand_expr (TREE_VALUE (arglist), NULL_RTX, VOIDmode, 0);
3250 /* Allocate the desired space. */
3251 result = allocate_dynamic_stack_space (op0, target, BITS_PER_UNIT);
3253 #ifdef POINTERS_EXTEND_UNSIGNED
3254 if (GET_MODE (result) != ptr_mode)
3255 result = convert_memory_address (ptr_mode, result);
3256 #endif
3258 return result;
3261 /* Expand a call to the ffs builtin. The arguments are in ARGLIST.
3262 Return 0 if a normal call should be emitted rather than expanding the
3263 function in-line. If convenient, the result should be placed in TARGET.
3264 SUBTARGET may be used as the target for computing one of EXP's operands. */
3266 static rtx
3267 expand_builtin_ffs (arglist, target, subtarget)
3268 tree arglist;
3269 rtx target, subtarget;
3271 rtx op0;
3272 if (!validate_arglist (arglist, INTEGER_TYPE, VOID_TYPE))
3273 return 0;
3275 /* Compute the argument. */
3276 op0 = expand_expr (TREE_VALUE (arglist), subtarget, VOIDmode, 0);
3277 /* Compute ffs, into TARGET if possible.
3278 Set TARGET to wherever the result comes back. */
3279 target = expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist))),
3280 ffs_optab, op0, target, 1);
3281 if (target == 0)
3282 abort ();
3283 return target;
3286 /* If the string passed to fputs is a constant and is one character
3287 long, we attempt to transform this call into __builtin_fputc(). */
3289 static rtx
3290 expand_builtin_fputs (arglist, ignore, unlocked)
3291 tree arglist;
3292 int ignore;
3293 int unlocked;
3295 tree len, fn;
3296 tree fn_fputc = unlocked ? built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
3297 : built_in_decls[BUILT_IN_FPUTC];
3298 tree fn_fwrite = unlocked ? built_in_decls[BUILT_IN_FWRITE_UNLOCKED]
3299 : built_in_decls[BUILT_IN_FWRITE];
3301 /* If the return value is used, or the replacement _DECL isn't
3302 initialized, don't do the transformation. */
3303 if (!ignore || !fn_fputc || !fn_fwrite)
3304 return 0;
3306 /* Verify the arguments in the original call. */
3307 if (!validate_arglist (arglist, POINTER_TYPE, POINTER_TYPE, VOID_TYPE))
3308 return 0;
3310 /* Get the length of the string passed to fputs. If the length
3311 can't be determined, punt. */
3312 if (!(len = c_strlen (TREE_VALUE (arglist)))
3313 || TREE_CODE (len) != INTEGER_CST)
3314 return 0;
3316 switch (compare_tree_int (len, 1))
3318 case -1: /* length is 0, delete the call entirely . */
3320 /* Evaluate and ignore the argument in case it has
3321 side-effects. */
3322 expand_expr (TREE_VALUE (TREE_CHAIN (arglist)), const0_rtx,
3323 VOIDmode, EXPAND_NORMAL);
3324 return const0_rtx;
3326 case 0: /* length is 1, call fputc. */
3328 const char *p = c_getstr (TREE_VALUE (arglist));
3330 if (p != NULL)
3332 /* New argument list transforming fputs(string, stream) to
3333 fputc(string[0], stream). */
3334 arglist =
3335 build_tree_list (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)));
3336 arglist =
3337 tree_cons (NULL_TREE, build_int_2 (p[0], 0), arglist);
3338 fn = fn_fputc;
3339 break;
3342 /* FALLTHROUGH */
3343 case 1: /* length is greater than 1, call fwrite. */
3345 tree string_arg = TREE_VALUE (arglist);
3347 /* New argument list transforming fputs(string, stream) to
3348 fwrite(string, 1, len, stream). */
3349 arglist = build_tree_list (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)));
3350 arglist = tree_cons (NULL_TREE, len, arglist);
3351 arglist = tree_cons (NULL_TREE, size_one_node, arglist);
3352 arglist = tree_cons (NULL_TREE, string_arg, arglist);
3353 fn = fn_fwrite;
3354 break;
3356 default:
3357 abort();
3360 return expand_expr (build_function_call_expr (fn, arglist),
3361 (ignore ? const0_rtx : NULL_RTX),
3362 VOIDmode, EXPAND_NORMAL);
3365 /* Expand a call to __builtin_expect. We return our argument and emit a
3366 NOTE_INSN_EXPECTED_VALUE note. This is the expansion of __builtin_expect in
3367 a non-jump context. */
3369 static rtx
3370 expand_builtin_expect (arglist, target)
3371 tree arglist;
3372 rtx target;
3374 tree exp, c;
3375 rtx note, rtx_c;
3377 if (arglist == NULL_TREE
3378 || TREE_CHAIN (arglist) == NULL_TREE)
3379 return const0_rtx;
3380 exp = TREE_VALUE (arglist);
3381 c = TREE_VALUE (TREE_CHAIN (arglist));
3383 if (TREE_CODE (c) != INTEGER_CST)
3385 error ("second arg to `__builtin_expect' must be a constant");
3386 c = integer_zero_node;
3389 target = expand_expr (exp, target, VOIDmode, EXPAND_NORMAL);
3391 /* Don't bother with expected value notes for integral constants. */
3392 if (GET_CODE (target) != CONST_INT)
3394 /* We do need to force this into a register so that we can be
3395 moderately sure to be able to correctly interpret the branch
3396 condition later. */
3397 target = force_reg (GET_MODE (target), target);
3399 rtx_c = expand_expr (c, NULL_RTX, GET_MODE (target), EXPAND_NORMAL);
3401 note = emit_note (NULL, NOTE_INSN_EXPECTED_VALUE);
3402 NOTE_EXPECTED_VALUE (note) = gen_rtx_EQ (VOIDmode, target, rtx_c);
3405 return target;
3408 /* Like expand_builtin_expect, except do this in a jump context. This is
3409 called from do_jump if the conditional is a __builtin_expect. Return either
3410 a SEQUENCE of insns to emit the jump or NULL if we cannot optimize
3411 __builtin_expect. We need to optimize this at jump time so that machines
3412 like the PowerPC don't turn the test into a SCC operation, and then jump
3413 based on the test being 0/1. */
3416 expand_builtin_expect_jump (exp, if_false_label, if_true_label)
3417 tree exp;
3418 rtx if_false_label;
3419 rtx if_true_label;
3421 tree arglist = TREE_OPERAND (exp, 1);
3422 tree arg0 = TREE_VALUE (arglist);
3423 tree arg1 = TREE_VALUE (TREE_CHAIN (arglist));
3424 rtx ret = NULL_RTX;
3426 /* Only handle __builtin_expect (test, 0) and
3427 __builtin_expect (test, 1). */
3428 if (TREE_CODE (TREE_TYPE (arg1)) == INTEGER_TYPE
3429 && (integer_zerop (arg1) || integer_onep (arg1)))
3431 int j;
3432 int num_jumps = 0;
3434 /* If we fail to locate an appropriate conditional jump, we'll
3435 fall back to normal evaluation. Ensure that the expression
3436 can be re-evaluated. */
3437 switch (unsafe_for_reeval (arg0))
3439 case 0: /* Safe. */
3440 break;
3442 case 1: /* Mildly unsafe. */
3443 arg0 = unsave_expr (arg0);
3444 break;
3446 case 2: /* Wildly unsafe. */
3447 return NULL_RTX;
3450 /* Expand the jump insns. */
3451 start_sequence ();
3452 do_jump (arg0, if_false_label, if_true_label);
3453 ret = gen_sequence ();
3454 end_sequence ();
3456 /* Now that the __builtin_expect has been validated, go through and add
3457 the expect's to each of the conditional jumps. If we run into an
3458 error, just give up and generate the 'safe' code of doing a SCC
3459 operation and then doing a branch on that. */
3460 for (j = 0; j < XVECLEN (ret, 0); j++)
3462 rtx insn = XVECEXP (ret, 0, j);
3463 rtx pattern;
3465 if (GET_CODE (insn) == JUMP_INSN && any_condjump_p (insn)
3466 && (pattern = pc_set (insn)) != NULL_RTX)
3468 rtx ifelse = SET_SRC (pattern);
3469 rtx label;
3470 int taken;
3472 if (GET_CODE (ifelse) != IF_THEN_ELSE)
3473 continue;
3475 if (GET_CODE (XEXP (ifelse, 1)) == LABEL_REF)
3477 taken = 1;
3478 label = XEXP (XEXP (ifelse, 1), 0);
3480 /* An inverted jump reverses the probabilities. */
3481 else if (GET_CODE (XEXP (ifelse, 2)) == LABEL_REF)
3483 taken = 0;
3484 label = XEXP (XEXP (ifelse, 2), 0);
3486 /* We shouldn't have to worry about conditional returns during
3487 the expansion stage, but handle it gracefully anyway. */
3488 else if (GET_CODE (XEXP (ifelse, 1)) == RETURN)
3490 taken = 1;
3491 label = NULL_RTX;
3493 /* An inverted return reverses the probabilities. */
3494 else if (GET_CODE (XEXP (ifelse, 2)) == RETURN)
3496 taken = 0;
3497 label = NULL_RTX;
3499 else
3500 continue;
3502 /* If the test is expected to fail, reverse the
3503 probabilities. */
3504 if (integer_zerop (arg1))
3505 taken = 1 - taken;
3507 /* If we are jumping to the false label, reverse the
3508 probabilities. */
3509 if (label == NULL_RTX)
3510 ; /* conditional return */
3511 else if (label == if_false_label)
3512 taken = 1 - taken;
3513 else if (label != if_true_label)
3514 continue;
3516 num_jumps++;
3517 predict_insn_def (insn, PRED_BUILTIN_EXPECT, taken);
3521 /* If no jumps were modified, fail and do __builtin_expect the normal
3522 way. */
3523 if (num_jumps == 0)
3524 ret = NULL_RTX;
3527 return ret;
3530 /* Expand an expression EXP that calls a built-in function,
3531 with result going to TARGET if that's convenient
3532 (and in mode MODE if that's convenient).
3533 SUBTARGET may be used as the target for computing one of EXP's operands.
3534 IGNORE is nonzero if the value is to be ignored. */
3537 expand_builtin (exp, target, subtarget, mode, ignore)
3538 tree exp;
3539 rtx target;
3540 rtx subtarget;
3541 enum machine_mode mode;
3542 int ignore;
3544 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3545 tree arglist = TREE_OPERAND (exp, 1);
3546 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3548 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
3549 return (*targetm.expand_builtin) (exp, target, subtarget, mode, ignore);
3551 /* When not optimizing, generate calls to library functions for a certain
3552 set of builtins. */
3553 if (!optimize && !CALLED_AS_BUILT_IN (fndecl))
3554 switch (fcode)
3556 case BUILT_IN_SIN:
3557 case BUILT_IN_COS:
3558 case BUILT_IN_SQRT:
3559 case BUILT_IN_SQRTF:
3560 case BUILT_IN_SQRTL:
3561 case BUILT_IN_MEMSET:
3562 case BUILT_IN_MEMCPY:
3563 case BUILT_IN_MEMCMP:
3564 case BUILT_IN_BCMP:
3565 case BUILT_IN_BZERO:
3566 case BUILT_IN_INDEX:
3567 case BUILT_IN_RINDEX:
3568 case BUILT_IN_STRCHR:
3569 case BUILT_IN_STRRCHR:
3570 case BUILT_IN_STRLEN:
3571 case BUILT_IN_STRCPY:
3572 case BUILT_IN_STRNCPY:
3573 case BUILT_IN_STRNCMP:
3574 case BUILT_IN_STRSTR:
3575 case BUILT_IN_STRPBRK:
3576 case BUILT_IN_STRCAT:
3577 case BUILT_IN_STRNCAT:
3578 case BUILT_IN_STRSPN:
3579 case BUILT_IN_STRCSPN:
3580 case BUILT_IN_STRCMP:
3581 case BUILT_IN_FFS:
3582 case BUILT_IN_PUTCHAR:
3583 case BUILT_IN_PUTS:
3584 case BUILT_IN_PRINTF:
3585 case BUILT_IN_FPUTC:
3586 case BUILT_IN_FPUTS:
3587 case BUILT_IN_FWRITE:
3588 case BUILT_IN_PUTCHAR_UNLOCKED:
3589 case BUILT_IN_PUTS_UNLOCKED:
3590 case BUILT_IN_PRINTF_UNLOCKED:
3591 case BUILT_IN_FPUTC_UNLOCKED:
3592 case BUILT_IN_FPUTS_UNLOCKED:
3593 case BUILT_IN_FWRITE_UNLOCKED:
3594 return expand_call (exp, target, ignore);
3596 default:
3597 break;
3600 switch (fcode)
3602 case BUILT_IN_ABS:
3603 case BUILT_IN_LABS:
3604 case BUILT_IN_LLABS:
3605 case BUILT_IN_IMAXABS:
3606 case BUILT_IN_FABS:
3607 case BUILT_IN_FABSF:
3608 case BUILT_IN_FABSL:
3609 /* build_function_call changes these into ABS_EXPR. */
3610 abort ();
3612 case BUILT_IN_CONJ:
3613 case BUILT_IN_CONJF:
3614 case BUILT_IN_CONJL:
3615 case BUILT_IN_CREAL:
3616 case BUILT_IN_CREALF:
3617 case BUILT_IN_CREALL:
3618 case BUILT_IN_CIMAG:
3619 case BUILT_IN_CIMAGF:
3620 case BUILT_IN_CIMAGL:
3621 /* expand_tree_builtin changes these into CONJ_EXPR, REALPART_EXPR
3622 and IMAGPART_EXPR. */
3623 abort ();
3625 case BUILT_IN_SIN:
3626 case BUILT_IN_SINF:
3627 case BUILT_IN_SINL:
3628 case BUILT_IN_COS:
3629 case BUILT_IN_COSF:
3630 case BUILT_IN_COSL:
3631 /* Treat these like sqrt only if unsafe math optimizations are allowed,
3632 because of possible accuracy problems. */
3633 if (! flag_unsafe_math_optimizations)
3634 break;
3635 case BUILT_IN_SQRT:
3636 case BUILT_IN_SQRTF:
3637 case BUILT_IN_SQRTL:
3638 target = expand_builtin_mathfn (exp, target, subtarget);
3639 if (target)
3640 return target;
3641 break;
3643 case BUILT_IN_FMOD:
3644 break;
3646 case BUILT_IN_APPLY_ARGS:
3647 return expand_builtin_apply_args ();
3649 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
3650 FUNCTION with a copy of the parameters described by
3651 ARGUMENTS, and ARGSIZE. It returns a block of memory
3652 allocated on the stack into which is stored all the registers
3653 that might possibly be used for returning the result of a
3654 function. ARGUMENTS is the value returned by
3655 __builtin_apply_args. ARGSIZE is the number of bytes of
3656 arguments that must be copied. ??? How should this value be
3657 computed? We'll also need a safe worst case value for varargs
3658 functions. */
3659 case BUILT_IN_APPLY:
3660 if (!validate_arglist (arglist, POINTER_TYPE,
3661 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE)
3662 && !validate_arglist (arglist, REFERENCE_TYPE,
3663 POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3664 return const0_rtx;
3665 else
3667 int i;
3668 tree t;
3669 rtx ops[3];
3671 for (t = arglist, i = 0; t; t = TREE_CHAIN (t), i++)
3672 ops[i] = expand_expr (TREE_VALUE (t), NULL_RTX, VOIDmode, 0);
3674 return expand_builtin_apply (ops[0], ops[1], ops[2]);
3677 /* __builtin_return (RESULT) causes the function to return the
3678 value described by RESULT. RESULT is address of the block of
3679 memory returned by __builtin_apply. */
3680 case BUILT_IN_RETURN:
3681 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
3682 expand_builtin_return (expand_expr (TREE_VALUE (arglist),
3683 NULL_RTX, VOIDmode, 0));
3684 return const0_rtx;
3686 case BUILT_IN_SAVEREGS:
3687 return expand_builtin_saveregs ();
3689 case BUILT_IN_ARGS_INFO:
3690 return expand_builtin_args_info (exp);
3692 /* Return the address of the first anonymous stack arg. */
3693 case BUILT_IN_NEXT_ARG:
3694 return expand_builtin_next_arg (arglist);
3696 case BUILT_IN_CLASSIFY_TYPE:
3697 return expand_builtin_classify_type (arglist);
3699 case BUILT_IN_CONSTANT_P:
3700 return expand_builtin_constant_p (exp);
3702 case BUILT_IN_FRAME_ADDRESS:
3703 case BUILT_IN_RETURN_ADDRESS:
3704 return expand_builtin_frame_address (exp);
3706 /* Returns the address of the area where the structure is returned.
3707 0 otherwise. */
3708 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS:
3709 if (arglist != 0
3710 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl)))
3711 || GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl))) != MEM)
3712 return const0_rtx;
3713 else
3714 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl)), 0);
3716 case BUILT_IN_ALLOCA:
3717 target = expand_builtin_alloca (arglist, target);
3718 if (target)
3719 return target;
3720 break;
3722 case BUILT_IN_FFS:
3723 target = expand_builtin_ffs (arglist, target, subtarget);
3724 if (target)
3725 return target;
3726 break;
3728 case BUILT_IN_STRLEN:
3729 target = expand_builtin_strlen (exp, target);
3730 if (target)
3731 return target;
3732 break;
3734 case BUILT_IN_STRCPY:
3735 target = expand_builtin_strcpy (exp, target, mode);
3736 if (target)
3737 return target;
3738 break;
3740 case BUILT_IN_STRNCPY:
3741 target = expand_builtin_strncpy (arglist, target, mode);
3742 if (target)
3743 return target;
3744 break;
3746 case BUILT_IN_STRCAT:
3747 target = expand_builtin_strcat (arglist, target, mode);
3748 if (target)
3749 return target;
3750 break;
3752 case BUILT_IN_STRNCAT:
3753 target = expand_builtin_strncat (arglist, target, mode);
3754 if (target)
3755 return target;
3756 break;
3758 case BUILT_IN_STRSPN:
3759 target = expand_builtin_strspn (arglist, target, mode);
3760 if (target)
3761 return target;
3762 break;
3764 case BUILT_IN_STRCSPN:
3765 target = expand_builtin_strcspn (arglist, target, mode);
3766 if (target)
3767 return target;
3768 break;
3770 case BUILT_IN_STRSTR:
3771 target = expand_builtin_strstr (arglist, target, mode);
3772 if (target)
3773 return target;
3774 break;
3776 case BUILT_IN_STRPBRK:
3777 target = expand_builtin_strpbrk (arglist, target, mode);
3778 if (target)
3779 return target;
3780 break;
3782 case BUILT_IN_INDEX:
3783 case BUILT_IN_STRCHR:
3784 target = expand_builtin_strchr (arglist, target, mode);
3785 if (target)
3786 return target;
3787 break;
3789 case BUILT_IN_RINDEX:
3790 case BUILT_IN_STRRCHR:
3791 target = expand_builtin_strrchr (arglist, target, mode);
3792 if (target)
3793 return target;
3794 break;
3796 case BUILT_IN_MEMCPY:
3797 target = expand_builtin_memcpy (arglist, target, mode);
3798 if (target)
3799 return target;
3800 break;
3802 case BUILT_IN_MEMSET:
3803 target = expand_builtin_memset (exp, target, mode);
3804 if (target)
3805 return target;
3806 break;
3808 case BUILT_IN_BZERO:
3809 target = expand_builtin_bzero (exp);
3810 if (target)
3811 return target;
3812 break;
3814 case BUILT_IN_STRCMP:
3815 target = expand_builtin_strcmp (exp, target, mode);
3816 if (target)
3817 return target;
3818 break;
3820 case BUILT_IN_STRNCMP:
3821 target = expand_builtin_strncmp (exp, target, mode);
3822 if (target)
3823 return target;
3824 break;
3826 case BUILT_IN_BCMP:
3827 case BUILT_IN_MEMCMP:
3828 target = expand_builtin_memcmp (exp, arglist, target, mode);
3829 if (target)
3830 return target;
3831 break;
3833 case BUILT_IN_SETJMP:
3834 target = expand_builtin_setjmp (arglist, target);
3835 if (target)
3836 return target;
3837 break;
3839 /* __builtin_longjmp is passed a pointer to an array of five words.
3840 It's similar to the C library longjmp function but works with
3841 __builtin_setjmp above. */
3842 case BUILT_IN_LONGJMP:
3843 if (!validate_arglist (arglist, POINTER_TYPE, INTEGER_TYPE, VOID_TYPE))
3844 break;
3845 else
3847 rtx buf_addr = expand_expr (TREE_VALUE (arglist), subtarget,
3848 VOIDmode, 0);
3849 rtx value = expand_expr (TREE_VALUE (TREE_CHAIN (arglist)),
3850 NULL_RTX, VOIDmode, 0);
3852 if (value != const1_rtx)
3854 error ("__builtin_longjmp second argument must be 1");
3855 return const0_rtx;
3858 expand_builtin_longjmp (buf_addr, value);
3859 return const0_rtx;
3862 case BUILT_IN_TRAP:
3863 #ifdef HAVE_trap
3864 if (HAVE_trap)
3865 emit_insn (gen_trap ());
3866 else
3867 #endif
3868 error ("__builtin_trap not supported by this target");
3869 emit_barrier ();
3870 return const0_rtx;
3872 case BUILT_IN_PUTCHAR:
3873 case BUILT_IN_PUTS:
3874 case BUILT_IN_FPUTC:
3875 case BUILT_IN_FWRITE:
3876 case BUILT_IN_PUTCHAR_UNLOCKED:
3877 case BUILT_IN_PUTS_UNLOCKED:
3878 case BUILT_IN_FPUTC_UNLOCKED:
3879 case BUILT_IN_FWRITE_UNLOCKED:
3880 break;
3881 case BUILT_IN_FPUTS:
3882 target = expand_builtin_fputs (arglist, ignore,/*unlocked=*/ 0);
3883 if (target)
3884 return target;
3885 break;
3886 case BUILT_IN_FPUTS_UNLOCKED:
3887 target = expand_builtin_fputs (arglist, ignore,/*unlocked=*/ 1);
3888 if (target)
3889 return target;
3890 break;
3892 /* Various hooks for the DWARF 2 __throw routine. */
3893 case BUILT_IN_UNWIND_INIT:
3894 expand_builtin_unwind_init ();
3895 return const0_rtx;
3896 case BUILT_IN_DWARF_CFA:
3897 return virtual_cfa_rtx;
3898 #ifdef DWARF2_UNWIND_INFO
3899 case BUILT_IN_DWARF_FP_REGNUM:
3900 return expand_builtin_dwarf_fp_regnum ();
3901 case BUILT_IN_INIT_DWARF_REG_SIZES:
3902 expand_builtin_init_dwarf_reg_sizes (TREE_VALUE (arglist));
3903 return const0_rtx;
3904 #endif
3905 case BUILT_IN_FROB_RETURN_ADDR:
3906 return expand_builtin_frob_return_addr (TREE_VALUE (arglist));
3907 case BUILT_IN_EXTRACT_RETURN_ADDR:
3908 return expand_builtin_extract_return_addr (TREE_VALUE (arglist));
3909 case BUILT_IN_EH_RETURN:
3910 expand_builtin_eh_return (TREE_VALUE (arglist),
3911 TREE_VALUE (TREE_CHAIN (arglist)));
3912 return const0_rtx;
3913 #ifdef EH_RETURN_DATA_REGNO
3914 case BUILT_IN_EH_RETURN_DATA_REGNO:
3915 return expand_builtin_eh_return_data_regno (arglist);
3916 #endif
3917 case BUILT_IN_VARARGS_START:
3918 return expand_builtin_va_start (0, arglist);
3919 case BUILT_IN_STDARG_START:
3920 return expand_builtin_va_start (1, arglist);
3921 case BUILT_IN_VA_END:
3922 return expand_builtin_va_end (arglist);
3923 case BUILT_IN_VA_COPY:
3924 return expand_builtin_va_copy (arglist);
3925 case BUILT_IN_EXPECT:
3926 return expand_builtin_expect (arglist, target);
3927 case BUILT_IN_PREFETCH:
3928 expand_builtin_prefetch (arglist);
3929 return const0_rtx;
3932 default: /* just do library call, if unknown builtin */
3933 error ("built-in function `%s' not currently supported",
3934 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
3937 /* The switch statement above can drop through to cause the function
3938 to be called normally. */
3939 return expand_call (exp, target, ignore);
3942 /* Fold a call to __builtin_constant_p, if we know it will evaluate to a
3943 constant. ARGLIST is the argument list of the call. */
3945 static tree
3946 fold_builtin_constant_p (arglist)
3947 tree arglist;
3949 if (arglist == 0)
3950 return 0;
3952 arglist = TREE_VALUE (arglist);
3954 /* We return 1 for a numeric type that's known to be a constant
3955 value at compile-time or for an aggregate type that's a
3956 literal constant. */
3957 STRIP_NOPS (arglist);
3959 /* If we know this is a constant, emit the constant of one. */
3960 if (TREE_CODE_CLASS (TREE_CODE (arglist)) == 'c'
3961 || (TREE_CODE (arglist) == CONSTRUCTOR
3962 && TREE_CONSTANT (arglist))
3963 || (TREE_CODE (arglist) == ADDR_EXPR
3964 && TREE_CODE (TREE_OPERAND (arglist, 0)) == STRING_CST))
3965 return integer_one_node;
3967 /* If we aren't going to be running CSE or this expression
3968 has side effects, show we don't know it to be a constant.
3969 Likewise if it's a pointer or aggregate type since in those
3970 case we only want literals, since those are only optimized
3971 when generating RTL, not later.
3972 And finally, if we are compiling an initializer, not code, we
3973 need to return a definite result now; there's not going to be any
3974 more optimization done. */
3975 if (TREE_SIDE_EFFECTS (arglist) || cse_not_expected
3976 || AGGREGATE_TYPE_P (TREE_TYPE (arglist))
3977 || POINTER_TYPE_P (TREE_TYPE (arglist))
3978 || cfun == 0)
3979 return integer_zero_node;
3981 return 0;
3984 /* Fold a call to __builtin_classify_type. */
3986 static tree
3987 fold_builtin_classify_type (arglist)
3988 tree arglist;
3990 if (arglist == 0)
3991 return build_int_2 (no_type_class, 0);
3993 return build_int_2 (type_to_class (TREE_TYPE (TREE_VALUE (arglist))), 0);
3996 /* Used by constant folding to eliminate some builtin calls early. EXP is
3997 the CALL_EXPR of a call to a builtin function. */
3999 tree
4000 fold_builtin (exp)
4001 tree exp;
4003 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
4004 tree arglist = TREE_OPERAND (exp, 1);
4005 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
4007 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
4008 return 0;
4010 switch (fcode)
4012 case BUILT_IN_CONSTANT_P:
4013 return fold_builtin_constant_p (arglist);
4015 case BUILT_IN_CLASSIFY_TYPE:
4016 return fold_builtin_classify_type (arglist);
4018 case BUILT_IN_STRLEN:
4019 if (validate_arglist (arglist, POINTER_TYPE, VOID_TYPE))
4021 tree len = c_strlen (TREE_VALUE (arglist));
4022 if (len != 0)
4023 return len;
4025 break;
4027 default:
4028 break;
4031 return 0;
4034 static tree
4035 build_function_call_expr (fn, arglist)
4036 tree fn, arglist;
4038 tree call_expr;
4040 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
4041 call_expr = build (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
4042 call_expr, arglist);
4043 TREE_SIDE_EFFECTS (call_expr) = 1;
4044 return fold (call_expr);
4047 /* This function validates the types of a function call argument list
4048 represented as a tree chain of parameters against a specified list
4049 of tree_codes. If the last specifier is a 0, that represents an
4050 ellipses, otherwise the last specifier must be a VOID_TYPE. */
4052 static int
4053 validate_arglist VPARAMS ((tree arglist, ...))
4055 enum tree_code code;
4056 int res = 0;
4058 VA_OPEN (ap, arglist);
4059 VA_FIXEDARG (ap, tree, arglist);
4061 do {
4062 code = va_arg (ap, enum tree_code);
4063 switch (code)
4065 case 0:
4066 /* This signifies an ellipses, any further arguments are all ok. */
4067 res = 1;
4068 goto end;
4069 case VOID_TYPE:
4070 /* This signifies an endlink, if no arguments remain, return
4071 true, otherwise return false. */
4072 res = arglist == 0;
4073 goto end;
4074 default:
4075 /* If no parameters remain or the parameter's code does not
4076 match the specified code, return false. Otherwise continue
4077 checking any remaining arguments. */
4078 if (arglist == 0 || code != TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))))
4079 goto end;
4080 break;
4082 arglist = TREE_CHAIN (arglist);
4083 } while (1);
4085 /* We need gotos here since we can only have one VA_CLOSE in a
4086 function. */
4087 end: ;
4088 VA_CLOSE (ap);
4090 return res;
4093 /* Default version of target-specific builtin setup that does nothing. */
4095 void
4096 default_init_builtins ()
4100 /* Default target-specific builtin expander that does nothing. */
4103 default_expand_builtin (exp, target, subtarget, mode, ignore)
4104 tree exp ATTRIBUTE_UNUSED;
4105 rtx target ATTRIBUTE_UNUSED;
4106 rtx subtarget ATTRIBUTE_UNUSED;
4107 enum machine_mode mode ATTRIBUTE_UNUSED;
4108 int ignore ATTRIBUTE_UNUSED;
4110 return NULL_RTX;