Home
last modified time | relevance | path

Searched refs:replay_break_icount (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/replay/
H A Dreplay.c38 uint64_t replay_break_icount = -1ULL; variable
181 if (replay_break_icount != -1LL) { in replay_get_instructions()
183 assert(replay_break_icount >= current); in replay_get_instructions()
184 if (current + res > replay_break_icount) { in replay_get_instructions()
185 res = replay_break_icount - current; in replay_get_instructions()
H A Dreplay-debugging.c62 assert(replay_break_icount >= replay_get_current_icount()); in replay_break()
65 replay_break_icount = icount; in replay_break()
83 replay_break_icount = -1ULL; in replay_delete_break()
H A Dreplay-internal.h105 extern uint64_t replay_break_icount;
H A Dreplay-internal.c271 if (replay_break_icount == replay_state.current_icount) { in replay_advance_current_icount()