annotate gcc/calls.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Declarations and data types for RTL call insn generation.
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 Copyright (C) 2013-2018 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 This file is part of GCC.
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
7 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
8 Software Foundation; either version 3, or (at your option) any later
kono
parents:
diff changeset
9 version.
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
kono
parents:
diff changeset
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
14 for more details.
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 #ifndef GCC_CALLS_H
kono
parents:
diff changeset
21 #define GCC_CALLS_H
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 extern int flags_from_decl_or_type (const_tree);
kono
parents:
diff changeset
24 extern int call_expr_flags (const_tree);
kono
parents:
diff changeset
25 extern int setjmp_call_p (const_tree);
kono
parents:
diff changeset
26 extern bool gimple_maybe_alloca_call_p (const gimple *);
kono
parents:
diff changeset
27 extern bool gimple_alloca_call_p (const gimple *);
kono
parents:
diff changeset
28 extern bool alloca_call_p (const_tree);
kono
parents:
diff changeset
29 extern bool must_pass_in_stack_var_size (machine_mode, const_tree);
kono
parents:
diff changeset
30 extern bool must_pass_in_stack_var_size_or_pad (machine_mode, const_tree);
kono
parents:
diff changeset
31 extern rtx prepare_call_address (tree, rtx, rtx, rtx *, int, int);
kono
parents:
diff changeset
32 extern bool shift_return_value (machine_mode, bool, rtx);
kono
parents:
diff changeset
33 extern rtx expand_call (tree, rtx, int);
kono
parents:
diff changeset
34 extern void fixup_tail_calls (void);
kono
parents:
diff changeset
35
kono
parents:
diff changeset
36 extern bool pass_by_reference (CUMULATIVE_ARGS *, machine_mode,
kono
parents:
diff changeset
37 tree, bool);
kono
parents:
diff changeset
38 extern bool reference_callee_copied (CUMULATIVE_ARGS *, machine_mode,
kono
parents:
diff changeset
39 tree, bool);
kono
parents:
diff changeset
40 extern void maybe_warn_alloc_args_overflow (tree, tree, tree[2], int[2]);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
41 extern tree get_attr_nonstring_decl (tree, tree * = NULL);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
42 extern void maybe_warn_nonstring_arg (tree, tree);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
43 extern bool get_size_range (tree, tree[2], bool = false);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
44 extern rtx rtx_for_static_chain (const_tree, bool);
111
kono
parents:
diff changeset
45
kono
parents:
diff changeset
46 #endif // GCC_CALLS_H