Lines Matching refs:m_tmp_bitmap
479 bitmap_head m_tmp_bitmap; variable
970 bitmap_clear (&m_tmp_bitmap); in collect_candidates()
978 bitmap_set_bit (&m_tmp_bitmap, id); in collect_candidates()
987 if (!bitmap_empty_p (&m_tmp_bitmap) && bad) in collect_candidates()
993 if (!bitmap_bit_p (&m_tmp_bitmap, id)) in collect_candidates()
1041 bitmap_clear (&m_tmp_bitmap); in sort_candidates()
1047 if (bitmap_set_bit (&m_tmp_bitmap, bb->index)) in sort_candidates()
1225 bitmap_clear (&m_tmp_bitmap); in compute_rd()
1226 bitmap_set_range (&m_tmp_bitmap, 0, last_basic_block_for_fn (m_fn)); in compute_rd()
1228 &m_tmp_bitmap, df_get_postorder (DF_FORWARD), in compute_rd()
1267 bitmap_and (&m_tmp_bitmap, defs, &reaching); in compute_rd()
1268 bitmap_ior_into (get_bitmap (&cand->uses), &m_tmp_bitmap); in compute_rd()
1360 bitmap_and (&m_tmp_bitmap, &uses, m_regno_to_candidates[regno]); in check_candidate_uses()
1364 unsigned int def = resolve_reaching_def (&m_tmp_bitmap); in check_candidate_uses()
1375 bitmap_and_compl_into (&uses, &m_tmp_bitmap); in check_candidate_uses()
1532 bitmap_clear (&m_tmp_bitmap); in restrict_remat_for_unavail_regs()
1540 bitmap_set_bit (&m_tmp_bitmap, cand_index); in restrict_remat_for_unavail_regs()
1542 bitmap_and_compl_into (candidates, &m_tmp_bitmap); in restrict_remat_for_unavail_regs()
1747 bitmap_and (&m_tmp_bitmap, cand->uses, defs); in stabilize_candidate_uses()
1748 gcc_checking_assert (bitmap_single_bit_set_p (&m_tmp_bitmap)); in stabilize_candidate_uses()
1749 unsigned int def_index = bitmap_first_set_bit (&m_tmp_bitmap); in stabilize_candidate_uses()
1754 bitmap_and (&m_tmp_bitmap, reaching, defs); in stabilize_candidate_uses()
1755 if (bitmap_single_bit_set_p (&m_tmp_bitmap) in stabilize_candidate_uses()
1756 && bitmap_first_set_bit (&m_tmp_bitmap) == def_index in stabilize_candidate_uses()
1826 bitmap_and (&m_tmp_bitmap, reaching, in emit_remat_insns()
1828 bitmap_and_compl_into (required, &m_tmp_bitmap); in emit_remat_insns()
1833 if (!bitmap_single_bit_set_p (&m_tmp_bitmap)) in emit_remat_insns()
1986 bitmap_and (&m_tmp_bitmap, defs, &reaching); in process_block()
1987 gcc_checking_assert (!bitmap_empty_p (&m_tmp_bitmap)); in process_block()
1994 bitmap_ior_into (m_required, &m_tmp_bitmap); in process_block()
1995 bitmap_ior_into (m_available, &m_tmp_bitmap); in process_block()
2171 bitmap_clear (&m_tmp_bitmap); in compute_availability()
2172 bitmap_set_range (&m_tmp_bitmap, 0, last_basic_block_for_fn (m_fn)); in compute_availability()
2175 &m_tmp_bitmap, df_get_postorder (DF_FORWARD), in compute_availability()
2313 bitmap_and (&m_tmp_bitmap, info->rd_in, m_regno_to_candidates[cand->regno]); in need_to_move_candidate_p()
2314 if (!bitmap_single_bit_set_p (&m_tmp_bitmap)) in need_to_move_candidate_p()
2398 bitmap_and (&m_tmp_bitmap, required, src_info->rd_out); in move_to_predecessors()
2399 if (bitmap_empty_p (&m_tmp_bitmap)) in move_to_predecessors()
2420 bitmap_and_compl_into (&m_tmp_bitmap, src_info->available_out); in move_to_predecessors()
2421 if (bitmap_empty_p (&m_tmp_bitmap)) in move_to_predecessors()
2430 dump_candidate_bitmap (&m_tmp_bitmap); in move_to_predecessors()
2439 if (bitmap_ior_into (src_required, &m_tmp_bitmap)) in move_to_predecessors()
2445 &m_tmp_bitmap); in move_to_predecessors()
2587 bitmap_initialize (&m_tmp_bitmap, &m_obstack); in early_remat()