Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove spurious "using" declarations.
[simgrid.git] / src / mc / mc_base.cpp
1 /* Copyright (c) 2008-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 "src/mc/mc_base.hpp"
7 #include "mc/mc.h"
8 #include "src/kernel/EngineImpl.hpp"
9 #include "src/kernel/activity/CommImpl.hpp"
10 #include "src/kernel/activity/MutexImpl.hpp"
11 #include "src/kernel/actor/SimcallObserver.hpp"
12 #include "src/mc/mc_config.hpp"
13 #include "src/mc/mc_replay.hpp"
14
15 #include "xbt/random.hpp"
16
17 #if SIMGRID_HAVE_MC
18 #include "src/mc/ModelChecker.hpp"
19 #include "src/mc/Session.hpp"
20 #include "src/mc/remote/RemoteProcess.hpp"
21 #endif
22
23 XBT_LOG_NEW_DEFAULT_CATEGORY(mc, "All MC categories");
24
25 int MC_random(int min, int max)
26 {
27 #if SIMGRID_HAVE_MC
28   xbt_assert(mc_model_checker == nullptr);
29 #endif
30   if (not MC_is_active() && not MC_record_replay_is_active()) { // no need to do a simcall in this case
31     static simgrid::xbt::random::XbtRandom prng;
32     return prng.uniform_int(min, max);
33   }
34   simgrid::kernel::actor::RandomSimcall observer{simgrid::kernel::actor::ActorImpl::self(), min, max};
35   return simgrid::kernel::actor::simcall_answered([&observer] { return observer.get_value(); }, &observer);
36 }
37
38 namespace simgrid {
39 namespace mc {
40
41 void execute_actors()
42 {
43   auto* engine = kernel::EngineImpl::get_instance();
44 #if SIMGRID_HAVE_MC
45   xbt_assert(mc_model_checker == nullptr, "This must be called from the client");
46 #endif
47   while (engine->has_actors_to_run()) {
48     engine->run_all_actors();
49     for (auto const& actor : engine->get_actors_that_ran()) {
50       const kernel::actor::Simcall* req = &actor->simcall_;
51       if (req->call_ != kernel::actor::Simcall::Type::NONE && not simgrid::mc::request_is_visible(req))
52         actor->simcall_handle(0);
53     }
54   }
55 #if SIMGRID_HAVE_MC
56   engine->reset_actor_dynar();
57   for (auto const& [_, actor] : engine->get_actor_list()) {
58     // Only visible requests remain at this point, and they all have an observer
59     actor->simcall_.mc_max_consider_ = actor->simcall_.observer_->get_max_consider();
60
61     engine->add_actor_to_dynar(actor);
62   }
63 #endif
64 }
65
66 /** @brief returns if there this transition can proceed in a finite amount of time
67  *
68  * It is used in the model-checker to not get into self-deadlock where it would execute a never ending transition.
69  *
70  * Only WAIT operations (on comm, on mutex, etc) can ever return false because they could lock the MC exploration.
71  * Wait operations are OK and return true in only two situations:
72  *  - if the wait will succeed immediately (if both peer of the comm are there already or if the mutex is available)
73  *  - if a timeout is provided, because we can fire the timeout if the transition is not ready without blocking in this
74  * transition for ever.
75  * This is controlled in the is_enabled() method of the corresponding observers.
76  */
77 // Called from both MCer and MCed:
78 bool actor_is_enabled(kernel::actor::ActorImpl* actor)
79 {
80 #if SIMGRID_HAVE_MC
81   xbt_assert(mc_model_checker == nullptr, "This should be called from the client side");
82 #endif
83
84   // Now, we are in the client app, no need for remote memory reading.
85   kernel::actor::Simcall* req = &actor->simcall_;
86
87   if (req->observer_ != nullptr)
88     return req->observer_->is_enabled();
89
90   if (req->call_ == kernel::actor::Simcall::Type::NONE)
91     return false;
92   else
93     /* The rest of the requests are always enabled */
94     return true;
95 }
96
97 /* This is the list of requests that are visible from the checker algorithm.
98  * Any other requests are handled right away on the application side.
99  */
100 bool request_is_visible(const kernel::actor::Simcall* req)
101 {
102 #if SIMGRID_HAVE_MC
103   xbt_assert(mc_model_checker == nullptr, "This should be called from the client side");
104 #endif
105   if (req->observer_ != nullptr)
106     return req->observer_->is_visible();
107   else
108     return false;
109 }
110
111 } // namespace mc
112 } // namespace simgrid