Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Split the Comm observers to their own files
[simgrid.git] / src / kernel / actor / SimcallObserver.cpp
1 /* Copyright (c) 2019-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/kernel/actor/SimcallObserver.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/kernel/activity/CommImpl.hpp"
9 #include "src/kernel/activity/MailboxImpl.hpp"
10 #include "src/kernel/activity/MutexImpl.hpp"
11 #include "src/kernel/actor/ActorImpl.hpp"
12 #include "src/mc/mc_config.hpp"
13
14 #include <sstream>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_observer, mc, "Logging specific to MC simcall observation");
17
18 namespace simgrid {
19 namespace kernel {
20 namespace actor {
21
22 void SimcallObserver::serialize(std::stringstream& stream) const
23 {
24   stream << (short)mc::Transition::Type::UNKNOWN;
25 }
26 bool SimcallObserver::depends(SimcallObserver* other)
27 {
28   THROW_UNIMPLEMENTED;
29 }
30 /* Random is only dependent when issued by the same actor (ie, always independent) */
31 bool RandomSimcall::depends(SimcallObserver* other)
32 {
33   return get_issuer() == other->get_issuer();
34 }
35 void RandomSimcall::serialize(std::stringstream& stream) const
36 {
37   stream << (short)mc::Transition::Type::RANDOM << ' ';
38   stream << min_ << ' ' << max_;
39 }
40
41 bool MutexSimcall::depends(SimcallObserver* other)
42 {
43   if (dynamic_cast<RandomSimcall*>(other) != nullptr)
44     return other->depends(this); /* Other is random, that is very permissive. Use that relation instead. */
45
46 #if 0 /* This code is currently broken and shouldn't be used. We must implement asynchronous locks before */
47   MutexSimcall* that = dynamic_cast<MutexSimcall*>(other);
48   if (that == nullptr)
49     return true; // Depends on anything we don't know
50
51   /* Theorem 4.4.7: Any pair of synchronization actions of distinct actors concerning distinct mutexes are independent */
52   if (this->get_issuer() != that->get_issuer() && this->get_mutex() != that->get_mutex())
53     return false;
54
55   /* Theorem 4.4.8 An AsyncMutexLock is independent with a MutexUnlock of another actor */
56   if (((dynamic_cast<MutexLockSimcall*>(this) != nullptr && dynamic_cast<MutexUnlockSimcall*>(that)) ||
57        (dynamic_cast<MutexLockSimcall*>(that) != nullptr && dynamic_cast<MutexUnlockSimcall*>(this))) &&
58       get_issuer() != other->get_issuer())
59     return false;
60 #endif
61   return true; // Depend on things we don't know for sure that they are independent
62 }
63
64 void RandomSimcall::prepare(int times_considered)
65 {
66   next_value_ = min_ + times_considered;
67   XBT_DEBUG("MC_RANDOM(%d, %d) will return %d after %d times", min_, max_, next_value_, times_considered);
68 }
69
70 int RandomSimcall::get_max_consider()
71 {
72   return max_ - min_ + 1;
73 }
74
75 /*
76 std::string MutexLockSimcall::to_string(int times_considered) const
77 {
78   auto mutex      = get_mutex();
79   std::string res = SimcallObserver::to_string(times_considered) + (blocking_ ? "Mutex LOCK" : "Mutex TRYLOCK");
80   res += "(locked = " + std::to_string(mutex->is_locked());
81   res += ", owner = " + std::to_string(mutex->get_owner() ? mutex->get_owner()->get_pid() : -1);
82   res += ", sleeping = n/a)";
83   return res;
84 }*/
85
86 bool MutexLockSimcall::is_enabled()
87 {
88   return not blocking_ || get_mutex()->get_owner() == nullptr || get_mutex()->get_owner() == get_issuer();
89 }
90
91 bool ConditionWaitSimcall::is_enabled()
92 {
93   static bool warned = false;
94   if (not warned) {
95     XBT_INFO("Using condition variables in model-checked code is still experimental. Use at your own risk");
96     warned = true;
97   }
98   return true;
99 }
100
101 bool SemAcquireSimcall::is_enabled()
102 {
103   static bool warned = false;
104   if (not warned) {
105     XBT_INFO("Using semaphore in model-checked code is still experimental. Use at your own risk");
106     warned = true;
107   }
108   return true;
109 }
110
111 } // namespace actor
112 } // namespace kernel
113 } // namespace simgrid