Keep system/watchpoint.c accelerator-agnostic by moving TCG specific code to accel/tcg/watchpoint.c. Update meson. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240111162032.43378-1-philmd@linaro.org>
		
			
				
	
	
		
			101 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * CPU watchpoints
 | 
						|
 *
 | 
						|
 *  Copyright (c) 2003 Fabrice Bellard
 | 
						|
 *
 | 
						|
 * This library is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU Lesser General Public
 | 
						|
 * License as published by the Free Software Foundation; either
 | 
						|
 * version 2.1 of the License, or (at your option) any later version.
 | 
						|
 *
 | 
						|
 * This library is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
 * Lesser General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU Lesser General Public
 | 
						|
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
 | 
						|
#include "qemu/osdep.h"
 | 
						|
#include "qemu/error-report.h"
 | 
						|
#include "exec/exec-all.h"
 | 
						|
#include "hw/core/cpu.h"
 | 
						|
 | 
						|
/* Add a watchpoint.  */
 | 
						|
int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
 | 
						|
                          int flags, CPUWatchpoint **watchpoint)
 | 
						|
{
 | 
						|
    CPUWatchpoint *wp;
 | 
						|
    vaddr in_page;
 | 
						|
 | 
						|
    /* forbid ranges which are empty or run off the end of the address space */
 | 
						|
    if (len == 0 || (addr + len - 1) < addr) {
 | 
						|
        error_report("tried to set invalid watchpoint at %"
 | 
						|
                     VADDR_PRIx ", len=%" VADDR_PRIu, addr, len);
 | 
						|
        return -EINVAL;
 | 
						|
    }
 | 
						|
    wp = g_malloc(sizeof(*wp));
 | 
						|
 | 
						|
    wp->vaddr = addr;
 | 
						|
    wp->len = len;
 | 
						|
    wp->flags = flags;
 | 
						|
 | 
						|
    /* keep all GDB-injected watchpoints in front */
 | 
						|
    if (flags & BP_GDB) {
 | 
						|
        QTAILQ_INSERT_HEAD(&cpu->watchpoints, wp, entry);
 | 
						|
    } else {
 | 
						|
        QTAILQ_INSERT_TAIL(&cpu->watchpoints, wp, entry);
 | 
						|
    }
 | 
						|
 | 
						|
    in_page = -(addr | TARGET_PAGE_MASK);
 | 
						|
    if (len <= in_page) {
 | 
						|
        tlb_flush_page(cpu, addr);
 | 
						|
    } else {
 | 
						|
        tlb_flush(cpu);
 | 
						|
    }
 | 
						|
 | 
						|
    if (watchpoint) {
 | 
						|
        *watchpoint = wp;
 | 
						|
    }
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
/* Remove a specific watchpoint.  */
 | 
						|
int cpu_watchpoint_remove(CPUState *cpu, vaddr addr, vaddr len,
 | 
						|
                          int flags)
 | 
						|
{
 | 
						|
    CPUWatchpoint *wp;
 | 
						|
 | 
						|
    QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) {
 | 
						|
        if (addr == wp->vaddr && len == wp->len
 | 
						|
                && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) {
 | 
						|
            cpu_watchpoint_remove_by_ref(cpu, wp);
 | 
						|
            return 0;
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return -ENOENT;
 | 
						|
}
 | 
						|
 | 
						|
/* Remove a specific watchpoint by reference.  */
 | 
						|
void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint)
 | 
						|
{
 | 
						|
    QTAILQ_REMOVE(&cpu->watchpoints, watchpoint, entry);
 | 
						|
 | 
						|
    tlb_flush_page(cpu, watchpoint->vaddr);
 | 
						|
 | 
						|
    g_free(watchpoint);
 | 
						|
}
 | 
						|
 | 
						|
/* Remove all matching watchpoints.  */
 | 
						|
void cpu_watchpoint_remove_all(CPUState *cpu, int mask)
 | 
						|
{
 | 
						|
    CPUWatchpoint *wp, *next;
 | 
						|
 | 
						|
    QTAILQ_FOREACH_SAFE(wp, &cpu->watchpoints, entry, next) {
 | 
						|
        if (wp->flags & mask) {
 | 
						|
            cpu_watchpoint_remove_by_ref(cpu, wp);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |