1 /* This file is part of the program psim.
3 Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 LSMASKED64 (unsigned64 word
,
33 word
&= LSMASK64 (start
, stop
);
39 LSEXTRACTED64 (unsigned64 val
,
43 val
<<= (64 - 1 - start
); /* drop high bits */
44 val
>>= (64 - 1 - start
) + (stop
); /* drop low bits */
50 MASKED32(unsigned32 word
,
54 return (word
& MASK32(start
, stop
));
59 MASKED64(unsigned64 word
,
63 return (word
& MASK64(start
, stop
));
68 MASKED(unsigned_word word
,
72 return ((word
) & MASK(start
, stop
));
79 EXTRACTED(unsigned_word word
,
83 ASSERT(start
<= stop
);
84 #if (WITH_TARGET_WORD_BITSIZE == 64)
85 return _EXTRACTEDn(64, word
, start
, stop
);
90 return ((word
>> (63 - stop
))
91 & MASK(start
+(63-stop
), 63));
98 INSERTED(unsigned_word word
,
102 ASSERT(start
<= stop
);
103 #if (WITH_TARGET_WORD_BITSIZE == 64)
104 return _INSERTEDn(64, word
, start
, stop
);
109 return ((word
& MASK(start
+(63-stop
), 63))
117 ROTL32(unsigned32 val
,
120 ASSERT(shift
>= 0 && shift
<= 32);
121 return _ROTLn(32, val
, shift
);
127 ROTL64(unsigned64 val
,
130 ASSERT(shift
>= 0 && shift
<= 64);
131 return _ROTLn(64, val
, shift
);
134 #endif /* _BITS_C_ */