From d7c028c07b1998cc80f67e053c8131cf8b387af7 Mon Sep 17 00:00:00 2001 From: Lawrence Crowl Date: Thu, 1 Nov 2012 19:23:35 +0000 Subject: This patch normalizes more bitmap function names. sbitmap.h TEST_BIT -> bitmap_bit_p SET_BIT -> bitmap_set_bit SET_BIT_WITH_POPCOUNT -> bitmap_set_bit_with_popcount RESET_BIT -> bitmap_clear_bit RESET_BIT_WITH_POPCOUNT -> bitmap_clear_bit_with_popcount basic-block.h sbitmap_intersection_of_succs -> bitmap_intersection_of_succs sbitmap_intersection_of_preds -> bitmap_intersection_of_preds sbitmap_union_of_succs -> bitmap_union_of_succs sbitmap_union_of_preds -> bitmap_union_of_preds The sbitmap.h functions also needed their numeric paramter changed from unsigned int to int to match the bitmap functions. Callers updated to match. Tested on x86-64, config-list.mk testing. Index: gcc/ChangeLog 2012-11-01 Lawrence Crowl * sbitmap.h (TEST_BIT): Rename bitmap_bit_p, normalizing parameter type. Update callers to match. (SET_BIT): Rename bitmap_set_bit, normalizing parameter type. Update callers to match. (SET_BIT_WITH_POPCOUNT): Rename bitmap_set_bit_with_popcount, normalizing parameter type. Update callers to match. (RESET_BIT): Rename bitmap_clear_bit, normalizing parameter type. Update callers to match. (RESET_BIT_WITH_POPCOUNT): Rename bitmap_clear_bit_with_popcount, normalizing parameter type. Update callers to match. * basic-block.h (sbitmap_intersection_of_succs): Rename bitmap_intersection_of_succs. Update callers to match. * basic-block.h (sbitmap_intersection_of_preds): Rename bitmap_intersection_of_preds. Update callers to match. * basic-block.h (sbitmap_union_of_succs): Rename bitmap_union_of_succs. Update callers to match. * basic-block.h (sbitmap_union_of_preds): Rename bitmap_union_of_preds. Update callers to match. From-SVN: r193066 --- gcc/config/epiphany/resolve-sw-modes.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/config/epiphany/resolve-sw-modes.c') diff --git a/gcc/config/epiphany/resolve-sw-modes.c b/gcc/config/epiphany/resolve-sw-modes.c index 86cc5b1..ec0dfcc 100644 --- a/gcc/config/epiphany/resolve-sw-modes.c +++ b/gcc/config/epiphany/resolve-sw-modes.c @@ -99,7 +99,7 @@ resolve_sw_modes (void) selected_mode = (enum attr_fp_mode) epiphany_normal_fp_rounding; VEC_quick_push (basic_block, todo, bb); - SET_BIT (pushed, bb->index); + bitmap_set_bit (pushed, bb->index); } XVECEXP (XEXP (src, 0), 0, 0) = GEN_INT (selected_mode); SET_SRC (XVECEXP (PATTERN (insn), 0, 1)) = copy_rtx (src); @@ -114,8 +114,8 @@ resolve_sw_modes (void) edge e; edge_iterator ei; - SET_BIT (pushed, bb->index); - SET_BIT (pushed, bb->index); + bitmap_set_bit (pushed, bb->index); + bitmap_set_bit (pushed, bb->index); if (epiphany_normal_fp_rounding == FP_MODE_ROUND_NEAREST) { @@ -139,10 +139,10 @@ resolve_sw_modes (void) continue; if (REGNO_REG_SET_P (DF_LIVE_IN (succ), selected_reg)) { - if (TEST_BIT (pushed, succ->index)) + if (bitmap_bit_p (pushed, succ->index)) continue; VEC_quick_push (basic_block, todo, succ); - SET_BIT (pushed, bb->index); + bitmap_set_bit (pushed, bb->index); continue; } start_sequence (); -- cgit v1.1