SCAnalysis::SCAnalysis() {
cvmap=new HashTable<const ModelAction *, ClockVector *, uintptr_t, 4>();
+ cycleset=new HashTable<const ModelAction *, const ModelAction *, uintptr_t, 4>();
threadlists=new SnapVector<action_list_t>(1);
}
SCAnalysis::~SCAnalysis() {
delete cvmap;
+ delete cycleset;
delete threadlists;
}
for (it = list->begin(); it != list->end(); it++) {
const ModelAction *act = *it;
- if (act->get_seq_number() > 0)
+ if (act->get_seq_number() > 0) {
+ if (cycleset->contains(act))
+ model_print("CYC");
act->print();
+ }
hash = hash^(hash<<3)^((*it)->hash());
}
model_print("HASH %u\n", hash);
print_list(list);
}
+bool SCAnalysis::merge(ClockVector * cv, const ModelAction * act, ClockVector *cv2) {
+ if (cv2->getClock(act->get_tid())>=act->get_seq_number() && act->get_seq_number() != 0) {
+ cycleset->put(act, act);
+ }
+ return cv->merge(cv2);
+}
+
ModelAction * SCAnalysis::getNextAction() {
ModelAction *act=NULL;
for(int i=0;i<=maxthreads;i++) {
break;
if (write->get_location() == act->get_location()) {
//write is sc after act
- writecv->merge(actcv);
+ merge(writecv, write, actcv);
changed=true;
break;
}
/* Merge in the clock vector from the write */
const ModelAction *write=read->get_reads_from();
ClockVector *writecv=cvmap->get(write);
- changed|= ( writecv == NULL || cv->merge(writecv) && (*read < *write));
+ changed|= ( writecv == NULL || merge(cv, read, writecv) && (*read < *write));
for(int i=0;i<=maxthreads;i++) {
thread_id_t tid=int_to_id(i);
write -rf-> R =>
R -sc-> write2 */
if (write2cv->synchronized_since(write)) {
- changed |= write2cv->merge(cv);
+ changed |= merge(write2cv, write2, cv);
}
//looking for earliest write2 in iteration to satisfy this
write -rf-> R =>
write2 -sc-> write */
if (cv->synchronized_since(write2)) {
- changed |= writecv == NULL || writecv->merge(write2cv);
+ changed |= writecv == NULL || merge(writecv, write, write2cv);
break;
}
}
cv = new ClockVector(lastcv, act);
cvmap->put(act, cv);
} else if ( lastcv != NULL ) {
- cv->merge(lastcv);
+ merge(cv, act, lastcv);
+ }
+ if (act->is_thread_join()) {
+ Thread *joinedthr = act->get_thread_operand();
+ ModelAction *finish = model->get_last_action(joinedthr->get_id());
+ ClockVector *finishcv = cvmap->get(finish);
+ changed |= (finishcv == NULL) || merge(cv, act, finishcv);
}
if (act->is_thread_join()) {
Thread *joinedthr = act->get_thread_operand();
action_list_t * generateSC(action_list_t *);
bool processRead(ModelAction *read, ClockVector *cv);
ModelAction * getNextAction();
+ bool merge(ClockVector * cv, const ModelAction * act, ClockVector *cv2);
int maxthreads;
HashTable<const ModelAction *,ClockVector *, uintptr_t, 4 > * cvmap;
+ HashTable<const ModelAction *,const ModelAction *, uintptr_t, 4 > * cycleset;
SnapVector<action_list_t> * threadlists;
};
#endif