1132718Skan/* Machine mode class definitions for GCC.
2132718Skan   Copyright (C) 2003
3132718Skan   Free Software Foundation, Inc.
4132718Skan
5132718SkanThis file is part of GCC.
6132718Skan
7132718SkanGCC is free software; you can redistribute it and/or modify it under
8132718Skanthe terms of the GNU General Public License as published by the Free
9132718SkanSoftware Foundation; either version 2, or (at your option) any later
10132718Skanversion.
11132718Skan
12132718SkanGCC is distributed in the hope that it will be useful, but WITHOUT ANY
13132718SkanWARRANTY; without even the implied warranty of MERCHANTABILITY or
14132718SkanFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15132718Skanfor more details.
16132718Skan
17132718SkanYou should have received a copy of the GNU General Public License
18132718Skanalong with GCC; see the file COPYING.  If not, write to the Free
19169689SkanSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20169689Skan02110-1301, USA.  */
21132718Skan
22132718Skan#define MODE_CLASSES							   \
23132718Skan  DEF_MODE_CLASS (MODE_RANDOM),		/* other */			   \
24132718Skan  DEF_MODE_CLASS (MODE_CC),		/* condition code in a register */ \
25132718Skan  DEF_MODE_CLASS (MODE_INT),		/* integer */			   \
26132718Skan  DEF_MODE_CLASS (MODE_PARTIAL_INT),	/* integer with padding bits */	   \
27132718Skan  DEF_MODE_CLASS (MODE_FLOAT),		/* floating point */		   \
28169689Skan  DEF_MODE_CLASS (MODE_DECIMAL_FLOAT),	/* decimal floating point */	   \
29132718Skan  DEF_MODE_CLASS (MODE_COMPLEX_INT), 	/* complex numbers */		   \
30132718Skan  DEF_MODE_CLASS (MODE_COMPLEX_FLOAT),					   \
31132718Skan  DEF_MODE_CLASS (MODE_VECTOR_INT),	/* SIMD vectors */		   \
32132718Skan  DEF_MODE_CLASS (MODE_VECTOR_FLOAT)
33