]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/builtins.h
Update copyright years.
[thirdparty/gcc.git] / gcc / builtins.h
CommitLineData
fa19795e 1/* Expand builtin functions.
aeee4812 2 Copyright (C) 1988-2023 Free Software Foundation, Inc.
fa19795e
RS
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_BUILTINS_H
21#define GCC_BUILTINS_H
22
9b2b7279
AM
23#include <mpc.h>
24
fa19795e
RS
25/* Target-dependent globals. */
26struct 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. */
b660eccf 32 fixed_size_mode_pod x_apply_args_mode[FIRST_PSEUDO_REGISTER];
fa19795e
RS
33
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. */
b660eccf 39 fixed_size_mode_pod x_apply_result_mode[FIRST_PSEUDO_REGISTER];
fa19795e
RS
40};
41
1942d1a9 42extern struct target_builtins default_target_builtins;
fa19795e
RS
43#if SWITCHABLE_TARGET
44extern struct target_builtins *this_target_builtins;
45#else
46#define this_target_builtins (&default_target_builtins)
47#endif
48
9b2b7279
AM
49/* Non-zero if __builtin_constant_p should be folded right away. */
50extern bool force_folding_builtin_constant_p;
51
4cfe7a6c 52extern bool called_as_built_in (tree);
9b2b7279
AM
53extern bool get_object_alignment_1 (tree, unsigned int *,
54 unsigned HOST_WIDE_INT *);
c5288df7
RS
55extern bool get_object_alignment_2 (tree, unsigned int *,
56 unsigned HOST_WIDE_INT *, bool);
9b2b7279
AM
57extern unsigned int get_object_alignment (tree);
58extern bool get_pointer_alignment_1 (tree, unsigned int *,
59 unsigned HOST_WIDE_INT *);
60extern unsigned int get_pointer_alignment (tree);
bfb9bd47 61extern unsigned string_length (const void*, unsigned, unsigned);
b71bbbe2 62
7d583f42
JL
63struct c_strlen_data
64{
b71bbbe2
MS
65 /* [MINLEN, MAXBOUND, MAXLEN] is a range describing the length of
66 one or more strings of possibly unknown length. For a single
67 string of known length the range is a constant where
68 MINLEN == MAXBOUND == MAXLEN holds.
69 For other strings, MINLEN is the length of the shortest known
70 string. MAXBOUND is the length of a string that could be stored
71 in the largest array referenced by the expression. MAXLEN is
72 the length of the longest sequence of non-zero bytes
73 in an object referenced by the expression. For such strings,
74 MINLEN <= MAXBOUND <= MAXLEN holds. For example, given:
75 struct A { char a[7], b[]; };
76 extern struct A *p;
77 n = strlen (p->a);
78 the computed range will be [0, 6, ALL_ONES].
79 However, for a conditional expression involving a string
80 of known length and an array of unknown bound such as
81 n = strlen (i ? p->b : "123");
82 the range will be [3, 3, ALL_ONES].
83 MINLEN != 0 && MAXLEN == ALL_ONES indicates that MINLEN is
84 the length of the shortest known string and implies that
85 the shortest possible string referenced by the expression may
86 actually be the empty string. This distinction is useful for
87 diagnostics. get_range_strlen() return value distinguishes
88 between these two cases.
89 As the tighter (and more optimistic) bound, MAXBOUND is suitable
90 for diagnostics but not for optimization.
91 As the more conservative bound, MAXLEN is intended to be used
92 for optimization. */
93 tree minlen;
94 tree maxlen;
95 tree maxbound;
b5338fb3 96 /* When non-null, DECL refers to the declaration known to store
b71bbbe2
MS
97 an unterminated constant character array, as in:
98 const char s[] = { 'a', 'b', 'c' };
99 It is used to diagnose uses of such arrays in functions such as
100 strlen() that expect a nul-terminated string as an argument. */
7d583f42 101 tree decl;
b71bbbe2
MS
102 /* Non-constant offset from the beginning of a string not accounted
103 for in the length range. Used to improve diagnostics. */
7d583f42
JL
104 tree off;
105};
106
107extern tree c_strlen (tree, int, c_strlen_data * = NULL, unsigned = 1);
3140b2ed 108extern rtx c_readstr (const char *, scalar_int_mode, bool = true);
9b2b7279
AM
109extern void expand_builtin_setjmp_setup (rtx, rtx);
110extern void expand_builtin_setjmp_receiver (rtx);
d33606c3 111extern void expand_builtin_update_setjmp_buf (rtx);
9b2b7279 112extern tree mathfn_built_in (tree, enum built_in_function fn);
b03ff92e 113extern tree mathfn_built_in (tree, combined_fn);
a500588a 114extern tree mathfn_built_in_type (combined_fn);
985b3a68 115extern rtx builtin_strncpy_read_str (void *, void *, HOST_WIDE_INT,
e5e164ef 116 fixed_size_mode);
985b3a68 117extern rtx builtin_memset_read_str (void *, void *, HOST_WIDE_INT,
e5e164ef 118 fixed_size_mode);
a25e0b5e 119extern rtx expand_builtin_memset (tree, rtx, machine_mode);
9b2b7279
AM
120extern rtx expand_builtin_saveregs (void);
121extern tree std_build_builtin_va_list (void);
122extern tree std_fn_abi_va_list (tree);
123extern tree std_canonical_va_list_type (tree);
124extern void std_expand_builtin_va_start (tree, rtx);
125extern void expand_builtin_trap (void);
adedd5c1 126extern void expand_ifn_atomic_bit_test_and (gcall *);
849a76a5 127extern void expand_ifn_atomic_compare_exchange (gcall *);
6362627b 128extern void expand_ifn_atomic_op_fetch_cmp_0 (gcall *);
ef4bddc2 129extern rtx expand_builtin (tree, rtx, rtx, machine_mode, int);
9b2b7279 130extern enum built_in_function builtin_mathfn_code (const_tree);
1e9168b2 131extern tree fold_builtin_expect (location_t, tree, tree, tree, tree);
9b2b7279
AM
132extern bool avoid_folding_inline_builtin (tree);
133extern tree fold_call_expr (location_t, tree, bool);
134extern tree fold_builtin_call_array (location_t, tree, tree, int, tree *);
538dd0b7 135extern bool validate_gimple_arglist (const gcall *, ...);
ef4bddc2 136extern rtx default_expand_builtin (tree, rtx, rtx, machine_mode, int);
c05ece92 137extern void maybe_emit_call_builtin___clear_cache (rtx, rtx);
9b2b7279 138extern bool fold_builtin_next_arg (tree, bool);
9b2b7279 139extern tree do_mpc_arg2 (tree, tree, tree, int, int (*)(mpc_ptr, mpc_srcptr, mpc_srcptr, mpc_rnd_t));
538dd0b7 140extern tree fold_call_stmt (gcall *, bool);
9b2b7279
AM
141extern void set_builtin_user_assembler_name (tree decl, const char *asmspec);
142extern bool is_simple_builtin (tree);
143extern bool is_inexpensive_builtin (tree);
fef5a0d9 144extern bool readonly_data_expr (tree exp);
fef5a0d9 145extern bool init_target_chars (void);
ad03a744 146extern unsigned HOST_WIDE_INT target_newline;
fef5a0d9
RB
147extern unsigned HOST_WIDE_INT target_percent;
148extern char target_percent_s[3];
edd7ae68 149extern char target_percent_c[3];
ad03a744 150extern char target_percent_s_newline[4];
488c6247 151extern bool target_char_cst_p (tree t, char *p);
6f966f06 152extern rtx get_memory_rtx (tree exp, tree len);
fef5a0d9 153
30213ae9 154extern internal_fn associated_internal_fn (combined_fn, tree);
686ee971
RS
155extern internal_fn associated_internal_fn (tree);
156extern internal_fn replacement_internal_fn (gcall *);
157
5747e0c0 158extern bool builtin_with_linkage_p (tree);
54aa6b58 159
cc8bea0a 160#endif /* GCC_BUILTINS_H */