Richard Henderson writes:
> On 07/13/2017 10:25 PM, Lluís Vilanova wrote:
>> +/* Pass breakpoint hits to target for further processing */
>> +if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) {
>> +CPUBreakpoint *bp;
>> +QTAILQ_FOREACH(bp, &cpu->breakpoints, e
On 07/13/2017 10:25 PM, Lluís Vilanova wrote:
+/* Pass breakpoint hits to target for further processing */
+if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) {
+CPUBreakpoint *bp;
+QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
+if (bp->pc ==
Signed-off-by: Lluís Vilanova
---
accel/tcg/Makefile.objs |1
accel/tcg/translator.c| 141 +
include/exec/translator.h | 94 ++
3 files changed, 236 insertions(+)
create mode 100644 accel/tcg/translator.c
diff