2 * defines common to all virtual CPUs
4 * Copyright (c) 2003 Fabrice Bellard
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.
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.
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/>.
22 #include "qemu-common.h"
23 #include "cpu-common.h"
25 /* some important defines:
27 * WORDS_ALIGNED : if defined, the host cpu can only make word aligned
30 * HOST_WORDS_BIGENDIAN : if defined, the host cpu is big endian and
31 * otherwise little endian.
33 * (TARGET_WORDS_ALIGNED : same for target cpu (not supported yet))
35 * TARGET_WORDS_BIGENDIAN : same for target cpu
38 #include "softfloat.h"
40 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
46 static inline uint16_t tswap16(uint16_t s
)
51 static inline uint32_t tswap32(uint32_t s
)
56 static inline uint64_t tswap64(uint64_t s
)
61 static inline void tswap16s(uint16_t *s
)
66 static inline void tswap32s(uint32_t *s
)
71 static inline void tswap64s(uint64_t *s
)
78 static inline uint16_t tswap16(uint16_t s
)
83 static inline uint32_t tswap32(uint32_t s
)
88 static inline uint64_t tswap64(uint64_t s
)
93 static inline void tswap16s(uint16_t *s
)
97 static inline void tswap32s(uint32_t *s
)
101 static inline void tswap64s(uint64_t *s
)
107 #if TARGET_LONG_SIZE == 4
108 #define tswapl(s) tswap32(s)
109 #define tswapls(s) tswap32s((uint32_t *)(s))
110 #define bswaptls(s) bswap32s(s)
112 #define tswapl(s) tswap64(s)
113 #define tswapls(s) tswap64s((uint64_t *)(s))
114 #define bswaptls(s) bswap64s(s)
122 /* NOTE: arm FPA is horrible as double 32 bit words are stored in big
126 #if defined(HOST_WORDS_BIGENDIAN)
150 #if defined(HOST_WORDS_BIGENDIAN)
175 /* CPU memory access without any memory or io remapping */
178 * the generic syntax for the memory accesses is:
180 * load: ld{type}{sign}{size}{endian}_{access_type}(ptr)
182 * store: st{type}{size}{endian}_{access_type}(ptr, val)
185 * (empty): integer access
189 * (empty): for floats or 32 bit size
200 * (empty): target cpu endianness or 8 bit access
201 * r : reversed target cpu endianness (not implemented yet)
202 * be : big endian (not implemented yet)
203 * le : little endian (not implemented yet)
206 * raw : host memory access
207 * user : user mode access using soft MMU
208 * kernel : kernel mode access using soft MMU
210 static inline int ldub_p(const void *ptr
)
212 return *(uint8_t *)ptr
;
215 static inline int ldsb_p(const void *ptr
)
217 return *(int8_t *)ptr
;
220 static inline void stb_p(void *ptr
, int v
)
225 /* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the
226 kernel handles unaligned load/stores may give better results, but
227 it is a system wide setting : bad */
228 #if defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
230 /* conservative code for little endian unaligned accesses */
231 static inline int lduw_le_p(const void *ptr
)
235 __asm__
__volatile__ ("lhbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
238 const uint8_t *p
= ptr
;
239 return p
[0] | (p
[1] << 8);
243 static inline int ldsw_le_p(const void *ptr
)
247 __asm__
__volatile__ ("lhbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
250 const uint8_t *p
= ptr
;
251 return (int16_t)(p
[0] | (p
[1] << 8));
255 static inline int ldl_le_p(const void *ptr
)
259 __asm__
__volatile__ ("lwbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
262 const uint8_t *p
= ptr
;
263 return p
[0] | (p
[1] << 8) | (p
[2] << 16) | (p
[3] << 24);
267 static inline uint64_t ldq_le_p(const void *ptr
)
269 const uint8_t *p
= ptr
;
272 v2
= ldl_le_p(p
+ 4);
273 return v1
| ((uint64_t)v2
<< 32);
276 static inline void stw_le_p(void *ptr
, int v
)
279 __asm__
__volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr
) : "r" (v
), "r" (ptr
));
287 static inline void stl_le_p(void *ptr
, int v
)
290 __asm__
__volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr
) : "r" (v
), "r" (ptr
));
300 static inline void stq_le_p(void *ptr
, uint64_t v
)
303 stl_le_p(p
, (uint32_t)v
);
304 stl_le_p(p
+ 4, v
>> 32);
309 static inline float32
ldfl_le_p(const void *ptr
)
319 static inline void stfl_le_p(void *ptr
, float32 v
)
329 static inline float64
ldfq_le_p(const void *ptr
)
332 u
.l
.lower
= ldl_le_p(ptr
);
333 u
.l
.upper
= ldl_le_p(ptr
+ 4);
337 static inline void stfq_le_p(void *ptr
, float64 v
)
341 stl_le_p(ptr
, u
.l
.lower
);
342 stl_le_p(ptr
+ 4, u
.l
.upper
);
347 static inline int lduw_le_p(const void *ptr
)
349 return *(uint16_t *)ptr
;
352 static inline int ldsw_le_p(const void *ptr
)
354 return *(int16_t *)ptr
;
357 static inline int ldl_le_p(const void *ptr
)
359 return *(uint32_t *)ptr
;
362 static inline uint64_t ldq_le_p(const void *ptr
)
364 return *(uint64_t *)ptr
;
367 static inline void stw_le_p(void *ptr
, int v
)
369 *(uint16_t *)ptr
= v
;
372 static inline void stl_le_p(void *ptr
, int v
)
374 *(uint32_t *)ptr
= v
;
377 static inline void stq_le_p(void *ptr
, uint64_t v
)
379 *(uint64_t *)ptr
= v
;
384 static inline float32
ldfl_le_p(const void *ptr
)
386 return *(float32
*)ptr
;
389 static inline float64
ldfq_le_p(const void *ptr
)
391 return *(float64
*)ptr
;
394 static inline void stfl_le_p(void *ptr
, float32 v
)
399 static inline void stfq_le_p(void *ptr
, float64 v
)
405 #if !defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
407 static inline int lduw_be_p(const void *ptr
)
409 #if defined(__i386__)
411 asm volatile ("movzwl %1, %0\n"
414 : "m" (*(uint16_t *)ptr
));
417 const uint8_t *b
= ptr
;
418 return ((b
[0] << 8) | b
[1]);
422 static inline int ldsw_be_p(const void *ptr
)
424 #if defined(__i386__)
426 asm volatile ("movzwl %1, %0\n"
429 : "m" (*(uint16_t *)ptr
));
432 const uint8_t *b
= ptr
;
433 return (int16_t)((b
[0] << 8) | b
[1]);
437 static inline int ldl_be_p(const void *ptr
)
439 #if defined(__i386__) || defined(__x86_64__)
441 asm volatile ("movl %1, %0\n"
444 : "m" (*(uint32_t *)ptr
));
447 const uint8_t *b
= ptr
;
448 return (b
[0] << 24) | (b
[1] << 16) | (b
[2] << 8) | b
[3];
452 static inline uint64_t ldq_be_p(const void *ptr
)
456 b
= ldl_be_p((uint8_t *)ptr
+ 4);
457 return (((uint64_t)a
<<32)|b
);
460 static inline void stw_be_p(void *ptr
, int v
)
462 #if defined(__i386__)
463 asm volatile ("xchgb %b0, %h0\n"
466 : "m" (*(uint16_t *)ptr
), "0" (v
));
468 uint8_t *d
= (uint8_t *) ptr
;
474 static inline void stl_be_p(void *ptr
, int v
)
476 #if defined(__i386__) || defined(__x86_64__)
477 asm volatile ("bswap %0\n"
480 : "m" (*(uint32_t *)ptr
), "0" (v
));
482 uint8_t *d
= (uint8_t *) ptr
;
490 static inline void stq_be_p(void *ptr
, uint64_t v
)
492 stl_be_p(ptr
, v
>> 32);
493 stl_be_p((uint8_t *)ptr
+ 4, v
);
498 static inline float32
ldfl_be_p(const void *ptr
)
508 static inline void stfl_be_p(void *ptr
, float32 v
)
518 static inline float64
ldfq_be_p(const void *ptr
)
521 u
.l
.upper
= ldl_be_p(ptr
);
522 u
.l
.lower
= ldl_be_p((uint8_t *)ptr
+ 4);
526 static inline void stfq_be_p(void *ptr
, float64 v
)
530 stl_be_p(ptr
, u
.l
.upper
);
531 stl_be_p((uint8_t *)ptr
+ 4, u
.l
.lower
);
536 static inline int lduw_be_p(const void *ptr
)
538 return *(uint16_t *)ptr
;
541 static inline int ldsw_be_p(const void *ptr
)
543 return *(int16_t *)ptr
;
546 static inline int ldl_be_p(const void *ptr
)
548 return *(uint32_t *)ptr
;
551 static inline uint64_t ldq_be_p(const void *ptr
)
553 return *(uint64_t *)ptr
;
556 static inline void stw_be_p(void *ptr
, int v
)
558 *(uint16_t *)ptr
= v
;
561 static inline void stl_be_p(void *ptr
, int v
)
563 *(uint32_t *)ptr
= v
;
566 static inline void stq_be_p(void *ptr
, uint64_t v
)
568 *(uint64_t *)ptr
= v
;
573 static inline float32
ldfl_be_p(const void *ptr
)
575 return *(float32
*)ptr
;
578 static inline float64
ldfq_be_p(const void *ptr
)
580 return *(float64
*)ptr
;
583 static inline void stfl_be_p(void *ptr
, float32 v
)
588 static inline void stfq_be_p(void *ptr
, float64 v
)
595 /* target CPU memory access functions */
596 #if defined(TARGET_WORDS_BIGENDIAN)
597 #define lduw_p(p) lduw_be_p(p)
598 #define ldsw_p(p) ldsw_be_p(p)
599 #define ldl_p(p) ldl_be_p(p)
600 #define ldq_p(p) ldq_be_p(p)
601 #define ldfl_p(p) ldfl_be_p(p)
602 #define ldfq_p(p) ldfq_be_p(p)
603 #define stw_p(p, v) stw_be_p(p, v)
604 #define stl_p(p, v) stl_be_p(p, v)
605 #define stq_p(p, v) stq_be_p(p, v)
606 #define stfl_p(p, v) stfl_be_p(p, v)
607 #define stfq_p(p, v) stfq_be_p(p, v)
609 #define lduw_p(p) lduw_le_p(p)
610 #define ldsw_p(p) ldsw_le_p(p)
611 #define ldl_p(p) ldl_le_p(p)
612 #define ldq_p(p) ldq_le_p(p)
613 #define ldfl_p(p) ldfl_le_p(p)
614 #define ldfq_p(p) ldfq_le_p(p)
615 #define stw_p(p, v) stw_le_p(p, v)
616 #define stl_p(p, v) stl_le_p(p, v)
617 #define stq_p(p, v) stq_le_p(p, v)
618 #define stfl_p(p, v) stfl_le_p(p, v)
619 #define stfq_p(p, v) stfq_le_p(p, v)
622 /* MMU memory access macros */
624 #if defined(CONFIG_USER_ONLY)
626 #include "qemu-types.h"
628 /* On some host systems the guest address space is reserved on the host.
629 * This allows the guest address space to be offset to a convenient location.
631 #if defined(CONFIG_USE_GUEST_BASE)
632 extern unsigned long guest_base
;
633 extern int have_guest_base
;
634 extern unsigned long reserved_va
;
635 #define GUEST_BASE guest_base
636 #define RESERVED_VA reserved_va
638 #define GUEST_BASE 0ul
639 #define RESERVED_VA 0ul
642 /* All direct uses of g2h and h2g need to go away for usermode softmmu. */
643 #define g2h(x) ((void *)((unsigned long)(x) + GUEST_BASE))
645 #if HOST_LONG_BITS <= TARGET_VIRT_ADDR_SPACE_BITS
646 #define h2g_valid(x) 1
648 #define h2g_valid(x) ({ \
649 unsigned long __guest = (unsigned long)(x) - GUEST_BASE; \
650 __guest < (1ul << TARGET_VIRT_ADDR_SPACE_BITS); \
655 unsigned long __ret = (unsigned long)(x) - GUEST_BASE; \
656 /* Check if given address fits target address space */ \
657 assert(h2g_valid(x)); \
661 #define saddr(x) g2h(x)
662 #define laddr(x) g2h(x)
664 #else /* !CONFIG_USER_ONLY */
665 /* NOTE: we use double casts if pointers and target_ulong have
667 #define saddr(x) (uint8_t *)(long)(x)
668 #define laddr(x) (uint8_t *)(long)(x)
671 #define ldub_raw(p) ldub_p(laddr((p)))
672 #define ldsb_raw(p) ldsb_p(laddr((p)))
673 #define lduw_raw(p) lduw_p(laddr((p)))
674 #define ldsw_raw(p) ldsw_p(laddr((p)))
675 #define ldl_raw(p) ldl_p(laddr((p)))
676 #define ldq_raw(p) ldq_p(laddr((p)))
677 #define ldfl_raw(p) ldfl_p(laddr((p)))
678 #define ldfq_raw(p) ldfq_p(laddr((p)))
679 #define stb_raw(p, v) stb_p(saddr((p)), v)
680 #define stw_raw(p, v) stw_p(saddr((p)), v)
681 #define stl_raw(p, v) stl_p(saddr((p)), v)
682 #define stq_raw(p, v) stq_p(saddr((p)), v)
683 #define stfl_raw(p, v) stfl_p(saddr((p)), v)
684 #define stfq_raw(p, v) stfq_p(saddr((p)), v)
687 #if defined(CONFIG_USER_ONLY)
689 /* if user mode, no other memory access functions */
690 #define ldub(p) ldub_raw(p)
691 #define ldsb(p) ldsb_raw(p)
692 #define lduw(p) lduw_raw(p)
693 #define ldsw(p) ldsw_raw(p)
694 #define ldl(p) ldl_raw(p)
695 #define ldq(p) ldq_raw(p)
696 #define ldfl(p) ldfl_raw(p)
697 #define ldfq(p) ldfq_raw(p)
698 #define stb(p, v) stb_raw(p, v)
699 #define stw(p, v) stw_raw(p, v)
700 #define stl(p, v) stl_raw(p, v)
701 #define stq(p, v) stq_raw(p, v)
702 #define stfl(p, v) stfl_raw(p, v)
703 #define stfq(p, v) stfq_raw(p, v)
705 #define ldub_code(p) ldub_raw(p)
706 #define ldsb_code(p) ldsb_raw(p)
707 #define lduw_code(p) lduw_raw(p)
708 #define ldsw_code(p) ldsw_raw(p)
709 #define ldl_code(p) ldl_raw(p)
710 #define ldq_code(p) ldq_raw(p)
712 #define ldub_kernel(p) ldub_raw(p)
713 #define ldsb_kernel(p) ldsb_raw(p)
714 #define lduw_kernel(p) lduw_raw(p)
715 #define ldsw_kernel(p) ldsw_raw(p)
716 #define ldl_kernel(p) ldl_raw(p)
717 #define ldq_kernel(p) ldq_raw(p)
718 #define ldfl_kernel(p) ldfl_raw(p)
719 #define ldfq_kernel(p) ldfq_raw(p)
720 #define stb_kernel(p, v) stb_raw(p, v)
721 #define stw_kernel(p, v) stw_raw(p, v)
722 #define stl_kernel(p, v) stl_raw(p, v)
723 #define stq_kernel(p, v) stq_raw(p, v)
724 #define stfl_kernel(p, v) stfl_raw(p, v)
725 #define stfq_kernel(p, vt) stfq_raw(p, v)
727 #endif /* defined(CONFIG_USER_ONLY) */
729 /* page related stuff */
731 #define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
732 #define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1)
733 #define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK)
735 /* ??? These should be the larger of unsigned long and target_ulong. */
736 extern unsigned long qemu_real_host_page_size
;
737 extern unsigned long qemu_host_page_bits
;
738 extern unsigned long qemu_host_page_size
;
739 extern unsigned long qemu_host_page_mask
;
741 #define HOST_PAGE_ALIGN(addr) (((addr) + qemu_host_page_size - 1) & qemu_host_page_mask)
743 /* same as PROT_xxx */
744 #define PAGE_READ 0x0001
745 #define PAGE_WRITE 0x0002
746 #define PAGE_EXEC 0x0004
747 #define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC)
748 #define PAGE_VALID 0x0008
749 /* original state of the write flag (used when tracking self-modifying
751 #define PAGE_WRITE_ORG 0x0010
752 #if defined(CONFIG_BSD) && defined(CONFIG_USER_ONLY)
753 /* FIXME: Code that sets/uses this is broken and needs to go away. */
754 #define PAGE_RESERVED 0x0020
757 #if defined(CONFIG_USER_ONLY)
758 void page_dump(FILE *f
);
760 typedef int (*walk_memory_regions_fn
)(void *, abi_ulong
,
761 abi_ulong
, unsigned long);
762 int walk_memory_regions(void *, walk_memory_regions_fn
);
764 int page_get_flags(target_ulong address
);
765 void page_set_flags(target_ulong start
, target_ulong end
, int flags
);
766 int page_check_range(target_ulong start
, target_ulong len
, int flags
);
769 CPUState
*cpu_copy(CPUState
*env
);
770 CPUState
*qemu_get_cpu(int cpu
);
772 #define CPU_DUMP_CODE 0x00010000
774 void cpu_dump_state(CPUState
*env
, FILE *f
, fprintf_function cpu_fprintf
,
776 void cpu_dump_statistics(CPUState
*env
, FILE *f
, fprintf_function cpu_fprintf
,
779 void QEMU_NORETURN
cpu_abort(CPUState
*env
, const char *fmt
, ...)
781 extern CPUState
*first_cpu
;
782 extern CPUState
*cpu_single_env
;
784 /* Flags for use in ENV->INTERRUPT_PENDING.
786 The numbers assigned here are non-sequential in order to preserve
787 binary compatibility with the vmstate dump. Bit 0 (0x0001) was
788 previously used for CPU_INTERRUPT_EXIT, and is cleared when loading
791 /* External hardware interrupt pending. This is typically used for
792 interrupts from devices. */
793 #define CPU_INTERRUPT_HARD 0x0002
795 /* Exit the current TB. This is typically used when some system-level device
796 makes some change to the memory mapping. E.g. the a20 line change. */
797 #define CPU_INTERRUPT_EXITTB 0x0004
800 #define CPU_INTERRUPT_HALT 0x0020
802 /* Debug event pending. */
803 #define CPU_INTERRUPT_DEBUG 0x0080
805 /* Several target-specific external hardware interrupts. Each target/cpu.h
806 should define proper names based on these defines. */
807 #define CPU_INTERRUPT_TGT_EXT_0 0x0008
808 #define CPU_INTERRUPT_TGT_EXT_1 0x0010
809 #define CPU_INTERRUPT_TGT_EXT_2 0x0040
810 #define CPU_INTERRUPT_TGT_EXT_3 0x0200
811 #define CPU_INTERRUPT_TGT_EXT_4 0x1000
813 /* Several target-specific internal interrupts. These differ from the
814 preceeding target-specific interrupts in that they are intended to
815 originate from within the cpu itself, typically in response to some
816 instruction being executed. These, therefore, are not masked while
817 single-stepping within the debugger. */
818 #define CPU_INTERRUPT_TGT_INT_0 0x0100
819 #define CPU_INTERRUPT_TGT_INT_1 0x0400
820 #define CPU_INTERRUPT_TGT_INT_2 0x0800
822 /* First unused bit: 0x2000. */
824 /* The set of all bits that should be masked when single-stepping. */
825 #define CPU_INTERRUPT_SSTEP_MASK \
826 (CPU_INTERRUPT_HARD \
827 | CPU_INTERRUPT_TGT_EXT_0 \
828 | CPU_INTERRUPT_TGT_EXT_1 \
829 | CPU_INTERRUPT_TGT_EXT_2 \
830 | CPU_INTERRUPT_TGT_EXT_3 \
831 | CPU_INTERRUPT_TGT_EXT_4)
833 #ifndef CONFIG_USER_ONLY
834 typedef void (*CPUInterruptHandler
)(CPUState
*, int);
836 extern CPUInterruptHandler cpu_interrupt_handler
;
838 static inline void cpu_interrupt(CPUState
*s
, int mask
)
840 cpu_interrupt_handler(s
, mask
);
842 #else /* USER_ONLY */
843 void cpu_interrupt(CPUState
*env
, int mask
);
844 #endif /* USER_ONLY */
846 void cpu_reset_interrupt(CPUState
*env
, int mask
);
848 void cpu_exit(CPUState
*s
);
850 int qemu_cpu_has_work(CPUState
*env
);
852 /* Breakpoint/watchpoint flags */
853 #define BP_MEM_READ 0x01
854 #define BP_MEM_WRITE 0x02
855 #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
856 #define BP_STOP_BEFORE_ACCESS 0x04
857 #define BP_WATCHPOINT_HIT 0x08
861 int cpu_breakpoint_insert(CPUState
*env
, target_ulong pc
, int flags
,
862 CPUBreakpoint
**breakpoint
);
863 int cpu_breakpoint_remove(CPUState
*env
, target_ulong pc
, int flags
);
864 void cpu_breakpoint_remove_by_ref(CPUState
*env
, CPUBreakpoint
*breakpoint
);
865 void cpu_breakpoint_remove_all(CPUState
*env
, int mask
);
866 int cpu_watchpoint_insert(CPUState
*env
, target_ulong addr
, target_ulong len
,
867 int flags
, CPUWatchpoint
**watchpoint
);
868 int cpu_watchpoint_remove(CPUState
*env
, target_ulong addr
,
869 target_ulong len
, int flags
);
870 void cpu_watchpoint_remove_by_ref(CPUState
*env
, CPUWatchpoint
*watchpoint
);
871 void cpu_watchpoint_remove_all(CPUState
*env
, int mask
);
873 #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
874 #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
875 #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
877 void cpu_single_step(CPUState
*env
, int enabled
);
878 void cpu_reset(CPUState
*s
);
879 int cpu_is_stopped(CPUState
*env
);
880 void run_on_cpu(CPUState
*env
, void (*func
)(void *data
), void *data
);
882 #define CPU_LOG_TB_OUT_ASM (1 << 0)
883 #define CPU_LOG_TB_IN_ASM (1 << 1)
884 #define CPU_LOG_TB_OP (1 << 2)
885 #define CPU_LOG_TB_OP_OPT (1 << 3)
886 #define CPU_LOG_INT (1 << 4)
887 #define CPU_LOG_EXEC (1 << 5)
888 #define CPU_LOG_PCALL (1 << 6)
889 #define CPU_LOG_IOPORT (1 << 7)
890 #define CPU_LOG_TB_CPU (1 << 8)
891 #define CPU_LOG_RESET (1 << 9)
893 /* define log items */
894 typedef struct CPULogItem
{
900 extern const CPULogItem cpu_log_items
[];
902 void cpu_set_log(int log_flags
);
903 void cpu_set_log_filename(const char *filename
);
904 int cpu_str_to_log_mask(const char *str
);
906 #if !defined(CONFIG_USER_ONLY)
908 /* Return the physical page corresponding to a virtual one. Use it
909 only for debugging because no protection checks are done. Return -1
911 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
);
915 extern int phys_ram_fd
;
916 extern ram_addr_t ram_size
;
918 /* RAM is pre-allocated and passed into qemu_ram_alloc_from_ptr */
919 #define RAM_PREALLOC_MASK (1 << 0)
921 typedef struct RAMBlock
{
927 QLIST_ENTRY(RAMBlock
) next
;
928 #if defined(__linux__) && !defined(TARGET_S390X)
933 typedef struct RAMList
{
935 QLIST_HEAD(ram
, RAMBlock
) blocks
;
937 extern RAMList ram_list
;
939 extern const char *mem_path
;
940 extern int mem_prealloc
;
942 /* physical memory access */
944 /* MMIO pages are identified by a combination of an IO device index and
945 3 flags. The ROMD code stores the page ram offset in iotlb entry,
946 so only a limited number of ids are avaiable. */
948 #define IO_MEM_NB_ENTRIES (1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT))
950 /* Flags stored in the low bits of the TLB virtual address. These are
951 defined so that fast path ram access is all zeros. */
952 /* Zero if TLB entry is valid. */
953 #define TLB_INVALID_MASK (1 << 3)
954 /* Set if TLB entry references a clean RAM page. The iotlb entry will
955 contain the page physical address. */
956 #define TLB_NOTDIRTY (1 << 4)
957 /* Set if TLB entry is an IO callback. */
958 #define TLB_MMIO (1 << 5)
960 #define VGA_DIRTY_FLAG 0x01
961 #define CODE_DIRTY_FLAG 0x02
962 #define MIGRATION_DIRTY_FLAG 0x08
964 /* read dirty bit (return 0 or 1) */
965 static inline int cpu_physical_memory_is_dirty(ram_addr_t addr
)
967 return ram_list
.phys_dirty
[addr
>> TARGET_PAGE_BITS
] == 0xff;
970 static inline int cpu_physical_memory_get_dirty_flags(ram_addr_t addr
)
972 return ram_list
.phys_dirty
[addr
>> TARGET_PAGE_BITS
];
975 static inline int cpu_physical_memory_get_dirty(ram_addr_t addr
,
978 return ram_list
.phys_dirty
[addr
>> TARGET_PAGE_BITS
] & dirty_flags
;
981 static inline void cpu_physical_memory_set_dirty(ram_addr_t addr
)
983 ram_list
.phys_dirty
[addr
>> TARGET_PAGE_BITS
] = 0xff;
986 static inline int cpu_physical_memory_set_dirty_flags(ram_addr_t addr
,
989 return ram_list
.phys_dirty
[addr
>> TARGET_PAGE_BITS
] |= dirty_flags
;
992 static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start
,
999 len
= length
>> TARGET_PAGE_BITS
;
1000 mask
= ~dirty_flags
;
1001 p
= ram_list
.phys_dirty
+ (start
>> TARGET_PAGE_BITS
);
1002 for (i
= 0; i
< len
; i
++) {
1007 void cpu_physical_memory_reset_dirty(ram_addr_t start
, ram_addr_t end
,
1009 void cpu_tlb_update_dirty(CPUState
*env
);
1011 int cpu_physical_memory_set_dirty_tracking(int enable
);
1013 int cpu_physical_memory_get_dirty_tracking(void);
1015 int cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr
,
1016 target_phys_addr_t end_addr
);
1018 int cpu_physical_log_start(target_phys_addr_t start_addr
,
1021 int cpu_physical_log_stop(target_phys_addr_t start_addr
,
1024 void dump_exec_info(FILE *f
, fprintf_function cpu_fprintf
);
1025 #endif /* !CONFIG_USER_ONLY */
1027 int cpu_memory_rw_debug(CPUState
*env
, target_ulong addr
,
1028 uint8_t *buf
, int len
, int is_write
);
1030 #endif /* CPU_ALL_H */