]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gsstruct.def
PR target/42811 (prerequisite)
[thirdparty/gcc.git] / gcc / gsstruct.def
CommitLineData
726a989a
RB
1/* This file contains the definitions for the gimple IR structure
2 enumeration used in GCC.
3
66647d44 4 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
726a989a
RB
5 Contributed by Aldy Hernandez <aldyh@redhat.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23/* The format of this file is
f2c4a81c 24 DEFGSSTRUCT(GSS enumeration value, structure name, has-tree-operands).
726a989a
RB
25 Each enum value should correspond with a single member of the union
26 gimple_statement_d. */
27
f2c4a81c
RH
28DEFGSSTRUCT(GSS_BASE, gimple_statement_base, false)
29DEFGSSTRUCT(GSS_WITH_OPS, gimple_statement_with_ops, true)
bb4efb4d 30DEFGSSTRUCT(GSS_WITH_MEM_OPS_BASE, gimple_statement_with_memory_ops_base, false)
f2c4a81c
RH
31DEFGSSTRUCT(GSS_WITH_MEM_OPS, gimple_statement_with_memory_ops, true)
32DEFGSSTRUCT(GSS_ASM, gimple_statement_asm, true)
33DEFGSSTRUCT(GSS_BIND, gimple_statement_bind, false)
34DEFGSSTRUCT(GSS_PHI, gimple_statement_phi, false)
35DEFGSSTRUCT(GSS_TRY, gimple_statement_try, false)
36DEFGSSTRUCT(GSS_CATCH, gimple_statement_catch, false)
37DEFGSSTRUCT(GSS_EH_FILTER, gimple_statement_eh_filter, false)
1d65f45c
RH
38DEFGSSTRUCT(GSS_EH_MNT, gimple_statement_eh_mnt, false)
39DEFGSSTRUCT(GSS_EH_CTRL, gimple_statement_eh_ctrl, false)
f2c4a81c
RH
40DEFGSSTRUCT(GSS_WCE, gimple_statement_wce, false)
41DEFGSSTRUCT(GSS_OMP, gimple_statement_omp, false)
42DEFGSSTRUCT(GSS_OMP_CRITICAL, gimple_statement_omp_critical, false)
43DEFGSSTRUCT(GSS_OMP_FOR, gimple_statement_omp_for, false)
44DEFGSSTRUCT(GSS_OMP_PARALLEL, gimple_statement_omp_parallel, false)
45DEFGSSTRUCT(GSS_OMP_TASK, gimple_statement_omp_task, false)
46DEFGSSTRUCT(GSS_OMP_SECTIONS, gimple_statement_omp_sections, false)
47DEFGSSTRUCT(GSS_OMP_SINGLE, gimple_statement_omp_single, false)
48DEFGSSTRUCT(GSS_OMP_CONTINUE, gimple_statement_omp_continue, false)
49DEFGSSTRUCT(GSS_OMP_ATOMIC_LOAD, gimple_statement_omp_atomic_load, false)
50DEFGSSTRUCT(GSS_OMP_ATOMIC_STORE, gimple_statement_omp_atomic_store, false)