X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=action.cc;h=5d726a2a0514f1c63c66fc3604ec8409fe0ba8cb;hb=57d7975634e97da2d32f95054dccf40ca871e558;hp=b435524d6d4a423405e221724794e8fcfeae4f84;hpb=88ccfdff63126a0fa70c094c7ed7e66f68e1b861;p=model-checker.git diff --git a/action.cc b/action.cc index b435524..5d726a2 100644 --- a/action.cc +++ b/action.cc @@ -168,7 +168,7 @@ void ModelAction::read_from(const ModelAction *act) ASSERT(cv); reads_from = act; if (act != NULL && this->is_acquire()) { - std::vector release_heads; + std::vector< const ModelAction *, MyAlloc > release_heads; model->get_release_seq_heads(this, &release_heads); for (unsigned int i = 0; i < release_heads.size(); i++) synchronize_with(release_heads[i]); @@ -186,6 +186,11 @@ void ModelAction::synchronize_with(const ModelAction *act) { cv->merge(act->cv); } +bool ModelAction::has_synchronized_with(const ModelAction *act) const +{ + return cv->has_synchronized_with(act->cv); +} + /** * Check whether 'this' happens before act, according to the memory-model's * happens before relation. This is checked via the ClockVector constructs. @@ -213,6 +218,9 @@ void ModelAction::print(void) const case THREAD_JOIN: type_str = "thread join"; break; + case THREAD_FINISH: + type_str = "thread finish"; + break; case ATOMIC_READ: type_str = "atomic read"; break; @@ -260,8 +268,12 @@ void ModelAction::print(void) const printf("(%3d) Thread: %-2d Action: %-13s MO: %7s Loc: %14p Value: %-12" PRIu64, seq_number, id_to_int(tid), type_str, mo_str, location, valuetoprint); - if (reads_from) - printf(" Rf: %d", reads_from->get_seq_number()); + if (is_read()) { + if (reads_from) + printf(" Rf: %d", reads_from->get_seq_number()); + else + printf(" Rf: ?"); + } if (cv) { printf("\t"); cv->print();