diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2018-12-19 12:26:20 +1100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2018-12-21 09:24:23 +1100 |
commit | 6187ec05edc240204935fdf0d89cded563fdeab4 (patch) | |
tree | c497c6bfedbce4d4500aa1d6e380726d97e4c61f | |
parent | a7d4b1bf418acae58a3f0649c578cc0451136f46 (diff) | |
download | qemu-6187ec05edc240204935fdf0d89cded563fdeab4.zip qemu-6187ec05edc240204935fdf0d89cded563fdeab4.tar.gz qemu-6187ec05edc240204935fdf0d89cded563fdeab4.tar.bz2 |
target/ppc: Remove silly GETFIELD/SETFIELD/MASK_TO_LSH macros
The (only) obvious use for these macros is constructing and parsing guest
visible register fields. But the way they're constructed, they're only
valid when used on a *host* long, whose size shouldn't be visible to the
guest at all.
They also have no current users, so just get rid of them.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r-- | target/ppc/cpu.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index 527181c..d5f99f1 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -78,18 +78,6 @@ PPC_BIT32(bs)) #define PPC_BITMASK8(bs, be) ((PPC_BIT8(bs) - PPC_BIT8(be)) | PPC_BIT8(bs)) -#if HOST_LONG_BITS == 32 -# define MASK_TO_LSH(m) (__builtin_ffsll(m) - 1) -#elif HOST_LONG_BITS == 64 -# define MASK_TO_LSH(m) (__builtin_ffsl(m) - 1) -#else -# error Unknown sizeof long -#endif - -#define GETFIELD(m, v) (((v) & (m)) >> MASK_TO_LSH(m)) -#define SETFIELD(m, v, val) \ - (((v) & ~(m)) | ((((typeof(v))(val)) << MASK_TO_LSH(m)) & (m))) - /*****************************************************************************/ /* Exception vectors definitions */ enum { |