X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=clockvector.cc;h=594daa8a75d968f500d3248085045a559c3e13fa;hb=9a97c2b585705b1a1870e799e387f95ea3b7b12c;hp=15e65909d0a16890b6de65a7a961fb36bf807028;hpb=810306cb85accaaace9a50f174264f105991230b;p=c11tester.git diff --git a/clockvector.cc b/clockvector.cc index 15e65909..594daa8a 100644 --- a/clockvector.cc +++ b/clockvector.cc @@ -1,41 +1,53 @@ #include #include +#include #include "model.h" #include "action.h" #include "clockvector.h" #include "common.h" +/** + * Constructs a new ClockVector, given a parent ClockVector and a first + * ModelAction. This constructor can assign appropriate default settings if no + * parent and/or action is supplied. + * @param parent is the previous ClockVector to inherit (i.e., clock from the + * same thread or the parent that created this thread) + * @param act is an action with which to update the ClockVector + */ ClockVector::ClockVector(ClockVector *parent, ModelAction *act) { - num_threads = parent ? parent->num_threads : 1; - if (act && act->get_type() == THREAD_CREATE) - num_threads++; - clock = (int *)myMalloc(num_threads * sizeof(int)); + num_threads = model->get_num_threads(); + clock = (modelclock_t *)MYMALLOC(num_threads * sizeof(int)); + memset(clock, 0, num_threads * sizeof(int)); if (parent) - std::memcpy(clock, parent->clock, parent->num_threads * sizeof(int)); - else - clock[0] = 0; + std::memcpy(clock, parent->clock, parent->num_threads * sizeof(modelclock_t)); if (act) clock[id_to_int(act->get_tid())] = act->get_seq_number(); } +/** @brief Destructor */ ClockVector::~ClockVector() { - myFree(clock); + MYFREE(clock); } -void ClockVector::merge(ClockVector *cv) +/** + * Merge a clock vector into this vector, using a pairwise comparison. The + * resulting vector length will be the maximum length of the two being merged. + * @param cv is the ClockVector being merged into this vector. + */ +void ClockVector::merge(const ClockVector *cv) { - int *clk = clock; + modelclock_t *clk = clock; bool resize = false; ASSERT(cv != NULL); if (cv->num_threads > num_threads) { resize = true; - clk = (int *)myMalloc(cv->num_threads * sizeof(int)); + clk = (modelclock_t *)MYMALLOC(cv->num_threads * sizeof(modelclock_t)); } /* Element-wise maximum */ @@ -46,16 +58,58 @@ void ClockVector::merge(ClockVector *cv) for (int i = num_threads; i < cv->num_threads; i++) clk[i] = cv->clock[i]; num_threads = cv->num_threads; - myFree(clock); + MYFREE(clock); } clock = clk; } -bool ClockVector::happens_before(ModelAction *act, thread_id_t id) +/** + * Check whether this vector's thread has synchronized with another action's + * thread. This effectively checks the happens-before relation (or actually, + * happens after), but it's easier to compare two ModelAction events directly, + * using ModelAction::happens_before. + * + * @see ModelAction::happens_before + * + * @return true if this ClockVector's thread has synchronized with act's + * thread, false otherwise. That is, this function returns: + *
act <= cv[act->tid] + */ +bool ClockVector::synchronized_since(const ModelAction *act) const { - int i = id_to_int(id); + int i = id_to_int(act->get_tid()); if (i < num_threads) - return act->get_seq_number() < clock[i]; + return act->get_seq_number() <= clock[i]; return false; } + +bool ClockVector::has_synchronized_with(const ClockVector *cv) const +{ + ASSERT(cv); + if (cv->num_threads > num_threads) + return false; + for (int i = 0; i < cv->num_threads; i++) + if (cv->clock[i] > clock[i]) + return false; + return true; +} + +/** Gets the clock corresponding to a given thread id from the clock vector. */ +modelclock_t ClockVector::getClock(thread_id_t thread) { + int threadid = id_to_int(thread); + + if (threadid < num_threads) + return clock[threadid]; + else + return 0; +} + +/** @brief Formats and prints this ClockVector's data. */ +void ClockVector::print() const +{ + int i; + printf("CV: ("); + for (i = 0; i < num_threads; i++) + printf("%2u%s", clock[i], (i == num_threads - 1) ? ")\n" : ", "); +}