1/* This file contains the definitions for the gimple IR structure
2   enumeration used in GCC.
3
4   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
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
24   DEFGSSTRUCT(GSS_enumeration value, printable name).
25   Each enum value should correspond with a single member of the union
26   gimple_statement_d.  */
27
28DEFGSSTRUCT(GSS_BASE, "base")
29DEFGSSTRUCT(GSS_WITH_OPS, "with_ops")
30DEFGSSTRUCT(GSS_WITH_MEM_OPS, "with_mem_ops")
31DEFGSSTRUCT(GSS_OMP, "omp")
32DEFGSSTRUCT(GSS_BIND, "bind")
33DEFGSSTRUCT(GSS_CATCH, "catch")
34DEFGSSTRUCT(GSS_EH_FILTER, "eh_filter")
35DEFGSSTRUCT(GSS_PHI, "phi")
36DEFGSSTRUCT(GSS_RESX, "resx")
37DEFGSSTRUCT(GSS_TRY, "try")
38DEFGSSTRUCT(GSS_WCE, "with_cleanup_expression")
39DEFGSSTRUCT(GSS_ASM, "asm")
40DEFGSSTRUCT(GSS_OMP_CRITICAL, "omp_critical")
41DEFGSSTRUCT(GSS_OMP_FOR, "omp_for")
42DEFGSSTRUCT(GSS_OMP_PARALLEL, "omp_parallel")
43DEFGSSTRUCT(GSS_OMP_TASK, "omp_task")
44DEFGSSTRUCT(GSS_OMP_SECTIONS, "sections")
45DEFGSSTRUCT(GSS_OMP_SINGLE, "single")
46DEFGSSTRUCT(GSS_OMP_CONTINUE, "omp_continue")
47DEFGSSTRUCT(GSS_OMP_ATOMIC_LOAD, "omp_atomic_load")
48DEFGSSTRUCT(GSS_OMP_ATOMIC_STORE, "omp_atomic_store")
49