21 #if TW_START_STOP_TRACE_SIZE > 0 23 void TW (tw_timer_trace) (
TWT (tw_timer_wheel) * tw,
u32 timer_id,
24 u32 pool_index,
u32 handle)
26 TWT (
trace) * t = &tw->traces[tw->trace_index];
28 t->timer_id = timer_id;
29 t->pool_index = pool_index;
33 if (tw->trace_index == TW_START_STOP_TRACE_SIZE)
40 void TW (tw_search_trace) (
TWT (tw_timer_wheel) * tw,
u32 handle)
48 start_pos = tw->trace_index;
50 start_pos = TW_START_STOP_TRACE_SIZE - 1;
54 for (i = start_pos; i > 0; i--)
57 if (t->handle == handle)
71 fformat (stderr,
"handle 0x%x (%d) %s at trace %d\n",
72 handle, handle, s, i);
75 if (tw->trace_wrapped > 0)
77 for (i = TW_START_STOP_TRACE_SIZE; i >= tw->trace_index; i--)
80 if (t->handle == handle)
94 fformat (stderr,
"handle 0x%x (%d) %s at trace %d\n",
95 handle, handle, s, i);
108 #if LOG2_TW_TIMERS_PER_OBJECT > 0 122 TWT (tw_timer) * old_first;
124 TWT (tw_timer) *
new;
130 head->next = head->prev = new_index;
131 new->next =
new->prev = head_index;
135 old_first_index = head->next;
138 new->next = old_first_index;
139 new->prev = old_first->prev;
140 old_first->prev = new_index;
141 head->next = new_index;
147 TWT (tw_timer) * next_elt, *prev_elt;
149 ASSERT (elt->user_handle != ~0);
154 next_elt->prev = elt->prev;
155 prev_elt->next = elt->next;
157 elt->prev = elt->next = ~0;
163 #if TW_TIMER_WHEELS > 1 164 u16 slow_ring_offset;
167 #if TW_TIMER_WHEELS > 2 168 u16 glacier_ring_offset;
170 #if TW_OVERFLOW_VECTOR > 0 171 u64 interval_plus_time_to_wrap, triple_wrap_mask;
173 u16 fast_ring_offset;
177 #if TW_TIMER_WHEELS > 2 178 #if TW_OVERFLOW_VECTOR > 0 186 interval_plus_time_to_wrap =
187 interval + (tw->current_tick & triple_wrap_mask);
188 if ((interval_plus_time_to_wrap >= 1 << (3 *
TW_RING_SHIFT)))
190 t->expiration_time = tw->current_tick + interval;
193 #if TW_START_STOP_TRACE_SIZE > 0 194 TW (tw_timer_trace) (tw, timer_id, user_id, t - tw->timers);
204 #if TW_TIMER_WHEELS > 1 220 #if TW_TIMER_WHEELS > 1 229 #if TW_TIMER_WHEELS > 2 230 glacier_ring_offset +=
235 #if TW_TIMER_WHEELS > 2 236 if (glacier_ring_offset !=
240 t->slow_ring_offset = slow_ring_offset;
241 t->fast_ring_offset = fast_ring_offset;
246 #if TW_START_STOP_TRACE_SIZE > 0 247 TW (tw_timer_trace) (tw, timer_id, user_id, t - tw->timers);
253 #if TW_TIMER_WHEELS > 1 255 if (slow_ring_offset !=
259 t->fast_ring_offset = fast_ring_offset;
264 #if TW_START_STOP_TRACE_SIZE > 0 265 TW (tw_timer_trace) (tw, timer_id, user_id, t - tw->timers);
278 #if TW_FAST_WHEEL_BITMAP 280 fast_ring_offset, 1);
282 #if TW_START_STOP_TRACE_SIZE > 0 283 TW (tw_timer_trace) (tw, timer_id, user_id, t - tw->timers);
304 memset (t, 0xff,
sizeof (*t));
309 return t - tw->timers;
312 #if TW_TIMER_SCAN_FOR_HANDLE > 0 313 int TW (scan_for_handle) (
TWT (tw_timer_wheel) * tw,
u32 handle)
317 TWT (tw_timer) * t, *head;
327 next_index = head->next;
332 if (next_index == handle)
339 next_index = t->next;
356 #if TW_TIMER_ALLOW_DUPLICATE_STOP 365 #if TW_START_STOP_TRACE_SIZE > 0 366 TW (tw_timer_trace) (tw, ~0, ~0, handle);
372 ASSERT (t->user_handle != ~0);
403 void *expired_timer_callback,
404 f64 timer_interval_in_seconds,
u32 max_expirations)
409 memset (tw, 0,
sizeof (*tw));
410 tw->expired_timer_callback = expired_timer_callback;
411 tw->max_expirations = max_expirations;
412 if (timer_interval_in_seconds == 0.0)
417 tw->timer_interval = timer_interval_in_seconds;
418 tw->ticks_per_second = 1.0 / timer_interval_in_seconds;
419 tw->first_expires_tick = ~0ULL;
422 _vec_len (tw->expired_timer_handles) = 0;
428 ts = &tw->w[ring][slot];
430 memset (t, 0xff,
sizeof (*t));
431 t->next = t->prev = t - tw->timers;
436 #if TW_OVERFLOW_VECTOR > 0 439 memset (t, 0xff,
sizeof (*t));
440 t->next = t->prev = t - tw->timers;
453 TWT (tw_timer) * head, *t;
462 next_index = head->next;
467 next_index = t->next;
474 #if TW_OVERFLOW_VECVOR > 0 477 next_index = head->next;
482 next_index = t->next;
488 memset (tw, 0,
sizeof (*tw));
501 u32 * callback_vector_arg)
505 TWT (tw_timer) * t, *head;
506 u32 *callback_vector;
507 u32 fast_wheel_index;
509 u32 slow_wheel_index __attribute__ ((unused));
510 u32 glacier_wheel_index __attribute__ ((unused));
514 return callback_vector_arg;
517 nticks = tw->ticks_per_second * (now - tw->last_run_time);
519 return callback_vector_arg;
522 tw->next_run_time = (now + tw->timer_interval);
524 if (callback_vector_arg == 0)
526 _vec_len (tw->expired_timer_handles) = 0;
527 callback_vector = tw->expired_timer_handles;
530 callback_vector = callback_vector_arg;
532 for (i = 0; i < nticks; i++)
540 #if TW_OVERFLOW_VECTOR > 0 547 u32 new_glacier_ring_offset, new_slow_ring_offset;
548 u32 new_fast_ring_offset;
552 next_index = head->next;
558 while (next_index != head - tw->timers)
561 next_index = t->next;
564 t->next = t->prev = ~0;
566 ASSERT (t->expiration_time >= tw->current_tick);
568 interval = t->expiration_time - tw->current_tick;
580 interval -= (new_glacier_ring_offset << (2 *
TW_RING_SHIFT));
586 t->slow_ring_offset = new_slow_ring_offset;
587 t->fast_ring_offset = new_fast_ring_offset;
591 t->fast_ring_offset == 0 &&
592 new_glacier_ring_offset == 0))
594 vec_add1 (callback_vector, t->user_handle);
595 #if TW_START_STOP_TRACE_SIZE > 0 596 TW (tw_timer_trace) (tw, 0xfe, t->user_handle,
602 else if (new_glacier_ring_offset)
608 else if (t->slow_ring_offset)
619 #if TW_FAST_WHEEL_BITMAP 620 tw->fast_slot_bitmap =
622 t->fast_ring_offset, 1);
629 #if TW_TIMER_WHEELS > 2 640 next_index = head->next;
646 while (next_index != head - tw->timers)
649 next_index = t->next;
652 t->next = t->prev = ~0;
656 t->fast_ring_offset == 0))
658 vec_add1 (callback_vector, t->user_handle);
659 #if TW_START_STOP_TRACE_SIZE > 0 660 TW (tw_timer_trace) (tw, 0xfe, t->user_handle,
670 #if TW_FAST_WHEEL_BITMAP 671 tw->fast_slot_bitmap =
673 t->fast_ring_offset, 1);
686 #if TW_TIMER_WHEELS > 1 696 next_index = head->next;
702 while (next_index != head - tw->timers)
705 next_index = t->next;
708 t->next = t->prev = ~0;
713 vec_add1 (callback_vector, t->user_handle);
714 #if TW_START_STOP_TRACE_SIZE > 0 715 TW (tw_timer_trace) (tw, 0xfe, t->user_handle,
725 #if TW_FAST_WHEEL_BITMAP 726 tw->fast_slot_bitmap =
728 t->fast_ring_offset, 1);
740 next_index = head->next;
749 next_index = t->next;
750 vec_add1 (callback_vector, t->user_handle);
751 #if TW_START_STOP_TRACE_SIZE > 0 752 TW (tw_timer_trace) (tw, 0xfe, t->user_handle, t - tw->timers);
758 if (callback_vector_arg == 0 &&
vec_len (callback_vector))
761 if (tw->expired_timer_callback)
763 tw->expired_timer_callback (callback_vector);
766 tw->expired_timer_handles = callback_vector;
769 #if TW_FAST_WHEEL_BITMAP 771 fast_wheel_index, 0);
778 #if TW_TIMER_WHEELS > 1 784 #if TW_TIMER_WHEELS > 2 786 glacier_wheel_index++;
790 if (
vec_len (callback_vector) >= tw->max_expirations)
794 if (callback_vector_arg == 0)
795 tw->expired_timer_handles = callback_vector;
797 tw->last_run_time += i * tw->timer_interval;
798 return callback_vector;
812 #if TW_FAST_WHEEL_BITMAP 820 u32 TW (tw_timer_first_expires_in_ticks) (
TWT (tw_timer_wheel) * tw)
822 u32 first_expiring_index, fast_ring_index;
832 first_expiring_index = clib_bitmap_next_set (tw->fast_slot_bitmap,
834 if (first_expiring_index == ~0 && fast_ring_index != 0)
837 ASSERT (first_expiring_index != ~0);
839 delta = (
i32) first_expiring_index - (
i32) fast_ring_index;
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u32 TW() tw_timer_start(TWT(tw_timer_wheel)*tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
void TW() tw_timer_wheel_init(TWT(tw_timer_wheel)*tw, void *expired_timer_callback, f64 timer_interval_in_seconds, u32 max_expirations)
Initialize a tw timer wheel template instance.
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
#define TW_TIMERS_PER_OBJECT
u32 *TW() tw_timer_expire_timers_vec(TWT(tw_timer_wheel)*tw, f64 now, u32 *vec)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static uword clib_bitmap_is_zero(uword *ai)
predicate function; is an entire bitmap empty?
#define LOG2_TW_TIMERS_PER_OBJECT
void TW() tw_timer_update(TWT(tw_timer_wheel)*tw, u32 handle, u64 interval)
Update a tw timer.
static void timer_addhead(TWT(tw_timer)*pool, u32 head_index, u32 new_index)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
#define TW_SLOTS_PER_RING
static u32 *TW() tw_timer_expire_timers_internal(TWT(tw_timer_wheel)*tw, f64 now, u32 *callback_vector_arg)
Advance a tw timer wheel.
#define pool_put(P, E)
Free an object E in pool P.
static void timer_add(TWT(tw_timer_wheel)*tw, TWT(tw_timer)*t, u64 interval)
static void timer_remove(TWT(tw_timer)*pool, TWT(tw_timer)*elt)
#define clib_warning(format, args...)
void TW() tw_timer_stop(TWT(tw_timer_wheel)*tw, u32 handle)
Stop a tw timer.
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
u32 *TW() tw_timer_expire_timers(TWT(tw_timer_wheel)*tw, f64 now)
#define pool_put_index(p, i)
Free pool element with given index.
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static u32 TW() make_internal_timer_handle(u32 pool_index, u32 timer_id)
void TW() tw_timer_wheel_free(TWT(tw_timer_wheel)*tw)
Free a tw timer wheel template instance.
u32 head_index
Listhead of timers which expire in this interval.