Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
da627c58639e2729708243cd0ef3c3edfd599656
[simgrid.git] / src / mc / api / TransitionComm.cpp
1 /* Copyright (c) 2015-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/api/TransitionComm.hpp"
7 #include "xbt/asserts.h"
8 #include <simgrid/config.h>
9 #if SIMGRID_HAVE_MC
10 #include "src/mc/ModelChecker.hpp"
11 #include "src/mc/Session.hpp"
12 #include "src/mc/api/State.hpp"
13 #endif
14
15 #include <sstream>
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_trans_comm, mc_transition,
18                                 "Logging specific to MC transitions about communications");
19
20 namespace simgrid {
21 namespace mc {
22
23 CommWaitTransition::CommWaitTransition(aid_t issuer, int times_considered, char* buffer)
24     : Transition(Type::COMM_WAIT, issuer, times_considered)
25 {
26   std::stringstream stream(buffer);
27   stream >> timeout_ >> comm_ >> sender_ >> receiver_ >> mbox_ >> src_buff_ >> dst_buff_ >> size_;
28   XBT_DEBUG("CommWaitTransition %s comm:%p, sender:%ld receiver:%ld mbox:%u sbuff:%p rbuff:%p size:%zu",
29             (timeout_ ? "timeout" : "no-timeout"), comm_, sender_, receiver_, mbox_, src_buff_, dst_buff_, size_);
30 }
31 std::string CommWaitTransition::to_string(bool verbose) const
32 {
33   auto res = xbt::string_printf("%ld: WaitComm(from %ld to %ld, mbox=%u, %s", aid_, sender_, receiver_, mbox_,
34                                 (timeout_ ? "timeout" : "no timeout"));
35   if (verbose) {
36     res += ", src_buff=" + xbt::string_printf("%p", src_buff_) + ", size=" + std::to_string(size_);
37     res += ", dst_buff=" + xbt::string_printf("%p", dst_buff_);
38   }
39   res += ")";
40   return res;
41 }
42 bool CommWaitTransition::depends(const Transition* other) const
43 {
44   if (aid_ == other->aid_)
45     return false;
46
47   if (dynamic_cast<const RandomTransition*>(other) != nullptr)
48     return false; // Random is indep with any transition
49
50   if (auto* send = dynamic_cast<const CommSendTransition*>(other))
51     return send->depends(this);
52
53   if (auto* recv = dynamic_cast<const CommRecvTransition*>(other))
54     return recv->depends(this);
55
56   /* Timeouts in wait transitions are not considered by the independence theorem, thus assumed dependent */
57   if (const auto* wait = dynamic_cast<const CommWaitTransition*>(other)) {
58     if (timeout_ || wait->timeout_)
59       return true;
60
61     if (src_buff_ == wait->src_buff_ && dst_buff_ == wait->dst_buff_)
62       return false;
63     if (src_buff_ != nullptr && dst_buff_ != nullptr && wait->src_buff_ != nullptr && wait->dst_buff_ != nullptr &&
64         dst_buff_ != wait->src_buff_ && dst_buff_ != wait->dst_buff_ && dst_buff_ != src_buff_)
65       return false;
66   }
67
68   return true;
69 }
70
71 CommRecvTransition::CommRecvTransition(aid_t issuer, int times_considered, char* buffer)
72     : Transition(Type::IRECV, issuer, times_considered)
73 {
74   std::stringstream stream(buffer);
75   stream >> mbox_ >> dst_buff_;
76 }
77 std::string CommRecvTransition::to_string(bool verbose) const
78 {
79   auto res = xbt::string_printf("%ld: iRecv(mbox=%u", aid_, mbox_);
80   if (verbose)
81     res += ", buff=" + xbt::string_printf("%p", dst_buff_);
82   res += ")";
83   return res;
84 }
85 bool CommRecvTransition::depends(const Transition* other) const
86 {
87   if (aid_ == other->aid_)
88     return false;
89
90   if (dynamic_cast<const RandomTransition*>(other) != nullptr)
91     return false; // Random is indep with any transition
92
93   if (const auto* other_irecv = dynamic_cast<const CommRecvTransition*>(other))
94     return mbox_ == other_irecv->mbox_;
95
96   if (auto* isend = dynamic_cast<const CommSendTransition*>(other))
97     return isend->depends(this);
98
99   if (auto* wait = dynamic_cast<const CommWaitTransition*>(other)) {
100     if (wait->timeout_)
101       return true;
102
103     if (mbox_ != wait->mbox_)
104       return false;
105
106     if ((aid_ != wait->sender_) && (aid_ != wait->receiver_) && (wait->dst_buff_ != dst_buff_))
107       return false;
108   }
109
110   /* FIXME: the following rule assumes that the result of the isend/irecv call is not stored in a buffer used in the
111    * test call. */
112 #if 0
113   if (dynamic_cast<ActivityTestSimcall*>(other))
114     return false;
115 #endif
116
117   return true;
118 }
119
120 CommSendTransition::CommSendTransition(aid_t issuer, int times_considered, char* buffer)
121     : Transition(Type::ISEND, issuer, times_considered)
122 {
123   std::stringstream stream(buffer);
124   stream >> mbox_ >> src_buff_ >> size_;
125   XBT_DEBUG("SendTransition mbox:%u buff:%p size:%zu", mbox_, src_buff_, size_);
126 }
127 std::string CommSendTransition::to_string(bool verbose = false) const
128 {
129   auto res = xbt::string_printf("%ld: iSend(mbox=%u", aid_, mbox_);
130   if (verbose)
131     res += ", buff=" + xbt::string_printf("%p", src_buff_) + ", size=" + std::to_string(size_);
132   res += ")";
133   return res;
134 }
135
136 bool CommSendTransition::depends(const Transition* other) const
137 {
138   if (aid_ == other->aid_)
139     return false;
140
141   if (dynamic_cast<const RandomTransition*>(other) != nullptr)
142     return false; // Random is indep with any transition
143
144   if (const auto* other_isend = dynamic_cast<const CommSendTransition*>(other))
145     return mbox_ == other_isend->mbox_;
146
147   if (dynamic_cast<const CommRecvTransition*>(other) != nullptr)
148     return false;
149
150   if (const auto* wait = dynamic_cast<const CommWaitTransition*>(other)) {
151     if (wait->timeout_)
152       return true;
153
154     if (mbox_ != wait->mbox_)
155       return false;
156
157     if ((aid_ != wait->sender_) && (aid_ != wait->receiver_) && (wait->src_buff_ != src_buff_))
158       return false;
159   }
160
161   /* FIXME: the following rule assumes that the result of the isend/irecv call is not stored in a buffer used in the
162    * test call. */
163 #if 0
164   if (dynamic_cast<ActivityTestSimcall*>(other))
165     return false;
166 #endif
167
168   return true;
169 }
170
171 Transition* recv_transition(aid_t issuer, int times_considered, Transition::Type simcall, char* buffer)
172 {
173   switch (simcall) {
174     case Transition::Type::COMM_WAIT:
175       return new CommWaitTransition(issuer, times_considered, buffer);
176     case Transition::Type::IRECV:
177       return new CommRecvTransition(issuer, times_considered, buffer);
178     case Transition::Type::ISEND:
179       return new CommSendTransition(issuer, times_considered, buffer);
180
181     case Transition::Type::RANDOM:
182       return new RandomTransition(issuer, times_considered, buffer);
183
184     case Transition::Type::UNKNOWN:
185       return new Transition(Transition::Type::UNKNOWN, issuer, times_considered);
186     default:
187       xbt_die("recv_transition of type %s unimplemented", Transition::to_c_str(simcall));
188   }
189 }
190
191 } // namespace mc
192 } // namespace simgrid