X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/43f7ca1cac5ab1858e318fdd6239d0a0c3b3d893..74c1bf2b26c5a3aa0d8c29674dc12993e7c0de15:/src/smpi/internals/smpi_shared.cpp diff --git a/src/smpi/internals/smpi_shared.cpp b/src/smpi/internals/smpi_shared.cpp index cd4b82093e..635f2b57b5 100644 --- a/src/smpi/internals/smpi_shared.cpp +++ b/src/smpi/internals/smpi_shared.cpp @@ -7,7 +7,7 @@ * Associated data and metadata are used as follows: * * mmap #1 - * `allocs' dict ---- -. + * `allocs' map ---- -. * ---------- shared_data_t shared_metadata_t / | | | * .->| | ---> -------------------- <--. ----------------- | | | | * | ---------- | fd of | | | size of mmap | --| | | | @@ -15,7 +15,7 @@ * `----------------- | | | ----------------- ---- | * -------------------- | ^ | * | | | - * | | `allocs_metadata' dict | + * | | `allocs_metadata' map | * | | ---------------------- | * | `-- | |<-' * | .-- | |<-. @@ -38,18 +38,15 @@ #include "private.h" #include "private.hpp" -#include "xbt/dict.h" -#include "xbt/ex.hpp" -#include +#include #include #ifndef WIN32 #include #endif -#include +#include #include -#include -#include +#include #ifndef MAP_ANONYMOUS #define MAP_ANONYMOUS MAP_ANON @@ -123,7 +120,8 @@ typedef struct { } shared_metadata_t; std::map allocs_metadata; -xbt_dict_t calls = nullptr; /* Allocated on first use */ +std::map calls; + #ifndef WIN32 static int smpi_shared_malloc_bogusfile = -1; static int smpi_shared_malloc_bogusfile_huge_page = -1; @@ -136,7 +134,7 @@ void smpi_shared_destroy() { allocs.clear(); allocs_metadata.clear(); - xbt_dict_free(&calls); + calls.clear(); } static size_t shm_size(int fd) { @@ -307,7 +305,7 @@ void* smpi_shared_malloc_partial(size_t size, size_t* shared_block_offsets, int size_t start_block_offset = ALIGN_UP(start_offset, smpi_shared_malloc_blocksize); size_t stop_block_offset = ALIGN_DOWN(stop_offset, smpi_shared_malloc_blocksize); for (unsigned block_id=0, i = start_block_offset / smpi_shared_malloc_blocksize; i < stop_block_offset / smpi_shared_malloc_blocksize; block_id++, i++) { - XBT_DEBUG("\t\tglobal shared allocation, mmap block offset %d", block_id); + XBT_DEBUG("\t\tglobal shared allocation, mmap block offset %u", block_id); void* pos = (void*)((unsigned long)mem + i * smpi_shared_malloc_blocksize); void* res = mmap(pos, smpi_shared_malloc_blocksize, PROT_READ | PROT_WRITE, mmap_flag, huge_fd, 0); @@ -390,7 +388,7 @@ int smpi_is_shared(void* ptr, std::vector> &private_bl return 0; if ( smpi_cfg_shared_malloc == shmalloc_local || smpi_cfg_shared_malloc == shmalloc_global) { auto low = allocs_metadata.lower_bound(ptr); - if (low->first==ptr) { + if (low != allocs_metadata.end() && low->first == ptr) { private_blocks = low->second.private_blocks; *offset = 0; return 1; @@ -412,7 +410,7 @@ int smpi_is_shared(void* ptr, std::vector> &private_bl std::vector> shift_and_frame_private_blocks(const std::vector> vec, size_t offset, size_t buff_size) { std::vector> result; - for(auto block: vec) { + for (auto const& block : vec) { auto new_block = std::make_pair(std::min(std::max((size_t)0, block.first-offset), buff_size), std::min(std::max((size_t)0, block.second-offset), buff_size)); if(new_block.second > 0 && new_block.first < buff_size) @@ -488,46 +486,18 @@ void smpi_shared_free(void *ptr) int smpi_shared_known_call(const char* func, const char* input) { - char* loc = bprintf("%s:%s", func, input); - int known = 0; - - if (calls==nullptr) { - calls = xbt_dict_new_homogeneous(nullptr); - } - try { - xbt_dict_get(calls, loc); /* Succeed or throw */ - known = 1; - xbt_free(loc); - } - catch (xbt_ex& ex) { - xbt_free(loc); - if (ex.category != not_found_error) - throw; - } - catch(...) { - xbt_free(loc); - throw; - } - return known; + std::string loc = std::string(func) + ":" + input; + return calls.find(loc) != calls.end(); } void* smpi_shared_get_call(const char* func, const char* input) { - char* loc = bprintf("%s:%s", func, input); + std::string loc = std::string(func) + ":" + input; - if (calls == nullptr) - calls = xbt_dict_new_homogeneous(nullptr); - void* data = xbt_dict_get(calls, loc); - xbt_free(loc); - return data; + return calls.at(loc); } void* smpi_shared_set_call(const char* func, const char* input, void* data) { - char* loc = bprintf("%s:%s", func, input); - - if (calls == nullptr) - calls = xbt_dict_new_homogeneous(nullptr); - xbt_dict_set(calls, loc, data, nullptr); - xbt_free(loc); + std::string loc = std::string(func) + ":" + input; + calls[loc] = data; return data; } -