* include/bits/cpp_type_traits.h: Fix typos. Adjust formatting.
[official-gcc.git] / gcc / machmode.h
blobe565cb70d21b90271737c80cf02b150657d0fee5
1 /* Machine mode definitions for GNU C-Compiler; included by rtl.h and tree.h.
2 Copyright (C) 1991, 1993, 1994, 1996, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #ifndef HAVE_MACHINE_MODES
23 #define HAVE_MACHINE_MODES
25 /* Make an enum class that gives all the machine modes. */
27 #define DEF_MACHMODE(SYM, NAME, TYPE, BITSIZE, SIZE, UNIT, WIDER) SYM,
29 enum machine_mode {
30 #include "machmode.def"
31 MAX_MACHINE_MODE };
33 #undef DEF_MACHMODE
35 #ifndef NUM_MACHINE_MODES
36 #define NUM_MACHINE_MODES (int) MAX_MACHINE_MODE
37 #endif
39 /* Get the name of mode MODE as a string. */
41 extern const char * const mode_name[];
42 #define GET_MODE_NAME(MODE) (mode_name[(int) (MODE)])
44 enum mode_class { MODE_RANDOM, MODE_INT, MODE_FLOAT, MODE_PARTIAL_INT, MODE_CC,
45 MODE_COMPLEX_INT, MODE_COMPLEX_FLOAT,
46 MODE_VECTOR_INT, MODE_VECTOR_FLOAT,
47 MAX_MODE_CLASS};
49 /* Get the general kind of object that mode MODE represents
50 (integer, floating, complex, etc.) */
52 extern const enum mode_class mode_class[];
53 #define GET_MODE_CLASS(MODE) (mode_class[(int) (MODE)])
55 /* Nonzero if MODE is an integral mode. */
56 #define INTEGRAL_MODE_P(MODE) \
57 (GET_MODE_CLASS (MODE) == MODE_INT \
58 || GET_MODE_CLASS (MODE) == MODE_PARTIAL_INT \
59 || GET_MODE_CLASS (MODE) == MODE_COMPLEX_INT \
60 || GET_MODE_CLASS (MODE) == MODE_VECTOR_INT)
62 /* Nonzero if MODE is a floating-point mode. */
63 #define FLOAT_MODE_P(MODE) \
64 (GET_MODE_CLASS (MODE) == MODE_FLOAT \
65 || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT \
66 || GET_MODE_CLASS (MODE) == MODE_VECTOR_FLOAT)
68 /* Nonzero if MODE is a complex mode. */
69 #define COMPLEX_MODE_P(MODE) \
70 (GET_MODE_CLASS (MODE) == MODE_COMPLEX_INT \
71 || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)
73 /* Nonzero if MODE is a vector mode. */
74 #define VECTOR_MODE_P(MODE) \
75 (GET_MODE_CLASS (MODE) == MODE_VECTOR_INT \
76 || GET_MODE_CLASS (MODE) == MODE_VECTOR_FLOAT)
78 /* Get the size in bytes of an object of mode MODE. */
80 extern const unsigned int mode_size[];
81 #define GET_MODE_SIZE(MODE) (mode_size[(int) (MODE)])
83 /* Get the size in bytes of the basic parts of an object of mode MODE. */
85 extern const unsigned int mode_unit_size[];
86 #define GET_MODE_UNIT_SIZE(MODE) (mode_unit_size[(int) (MODE)])
88 /* Get the number of units in the object. */
90 #define GET_MODE_NUNITS(MODE) \
91 ((GET_MODE_UNIT_SIZE ((MODE)) == 0) ? 0 \
92 : (GET_MODE_SIZE ((MODE)) / GET_MODE_UNIT_SIZE ((MODE))))
94 /* Get the size in bits of an object of mode MODE. */
96 extern const unsigned int mode_bitsize[];
97 #define GET_MODE_BITSIZE(MODE) (mode_bitsize[(int) (MODE)])
99 #ifdef HOST_WIDE_INT
101 /* Get a bitmask containing 1 for all bits in a word
102 that fit within mode MODE. */
104 extern const unsigned HOST_WIDE_INT mode_mask_array[];
106 #define GET_MODE_MASK(MODE) mode_mask_array[(int) (MODE)]
108 #endif /* HOST_WIDE_INT */
110 /* Get the next wider natural mode (eg, QI -> HI -> SI -> DI -> TI). */
112 extern const unsigned char mode_wider_mode[];
113 #define GET_MODE_WIDER_MODE(MODE) ((enum machine_mode)mode_wider_mode[(int) (MODE)])
115 /* Return the mode for data of a given size SIZE and mode class CLASS.
116 If LIMIT is nonzero, then don't use modes bigger than MAX_FIXED_MODE_SIZE.
117 The value is BLKmode if no other mode is found. */
119 extern enum machine_mode mode_for_size PARAMS ((unsigned int,
120 enum mode_class, int));
122 /* Similar, but find the smallest mode for a given width. */
124 extern enum machine_mode smallest_mode_for_size
125 PARAMS ((unsigned int, enum mode_class));
128 /* Return an integer mode of the exact same size as the input mode,
129 or BLKmode on failure. */
131 extern enum machine_mode int_mode_for_mode PARAMS ((enum machine_mode));
133 /* Find the best mode to use to access a bit field. */
135 extern enum machine_mode get_best_mode PARAMS ((int, int, unsigned int,
136 enum machine_mode, int));
138 /* Determine alignment, 1<=result<=BIGGEST_ALIGNMENT. */
140 extern unsigned get_mode_alignment PARAMS ((enum machine_mode));
142 #define GET_MODE_ALIGNMENT(MODE) get_mode_alignment (MODE)
144 /* For each class, get the narrowest mode in that class. */
146 extern const enum machine_mode class_narrowest_mode[];
147 #define GET_CLASS_NARROWEST_MODE(CLASS) class_narrowest_mode[(int) (CLASS)]
149 /* Define the integer modes whose sizes are BITS_PER_UNIT and BITS_PER_WORD
150 and the mode whose class is Pmode and whose size is POINTER_SIZE. */
152 extern enum machine_mode byte_mode;
153 extern enum machine_mode word_mode;
154 extern enum machine_mode ptr_mode;
156 #endif /* not HAVE_MACHINE_MODES */