cpu-exec-common.c 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 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 "cpu.h"
  21. #include "sysemu/cpus.h"
  22. #include "exec/exec-all.h"
  23. #include "exec/memory-internal.h"
  24. /* exit the current TB, but without causing any exception to be raised */
  25. void cpu_loop_exit_noexc(CPUState *cpu)
  26. {
  27. /* XXX: restore cpu registers saved in host registers */
  28. cpu->exception_index = -1;
  29. siglongjmp(cpu->jmp_env, 1);
  30. }
  31. #if defined(CONFIG_SOFTMMU)
  32. void cpu_reloading_memory_map(void)
  33. {
  34. if (qemu_in_vcpu_thread() && current_cpu->running) {
  35. /* The guest can in theory prolong the RCU critical section as long
  36. * as it feels like. The major problem with this is that because it
  37. * can do multiple reconfigurations of the memory map within the
  38. * critical section, we could potentially accumulate an unbounded
  39. * collection of memory data structures awaiting reclamation.
  40. *
  41. * Because the only thing we're currently protecting with RCU is the
  42. * memory data structures, it's sufficient to break the critical section
  43. * in this callback, which we know will get called every time the
  44. * memory map is rearranged.
  45. *
  46. * (If we add anything else in the system that uses RCU to protect
  47. * its data structures, we will need to implement some other mechanism
  48. * to force TCG CPUs to exit the critical section, at which point this
  49. * part of this callback might become unnecessary.)
  50. *
  51. * This pair matches cpu_exec's rcu_read_lock()/rcu_read_unlock(), which
  52. * only protects cpu->as->dispatch. Since we know our caller is about
  53. * to reload it, it's safe to split the critical section.
  54. */
  55. rcu_read_unlock();
  56. rcu_read_lock();
  57. }
  58. }
  59. #endif
  60. void cpu_loop_exit(CPUState *cpu)
  61. {
  62. siglongjmp(cpu->jmp_env, 1);
  63. }
  64. void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
  65. {
  66. if (pc) {
  67. cpu_restore_state(cpu, pc);
  68. }
  69. siglongjmp(cpu->jmp_env, 1);
  70. }
  71. void cpu_loop_exit_atomic(CPUState *cpu, uintptr_t pc)
  72. {
  73. cpu->exception_index = EXCP_ATOMIC;
  74. cpu_loop_exit_restore(cpu, pc);
  75. }