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 GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
30 #include "hard-reg-set.h"
33 #include "insn-config.h"
37 #include "typeclass.h"
41 #define CALLED_AS_BUILT_IN(NODE) \
42 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
44 /* Register mappings for target machines without register windows. */
45 #ifndef INCOMING_REGNO
46 #define INCOMING_REGNO(OUT) (OUT)
48 #ifndef OUTGOING_REGNO
49 #define OUTGOING_REGNO(IN) (IN)
52 #ifndef PAD_VARARGS_DOWN
53 #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN
56 /* Define the names of the builtin function types and codes. */
57 const char *const built_in_class_names
[4]
58 = {"NOT_BUILT_IN", "BUILT_IN_FRONTEND", "BUILT_IN_MD", "BUILT_IN_NORMAL"};
60 #define DEF_BUILTIN(x) STRINGX(x),
61 const char *const built_in_names
[(int) END_BUILTINS
] =
63 #include "builtins.def"
67 /* Setup an array of _DECL trees, make sure each element is
68 initialized to NULL_TREE. */
69 #define DEF_BUILTIN(x) NULL_TREE,
70 tree built_in_decls
[(int) END_BUILTINS
] =
72 #include "builtins.def"
76 tree (*lang_type_promotes_to
) PARAMS ((tree
));
78 static int get_pointer_alignment
PARAMS ((tree
, unsigned));
79 static tree c_strlen
PARAMS ((tree
));
80 static const char *c_getstr
PARAMS ((tree
));
81 static rtx c_readstr
PARAMS ((const char *,
83 static int target_char_cast
PARAMS ((tree
, char *));
84 static rtx get_memory_rtx
PARAMS ((tree
));
85 static int apply_args_size
PARAMS ((void));
86 static int apply_result_size
PARAMS ((void));
87 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
88 static rtx result_vector
PARAMS ((int, rtx
));
90 static rtx expand_builtin_setjmp
PARAMS ((tree
, rtx
));
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 rtx expand_builtin_classify_type
PARAMS ((tree
));
96 static rtx expand_builtin_mathfn
PARAMS ((tree
, rtx
, rtx
));
97 static rtx expand_builtin_constant_p
PARAMS ((tree
));
98 static rtx expand_builtin_args_info
PARAMS ((tree
));
99 static rtx expand_builtin_next_arg
PARAMS ((tree
));
100 static rtx expand_builtin_va_start
PARAMS ((int, tree
));
101 static rtx expand_builtin_va_end
PARAMS ((tree
));
102 static rtx expand_builtin_va_copy
PARAMS ((tree
));
104 static rtx expand_builtin_memcmp
PARAMS ((tree
, tree
, rtx
));
106 static rtx expand_builtin_strcmp
PARAMS ((tree
, rtx
,
108 static rtx expand_builtin_strncmp
PARAMS ((tree
, rtx
,
110 static rtx builtin_memcpy_read_str
PARAMS ((PTR
, HOST_WIDE_INT
,
112 static rtx expand_builtin_strcat
PARAMS ((tree
, rtx
,
114 static rtx expand_builtin_strncat
PARAMS ((tree
, rtx
,
116 static rtx expand_builtin_strspn
PARAMS ((tree
, rtx
,
118 static rtx expand_builtin_strcspn
PARAMS ((tree
, rtx
,
120 static rtx expand_builtin_memcpy
PARAMS ((tree
));
121 static rtx expand_builtin_strcpy
PARAMS ((tree
));
122 static rtx builtin_strncpy_read_str
PARAMS ((PTR
, HOST_WIDE_INT
,
124 static rtx expand_builtin_strncpy
PARAMS ((tree
, rtx
,
126 static rtx builtin_memset_read_str
PARAMS ((PTR
, HOST_WIDE_INT
,
128 static rtx expand_builtin_memset
PARAMS ((tree
));
129 static rtx expand_builtin_bzero
PARAMS ((tree
));
130 static rtx expand_builtin_strlen
PARAMS ((tree
, rtx
));
131 static rtx expand_builtin_strstr
PARAMS ((tree
, rtx
,
133 static rtx expand_builtin_strpbrk
PARAMS ((tree
, rtx
,
135 static rtx expand_builtin_strchr
PARAMS ((tree
, rtx
,
137 static rtx expand_builtin_strrchr
PARAMS ((tree
, rtx
,
139 static rtx expand_builtin_alloca
PARAMS ((tree
, rtx
));
140 static rtx expand_builtin_ffs
PARAMS ((tree
, rtx
, rtx
));
141 static rtx expand_builtin_frame_address
PARAMS ((tree
));
142 static rtx expand_builtin_fputs
PARAMS ((tree
, int));
143 static tree stabilize_va_list
PARAMS ((tree
, int));
144 static rtx expand_builtin_expect
PARAMS ((tree
, rtx
));
145 static tree fold_builtin_constant_p
PARAMS ((tree
));
146 static tree build_function_call_expr
PARAMS ((tree
, tree
));
147 static int validate_arglist
PARAMS ((tree
, ...));
149 /* Return the alignment in bits of EXP, a pointer valued expression.
150 But don't return more than MAX_ALIGN no matter what.
151 The alignment returned is, by default, the alignment of the thing that
152 EXP points to (if it is not a POINTER_TYPE, 0 is returned).
154 Otherwise, look at the expression to see if we can do better, i.e., if the
155 expression is actually pointing at an object whose alignment is tighter. */
158 get_pointer_alignment (exp
, max_align
)
162 unsigned align
, inner
;
164 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
167 align
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
168 align
= MIN (align
, max_align
);
172 switch (TREE_CODE (exp
))
176 case NON_LVALUE_EXPR
:
177 exp
= TREE_OPERAND (exp
, 0);
178 if (TREE_CODE (TREE_TYPE (exp
)) != POINTER_TYPE
)
181 inner
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp
)));
182 align
= MIN (inner
, max_align
);
186 /* If sum of pointer + int, restrict our maximum alignment to that
187 imposed by the integer. If not, we can't do any better than
189 if (! host_integerp (TREE_OPERAND (exp
, 1), 1))
192 while (((tree_low_cst (TREE_OPERAND (exp
, 1), 1) * BITS_PER_UNIT
)
197 exp
= TREE_OPERAND (exp
, 0);
201 /* See what we are pointing at and look at its alignment. */
202 exp
= TREE_OPERAND (exp
, 0);
203 if (TREE_CODE (exp
) == FUNCTION_DECL
)
204 align
= FUNCTION_BOUNDARY
;
205 else if (DECL_P (exp
))
206 align
= DECL_ALIGN (exp
);
207 #ifdef CONSTANT_ALIGNMENT
208 else if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'c')
209 align
= CONSTANT_ALIGNMENT (exp
, align
);
211 return MIN (align
, max_align
);
219 /* Compute the length of a C string. TREE_STRING_LENGTH is not the right
220 way, because it could contain a zero byte in the middle.
221 TREE_STRING_LENGTH is the size of the character array, not the string.
223 The value returned is of type `ssizetype'.
225 Unfortunately, string_constant can't access the values of const char
226 arrays with initializers, so neither can we do so here. */
236 src
= string_constant (src
, &offset_node
);
240 max
= TREE_STRING_LENGTH (src
) - 1;
241 ptr
= TREE_STRING_POINTER (src
);
243 if (offset_node
&& TREE_CODE (offset_node
) != INTEGER_CST
)
245 /* If the string has an internal zero byte (e.g., "foo\0bar"), we can't
246 compute the offset to the following null if we don't know where to
247 start searching for it. */
250 for (i
= 0; i
< max
; i
++)
254 /* We don't know the starting offset, but we do know that the string
255 has no internal zero bytes. We can assume that the offset falls
256 within the bounds of the string; otherwise, the programmer deserves
257 what he gets. Subtract the offset from the length of the string,
258 and return that. This would perhaps not be valid if we were dealing
259 with named arrays in addition to literal string constants. */
261 return size_diffop (size_int (max
), offset_node
);
264 /* We have a known offset into the string. Start searching there for
266 if (offset_node
== 0)
270 /* Did we get a long long offset? If so, punt. */
271 if (TREE_INT_CST_HIGH (offset_node
) != 0)
273 offset
= TREE_INT_CST_LOW (offset_node
);
276 /* If the offset is known to be out of bounds, warn, and call strlen at
278 if (offset
< 0 || offset
> max
)
280 warning ("offset outside bounds of constant string");
284 /* Use strlen to search for the first zero byte. Since any strings
285 constructed with build_string will have nulls appended, we win even
286 if we get handed something like (char[4])"abcd".
288 Since OFFSET is our starting index into the string, no further
289 calculation is needed. */
290 return ssize_int (strlen (ptr
+ offset
));
293 /* Return a char pointer for a C string if it is a string constant
294 or sum of string constant and integer constant. */
304 src
= string_constant (src
, &offset_node
);
308 max
= TREE_STRING_LENGTH (src
) - 1;
309 ptr
= TREE_STRING_POINTER (src
);
313 else if (TREE_CODE (offset_node
) != INTEGER_CST
)
317 /* Did we get a long long offset? If so, punt. */
318 if (TREE_INT_CST_HIGH (offset_node
) != 0)
320 offset
= TREE_INT_CST_LOW (offset_node
);
321 if (offset
< 0 || offset
> max
)
328 /* Return a CONST_INT or CONST_DOUBLE corresponding to target
329 reading GET_MODE_BITSIZE (MODE) bits from string constant
333 c_readstr (str
, mode
)
335 enum machine_mode mode
;
341 if (GET_MODE_CLASS (mode
) != MODE_INT
)
346 for (i
= 0; i
< GET_MODE_SIZE (mode
); i
++)
349 if (WORDS_BIG_ENDIAN
)
350 j
= GET_MODE_SIZE (mode
) - i
- 1;
351 if (BYTES_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
352 && GET_MODE_SIZE (mode
) > UNITS_PER_WORD
)
353 j
= j
+ UNITS_PER_WORD
- 2 * (j
% UNITS_PER_WORD
) - 1;
355 if (j
> 2 * HOST_BITS_PER_WIDE_INT
)
358 ch
= (unsigned char) str
[i
];
359 c
[j
/ HOST_BITS_PER_WIDE_INT
] |= ch
<< (j
% HOST_BITS_PER_WIDE_INT
);
361 return immed_double_const (c
[0], c
[1], mode
);
364 /* Cast a target constant CST to target CHAR and if that value fits into
365 host char type, return zero and put that value into variable pointed by
369 target_char_cast (cst
, p
)
373 unsigned HOST_WIDE_INT val
, hostval
;
375 if (TREE_CODE (cst
) != INTEGER_CST
376 || CHAR_TYPE_SIZE
> HOST_BITS_PER_WIDE_INT
)
379 val
= TREE_INT_CST_LOW (cst
);
380 if (CHAR_TYPE_SIZE
< HOST_BITS_PER_WIDE_INT
)
381 val
&= (((unsigned HOST_WIDE_INT
) 1) << CHAR_TYPE_SIZE
) - 1;
384 if (HOST_BITS_PER_CHAR
< HOST_BITS_PER_WIDE_INT
)
385 hostval
&= (((unsigned HOST_WIDE_INT
) 1) << HOST_BITS_PER_CHAR
) - 1;
394 /* Given TEM, a pointer to a stack frame, follow the dynamic chain COUNT
395 times to get the address of either a higher stack frame, or a return
396 address located within it (depending on FNDECL_CODE). */
399 expand_builtin_return_addr (fndecl_code
, count
, tem
)
400 enum built_in_function fndecl_code
;
406 /* Some machines need special handling before we can access
407 arbitrary frames. For example, on the sparc, we must first flush
408 all register windows to the stack. */
409 #ifdef SETUP_FRAME_ADDRESSES
411 SETUP_FRAME_ADDRESSES ();
414 /* On the sparc, the return address is not in the frame, it is in a
415 register. There is no way to access it off of the current frame
416 pointer, but it can be accessed off the previous frame pointer by
417 reading the value from the register window save area. */
418 #ifdef RETURN_ADDR_IN_PREVIOUS_FRAME
419 if (fndecl_code
== BUILT_IN_RETURN_ADDRESS
)
423 /* Scan back COUNT frames to the specified frame. */
424 for (i
= 0; i
< count
; i
++)
426 /* Assume the dynamic chain pointer is in the word that the
427 frame address points to, unless otherwise specified. */
428 #ifdef DYNAMIC_CHAIN_ADDRESS
429 tem
= DYNAMIC_CHAIN_ADDRESS (tem
);
431 tem
= memory_address (Pmode
, tem
);
432 tem
= gen_rtx_MEM (Pmode
, tem
);
433 MEM_ALIAS_SET (tem
) = get_frame_alias_set ();
434 tem
= copy_to_reg (tem
);
437 /* For __builtin_frame_address, return what we've got. */
438 if (fndecl_code
== BUILT_IN_FRAME_ADDRESS
)
441 /* For __builtin_return_address, Get the return address from that
443 #ifdef RETURN_ADDR_RTX
444 tem
= RETURN_ADDR_RTX (count
, tem
);
446 tem
= memory_address (Pmode
,
447 plus_constant (tem
, GET_MODE_SIZE (Pmode
)));
448 tem
= gen_rtx_MEM (Pmode
, tem
);
449 MEM_ALIAS_SET (tem
) = get_frame_alias_set ();
454 /* Alias set used for setjmp buffer. */
455 static HOST_WIDE_INT setjmp_alias_set
= -1;
457 /* Construct the leading half of a __builtin_setjmp call. Control will
458 return to RECEIVER_LABEL. This is used directly by sjlj exception
462 expand_builtin_setjmp_setup (buf_addr
, receiver_label
)
466 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
470 if (setjmp_alias_set
== -1)
471 setjmp_alias_set
= new_alias_set ();
473 #ifdef POINTERS_EXTEND_UNSIGNED
474 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
477 buf_addr
= force_reg (Pmode
, force_operand (buf_addr
, NULL_RTX
));
481 /* We store the frame pointer and the address of receiver_label in
482 the buffer and use the rest of it for the stack save area, which
483 is machine-dependent. */
485 #ifndef BUILTIN_SETJMP_FRAME_VALUE
486 #define BUILTIN_SETJMP_FRAME_VALUE virtual_stack_vars_rtx
489 mem
= gen_rtx_MEM (Pmode
, buf_addr
);
490 MEM_ALIAS_SET (mem
) = setjmp_alias_set
;
491 emit_move_insn (mem
, BUILTIN_SETJMP_FRAME_VALUE
);
493 mem
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
, GET_MODE_SIZE (Pmode
))),
494 MEM_ALIAS_SET (mem
) = setjmp_alias_set
;
496 emit_move_insn (validize_mem (mem
),
497 force_reg (Pmode
, gen_rtx_LABEL_REF (Pmode
, receiver_label
)));
499 stack_save
= gen_rtx_MEM (sa_mode
,
500 plus_constant (buf_addr
,
501 2 * GET_MODE_SIZE (Pmode
)));
502 MEM_ALIAS_SET (stack_save
) = setjmp_alias_set
;
503 emit_stack_save (SAVE_NONLOCAL
, &stack_save
, NULL_RTX
);
505 /* If there is further processing to do, do it. */
506 #ifdef HAVE_builtin_setjmp_setup
507 if (HAVE_builtin_setjmp_setup
)
508 emit_insn (gen_builtin_setjmp_setup (buf_addr
));
511 /* Tell optimize_save_area_alloca that extra work is going to
512 need to go on during alloca. */
513 current_function_calls_setjmp
= 1;
515 /* Set this so all the registers get saved in our frame; we need to be
516 able to copy the saved values for any registers from frames we unwind. */
517 current_function_has_nonlocal_label
= 1;
520 /* Construct the trailing part of a __builtin_setjmp call.
521 This is used directly by sjlj exception handling code. */
524 expand_builtin_setjmp_receiver (receiver_label
)
525 rtx receiver_label ATTRIBUTE_UNUSED
;
527 /* Clobber the FP when we get here, so we have to make sure it's
528 marked as used by this function. */
529 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
531 /* Mark the static chain as clobbered here so life information
532 doesn't get messed up for it. */
533 emit_insn (gen_rtx_CLOBBER (VOIDmode
, static_chain_rtx
));
535 /* Now put in the code to restore the frame pointer, and argument
536 pointer, if needed. The code below is from expand_end_bindings
537 in stmt.c; see detailed documentation there. */
538 #ifdef HAVE_nonlocal_goto
539 if (! HAVE_nonlocal_goto
)
541 emit_move_insn (virtual_stack_vars_rtx
, hard_frame_pointer_rtx
);
543 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
544 if (fixed_regs
[ARG_POINTER_REGNUM
])
546 #ifdef ELIMINABLE_REGS
548 static struct elims
{int from
, to
;} elim_regs
[] = ELIMINABLE_REGS
;
550 for (i
= 0; i
< ARRAY_SIZE (elim_regs
); i
++)
551 if (elim_regs
[i
].from
== ARG_POINTER_REGNUM
552 && elim_regs
[i
].to
== HARD_FRAME_POINTER_REGNUM
)
555 if (i
== ARRAY_SIZE (elim_regs
))
558 /* Now restore our arg pointer from the address at which it
559 was saved in our stack frame.
560 If there hasn't be space allocated for it yet, make
562 if (arg_pointer_save_area
== 0)
563 arg_pointer_save_area
564 = assign_stack_local (Pmode
, GET_MODE_SIZE (Pmode
), 0);
565 emit_move_insn (virtual_incoming_args_rtx
,
566 copy_to_reg (arg_pointer_save_area
));
571 #ifdef HAVE_builtin_setjmp_receiver
572 if (HAVE_builtin_setjmp_receiver
)
573 emit_insn (gen_builtin_setjmp_receiver (receiver_label
));
576 #ifdef HAVE_nonlocal_goto_receiver
577 if (HAVE_nonlocal_goto_receiver
)
578 emit_insn (gen_nonlocal_goto_receiver ());
583 /* @@@ This is a kludge. Not all machine descriptions define a blockage
584 insn, but we must not allow the code we just generated to be reordered
585 by scheduling. Specifically, the update of the frame pointer must
586 happen immediately, not later. So emit an ASM_INPUT to act as blockage
588 emit_insn (gen_rtx_ASM_INPUT (VOIDmode
, ""));
591 /* __builtin_setjmp is passed a pointer to an array of five words (not
592 all will be used on all machines). It operates similarly to the C
593 library function of the same name, but is more efficient. Much of
594 the code below (and for longjmp) is copied from the handling of
597 NOTE: This is intended for use by GNAT and the exception handling
598 scheme in the compiler and will only work in the method used by
602 expand_builtin_setjmp (arglist
, target
)
606 rtx buf_addr
, next_lab
, cont_lab
;
608 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
611 if (target
== 0 || GET_CODE (target
) != REG
612 || REGNO (target
) < FIRST_PSEUDO_REGISTER
)
613 target
= gen_reg_rtx (TYPE_MODE (integer_type_node
));
615 buf_addr
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
617 next_lab
= gen_label_rtx ();
618 cont_lab
= gen_label_rtx ();
620 expand_builtin_setjmp_setup (buf_addr
, next_lab
);
622 /* Set TARGET to zero and branch to the continue label. */
623 emit_move_insn (target
, const0_rtx
);
624 emit_jump_insn (gen_jump (cont_lab
));
626 emit_label (next_lab
);
628 expand_builtin_setjmp_receiver (next_lab
);
630 /* Set TARGET to one. */
631 emit_move_insn (target
, const1_rtx
);
632 emit_label (cont_lab
);
634 /* Tell flow about the strange goings on. Putting `next_lab' on
635 `nonlocal_goto_handler_labels' to indicates that function
636 calls may traverse the arc back to this label. */
638 current_function_has_nonlocal_label
= 1;
639 nonlocal_goto_handler_labels
640 = gen_rtx_EXPR_LIST (VOIDmode
, next_lab
, nonlocal_goto_handler_labels
);
645 /* __builtin_longjmp is passed a pointer to an array of five words (not
646 all will be used on all machines). It operates similarly to the C
647 library function of the same name, but is more efficient. Much of
648 the code below is copied from the handling of non-local gotos.
650 NOTE: This is intended for use by GNAT and the exception handling
651 scheme in the compiler and will only work in the method used by
655 expand_builtin_longjmp (buf_addr
, value
)
658 rtx fp
, lab
, stack
, insn
;
659 enum machine_mode sa_mode
= STACK_SAVEAREA_MODE (SAVE_NONLOCAL
);
661 if (setjmp_alias_set
== -1)
662 setjmp_alias_set
= new_alias_set ();
664 #ifdef POINTERS_EXTEND_UNSIGNED
665 buf_addr
= convert_memory_address (Pmode
, buf_addr
);
667 buf_addr
= force_reg (Pmode
, buf_addr
);
669 /* We used to store value in static_chain_rtx, but that fails if pointers
670 are smaller than integers. We instead require that the user must pass
671 a second argument of 1, because that is what builtin_setjmp will
672 return. This also makes EH slightly more efficient, since we are no
673 longer copying around a value that we don't care about. */
674 if (value
!= const1_rtx
)
677 current_function_calls_longjmp
= 1;
679 #ifdef HAVE_builtin_longjmp
680 if (HAVE_builtin_longjmp
)
681 emit_insn (gen_builtin_longjmp (buf_addr
));
685 fp
= gen_rtx_MEM (Pmode
, buf_addr
);
686 lab
= gen_rtx_MEM (Pmode
, plus_constant (buf_addr
,
687 GET_MODE_SIZE (Pmode
)));
689 stack
= gen_rtx_MEM (sa_mode
, plus_constant (buf_addr
,
690 2 * GET_MODE_SIZE (Pmode
)));
691 MEM_ALIAS_SET (fp
) = MEM_ALIAS_SET (lab
) = MEM_ALIAS_SET (stack
)
694 /* Pick up FP, label, and SP from the block and jump. This code is
695 from expand_goto in stmt.c; see there for detailed comments. */
696 #if HAVE_nonlocal_goto
697 if (HAVE_nonlocal_goto
)
698 /* We have to pass a value to the nonlocal_goto pattern that will
699 get copied into the static_chain pointer, but it does not matter
700 what that value is, because builtin_setjmp does not use it. */
701 emit_insn (gen_nonlocal_goto (value
, fp
, stack
, lab
));
705 lab
= copy_to_reg (lab
);
707 emit_move_insn (hard_frame_pointer_rtx
, fp
);
708 emit_stack_restore (SAVE_NONLOCAL
, stack
, NULL_RTX
);
710 emit_insn (gen_rtx_USE (VOIDmode
, hard_frame_pointer_rtx
));
711 emit_insn (gen_rtx_USE (VOIDmode
, stack_pointer_rtx
));
712 emit_indirect_jump (lab
);
716 /* Search backwards and mark the jump insn as a non-local goto.
717 Note that this precludes the use of __builtin_longjmp to a
718 __builtin_setjmp target in the same function. However, we've
719 already cautioned the user that these functions are for
720 internal exception handling use only. */
721 for (insn
= get_last_insn ();
722 GET_CODE (insn
) != JUMP_INSN
;
723 insn
= PREV_INSN (insn
))
725 REG_NOTES (insn
) = alloc_EXPR_LIST (REG_NON_LOCAL_GOTO
, const0_rtx
,
729 /* Get a MEM rtx for expression EXP which is the address of an operand
730 to be used to be used in a string instruction (cmpstrsi, movstrsi, ..). */
736 rtx mem
= gen_rtx_MEM (BLKmode
,
737 memory_address (BLKmode
,
738 expand_expr (exp
, NULL_RTX
,
739 ptr_mode
, EXPAND_SUM
)));
741 /* Get an expression we can use to find the attributes to assign to MEM.
742 If it is an ADDR_EXPR, use the operand. Otherwise, dereference it if
743 we can. First remove any nops. */
744 while ((TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
745 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
746 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (exp
, 0))))
747 exp
= TREE_OPERAND (exp
, 0);
749 if (TREE_CODE (exp
) == ADDR_EXPR
)
750 exp
= TREE_OPERAND (exp
, 0);
751 else if (POINTER_TYPE_P (TREE_TYPE (exp
)))
752 exp
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (exp
)), exp
);
756 set_mem_attributes (mem
, exp
, 0);
758 /* memcpy, memset and other builtin stringops can alias with anything. */
759 MEM_ALIAS_SET (mem
) = 0;
763 /* Built-in functions to perform an untyped call and return. */
765 /* For each register that may be used for calling a function, this
766 gives a mode used to copy the register's value. VOIDmode indicates
767 the register is not used for calling a function. If the machine
768 has register windows, this gives only the outbound registers.
769 INCOMING_REGNO gives the corresponding inbound register. */
770 static enum machine_mode apply_args_mode
[FIRST_PSEUDO_REGISTER
];
772 /* For each register that may be used for returning values, this gives
773 a mode used to copy the register's value. VOIDmode indicates the
774 register is not used for returning values. If the machine has
775 register windows, this gives only the outbound registers.
776 INCOMING_REGNO gives the corresponding inbound register. */
777 static enum machine_mode apply_result_mode
[FIRST_PSEUDO_REGISTER
];
779 /* For each register that may be used for calling a function, this
780 gives the offset of that register into the block returned by
781 __builtin_apply_args. 0 indicates that the register is not
782 used for calling a function. */
783 static int apply_args_reg_offset
[FIRST_PSEUDO_REGISTER
];
785 /* Return the offset of register REGNO into the block returned by
786 __builtin_apply_args. This is not declared static, since it is
787 needed in objc-act.c. */
790 apply_args_register_offset (regno
)
795 /* Arguments are always put in outgoing registers (in the argument
796 block) if such make sense. */
797 #ifdef OUTGOING_REGNO
798 regno
= OUTGOING_REGNO(regno
);
800 return apply_args_reg_offset
[regno
];
803 /* Return the size required for the block returned by __builtin_apply_args,
804 and initialize apply_args_mode. */
809 static int size
= -1;
811 enum machine_mode mode
;
813 /* The values computed by this function never change. */
816 /* The first value is the incoming arg-pointer. */
817 size
= GET_MODE_SIZE (Pmode
);
819 /* The second value is the structure value address unless this is
820 passed as an "invisible" first argument. */
821 if (struct_value_rtx
)
822 size
+= GET_MODE_SIZE (Pmode
);
824 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
825 if (FUNCTION_ARG_REGNO_P (regno
))
827 /* Search for the proper mode for copying this register's
828 value. I'm not sure this is right, but it works so far. */
829 enum machine_mode best_mode
= VOIDmode
;
831 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
833 mode
= GET_MODE_WIDER_MODE (mode
))
834 if (HARD_REGNO_MODE_OK (regno
, mode
)
835 && HARD_REGNO_NREGS (regno
, mode
) == 1)
838 if (best_mode
== VOIDmode
)
839 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
);
841 mode
= GET_MODE_WIDER_MODE (mode
))
842 if (HARD_REGNO_MODE_OK (regno
, mode
)
843 && (mov_optab
->handlers
[(int) mode
].insn_code
844 != CODE_FOR_nothing
))
848 if (mode
== VOIDmode
)
851 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
852 if (size
% align
!= 0)
853 size
= CEIL (size
, align
) * align
;
854 apply_args_reg_offset
[regno
] = size
;
855 size
+= GET_MODE_SIZE (mode
);
856 apply_args_mode
[regno
] = mode
;
860 apply_args_mode
[regno
] = VOIDmode
;
861 apply_args_reg_offset
[regno
] = 0;
867 /* Return the size required for the block returned by __builtin_apply,
868 and initialize apply_result_mode. */
873 static int size
= -1;
875 enum machine_mode mode
;
877 /* The values computed by this function never change. */
882 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
883 if (FUNCTION_VALUE_REGNO_P (regno
))
885 /* Search for the proper mode for copying this register's
886 value. I'm not sure this is right, but it works so far. */
887 enum machine_mode best_mode
= VOIDmode
;
889 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_INT
);
891 mode
= GET_MODE_WIDER_MODE (mode
))
892 if (HARD_REGNO_MODE_OK (regno
, mode
))
895 if (best_mode
== VOIDmode
)
896 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
);
898 mode
= GET_MODE_WIDER_MODE (mode
))
899 if (HARD_REGNO_MODE_OK (regno
, mode
)
900 && (mov_optab
->handlers
[(int) mode
].insn_code
901 != CODE_FOR_nothing
))
905 if (mode
== VOIDmode
)
908 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
909 if (size
% align
!= 0)
910 size
= CEIL (size
, align
) * align
;
911 size
+= GET_MODE_SIZE (mode
);
912 apply_result_mode
[regno
] = mode
;
915 apply_result_mode
[regno
] = VOIDmode
;
917 /* Allow targets that use untyped_call and untyped_return to override
918 the size so that machine-specific information can be stored here. */
919 #ifdef APPLY_RESULT_SIZE
920 size
= APPLY_RESULT_SIZE
;
926 #if defined (HAVE_untyped_call) || defined (HAVE_untyped_return)
927 /* Create a vector describing the result block RESULT. If SAVEP is true,
928 the result block is used to save the values; otherwise it is used to
929 restore the values. */
932 result_vector (savep
, result
)
936 int regno
, size
, align
, nelts
;
937 enum machine_mode mode
;
939 rtx
*savevec
= (rtx
*) alloca (FIRST_PSEUDO_REGISTER
* sizeof (rtx
));
942 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
943 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
945 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
946 if (size
% align
!= 0)
947 size
= CEIL (size
, align
) * align
;
948 reg
= gen_rtx_REG (mode
, savep
? regno
: INCOMING_REGNO (regno
));
949 mem
= change_address (result
, mode
,
950 plus_constant (XEXP (result
, 0), size
));
951 savevec
[nelts
++] = (savep
952 ? gen_rtx_SET (VOIDmode
, mem
, reg
)
953 : gen_rtx_SET (VOIDmode
, reg
, mem
));
954 size
+= GET_MODE_SIZE (mode
);
956 return gen_rtx_PARALLEL (VOIDmode
, gen_rtvec_v (nelts
, savevec
));
958 #endif /* HAVE_untyped_call or HAVE_untyped_return */
960 /* Save the state required to perform an untyped call with the same
961 arguments as were passed to the current function. */
964 expand_builtin_apply_args_1 ()
967 int size
, align
, regno
;
968 enum machine_mode mode
;
970 /* Create a block where the arg-pointer, structure value address,
971 and argument registers can be saved. */
972 registers
= assign_stack_local (BLKmode
, apply_args_size (), -1);
974 /* Walk past the arg-pointer and structure value address. */
975 size
= GET_MODE_SIZE (Pmode
);
976 if (struct_value_rtx
)
977 size
+= GET_MODE_SIZE (Pmode
);
979 /* Save each register used in calling a function to the block. */
980 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
981 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
985 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
986 if (size
% align
!= 0)
987 size
= CEIL (size
, align
) * align
;
989 tem
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
991 emit_move_insn (change_address (registers
, mode
,
992 plus_constant (XEXP (registers
, 0),
995 size
+= GET_MODE_SIZE (mode
);
998 /* Save the arg pointer to the block. */
999 emit_move_insn (change_address (registers
, Pmode
, XEXP (registers
, 0)),
1000 copy_to_reg (virtual_incoming_args_rtx
));
1001 size
= GET_MODE_SIZE (Pmode
);
1003 /* Save the structure value address unless this is passed as an
1004 "invisible" first argument. */
1005 if (struct_value_incoming_rtx
)
1007 emit_move_insn (change_address (registers
, Pmode
,
1008 plus_constant (XEXP (registers
, 0),
1010 copy_to_reg (struct_value_incoming_rtx
));
1011 size
+= GET_MODE_SIZE (Pmode
);
1014 /* Return the address of the block. */
1015 return copy_addr_to_reg (XEXP (registers
, 0));
1018 /* __builtin_apply_args returns block of memory allocated on
1019 the stack into which is stored the arg pointer, structure
1020 value address, static chain, and all the registers that might
1021 possibly be used in performing a function call. The code is
1022 moved to the start of the function so the incoming values are
1025 expand_builtin_apply_args ()
1027 /* Don't do __builtin_apply_args more than once in a function.
1028 Save the result of the first call and reuse it. */
1029 if (apply_args_value
!= 0)
1030 return apply_args_value
;
1032 /* When this function is called, it means that registers must be
1033 saved on entry to this function. So we migrate the
1034 call to the first insn of this function. */
1039 temp
= expand_builtin_apply_args_1 ();
1043 apply_args_value
= temp
;
1045 /* Put the sequence after the NOTE that starts the function.
1046 If this is inside a SEQUENCE, make the outer-level insn
1047 chain current, so the code is placed at the start of the
1049 push_topmost_sequence ();
1050 emit_insns_before (seq
, NEXT_INSN (get_insns ()));
1051 pop_topmost_sequence ();
1056 /* Perform an untyped call and save the state required to perform an
1057 untyped return of whatever value was returned by the given function. */
1060 expand_builtin_apply (function
, arguments
, argsize
)
1061 rtx function
, arguments
, argsize
;
1063 int size
, align
, regno
;
1064 enum machine_mode mode
;
1065 rtx incoming_args
, result
, reg
, dest
, call_insn
;
1066 rtx old_stack_level
= 0;
1067 rtx call_fusage
= 0;
1069 /* Create a block where the return registers can be saved. */
1070 result
= assign_stack_local (BLKmode
, apply_result_size (), -1);
1072 /* Fetch the arg pointer from the ARGUMENTS block. */
1073 incoming_args
= gen_reg_rtx (Pmode
);
1074 emit_move_insn (incoming_args
,
1075 gen_rtx_MEM (Pmode
, arguments
));
1076 #ifndef STACK_GROWS_DOWNWARD
1077 incoming_args
= expand_binop (Pmode
, sub_optab
, incoming_args
, argsize
,
1078 incoming_args
, 0, OPTAB_LIB_WIDEN
);
1081 /* Perform postincrements before actually calling the function. */
1084 /* Push a new argument block and copy the arguments. Do not allow
1085 the (potential) memcpy call below to interfere with our stack
1087 do_pending_stack_adjust ();
1090 /* Save the stack with nonlocal if available */
1091 #ifdef HAVE_save_stack_nonlocal
1092 if (HAVE_save_stack_nonlocal
)
1093 emit_stack_save (SAVE_NONLOCAL
, &old_stack_level
, NULL_RTX
);
1096 emit_stack_save (SAVE_BLOCK
, &old_stack_level
, NULL_RTX
);
1098 /* Push a block of memory onto the stack to store the memory arguments.
1099 Save the address in a register, and copy the memory arguments. ??? I
1100 haven't figured out how the calling convention macros effect this,
1101 but it's likely that the source and/or destination addresses in
1102 the block copy will need updating in machine specific ways. */
1103 dest
= allocate_dynamic_stack_space (argsize
, 0, BITS_PER_UNIT
);
1104 emit_block_move (gen_rtx_MEM (BLKmode
, dest
),
1105 gen_rtx_MEM (BLKmode
, incoming_args
),
1106 argsize
, PARM_BOUNDARY
);
1108 /* Refer to the argument block. */
1110 arguments
= gen_rtx_MEM (BLKmode
, arguments
);
1112 /* Walk past the arg-pointer and structure value address. */
1113 size
= GET_MODE_SIZE (Pmode
);
1114 if (struct_value_rtx
)
1115 size
+= GET_MODE_SIZE (Pmode
);
1117 /* Restore each of the registers previously saved. Make USE insns
1118 for each of these registers for use in making the call. */
1119 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1120 if ((mode
= apply_args_mode
[regno
]) != VOIDmode
)
1122 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1123 if (size
% align
!= 0)
1124 size
= CEIL (size
, align
) * align
;
1125 reg
= gen_rtx_REG (mode
, regno
);
1126 emit_move_insn (reg
,
1127 change_address (arguments
, mode
,
1128 plus_constant (XEXP (arguments
, 0),
1131 use_reg (&call_fusage
, reg
);
1132 size
+= GET_MODE_SIZE (mode
);
1135 /* Restore the structure value address unless this is passed as an
1136 "invisible" first argument. */
1137 size
= GET_MODE_SIZE (Pmode
);
1138 if (struct_value_rtx
)
1140 rtx value
= gen_reg_rtx (Pmode
);
1141 emit_move_insn (value
,
1142 change_address (arguments
, Pmode
,
1143 plus_constant (XEXP (arguments
, 0),
1145 emit_move_insn (struct_value_rtx
, value
);
1146 if (GET_CODE (struct_value_rtx
) == REG
)
1147 use_reg (&call_fusage
, struct_value_rtx
);
1148 size
+= GET_MODE_SIZE (Pmode
);
1151 /* All arguments and registers used for the call are set up by now! */
1152 function
= prepare_call_address (function
, NULL_TREE
, &call_fusage
, 0);
1154 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
1155 and we don't want to load it into a register as an optimization,
1156 because prepare_call_address already did it if it should be done. */
1157 if (GET_CODE (function
) != SYMBOL_REF
)
1158 function
= memory_address (FUNCTION_MODE
, function
);
1160 /* Generate the actual call instruction and save the return value. */
1161 #ifdef HAVE_untyped_call
1162 if (HAVE_untyped_call
)
1163 emit_call_insn (gen_untyped_call (gen_rtx_MEM (FUNCTION_MODE
, function
),
1164 result
, result_vector (1, result
)));
1167 #ifdef HAVE_call_value
1168 if (HAVE_call_value
)
1172 /* Locate the unique return register. It is not possible to
1173 express a call that sets more than one return register using
1174 call_value; use untyped_call for that. In fact, untyped_call
1175 only needs to save the return registers in the given block. */
1176 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1177 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1180 abort (); /* HAVE_untyped_call required. */
1181 valreg
= gen_rtx_REG (mode
, regno
);
1184 emit_call_insn (GEN_CALL_VALUE (valreg
,
1185 gen_rtx_MEM (FUNCTION_MODE
, function
),
1186 const0_rtx
, NULL_RTX
, const0_rtx
));
1188 emit_move_insn (change_address (result
, GET_MODE (valreg
),
1196 /* Find the CALL insn we just emitted. */
1197 for (call_insn
= get_last_insn ();
1198 call_insn
&& GET_CODE (call_insn
) != CALL_INSN
;
1199 call_insn
= PREV_INSN (call_insn
))
1205 /* Put the register usage information on the CALL. If there is already
1206 some usage information, put ours at the end. */
1207 if (CALL_INSN_FUNCTION_USAGE (call_insn
))
1211 for (link
= CALL_INSN_FUNCTION_USAGE (call_insn
); XEXP (link
, 1) != 0;
1212 link
= XEXP (link
, 1))
1215 XEXP (link
, 1) = call_fusage
;
1218 CALL_INSN_FUNCTION_USAGE (call_insn
) = call_fusage
;
1220 /* Restore the stack. */
1221 #ifdef HAVE_save_stack_nonlocal
1222 if (HAVE_save_stack_nonlocal
)
1223 emit_stack_restore (SAVE_NONLOCAL
, old_stack_level
, NULL_RTX
);
1226 emit_stack_restore (SAVE_BLOCK
, old_stack_level
, NULL_RTX
);
1230 /* Return the address of the result block. */
1231 return copy_addr_to_reg (XEXP (result
, 0));
1234 /* Perform an untyped return. */
1237 expand_builtin_return (result
)
1240 int size
, align
, regno
;
1241 enum machine_mode mode
;
1243 rtx call_fusage
= 0;
1245 apply_result_size ();
1246 result
= gen_rtx_MEM (BLKmode
, result
);
1248 #ifdef HAVE_untyped_return
1249 if (HAVE_untyped_return
)
1251 emit_jump_insn (gen_untyped_return (result
, result_vector (0, result
)));
1257 /* Restore the return value and note that each value is used. */
1259 for (regno
= 0; regno
< FIRST_PSEUDO_REGISTER
; regno
++)
1260 if ((mode
= apply_result_mode
[regno
]) != VOIDmode
)
1262 align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
1263 if (size
% align
!= 0)
1264 size
= CEIL (size
, align
) * align
;
1265 reg
= gen_rtx_REG (mode
, INCOMING_REGNO (regno
));
1266 emit_move_insn (reg
,
1267 change_address (result
, mode
,
1268 plus_constant (XEXP (result
, 0),
1271 push_to_sequence (call_fusage
);
1272 emit_insn (gen_rtx_USE (VOIDmode
, reg
));
1273 call_fusage
= get_insns ();
1275 size
+= GET_MODE_SIZE (mode
);
1278 /* Put the USE insns before the return. */
1279 emit_insns (call_fusage
);
1281 /* Return whatever values was restored by jumping directly to the end
1283 expand_null_return ();
1286 /* Expand a call to __builtin_classify_type with arguments found in
1289 expand_builtin_classify_type (arglist
)
1294 tree type
= TREE_TYPE (TREE_VALUE (arglist
));
1295 enum tree_code code
= TREE_CODE (type
);
1296 if (code
== VOID_TYPE
)
1297 return GEN_INT (void_type_class
);
1298 if (code
== INTEGER_TYPE
)
1299 return GEN_INT (integer_type_class
);
1300 if (code
== CHAR_TYPE
)
1301 return GEN_INT (char_type_class
);
1302 if (code
== ENUMERAL_TYPE
)
1303 return GEN_INT (enumeral_type_class
);
1304 if (code
== BOOLEAN_TYPE
)
1305 return GEN_INT (boolean_type_class
);
1306 if (code
== POINTER_TYPE
)
1307 return GEN_INT (pointer_type_class
);
1308 if (code
== REFERENCE_TYPE
)
1309 return GEN_INT (reference_type_class
);
1310 if (code
== OFFSET_TYPE
)
1311 return GEN_INT (offset_type_class
);
1312 if (code
== REAL_TYPE
)
1313 return GEN_INT (real_type_class
);
1314 if (code
== COMPLEX_TYPE
)
1315 return GEN_INT (complex_type_class
);
1316 if (code
== FUNCTION_TYPE
)
1317 return GEN_INT (function_type_class
);
1318 if (code
== METHOD_TYPE
)
1319 return GEN_INT (method_type_class
);
1320 if (code
== RECORD_TYPE
)
1321 return GEN_INT (record_type_class
);
1322 if (code
== UNION_TYPE
|| code
== QUAL_UNION_TYPE
)
1323 return GEN_INT (union_type_class
);
1324 if (code
== ARRAY_TYPE
)
1326 if (TYPE_STRING_FLAG (type
))
1327 return GEN_INT (string_type_class
);
1329 return GEN_INT (array_type_class
);
1331 if (code
== SET_TYPE
)
1332 return GEN_INT (set_type_class
);
1333 if (code
== FILE_TYPE
)
1334 return GEN_INT (file_type_class
);
1335 if (code
== LANG_TYPE
)
1336 return GEN_INT (lang_type_class
);
1338 return GEN_INT (no_type_class
);
1341 /* Expand expression EXP, which is a call to __builtin_constant_p. */
1343 expand_builtin_constant_p (exp
)
1346 tree arglist
= TREE_OPERAND (exp
, 1);
1347 enum machine_mode value_mode
= TYPE_MODE (TREE_TYPE (exp
));
1352 arglist
= TREE_VALUE (arglist
);
1354 /* We have taken care of the easy cases during constant folding. This
1355 case is not obvious, so emit (constant_p_rtx (ARGLIST)) and let CSE get a
1356 chance to see if it can deduce whether ARGLIST is constant. */
1358 tmp
= expand_expr (arglist
, NULL_RTX
, VOIDmode
, 0);
1359 tmp
= gen_rtx_CONSTANT_P_RTX (value_mode
, tmp
);
1363 /* Expand a call to one of the builtin math functions (sin, cos, or sqrt).
1364 Return 0 if a normal call should be emitted rather than expanding the
1365 function in-line. EXP is the expression that is a call to the builtin
1366 function; if convenient, the result should be placed in TARGET.
1367 SUBTARGET may be used as the target for computing one of EXP's operands. */
1369 expand_builtin_mathfn (exp
, target
, subtarget
)
1371 rtx target
, subtarget
;
1373 optab builtin_optab
;
1375 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
1376 tree arglist
= TREE_OPERAND (exp
, 1);
1378 if (!validate_arglist (arglist
, REAL_TYPE
, VOID_TYPE
))
1381 /* Stabilize and compute the argument. */
1382 if (TREE_CODE (TREE_VALUE (arglist
)) != VAR_DECL
1383 && TREE_CODE (TREE_VALUE (arglist
)) != PARM_DECL
)
1385 exp
= copy_node (exp
);
1386 TREE_OPERAND (exp
, 1) = arglist
;
1387 /* Wrap the computation of the argument in a SAVE_EXPR. That
1388 way, if we need to expand the argument again (as in the
1389 flag_errno_math case below where we cannot directly set
1390 errno), we will not perform side-effects more than once.
1391 Note that here we're mutating the original EXP as well as the
1392 copy; that's the right thing to do in case the original EXP
1393 is expanded later. */
1394 TREE_VALUE (arglist
) = save_expr (TREE_VALUE (arglist
));
1395 arglist
= copy_node (arglist
);
1397 op0
= expand_expr (TREE_VALUE (arglist
), subtarget
, VOIDmode
, 0);
1399 /* Make a suitable register to place result in. */
1400 target
= gen_reg_rtx (TYPE_MODE (TREE_TYPE (exp
)));
1405 switch (DECL_FUNCTION_CODE (fndecl
))
1408 builtin_optab
= sin_optab
; break;
1410 builtin_optab
= cos_optab
; break;
1411 case BUILT_IN_FSQRT
:
1412 builtin_optab
= sqrt_optab
; break;
1417 /* Compute into TARGET.
1418 Set TARGET to wherever the result comes back. */
1419 target
= expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist
))),
1420 builtin_optab
, op0
, target
, 0);
1422 /* If we were unable to expand via the builtin, stop the
1423 sequence (without outputting the insns) and return 0, causing
1424 a call to the library function. */
1431 /* If errno must be maintained and if we are not allowing unsafe
1432 math optimizations, check the result. */
1434 if (flag_errno_math
&& ! flag_unsafe_math_optimizations
)
1438 /* Don't define the builtin FP instructions
1439 if your machine is not IEEE. */
1440 if (TARGET_FLOAT_FORMAT
!= IEEE_FLOAT_FORMAT
)
1443 lab1
= gen_label_rtx ();
1445 /* Test the result; if it is NaN, set errno=EDOM because
1446 the argument was not in the domain. */
1447 emit_cmp_and_jump_insns (target
, target
, EQ
, 0, GET_MODE (target
),
1452 #ifdef GEN_ERRNO_RTX
1453 rtx errno_rtx
= GEN_ERRNO_RTX
;
1456 = gen_rtx_MEM (word_mode
, gen_rtx_SYMBOL_REF (Pmode
, "errno"));
1459 emit_move_insn (errno_rtx
, GEN_INT (TARGET_EDOM
));
1462 /* We can't set errno=EDOM directly; let the library call do it.
1463 Pop the arguments right away in case the call gets deleted. */
1465 expand_call (exp
, target
, 0);
1472 /* Output the entire sequence. */
1473 insns
= get_insns ();
1480 /* Expand expression EXP which is a call to the strlen builtin. Return 0
1481 if we failed the caller should emit a normal call, otherwise
1482 try to get the result in TARGET, if convenient. */
1485 expand_builtin_strlen (exp
, target
)
1489 tree arglist
= TREE_OPERAND (exp
, 1);
1490 enum machine_mode value_mode
= TYPE_MODE (TREE_TYPE (exp
));
1492 if (!validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
1497 tree src
= TREE_VALUE (arglist
);
1500 = get_pointer_alignment (src
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
1502 rtx result
, src_reg
, char_rtx
, before_strlen
;
1503 enum machine_mode insn_mode
= value_mode
, char_mode
;
1504 enum insn_code icode
= CODE_FOR_nothing
;
1506 /* If SRC is not a pointer type, don't do this operation inline. */
1510 /* Bail out if we can't compute strlen in the right mode. */
1511 while (insn_mode
!= VOIDmode
)
1513 icode
= strlen_optab
->handlers
[(int) insn_mode
].insn_code
;
1514 if (icode
!= CODE_FOR_nothing
)
1517 insn_mode
= GET_MODE_WIDER_MODE (insn_mode
);
1519 if (insn_mode
== VOIDmode
)
1522 /* Make a place to write the result of the instruction. */
1525 && GET_CODE (result
) == REG
1526 && GET_MODE (result
) == insn_mode
1527 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
1528 result
= gen_reg_rtx (insn_mode
);
1530 /* Make a place to hold the source address. We will not expand
1531 the actual source until we are sure that the expansion will
1532 not fail -- there are trees that cannot be expanded twice. */
1533 src_reg
= gen_reg_rtx (Pmode
);
1535 /* Mark the beginning of the strlen sequence so we can emit the
1536 source operand later. */
1537 before_strlen
= get_last_insn();
1539 /* Check the string is readable and has an end. */
1540 if (current_function_check_memory_usage
)
1541 emit_library_call (chkr_check_str_libfunc
, LCT_CONST_MAKE_BLOCK
,
1542 VOIDmode
, 2, src_reg
, Pmode
,
1543 GEN_INT (MEMORY_USE_RO
),
1544 TYPE_MODE (integer_type_node
));
1546 char_rtx
= const0_rtx
;
1547 char_mode
= insn_data
[(int) icode
].operand
[2].mode
;
1548 if (! (*insn_data
[(int) icode
].operand
[2].predicate
) (char_rtx
,
1550 char_rtx
= copy_to_mode_reg (char_mode
, char_rtx
);
1552 pat
= GEN_FCN (icode
) (result
, gen_rtx_MEM (BLKmode
, src_reg
),
1553 char_rtx
, GEN_INT (align
));
1558 /* Now that we are assured of success, expand the source. */
1560 pat
= memory_address (BLKmode
,
1561 expand_expr (src
, src_reg
, ptr_mode
, EXPAND_SUM
));
1563 emit_move_insn (src_reg
, pat
);
1564 pat
= gen_sequence ();
1568 emit_insn_after (pat
, before_strlen
);
1570 emit_insn_before (pat
, get_insns ());
1572 /* Return the value in the proper mode for this function. */
1573 if (GET_MODE (result
) == value_mode
)
1575 else if (target
!= 0)
1576 convert_move (target
, result
, 0);
1578 target
= convert_to_mode (value_mode
, result
, 0);
1584 /* Expand a call to the strstr builtin. Return 0 if we failed the
1585 caller should emit a normal call, otherwise try to get the result
1586 in TARGET, if convenient (and in mode MODE if that's convenient). */
1589 expand_builtin_strstr (arglist
, target
, mode
)
1592 enum machine_mode mode
;
1594 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
)
1595 || current_function_check_memory_usage
)
1599 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
1601 const char *p1
, *p2
;
1610 const char *r
= strstr (p1
, p2
);
1615 /* Return an offset into the constant string argument. */
1616 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
1617 s1
, ssize_int (r
- p1
))),
1618 target
, mode
, EXPAND_NORMAL
);
1622 return expand_expr (s1
, target
, mode
, EXPAND_NORMAL
);
1627 fn
= built_in_decls
[BUILT_IN_STRCHR
];
1631 /* New argument list transforming strstr(s1, s2) to
1632 strchr(s1, s2[0]). */
1634 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
1635 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
1636 return expand_expr (build_function_call_expr (fn
, arglist
),
1637 target
, mode
, EXPAND_NORMAL
);
1641 /* Expand a call to the strchr builtin. Return 0 if we failed the
1642 caller should emit a normal call, otherwise try to get the result
1643 in TARGET, if convenient (and in mode MODE if that's convenient). */
1646 expand_builtin_strchr (arglist
, target
, mode
)
1649 enum machine_mode mode
;
1651 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
)
1652 || current_function_check_memory_usage
)
1656 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
1659 if (TREE_CODE (s2
) != INTEGER_CST
)
1668 if (target_char_cast (s2
, &c
))
1676 /* Return an offset into the constant string argument. */
1677 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
1678 s1
, ssize_int (r
- p1
))),
1679 target
, mode
, EXPAND_NORMAL
);
1682 /* FIXME: Should use here strchrM optab so that ports can optimize
1688 /* Expand a call to the strrchr builtin. Return 0 if we failed the
1689 caller should emit a normal call, otherwise try to get the result
1690 in TARGET, if convenient (and in mode MODE if that's convenient). */
1693 expand_builtin_strrchr (arglist
, target
, mode
)
1696 enum machine_mode mode
;
1698 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
)
1699 || current_function_check_memory_usage
)
1703 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
1707 if (TREE_CODE (s2
) != INTEGER_CST
)
1716 if (target_char_cast (s2
, &c
))
1719 r
= strrchr (p1
, c
);
1724 /* Return an offset into the constant string argument. */
1725 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
1726 s1
, ssize_int (r
- p1
))),
1727 target
, mode
, EXPAND_NORMAL
);
1730 if (! integer_zerop (s2
))
1733 fn
= built_in_decls
[BUILT_IN_STRCHR
];
1737 /* Transform strrchr(s1, '\0') to strchr(s1, '\0'). */
1738 return expand_expr (build_function_call_expr (fn
, arglist
),
1739 target
, mode
, EXPAND_NORMAL
);
1743 /* Expand a call to the strpbrk builtin. Return 0 if we failed the
1744 caller should emit a normal call, otherwise try to get the result
1745 in TARGET, if convenient (and in mode MODE if that's convenient). */
1748 expand_builtin_strpbrk (arglist
, target
, mode
)
1751 enum machine_mode mode
;
1753 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
)
1754 || current_function_check_memory_usage
)
1758 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
1760 const char *p1
, *p2
;
1769 const char *r
= strpbrk (p1
, p2
);
1774 /* Return an offset into the constant string argument. */
1775 return expand_expr (fold (build (PLUS_EXPR
, TREE_TYPE (s1
),
1776 s1
, ssize_int (r
- p1
))),
1777 target
, mode
, EXPAND_NORMAL
);
1782 /* strpbrk(x, "") == NULL.
1783 Evaluate and ignore the arguments in case they had
1785 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
1790 return 0; /* Really call strpbrk. */
1792 fn
= built_in_decls
[BUILT_IN_STRCHR
];
1796 /* New argument list transforming strpbrk(s1, s2) to
1797 strchr(s1, s2[0]). */
1799 build_tree_list (NULL_TREE
, build_int_2 (p2
[0], 0));
1800 arglist
= tree_cons (NULL_TREE
, s1
, arglist
);
1801 return expand_expr (build_function_call_expr (fn
, arglist
),
1802 target
, mode
, EXPAND_NORMAL
);
1806 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
1807 bytes from constant string DATA + OFFSET and return it as target
1811 builtin_memcpy_read_str (data
, offset
, mode
)
1813 HOST_WIDE_INT offset
;
1814 enum machine_mode mode
;
1816 const char *str
= (const char *) data
;
1818 if (offset
+ GET_MODE_SIZE (mode
) > strlen (str
) + 1)
1819 abort (); /* Attempt to read past the end of constant string. */
1821 return c_readstr (str
+ offset
, mode
);
1824 /* Expand a call to the memcpy builtin, with arguments in ARGLIST. */
1826 expand_builtin_memcpy (arglist
)
1829 if (!validate_arglist (arglist
,
1830 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
1834 tree dest
= TREE_VALUE (arglist
);
1835 tree src
= TREE_VALUE (TREE_CHAIN (arglist
));
1836 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
1837 const char *src_str
;
1839 int src_align
= get_pointer_alignment (src
, BIGGEST_ALIGNMENT
);
1840 int dest_align
= get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
1841 rtx dest_mem
, src_mem
, dest_addr
, len_rtx
;
1843 /* If either SRC or DEST is not a pointer type, don't do
1844 this operation in-line. */
1845 if (src_align
== 0 || dest_align
== 0)
1848 dest_mem
= get_memory_rtx (dest
);
1849 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
1850 src_str
= c_getstr (src
);
1852 /* If SRC is a string constant and block move would be done
1853 by pieces, we can avoid loading the string from memory
1854 and only stored the computed constants. */
1856 && !current_function_check_memory_usage
1857 && GET_CODE (len_rtx
) == CONST_INT
1858 && (unsigned HOST_WIDE_INT
) INTVAL (len_rtx
) <= strlen (src_str
) + 1
1859 && can_store_by_pieces (INTVAL (len_rtx
), builtin_memcpy_read_str
,
1860 (PTR
) src_str
, dest_align
))
1862 store_by_pieces (dest_mem
, INTVAL (len_rtx
),
1863 builtin_memcpy_read_str
,
1864 (PTR
) src_str
, dest_align
);
1865 return force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
1868 src_mem
= get_memory_rtx (src
);
1870 /* Just copy the rights of SRC to the rights of DEST. */
1871 if (current_function_check_memory_usage
)
1872 emit_library_call (chkr_copy_bitmap_libfunc
, LCT_CONST_MAKE_BLOCK
,
1873 VOIDmode
, 3, XEXP (dest_mem
, 0), Pmode
,
1874 XEXP (src_mem
, 0), Pmode
,
1875 len_rtx
, TYPE_MODE (sizetype
));
1877 /* Copy word part most expediently. */
1879 = emit_block_move (dest_mem
, src_mem
, len_rtx
,
1880 MIN (src_align
, dest_align
));
1883 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
1889 /* Expand expression EXP, which is a call to the strcpy builtin. Return 0
1890 if we failed the caller should emit a normal call. */
1893 expand_builtin_strcpy (exp
)
1896 tree arglist
= TREE_OPERAND (exp
, 1);
1899 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
1903 tree len
= c_strlen (TREE_VALUE (TREE_CHAIN (arglist
)));
1908 len
= size_binop (PLUS_EXPR
, len
, ssize_int (1));
1909 chainon (arglist
, build_tree_list (NULL_TREE
, len
));
1912 result
= expand_builtin_memcpy (arglist
);
1915 TREE_CHAIN (TREE_CHAIN (arglist
)) = 0;
1919 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
1920 bytes from constant string DATA + OFFSET and return it as target
1924 builtin_strncpy_read_str (data
, offset
, mode
)
1926 HOST_WIDE_INT offset
;
1927 enum machine_mode mode
;
1929 const char *str
= (const char *) data
;
1931 if ((unsigned HOST_WIDE_INT
) offset
> strlen (str
))
1934 return c_readstr (str
+ offset
, mode
);
1937 /* Expand expression EXP, which is a call to the strncpy builtin. Return 0
1938 if we failed the caller should emit a normal call. */
1941 expand_builtin_strncpy (arglist
, target
, mode
)
1944 enum machine_mode mode
;
1946 if (!validate_arglist (arglist
,
1947 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
1951 tree slen
= c_strlen (TREE_VALUE (TREE_CHAIN (arglist
)));
1952 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
1954 /* We must be passed a constant len parameter. */
1955 if (TREE_CODE (len
) != INTEGER_CST
)
1958 /* If the len parameter is zero, return the dst parameter. */
1959 if (compare_tree_int (len
, 0) == 0)
1961 /* Evaluate and ignore the src argument in case it has
1963 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
1964 VOIDmode
, EXPAND_NORMAL
);
1965 /* Return the dst parameter. */
1966 return expand_expr (TREE_VALUE (arglist
), target
, mode
,
1970 /* Now, we must be passed a constant src ptr parameter. */
1971 if (slen
== 0 || TREE_CODE (slen
) != INTEGER_CST
)
1974 slen
= size_binop (PLUS_EXPR
, slen
, ssize_int (1));
1976 /* We're required to pad with trailing zeros if the requested
1977 len is greater than strlen(s2)+1. In that case try to
1978 use store_by_pieces, if it fails, punt. */
1979 if (tree_int_cst_lt (slen
, len
))
1981 tree dest
= TREE_VALUE (arglist
);
1982 int dest_align
= get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
1983 const char *p
= c_getstr (TREE_VALUE (TREE_CHAIN (arglist
)));
1986 if (!p
|| !dest_align
|| TREE_INT_CST_HIGH (len
)
1987 || !can_store_by_pieces (TREE_INT_CST_LOW (len
),
1988 builtin_strncpy_read_str
,
1989 (PTR
) p
, dest_align
))
1992 dest_mem
= get_memory_rtx (dest
);
1993 store_by_pieces (dest_mem
, TREE_INT_CST_LOW (len
),
1994 builtin_strncpy_read_str
,
1995 (PTR
) p
, dest_align
);
1996 return force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
1999 /* OK transform into builtin memcpy. */
2000 return expand_builtin_memcpy (arglist
);
2004 /* Callback routine for store_by_pieces. Read GET_MODE_BITSIZE (MODE)
2005 bytes from constant string DATA + OFFSET and return it as target
2009 builtin_memset_read_str (data
, offset
, mode
)
2011 HOST_WIDE_INT offset ATTRIBUTE_UNUSED
;
2012 enum machine_mode mode
;
2014 const char *c
= (const char *) data
;
2015 char *p
= alloca (GET_MODE_SIZE (mode
));
2017 memset (p
, *c
, GET_MODE_SIZE (mode
));
2019 return c_readstr (p
, mode
);
2022 /* Expand expression EXP, which is a call to the memset builtin. Return 0
2023 if we failed the caller should emit a normal call. */
2026 expand_builtin_memset (exp
)
2029 tree arglist
= TREE_OPERAND (exp
, 1);
2031 if (!validate_arglist (arglist
,
2032 POINTER_TYPE
, INTEGER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2036 tree dest
= TREE_VALUE (arglist
);
2037 tree val
= TREE_VALUE (TREE_CHAIN (arglist
));
2038 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2041 int dest_align
= get_pointer_alignment (dest
, BIGGEST_ALIGNMENT
);
2042 rtx dest_mem
, dest_addr
, len_rtx
;
2044 /* If DEST is not a pointer type, don't do this
2045 operation in-line. */
2046 if (dest_align
== 0)
2049 if (TREE_CODE (val
) != INTEGER_CST
)
2052 if (target_char_cast (val
, &c
))
2057 if (TREE_CODE (len
) != INTEGER_CST
|| TREE_INT_CST_HIGH (len
))
2059 if (current_function_check_memory_usage
2060 || !can_store_by_pieces (TREE_INT_CST_LOW (len
),
2061 builtin_memset_read_str
,
2062 (PTR
) &c
, dest_align
))
2065 dest_mem
= get_memory_rtx (dest
);
2066 store_by_pieces (dest_mem
, TREE_INT_CST_LOW (len
),
2067 builtin_memset_read_str
,
2068 (PTR
) &c
, dest_align
);
2069 return force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2072 len_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2074 dest_mem
= get_memory_rtx (dest
);
2076 /* Just check DST is writable and mark it as readable. */
2077 if (current_function_check_memory_usage
)
2078 emit_library_call (chkr_check_addr_libfunc
, LCT_CONST_MAKE_BLOCK
,
2079 VOIDmode
, 3, XEXP (dest_mem
, 0), Pmode
,
2080 len_rtx
, TYPE_MODE (sizetype
),
2081 GEN_INT (MEMORY_USE_WO
),
2082 TYPE_MODE (integer_type_node
));
2085 dest_addr
= clear_storage (dest_mem
, len_rtx
, dest_align
);
2088 dest_addr
= force_operand (XEXP (dest_mem
, 0), NULL_RTX
);
2094 /* Expand expression EXP, which is a call to the bzero builtin. Return 0
2095 if we failed the caller should emit a normal call. */
2097 expand_builtin_bzero (exp
)
2100 tree arglist
= TREE_OPERAND (exp
, 1);
2101 tree dest
, size
, newarglist
;
2104 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2107 dest
= TREE_VALUE (arglist
);
2108 size
= TREE_VALUE (TREE_CHAIN (arglist
));
2110 /* New argument list transforming bzero(ptr x, int y) to
2111 memset(ptr x, int 0, size_t y). */
2113 newarglist
= build_tree_list (NULL_TREE
, convert (sizetype
, size
));
2114 newarglist
= tree_cons (NULL_TREE
, integer_zero_node
, newarglist
);
2115 newarglist
= tree_cons (NULL_TREE
, dest
, newarglist
);
2117 TREE_OPERAND (exp
, 1) = newarglist
;
2118 result
= expand_builtin_memset(exp
);
2120 /* Always restore the original arguments. */
2121 TREE_OPERAND (exp
, 1) = arglist
;
2126 #ifdef HAVE_cmpstrsi
2127 /* Expand expression EXP, which is a call to the memcmp or the strcmp builtin.
2128 ARGLIST is the argument list for this call. Return 0 if we failed and the
2129 caller should emit a normal call, otherwise try to get the result in
2130 TARGET, if convenient. */
2132 expand_builtin_memcmp (exp
, arglist
, target
)
2137 /* If we need to check memory accesses, call the library function. */
2138 if (current_function_check_memory_usage
)
2141 if (!validate_arglist (arglist
,
2142 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2146 enum machine_mode mode
;
2147 tree arg1
= TREE_VALUE (arglist
);
2148 tree arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
2149 tree len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2150 rtx arg1_rtx
, arg2_rtx
, arg3_rtx
;
2155 = get_pointer_alignment (arg1
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
2157 = get_pointer_alignment (arg2
, BIGGEST_ALIGNMENT
) / BITS_PER_UNIT
;
2158 enum machine_mode insn_mode
2159 = insn_data
[(int) CODE_FOR_cmpstrsi
].operand
[0].mode
;
2161 /* If we don't have POINTER_TYPE, call the function. */
2162 if (arg1_align
== 0 || arg2_align
== 0)
2165 /* Make a place to write the result of the instruction. */
2168 && GET_CODE (result
) == REG
&& GET_MODE (result
) == insn_mode
2169 && REGNO (result
) >= FIRST_PSEUDO_REGISTER
))
2170 result
= gen_reg_rtx (insn_mode
);
2172 arg1_rtx
= get_memory_rtx (arg1
);
2173 arg2_rtx
= get_memory_rtx (arg2
);
2174 arg3_rtx
= expand_expr (len
, NULL_RTX
, VOIDmode
, 0);
2178 insn
= gen_cmpstrsi (result
, arg1_rtx
, arg2_rtx
, arg3_rtx
,
2179 GEN_INT (MIN (arg1_align
, arg2_align
)));
2184 emit_library_call_value (memcmp_libfunc
, result
, LCT_PURE_MAKE_BLOCK
,
2185 TYPE_MODE (integer_type_node
), 3,
2186 XEXP (arg1_rtx
, 0), Pmode
,
2187 XEXP (arg2_rtx
, 0), Pmode
,
2188 convert_to_mode (TYPE_MODE (sizetype
), arg3_rtx
,
2189 TREE_UNSIGNED (sizetype
)),
2190 TYPE_MODE (sizetype
));
2192 /* Return the value in the proper mode for this function. */
2193 mode
= TYPE_MODE (TREE_TYPE (exp
));
2194 if (GET_MODE (result
) == mode
)
2196 else if (target
!= 0)
2198 convert_move (target
, result
, 0);
2202 return convert_to_mode (mode
, result
, 0);
2207 /* Expand expression EXP, which is a call to the strcmp builtin. Return 0
2208 if we failed the caller should emit a normal call, otherwise try to get
2209 the result in TARGET, if convenient. */
2212 expand_builtin_strcmp (exp
, target
, mode
)
2215 enum machine_mode mode
;
2217 tree arglist
= TREE_OPERAND (exp
, 1);
2219 const char *p1
, *p2
;
2221 /* If we need to check memory accesses, call the library function. */
2222 if (current_function_check_memory_usage
)
2225 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2228 arg1
= TREE_VALUE (arglist
);
2229 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
2231 p1
= c_getstr (arg1
);
2232 p2
= c_getstr (arg2
);
2236 const int i
= strcmp (p1
, p2
);
2237 return (i
< 0 ? constm1_rtx
: (i
> 0 ? const1_rtx
: const0_rtx
));
2240 /* If either arg is "", return an expression corresponding to
2241 (*(const unsigned char*)arg1 - (const unsigned char*)arg2). */
2242 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
2244 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
2245 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
2247 fold (build1 (CONVERT_EXPR
, integer_type_node
,
2248 build1 (INDIRECT_REF
, cst_uchar_node
,
2249 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
2251 fold (build1 (CONVERT_EXPR
, integer_type_node
,
2252 build1 (INDIRECT_REF
, cst_uchar_node
,
2253 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
2254 tree result
= fold (build (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
2255 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
2258 #ifdef HAVE_cmpstrsi
2259 if (! HAVE_cmpstrsi
)
2263 tree len
= c_strlen (arg1
);
2264 tree len2
= c_strlen (arg2
);
2268 len
= size_binop (PLUS_EXPR
, ssize_int (1), len
);
2271 len2
= size_binop (PLUS_EXPR
, ssize_int (1), len2
);
2273 /* If we don't have a constant length for the first, use the length
2274 of the second, if we know it. We don't require a constant for
2275 this case; some cost analysis could be done if both are available
2276 but neither is constant. For now, assume they're equally cheap
2277 unless one has side effects.
2279 If both strings have constant lengths, use the smaller. This
2280 could arise if optimization results in strcpy being called with
2281 two fixed strings, or if the code was machine-generated. We should
2282 add some code to the `memcmp' handler below to deal with such
2283 situations, someday. */
2285 if (!len
|| TREE_CODE (len
) != INTEGER_CST
)
2287 if (len2
&& !TREE_SIDE_EFFECTS (len2
))
2292 else if (len2
&& TREE_CODE (len2
) == INTEGER_CST
2293 && tree_int_cst_lt (len2
, len
))
2296 /* If both arguments have side effects, we cannot optimize. */
2297 if (TREE_SIDE_EFFECTS (len
))
2300 chainon (arglist
, build_tree_list (NULL_TREE
, len
));
2301 result
= expand_builtin_memcmp (exp
, arglist
, target
);
2303 TREE_CHAIN (TREE_CHAIN (arglist
)) = 0;
2312 /* Expand expression EXP, which is a call to the strncmp builtin. Return 0
2313 if we failed the caller should emit a normal call, otherwise try to get
2314 the result in TARGET, if convenient. */
2316 expand_builtin_strncmp (exp
, target
, mode
)
2319 enum machine_mode mode
;
2321 tree arglist
= TREE_OPERAND (exp
, 1);
2322 tree arg1
, arg2
, arg3
;
2323 const char *p1
, *p2
;
2325 /* If we need to check memory accesses, call the library function. */
2326 if (current_function_check_memory_usage
)
2329 if (!validate_arglist (arglist
,
2330 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2333 arg1
= TREE_VALUE (arglist
);
2334 arg2
= TREE_VALUE (TREE_CHAIN (arglist
));
2335 arg3
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2337 /* If the len parameter is zero, return zero. */
2338 if (host_integerp (arg3
, 1) && tree_low_cst (arg3
, 1) == 0)
2340 /* Evaluate and ignore arg1 and arg2 in case they have
2342 expand_expr (arg1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2343 expand_expr (arg2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2347 p1
= c_getstr (arg1
);
2348 p2
= c_getstr (arg2
);
2350 /* If all arguments are constant, evaluate at compile-time. */
2351 if (host_integerp (arg3
, 1) && p1
&& p2
)
2353 const int r
= strncmp (p1
, p2
, tree_low_cst (arg3
, 1));
2354 return (r
< 0 ? constm1_rtx
: (r
> 0 ? const1_rtx
: const0_rtx
));
2357 /* If len == 1 or (either string parameter is "" and (len >= 1)),
2358 return (*(const u_char*)arg1 - *(const u_char*)arg2). */
2359 if (host_integerp (arg3
, 1)
2360 && (tree_low_cst (arg3
, 1) == 1
2361 || (tree_low_cst (arg3
, 1) > 1
2362 && ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0')))))
2364 tree cst_uchar_node
= build_type_variant (unsigned_char_type_node
, 1, 0);
2365 tree cst_uchar_ptr_node
= build_pointer_type (cst_uchar_node
);
2367 fold (build1 (CONVERT_EXPR
, integer_type_node
,
2368 build1 (INDIRECT_REF
, cst_uchar_node
,
2369 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg1
))));
2371 fold (build1 (CONVERT_EXPR
, integer_type_node
,
2372 build1 (INDIRECT_REF
, cst_uchar_node
,
2373 build1 (NOP_EXPR
, cst_uchar_ptr_node
, arg2
))));
2374 tree result
= fold (build (MINUS_EXPR
, integer_type_node
, ind1
, ind2
));
2375 return expand_expr (result
, target
, mode
, EXPAND_NORMAL
);
2378 #ifdef HAVE_cmpstrsi
2379 /* If c_strlen can determine an expression for one of the string
2380 lengths, and it doesn't have side effects, then call
2381 expand_builtin_memcmp() using length MIN(strlen(string)+1, arg3). */
2384 tree newarglist
, len
= 0;
2386 /* Perhaps one of the strings is really constant, if so prefer
2387 that constant length over the other string's length. */
2389 len
= c_strlen (arg1
);
2391 len
= c_strlen (arg2
);
2393 /* If we still don't have a len, try either string arg as long
2394 as they don't have side effects. */
2395 if (!len
&& !TREE_SIDE_EFFECTS (arg1
))
2396 len
= c_strlen (arg1
);
2397 if (!len
&& !TREE_SIDE_EFFECTS (arg2
))
2398 len
= c_strlen (arg2
);
2399 /* If we still don't have a length, punt. */
2403 /* Add one to the string length. */
2404 len
= fold (size_binop (PLUS_EXPR
, len
, ssize_int (1)));
2406 /* The actual new length parameter is MIN(len,arg3). */
2407 len
= fold (build (MIN_EXPR
, TREE_TYPE (len
), len
, arg3
));
2409 newarglist
= build_tree_list (NULL_TREE
, len
);
2410 newarglist
= tree_cons (NULL_TREE
, arg2
, newarglist
);
2411 newarglist
= tree_cons (NULL_TREE
, arg1
, newarglist
);
2412 return expand_builtin_memcmp (exp
, newarglist
, target
);
2419 /* Expand expression EXP, which is a call to the strcat builtin.
2420 Return 0 if we failed the caller should emit a normal call,
2421 otherwise try to get the result in TARGET, if convenient. */
2423 expand_builtin_strcat (arglist
, target
, mode
)
2426 enum machine_mode mode
;
2428 /* If we need to check memory accesses, call the library function. */
2429 if (current_function_check_memory_usage
)
2432 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2436 tree dst
= TREE_VALUE (arglist
),
2437 src
= TREE_VALUE (TREE_CHAIN (arglist
));
2438 const char *p
= c_getstr (src
);
2440 /* If the string length is zero, return the dst parameter. */
2441 if (p
&& *p
== '\0')
2442 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
2448 /* Expand expression EXP, which is a call to the strncat builtin.
2449 Return 0 if we failed the caller should emit a normal call,
2450 otherwise try to get the result in TARGET, if convenient. */
2452 expand_builtin_strncat (arglist
, target
, mode
)
2455 enum machine_mode mode
;
2457 /* If we need to check memory accesses, call the library function. */
2458 if (current_function_check_memory_usage
)
2461 if (!validate_arglist (arglist
,
2462 POINTER_TYPE
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
2466 tree dst
= TREE_VALUE (arglist
),
2467 src
= TREE_VALUE (TREE_CHAIN (arglist
)),
2468 len
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist
)));
2469 const char *p
= c_getstr (src
);
2471 /* If the requested length is zero, or the src parameter string
2472 length is zero, return the dst parameter. */
2473 if ((TREE_CODE (len
) == INTEGER_CST
&& compare_tree_int (len
, 0) == 0)
2474 || (p
&& *p
== '\0'))
2476 /* Evaluate and ignore the src and len parameters in case
2477 they have side-effects. */
2478 expand_expr (src
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2479 expand_expr (len
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2480 return expand_expr (dst
, target
, mode
, EXPAND_NORMAL
);
2483 /* If the requested len is greater than or equal to the string
2484 length, call strcat. */
2485 if (TREE_CODE (len
) == INTEGER_CST
&& p
2486 && compare_tree_int (len
, strlen (p
)) >= 0)
2489 tree_cons (NULL_TREE
, dst
, build_tree_list (NULL_TREE
, src
)),
2490 fn
= built_in_decls
[BUILT_IN_STRCAT
];
2492 /* If the replacement _DECL isn't initialized, don't do the
2497 return expand_expr (build_function_call_expr (fn
, newarglist
),
2498 target
, mode
, EXPAND_NORMAL
);
2504 /* Expand expression EXP, which is a call to the strspn builtin.
2505 Return 0 if we failed the caller should emit a normal call,
2506 otherwise try to get the result in TARGET, if convenient. */
2508 expand_builtin_strspn (arglist
, target
, mode
)
2511 enum machine_mode mode
;
2513 /* If we need to check memory accesses, call the library function. */
2514 if (current_function_check_memory_usage
)
2517 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2521 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2522 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
2524 /* If both arguments are constants, evaluate at compile-time. */
2527 const size_t r
= strspn (p1
, p2
);
2528 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
2531 /* If either argument is "", return 0. */
2532 if ((p1
&& *p1
== '\0') || (p2
&& *p2
== '\0'))
2534 /* Evaluate and ignore both arguments in case either one has
2536 expand_expr (s1
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2537 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2544 /* Expand expression EXP, which is a call to the strcspn builtin.
2545 Return 0 if we failed the caller should emit a normal call,
2546 otherwise try to get the result in TARGET, if convenient. */
2548 expand_builtin_strcspn (arglist
, target
, mode
)
2551 enum machine_mode mode
;
2553 /* If we need to check memory accesses, call the library function. */
2554 if (current_function_check_memory_usage
)
2557 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
))
2561 tree s1
= TREE_VALUE (arglist
), s2
= TREE_VALUE (TREE_CHAIN (arglist
));
2562 const char *p1
= c_getstr (s1
), *p2
= c_getstr (s2
);
2564 /* If both arguments are constants, evaluate at compile-time. */
2567 const size_t r
= strcspn (p1
, p2
);
2568 return expand_expr (size_int (r
), target
, mode
, EXPAND_NORMAL
);
2571 /* If the first argument is "", return 0. */
2572 if (p1
&& *p1
== '\0')
2574 /* Evaluate and ignore argument s2 in case it has
2576 expand_expr (s2
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2580 /* If the second argument is "", return __builtin_strlen(s1). */
2581 if (p2
&& *p2
== '\0')
2583 tree newarglist
= build_tree_list (NULL_TREE
, s1
),
2584 fn
= built_in_decls
[BUILT_IN_STRLEN
];
2586 /* If the replacement _DECL isn't initialized, don't do the
2591 return expand_expr (build_function_call_expr (fn
, newarglist
),
2592 target
, mode
, EXPAND_NORMAL
);
2598 /* Expand a call to __builtin_saveregs, generating the result in TARGET,
2599 if that's convenient. */
2602 expand_builtin_saveregs ()
2606 /* Don't do __builtin_saveregs more than once in a function.
2607 Save the result of the first call and reuse it. */
2608 if (saveregs_value
!= 0)
2609 return saveregs_value
;
2611 /* When this function is called, it means that registers must be
2612 saved on entry to this function. So we migrate the call to the
2613 first insn of this function. */
2617 #ifdef EXPAND_BUILTIN_SAVEREGS
2618 /* Do whatever the machine needs done in this case. */
2619 val
= EXPAND_BUILTIN_SAVEREGS ();
2621 /* ??? We used to try and build up a call to the out of line function,
2622 guessing about what registers needed saving etc. This became much
2623 harder with __builtin_va_start, since we don't have a tree for a
2624 call to __builtin_saveregs to fall back on. There was exactly one
2625 port (i860) that used this code, and I'm unconvinced it could actually
2626 handle the general case. So we no longer try to handle anything
2627 weird and make the backend absorb the evil. */
2629 error ("__builtin_saveregs not supported by this target");
2636 saveregs_value
= val
;
2638 /* Put the sequence after the NOTE that starts the function. If this
2639 is inside a SEQUENCE, make the outer-level insn chain current, so
2640 the code is placed at the start of the function. */
2641 push_topmost_sequence ();
2642 emit_insns_after (seq
, get_insns ());
2643 pop_topmost_sequence ();
2648 /* __builtin_args_info (N) returns word N of the arg space info
2649 for the current function. The number and meanings of words
2650 is controlled by the definition of CUMULATIVE_ARGS. */
2653 expand_builtin_args_info (exp
)
2656 tree arglist
= TREE_OPERAND (exp
, 1);
2657 int nwords
= sizeof (CUMULATIVE_ARGS
) / sizeof (int);
2658 int *word_ptr
= (int *) ¤t_function_args_info
;
2660 /* These are used by the code below that is if 0'ed away */
2662 tree type
, elts
, result
;
2665 if (sizeof (CUMULATIVE_ARGS
) % sizeof (int) != 0)
2670 tree arg
= TREE_VALUE (arglist
);
2671 if (TREE_CODE (arg
) != INTEGER_CST
)
2672 error ("argument of `__builtin_args_info' must be constant");
2675 int wordnum
= TREE_INT_CST_LOW (arg
);
2677 if (wordnum
< 0 || wordnum
>= nwords
|| TREE_INT_CST_HIGH (arg
))
2678 error ("argument of `__builtin_args_info' out of range");
2680 return GEN_INT (word_ptr
[wordnum
]);
2684 error ("missing argument in `__builtin_args_info'");
2689 for (i
= 0; i
< nwords
; i
++)
2690 elts
= tree_cons (NULL_TREE
, build_int_2 (word_ptr
[i
], 0));
2692 type
= build_array_type (integer_type_node
,
2693 build_index_type (build_int_2 (nwords
, 0)));
2694 result
= build (CONSTRUCTOR
, type
, NULL_TREE
, nreverse (elts
));
2695 TREE_CONSTANT (result
) = 1;
2696 TREE_STATIC (result
) = 1;
2697 result
= build1 (INDIRECT_REF
, build_pointer_type (type
), result
);
2698 TREE_CONSTANT (result
) = 1;
2699 return expand_expr (result
, NULL_RTX
, VOIDmode
, EXPAND_MEMORY_USE_BAD
);
2703 /* Expand ARGLIST, from a call to __builtin_next_arg. */
2705 expand_builtin_next_arg (arglist
)
2708 tree fntype
= TREE_TYPE (current_function_decl
);
2710 if ((TYPE_ARG_TYPES (fntype
) == 0
2711 || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype
)))
2713 && ! current_function_varargs
)
2715 error ("`va_start' used in function with fixed args");
2721 tree last_parm
= tree_last (DECL_ARGUMENTS (current_function_decl
));
2722 tree arg
= TREE_VALUE (arglist
);
2724 /* Strip off all nops for the sake of the comparison. This
2725 is not quite the same as STRIP_NOPS. It does more.
2726 We must also strip off INDIRECT_EXPR for C++ reference
2728 while (TREE_CODE (arg
) == NOP_EXPR
2729 || TREE_CODE (arg
) == CONVERT_EXPR
2730 || TREE_CODE (arg
) == NON_LVALUE_EXPR
2731 || TREE_CODE (arg
) == INDIRECT_REF
)
2732 arg
= TREE_OPERAND (arg
, 0);
2733 if (arg
!= last_parm
)
2734 warning ("second parameter of `va_start' not last named argument");
2736 else if (! current_function_varargs
)
2737 /* Evidently an out of date version of <stdarg.h>; can't validate
2738 va_start's second argument, but can still work as intended. */
2739 warning ("`__builtin_next_arg' called without an argument");
2741 return expand_binop (Pmode
, add_optab
,
2742 current_function_internal_arg_pointer
,
2743 current_function_arg_offset_rtx
,
2744 NULL_RTX
, 0, OPTAB_LIB_WIDEN
);
2747 /* Make it easier for the backends by protecting the valist argument
2748 from multiple evaluations. */
2751 stabilize_va_list (valist
, needs_lvalue
)
2755 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
2757 if (TREE_SIDE_EFFECTS (valist
))
2758 valist
= save_expr (valist
);
2760 /* For this case, the backends will be expecting a pointer to
2761 TREE_TYPE (va_list_type_node), but it's possible we've
2762 actually been given an array (an actual va_list_type_node).
2764 if (TREE_CODE (TREE_TYPE (valist
)) == ARRAY_TYPE
)
2766 tree p1
= build_pointer_type (TREE_TYPE (va_list_type_node
));
2767 tree p2
= build_pointer_type (va_list_type_node
);
2769 valist
= build1 (ADDR_EXPR
, p2
, valist
);
2770 valist
= fold (build1 (NOP_EXPR
, p1
, valist
));
2779 if (! TREE_SIDE_EFFECTS (valist
))
2782 pt
= build_pointer_type (va_list_type_node
);
2783 valist
= fold (build1 (ADDR_EXPR
, pt
, valist
));
2784 TREE_SIDE_EFFECTS (valist
) = 1;
2787 if (TREE_SIDE_EFFECTS (valist
))
2788 valist
= save_expr (valist
);
2789 valist
= fold (build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (valist
)),
2796 /* The "standard" implementation of va_start: just assign `nextarg' to
2799 std_expand_builtin_va_start (stdarg_p
, valist
, nextarg
)
2808 /* The dummy named parameter is declared as a 'word' sized
2809 object, but if a 'word' is smaller than an 'int', it would
2810 have been promoted to int when it was added to the arglist. */
2811 int align
= PARM_BOUNDARY
/ BITS_PER_UNIT
;
2812 int size
= MAX (UNITS_PER_WORD
,
2813 GET_MODE_SIZE (TYPE_MODE (integer_type_node
)));
2814 int offset
= ((size
+ align
- 1) / align
) * align
;
2815 nextarg
= plus_constant (nextarg
, -offset
);
2818 t
= build (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
2819 make_tree (ptr_type_node
, nextarg
));
2820 TREE_SIDE_EFFECTS (t
) = 1;
2822 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2825 /* Expand ARGLIST, which from a call to __builtin_stdarg_va_start or
2826 __builtin_varargs_va_start, depending on STDARG_P. */
2828 expand_builtin_va_start (stdarg_p
, arglist
)
2833 tree chain
= arglist
, valist
;
2836 nextarg
= expand_builtin_next_arg (chain
= TREE_CHAIN (arglist
));
2838 nextarg
= expand_builtin_next_arg (NULL_TREE
);
2840 if (TREE_CHAIN (chain
))
2841 error ("too many arguments to function `va_start'");
2843 valist
= stabilize_va_list (TREE_VALUE (arglist
), 1);
2845 #ifdef EXPAND_BUILTIN_VA_START
2846 EXPAND_BUILTIN_VA_START (stdarg_p
, valist
, nextarg
);
2848 std_expand_builtin_va_start (stdarg_p
, valist
, nextarg
);
2854 /* The "standard" implementation of va_arg: read the value from the
2855 current (padded) address and increment by the (padded) size. */
2858 std_expand_builtin_va_arg (valist
, type
)
2862 HOST_WIDE_INT align
;
2863 HOST_WIDE_INT rounded_size
;
2866 /* Compute the rounded size of the type. */
2867 align
= PARM_BOUNDARY
/ BITS_PER_UNIT
;
2868 rounded_size
= (((int_size_in_bytes (type
) + align
- 1) / align
) * align
);
2872 if (PAD_VARARGS_DOWN
)
2874 /* Small args are padded downward. */
2877 adj
= TREE_INT_CST_LOW (TYPE_SIZE (type
)) / BITS_PER_UNIT
;
2878 if (rounded_size
> align
)
2881 addr_tree
= build (PLUS_EXPR
, TREE_TYPE (addr_tree
), addr_tree
,
2882 build_int_2 (rounded_size
- adj
, 0));
2885 addr
= expand_expr (addr_tree
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
2886 addr
= copy_to_reg (addr
);
2888 /* Compute new value for AP. */
2889 t
= build (MODIFY_EXPR
, TREE_TYPE (valist
), valist
,
2890 build (PLUS_EXPR
, TREE_TYPE (valist
), valist
,
2891 build_int_2 (rounded_size
, 0)));
2892 TREE_SIDE_EFFECTS (t
) = 1;
2893 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
2898 /* Expand __builtin_va_arg, which is not really a builtin function, but
2899 a very special sort of operator. */
2902 expand_builtin_va_arg (valist
, type
)
2906 tree promoted_type
, want_va_type
, have_va_type
;
2908 /* Verify that valist is of the proper type. */
2910 want_va_type
= va_list_type_node
;
2911 have_va_type
= TREE_TYPE (valist
);
2912 if (TREE_CODE (want_va_type
) == ARRAY_TYPE
)
2914 /* If va_list is an array type, the argument may have decayed
2915 to a pointer type, e.g. by being passed to another function.
2916 In that case, unwrap both types so that we can compare the
2917 underlying records. */
2918 if (TREE_CODE (have_va_type
) == ARRAY_TYPE
2919 || TREE_CODE (have_va_type
) == POINTER_TYPE
)
2921 want_va_type
= TREE_TYPE (want_va_type
);
2922 have_va_type
= TREE_TYPE (have_va_type
);
2925 if (TYPE_MAIN_VARIANT (want_va_type
) != TYPE_MAIN_VARIANT (have_va_type
))
2927 error ("first argument to `va_arg' not of type `va_list'");
2931 /* Generate a diagnostic for requesting data of a type that cannot
2932 be passed through `...' due to type promotion at the call site. */
2933 else if ((promoted_type
= (*lang_type_promotes_to
) (type
)) != NULL_TREE
)
2935 const char *name
= "<anonymous type>", *pname
= 0;
2936 static int gave_help
;
2938 if (TYPE_NAME (type
))
2940 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
2941 name
= IDENTIFIER_POINTER (TYPE_NAME (type
));
2942 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
2943 && DECL_NAME (TYPE_NAME (type
)))
2944 name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
2946 if (TYPE_NAME (promoted_type
))
2948 if (TREE_CODE (TYPE_NAME (promoted_type
)) == IDENTIFIER_NODE
)
2949 pname
= IDENTIFIER_POINTER (TYPE_NAME (promoted_type
));
2950 else if (TREE_CODE (TYPE_NAME (promoted_type
)) == TYPE_DECL
2951 && DECL_NAME (TYPE_NAME (promoted_type
)))
2952 pname
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (promoted_type
)));
2955 error ("`%s' is promoted to `%s' when passed through `...'", name
, pname
);
2959 error ("(so you should pass `%s' not `%s' to `va_arg')", pname
, name
);
2966 /* Make it easier for the backends by protecting the valist argument
2967 from multiple evaluations. */
2968 valist
= stabilize_va_list (valist
, 0);
2970 #ifdef EXPAND_BUILTIN_VA_ARG
2971 addr
= EXPAND_BUILTIN_VA_ARG (valist
, type
);
2973 addr
= std_expand_builtin_va_arg (valist
, type
);
2977 result
= gen_rtx_MEM (TYPE_MODE (type
), addr
);
2978 MEM_ALIAS_SET (result
) = get_varargs_alias_set ();
2983 /* Expand ARGLIST, from a call to __builtin_va_end. */
2986 expand_builtin_va_end (arglist
)
2989 tree valist
= TREE_VALUE (arglist
);
2991 #ifdef EXPAND_BUILTIN_VA_END
2992 valist
= stabilize_va_list (valist
, 0);
2993 EXPAND_BUILTIN_VA_END(arglist
);
2995 /* Evaluate for side effects, if needed. I hate macros that don't
2997 if (TREE_SIDE_EFFECTS (valist
))
2998 expand_expr (valist
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3004 /* Expand ARGLIST, from a call to __builtin_va_copy. We do this as a
3005 builtin rather than just as an assignment in stdarg.h because of the
3006 nastiness of array-type va_list types. */
3009 expand_builtin_va_copy (arglist
)
3014 dst
= TREE_VALUE (arglist
);
3015 src
= TREE_VALUE (TREE_CHAIN (arglist
));
3017 dst
= stabilize_va_list (dst
, 1);
3018 src
= stabilize_va_list (src
, 0);
3020 if (TREE_CODE (va_list_type_node
) != ARRAY_TYPE
)
3022 t
= build (MODIFY_EXPR
, va_list_type_node
, dst
, src
);
3023 TREE_SIDE_EFFECTS (t
) = 1;
3024 expand_expr (t
, const0_rtx
, VOIDmode
, EXPAND_NORMAL
);
3028 rtx dstb
, srcb
, size
;
3030 /* Evaluate to pointers. */
3031 dstb
= expand_expr (dst
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
3032 srcb
= expand_expr (src
, NULL_RTX
, Pmode
, EXPAND_NORMAL
);
3033 size
= expand_expr (TYPE_SIZE_UNIT (va_list_type_node
), NULL_RTX
,
3034 VOIDmode
, EXPAND_NORMAL
);
3036 /* "Dereference" to BLKmode memories. */
3037 dstb
= gen_rtx_MEM (BLKmode
, dstb
);
3038 MEM_ALIAS_SET (dstb
) = get_alias_set (TREE_TYPE (TREE_TYPE (dst
)));
3039 srcb
= gen_rtx_MEM (BLKmode
, srcb
);
3040 MEM_ALIAS_SET (srcb
) = get_alias_set (TREE_TYPE (TREE_TYPE (src
)));
3043 emit_block_move (dstb
, srcb
, size
, TYPE_ALIGN (va_list_type_node
));
3049 /* Expand a call to one of the builtin functions __builtin_frame_address or
3050 __builtin_return_address. */
3052 expand_builtin_frame_address (exp
)
3055 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
3056 tree arglist
= TREE_OPERAND (exp
, 1);
3058 /* The argument must be a nonnegative integer constant.
3059 It counts the number of frames to scan up the stack.
3060 The value is the return address saved in that frame. */
3062 /* Warning about missing arg was already issued. */
3064 else if (TREE_CODE (TREE_VALUE (arglist
)) != INTEGER_CST
3065 || tree_int_cst_sgn (TREE_VALUE (arglist
)) < 0)
3067 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
3068 error ("invalid arg to `__builtin_frame_address'");
3070 error ("invalid arg to `__builtin_return_address'");
3075 rtx tem
= expand_builtin_return_addr (DECL_FUNCTION_CODE (fndecl
),
3076 TREE_INT_CST_LOW (TREE_VALUE (arglist
)),
3077 hard_frame_pointer_rtx
);
3079 /* Some ports cannot access arbitrary stack frames. */
3082 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
3083 warning ("unsupported arg to `__builtin_frame_address'");
3085 warning ("unsupported arg to `__builtin_return_address'");
3089 /* For __builtin_frame_address, return what we've got. */
3090 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_FRAME_ADDRESS
)
3093 if (GET_CODE (tem
) != REG
3094 && ! CONSTANT_P (tem
))
3095 tem
= copy_to_mode_reg (Pmode
, tem
);
3100 /* Expand a call to the alloca builtin, with arguments ARGLIST. Return 0 if
3101 we failed and the caller should emit a normal call, otherwise try to get
3102 the result in TARGET, if convenient. */
3105 expand_builtin_alloca (arglist
, target
)
3112 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
3115 /* Compute the argument. */
3116 op0
= expand_expr (TREE_VALUE (arglist
), NULL_RTX
, VOIDmode
, 0);
3118 /* Allocate the desired space. */
3119 result
= allocate_dynamic_stack_space (op0
, target
, BITS_PER_UNIT
);
3121 #ifdef POINTERS_EXTEND_UNSIGNED
3122 result
= convert_memory_address (ptr_mode
, result
);
3128 /* Expand a call to the ffs builtin. The arguments are in ARGLIST.
3129 Return 0 if a normal call should be emitted rather than expanding the
3130 function in-line. If convenient, the result should be placed in TARGET.
3131 SUBTARGET may be used as the target for computing one of EXP's operands. */
3134 expand_builtin_ffs (arglist
, target
, subtarget
)
3136 rtx target
, subtarget
;
3139 if (!validate_arglist (arglist
, INTEGER_TYPE
, VOID_TYPE
))
3142 /* Compute the argument. */
3143 op0
= expand_expr (TREE_VALUE (arglist
), subtarget
, VOIDmode
, 0);
3144 /* Compute ffs, into TARGET if possible.
3145 Set TARGET to wherever the result comes back. */
3146 target
= expand_unop (TYPE_MODE (TREE_TYPE (TREE_VALUE (arglist
))),
3147 ffs_optab
, op0
, target
, 1);
3153 /* If the string passed to fputs is a constant and is one character
3154 long, we attempt to transform this call into __builtin_fputc(). */
3157 expand_builtin_fputs (arglist
, ignore
)
3161 tree len
, fn
, fn_fputc
= built_in_decls
[BUILT_IN_FPUTC
],
3162 fn_fwrite
= built_in_decls
[BUILT_IN_FWRITE
];
3164 /* If the return value is used, or the replacement _DECL isn't
3165 initialized, don't do the transformation. */
3166 if (!ignore
|| !fn_fputc
|| !fn_fwrite
)
3169 /* Verify the arguments in the original call. */
3170 if (!validate_arglist (arglist
, POINTER_TYPE
, POINTER_TYPE
, VOID_TYPE
)
3171 || current_function_check_memory_usage
)
3174 /* Get the length of the string passed to fputs. If the length
3175 can't be determined, punt. */
3176 if (!(len
= c_strlen (TREE_VALUE (arglist
)))
3177 || TREE_CODE (len
) != INTEGER_CST
)
3180 switch (compare_tree_int (len
, 1))
3182 case -1: /* length is 0, delete the call entirely . */
3184 /* Evaluate and ignore the argument in case it has
3186 expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)), const0_rtx
,
3187 VOIDmode
, EXPAND_NORMAL
);
3190 case 0: /* length is 1, call fputc. */
3192 const char *p
= c_getstr (TREE_VALUE (arglist
));
3196 /* New argument list transforming fputs(string, stream) to
3197 fputc(string[0], stream). */
3199 build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
3201 tree_cons (NULL_TREE
, build_int_2 (p
[0], 0), arglist
);
3207 case 1: /* length is greater than 1, call fwrite. */
3209 tree string_arg
= TREE_VALUE (arglist
);
3211 /* New argument list transforming fputs(string, stream) to
3212 fwrite(string, 1, len, stream). */
3213 arglist
= build_tree_list (NULL_TREE
, TREE_VALUE (TREE_CHAIN (arglist
)));
3214 arglist
= tree_cons (NULL_TREE
, len
, arglist
);
3215 arglist
= tree_cons (NULL_TREE
, size_one_node
, arglist
);
3216 arglist
= tree_cons (NULL_TREE
, string_arg
, arglist
);
3224 return expand_expr (build_function_call_expr (fn
, arglist
),
3225 (ignore
? const0_rtx
: NULL_RTX
),
3226 VOIDmode
, EXPAND_NORMAL
);
3229 /* Expand a call to __builtin_expect. We return our argument and
3230 emit a NOTE_INSN_EXPECTED_VALUE note. */
3233 expand_builtin_expect (arglist
, target
)
3240 if (arglist
== NULL_TREE
3241 || TREE_CHAIN (arglist
) == NULL_TREE
)
3243 exp
= TREE_VALUE (arglist
);
3244 c
= TREE_VALUE (TREE_CHAIN (arglist
));
3246 if (TREE_CODE (c
) != INTEGER_CST
)
3248 error ("second arg to `__builtin_expect' must be a constant");
3249 c
= integer_zero_node
;
3252 target
= expand_expr (exp
, target
, VOIDmode
, EXPAND_NORMAL
);
3254 /* Don't bother with expected value notes for integral constants. */
3255 if (GET_CODE (target
) != CONST_INT
)
3257 /* We do need to force this into a register so that we can be
3258 moderately sure to be able to correctly interpret the branch
3260 target
= force_reg (GET_MODE (target
), target
);
3262 rtx_c
= expand_expr (c
, NULL_RTX
, GET_MODE (target
), EXPAND_NORMAL
);
3264 note
= emit_note (NULL
, NOTE_INSN_EXPECTED_VALUE
);
3265 NOTE_EXPECTED_VALUE (note
) = gen_rtx_EQ (VOIDmode
, target
, rtx_c
);
3271 /* Expand an expression EXP that calls a built-in function,
3272 with result going to TARGET if that's convenient
3273 (and in mode MODE if that's convenient).
3274 SUBTARGET may be used as the target for computing one of EXP's operands.
3275 IGNORE is nonzero if the value is to be ignored. */
3278 expand_builtin (exp
, target
, subtarget
, mode
, ignore
)
3282 enum machine_mode mode
;
3285 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
3286 tree arglist
= TREE_OPERAND (exp
, 1);
3287 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
3289 #ifdef MD_EXPAND_BUILTIN
3290 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
3291 return MD_EXPAND_BUILTIN (exp
, target
, subtarget
, mode
, ignore
);
3294 /* When not optimizing, generate calls to library functions for a certain
3296 if (! optimize
&& ! CALLED_AS_BUILT_IN (fndecl
)
3297 && (fcode
== BUILT_IN_SIN
|| fcode
== BUILT_IN_COS
3298 || fcode
== BUILT_IN_FSQRT
|| fcode
== BUILT_IN_MEMSET
3299 || fcode
== BUILT_IN_MEMCPY
|| fcode
== BUILT_IN_MEMCMP
3300 || fcode
== BUILT_IN_BCMP
|| fcode
== BUILT_IN_BZERO
3301 || fcode
== BUILT_IN_INDEX
|| fcode
== BUILT_IN_RINDEX
3302 || fcode
== BUILT_IN_STRCHR
|| fcode
== BUILT_IN_STRRCHR
3303 || fcode
== BUILT_IN_STRLEN
|| fcode
== BUILT_IN_STRCPY
3304 || fcode
== BUILT_IN_STRNCPY
|| fcode
== BUILT_IN_STRNCMP
3305 || fcode
== BUILT_IN_STRSTR
|| fcode
== BUILT_IN_STRPBRK
3306 || fcode
== BUILT_IN_STRCAT
|| fcode
== BUILT_IN_STRNCAT
3307 || fcode
== BUILT_IN_STRSPN
|| fcode
== BUILT_IN_STRCSPN
3308 || fcode
== BUILT_IN_STRCMP
|| fcode
== BUILT_IN_FFS
3309 || fcode
== BUILT_IN_PUTCHAR
|| fcode
== BUILT_IN_PUTS
3310 || fcode
== BUILT_IN_PRINTF
|| fcode
== BUILT_IN_FPUTC
3311 || fcode
== BUILT_IN_FPUTS
|| fcode
== BUILT_IN_FWRITE
))
3312 return expand_call (exp
, target
, ignore
);
3318 /* build_function_call changes these into ABS_EXPR. */
3322 case BUILT_IN_CREAL
:
3323 case BUILT_IN_CIMAG
:
3324 /* expand_tree_builtin changes these into CONJ_EXPR, REALPART_EXPR
3325 and IMAGPART_EXPR. */
3330 /* Treat these like sqrt only if unsafe math optimizations are allowed,
3331 because of possible accuracy problems. */
3332 if (! flag_unsafe_math_optimizations
)
3334 case BUILT_IN_FSQRT
:
3335 target
= expand_builtin_mathfn (exp
, target
, subtarget
);
3343 case BUILT_IN_APPLY_ARGS
:
3344 return expand_builtin_apply_args ();
3346 /* __builtin_apply (FUNCTION, ARGUMENTS, ARGSIZE) invokes
3347 FUNCTION with a copy of the parameters described by
3348 ARGUMENTS, and ARGSIZE. It returns a block of memory
3349 allocated on the stack into which is stored all the registers
3350 that might possibly be used for returning the result of a
3351 function. ARGUMENTS is the value returned by
3352 __builtin_apply_args. ARGSIZE is the number of bytes of
3353 arguments that must be copied. ??? How should this value be
3354 computed? We'll also need a safe worst case value for varargs
3356 case BUILT_IN_APPLY
:
3357 if (!validate_arglist (arglist
, POINTER_TYPE
,
3358 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
)
3359 && !validate_arglist (arglist
, REFERENCE_TYPE
,
3360 POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3368 for (t
= arglist
, i
= 0; t
; t
= TREE_CHAIN (t
), i
++)
3369 ops
[i
] = expand_expr (TREE_VALUE (t
), NULL_RTX
, VOIDmode
, 0);
3371 return expand_builtin_apply (ops
[0], ops
[1], ops
[2]);
3374 /* __builtin_return (RESULT) causes the function to return the
3375 value described by RESULT. RESULT is address of the block of
3376 memory returned by __builtin_apply. */
3377 case BUILT_IN_RETURN
:
3378 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
3379 expand_builtin_return (expand_expr (TREE_VALUE (arglist
),
3380 NULL_RTX
, VOIDmode
, 0));
3383 case BUILT_IN_SAVEREGS
:
3384 return expand_builtin_saveregs ();
3386 case BUILT_IN_ARGS_INFO
:
3387 return expand_builtin_args_info (exp
);
3389 /* Return the address of the first anonymous stack arg. */
3390 case BUILT_IN_NEXT_ARG
:
3391 return expand_builtin_next_arg (arglist
);
3393 case BUILT_IN_CLASSIFY_TYPE
:
3394 return expand_builtin_classify_type (arglist
);
3396 case BUILT_IN_CONSTANT_P
:
3397 return expand_builtin_constant_p (exp
);
3399 case BUILT_IN_FRAME_ADDRESS
:
3400 case BUILT_IN_RETURN_ADDRESS
:
3401 return expand_builtin_frame_address (exp
);
3403 /* Returns the address of the area where the structure is returned.
3405 case BUILT_IN_AGGREGATE_INCOMING_ADDRESS
:
3407 || ! AGGREGATE_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl
)))
3408 || GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl
))) != MEM
)
3411 return XEXP (DECL_RTL (DECL_RESULT (current_function_decl
)), 0);
3413 case BUILT_IN_ALLOCA
:
3414 target
= expand_builtin_alloca (arglist
, target
);
3420 target
= expand_builtin_ffs (arglist
, target
, subtarget
);
3425 case BUILT_IN_STRLEN
:
3426 target
= expand_builtin_strlen (exp
, target
);
3431 case BUILT_IN_STRCPY
:
3432 target
= expand_builtin_strcpy (exp
);
3437 case BUILT_IN_STRNCPY
:
3438 target
= expand_builtin_strncpy (arglist
, target
, mode
);
3443 case BUILT_IN_STRCAT
:
3444 target
= expand_builtin_strcat (arglist
, target
, mode
);
3449 case BUILT_IN_STRNCAT
:
3450 target
= expand_builtin_strncat (arglist
, target
, mode
);
3455 case BUILT_IN_STRSPN
:
3456 target
= expand_builtin_strspn (arglist
, target
, mode
);
3461 case BUILT_IN_STRCSPN
:
3462 target
= expand_builtin_strcspn (arglist
, target
, mode
);
3467 case BUILT_IN_STRSTR
:
3468 target
= expand_builtin_strstr (arglist
, target
, mode
);
3473 case BUILT_IN_STRPBRK
:
3474 target
= expand_builtin_strpbrk (arglist
, target
, mode
);
3479 case BUILT_IN_INDEX
:
3480 case BUILT_IN_STRCHR
:
3481 target
= expand_builtin_strchr (arglist
, target
, mode
);
3486 case BUILT_IN_RINDEX
:
3487 case BUILT_IN_STRRCHR
:
3488 target
= expand_builtin_strrchr (arglist
, target
, mode
);
3493 case BUILT_IN_MEMCPY
:
3494 target
= expand_builtin_memcpy (arglist
);
3499 case BUILT_IN_MEMSET
:
3500 target
= expand_builtin_memset (exp
);
3505 case BUILT_IN_BZERO
:
3506 target
= expand_builtin_bzero (exp
);
3511 case BUILT_IN_STRCMP
:
3512 target
= expand_builtin_strcmp (exp
, target
, mode
);
3517 case BUILT_IN_STRNCMP
:
3518 target
= expand_builtin_strncmp (exp
, target
, mode
);
3523 /* These comparison functions need an instruction that returns an actual
3524 index. An ordinary compare that just sets the condition codes
3526 #ifdef HAVE_cmpstrsi
3528 case BUILT_IN_MEMCMP
:
3529 target
= expand_builtin_memcmp (exp
, arglist
, target
);
3535 case BUILT_IN_MEMCMP
:
3539 case BUILT_IN_SETJMP
:
3540 target
= expand_builtin_setjmp (arglist
, target
);
3545 /* __builtin_longjmp is passed a pointer to an array of five words.
3546 It's similar to the C library longjmp function but works with
3547 __builtin_setjmp above. */
3548 case BUILT_IN_LONGJMP
:
3549 if (!validate_arglist (arglist
, POINTER_TYPE
, INTEGER_TYPE
, VOID_TYPE
))
3553 rtx buf_addr
= expand_expr (TREE_VALUE (arglist
), subtarget
,
3555 rtx value
= expand_expr (TREE_VALUE (TREE_CHAIN (arglist
)),
3556 NULL_RTX
, VOIDmode
, 0);
3558 if (value
!= const1_rtx
)
3560 error ("__builtin_longjmp second argument must be 1");
3564 expand_builtin_longjmp (buf_addr
, value
);
3571 emit_insn (gen_trap ());
3574 error ("__builtin_trap not supported by this target");
3578 case BUILT_IN_PUTCHAR
:
3580 case BUILT_IN_FPUTC
:
3581 case BUILT_IN_FWRITE
:
3583 case BUILT_IN_FPUTS
:
3584 target
= expand_builtin_fputs (arglist
, ignore
);
3589 /* Various hooks for the DWARF 2 __throw routine. */
3590 case BUILT_IN_UNWIND_INIT
:
3591 expand_builtin_unwind_init ();
3593 case BUILT_IN_DWARF_CFA
:
3594 return virtual_cfa_rtx
;
3595 #ifdef DWARF2_UNWIND_INFO
3596 case BUILT_IN_DWARF_FP_REGNUM
:
3597 return expand_builtin_dwarf_fp_regnum ();
3598 case BUILT_IN_INIT_DWARF_REG_SIZES
:
3599 expand_builtin_init_dwarf_reg_sizes (TREE_VALUE (arglist
));
3602 case BUILT_IN_FROB_RETURN_ADDR
:
3603 return expand_builtin_frob_return_addr (TREE_VALUE (arglist
));
3604 case BUILT_IN_EXTRACT_RETURN_ADDR
:
3605 return expand_builtin_extract_return_addr (TREE_VALUE (arglist
));
3606 case BUILT_IN_EH_RETURN
:
3607 expand_builtin_eh_return (TREE_VALUE (arglist
),
3608 TREE_VALUE (TREE_CHAIN (arglist
)));
3610 #ifdef EH_RETURN_DATA_REGNO
3611 case BUILT_IN_EH_RETURN_DATA_REGNO
:
3612 return expand_builtin_eh_return_data_regno (arglist
);
3614 case BUILT_IN_VARARGS_START
:
3615 return expand_builtin_va_start (0, arglist
);
3616 case BUILT_IN_STDARG_START
:
3617 return expand_builtin_va_start (1, arglist
);
3618 case BUILT_IN_VA_END
:
3619 return expand_builtin_va_end (arglist
);
3620 case BUILT_IN_VA_COPY
:
3621 return expand_builtin_va_copy (arglist
);
3622 case BUILT_IN_EXPECT
:
3623 return expand_builtin_expect (arglist
, target
);
3625 default: /* just do library call, if unknown builtin */
3626 error ("built-in function `%s' not currently supported",
3627 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
3630 /* The switch statement above can drop through to cause the function
3631 to be called normally. */
3632 return expand_call (exp
, target
, ignore
);
3635 /* Fold a call to __builtin_constant_p, if we know it will evaluate to a
3636 constant. ARGLIST is the argument list of the call. */
3639 fold_builtin_constant_p (arglist
)
3645 arglist
= TREE_VALUE (arglist
);
3647 /* We return 1 for a numeric type that's known to be a constant
3648 value at compile-time or for an aggregate type that's a
3649 literal constant. */
3650 STRIP_NOPS (arglist
);
3652 /* If we know this is a constant, emit the constant of one. */
3653 if (TREE_CODE_CLASS (TREE_CODE (arglist
)) == 'c'
3654 || (TREE_CODE (arglist
) == CONSTRUCTOR
3655 && TREE_CONSTANT (arglist
))
3656 || (TREE_CODE (arglist
) == ADDR_EXPR
3657 && TREE_CODE (TREE_OPERAND (arglist
, 0)) == STRING_CST
))
3658 return integer_one_node
;
3660 /* If we aren't going to be running CSE or this expression
3661 has side effects, show we don't know it to be a constant.
3662 Likewise if it's a pointer or aggregate type since in those
3663 case we only want literals, since those are only optimized
3664 when generating RTL, not later. */
3665 if (TREE_SIDE_EFFECTS (arglist
) || cse_not_expected
3666 || AGGREGATE_TYPE_P (TREE_TYPE (arglist
))
3667 || POINTER_TYPE_P (TREE_TYPE (arglist
)))
3668 return integer_zero_node
;
3673 /* Used by constant folding to eliminate some builtin calls early. EXP is
3674 the CALL_EXPR of a call to a builtin function. */
3680 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
3681 tree arglist
= TREE_OPERAND (exp
, 1);
3682 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
3684 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
3689 case BUILT_IN_CONSTANT_P
:
3690 return fold_builtin_constant_p (arglist
);
3692 case BUILT_IN_STRLEN
:
3693 if (validate_arglist (arglist
, POINTER_TYPE
, VOID_TYPE
))
3695 tree len
= c_strlen (TREE_VALUE (arglist
));
3709 build_function_call_expr (fn
, arglist
)
3714 call_expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (fn
)), fn
);
3715 call_expr
= build (CALL_EXPR
, TREE_TYPE (TREE_TYPE (fn
)),
3716 call_expr
, arglist
);
3717 TREE_SIDE_EFFECTS (call_expr
) = 1;
3718 return fold (call_expr
);
3721 /* This function validates the types of a function call argument list
3722 represented as a tree chain of parameters against a specified list
3723 of tree_codes. If the last specifier is a 0, that represents an
3724 ellipses, otherwise the last specifier must be a VOID_TYPE. */
3726 validate_arglist
VPARAMS ((tree arglist
, ...))
3728 #ifndef ANSI_PROTOTYPES
3731 enum tree_code code
;
3734 VA_START (ap
, arglist
);
3736 #ifndef ANSI_PROTOTYPES
3737 arglist
= va_arg (ap
, tree
);
3741 code
= va_arg (ap
, enum tree_code
);
3745 /* This signifies an ellipses, any further arguments are all ok. */
3749 /* This signifies an endlink, if no arguments remain, return
3750 true, otherwise return false. */
3752 return arglist
== 0;
3754 /* If no parameters remain or the parameter's code does not
3755 match the specified code, return false. Otherwise continue
3756 checking any remaining arguments. */
3757 if (arglist
== 0 || code
!= TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))))
3764 arglist
= TREE_CHAIN (arglist
);