Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove a useless lib constructor (simpler is better)
[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 XBT_ATTRIB_NOINLINE void sthread_enable()
52 { // These symbols are used from ContextSwapped in any case, but they are only useful
53   asm("");
54 }
55 XBT_ATTRIB_NOINLINE void sthread_disable()
56 { //  when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead.
57   asm("");
58 }
59
60 static void xbt_postexit()
61 {
62   if (not cfg_dbg_clean_atexit)
63     return;
64   xbt_initialized--;
65   xbt_log_postexit();
66 }
67
68 /** @brief Initialize the xbt mechanisms. */
69 void xbt_init(int *argc, char **argv)
70 {
71   xbt_initialized++;
72   if (xbt_initialized > 1) {
73     XBT_DEBUG("XBT has been initialized %d times.", xbt_initialized);
74     return;
75   }
76   atexit(xbt_postexit);
77
78   simgrid::xbt::install_exception_handler();
79
80   if (*argc > 0)
81     simgrid::xbt::binary_name = argv[0];
82   for (int i = 0; i < *argc; i++)
83     simgrid::xbt::cmdline.emplace_back(argv[i]);
84
85   xbt_log_init(argc, argv);
86 }
87
88 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
89 /** @brief like xbt_free, but you can be sure that it is a function  */
90 void xbt_free_f(void* p) noexcept(noexcept(::free))
91 {
92   xbt_free(p);
93 }
94
95 /** @brief should be given a pointer to pointer, and frees the second one */
96 void xbt_free_ref(void* d) noexcept(noexcept(::free))
97 {
98   xbt_free(*(void**)d);
99 }
100
101 /** @brief Kill the program in silence */
102 void xbt_abort()
103 {
104   /* Call __gcov_flush on abort when compiling with coverage options. */
105   coverage_checkpoint();
106   abort();
107 }
108
109 #ifndef HAVE_SMPI
110 int SMPI_is_inited()
111 {
112   return false;
113 }
114 #endif