X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/41c54c2772412935a5c8fc9f2d09e623c0383ae7..b5b885cc2a87003f2774fcd64358e735b8dcd2e2:/src/mc/mc_snapshot.h diff --git a/src/mc/mc_snapshot.h b/src/mc/mc_snapshot.h index 8960b450a2..c84a17bd6e 100644 --- a/src/mc/mc_snapshot.h +++ b/src/mc/mc_snapshot.h @@ -7,23 +7,24 @@ #ifndef SIMGRID_MC_SNAPSHOT_H #define SIMGRID_MC_SNAPSHOT_H -#include // off_t -#include // size_t +#include +#include #include #include +#include #include +#include // off_t + #include #include "src/xbt/mmalloc/mmprivate.h" #include -#include #include #include "src/mc/mc_forward.hpp" #include "src/mc/ModelChecker.hpp" #include "src/mc/PageStore.hpp" -#include "src/mc/mc_mmalloc.h" #include "src/mc/AddressSpace.hpp" #include "src/mc/mc_unw.h" #include "src/mc/RegionSnapshot.hpp" @@ -37,10 +38,11 @@ XBT_PRIVATE void mc_region_restore_sparse(simgrid::mc::Process* process, mc_mem_ static inline __attribute__((always_inline)) void* mc_translate_address_region_chunked(uintptr_t addr, mc_mem_region_t region) { - size_t pageno = mc_page_number((void*)region->start().address(), (void*) addr); - const void* snapshot_page = - region->page_data().page(pageno); - return (char*) snapshot_page + mc_page_offset((void*) addr); + auto split = simgrid::mc::mmu::split(addr - region->start().address()); + auto pageno = split.first; + auto offset = split.second; + const void* snapshot_page = region->page_data().page(pageno); + return (char*) snapshot_page + offset; } static inline __attribute__((always_inline)) @@ -54,7 +56,7 @@ void* mc_translate_address_region(uintptr_t addr, mc_mem_region_t region, int pr case simgrid::mc::StorageType::Flat: { uintptr_t offset = (uintptr_t) addr - (uintptr_t) region->start().address(); - return (void *) ((uintptr_t) region->flat_data() + offset); + return (void *) ((uintptr_t) region->flat_data().get() + offset); } case simgrid::mc::StorageType::Chunked: @@ -121,7 +123,7 @@ typedef struct s_local_variable{ typedef struct XBT_PRIVATE s_mc_snapshot_stack { std::vector local_variables; - s_mc_unw_context_t context; + simgrid::mc::UnwindContext context; std::vector stack_frames; int process_index; } s_mc_snapshot_stack_t, *mc_snapshot_stack_t; @@ -145,7 +147,7 @@ public: Snapshot(Process* process); ~Snapshot(); const void* read_bytes(void* buffer, std::size_t size, - remote_ptr address, int process_index = ProcessIndexAny, + RemotePtr address, int process_index = ProcessIndexAny, ReadOptions options = ReadOptions::none()) const override; public: // To be private int num_state; @@ -177,8 +179,22 @@ mc_mem_region_t mc_get_region_hinted(void* addr, mc_snapshot_t snapshot, int pro static const void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot); -XBT_PRIVATE mc_snapshot_t MC_take_snapshot(int num_state); -XBT_PRIVATE void MC_restore_snapshot(mc_snapshot_t); +} + +#ifdef __cplusplus + +namespace simgrid { +namespace mc { + +XBT_PRIVATE mc_snapshot_t take_snapshot(int num_state); +XBT_PRIVATE void restore_snapshot(mc_snapshot_t); + +} +} + +#endif + +extern "C" { XBT_PRIVATE void mc_restore_page_snapshot_region( simgrid::mc::Process* process, @@ -228,13 +244,13 @@ const void* MC_region_read( xbt_die("Storage type not supported"); case simgrid::mc::StorageType::Flat: - return (char*) region->flat_data() + offset; + return (char*) region->flat_data().get() + offset; case simgrid::mc::StorageType::Chunked: { // Last byte of the region: void* end = (char*) addr + size - 1; - if (mc_same_page(addr, end) ) { + if (simgrid::mc::mmu::sameChunk((std::uintptr_t) addr, (std::uintptr_t) end) ) { // The memory is contained in a single page: return mc_translate_address_region_chunked((uintptr_t) addr, region); } else {