cpu-exec-common.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * emulator main execution loop
  3. *
  4. * Copyright (c) 2003-2005 Fabrice Bellard
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include "qemu/osdep.h"
  20. #include "system/cpus.h"
  21. #include "system/tcg.h"
  22. #include "qemu/plugin.h"
  23. #include "internal-common.h"
  24. bool tcg_allowed;
  25. /* exit the current TB, but without causing any exception to be raised */
  26. void cpu_loop_exit_noexc(CPUState *cpu)
  27. {
  28. cpu->exception_index = -1;
  29. cpu_loop_exit(cpu);
  30. }
  31. void cpu_loop_exit(CPUState *cpu)
  32. {
  33. /* Undo the setting in cpu_tb_exec. */
  34. cpu->neg.can_do_io = true;
  35. /* Undo any setting in generated code. */
  36. qemu_plugin_disable_mem_helpers(cpu);
  37. siglongjmp(cpu->jmp_env, 1);
  38. }
  39. void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
  40. {
  41. if (pc) {
  42. cpu_restore_state(cpu, pc);
  43. }
  44. cpu_loop_exit(cpu);
  45. }
  46. void cpu_loop_exit_atomic(CPUState *cpu, uintptr_t pc)
  47. {
  48. /* Prevent looping if already executing in a serial context. */
  49. g_assert(!cpu_in_serial_context(cpu));
  50. cpu->exception_index = EXCP_ATOMIC;
  51. cpu_loop_exit_restore(cpu, pc);
  52. }