Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reduce the visibility of popping_private
[simgrid.git] / src / simix / popping.cpp
1 /* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/Host.hpp"
7 #include "src/kernel/actor/ActorImpl.hpp"
8 #include "src/kernel/actor/SimcallObserver.hpp"
9 #include "src/kernel/context/Context.hpp"
10 #include "src/simix/popping_private.hpp"
11 #include "xbt/log.h"
12
13 #if SIMGRID_HAVE_MC
14 #include "src/mc/mc_forward.hpp"
15 #endif
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(simix, "transmuting from user request into kernel handlers");
18
19 constexpr std::array<const char*, simgrid::simix::NUM_SIMCALLS> simcall_names{{
20     "Simcall::NONE",
21     "Simcall::RUN_KERNEL",
22     "Simcall::RUN_BLOCKING",
23 }};
24
25 /** @private
26  * @brief (in kernel mode) unpack the simcall and activate the handler
27  *
28  */
29 void simgrid::kernel::actor::ActorImpl::simcall_handle(int times_considered)
30 {
31   XBT_DEBUG("Handling simcall %p: %s", &simcall_, SIMIX_simcall_name(simcall_));
32   if (simcall_.observer_ != nullptr)
33     simcall_.observer_->prepare(times_considered);
34   if (context_->wannadie())
35     return;
36   switch (simcall_.call_) {
37     case simgrid::simix::Simcall::RUN_KERNEL:
38       (*simcall_.code_)();
39       simcall_answer();
40       break;
41
42     case simgrid::simix::Simcall::RUN_BLOCKING:
43       (*simcall_.code_)();
44       break;
45
46     case simgrid::simix::Simcall::NONE:
47       throw std::invalid_argument(
48           simgrid::xbt::string_printf("Asked to do the noop syscall on %s@%s", get_cname(), get_host()->get_cname()));
49     default:
50       THROW_IMPOSSIBLE;
51   }
52 }
53
54 /** @brief returns a printable string representing a simcall */
55 const char* SIMIX_simcall_name(const s_smx_simcall& simcall)
56 {
57   if (simcall.observer_ != nullptr) {
58 #if SIMGRID_HAVE_MC
59     if (mc_model_checker != nullptr) // Do not try to use the observer from the MCer
60       return "(remotely observed)";
61 #endif
62
63     static std::string name;
64     name              = boost::core::demangle(typeid(*simcall.observer_).name());
65     const char* cname = name.c_str();
66     if (name.rfind("simgrid::kernel::", 0) == 0)
67       cname += 17; // strip prefix "simgrid::kernel::"
68     return cname;
69   } else {
70     return simcall_names.at(static_cast<int>(simcall.call_));
71   }
72 }