1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#include <aws/common/hash_table.h>
#include <aws/common/math.h>
#include <aws/common/private/hash_table_impl.h>
#include <aws/common/string.h>
#include <limits.h>
#include <proof_helpers/make_common_data_structures.h>
#include <proof_helpers/utils.h>
#include <stdio.h>
#include <stdlib.h>
int __CPROVER_file_local_hash_table_c_s_update_template_size(
struct hash_table_state *template,
size_t expected_elements);
int __CPROVER_file_local_hash_table_c_s_expand_table(struct aws_hash_table *map) {
struct hash_table_state *old_state = map->p_impl;
struct hash_table_state template = *old_state;
if (__CPROVER_file_local_hash_table_c_s_update_template_size(&template, template.size * 2) != AWS_OP_SUCCESS) {
return AWS_OP_ERR;
}
/* Don't use s_alloc_state because that will call calloc and we want non-det values for the entries */
size_t required_bytes = sizeof(struct hash_table_state) + template.size * sizeof(struct hash_table_entry);
/* An empty slot has hashcode 0. So this marks all slots as empty */
struct hash_table_state *new_state = aws_mem_acquire(template.alloc, required_bytes);
if (new_state == NULL) {
return AWS_OP_ERR;
}
struct hash_table_state *d1 = new_state;
*new_state = template;
map->p_impl = new_state;
void *d2 = map;
void *d3 = map->p_impl;
aws_mem_release(new_state->alloc, old_state);
__CPROVER_assume(aws_hash_table_is_valid(map));
size_t empty_slot_idx;
__CPROVER_assume(aws_hash_table_has_an_empty_slot(map, &empty_slot_idx));
return AWS_OP_SUCCESS;
}
|