X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4f0b473db654af3da6cc609b6d94b5b6d9652c4c..3ae4039533d80613612bb81524c164f33384df92:/src/mc/mc_snapshot.h diff --git a/src/mc/mc_snapshot.h b/src/mc/mc_snapshot.h index 4d93f1c002..0764225b2a 100644 --- a/src/mc/mc_snapshot.h +++ b/src/mc/mc_snapshot.h @@ -19,7 +19,7 @@ #include "ModelChecker.hpp" #include "PageStore.hpp" #include "mc_mmalloc.h" -#include "mc_address_space.h" +#include "mc/AddressSpace.hpp" #include "mc_unw.h" SG_BEGIN_DECL() @@ -120,7 +120,7 @@ void* mc_translate_address_region(uintptr_t addr, mc_mem_region_t region) } XBT_INTERNAL mc_mem_region_t mc_get_snapshot_region( - const void* addr, mc_snapshot_t snapshot, int process_index); + const void* addr, const s_mc_snapshot_t *snapshot, int process_index); /** \brief Translate a pointer from process address space to snapshot address space * @@ -199,10 +199,21 @@ typedef struct s_fd_infos{ int flags; }s_fd_infos_t, *fd_infos_t; -struct s_mc_snapshot { +} + +namespace simgrid { +namespace mc { + +class Snapshot : public AddressSpace { +public: + Snapshot(); + ~Snapshot(); + const void* read_bytes(void* buffer, std::size_t size, + remote_ptr address, int process_index = ProcessIndexAny, + ReadMode mode = Normal) const override; +public: // To be private mc_process_t process; int num_state; - s_mc_address_space_t address_space; size_t heap_bytes_used; mc_mem_region_t* snapshot_regions; size_t snapshot_regions_count; @@ -217,6 +228,11 @@ struct s_mc_snapshot { fd_infos_t *current_fd; }; +} +} + +extern "C" { + static inline __attribute__ ((always_inline)) mc_mem_region_t mc_get_region_hinted(void* addr, mc_snapshot_t snapshot, int process_index, mc_mem_region_t region) { @@ -258,16 +274,10 @@ typedef struct s_mc_global_t { char *recv_diff; }s_mc_global_t, *mc_global_t; -typedef struct s_mc_checkpoint_ignore_region{ - void *addr; - size_t size; -}s_mc_checkpoint_ignore_region_t, *mc_checkpoint_ignore_region_t; - static const void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot); XBT_INTERNAL mc_snapshot_t MC_take_snapshot(int num_state); XBT_INTERNAL void MC_restore_snapshot(mc_snapshot_t); -XBT_INTERNAL void MC_free_snapshot(mc_snapshot_t); XBT_INTERNAL size_t* mc_take_page_snapshot_region(mc_process_t process, void* data, size_t page_count); @@ -279,9 +289,16 @@ XBT_INTERNAL void mc_restore_page_snapshot_region( MC_SHOULD_BE_INTERNAL const void* MC_region_read_fragmented( mc_mem_region_t region, void* target, const void* addr, size_t size); -XBT_INTERNAL const void* MC_snapshot_read(mc_snapshot_t snapshot, - adress_space_read_flags_t flags, - void* target, const void* addr, size_t size, int process_index); +// Deprecated compatibility wrapper +static inline +const void* MC_snapshot_read(mc_snapshot_t snapshot, + simgrid::mc::AddressSpace::ReadMode mode, + void* target, const void* addr, size_t size, int process_index) +{ + return snapshot->read_bytes(target, size, simgrid::mc::remote(addr), + process_index, mode); +} + MC_SHOULD_BE_INTERNAL int MC_snapshot_region_memcmp( const void* addr1, mc_mem_region_t region1, const void* addr2, mc_mem_region_t region2, size_t size); @@ -293,7 +310,7 @@ static inline __attribute__ ((always_inline)) const void* MC_snapshot_read_pointer(mc_snapshot_t snapshot, const void* addr, int process_index) { void* res; - return *(const void**) MC_snapshot_read(snapshot, MC_ADDRESS_SPACE_READ_FLAGS_LAZY, + return *(const void**) MC_snapshot_read(snapshot, simgrid::mc::AddressSpace::Lazy, &res, addr, sizeof(void*), process_index); } @@ -302,7 +319,7 @@ const void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot) { if(snapshot==NULL) xbt_die("snapshot is NULL"); - return MC_process_get_heap(&mc_model_checker->process())->breakval; + return mc_model_checker->process().get_heap()->breakval; } /** @brief Read memory from a snapshot region @@ -316,9 +333,7 @@ const void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot) static inline __attribute__((always_inline)) const void* MC_region_read(mc_mem_region_t region, void* target, const void* addr, size_t size) { - if (region==NULL) - // Should be deprecated: - return addr; + xbt_assert(region); uintptr_t offset = (char*) addr - (char*) region->start_addr;