mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
Use sys-queue.h for break/watchpoint managment (Jan Kiszka)
This switches cpu_break/watchpoint_* to TAILQ wrappers, simplifying the code and also fixing a use after release issue in cpu_break/watchpoint_remove_all. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5799 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
31280d92d1
commit
c0ce998e94
13 changed files with 49 additions and 84 deletions
|
@ -1776,8 +1776,8 @@ gen_intermediate_code_internal(CPUState * env, TranslationBlock * tb,
|
|||
max_insns = CF_COUNT_MASK;
|
||||
gen_icount_start();
|
||||
while (ctx.bstate == BS_NONE && gen_opc_ptr < gen_opc_end) {
|
||||
if (unlikely(env->breakpoints)) {
|
||||
for (bp = env->breakpoints; bp != NULL; bp = bp->next) {
|
||||
if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) {
|
||||
TAILQ_FOREACH(bp, &env->breakpoints, entry) {
|
||||
if (ctx.pc == bp->pc) {
|
||||
/* We have hit a breakpoint - make sure PC is up-to-date */
|
||||
tcg_gen_movi_i32(cpu_pc, ctx.pc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue