e2fsprogs/lib/ext2fs/bitops.h

393 lines
9.9 KiB
C
Raw Normal View History

1997-04-26 17:21:57 +04:00
/*
1997-04-26 17:58:21 +04:00
* bitops.h --- Bitmap frobbing code. The byte swapping routines are
* also included here.
1997-04-26 17:21:57 +04:00
*
1997-04-26 17:58:21 +04:00
* Copyright (C) 1993, 1994, 1995 Theodore Ts'o. This file may be
1997-04-26 17:21:57 +04:00
* redistributed under the terms of the GNU Public License.
*
* Taken from <asm/bitops.h>, Copyright 1992, Linus Torvalds.
*/
1997-04-26 18:37:06 +04:00
extern int ext2fs_set_bit(int nr,void * addr);
extern int ext2fs_clear_bit(int nr, void * addr);
extern int ext2fs_test_bit(int nr, const void * addr);
1997-04-26 17:58:21 +04:00
extern __u16 ext2fs_swab16(__u16 val);
extern __u32 ext2fs_swab32(__u32 val);
1997-04-26 17:21:57 +04:00
/*
* EXT2FS bitmap manipulation routines.
*/
/* Support for sending warning messages from the inline subroutines */
extern const char *ext2fs_block_string;
extern const char *ext2fs_inode_string;
extern const char *ext2fs_mark_string;
extern const char *ext2fs_unmark_string;
extern const char *ext2fs_test_string;
1997-04-26 17:34:30 +04:00
extern void ext2fs_warn_bitmap(errcode_t errcode, unsigned long arg,
const char *description);
extern void ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
extern void ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block);
extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
extern void ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, ino_t inode);
extern void ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode);
extern int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, ino_t inode);
1997-04-26 17:21:57 +04:00
1997-04-26 17:58:21 +04:00
extern void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block);
extern void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block);
extern int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block);
extern void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode);
extern void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode);
extern int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode);
extern blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap);
extern blk_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap);
extern blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap);
extern blk_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap);
1997-04-26 17:21:57 +04:00
/*
* The inline routines themselves...
*
* If NO_INLINE_FUNCS is defined, then we won't try to do inline
1997-04-26 17:58:21 +04:00
* functions at all; they will be included as normal functions in
* inline.c
1997-04-26 17:21:57 +04:00
*/
1997-04-26 17:58:21 +04:00
#ifdef NO_INLINE_FUNCS
#if (defined(__i386__) || defined(__i486__) || defined(__i586__) || \
defined(__mc68000__) || defined(__sparc__))
/* This prevents bitops.c from trying to include the C */
/* function version of these functions */
#define _EXT2_HAVE_ASM_BITOPS_
#endif
#endif /* NO_INLINE_FUNCS */
1997-04-26 17:21:57 +04:00
#if (defined(INCLUDE_INLINE_FUNCS) || !defined(NO_INLINE_FUNCS))
#ifdef INCLUDE_INLINE_FUNCS
#define _INLINE_ extern
#else
#define _INLINE_ extern __inline__
#endif
#if (defined(__i386__) || defined(__i486__) || defined(__i586__))
1997-04-26 17:34:30 +04:00
#define _EXT2_HAVE_ASM_BITOPS_
1997-04-26 17:21:57 +04:00
/*
* These are done by inline assembly for speed reasons.....
*
* All bitoperations return 0 if the bit was cleared before the
* operation and != 0 if it was not. Bit 0 is the LSB of addr; bit 32
* is the LSB of (addr+1).
*/
/*
* Some hacks to defeat gcc over-optimizations..
*/
struct __dummy_h { unsigned long a[100]; };
1997-04-26 18:37:06 +04:00
#define EXT2FS_ADDR (*(struct __dummy_h *) addr)
#define EXT2FS_CONST_ADDR (*(const struct __dummy_h *) addr)
1997-04-26 17:21:57 +04:00
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_set_bit(int nr, void * addr)
1997-04-26 17:21:57 +04:00
{
int oldbit;
__asm__ __volatile__("btsl %2,%1\n\tsbbl %0,%0"
1997-04-26 18:37:06 +04:00
:"=r" (oldbit),"=m" (EXT2FS_ADDR)
1997-04-26 17:21:57 +04:00
:"r" (nr));
return oldbit;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_clear_bit(int nr, void * addr)
1997-04-26 17:21:57 +04:00
{
int oldbit;
__asm__ __volatile__("btrl %2,%1\n\tsbbl %0,%0"
1997-04-26 18:37:06 +04:00
:"=r" (oldbit),"=m" (EXT2FS_ADDR)
1997-04-26 17:21:57 +04:00
:"r" (nr));
return oldbit;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_test_bit(int nr, const void * addr)
1997-04-26 17:21:57 +04:00
{
int oldbit;
__asm__ __volatile__("btl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit)
1997-04-26 18:37:06 +04:00
:"m" (EXT2FS_CONST_ADDR),"r" (nr));
1997-04-26 17:21:57 +04:00
return oldbit;
}
1997-04-26 18:37:06 +04:00
#undef EXT2FS_ADDR
1997-04-26 17:21:57 +04:00
#endif /* i386 */
1997-04-26 17:34:30 +04:00
#ifdef __mc68000__
#define _EXT2_HAVE_ASM_BITOPS_
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_set_bit(int nr,void * addr)
1997-04-26 17:34:30 +04:00
{
char retval;
__asm__ __volatile__ ("bfset %2@{%1:#1}; sne %0"
1997-04-26 18:48:50 +04:00
: "=d" (retval) : "d" (nr^7), "a" (addr));
1997-04-26 17:34:30 +04:00
return retval;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_clear_bit(int nr, void * addr)
1997-04-26 17:34:30 +04:00
{
char retval;
__asm__ __volatile__ ("bfclr %2@{%1:#1}; sne %0"
1997-04-26 18:48:50 +04:00
: "=d" (retval) : "d" (nr^7), "a" (addr));
1997-04-26 17:34:30 +04:00
return retval;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_test_bit(int nr, const void * addr)
1997-04-26 17:34:30 +04:00
{
char retval;
__asm__ __volatile__ ("bftst %2@{%1:#1}; sne %0"
1997-04-26 18:48:50 +04:00
: "=d" (retval) : "d" (nr^7), "a" (addr));
1997-04-26 17:34:30 +04:00
return retval;
}
#endif /* __mc68000__ */
1997-04-26 17:58:21 +04:00
#ifdef __sparc__
#define _EXT2_HAVE_ASM_BITOPS_
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_set_bit(int nr, void *addr)
1997-04-26 17:58:21 +04:00
{
int mask, retval;
unsigned long *ADDR = (unsigned long *) addr;
ADDR += nr >> 5;
mask = 1 << (nr & 31);
retval = ((mask & *ADDR) != 0);
*ADDR |= mask;
return retval;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_clear_bit(int nr, void *addr)
1997-04-26 17:58:21 +04:00
{
int mask, retval;
unsigned long *ADDR = (unsigned long *) addr;
ADDR += nr >> 5;
mask = 1 << (nr & 31);
retval = ((mask & *ADDR) != 0);
*ADDR &= ~mask;
return retval;
}
1997-04-26 18:37:06 +04:00
_INLINE_ int ext2fs_test_bit(int nr, const void *addr)
1997-04-26 17:58:21 +04:00
{
int mask;
const unsigned long *ADDR = (const unsigned long *) addr;
ADDR += nr >> 5;
mask = 1 << (nr & 31);
return ((mask & *ADDR) != 0);
}
#endif /* __sparc__ */
#ifndef _EXT2_HAVE_ASM_SWAB
_INLINE_ __u16 ext2fs_swab16(__u16 val)
{
return (val >> 8) | (val << 8);
}
_INLINE_ __u32 ext2fs_swab32(__u32 val)
{
return ((val>>24) | ((val>>8)&0xFF00) |
((val<<8)&0xFF0000) | (val<<24));
}
#endif /* !_EXT2_HAVE_ASM_SWAB */
1997-04-26 17:34:30 +04:00
_INLINE_ void ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_MARK, block,
bitmap->description);
1997-04-26 17:21:57 +04:00
return;
}
1997-04-26 18:37:06 +04:00
ext2fs_set_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:34:30 +04:00
_INLINE_ void ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_UNMARK,
block, bitmap->description);
1997-04-26 17:21:57 +04:00
return;
}
1997-04-26 18:37:06 +04:00
ext2fs_clear_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:34:30 +04:00
_INLINE_ int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_TEST,
block, bitmap->description);
1997-04-26 17:21:57 +04:00
return 0;
}
1997-04-26 18:37:06 +04:00
return ext2fs_test_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:34:30 +04:00
_INLINE_ void ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_MARK,
inode, bitmap->description);
1997-04-26 17:21:57 +04:00
return;
}
1997-04-26 18:37:06 +04:00
ext2fs_set_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:34:30 +04:00
_INLINE_ void ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_UNMARK,
inode, bitmap->description);
1997-04-26 17:21:57 +04:00
return;
}
1997-04-26 18:37:06 +04:00
ext2fs_clear_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:34:30 +04:00
_INLINE_ int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
1997-04-26 17:21:57 +04:00
{
1997-04-26 17:34:30 +04:00
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_TEST,
inode, bitmap->description);
1997-04-26 17:21:57 +04:00
return 0;
}
1997-04-26 18:37:06 +04:00
return ext2fs_test_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:21:57 +04:00
}
1997-04-26 17:58:21 +04:00
_INLINE_ void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_MARK, block,
bitmap->description);
return;
}
#endif
1997-04-26 18:37:06 +04:00
ext2fs_set_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_UNMARK,
block, bitmap->description);
return;
}
#endif
1997-04-26 18:37:06 +04:00
ext2fs_clear_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap,
blk_t block)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((block < bitmap->start) || (block > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_BLOCK_TEST,
block, bitmap->description);
return 0;
}
#endif
1997-04-26 18:37:06 +04:00
return ext2fs_test_bit(block - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_MARK,
inode, bitmap->description);
return;
}
#endif
1997-04-26 18:37:06 +04:00
ext2fs_set_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_UNMARK,
inode, bitmap->description);
return;
}
#endif
1997-04-26 18:37:06 +04:00
ext2fs_clear_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
ino_t inode)
{
#ifdef EXT2FS_DEBUG_FAST_OPS
if ((inode < bitmap->start) || (inode > bitmap->end)) {
ext2fs_warn_bitmap(EXT2_ET_BAD_INODE_TEST,
inode, bitmap->description);
return 0;
}
#endif
1997-04-26 18:37:06 +04:00
return ext2fs_test_bit(inode - bitmap->start, bitmap->bitmap);
1997-04-26 17:58:21 +04:00
}
_INLINE_ blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap)
{
return bitmap->start;
}
_INLINE_ blk_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap)
{
return bitmap->start;
}
_INLINE_ blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap)
{
return bitmap->end;
}
_INLINE_ blk_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap)
{
return bitmap->end;
}
1997-04-26 17:21:57 +04:00
#undef _INLINE_
#endif
1997-04-26 17:58:21 +04:00