X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a908b79ea45f85f305620c09375b72483b7eee9..f1dd25cad1bee0eb04a01e8d94b5776c5e8aeb44:/src/mc/transition/TransitionComm.cpp diff --git a/src/mc/transition/TransitionComm.cpp b/src/mc/transition/TransitionComm.cpp index de0ec2b67a..54c27f6aca 100644 --- a/src/mc/transition/TransitionComm.cpp +++ b/src/mc/transition/TransitionComm.cpp @@ -5,13 +5,12 @@ #include "src/mc/transition/TransitionComm.hpp" #include "simgrid/config.h" -#include "xbt/asserts.h" -#include "xbt/string.hpp" -#if SIMGRID_HAVE_MC #include "src/mc/api/RemoteApp.hpp" #include "src/mc/api/State.hpp" -#endif +#include "xbt/asserts.h" +#include "xbt/string.hpp" +#include #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_trans_comm, mc_transition, @@ -43,17 +42,13 @@ bool CommWaitTransition::depends(const Transition* other) const if (other->type_ < type_) return other->depends(this); + // Actions executed by the same actor are always dependent + if (other->aid_ == aid_) + return true; + if (const auto* wait = dynamic_cast(other)) { if (timeout_ || wait->timeout_) return true; // Timeouts are not considered by the independence theorem, thus assumed dependent - - if (sbuff_ == wait->sbuff_ && rbuff_ == wait->rbuff_) - return false; - if (sbuff_ != 0 && rbuff_ != 0 && wait->sbuff_ != 0 && wait->rbuff_ != 0 && rbuff_ != wait->sbuff_ && - rbuff_ != wait->rbuff_ && rbuff_ != sbuff_) - return false; - - return true; } return false; // Comm transitions are INDEP with non-comm transitions @@ -81,6 +76,10 @@ bool CommTestTransition::depends(const Transition* other) const if (other->type_ < type_) return other->depends(this); + // Actions executed by the same actor are always dependent + if (other->aid_ == aid_) + return true; + if (dynamic_cast(other) != nullptr) return false; // Test & Test are independent @@ -95,6 +94,15 @@ bool CommTestTransition::depends(const Transition* other) const return false; // Comm transitions are INDEP with non-comm transitions } +CommRecvTransition::CommRecvTransition(aid_t issuer, int times_considered, uintptr_t comm_, unsigned mbox_, + uintptr_t rbuff_, int tag_) + : Transition(Type::COMM_ASYNC_RECV, issuer, times_considered) + , comm_(comm_) + , mbox_(mbox_) + , rbuff_(rbuff_) + , tag_(tag_) +{ +} CommRecvTransition::CommRecvTransition(aid_t issuer, int times_considered, std::stringstream& stream) : Transition(Type::COMM_ASYNC_RECV, issuer, times_considered) { @@ -113,6 +121,10 @@ bool CommRecvTransition::depends(const Transition* other) const if (other->type_ < type_) return other->depends(this); + // Actions executed by the same actor are always dependent + if (other->aid_ == aid_) + return true; + if (const auto* recv = dynamic_cast(other)) return mbox_ == recv->mbox_; @@ -129,7 +141,7 @@ bool CommRecvTransition::depends(const Transition* other) const return true; // DEP with other send transitions } - if (auto* wait = dynamic_cast(other)) { + if (const auto* wait = dynamic_cast(other)) { if (wait->timeout_) return true; @@ -145,6 +157,16 @@ bool CommRecvTransition::depends(const Transition* other) const return false; // Comm transitions are INDEP with non-comm transitions } +CommSendTransition::CommSendTransition(aid_t issuer, int times_considered, uintptr_t comm_, unsigned mbox_, + uintptr_t sbuff_, size_t size_, int tag_) + : Transition(Type::COMM_ASYNC_SEND, issuer, times_considered) + , comm_(comm_) + , mbox_(mbox_) + , sbuff_(sbuff_) + , size_(size_) + , tag_(tag_) +{ +} CommSendTransition::CommSendTransition(aid_t issuer, int times_considered, std::stringstream& stream) : Transition(Type::COMM_ASYNC_SEND, issuer, times_considered) { @@ -165,6 +187,10 @@ bool CommSendTransition::depends(const Transition* other) const if (other->type_ < type_) return other->depends(this); + // Actions executed by the same actor are always dependent + if (other->aid_ == aid_) + return true; + if (const auto* other_isend = dynamic_cast(other)) return mbox_ == other_isend->mbox_;