37 #include <unordered_set>
47 numStores(num_stores),
101 while ((num_loads + num_stores) > 0) {
111 if (num_stores > 0) {
129 for (
int lane = 0; lane <
numLanes; ++lane) {
143 switch (action->getType()) {
156 normal_loc,
false) ||
159 panic(
"TestTh %d - Data race detected. STOPPED!\n",
164 action->setLocation(lane, normal_loc);
178 panic(
"TestTh %d - Data race detected. STOPPED!\n",
183 action->setLocation(lane, normal_loc);
190 panic(
"Invalid action type\n");
203 for (
int lane = 0; lane <
numLanes; ++lane) {
207 std::unordered_set<Location> unique_loc_set;
212 if (action->isAtomicAction()) {
214 atomic_loc = action->getLocation(lane);
218 assert(atomic_loc == action->getLocation(lane));
220 }
else if (!action->isMemFenceAction()) {
221 assert(atomic_loc >= 0);
222 normal_loc = action->getLocation(lane);
225 unique_loc_set.insert(normal_loc);
246 for (
int lane = 0; lane < max_lane; ++lane) {
249 if (!action->isAtomicAction() &&
250 !action->isMemFenceAction()) {
251 if (isStore && loc == action->getLocation(lane)) {
252 warn(
"ST at location %d races against thread %d\n",
255 }
else if (!isStore &&
257 loc == action->getLocation(lane)) {
258 warn(
"LD at location %d races against thread %d\n",
283 assert(lane >= 0 && lane <
numLanes);
284 locations[lane] = loc;
290 assert(lane >= 0 && lane <
numLanes);
291 return locations[lane];
297 return (
type == Type::ATOMIC);
303 return (
type == Type::ACQUIRE ||
type == Type::RELEASE);
309 if (
type == Type::ACQUIRE)
311 else if (
type == Type::RELEASE)
313 else if (
type == Type::ATOMIC)
315 else if (
type == Type::LOAD)
317 else if (
type == Type::STORE)
320 panic(
"Invalid action type\n");