Home
last modified time | relevance | path

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

/openbmc/qemu/target/i386/whpx/
H A Dwhpx-all.c1154 struct whpx_breakpoint_collection *new_breakpoints = in whpx_translate_cpu_breakpoints() local
1158 new_breakpoints->allocated = max_breakpoints; in whpx_translate_cpu_breakpoints()
1159 new_breakpoints->used = 0; in whpx_translate_cpu_breakpoints()
1169 new_breakpoints->data[new_breakpoints->used++] = in whpx_translate_cpu_breakpoints()
1183 for (i = 0; i < new_breakpoints->used; i++) { in whpx_translate_cpu_breakpoints()
1193 if (new_breakpoints->data[i].address == bp->pc) { in whpx_translate_cpu_breakpoints()
1195 if (new_breakpoints->data[i].state == WHPX_BP_CLEAR_PENDING) { in whpx_translate_cpu_breakpoints()
1196 new_breakpoints->data[i].state = WHPX_BP_SET; in whpx_translate_cpu_breakpoints()
1197 } else if (new_breakpoints->data[i].state == WHPX_BP_SET) { in whpx_translate_cpu_breakpoints()
1198 new_breakpoints->data[i].state = WHPX_BP_SET_PENDING; in whpx_translate_cpu_breakpoints()
[all …]