Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill src/include
[simgrid.git] / src / xbt / xbt_main.cpp
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2023. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #define XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL /* MSVC don't want it to be declared extern in headers and local here */
9
10 #include "simgrid/config.h"
11 #include "src/internal_config.h"
12 #include "src/simgrid/sg_config.hpp"
13 #include "src/sthread/sthread.h" // sthread_inside_simgrid
14 #include "src/xbt/coverage.h"
15 #include "src/xbt/xbt_modinter.h" /* prototype of other module's init/exit in XBT */
16 #include "xbt/config.hpp"
17 #include "xbt/dynar.h"
18 #include "xbt/log.h"
19 #include "xbt/log.hpp"
20 #include "xbt/misc.h"
21 #include "xbt/module.h" /* this module */
22 #include "xbt/sysdep.h"
23
24 #include <cmath>
25 #include <cstdio>
26 #if HAVE_UNISTD_H
27 # include <unistd.h>
28 #endif
29 #include <string>
30 #include <vector>
31
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
33
34 XBT_LOG_NEW_CATEGORY(smpi, "All SMPI categories"); /* lives here even if that's a bit odd to solve linking issues: this is used in xbt_log_file_appender to detect whether SMPI is used (and thus whether we should unbench the writing to disk) */
35
36 namespace simgrid::xbt {
37 std::string binary_name;          /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
38 std::vector<std::string> cmdline; /* all we got in argv */
39 } // namespace simgrid::xbt
40
41
42 int xbt_initialized = 0;
43 simgrid::config::Flag<bool> cfg_dbg_clean_atexit{
44     "debug/clean-atexit",
45     "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.",
46     true};
47
48 const int xbt_pagesize = static_cast<int>(sysconf(_SC_PAGESIZE));
49 const int xbt_pagebits = static_cast<int>(log2(xbt_pagesize));
50
51 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
52  * This is crude and rather compiler-specific, unfortunately.
53  */
54 static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200);
55 static void xbt_postexit();
56 XBT_ATTRIB_NOINLINE void sthread_enable()
57 { // These symbols are used from ContextSwapped in any case, but they are only useful
58   asm("");
59 }
60 XBT_ATTRIB_NOINLINE void sthread_disable()
61 { //  when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead.
62   asm("");
63 }
64
65 static void xbt_preinit()
66 {
67   xbt_dict_preinit();
68   atexit(xbt_postexit);
69 }
70
71 static void xbt_postexit()
72 {
73   if (not cfg_dbg_clean_atexit)
74     return;
75   xbt_initialized--;
76   xbt_dict_postexit();
77   xbt_log_postexit();
78 }
79
80 /** @brief Initialize the xbt mechanisms. */
81 void xbt_init(int *argc, char **argv)
82 {
83   xbt_initialized++;
84   if (xbt_initialized > 1) {
85     XBT_DEBUG("XBT has been initialized %d times.", xbt_initialized);
86     return;
87   }
88
89   simgrid::xbt::install_exception_handler();
90
91   if (*argc > 0)
92     simgrid::xbt::binary_name = argv[0];
93   for (int i = 0; i < *argc; i++)
94     simgrid::xbt::cmdline.emplace_back(argv[i]);
95
96   xbt_log_init(argc, argv);
97 }
98
99 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
100 /** @brief like xbt_free, but you can be sure that it is a function  */
101 void xbt_free_f(void* p) noexcept(noexcept(::free))
102 {
103   xbt_free(p);
104 }
105
106 /** @brief should be given a pointer to pointer, and frees the second one */
107 void xbt_free_ref(void* d) noexcept(noexcept(::free))
108 {
109   xbt_free(*(void**)d);
110 }
111
112 /** @brief Kill the program in silence */
113 void xbt_abort()
114 {
115   /* Call __gcov_flush on abort when compiling with coverage options. */
116   coverage_checkpoint();
117   abort();
118 }
119
120 #ifndef HAVE_SMPI
121 int SMPI_is_inited()
122 {
123   return false;
124 }
125 #endif