37 #include <unordered_set>
50 numStores(num_stores),
104 while ((num_loads + num_stores) > 0) {
114 if (num_stores > 0) {
132 for (
int lane = 0; lane <
numLanes; ++lane) {
146 switch (action->getType()) {
159 normal_loc,
false) ||
162 panic(
"TestTh %d - Data race detected. STOPPED!\n",
167 action->setLocation(lane, normal_loc);
181 panic(
"TestTh %d - Data race detected. STOPPED!\n",
186 action->setLocation(lane, normal_loc);
193 panic(
"Invalid action type\n");
206 for (
int lane = 0; lane <
numLanes; ++lane) {
210 std::unordered_set<Location> unique_loc_set;
215 if (action->isAtomicAction()) {
217 atomic_loc = action->getLocation(lane);
221 assert(atomic_loc == action->getLocation(lane));
223 }
else if (!action->isMemFenceAction()) {
224 assert(atomic_loc >= 0);
225 normal_loc = action->getLocation(lane);
228 unique_loc_set.insert(normal_loc);
249 for (
int lane = 0; lane < max_lane; ++lane) {
252 if (!action->isAtomicAction() &&
253 !action->isMemFenceAction()) {
254 if (isStore && loc == action->getLocation(lane)) {
255 warn(
"ST at location %d races against thread %d\n",
258 }
else if (!isStore &&
260 loc == action->getLocation(lane)) {
261 warn(
"LD at location %d races against thread %d\n",
286 assert(lane >= 0 && lane <
numLanes);
287 locations[lane] = loc;
293 assert(lane >= 0 && lane <
numLanes);
294 return locations[lane];
300 return (
type == Type::ATOMIC);
306 return (
type == Type::ACQUIRE ||
type == Type::RELEASE);
312 if (
type == Type::ACQUIRE)
314 else if (
type == Type::RELEASE)
316 else if (
type == Type::ATOMIC)
318 else if (
type == Type::LOAD)
320 else if (
type == Type::STORE)
323 panic(
"Invalid action type\n");