11debfc3dSmrg/* Machine mode class definitions for GCC. 2*8feb0f0bSmrg Copyright (C) 2003-2020 Free Software Foundation, Inc. 31debfc3dSmrg 41debfc3dSmrgThis file is part of GCC. 51debfc3dSmrg 61debfc3dSmrgGCC is free software; you can redistribute it and/or modify it under 71debfc3dSmrgthe terms of the GNU General Public License as published by the Free 81debfc3dSmrgSoftware Foundation; either version 3, or (at your option) any later 91debfc3dSmrgversion. 101debfc3dSmrg 111debfc3dSmrgGCC is distributed in the hope that it will be useful, but WITHOUT ANY 121debfc3dSmrgWARRANTY; without even the implied warranty of MERCHANTABILITY or 131debfc3dSmrgFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 141debfc3dSmrgfor more details. 151debfc3dSmrg 161debfc3dSmrgYou should have received a copy of the GNU General Public License 171debfc3dSmrgalong with GCC; see the file COPYING3. If not see 181debfc3dSmrg<http://www.gnu.org/licenses/>. */ 191debfc3dSmrg 201debfc3dSmrg#define MODE_CLASSES \ 211debfc3dSmrg DEF_MODE_CLASS (MODE_RANDOM), /* other */ \ 221debfc3dSmrg DEF_MODE_CLASS (MODE_CC), /* condition code in a register */ \ 231debfc3dSmrg DEF_MODE_CLASS (MODE_INT), /* integer */ \ 241debfc3dSmrg DEF_MODE_CLASS (MODE_PARTIAL_INT), /* integer with padding bits */ \ 251debfc3dSmrg DEF_MODE_CLASS (MODE_FRACT), /* signed fractional number */ \ 261debfc3dSmrg DEF_MODE_CLASS (MODE_UFRACT), /* unsigned fractional number */ \ 271debfc3dSmrg DEF_MODE_CLASS (MODE_ACCUM), /* signed accumulator */ \ 281debfc3dSmrg DEF_MODE_CLASS (MODE_UACCUM), /* unsigned accumulator */ \ 291debfc3dSmrg DEF_MODE_CLASS (MODE_FLOAT), /* floating point */ \ 301debfc3dSmrg DEF_MODE_CLASS (MODE_DECIMAL_FLOAT), /* decimal floating point */ \ 311debfc3dSmrg DEF_MODE_CLASS (MODE_COMPLEX_INT), /* complex numbers */ \ 321debfc3dSmrg DEF_MODE_CLASS (MODE_COMPLEX_FLOAT), \ 33a2dc1f3fSmrg DEF_MODE_CLASS (MODE_VECTOR_BOOL), /* vectors of single bits */ \ 341debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_INT), /* SIMD vectors */ \ 351debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_FRACT), /* SIMD vectors */ \ 361debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_UFRACT), /* SIMD vectors */ \ 371debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_ACCUM), /* SIMD vectors */ \ 381debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_UACCUM), /* SIMD vectors */ \ 391debfc3dSmrg DEF_MODE_CLASS (MODE_VECTOR_FLOAT) 40