xref: /dflybsd-src/contrib/gcc-4.7/gcc/mode-classes.def (revision 04febcfb30580676d3e95f58a16c5137ee478b32)
1*e4b17023SJohn Marino/* Machine mode class definitions for GCC.
2*e4b17023SJohn Marino   Copyright (C) 2003, 2007
3*e4b17023SJohn Marino   Free Software Foundation, Inc.
4*e4b17023SJohn Marino
5*e4b17023SJohn MarinoThis file is part of GCC.
6*e4b17023SJohn Marino
7*e4b17023SJohn MarinoGCC is free software; you can redistribute it and/or modify it under
8*e4b17023SJohn Marinothe terms of the GNU General Public License as published by the Free
9*e4b17023SJohn MarinoSoftware Foundation; either version 3, or (at your option) any later
10*e4b17023SJohn Marinoversion.
11*e4b17023SJohn Marino
12*e4b17023SJohn MarinoGCC is distributed in the hope that it will be useful, but WITHOUT ANY
13*e4b17023SJohn MarinoWARRANTY; without even the implied warranty of MERCHANTABILITY or
14*e4b17023SJohn MarinoFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15*e4b17023SJohn Marinofor more details.
16*e4b17023SJohn Marino
17*e4b17023SJohn MarinoYou should have received a copy of the GNU General Public License
18*e4b17023SJohn Marinoalong with GCC; see the file COPYING3.  If not see
19*e4b17023SJohn Marino<http://www.gnu.org/licenses/>.  */
20*e4b17023SJohn Marino
21*e4b17023SJohn Marino#define MODE_CLASSES							   \
22*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_RANDOM),		/* other */			   \
23*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_CC),		/* condition code in a register */ \
24*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_INT),		/* integer */			   \
25*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_PARTIAL_INT),	/* integer with padding bits */    \
26*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_FRACT),		/* signed fractional number */	   \
27*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_UFRACT),		/* unsigned fractional number */   \
28*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_ACCUM),		/* signed accumulator */	   \
29*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_UACCUM),		/* unsigned accumulator */	   \
30*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_FLOAT),		/* floating point */		   \
31*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_DECIMAL_FLOAT),	/* decimal floating point */	   \
32*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_COMPLEX_INT), 	/* complex numbers */		   \
33*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_COMPLEX_FLOAT),					   \
34*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_INT),	/* SIMD vectors */		   \
35*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_FRACT),	/* SIMD vectors */		   \
36*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_UFRACT),	/* SIMD vectors */		   \
37*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_ACCUM),	/* SIMD vectors */		   \
38*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_UACCUM),	/* SIMD vectors */		   \
39*e4b17023SJohn Marino  DEF_MODE_CLASS (MODE_VECTOR_FLOAT)
40