my_bool test_compare(MY_BITMAP *map, uint bitsize) { MY_BITMAP map2; uint32 map2buf[MAX_TESTED_BITMAP_SIZE]; uint i, test_bit; uint no_loops= bitsize > 128 ? 128 : bitsize; if (bitmap_init(&map2, map2buf, bitsize, FALSE)) { diag("init error for bitsize %d", bitsize); return TRUE; } /* Test all 4 possible combinations of set/unset bits. */ for (i=0; i < no_loops; i++) { test_bit=get_rand_bit(bitsize); bitmap_clear_bit(map, test_bit); bitmap_clear_bit(&map2, test_bit); if (!bitmap_is_subset(map, &map2)) goto error_is_subset; bitmap_set_bit(map, test_bit); if (bitmap_is_subset(map, &map2)) goto error_is_subset; bitmap_set_bit(&map2, test_bit); if (!bitmap_is_subset(map, &map2)) goto error_is_subset; bitmap_clear_bit(map, test_bit); if (!bitmap_is_subset(map, &map2)) goto error_is_subset; /* Note that test_bit is not cleared i map2. */ } bitmap_clear_all(map); bitmap_clear_all(&map2); /* Test all 4 possible combinations of set/unset bits. */ for (i=0; i < no_loops; i++) { test_bit=get_rand_bit(bitsize); if (bitmap_is_overlapping(map, &map2)) goto error_is_overlapping; bitmap_set_bit(map, test_bit); if (bitmap_is_overlapping(map, &map2)) goto error_is_overlapping; bitmap_set_bit(&map2, test_bit); if (!bitmap_is_overlapping(map, &map2)) goto error_is_overlapping; bitmap_clear_bit(map, test_bit); if (bitmap_is_overlapping(map, &map2)) goto error_is_overlapping; bitmap_clear_bit(&map2, test_bit); /* Note that test_bit is not cleared i map2. */ } return FALSE; error_is_subset: diag("is_subset error bitsize = %u", bitsize); return TRUE; error_is_overlapping: diag("is_overlapping error bitsize = %u", bitsize); return TRUE; }
my_bool test_prefix(MY_BITMAP *map, uint bitsize) { uint i, j, test_bit; uint no_loops= bitsize > 128 ? 128 : bitsize; for (i=0; i < no_loops; i++) { test_bit=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit); if (!bitmap_is_prefix(map, test_bit)) goto error1; bitmap_clear_all(map); for (j=0; j < test_bit; j++) bitmap_set_bit(map, j); if (!bitmap_is_prefix(map, test_bit)) goto error2; bitmap_set_all(map); for (j=bitsize - 1; ~(j-test_bit); j--) bitmap_clear_bit(map, j); if (!bitmap_is_prefix(map, test_bit)) goto error3; bitmap_clear_all(map); } for (i=0; i < bitsize; i++) { if (bitmap_is_prefix(map, i + 1)) goto error4; bitmap_set_bit(map, i); if (!bitmap_is_prefix(map, i + 1)) goto error5; test_bit=get_rand_bit(bitsize); bitmap_set_bit(map, test_bit); if (test_bit <= i && !bitmap_is_prefix(map, i + 1)) goto error5; else if (test_bit > i) { if (bitmap_is_prefix(map, i + 1)) goto error4; bitmap_clear_bit(map, test_bit); } } return FALSE; error1: diag("prefix1 error bitsize = %u, prefix_size = %u", bitsize,test_bit); return TRUE; error2: diag("prefix2 error bitsize = %u, prefix_size = %u", bitsize,test_bit); return TRUE; error3: diag("prefix3 error bitsize = %u, prefix_size = %u", bitsize,test_bit); return TRUE; error4: diag("prefix4 error bitsize = %u, i = %u", bitsize,i); return TRUE; error5: diag("prefix5 error bitsize = %u, i = %u", bitsize,i); return TRUE; }
/** * \brief sets the memory allocation policy for the calling task to local allocation. */ void numa_set_localalloc(void) { assert(numa_alloc_bind_mask); assert(numa_alloc_interleave_mask); /* clear interleave mode */ bitmap_clear_all(numa_alloc_interleave_mask); bitmap_clear_all(numa_alloc_bind_mask); bitmap_set_bit(numa_alloc_bind_mask, numa_current_node()); }
/** * \brief sets the memory allocation mask. * * \param nodemask bitmap representing the nodes * * The task will only allocate memory from the nodes set in nodemask. * * an empty mask or not allowed nodes in the mask will result in an error */ errval_t numa_set_membind(struct bitmap *nodemask) { assert(numa_alloc_bind_mask); assert(numa_alloc_interleave_mask); if (!nodemask) { return NUMA_ERR_BITMAP_PARSE; } if (bitmap_get_nbits(nodemask) < NUMA_MAX_NUMNODES) { NUMA_WARNING("supplied interleave mask (%p) has to less bits!", nodemask); return NUMA_ERR_BITMAP_RANGE; } /* copy new membind mask and clear out invalid bits */ bitmap_copy(numa_alloc_bind_mask, nodemask); bitmap_clear_range(numa_alloc_bind_mask, numa_num_configured_nodes(), bitmap_get_nbits(numa_alloc_bind_mask)); if (bitmap_get_weight(numa_alloc_bind_mask) == 0) { /* cannot bind to no node, restore with all nodes pointer*/ bitmap_copy(numa_alloc_bind_mask, numa_all_nodes_ptr); return NUMA_ERR_NUMA_MEMBIND; } /* disable interleaving mode */ bitmap_clear_all(numa_alloc_interleave_mask); return SYS_ERR_OK; }
/** * \brief sets the memory interleave mask for the current task to nodemask * * \param nodemask bitmask representing the nodes * * All new memory allocations are page interleaved over all nodes in the interleave * mask. Interleaving can be turned off again by passing an empty mask. * * This bitmask is considered to be a hint. Fallback to other nodes may be possible */ void numa_set_interleave_mask(struct bitmap *nodemask) { assert(numa_alloc_interleave_mask); if (!nodemask) { bitmap_clear_all(numa_alloc_interleave_mask); return; } if (bitmap_get_nbits(nodemask) < NUMA_MAX_NUMNODES) { NUMA_WARNING("supplied interleave mask (%p) has to less bits!", nodemask); return; } bitmap_copy(numa_alloc_interleave_mask, nodemask); /* clear out the invalid nodes */ bitmap_clear_range(numa_alloc_interleave_mask, numa_num_configured_nodes(), bitmap_get_nbits(numa_alloc_interleave_mask)); /* clear the bind mask as we are using interleaving mode now */ bitmap_clear_all(numa_alloc_bind_mask); }
my_bool do_test(uint bitsize) { MY_BITMAP map; uint32 buf[MAX_TESTED_BITMAP_SIZE]; if (bitmap_init(&map, buf, bitsize, FALSE)) { diag("init error for bitsize %d", bitsize); goto error; } if (test_set_get_clear_bit(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_flip_bit(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_get_all_bits(&map, bitsize)) goto error; bitmap_clear_all(&map); if (test_compare_operators(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_count_bits_set(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_get_first_bit(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_get_next_bit(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_prefix(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_compare(&map,bitsize)) goto error; bitmap_clear_all(&map); if (test_intersect(&map,bitsize)) goto error; return FALSE; error: return TRUE; }
my_bool test_get_first_bit(MY_BITMAP *map, uint bitsize) { uint i, test_bit= 0; uint no_loops= bitsize > 128 ? 128 : bitsize; bitmap_set_all(map); for (i=0; i < bitsize; i++) bitmap_clear_bit(map, i); if (bitmap_get_first_set(map) != MY_BIT_NONE) goto error1; bitmap_clear_all(map); for (i=0; i < bitsize; i++) bitmap_set_bit(map, i); if (bitmap_get_first(map) != MY_BIT_NONE) goto error2; bitmap_clear_all(map); for (i=0; i < no_loops; i++) { test_bit=get_rand_bit(bitsize); bitmap_set_bit(map, test_bit); if (bitmap_get_first_set(map) != test_bit) goto error1; bitmap_set_all(map); bitmap_clear_bit(map, test_bit); if (bitmap_get_first(map) != test_bit) goto error2; bitmap_clear_all(map); } return FALSE; error1: diag("get_first_set error bitsize=%u,prefix_size=%u",bitsize,test_bit); return TRUE; error2: diag("get_first error bitsize= %u, prefix_size= %u",bitsize,test_bit); return TRUE; }
my_bool test_get_next_bit(MY_BITMAP *map, uint bitsize) { uint i, j, test_bit; uint no_loops= bitsize > 128 ? 128 : bitsize; for (i=0; i < no_loops; i++) { test_bit=get_rand_bit(bitsize); for (j=0; j < test_bit; j++) bitmap_set_next(map); if (!bitmap_is_prefix(map, test_bit)) goto error1; bitmap_clear_all(map); } return FALSE; error1: diag("get_next error bitsize= %u, prefix_size= %u", bitsize,test_bit); return TRUE; }
my_bool test_get_all_bits(MY_BITMAP *map, uint bitsize) { uint i; bitmap_set_all(map); if (!bitmap_is_set_all(map)) goto error1; if (!bitmap_is_prefix(map, bitsize)) goto error5; bitmap_clear_all(map); if (!bitmap_is_clear_all(map)) goto error2; if (!bitmap_is_prefix(map, 0)) goto error6; for (i=0; i<bitsize;i++) bitmap_set_bit(map, i); if (!bitmap_is_set_all(map)) goto error3; for (i=0; i<bitsize;i++) bitmap_clear_bit(map, i); if (!bitmap_is_clear_all(map)) goto error4; return FALSE; error1: diag("Error in set_all, bitsize = %u", bitsize); return TRUE; error2: diag("Error in clear_all, bitsize = %u", bitsize); return TRUE; error3: diag("Error in bitmap_is_set_all, bitsize = %u", bitsize); return TRUE; error4: diag("Error in bitmap_is_clear_all, bitsize = %u", bitsize); return TRUE; error5: diag("Error in set_all through set_prefix, bitsize = %u", bitsize); return TRUE; error6: diag("Error in clear_all through set_prefix, bitsize = %u", bitsize); return TRUE; }
my_bool test_compare_operators(MY_BITMAP *map, uint bitsize) { uint i, j, test_bit1, test_bit2, test_bit3,test_bit4; uint no_loops= bitsize > 128 ? 128 : bitsize; MY_BITMAP map2_obj, map3_obj; MY_BITMAP *map2= &map2_obj, *map3= &map3_obj; uint32 map2buf[MAX_TESTED_BITMAP_SIZE]; uint32 map3buf[MAX_TESTED_BITMAP_SIZE]; bitmap_init(&map2_obj, map2buf, bitsize, FALSE); bitmap_init(&map3_obj, map3buf, bitsize, FALSE); bitmap_clear_all(map2); bitmap_clear_all(map3); for (i=0; i < no_loops; i++) { test_bit1=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit1); test_bit2=get_rand_bit(bitsize); bitmap_set_prefix(map2, test_bit2); bitmap_intersect(map, map2); test_bit3= test_bit2 < test_bit1 ? test_bit2 : test_bit1; bitmap_set_prefix(map3, test_bit3); if (!bitmap_cmp(map, map3)) goto error1; bitmap_clear_all(map); bitmap_clear_all(map2); bitmap_clear_all(map3); test_bit1=get_rand_bit(bitsize); test_bit2=get_rand_bit(bitsize); test_bit3=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit1); bitmap_set_prefix(map2, test_bit2); test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; bitmap_set_prefix(map3, test_bit3); bitmap_union(map, map2); if (!bitmap_cmp(map, map3)) goto error2; bitmap_clear_all(map); bitmap_clear_all(map2); bitmap_clear_all(map3); test_bit1=get_rand_bit(bitsize); test_bit2=get_rand_bit(bitsize); test_bit3=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit1); bitmap_set_prefix(map2, test_bit2); bitmap_xor(map, map2); test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; test_bit4= test_bit2 < test_bit1 ? test_bit2 : test_bit1; bitmap_set_prefix(map3, test_bit3); for (j=0; j < test_bit4; j++) bitmap_clear_bit(map3, j); if (!bitmap_cmp(map, map3)) goto error3; bitmap_clear_all(map); bitmap_clear_all(map2); bitmap_clear_all(map3); test_bit1=get_rand_bit(bitsize); test_bit2=get_rand_bit(bitsize); test_bit3=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit1); bitmap_set_prefix(map2, test_bit2); bitmap_subtract(map, map2); if (test_bit2 < test_bit1) { bitmap_set_prefix(map3, test_bit1); for (j=0; j < test_bit2; j++) bitmap_clear_bit(map3, j); } if (!bitmap_cmp(map, map3)) goto error4; bitmap_clear_all(map); bitmap_clear_all(map2); bitmap_clear_all(map3); test_bit1=get_rand_bit(bitsize); bitmap_set_prefix(map, test_bit1); bitmap_invert(map); bitmap_set_all(map3); for (j=0; j < test_bit1; j++) bitmap_clear_bit(map3, j); if (!bitmap_cmp(map, map3)) goto error5; bitmap_clear_all(map); bitmap_clear_all(map3); } return FALSE; error1: diag("intersect error bitsize=%u,size1=%u,size2=%u", bitsize, test_bit1,test_bit2); return TRUE; error2: diag("union error bitsize=%u,size1=%u,size2=%u", bitsize, test_bit1,test_bit2); return TRUE; error3: diag("xor error bitsize=%u,size1=%u,size2=%u", bitsize, test_bit1,test_bit2); return TRUE; error4: diag("subtract error bitsize=%u,size1=%u,size2=%u", bitsize, test_bit1,test_bit2); return TRUE; error5: diag("invert error bitsize=%u,size=%u", bitsize, test_bit1); return TRUE; }