2015-09-11 05:39:31 +00:00
|
|
|
/*
|
|
|
|
* emulator main execution loop
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2005 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 14:08:56 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2015-09-11 05:39:31 +00: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/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 18:16:56 +00:00
|
|
|
#include "qemu/osdep.h"
|
2015-09-11 05:39:31 +00:00
|
|
|
#include "sysemu/cpus.h"
|
2019-05-23 14:35:05 +00:00
|
|
|
#include "sysemu/tcg.h"
|
2023-03-15 17:43:14 +00:00
|
|
|
#include "qemu/plugin.h"
|
2023-09-14 18:57:17 +00:00
|
|
|
#include "internal-common.h"
|
2015-09-11 05:39:31 +00:00
|
|
|
|
2017-07-03 10:12:12 +00:00
|
|
|
bool tcg_allowed;
|
|
|
|
|
2016-05-17 14:18:04 +00:00
|
|
|
/* exit the current TB, but without causing any exception to be raised */
|
|
|
|
void cpu_loop_exit_noexc(CPUState *cpu)
|
2015-09-11 05:39:31 +00:00
|
|
|
{
|
|
|
|
cpu->exception_index = -1;
|
2018-04-09 09:13:20 +00:00
|
|
|
cpu_loop_exit(cpu);
|
2015-09-11 05:39:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_loop_exit(CPUState *cpu)
|
|
|
|
{
|
2018-04-09 09:13:20 +00:00
|
|
|
/* Undo the setting in cpu_tb_exec. */
|
2023-09-15 22:41:39 +00:00
|
|
|
cpu->neg.can_do_io = true;
|
2023-03-15 17:43:10 +00:00
|
|
|
/* Undo any setting in generated code. */
|
|
|
|
qemu_plugin_disable_mem_helpers(cpu);
|
2015-09-11 05:39:31 +00:00
|
|
|
siglongjmp(cpu->jmp_env, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
|
|
|
|
{
|
|
|
|
if (pc) {
|
2022-10-24 13:09:57 +00:00
|
|
|
cpu_restore_state(cpu, pc);
|
2015-09-11 05:39:31 +00:00
|
|
|
}
|
2018-04-09 09:13:20 +00:00
|
|
|
cpu_loop_exit(cpu);
|
2015-09-11 05:39:31 +00:00
|
|
|
}
|
2016-06-30 05:12:55 +00:00
|
|
|
|
|
|
|
void cpu_loop_exit_atomic(CPUState *cpu, uintptr_t pc)
|
|
|
|
{
|
2022-10-26 04:58:09 +00:00
|
|
|
/* Prevent looping if already executing in a serial context. */
|
|
|
|
g_assert(!cpu_in_serial_context(cpu));
|
2016-06-30 05:12:55 +00:00
|
|
|
cpu->exception_index = EXCP_ATOMIC;
|
|
|
|
cpu_loop_exit_restore(cpu, pc);
|
|
|
|
}
|