2012-12-02 20:04:43 +04:00
|
|
|
/*
|
|
|
|
* Translated block handling
|
|
|
|
*
|
|
|
|
* 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
|
2019-01-23 17:08:56 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-12-02 20:04:43 +04:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
#ifndef TRANSLATE_ALL_H
|
|
|
|
#define TRANSLATE_ALL_H
|
|
|
|
|
2016-07-11 13:53:41 +03:00
|
|
|
#include "exec/exec-all.h"
|
|
|
|
|
|
|
|
|
2012-12-02 20:04:43 +04:00
|
|
|
/* translate-all.c */
|
2019-09-22 06:24:12 +03:00
|
|
|
void tb_check_watchpoint(CPUState *cpu, uintptr_t retaddr);
|
2012-12-02 20:04:43 +04:00
|
|
|
|
2015-04-22 15:15:48 +03:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2021-08-05 23:48:35 +03:00
|
|
|
void page_protect(tb_page_addr_t page_addr);
|
2016-05-17 17:18:03 +03:00
|
|
|
int page_unprotect(target_ulong address, uintptr_t pc);
|
2015-04-22 15:15:48 +03:00
|
|
|
#endif
|
|
|
|
|
2012-12-02 20:04:43 +04:00
|
|
|
#endif /* TRANSLATE_ALL_H */
|