From: Brian Norris Date: Mon, 3 Dec 2012 19:36:50 +0000 (-0800) Subject: model: rename last_seq_cst -> last_sc_write X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=commitdiff_plain;h=9875c652986098797f7fc8bee9def1c5b6a54ee5;hp=004ffe355e33b1b5e88095a0873fa5119993c7bc model: rename last_seq_cst -> last_sc_write --- diff --git a/model.cc b/model.cc index d615e1ad..39af266a 100644 --- a/model.cc +++ b/model.cc @@ -2234,16 +2234,16 @@ void ModelChecker::build_reads_from_past(ModelAction *curr) unsigned int i; ASSERT(curr->is_read()); - ModelAction *last_seq_cst = NULL; + ModelAction *last_sc_write = NULL; /* Track whether this object has been initialized */ bool initialized = false; if (curr->is_seqcst()) { - last_seq_cst = get_last_seq_cst_write(curr); + last_sc_write = get_last_seq_cst_write(curr); /* We have to at least see the last sequentially consistent write, so we are initialized. */ - if (last_seq_cst != NULL) + if (last_sc_write != NULL) initialized = true; } @@ -2260,7 +2260,7 @@ void ModelChecker::build_reads_from_past(ModelAction *curr) continue; /* Don't consider more than one seq_cst write if we are a seq_cst read. */ - if (!curr->is_seqcst() || (!act->is_seqcst() && (last_seq_cst == NULL || !act->happens_before(last_seq_cst))) || act == last_seq_cst) { + if (!curr->is_seqcst() || (!act->is_seqcst() && (last_sc_write == NULL || !act->happens_before(last_sc_write))) || act == last_sc_write) { if (!curr->get_sleep_flag() || curr->is_seqcst() || sleep_can_read_from(curr, act)) { DEBUG("Adding action to may_read_from:\n"); if (DBG_ENABLED()) {