Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
80d8326ee6cbdd5c348a5f0aa2714b2464efd650
[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/actor/ActorImpl.hpp"
11 #include "src/mc/mc_config.hpp"
12
13 #include <sstream>
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_observer, mc, "Logging specific to MC simcall observation");
16
17 namespace simgrid {
18 namespace kernel {
19 namespace actor {
20
21 void SimcallObserver::serialize(std::stringstream& stream) const
22 {
23   stream << (short)mc::Transition::Type::UNKNOWN;
24 }
25 bool SimcallObserver::depends(SimcallObserver* other)
26 {
27   THROW_UNIMPLEMENTED;
28 }
29 /* Random is only dependent when issued by the same actor (ie, always independent) */
30 bool RandomSimcall::depends(SimcallObserver* other)
31 {
32   return get_issuer() == other->get_issuer();
33 }
34 void RandomSimcall::serialize(std::stringstream& stream) const
35 {
36   stream << (short)mc::Transition::Type::RANDOM << ' ';
37   stream << min_ << ' ' << max_;
38 }
39
40 void RandomSimcall::prepare(int times_considered)
41 {
42   next_value_ = min_ + times_considered;
43   XBT_DEBUG("MC_RANDOM(%d, %d) will return %d after %d times", min_, max_, next_value_, times_considered);
44 }
45
46 int RandomSimcall::get_max_consider()
47 {
48   return max_ - min_ + 1;
49 }
50
51 bool ConditionWaitSimcall::is_enabled()
52 {
53   static bool warned = false;
54   if (not warned) {
55     XBT_INFO("Using condition variables in model-checked code is still experimental. Use at your own risk");
56     warned = true;
57   }
58   return true;
59 }
60
61 bool SemAcquireSimcall::is_enabled()
62 {
63   static bool warned = false;
64   if (not warned) {
65     XBT_INFO("Using semaphore in model-checked code is still experimental. Use at your own risk");
66     warned = true;
67   }
68   return true;
69 }
70
71 } // namespace actor
72 } // namespace kernel
73 } // namespace simgrid