Lines Matching refs:DRD_
54 void DRD_(bm_module_init)(void) in DRD_() function
62 void DRD_(bm_module_cleanup)(void) in DRD_() function
69 struct bitmap* DRD_(bm_new)() in DRD_() function
78 DRD_(bm_init)(bm); in DRD_()
83 void DRD_(bm_delete)(struct bitmap* const bm) in DRD_() function
87 DRD_(bm_cleanup)(bm); in DRD_()
92 void DRD_(bm_init)(struct bitmap* const bm) in DRD_() function
113 void DRD_(bm_cleanup)(struct bitmap* const bm) in DRD_() function
127 void DRD_(bm_access_range)(struct bitmap* const bm, in DRD_() function
134 return DRD_(bm_access_range_load)(bm, a1, a2); in DRD_()
136 return DRD_(bm_access_range_store)(bm, a1, a2); in DRD_()
139 void DRD_(bm_access_range_load)(struct bitmap* const bm, Addr a1, Addr a2) in DRD_() function
201 void DRD_(bm_access_load_1)(struct bitmap* const bm, const Addr a1) in DRD_() function
206 void DRD_(bm_access_load_2)(struct bitmap* const bm, const Addr a1) in DRD_() function
211 DRD_(bm_access_range)(bm, a1, a1 + 2, eLoad); in DRD_()
214 void DRD_(bm_access_load_4)(struct bitmap* const bm, const Addr a1) in DRD_() function
219 DRD_(bm_access_range)(bm, a1, a1 + 4, eLoad); in DRD_()
222 void DRD_(bm_access_load_8)(struct bitmap* const bm, const Addr a1) in DRD_() function
232 DRD_(bm_access_range)(bm, a1, a1 + 8, eLoad); in DRD_()
235 void DRD_(bm_access_range_store)(struct bitmap* const bm, in DRD_() function
298 void DRD_(bm_access_store_1)(struct bitmap* const bm, const Addr a1) in DRD_() function
303 void DRD_(bm_access_store_2)(struct bitmap* const bm, const Addr a1) in DRD_() function
308 DRD_(bm_access_range)(bm, a1, a1 + 2, eStore); in DRD_()
311 void DRD_(bm_access_store_4)(struct bitmap* const bm, const Addr a1) in DRD_() function
316 DRD_(bm_access_range)(bm, a1, a1 + 4, eStore); in DRD_()
319 void DRD_(bm_access_store_8)(struct bitmap* const bm, const Addr a1) in DRD_() function
329 DRD_(bm_access_range)(bm, a1, a1 + 8, eStore); in DRD_()
332 Bool DRD_(bm_has)(struct bitmap* const bm, const Addr a1, const Addr a2, in DRD_() function
338 return DRD_(bm_has_any_load)(bm, a1, a2); in DRD_()
340 return DRD_(bm_has_any_store)(bm, a1, a2); in DRD_()
343 Bool DRD_(bm_has_any_load_g)(struct bitmap* const bm) in DRD_() function
367 DRD_(bm_has_any_load)(struct bitmap* const bm, const Addr a1, const Addr a2) in DRD_() function
419 Bool DRD_(bm_has_any_store)(struct bitmap* const bm, in DRD_() function
474 Bool DRD_(bm_has_any_access)(struct bitmap* const bm, in DRD_() function
535 Bool DRD_(bm_has_1)(struct bitmap* const bm, in DRD_() function
555 void DRD_(bm_clear)(struct bitmap* const bm, Addr a1, Addr a2) in DRD_() function
632 void DRD_(bm_clear_load)(struct bitmap* const bm, Addr a1, Addr a2) in DRD_() function
713 void DRD_(bm_clear_store)(struct bitmap* const bm, in DRD_() function
796 Bool DRD_(bm_test_and_clear)(struct bitmap* const bm, in DRD_() function
801 result = DRD_(bm_has_any_access)(bm, a1, a2) != 0; in DRD_()
802 DRD_(bm_clear)(bm, a1, a2); in DRD_()
806 Bool DRD_(bm_has_conflict_with)(struct bitmap* const bm, in DRD_() function
872 Bool DRD_(bm_load_has_conflict_with)(struct bitmap* const bm, in DRD_() function
875 return DRD_(bm_has_conflict_with)(bm, a1, a2, eLoad); in DRD_()
878 Bool DRD_(bm_load_1_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
883 Bool DRD_(bm_load_2_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
888 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 2, eLoad); in DRD_()
891 Bool DRD_(bm_load_4_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
896 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 4, eLoad); in DRD_()
899 Bool DRD_(bm_load_8_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
904 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 8, eLoad); in DRD_()
907 Bool DRD_(bm_store_1_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
912 Bool DRD_(bm_store_2_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
917 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 2, eStore); in DRD_()
920 Bool DRD_(bm_store_4_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
925 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 4, eStore); in DRD_()
928 Bool DRD_(bm_store_8_has_conflict_with)(struct bitmap* const bm, const Addr a1) in DRD_() function
933 return DRD_(bm_has_conflict_with)(bm, a1, a1 + 8, eStore); in DRD_()
936 Bool DRD_(bm_store_has_conflict_with)(struct bitmap* const bm, in DRD_() function
939 return DRD_(bm_has_conflict_with)(bm, a1, a2, eStore); in DRD_()
946 Bool DRD_(bm_equal)(struct bitmap* const lhs, struct bitmap* const rhs) in DRD_() function
961 && ! DRD_(bm_has_any_access)(lhs, in DRD_()
977 while (! DRD_(bm_has_any_access)(rhs, in DRD_()
982 tl_assert(DRD_(bm_has_any_access)(rhs, in DRD_()
997 } while (bm2r && ! DRD_(bm_has_any_access)(rhs, in DRD_()
1002 tl_assert(DRD_(bm_has_any_access)(rhs, in DRD_()
1010 void DRD_(bm_swap)(struct bitmap* const bm1, struct bitmap* const bm2) in DRD_() function
1018 void DRD_(bm_merge2)(struct bitmap* const lhs, struct bitmap* const rhs) in DRD_() function
1049 void DRD_(bm_unmark)(struct bitmap* bm) in DRD_() function
1065 Bool DRD_(bm_is_marked)(struct bitmap* bm, const Addr a) in DRD_() function
1080 void DRD_(bm_mark)(struct bitmap* bml, struct bitmap* bmr) in DRD_() function
1095 void DRD_(bm_clear_marked)(struct bitmap* bm) in DRD_() function
1109 void DRD_(bm_merge2_marked)(struct bitmap* const lhs, struct bitmap* const rhs) in DRD_() function
1136 void DRD_(bm_remove_cleared_marked)(struct bitmap* bm) in DRD_() function
1145 && ! DRD_(bm_has_any_access(bm, make_address(a1, 0), in DRD_()
1160 int DRD_(bm_has_races)(struct bitmap* const lhs, struct bitmap* const rhs) in DRD_() function
1199 if (HAS_RACE(access_mask) && ! DRD_(is_suppressed)(a, a + 1)) in DRD_()
1209 void DRD_(bm_print)(struct bitmap* const bm) in DRD_() function
1245 ULong DRD_(bm_get_bitmap_creation_count)(void) in DRD_() function
1250 ULong DRD_(bm_get_bitmap2_creation_count)(void) in DRD_() function
1255 ULong DRD_(bm_get_bitmap2_merge_count)(void) in DRD_() function