123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* Sets (bit vectors) of hard registers, and operations on them.
- Copyright (C) 1987 Free Software Foundation, Inc.
- This file is part of GNU CC
- GNU CC is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY. No author or distributor
- accepts responsibility to anyone for the consequences of using it
- or for whether it serves any particular purpose or works at all,
- unless he says so in writing. Refer to the GNU CC General Public
- License for full details.
- Everyone is granted permission to copy, modify and redistribute
- GNU CC, but only under the conditions described in the
- GNU CC General Public License. A copy of this license is
- supposed to have been given to you along with GNU CC so you
- can know your rights and responsibilities. It should be in a
- file named COPYING. Among other things, the copyright notice
- and this notice must be preserved on all copies. */
- /* Define the type of a set of hard registers. */
- /* If HARD_REG_SET is a macro, its definition is a scalar type
- that has enough bits for all the target machine's hard registers.
- Otherwise, it is a typedef for a suitable array of longs,
- and HARD_REG_SET_LONGS is how many. */
- #if FIRST_PSEUDO_REGISTER <= HOST_BITS_PER_CHAR
- #define HARD_REG_SET char
- #else
- #if FIRST_PSEUDO_REGISTER <= HOST_BITS_PER_SHORT
- #define HARD_REG_SET short
- #else
- #if FIRST_PSEUDO_REGISTER <= HOST_BITS_PER_INT
- #define HARD_REG_SET int
- #else
- #if FIRST_PSEUDO_REGISTER <= HOST_BITS_PER_LONG
- #define HARD_REG_SET long
- #else
- #define HARD_REG_SET_LONGS \
- ((FIRST_PSEUDO_REGISTER + HOST_BITS_PER_LONG - 1) / HOST_BITS_PER_LONG)
- typedef long[HARD_REG_SET_LONGS] HARD_REG_SET;
- #endif
- #endif
- #endif
- #endif
- /* Define macros SET_HARD_REG_BIT, CLEAR_HARD_REG_BIT and TEST_HARD_REG_BIT
- to set, clear or test one bit in a hard reg set of type HARD_REG_SET.
- All three take two arguments: the set and the register number.
- In the case where sets are arrays of longs, the first argument
- is actually a pointer to a long.
- Define two macros for initializing a set:
- CLEAR_HARD_REG_SET and SET_HARD_REG_SET.
- These take just one argument.
- Also define macros for copying hard reg sets:
- COPY_HARD_REG_SET and COMPL_HARD_REG_SET.
- These take two arguments TO and FROM; they read from FROM
- and store into TO. COMPL_HARD_REG_SET complements each bit.
- Also define macros for combining hard reg sets:
- IOR_HARD_REG_SET and AND_HARD_REG_SET.
- These take two arguments TO and FROM; they read from FROM
- and combine bitwise into TO. Define also two variants
- IOR_COMPL_HARD_REG_SET and AND_COMPL_HARD_REG_SET
- which use the complement of the set FROM.
- Also define GO_IF_HARD_REG_SUBSET (X, Y, TO):
- if X is a subset of Y, go to TO.
- */
- #ifdef HARD_REG_SET
- #define SET_HARD_REG_BIT(SET, BIT) \
- ((SET) |= 1 << (BIT))
- #define CLEAR_HARD_REG_BIT(SET, BIT) \
- ((SET) &= ~(1 << (BIT)))
- #define TEST_HARD_REG_BIT(SET, BIT) \
- ((SET) & (1 << (BIT)))
- #define CLEAR_HARD_REG_SET(TO) ((TO) = 0)
- #define SET_HARD_REG_SET(TO) ((TO) = -1)
- #define COPY_HARD_REG_SET(TO, FROM) ((TO) = (FROM))
- #define COMPL_HARD_REG_SET(TO, FROM) ((TO) = ~(FROM))
- #define IOR_HARD_REG_SET(TO, FROM) ((TO) |= (FROM))
- #define IOR_COMPL_HARD_REG_SET(TO, FROM) ((TO) |= ~ (FROM))
- #define AND_HARD_REG_SET(TO, FROM) ((TO) &= (FROM))
- #define AND_COMPL_HARD_REG_SET(TO, FROM) ((TO) &= ~ (FROM))
- #define GO_IF_HARD_REG_SUBSET(X,Y,TO) if (0 == ((X) & ~(Y))) goto TO
- #else
- #define SET_HARD_REG_BIT(SET, BIT) \
- ((SET)[(BIT) / HOST_BITS_PER_LONG] |= 1 << ((BIT) % HOST_BITS_PER_LONG))
- #define CLEAR_HARD_REG_BIT(SET, BIT) \
- ((SET)[(BIT) / HOST_BITS_PER_LONG] &= ~(1 << ((BIT) % HOST_BITS_PER_LONG)))
- #define TEST_HARD_REG_BIT(SET, BIT) \
- ((SET)[(BIT) / HOST_BITS_PER_LONG] & (1 << ((BIT) % HOST_BITS_PER_LONG)))
- #define CLEAR_HARD_REG_SET(TO) \
- { register int i; \
- register long *tp = (TO); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ = 0 }
- #define SET_HARD_REG_SET(TO) \
- { register int i; \
- register long *tp = (TO); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ = -1 }
- #define COPY_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ = *fp++; }
- #define COMPL_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ = ~ *fp++; }
- #define AND_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ &= *fp++; }
- #define AND_COMPL_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ &= ~ *fp++; }
- #define IOR_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ |= *fp++; }
- #define IOR_COMPL_HARD_REG_SET(TO, FROM) \
- { register int i; \
- register long *tp = (TO), *fp = (FROM); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- *tp++ |= ~ *fp++; }
- #define GO_IF_HARD_REG_SUBSET(X,Y,TO) \
- { register int i; \
- register long *xp = (X), *yp = (Y); \
- for (i = 0; i < HARD_REG_SET_LONGS; i++) \
- if (0 != (*xp++ & ~yp++)) break; \
- if (i == HARD_REG_SET_LONGS) goto TO; }
- #endif
|