From ed06d5e442e2b600bc6093a6dcf9e98ab0cab785 Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Fri, 31 Oct 2014 13:37:45 +0100 Subject: [PATCH] [mc] Make MC_resolve_subtype() and MC_resolve_subtype() static functions of mc_dwarf.c Those functions belong to the mc_dwarf.c layer and are only used there anyway. Move them here, mark them as static in order to reduce the number of exported symbols and reduce the cross-layers dependencies. --- src/mc/mc_checkpoint.c | 50 ++++-------------------------------------- src/mc/mc_dwarf.c | 45 +++++++++++++++++++++++++++++++++++++ src/mc/mc_private.h | 1 - 3 files changed, 49 insertions(+), 47 deletions(-) diff --git a/src/mc/mc_checkpoint.c b/src/mc/mc_checkpoint.c index 07e80ab57c..3bda8f70cb 100644 --- a/src/mc/mc_checkpoint.c +++ b/src/mc/mc_checkpoint.c @@ -102,7 +102,7 @@ void MC_free_snapshot(mc_snapshot_t snapshot) /******************************* Snapshot regions ********************************/ /*********************************************************************************/ - static mc_mem_region_t mc_region_new_dense(int type, void *start_addr, void* permanent_addr, size_t size, mc_mem_region_t ref_reg) +static mc_mem_region_t mc_region_new_dense(int type, void *start_addr, void* permanent_addr, size_t size, mc_mem_region_t ref_reg) { mc_mem_region_t new_reg = xbt_new(s_mc_mem_region_t, 1); new_reg->start_addr = start_addr; @@ -245,50 +245,6 @@ void MC_init_memory_map_info() } -/** \brief Fill/lookup the "subtype" field. - */ -static void MC_resolve_subtype(mc_object_info_t info, dw_type_t type) -{ - - if (type->dw_type_id == NULL) - return; - type->subtype = xbt_dict_get_or_null(info->types, type->dw_type_id); - if (type->subtype == NULL) - return; - if (type->subtype->byte_size != 0) - return; - if (type->subtype->name == NULL) - return; - // Try to find a more complete description of the type: - // We need to fix in order to support C++. - - dw_type_t subtype = - xbt_dict_get_or_null(info->full_types_by_name, type->subtype->name); - if (subtype != NULL) { - type->subtype = subtype; - } - -} - -void MC_post_process_types(mc_object_info_t info) -{ - xbt_dict_cursor_t cursor = NULL; - char *origin; - dw_type_t type; - - // Lookup "subtype" field: - xbt_dict_foreach(info->types, cursor, origin, type) { - MC_resolve_subtype(info, type); - - dw_type_t member; - unsigned int i = 0; - if (type->members != NULL) - xbt_dynar_foreach(type->members, i, member) { - MC_resolve_subtype(info, member); - } - } -} - /** \brief Fills the position of the segments (executable, read-only, read/write). * * TODO, use dl_iterate_phdr to be more robust @@ -609,7 +565,9 @@ static void MC_snapshot_ignore_restore(mc_snapshot_t snapshot) int mc_important_snapshot(mc_snapshot_t snapshot) { // We need this snapshot in order to know which - // pages needs to be stored in the next snapshot: + // pages needs to be stored in the next snapshot. + // This field is only non-NULL when using soft-dirty + // page tracking. if (snapshot == mc_model_checker->parent_snapshot) return true; diff --git a/src/mc/mc_dwarf.c b/src/mc/mc_dwarf.c index c1fd44722d..a5b02e7939 100644 --- a/src/mc/mc_dwarf.c +++ b/src/mc/mc_dwarf.c @@ -1259,6 +1259,51 @@ static void MC_post_process_functions(mc_object_info_t info) } } + +/** \brief Fill/lookup the "subtype" field. + */ +static void MC_resolve_subtype(mc_object_info_t info, dw_type_t type) +{ + + if (type->dw_type_id == NULL) + return; + type->subtype = xbt_dict_get_or_null(info->types, type->dw_type_id); + if (type->subtype == NULL) + return; + if (type->subtype->byte_size != 0) + return; + if (type->subtype->name == NULL) + return; + // Try to find a more complete description of the type: + // We need to fix in order to support C++. + + dw_type_t subtype = + xbt_dict_get_or_null(info->full_types_by_name, type->subtype->name); + if (subtype != NULL) { + type->subtype = subtype; + } + +} + +static void MC_post_process_types(mc_object_info_t info) +{ + xbt_dict_cursor_t cursor = NULL; + char *origin; + dw_type_t type; + + // Lookup "subtype" field: + xbt_dict_foreach(info->types, cursor, origin, type) { + MC_resolve_subtype(info, type); + + dw_type_t member; + unsigned int i = 0; + if (type->members != NULL) + xbt_dynar_foreach(type->members, i, member) { + MC_resolve_subtype(info, member); + } + } +} + /** \brief Finds informations about a given shared object/executable */ mc_object_info_t MC_find_object_info(memory_map_t maps, char *name, int executable) diff --git a/src/mc/mc_private.h b/src/mc/mc_private.h index a73fb2ba38..4826f4a8d7 100644 --- a/src/mc/mc_private.h +++ b/src/mc/mc_private.h @@ -513,7 +513,6 @@ extern mc_object_info_t mc_object_infos[2]; extern size_t mc_object_infos_size; void MC_find_object_address(memory_map_t maps, mc_object_info_t result); -void MC_post_process_types(mc_object_info_t info); void MC_post_process_object_info(mc_object_info_t info); // ***** Expressions -- 2.20.1