diff options
author | kan <kan@FreeBSD.org> | 2004-07-28 03:11:36 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-07-28 03:11:36 +0000 |
commit | e0020c9fe3d2c91658ad0f59cb6a55c44f909db3 (patch) | |
tree | b406472295ae0b130894cc19f02f43b36157fec6 /contrib/gcc/sbitmap.c | |
parent | b754d213ab76dee1e7bcd5acb4becd5658c0ca99 (diff) | |
parent | 5e00ec74d8ce58f99801200d4d3d0412c7cc1b28 (diff) | |
download | FreeBSD-src-e0020c9fe3d2c91658ad0f59cb6a55c44f909db3.zip FreeBSD-src-e0020c9fe3d2c91658ad0f59cb6a55c44f909db3.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r132718,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/gcc/sbitmap.c')
-rw-r--r-- | contrib/gcc/sbitmap.c | 153 |
1 files changed, 56 insertions, 97 deletions
diff --git a/contrib/gcc/sbitmap.c b/contrib/gcc/sbitmap.c index 74c24c9..1d27a87 100644 --- a/contrib/gcc/sbitmap.c +++ b/contrib/gcc/sbitmap.c @@ -20,6 +20,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "config.h" #include "system.h" +#include "coretypes.h" +#include "tm.h" #include "rtl.h" #include "flags.h" #include "hard-reg-set.h" @@ -30,8 +32,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Allocate a simple bitmap of N_ELMS bits. */ sbitmap -sbitmap_alloc (n_elms) - unsigned int n_elms; +sbitmap_alloc (unsigned int n_elms) { unsigned int bytes, size, amt; sbitmap bmap; @@ -40,7 +41,7 @@ sbitmap_alloc (n_elms) bytes = size * sizeof (SBITMAP_ELT_TYPE); amt = (sizeof (struct simple_bitmap_def) + bytes - sizeof (SBITMAP_ELT_TYPE)); - bmap = (sbitmap) xmalloc (amt); + bmap = xmalloc (amt); bmap->n_bits = n_elms; bmap->size = size; bmap->bytes = bytes; @@ -52,10 +53,7 @@ sbitmap_alloc (n_elms) is zero, and set them to one otherwise. */ sbitmap -sbitmap_resize (bmap, n_elms, def) - sbitmap bmap; - unsigned int n_elms; - int def; +sbitmap_resize (sbitmap bmap, unsigned int n_elms, int def) { unsigned int bytes, size, amt; unsigned int last_bit; @@ -66,14 +64,14 @@ sbitmap_resize (bmap, n_elms, def) { amt = (sizeof (struct simple_bitmap_def) + bytes - sizeof (SBITMAP_ELT_TYPE)); - bmap = (sbitmap) xrealloc ((PTR) bmap, amt); + bmap = xrealloc (bmap, amt); } if (n_elms > bmap->n_bits) { if (def) { - memset ((PTR) (bmap->elms + bmap->size), -1, bytes - bmap->bytes); + memset (bmap->elms + bmap->size, -1, bytes - bmap->bytes); /* Set the new bits if the original last element. */ last_bit = bmap->n_bits % SBITMAP_ELT_BITS; @@ -88,11 +86,11 @@ sbitmap_resize (bmap, n_elms, def) &= (SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit); } else - memset ((PTR) (bmap->elms + bmap->size), 0, bytes - bmap->bytes); + memset (bmap->elms + bmap->size, 0, bytes - bmap->bytes); } else if (n_elms < bmap->n_bits) { - /* Clear the surplus bits in the last word. */ + /* Clear the surplus bits in the last word. */ last_bit = n_elms % SBITMAP_ELT_BITS; if (last_bit) bmap->elms[size - 1] @@ -108,8 +106,7 @@ sbitmap_resize (bmap, n_elms, def) /* Allocate a vector of N_VECS bitmaps of N_ELMS bits. */ sbitmap * -sbitmap_vector_alloc (n_vecs, n_elms) - unsigned int n_vecs, n_elms; +sbitmap_vector_alloc (unsigned int n_vecs, unsigned int n_elms) { unsigned int i, bytes, offset, elm_bytes, size, amt, vector_bytes; sbitmap *bitmap_vector; @@ -133,7 +130,7 @@ sbitmap_vector_alloc (n_vecs, n_elms) } amt = vector_bytes + (n_vecs * elm_bytes); - bitmap_vector = (sbitmap *) xmalloc (amt); + bitmap_vector = xmalloc (amt); for (i = 0, offset = vector_bytes; i < n_vecs; i++, offset += elm_bytes) { @@ -151,16 +148,14 @@ sbitmap_vector_alloc (n_vecs, n_elms) /* Copy sbitmap SRC to DST. */ void -sbitmap_copy (dst, src) - sbitmap dst, src; +sbitmap_copy (sbitmap dst, sbitmap src) { memcpy (dst->elms, src->elms, sizeof (SBITMAP_ELT_TYPE) * dst->size); } /* Determine if a == b. */ int -sbitmap_equal (a, b) - sbitmap a, b; +sbitmap_equal (sbitmap a, sbitmap b) { return !memcmp (a->elms, b->elms, sizeof (SBITMAP_ELT_TYPE) * a->size); } @@ -168,21 +163,19 @@ sbitmap_equal (a, b) /* Zero all elements in a bitmap. */ void -sbitmap_zero (bmap) - sbitmap bmap; +sbitmap_zero (sbitmap bmap) { - memset ((PTR) bmap->elms, 0, bmap->bytes); + memset (bmap->elms, 0, bmap->bytes); } /* Set all elements in a bitmap to ones. */ void -sbitmap_ones (bmap) - sbitmap bmap; +sbitmap_ones (sbitmap bmap) { unsigned int last_bit; - memset ((PTR) bmap->elms, -1, bmap->bytes); + memset (bmap->elms, -1, bmap->bytes); last_bit = bmap->n_bits % SBITMAP_ELT_BITS; if (last_bit) @@ -193,9 +186,7 @@ sbitmap_ones (bmap) /* Zero a vector of N_VECS bitmaps. */ void -sbitmap_vector_zero (bmap, n_vecs) - sbitmap *bmap; - unsigned int n_vecs; +sbitmap_vector_zero (sbitmap *bmap, unsigned int n_vecs) { unsigned int i; @@ -206,9 +197,7 @@ sbitmap_vector_zero (bmap, n_vecs) /* Set a vector of N_VECS bitmaps to ones. */ void -sbitmap_vector_ones (bmap, n_vecs) - sbitmap *bmap; - unsigned int n_vecs; +sbitmap_vector_ones (sbitmap *bmap, unsigned int n_vecs) { unsigned int i; @@ -221,8 +210,7 @@ sbitmap_vector_ones (bmap, n_vecs) Returns true if any change is made. */ bool -sbitmap_union_of_diff_cg (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_union_of_diff_cg (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -242,8 +230,7 @@ sbitmap_union_of_diff_cg (dst, a, b, c) } void -sbitmap_union_of_diff (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_union_of_diff (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -258,30 +245,35 @@ sbitmap_union_of_diff (dst, a, b, c) /* Set bitmap DST to the bitwise negation of the bitmap SRC. */ void -sbitmap_not (dst, src) - sbitmap dst, src; +sbitmap_not (sbitmap dst, sbitmap src) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; sbitmap_ptr srcp = src->elms; + unsigned int last_bit; for (i = 0; i < n; i++) *dstp++ = ~*srcp++; + + /* Zero all bits past n_bits, by ANDing dst with sbitmap_ones. */ + last_bit = src->n_bits % SBITMAP_ELT_BITS; + if (last_bit) + dst->elms[n-1] = dst->elms[n-1] + & ((SBITMAP_ELT_TYPE)-1 >> (SBITMAP_ELT_BITS - last_bit)); } /* Set the bits in DST to be the difference between the bits in A and the bits in B. i.e. dst = a & (~b). */ void -sbitmap_difference (dst, a, b) - sbitmap dst, a, b; +sbitmap_difference (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, dst_size = dst->size; unsigned int min_size = dst->size; sbitmap_ptr dstp = dst->elms; sbitmap_ptr ap = a->elms; sbitmap_ptr bp = b->elms; - + /* A should be at least as large as DEST, to have a defined source. */ if (a->size < dst_size) abort (); @@ -302,8 +294,7 @@ sbitmap_difference (dst, a, b) Return nonzero if any change is made. */ bool -sbitmap_a_and_b_cg (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_and_b_cg (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -314,7 +305,7 @@ sbitmap_a_and_b_cg (dst, a, b) for (i = 0; i < n; i++) { SBITMAP_ELT_TYPE tmp = *ap++ & *bp++; - changed = *dstp ^ tmp; + changed |= *dstp ^ tmp; *dstp++ = tmp; } @@ -322,8 +313,7 @@ sbitmap_a_and_b_cg (dst, a, b) } void -sbitmap_a_and_b (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_and_b (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -338,8 +328,7 @@ sbitmap_a_and_b (dst, a, b) Return nonzero if any change is made. */ bool -sbitmap_a_xor_b_cg (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_xor_b_cg (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -350,7 +339,7 @@ sbitmap_a_xor_b_cg (dst, a, b) for (i = 0; i < n; i++) { SBITMAP_ELT_TYPE tmp = *ap++ ^ *bp++; - changed = *dstp ^ tmp; + changed |= *dstp ^ tmp; *dstp++ = tmp; } @@ -358,8 +347,7 @@ sbitmap_a_xor_b_cg (dst, a, b) } void -sbitmap_a_xor_b (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_xor_b (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -374,8 +362,7 @@ sbitmap_a_xor_b (dst, a, b) Return nonzero if any change is made. */ bool -sbitmap_a_or_b_cg (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_or_b_cg (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -386,7 +373,7 @@ sbitmap_a_or_b_cg (dst, a, b) for (i = 0; i < n; i++) { SBITMAP_ELT_TYPE tmp = *ap++ | *bp++; - changed = *dstp ^ tmp; + changed |= *dstp ^ tmp; *dstp++ = tmp; } @@ -394,8 +381,7 @@ sbitmap_a_or_b_cg (dst, a, b) } void -sbitmap_a_or_b (dst, a, b) - sbitmap dst, a, b; +sbitmap_a_or_b (sbitmap dst, sbitmap a, sbitmap b) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -409,8 +395,7 @@ sbitmap_a_or_b (dst, a, b) /* Return nonzero if A is a subset of B. */ bool -sbitmap_a_subset_b_p (a, b) - sbitmap a, b; +sbitmap_a_subset_b_p (sbitmap a, sbitmap b) { unsigned int i, n = a->size; sbitmap_ptr ap, bp; @@ -426,8 +411,7 @@ sbitmap_a_subset_b_p (a, b) Return nonzero if any change is made. */ bool -sbitmap_a_or_b_and_c_cg (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_a_or_b_and_c_cg (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -447,8 +431,7 @@ sbitmap_a_or_b_and_c_cg (dst, a, b, c) } void -sbitmap_a_or_b_and_c (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_a_or_b_and_c (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -464,8 +447,7 @@ sbitmap_a_or_b_and_c (dst, a, b, c) Return nonzero if any change is made. */ bool -sbitmap_a_and_b_or_c_cg (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_a_and_b_or_c_cg (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -485,8 +467,7 @@ sbitmap_a_and_b_or_c_cg (dst, a, b, c) } void -sbitmap_a_and_b_or_c (dst, a, b, c) - sbitmap dst, a, b, c; +sbitmap_a_and_b_or_c (sbitmap dst, sbitmap a, sbitmap b, sbitmap c) { unsigned int i, n = dst->size; sbitmap_ptr dstp = dst->elms; @@ -503,10 +484,7 @@ sbitmap_a_and_b_or_c (dst, a, b, c) block number BB, using the new flow graph structures. */ void -sbitmap_intersection_of_succs (dst, src, bb) - sbitmap dst; - sbitmap *src; - int bb; +sbitmap_intersection_of_succs (sbitmap dst, sbitmap *src, int bb) { basic_block b = BASIC_BLOCK (bb); unsigned int set_size = dst->size; @@ -543,10 +521,7 @@ sbitmap_intersection_of_succs (dst, src, bb) block number BB, using the new flow graph structures. */ void -sbitmap_intersection_of_preds (dst, src, bb) - sbitmap dst; - sbitmap *src; - int bb; +sbitmap_intersection_of_preds (sbitmap dst, sbitmap *src, int bb) { basic_block b = BASIC_BLOCK (bb); unsigned int set_size = dst->size; @@ -583,10 +558,7 @@ sbitmap_intersection_of_preds (dst, src, bb) block number BB, using the new flow graph structures. */ void -sbitmap_union_of_succs (dst, src, bb) - sbitmap dst; - sbitmap *src; - int bb; +sbitmap_union_of_succs (sbitmap dst, sbitmap *src, int bb) { basic_block b = BASIC_BLOCK (bb); unsigned int set_size = dst->size; @@ -623,10 +595,7 @@ sbitmap_union_of_succs (dst, src, bb) block number BB, using the new flow graph structures. */ void -sbitmap_union_of_preds (dst, src, bb) - sbitmap dst; - sbitmap *src; - int bb; +sbitmap_union_of_preds (sbitmap dst, sbitmap *src, int bb) { basic_block b = BASIC_BLOCK (bb); unsigned int set_size = dst->size; @@ -663,8 +632,7 @@ sbitmap_union_of_preds (dst, src, bb) /* Return number of first bit set in the bitmap, -1 if none. */ int -sbitmap_first_set_bit (bmap) - sbitmap bmap; +sbitmap_first_set_bit (sbitmap bmap) { unsigned int n; @@ -675,8 +643,7 @@ sbitmap_first_set_bit (bmap) /* Return number of last bit set in the bitmap, -1 if none. */ int -sbitmap_last_set_bit (bmap) - sbitmap bmap; +sbitmap_last_set_bit (sbitmap bmap) { int i; SBITMAP_ELT_TYPE *ptr = bmap->elms; @@ -706,9 +673,7 @@ sbitmap_last_set_bit (bmap) } void -dump_sbitmap (file, bmap) - FILE *file; - sbitmap bmap; +dump_sbitmap (FILE *file, sbitmap bmap) { unsigned int i, n, j; unsigned int set_size = bmap->size; @@ -729,9 +694,7 @@ dump_sbitmap (file, bmap) } void -dump_sbitmap_file (file, bmap) - FILE *file; - sbitmap bmap; +dump_sbitmap_file (FILE *file, sbitmap bmap) { unsigned int i, pos; @@ -754,18 +717,14 @@ dump_sbitmap_file (file, bmap) } void -debug_sbitmap (bmap) - sbitmap bmap; +debug_sbitmap (sbitmap bmap) { dump_sbitmap_file (stderr, bmap); } void -dump_sbitmap_vector (file, title, subtitle, bmaps, n_maps) - FILE *file; - const char *title, *subtitle; - sbitmap *bmaps; - int n_maps; +dump_sbitmap_vector (FILE *file, const char *title, const char *subtitle, + sbitmap *bmaps, int n_maps) { int bb; |