@@ -123,7 +123,7 @@ bool GenericTaskQueue<E, F, N>::pop_local_slow(uint localBot, Age oldAge) {
123
123
Age tempAge = cmpxchg_age (oldAge, newAge);
124
124
if (tempAge == oldAge) {
125
125
// We win.
126
- assert ( dirty_size ( localBot, age_top_relaxed ()) != N - 1 , " sanity " );
126
+ assert_not_underflow ( localBot, age_top_relaxed ());
127
127
TASKQUEUE_STATS_ONLY (stats.record_pop_slow ());
128
128
return true ;
129
129
}
@@ -132,7 +132,7 @@ bool GenericTaskQueue<E, F, N>::pop_local_slow(uint localBot, Age oldAge) {
132
132
// and top is greater than bottom. Fix this representation of the empty queue
133
133
// to become the canonical one.
134
134
set_age_relaxed (newAge);
135
- assert ( dirty_size ( localBot, age_top_relaxed ()) != N - 1 , " sanity " );
135
+ assert_not_underflow ( localBot, age_top_relaxed ());
136
136
return false ;
137
137
}
138
138
@@ -144,7 +144,7 @@ GenericTaskQueue<E, F, N>::pop_local(E& t, uint threshold) {
144
144
// resets the size to 0 before the next call (which is sequential,
145
145
// since this is pop_local.)
146
146
uint dirty_n_elems = dirty_size (localBot, age_top_relaxed ());
147
- assert (dirty_n_elems != N - 1 , " Shouldn't be possible... " );
147
+ assert_not_underflow (dirty_n_elems);
148
148
if (dirty_n_elems <= threshold) return false ;
149
149
localBot = decrement_index (localBot);
150
150
set_bottom_relaxed (localBot);
@@ -158,7 +158,7 @@ GenericTaskQueue<E, F, N>::pop_local(E& t, uint threshold) {
158
158
// a "pop_global" operation, and we're done.
159
159
idx_t tp = age_top_relaxed ();
160
160
if (clean_size (localBot, tp) > 0 ) {
161
- assert ( dirty_size ( localBot, tp) != N - 1 , " sanity " );
161
+ assert_not_underflow ( localBot, tp);
162
162
TASKQUEUE_STATS_ONLY (stats.record_pop ());
163
163
return true ;
164
164
} else {
@@ -241,7 +241,7 @@ bool GenericTaskQueue<E, F, N>::pop_global(E& t) {
241
241
242
242
// Note that using "bottom" here might fail, since a pop_local might
243
243
// have decremented it.
244
- assert ( dirty_size ( localBot, newAge.top ()) != N - 1 , " sanity " );
244
+ assert_not_underflow ( localBot, newAge.top ());
245
245
return resAge == oldAge;
246
246
}
247
247
0 commit comments