X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3b53885f888f2539a533797e76a3f3ff84cdfe0c..646748e03f0997e891f569963d0113e16bb63890:/src/mc/mc_snapshot.h diff --git a/src/mc/mc_snapshot.h b/src/mc/mc_snapshot.h index 00a36e46e0..6977237cf9 100644 --- a/src/mc/mc_snapshot.h +++ b/src/mc/mc_snapshot.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. +/* Copyright (c) 2007-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -18,6 +18,7 @@ #include "../xbt/mmalloc/mmprivate.h" #include #include +#include #include "mc_forward.hpp" #include "ModelChecker.hpp" @@ -31,7 +32,7 @@ SG_BEGIN_DECL() // ***** Snapshot region -XBT_INTERNAL void mc_region_restore_sparse(simgrid::mc::Process* process, mc_mem_region_t reg); +XBT_PRIVATE void mc_region_restore_sparse(simgrid::mc::Process* process, mc_mem_region_t reg); static inline __attribute__((always_inline)) void* mc_translate_address_region_chunked(uintptr_t addr, mc_mem_region_t region) @@ -53,7 +54,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().data() + offset); + return (void *) ((uintptr_t) region->flat_data() + offset); } case simgrid::mc::StorageType::Chunked: @@ -71,7 +72,7 @@ void* mc_translate_address_region(uintptr_t addr, mc_mem_region_t region, int pr } } -XBT_INTERNAL mc_mem_region_t mc_get_snapshot_region( +XBT_PRIVATE mc_mem_region_t mc_get_snapshot_region( const void* addr, const simgrid::mc::Snapshot *snapshot, int process_index); } @@ -118,7 +119,7 @@ typedef struct s_local_variable{ int region; } s_local_variable_t, *local_variable_t; -typedef struct s_mc_snapshot_stack { +typedef struct XBT_PRIVATE s_mc_snapshot_stack { std::vector local_variables; s_mc_unw_context_t context; std::vector stack_frames; @@ -139,15 +140,14 @@ typedef struct s_mc_global_t { namespace simgrid { namespace mc { -class Snapshot : public AddressSpace { +class XBT_PRIVATE Snapshot final : public AddressSpace { public: - Snapshot(); + Snapshot(Process* process); ~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 - simgrid::mc::Process* process; int num_state; size_t heap_bytes_used; std::vector> snapshot_regions; @@ -177,20 +177,20 @@ 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_INTERNAL mc_snapshot_t MC_take_snapshot(int num_state); -XBT_INTERNAL void MC_restore_snapshot(mc_snapshot_t); +XBT_PRIVATE mc_snapshot_t MC_take_snapshot(int num_state); +XBT_PRIVATE void MC_restore_snapshot(mc_snapshot_t); -XBT_INTERNAL void mc_restore_page_snapshot_region( +XBT_PRIVATE void mc_restore_page_snapshot_region( simgrid::mc::Process* process, - void* start_addr, simgrid::mc::PerPageCopy const& pagenos); + void* start_addr, simgrid::mc::ChunkedData const& pagenos); -MC_SHOULD_BE_INTERNAL const void* MC_region_read_fragmented( +const void* MC_region_read_fragmented( mc_mem_region_t region, void* target, const void* addr, size_t size); -MC_SHOULD_BE_INTERNAL int MC_snapshot_region_memcmp( +int MC_snapshot_region_memcmp( const void* addr1, mc_mem_region_t region1, const void* addr2, mc_mem_region_t region2, size_t size); -XBT_INTERNAL int MC_snapshot_memcmp( +XBT_PRIVATE int MC_snapshot_memcmp( const void* addr1, mc_snapshot_t snapshot1, const void* addr2, mc_snapshot_t snapshot2, int process_index, size_t size); @@ -226,7 +226,7 @@ const void* MC_region_read(mc_mem_region_t region, void* target, const void* add xbt_die("Storage type not supported"); case simgrid::mc::StorageType::Flat: - return (char*) region->flat_data().data() + offset; + return (char*) region->flat_data() + offset; case simgrid::mc::StorageType::Chunked: { @@ -257,7 +257,7 @@ void* MC_region_read_pointer(mc_mem_region_t region, const void* addr) SG_END_DECL() -XBT_INTERNAL int init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, +XBT_PRIVATE int init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, std::vector* i1, std::vector* i2);