annotate gcc/cilkplus.def @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* This file contains the definitions and documentation for the
kono
parents:
diff changeset
2 CilkPlus builtins used in the GNU compiler.
kono
parents:
diff changeset
3 Copyright (C) 2013-2017 Free Software Foundation, Inc.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 This file is part of GCC.
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
8 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
9 Software Foundation; either version 3, or (at your option) any later
kono
parents:
diff changeset
10 version.
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
kono
parents:
diff changeset
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
15 for more details.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 /* Before including this file, you should define a macro:
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 DEF_CILKPLUS_BUILTIN (ENUM, NAME, TYPE, ATTRS)
kono
parents:
diff changeset
24
kono
parents:
diff changeset
25 See builtins.def for details. */
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_ADD,
kono
parents:
diff changeset
28 "__sec_reduce_add", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
29 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MUL,
kono
parents:
diff changeset
30 "__sec_reduce_mul", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
31 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO,
kono
parents:
diff changeset
32 "__sec_reduce_all_zero", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
33 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO,
kono
parents:
diff changeset
34 "__sec_reduce_any_zero", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
35 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MAX,
kono
parents:
diff changeset
36 "__sec_reduce_max", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
37 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MIN,
kono
parents:
diff changeset
38 "__sec_reduce_min", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
39 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND,
kono
parents:
diff changeset
40 "__sec_reduce_min_ind", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
41 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND,
kono
parents:
diff changeset
42 "__sec_reduce_max_ind", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
43 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO,
kono
parents:
diff changeset
44 "__sec_reduce_any_nonzero", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
45 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO,
kono
parents:
diff changeset
46 "__sec_reduce_all_nonzero", BT_FN_INT_PTR, ATTR_NULL)
kono
parents:
diff changeset
47 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE,
kono
parents:
diff changeset
48 "__sec_reduce", BT_FN_INT_PTR_PTR_PTR, ATTR_NULL)
kono
parents:
diff changeset
49 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING,
kono
parents:
diff changeset
50 "__sec_reduce_mutating", BT_FN_INT_PTR_PTR_PTR, ATTR_NULL)
kono
parents:
diff changeset
51 // FIXME: This probably needs to be rewritten as a keyword.
kono
parents:
diff changeset
52 DEF_CILKPLUS_BUILTIN (BUILT_IN_CILKPLUS_SEC_IMPLICIT_INDEX,
kono
parents:
diff changeset
53 "__sec_implicit_index", BT_FN_INT_INT, ATTR_NULL)
kono
parents:
diff changeset
54
kono
parents:
diff changeset
55 /*
kono
parents:
diff changeset
56 Local variables:
kono
parents:
diff changeset
57 mode:c
kono
parents:
diff changeset
58 End:
kono
parents:
diff changeset
59 */