sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | This file is part of drd, a data race detector. |
| 3 | |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 4 | Copyright (C) 2006-2008 Bart Van Assche |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 5 | bart.vanassche@gmail.com |
| 6 | |
| 7 | This program is free software; you can redistribute it and/or |
| 8 | modify it under the terms of the GNU General Public License as |
| 9 | published by the Free Software Foundation; either version 2 of the |
| 10 | License, or (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, but |
| 13 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program; if not, write to the Free Software |
| 19 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 20 | 02111-1307, USA. |
| 21 | |
| 22 | The GNU General Public License is contained in the file COPYING. |
| 23 | */ |
| 24 | |
| 25 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 26 | #ifndef __DRD_BITMAP_H |
| 27 | #define __DRD_BITMAP_H |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 28 | |
| 29 | |
| 30 | #include "pub_tool_oset.h" |
| 31 | |
| 32 | |
| 33 | /* |
| 34 | Bitmap representation. A bitmap is a data structure in which two bits are |
| 35 | reserved per 32 bit address: one bit that indicates that the data at the |
| 36 | specified address has been read, and one bit that indicates that the data has |
| 37 | been written to. |
| 38 | */ |
| 39 | |
| 40 | |
| 41 | /* Macro definitions. */ |
| 42 | |
bart | f587d04 | 2008-03-15 14:30:20 +0000 | [diff] [blame] | 43 | #define ADDR0_BITS 16 |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 44 | |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 45 | #define ADDR0_COUNT ((UWord)1 << ADDR0_BITS) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 46 | |
| 47 | #define ADDR0_MASK (ADDR0_COUNT - 1) |
| 48 | |
bart | 0268dfa | 2008-03-11 20:10:21 +0000 | [diff] [blame] | 49 | #define SPLIT_ADDRESS(a) \ |
| 50 | UWord a##0 = ((a) & ADDR0_MASK); \ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 51 | UWord a##1 = ((a) >> ADDR0_BITS); |
| 52 | |
| 53 | // Assumption: sizeof(Addr) == sizeof(UWord). |
bart | 0268dfa | 2008-03-11 20:10:21 +0000 | [diff] [blame] | 54 | #define MAKE_ADDRESS(a1, a0) \ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 55 | (Addr)(((UWord)(a1) << (ADDR0_BITS)) | ((UWord)(a0))) |
| 56 | |
| 57 | #define BITS_PER_UWORD (8UL*sizeof(UWord)) |
| 58 | #if defined(VGA_x86) || defined(VGA_ppc32) |
| 59 | #define BITS_PER_BITS_PER_UWORD 5 |
| 60 | #elif defined(VGA_amd64) || defined(VGA_ppc64) |
| 61 | #define BITS_PER_BITS_PER_UWORD 6 |
| 62 | #else |
| 63 | #error Unknown platform. |
| 64 | #endif |
| 65 | |
| 66 | #define BITMAP1_UWORD_COUNT (ADDR0_COUNT >> BITS_PER_BITS_PER_UWORD) |
| 67 | |
| 68 | /* Highest bits of an address that fit into the same UWord of bm0[]. */ |
| 69 | #define UWORD_MSB(a) ((a) & ~(BITS_PER_UWORD - 1)) |
| 70 | |
| 71 | /* Lowest bits of an address that fit into the same UWord of bm0[]. */ |
| 72 | #define UWORD_LSB(a) ((a) & (BITS_PER_UWORD - 1)) |
| 73 | |
| 74 | /* Highest address that fits in the same UWord as a. */ |
| 75 | #define UWORD_HIGHEST_ADDRESS(a) ((a) | (BITS_PER_UWORD - 1)) |
| 76 | |
| 77 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 78 | /* Local variables. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 79 | |
| 80 | static ULong s_bitmap2_creation_count; |
| 81 | |
| 82 | |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 83 | |
| 84 | /*********************************************************************/ |
| 85 | /* Functions for manipulating a struct bitmap1. */ |
| 86 | /*********************************************************************/ |
| 87 | |
| 88 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 89 | /* Lowest level, corresponding to the lowest ADDR0_BITS of an address. */ |
| 90 | struct bitmap1 |
| 91 | { |
| 92 | UWord bm0_r[BITMAP1_UWORD_COUNT]; |
| 93 | UWord bm0_w[BITMAP1_UWORD_COUNT]; |
| 94 | }; |
| 95 | |
| 96 | static __inline__ UWord bm0_mask(const Addr a) |
| 97 | { |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 98 | return ((UWord)1 << UWORD_LSB(a)); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static __inline__ void bm0_set(UWord* bm0, const Addr a) |
| 102 | { |
| 103 | //tl_assert(a < ADDR0_COUNT); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 104 | bm0[a >> BITS_PER_BITS_PER_UWORD] |= (UWord)1 << UWORD_LSB(a); |
| 105 | } |
| 106 | |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 107 | /** Set all of the addresses in range [ a1 .. a1 + size [ in bitmap bm0. */ |
| 108 | static __inline__ void bm0_set_range(UWord* bm0, |
| 109 | const Addr a1, const SizeT size) |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 110 | { |
| 111 | #if 0 |
| 112 | tl_assert(a1 < ADDR0_COUNT); |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 113 | tl_assert(size > 0); |
| 114 | tl_assert(a1 + size <= ADDR0_COUNT); |
| 115 | tl_assert(UWORD_MSB(a1) == UWORD_MSB(a1 + size - 1)); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 116 | #endif |
| 117 | bm0[a1 >> BITS_PER_BITS_PER_UWORD] |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 118 | |= (((UWord)1 << size) - 1) << UWORD_LSB(a1); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static __inline__ void bm0_clear(UWord* bm0, const Addr a) |
| 122 | { |
| 123 | //tl_assert(a < ADDR0_COUNT); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 124 | bm0[a >> BITS_PER_BITS_PER_UWORD] &= ~((UWord)1 << UWORD_LSB(a)); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 125 | } |
| 126 | |
bart | 5955f33 | 2008-03-25 17:19:20 +0000 | [diff] [blame^] | 127 | /** Clear all of the addresses in range [ a1 .. a1 + size [ in bitmap bm0. */ |
| 128 | static __inline__ void bm0_clear_range(UWord* bm0, |
| 129 | const Addr a1, const SizeT size) |
| 130 | { |
| 131 | #if 0 |
| 132 | tl_assert(a1 < ADDR0_COUNT); |
| 133 | tl_assert(size > 0); |
| 134 | tl_assert(a1 + size <= ADDR0_COUNT); |
| 135 | tl_assert(UWORD_MSB(a1) == UWORD_MSB(a1 + size - 1)); |
| 136 | #endif |
| 137 | bm0[a1 >> BITS_PER_BITS_PER_UWORD] |
| 138 | &= ~(((UWord)1 << size) - 1) << UWORD_LSB(a1); |
| 139 | } |
| 140 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 141 | static __inline__ UWord bm0_is_set(const UWord* bm0, const Addr a) |
| 142 | { |
| 143 | //tl_assert(a < ADDR0_COUNT); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 144 | return (bm0[a >> BITS_PER_BITS_PER_UWORD] & ((UWord)1 << UWORD_LSB(a))); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 145 | } |
| 146 | |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 147 | /** Return true if any of the bits [ a1 .. a1+size [ are set in bm0. */ |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 148 | static __inline__ UWord bm0_is_any_set(const UWord* bm0, |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 149 | const Addr a1, const SizeT size) |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 150 | { |
| 151 | #if 0 |
| 152 | tl_assert(a1 < ADDR0_COUNT); |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 153 | tl_assert(size > 0); |
| 154 | tl_assert(a1 + size <= ADDR0_COUNT); |
| 155 | tl_assert(UWORD_MSB(a1) == UWORD_MSB(a1 + size - 1)); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 156 | #endif |
| 157 | return (bm0[a1 >> BITS_PER_BITS_PER_UWORD] |
bart | f8bc71d | 2008-03-15 11:42:34 +0000 | [diff] [blame] | 158 | & ((((UWord)1 << size) - 1) << UWORD_LSB(a1))); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 159 | } |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 160 | |
bart | adbdf14 | 2008-03-19 17:00:12 +0000 | [diff] [blame] | 161 | |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 162 | |
| 163 | /*********************************************************************/ |
| 164 | /* Functions for manipulating a struct bitmap. */ |
bart | adbdf14 | 2008-03-19 17:00:12 +0000 | [diff] [blame] | 165 | /*********************************************************************/ |
| 166 | |
| 167 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 168 | /* Second level bitmap. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 169 | struct bitmap2 |
| 170 | { |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 171 | Addr addr; ///< address >> ADDR0_BITS |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 172 | int refcnt; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 173 | struct bitmap1 bm1; |
| 174 | }; |
| 175 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 176 | /* One node of bitmap::oset. */ |
| 177 | struct bitmap2ref |
| 178 | { |
| 179 | Addr addr; ///< address >> ADDR0_BITS |
| 180 | struct bitmap2* bm2; |
| 181 | }; |
| 182 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 183 | struct bm_cache_elem |
| 184 | { |
| 185 | Addr a1; |
| 186 | struct bitmap2* bm2; |
| 187 | }; |
| 188 | |
| 189 | #define N_CACHE_ELEM 4 |
| 190 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 191 | /* Complete bitmap. */ |
| 192 | struct bitmap |
| 193 | { |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 194 | struct bm_cache_elem cache[N_CACHE_ELEM]; |
| 195 | OSet* oset; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 196 | }; |
| 197 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 198 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 199 | static struct bitmap2* bm2_new(const UWord a1); |
| 200 | static struct bitmap2* bm2_make_exclusive(struct bitmap* const bm, |
| 201 | struct bitmap2ref* const bm2ref); |
| 202 | |
| 203 | |
| 204 | #if 0 |
| 205 | /** Bitmap invariant check. |
| 206 | * |
| 207 | * @return 1 if the invariant is satisfied, 0 if not. |
| 208 | */ |
| 209 | static __inline__ |
| 210 | int bm_check(const struct bitmap* const bm) |
| 211 | { |
| 212 | struct bitmap2_ref* bm2ref; |
| 213 | |
| 214 | tl_assert(bm); |
| 215 | |
| 216 | return (bm->cache[0].a1 == 0 |
| 217 | && bm->cache[1].a1 == 0 |
| 218 | || ((bm2ref = VG_(OSetGen_Lookup)(bm->oset, &bm->last_lookup_a1)) |
| 219 | && bm2ref->bm2 |
| 220 | && bm->last_lookup_a1 == bm2ref->bm2->addr |
| 221 | && bm2ref->bm2->refcnt >= 1) |
| 222 | ); |
| 223 | } |
| 224 | #endif |
| 225 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 226 | static __inline__ |
| 227 | struct bitmap2* bm_cache_lookup(const struct bitmap* const bm, const UWord a1) |
| 228 | { |
| 229 | tl_assert(bm); |
| 230 | |
| 231 | #if N_CACHE_ELEM > 8 |
| 232 | #error Please update the code below. |
| 233 | #endif |
| 234 | #if N_CACHE_ELEM >= 1 |
| 235 | if (a1 == bm->cache[0].a1) |
| 236 | return bm->cache[0].bm2; |
| 237 | #endif |
| 238 | #if N_CACHE_ELEM >= 2 |
| 239 | if (a1 == bm->cache[1].a1) |
| 240 | return bm->cache[1].bm2; |
| 241 | #endif |
| 242 | #if N_CACHE_ELEM >= 3 |
| 243 | if (a1 == bm->cache[2].a1) |
| 244 | return bm->cache[2].bm2; |
| 245 | #endif |
| 246 | #if N_CACHE_ELEM >= 4 |
| 247 | if (a1 == bm->cache[3].a1) |
| 248 | return bm->cache[3].bm2; |
| 249 | #endif |
| 250 | #if N_CACHE_ELEM >= 5 |
| 251 | if (a1 == bm->cache[4].a1) |
| 252 | return bm->cache[4].bm2; |
| 253 | #endif |
| 254 | #if N_CACHE_ELEM >= 6 |
| 255 | if (a1 == bm->cache[5].a1) |
| 256 | return bm->cache[5].bm2; |
| 257 | #endif |
| 258 | #if N_CACHE_ELEM >= 7 |
| 259 | if (a1 == bm->cache[6].a1) |
| 260 | return bm->cache[6].bm2; |
| 261 | #endif |
| 262 | #if N_CACHE_ELEM >= 8 |
| 263 | if (a1 == bm->cache[7].a1) |
| 264 | return bm->cache[7].bm2; |
| 265 | #endif |
| 266 | return 0; |
| 267 | } |
| 268 | |
| 269 | static __inline__ |
| 270 | void bm_update_cache(struct bitmap* const bm, |
| 271 | const UWord a1, |
| 272 | struct bitmap2* const bm2) |
| 273 | { |
| 274 | tl_assert(bm); |
| 275 | |
| 276 | #if N_CACHE_ELEM > 8 |
| 277 | #error Please update the code below. |
| 278 | #endif |
| 279 | #if N_CACHE_ELEM >= 8 |
| 280 | bm->cache[7] = bm->cache[6]; |
| 281 | #endif |
| 282 | #if N_CACHE_ELEM >= 7 |
| 283 | bm->cache[6] = bm->cache[5]; |
| 284 | #endif |
| 285 | #if N_CACHE_ELEM >= 6 |
| 286 | bm->cache[5] = bm->cache[4]; |
| 287 | #endif |
| 288 | #if N_CACHE_ELEM >= 5 |
| 289 | bm->cache[4] = bm->cache[3]; |
| 290 | #endif |
| 291 | #if N_CACHE_ELEM >= 4 |
| 292 | bm->cache[3] = bm->cache[2]; |
| 293 | #endif |
| 294 | #if N_CACHE_ELEM >= 3 |
| 295 | bm->cache[2] = bm->cache[1]; |
| 296 | #endif |
| 297 | #if N_CACHE_ELEM >= 2 |
| 298 | bm->cache[1] = bm->cache[0]; |
| 299 | #endif |
| 300 | bm->cache[0].a1 = a1; |
| 301 | bm->cache[0].bm2 = bm2; |
| 302 | } |
| 303 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 304 | /** Look up the address a1 in bitmap bm and return a pointer to a potentially |
| 305 | * shared second level bitmap. The bitmap where the returned pointer points |
| 306 | * at may not be modified by the caller. |
| 307 | * |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 308 | * @param a1 client address shifted right by ADDR0_BITS. |
| 309 | * @param bm bitmap pointer. |
| 310 | */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 311 | static __inline__ |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 312 | const struct bitmap2* bm2_lookup(const struct bitmap* const bm, const UWord a1) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 313 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 314 | struct bitmap2ref* bm2ref; |
| 315 | |
| 316 | tl_assert(bm); |
| 317 | if (a1 == bm->cache[0].a1) |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 318 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 319 | return bm->cache[0].bm2; |
| 320 | } |
| 321 | if (a1 == bm->cache[1].a1) |
| 322 | { |
| 323 | return bm->cache[1].bm2; |
| 324 | } |
| 325 | bm2ref = VG_(OSetGen_Lookup)(bm->oset, &a1); |
| 326 | if (bm2ref) |
| 327 | { |
| 328 | struct bitmap2* const bm2 = bm2ref->bm2; |
| 329 | bm_update_cache(*(struct bitmap**)&bm, a1, bm2); |
| 330 | return bm2; |
| 331 | } |
| 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | /** Look up the address a1 in bitmap bm and return a pointer to a second |
| 336 | * level bitmap that is not shared and hence may be modified. |
| 337 | * |
| 338 | * @param a1 client address shifted right by ADDR0_BITS. |
| 339 | * @param bm bitmap pointer. |
| 340 | */ |
| 341 | static __inline__ |
| 342 | struct bitmap2* |
| 343 | bm2_lookup_exclusive(const struct bitmap* const bm, const UWord a1) |
| 344 | { |
| 345 | struct bitmap2ref* bm2ref; |
| 346 | struct bitmap2* bm2; |
| 347 | |
| 348 | bm2ref = 0; |
| 349 | bm2 = bm_cache_lookup(bm, a1); |
| 350 | if (bm2) |
| 351 | { |
| 352 | if (bm2->refcnt > 1) |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 353 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 354 | bm2ref = VG_(OSetGen_Lookup)(bm->oset, &a1); |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 355 | } |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 356 | } |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 357 | else |
| 358 | { |
| 359 | bm2ref = VG_(OSetGen_Lookup)(bm->oset, &a1); |
| 360 | if (bm2ref) |
| 361 | { |
| 362 | bm2 = bm2ref->bm2; |
| 363 | } |
| 364 | else |
| 365 | { |
| 366 | return 0; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | tl_assert(bm2); |
| 371 | |
| 372 | if (bm2->refcnt > 1) |
| 373 | { |
| 374 | tl_assert(bm2ref); |
| 375 | bm2 = bm2_make_exclusive(*(struct bitmap**)&bm, bm2ref); |
| 376 | } |
| 377 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 378 | return bm2; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 379 | } |
| 380 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 381 | /** Look up the address a1 in bitmap bm. The returned second level bitmap has |
| 382 | * reference count one and hence may be modified. |
| 383 | * |
| 384 | * @param a1 client address shifted right by ADDR0_BITS. |
| 385 | * @param bm bitmap pointer. |
| 386 | */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 387 | static __inline__ |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 388 | struct bitmap2* bm2_insert(const struct bitmap* const bm, const UWord a1) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 389 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 390 | struct bitmap2ref* bm2ref; |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 391 | struct bitmap2* bm2; |
| 392 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 393 | bm2ref = VG_(OSetGen_AllocNode)(bm->oset, sizeof(*bm2ref)); |
| 394 | bm2ref->addr = a1; |
| 395 | bm2 = bm2_new(a1); |
| 396 | bm2ref->bm2 = bm2; |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 397 | VG_(memset)(&bm2->bm1, 0, sizeof(bm2->bm1)); |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 398 | VG_(OSetGen_Insert)(bm->oset, bm2ref); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 399 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 400 | bm_update_cache(*(struct bitmap**)&bm, a1, bm2); |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 401 | |
| 402 | return bm2; |
| 403 | } |
| 404 | |
| 405 | /** Insert a new node in bitmap bm that points to the second level bitmap |
| 406 | * *bm2. This means that *bm2 becomes shared over two or more bitmaps. |
| 407 | */ |
| 408 | static __inline__ |
| 409 | struct bitmap2* bm2_insert_addref(const struct bitmap* const bm, |
| 410 | struct bitmap2* const bm2) |
| 411 | { |
| 412 | struct bitmap2ref* bm2ref; |
| 413 | |
| 414 | tl_assert(bm); |
| 415 | //tl_assert(VG_(OSetGen_Lookup)(bm->oset, &bm2->addr) == 0); |
| 416 | bm2ref = VG_(OSetGen_AllocNode)(bm->oset, sizeof(*bm2ref)); |
| 417 | bm2ref->addr = bm2->addr; |
| 418 | bm2ref->bm2 = bm2; |
| 419 | bm2->refcnt++; |
| 420 | VG_(OSetGen_Insert)(bm->oset, bm2ref); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 421 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 422 | bm_update_cache(*(struct bitmap**)&bm, bm2->addr, bm2); |
| 423 | |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 424 | return bm2; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 425 | } |
| 426 | |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 427 | /** Look up the address a1 in bitmap bm, and insert it if not found. |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 428 | * The returned second level bitmap may not be modified. |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 429 | * |
| 430 | * @param a1 client address shifted right by ADDR0_BITS. |
| 431 | * @param bm bitmap pointer. |
| 432 | */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 433 | static __inline__ |
| 434 | struct bitmap2* bm2_lookup_or_insert(const struct bitmap* const bm, |
| 435 | const UWord a1) |
| 436 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 437 | struct bitmap2ref* bm2ref; |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 438 | struct bitmap2* bm2; |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 439 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 440 | tl_assert(bm); |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 441 | bm2 = bm_cache_lookup(bm, a1); |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 442 | if (bm2 == 0) |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 443 | { |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 444 | bm2ref = VG_(OSetGen_Lookup)(bm->oset, &a1); |
| 445 | if (bm2ref) |
| 446 | { |
| 447 | bm2 = bm2ref->bm2; |
| 448 | } |
| 449 | else |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 450 | { |
| 451 | bm2 = bm2_insert(bm, a1); |
| 452 | } |
| 453 | bm_update_cache(*(struct bitmap**)&bm, a1, bm2); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 454 | } |
bart | 0008f5b | 2008-03-22 17:07:39 +0000 | [diff] [blame] | 455 | return bm2; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 456 | } |
| 457 | |
bart | f647d34 | 2008-03-24 19:12:12 +0000 | [diff] [blame] | 458 | /** Look up the address a1 in bitmap bm, and insert it if not found. |
| 459 | * The returned second level bitmap may be modified. |
| 460 | * |
| 461 | * @param a1 client address shifted right by ADDR0_BITS. |
| 462 | * @param bm bitmap pointer. |
| 463 | */ |
| 464 | static __inline__ |
| 465 | struct bitmap2* bm2_lookup_or_insert_exclusive(struct bitmap* const bm, |
| 466 | const UWord a1) |
| 467 | { |
| 468 | struct bitmap2* bm2; |
| 469 | |
| 470 | tl_assert(bm); |
| 471 | bm2 = (struct bitmap2*)bm2_lookup_or_insert(bm, a1); |
| 472 | tl_assert(bm2); |
| 473 | if (bm2->refcnt > 1) |
| 474 | { |
| 475 | struct bitmap2ref* bm2ref; |
| 476 | bm2ref = VG_(OSetGen_Lookup)(bm->oset, &a1); |
| 477 | bm2 = bm2_make_exclusive(bm, bm2ref); |
| 478 | } |
| 479 | return bm2; |
| 480 | } |
| 481 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 482 | |
bart | 33e56c9 | 2008-03-24 06:41:30 +0000 | [diff] [blame] | 483 | #endif /* __DRD_BITMAP_H */ |