Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill an unused static global
[simgrid.git] / src / smpi / smpi_memory.cpp
1 /* Copyright (c) 2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <iostream>
8
9 #include <limits.h>
10 #include <stdlib.h>
11 #include <sys/types.h>
12 #ifndef WIN32
13 #include <sys/mman.h>
14 #include <unistd.h>
15
16 #include "../xbt/memory_map.hpp"
17
18 #include "private.h"
19 #include "private.hpp"
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_memory, smpi, "Memory layout support for SMPI");
22
23 static const int PROT_RWX = (PROT_READ | PROT_WRITE | PROT_EXEC);
24 static const int PROT_RW  = (PROT_READ | PROT_WRITE );
25
26 void smpi_get_executable_global_size(void)
27 {
28   char buffer[PATH_MAX];
29   char* full_name = realpath(xbt_binary_name, buffer);
30   if (full_name == nullptr)
31     xbt_die("Could not resolve binary file name");
32
33   std::vector<simgrid::xbt::VmMap> map = simgrid::xbt::get_memory_map(getpid());
34   for (auto i = map.begin(); i != map.end() ; ++i) {
35     // TODO, In practice, this implementation would not detect a completely
36     // anonymous data segment. This does not happen in practice, however.
37
38     // File backed RW entry:
39     if (i->pathname == full_name && (i->prot & PROT_RWX) == PROT_RW) {
40       smpi_start_data_exe = (char*) i->start_addr;
41       smpi_size_data_exe = i->end_addr - i->start_addr;
42       ++i;
43       /* Here we are making the assumption that a suitable empty region
44          following the rw- area is the end of the data segment. It would
45          be better to check with the size of the data segment. */
46       if (i != map.end() && i->pathname.empty() && (i->prot & PROT_RWX) == PROT_RW
47           && i->start_addr == (std::uint64_t) smpi_start_data_exe + smpi_size_data_exe) {
48         smpi_size_data_exe = i->end_addr - (std::uint64_t) smpi_start_data_exe;
49       }
50       return;
51     }
52   }
53   xbt_die("Did not find my data segment.");
54 }
55 #endif