X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/babb079cb238a644531e4cf5aa2dd045d8790b3c..d947ff7466b473eeec602007934f8336a9b17f3c:/src/mc/mc_compare.c diff --git a/src/mc/mc_compare.c b/src/mc/mc_compare.c index 627d2f80af..f016ad3550 100644 --- a/src/mc/mc_compare.c +++ b/src/mc/mc_compare.c @@ -10,14 +10,11 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_compare, mc, "Logging specific to mc_compare"); -static int data_bss_program_region_compare(void *d1, void *d2, size_t size); -static int data_bss_libsimgrid_region_compare(void *d1, void *d2, size_t size); static int heap_region_compare(void *d1, void *d2, size_t size); static int compare_stack(stack_region_t s1, stack_region_t s2, void *sp1, void *sp2, void *heap1, void *heap2, xbt_dynar_t equals); static int is_heap_equality(xbt_dynar_t equals, void *a1, void *a2); static size_t heap_ignore_size(void *address); -static size_t data_bss_ignore_size(void *address); static void stack_region_free(stack_region_t s); static void heap_equality_free(heap_equality_t e); @@ -45,95 +42,66 @@ static size_t heap_ignore_size(void *address){ return 0; } -static size_t data_bss_ignore_size(void *address){ - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1; - mc_data_bss_ignore_variable_t var; - - while(start <= end){ - cursor = (start + end) / 2; - var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t); - if(var->address == address) - return var->size; - if(var->address < address){ - if((void *)((char *)var->address + var->size) > address) - return (char *)var->address + var->size - (char*)address; - else - start = cursor + 1; - } - if(var->address > address) - end = cursor - 1; - } - - return 0; -} - -static int data_bss_program_region_compare(void *d1, void *d2, size_t size){ - - size_t i = 0, ignore_size = 0; - int pointer_align; - void *addr_pointed1 = NULL, *addr_pointed2 = NULL; - - for(i=0; i 0){ - i = i + ignore_size; - continue; - }else if((ignore_size = data_bss_ignore_size((char *)start_bss_binary+i)) > 0){ - i = i + ignore_size; - continue; - } - pointer_align = (i / sizeof(void*)) * sizeof(void*); - addr_pointed1 = *((void **)((char *)d1 + pointer_align)); - addr_pointed2 = *((void **)((char *)d2 + pointer_align)); - if((addr_pointed1 > start_plt_binary && addr_pointed1 < end_plt_binary) || (addr_pointed2 > start_plt_binary && addr_pointed2 < end_plt_binary)){ - continue; - }else{ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)){ - XBT_VERB("Different byte (offset=%zu) (%p - %p) in data program region", i, (char *)d1 + i, (char *)d2 + i); - XBT_VERB("Addresses pointed : %p - %p", addr_pointed1, addr_pointed2); - } - return 1; - } - } - } - - return 0; -} +static int compare_global_variables(int region_type, void *d1, void *d2){ -static int data_bss_libsimgrid_region_compare(void *d1, void *d2, size_t size){ - - size_t i = 0, ignore_size = 0; - int pointer_align; + unsigned int cursor = 0; + size_t offset; + int i = 0; + global_variable_t current_var; + int pointer_align; void *addr_pointed1 = NULL, *addr_pointed2 = NULL; - for(i=0; i 0){ - i = i + ignore_size; - continue; - }else if((ignore_size = data_bss_ignore_size((char *)start_bss_libsimgrid+i)) > 0){ - i = i + ignore_size; + if(region_type == 1){ /* libsimgrid */ + xbt_dynar_foreach(mc_global_variables, cursor, current_var){ + if(current_var->address < start_data_libsimgrid) continue; + offset = (char *)current_var->address - (char *)start_data_libsimgrid; + i = 0; + while(i < current_var->size){ + if(memcmp((char*)d1 + offset + i, (char*)d2 + offset + i, 1) != 0){ + pointer_align = (i / sizeof(void*)) * sizeof(void*); + addr_pointed1 = *((void **)((char *)d1 + offset + pointer_align)); + addr_pointed2 = *((void **)((char *)d2 + offset + pointer_align)); + if((addr_pointed1 > start_plt_libsimgrid && addr_pointed1 < end_plt_libsimgrid) || (addr_pointed2 > start_plt_libsimgrid && addr_pointed2 < end_plt_libsimgrid)){ + i = current_var->size; + continue; + }else{ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)){ + XBT_VERB("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); + } + return 1; + } + } + i++; } - pointer_align = (i / sizeof(void*)) * sizeof(void*); - addr_pointed1 = *((void **)((char *)d1 + pointer_align)); - addr_pointed2 = *((void **)((char *)d2 + pointer_align)); - if((addr_pointed1 > start_plt_libsimgrid && addr_pointed1 < end_plt_libsimgrid) || (addr_pointed2 > start_plt_libsimgrid && addr_pointed2 < end_plt_libsimgrid)){ - continue; - }else if(addr_pointed1 >= raw_heap && addr_pointed1 <= end_raw_heap && addr_pointed2 >= raw_heap && addr_pointed2 <= end_raw_heap){ - continue; - }else{ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)){ - XBT_VERB("Different byte (offset=%zu) (%p - %p) in libsimgrid region", i, (char *)d1 + i, (char *)d2 + i); - XBT_VERB("Addresses pointed : %p - %p", addr_pointed1, addr_pointed2); - } - return 1; + } + }else{ /* binary */ + xbt_dynar_foreach(mc_global_variables, cursor, current_var){ + if(current_var->address > start_data_libsimgrid) + break; + offset = (char *)current_var->address - (char *)start_data_binary; + i = 0; + while(i < current_var->size){ + if(memcmp((char*)d1 + offset + i, (char*)d2 + offset + i, 1) != 0){ + pointer_align = (i / sizeof(void*)) * sizeof(void*); + addr_pointed1 = *((void **)((char *)d1 + offset + pointer_align)); + addr_pointed2 = *((void **)((char *)d2 + offset + pointer_align)); + if((addr_pointed1 > start_plt_binary && addr_pointed1 < end_plt_binary) || (addr_pointed2 > start_plt_binary && addr_pointed2 < end_plt_binary)){ + i = current_var->size; + continue; + }else{ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)){ + XBT_VERB("Different global variable in binary : %s", current_var->name); + } + return 1; + } + } + i++; } + } } - + return 0; } @@ -179,6 +147,21 @@ int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall, return snapshot_compare(s1, s2, NULL, NULL); } +int get_heap_region_index(mc_snapshot_t s){ + int i =0; + while(i < s->num_reg){ + switch(s->regions[i]->type){ + case 0: + return i; + break; + default: + i++; + break; + } + } + return -1; +} + int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2, mc_comparison_times_t ct1, mc_comparison_times_t ct2){ int raw_mem = (mmalloc_get_current_heap() == raw_heap); @@ -321,41 +304,34 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2, mc_comparison_times_t c xbt_os_timer_stop(timer); xbt_os_timer_start(timer); } - - /* Compare program data segment(s) */ - is_diff = 0; - i = data_program_index; - while(i < s1->num_reg && s1->regions[i]->type == 2){ - if(data_bss_program_region_compare(s1->regions[i]->data, s2->regions[i]->data, s1->regions[i]->size) != 0){ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ - if(is_diff == 0){ - xbt_os_timer_stop(timer); - if(ct1 != NULL) - xbt_dynar_push_as(ct1->program_data_segment_comparison_times, double, xbt_os_timer_elapsed(timer)); - if(ct2 != NULL) - xbt_dynar_push_as(ct2->program_data_segment_comparison_times, double, xbt_os_timer_elapsed(timer)); - } - XBT_DEBUG("Different memcmp for data in program"); - errors++; - is_diff = 1; - }else{ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) - XBT_VERB("Different memcmp for data in program"); - - xbt_os_timer_free(timer); - xbt_os_timer_stop(global_timer); - if(ct1 != NULL) - xbt_dynar_push_as(ct1->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); - if(ct2 != NULL) - xbt_dynar_push_as(ct2->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); - xbt_os_timer_free(global_timer); - if(!raw_mem) - MC_UNSET_RAW_MEM; - return 1; - } + /* Compare binary global variables */ + is_diff = compare_global_variables(s1->regions[data_program_index]->type, s1->regions[data_program_index]->data, s2->regions[data_program_index]->data); + if(is_diff != 0){ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ + xbt_os_timer_stop(timer); + if(ct1 != NULL) + xbt_dynar_push_as(ct1->binary_global_variables_comparison_times, double, xbt_os_timer_elapsed(timer)); + if(ct2 != NULL) + xbt_dynar_push_as(ct2->binary_global_variables_comparison_times, double, xbt_os_timer_elapsed(timer)); + XBT_DEBUG("Different global variables in binary"); + errors++; + }else{ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) + XBT_VERB("Different global variables in binary"); + + xbt_os_timer_free(timer); + xbt_os_timer_stop(global_timer); + if(ct1 != NULL) + xbt_dynar_push_as(ct1->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); + if(ct2 != NULL) + xbt_dynar_push_as(ct2->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); + xbt_os_timer_free(global_timer); + + if(!raw_mem) + MC_UNSET_RAW_MEM; + return 1; } - i++; } if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ @@ -364,41 +340,34 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2, mc_comparison_times_t c xbt_os_timer_start(timer); } - /* Compare libsimgrid data segment(s) */ - is_diff = 0; - i = data_libsimgrid_index; - while(i < s1->num_reg && s1->regions[i]->type == 1){ - if(data_bss_libsimgrid_region_compare(s1->regions[i]->data, s2->regions[i]->data, s1->regions[i]->size) != 0){ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ - if(is_diff == 0){ - xbt_os_timer_stop(timer); - if(ct1 != NULL) - xbt_dynar_push_as(ct1->libsimgrid_data_segment_comparison_times, double, xbt_os_timer_elapsed(timer)); - if(ct2 != NULL) - xbt_dynar_push_as(ct2->libsimgrid_data_segment_comparison_times, double, xbt_os_timer_elapsed(timer)); - } - XBT_DEBUG("Different memcmp for data in libsimgrid"); - errors++; - is_diff = 1; - }else{ - if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) - XBT_VERB("Different memcmp for data in libsimgrid"); - - xbt_os_timer_free(timer); - xbt_os_timer_stop(global_timer); - if(ct1 != NULL) - xbt_dynar_push_as(ct1->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); - if(ct2 != NULL) - xbt_dynar_push_as(ct2->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); - xbt_os_timer_free(global_timer); - - if(!raw_mem) - MC_UNSET_RAW_MEM; - return 1; - } + /* Compare libsimgrid global variables */ + is_diff = compare_global_variables(s1->regions[data_libsimgrid_index]->type, s1->regions[data_libsimgrid_index]->data, s2->regions[data_libsimgrid_index]->data); + if(is_diff != 0){ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ + xbt_os_timer_stop(timer); + if(ct1 != NULL) + xbt_dynar_push_as(ct1->libsimgrid_global_variables_comparison_times, double, xbt_os_timer_elapsed(timer)); + if(ct2 != NULL) + xbt_dynar_push_as(ct2->libsimgrid_global_variables_comparison_times, double, xbt_os_timer_elapsed(timer)); + XBT_DEBUG("Different global variables in libsimgrid"); + errors++; + }else{ + if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) + XBT_VERB("Different global variables in libsimgrid"); + + xbt_os_timer_free(timer); + xbt_os_timer_stop(global_timer); + if(ct1 != NULL) + xbt_dynar_push_as(ct1->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); + if(ct2 != NULL) + xbt_dynar_push_as(ct2->snapshot_comparison_times, double, xbt_os_timer_elapsed(global_timer)); + xbt_os_timer_free(global_timer); + + if(!raw_mem) + MC_UNSET_RAW_MEM; + return 1; } - i++; - } + } if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_debug)){ if(is_diff == 0) @@ -572,8 +541,6 @@ static int compare_local_variables(char *s1, char *s2, xbt_dynar_t heap_equals){ if((strcmp(xbt_dynar_get_as(s_tokens1, 0, char *), "ip") == 0) && (strcmp(xbt_dynar_get_as(s_tokens2, 0, char *), "ip") == 0)){ ip1 = strdup(xbt_dynar_get_as(s_tokens1, 1, char *)); ip2 = strdup(xbt_dynar_get_as(s_tokens2, 1, char *)); - /*if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) - XBT_VERB("Instruction pointer : %s, Instruction pointer : %s", ip1, ip2);*/ } if(strcmp(xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)) != 0){ /* Ignore this variable ? */ @@ -587,7 +554,7 @@ static int compare_local_variables(char *s1, char *s2, xbt_dynar_t heap_equals){ addr2 = (void *) strtoul(xbt_dynar_get_as(s_tokens2, 1, char *), NULL, 16); if(is_heap_equality(heap_equals, addr1, addr2) == 0){ if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)) - XBT_VERB("Variable %s is different between stacks : %s - %s", xbt_dynar_get_as(s_tokens1, 0, char *), xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)); + XBT_VERB("Variable %s is different between stacks in %s : %s - %s", xbt_dynar_get_as(s_tokens1, 0, char *), ip1, xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)); xbt_dynar_free(&s_tokens1); xbt_dynar_free(&s_tokens2); return 1; @@ -665,6 +632,8 @@ static int compare_stack(stack_region_t s1, stack_region_t s2, void *sp1, void * } int MC_compare_snapshots(void *s1, void *s2){ + + MC_ignore_stack("self", "simcall_BODY_mc_snapshot"); return simcall_mc_compare_snapshots(s1, s2);