1 /* Expand builtin functions.
2 Copyright (C) 1988-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_BUILTINS_H
21 #define GCC_BUILTINS_H
25 /* Target-dependent globals. */
26 struct target_builtins
{
27 /* For each register that may be used for calling a function, this
28 gives a mode used to copy the register's value. VOIDmode indicates
29 the register is not used for calling a function. If the machine
30 has register windows, this gives only the outbound registers.
31 INCOMING_REGNO gives the corresponding inbound register. */
32 enum machine_mode x_apply_args_mode
[FIRST_PSEUDO_REGISTER
];
34 /* For each register that may be used for returning values, this gives
35 a mode used to copy the register's value. VOIDmode indicates the
36 register is not used for returning values. If the machine has
37 register windows, this gives only the outbound registers.
38 INCOMING_REGNO gives the corresponding inbound register. */
39 enum machine_mode x_apply_result_mode
[FIRST_PSEUDO_REGISTER
];
42 extern struct target_builtins default_target_builtins
;
44 extern struct target_builtins
*this_target_builtins
;
46 #define this_target_builtins (&default_target_builtins)
49 /* Non-zero if __builtin_constant_p should be folded right away. */
50 extern bool force_folding_builtin_constant_p
;
52 extern bool is_builtin_fn (tree
);
53 extern bool get_object_alignment_1 (tree
, unsigned int *,
54 unsigned HOST_WIDE_INT
*);
55 extern unsigned int get_object_alignment (tree
);
56 extern bool get_pointer_alignment_1 (tree
, unsigned int *,
57 unsigned HOST_WIDE_INT
*);
58 extern unsigned int get_pointer_alignment (tree
);
59 extern tree
c_strlen (tree
, int);
60 extern void expand_builtin_setjmp_setup (rtx
, rtx
);
61 extern void expand_builtin_setjmp_receiver (rtx
);
62 extern tree
mathfn_built_in (tree
, enum built_in_function fn
);
63 extern rtx
builtin_strncpy_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
64 extern rtx
builtin_memset_read_str (void *, HOST_WIDE_INT
, enum machine_mode
);
65 extern rtx
expand_builtin_saveregs (void);
66 extern tree
std_build_builtin_va_list (void);
67 extern tree
std_fn_abi_va_list (tree
);
68 extern tree
std_canonical_va_list_type (tree
);
69 extern void std_expand_builtin_va_start (tree
, rtx
);
70 extern void expand_builtin_trap (void);
71 extern rtx
expand_builtin (tree
, rtx
, rtx
, enum machine_mode
, int);
72 extern enum built_in_function
builtin_mathfn_code (const_tree
);
73 extern tree
fold_builtin_expect (location_t
, tree
, tree
, tree
);
74 extern tree
fold_fma (location_t
, tree
, tree
, tree
, tree
);
75 extern bool avoid_folding_inline_builtin (tree
);
76 extern tree
fold_call_expr (location_t
, tree
, bool);
77 extern tree
fold_builtin_call_array (location_t
, tree
, tree
, int, tree
*);
78 extern bool validate_gimple_arglist (const_gimple
, ...);
79 extern rtx
default_expand_builtin (tree
, rtx
, rtx
, enum machine_mode
, int);
80 extern bool fold_builtin_next_arg (tree
, bool);
81 extern tree
do_mpc_arg2 (tree
, tree
, tree
, int, int (*)(mpc_ptr
, mpc_srcptr
, mpc_srcptr
, mpc_rnd_t
));
82 extern tree
fold_call_stmt (gimple
, bool);
83 extern void set_builtin_user_assembler_name (tree decl
, const char *asmspec
);
84 extern bool is_simple_builtin (tree
);
85 extern bool is_inexpensive_builtin (tree
);
87 extern bool readonly_data_expr (tree exp
);
88 extern const char *c_getstr (tree
);
89 extern bool init_target_chars (void);
90 extern unsigned HOST_WIDE_INT target_percent
;
91 extern char target_percent_s
[3];