1 | This is v4 of my notdirty + rom patch set with two suggested name | 1 | The following changes since commit 2ecfc0657afa5d29a373271b342f704a1a3c6737: |
---|---|---|---|
2 | changes (qemu_build_not_reached, TLB_DISCARD_WRITE) from David and Alex. | ||
3 | 2 | ||
4 | 3 | Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2020-12-10' into staging (2020-12-10 17:01:05 +0000) | |
5 | r~ | ||
6 | |||
7 | |||
8 | The following changes since commit 240ab11fb72049d6373cbbec8d788f8e411a00bc: | ||
9 | |||
10 | Merge remote-tracking branch 'remotes/aperard/tags/pull-xen-20190924' into staging (2019-09-24 15:36:31 +0100) | ||
11 | 4 | ||
12 | are available in the Git repository at: | 5 | are available in the Git repository at: |
13 | 6 | ||
14 | https://github.com/rth7680/qemu.git tags/pull-tcg-20190925 | 7 | https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20201210 |
15 | 8 | ||
16 | for you to fetch changes up to ae57db63acf5a0399232f852acc5c1d83ef63400: | 9 | for you to fetch changes up to 9e2658d62ebc23efe7df43fc0e306f129510d874: |
17 | 10 | ||
18 | cputlb: Pass retaddr to tb_check_watchpoint (2019-09-25 10:56:28 -0700) | 11 | accel/tcg: rename tcg-cpus functions to match module name (2020-12-10 17:44:10 -0600) |
19 | 12 | ||
20 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
21 | Fixes for TLB_BSWAP | 14 | Split CpusAccel for tcg variants |
22 | Coversion of NOTDIRTY and ROM handling to cputlb | ||
23 | Followup cleanups to cputlb | ||
24 | 15 | ||
25 | ---------------------------------------------------------------- | 16 | ---------------------------------------------------------------- |
26 | Richard Henderson (16): | 17 | Claudio Fontana (3): |
27 | exec: Use TARGET_PAGE_BITS_MIN for TLB flags | 18 | accel/tcg: split CpusAccel into three TCG variants |
28 | cputlb: Disable __always_inline__ without optimization | 19 | accel/tcg: split tcg_start_vcpu_thread |
29 | qemu/compiler.h: Add qemu_build_not_reached | 20 | accel/tcg: rename tcg-cpus functions to match module name |
30 | cputlb: Use qemu_build_not_reached in load/store_helpers | ||
31 | cputlb: Split out load/store_memop | ||
32 | cputlb: Introduce TLB_BSWAP | ||
33 | exec: Adjust notdirty tracing | ||
34 | cputlb: Move ROM handling from I/O path to TLB path | ||
35 | cputlb: Move NOTDIRTY handling from I/O path to TLB path | ||
36 | cputlb: Partially inline memory_region_section_get_iotlb | ||
37 | cputlb: Merge and move memory_notdirty_write_{prepare,complete} | ||
38 | cputlb: Handle TLB_NOTDIRTY in probe_access | ||
39 | cputlb: Remove cpu->mem_io_vaddr | ||
40 | cputlb: Remove tb_invalidate_phys_page_range is_cpu_write_access | ||
41 | cputlb: Pass retaddr to tb_invalidate_phys_page_fast | ||
42 | cputlb: Pass retaddr to tb_check_watchpoint | ||
43 | 21 | ||
44 | accel/tcg/translate-all.h | 8 +- | 22 | accel/tcg/tcg-cpus-icount.h | 17 ++ |
45 | include/exec/cpu-all.h | 23 ++- | 23 | accel/tcg/tcg-cpus-rr.h | 21 ++ |
46 | include/exec/cpu-common.h | 3 - | 24 | accel/tcg/tcg-cpus.h | 12 +- |
47 | include/exec/exec-all.h | 6 +- | 25 | accel/tcg/tcg-all.c | 13 +- |
48 | include/exec/memory-internal.h | 65 -------- | 26 | accel/tcg/tcg-cpus-icount.c | 147 +++++++++++++ |
49 | include/hw/core/cpu.h | 2 - | 27 | accel/tcg/tcg-cpus-mttcg.c | 140 ++++++++++++ |
50 | include/qemu/compiler.h | 26 +++ | 28 | accel/tcg/tcg-cpus-rr.c | 305 ++++++++++++++++++++++++++ |
51 | accel/tcg/cputlb.c | 348 +++++++++++++++++++++++++---------------- | 29 | accel/tcg/tcg-cpus.c | 506 +------------------------------------------- |
52 | accel/tcg/translate-all.c | 51 +++--- | 30 | softmmu/icount.c | 2 +- |
53 | exec.c | 158 +------------------ | 31 | accel/tcg/meson.build | 9 +- |
54 | hw/core/cpu.c | 1 - | 32 | 10 files changed, 670 insertions(+), 502 deletions(-) |
55 | memory.c | 20 --- | 33 | create mode 100644 accel/tcg/tcg-cpus-icount.h |
56 | trace-events | 4 +- | 34 | create mode 100644 accel/tcg/tcg-cpus-rr.h |
57 | 13 files changed, 288 insertions(+), 427 deletions(-) | 35 | create mode 100644 accel/tcg/tcg-cpus-icount.c |
36 | create mode 100644 accel/tcg/tcg-cpus-mttcg.c | ||
37 | create mode 100644 accel/tcg/tcg-cpus-rr.c | ||
58 | 38 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | These bits do not need to vary with the actual page size | ||
2 | used by the guest. | ||
3 | 1 | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
5 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
6 | Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> | ||
7 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
8 | --- | ||
9 | include/exec/cpu-all.h | 16 ++++++++++------ | ||
10 | 1 file changed, 10 insertions(+), 6 deletions(-) | ||
11 | |||
12 | diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h | ||
13 | index XXXXXXX..XXXXXXX 100644 | ||
14 | --- a/include/exec/cpu-all.h | ||
15 | +++ b/include/exec/cpu-all.h | ||
16 | @@ -XXX,XX +XXX,XX @@ CPUArchState *cpu_copy(CPUArchState *env); | ||
17 | |||
18 | #if !defined(CONFIG_USER_ONLY) | ||
19 | |||
20 | -/* Flags stored in the low bits of the TLB virtual address. These are | ||
21 | - * defined so that fast path ram access is all zeros. | ||
22 | +/* | ||
23 | + * Flags stored in the low bits of the TLB virtual address. | ||
24 | + * These are defined so that fast path ram access is all zeros. | ||
25 | * The flags all must be between TARGET_PAGE_BITS and | ||
26 | * maximum address alignment bit. | ||
27 | + * | ||
28 | + * Use TARGET_PAGE_BITS_MIN so that these bits are constant | ||
29 | + * when TARGET_PAGE_BITS_VARY is in effect. | ||
30 | */ | ||
31 | /* Zero if TLB entry is valid. */ | ||
32 | -#define TLB_INVALID_MASK (1 << (TARGET_PAGE_BITS - 1)) | ||
33 | +#define TLB_INVALID_MASK (1 << (TARGET_PAGE_BITS_MIN - 1)) | ||
34 | /* Set if TLB entry references a clean RAM page. The iotlb entry will | ||
35 | contain the page physical address. */ | ||
36 | -#define TLB_NOTDIRTY (1 << (TARGET_PAGE_BITS - 2)) | ||
37 | +#define TLB_NOTDIRTY (1 << (TARGET_PAGE_BITS_MIN - 2)) | ||
38 | /* Set if TLB entry is an IO callback. */ | ||
39 | -#define TLB_MMIO (1 << (TARGET_PAGE_BITS - 3)) | ||
40 | +#define TLB_MMIO (1 << (TARGET_PAGE_BITS_MIN - 3)) | ||
41 | /* Set if TLB entry contains a watchpoint. */ | ||
42 | -#define TLB_WATCHPOINT (1 << (TARGET_PAGE_BITS - 4)) | ||
43 | +#define TLB_WATCHPOINT (1 << (TARGET_PAGE_BITS_MIN - 4)) | ||
44 | |||
45 | /* Use this mask to check interception with an alignment mask | ||
46 | * in a TCG backend. | ||
47 | -- | ||
48 | 2.17.1 | ||
49 | |||
50 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | This forced inlining can result in missing symbols, | ||
2 | which makes a debugging build harder to follow. | ||
3 | 1 | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
5 | Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> | ||
6 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
7 | Reported-by: Peter Maydell <peter.maydell@linaro.org> | ||
8 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
9 | --- | ||
10 | include/qemu/compiler.h | 11 +++++++++++ | ||
11 | accel/tcg/cputlb.c | 4 ++-- | ||
12 | 2 files changed, 13 insertions(+), 2 deletions(-) | ||
13 | |||
14 | diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/include/qemu/compiler.h | ||
17 | +++ b/include/qemu/compiler.h | ||
18 | @@ -XXX,XX +XXX,XX @@ | ||
19 | # define QEMU_NONSTRING | ||
20 | #endif | ||
21 | |||
22 | +/* | ||
23 | + * Forced inlining may be desired to encourage constant propagation | ||
24 | + * of function parameters. However, it can also make debugging harder, | ||
25 | + * so disable it for a non-optimizing build. | ||
26 | + */ | ||
27 | +#if defined(__OPTIMIZE__) | ||
28 | +#define QEMU_ALWAYS_INLINE __attribute__((always_inline)) | ||
29 | +#else | ||
30 | +#define QEMU_ALWAYS_INLINE | ||
31 | +#endif | ||
32 | + | ||
33 | /* Implement C11 _Generic via GCC builtins. Example: | ||
34 | * | ||
35 | * QEMU_GENERIC(x, (float, sinf), (long double, sinl), sin) (x) | ||
36 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
37 | index XXXXXXX..XXXXXXX 100644 | ||
38 | --- a/accel/tcg/cputlb.c | ||
39 | +++ b/accel/tcg/cputlb.c | ||
40 | @@ -XXX,XX +XXX,XX @@ static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr, | ||
41 | typedef uint64_t FullLoadHelper(CPUArchState *env, target_ulong addr, | ||
42 | TCGMemOpIdx oi, uintptr_t retaddr); | ||
43 | |||
44 | -static inline uint64_t __attribute__((always_inline)) | ||
45 | +static inline uint64_t QEMU_ALWAYS_INLINE | ||
46 | load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
47 | uintptr_t retaddr, MemOp op, bool code_read, | ||
48 | FullLoadHelper *full_load) | ||
49 | @@ -XXX,XX +XXX,XX @@ tcg_target_ulong helper_be_ldsl_mmu(CPUArchState *env, target_ulong addr, | ||
50 | * Store Helpers | ||
51 | */ | ||
52 | |||
53 | -static inline void __attribute__((always_inline)) | ||
54 | +static inline void QEMU_ALWAYS_INLINE | ||
55 | store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
56 | TCGMemOpIdx oi, uintptr_t retaddr, MemOp op) | ||
57 | { | ||
58 | -- | ||
59 | 2.17.1 | ||
60 | |||
61 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | Use this as a compile-time assert that a particular | ||
2 | code path is not reachable. | ||
3 | 1 | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
5 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | --- | ||
7 | include/qemu/compiler.h | 15 +++++++++++++++ | ||
8 | 1 file changed, 15 insertions(+) | ||
9 | |||
10 | diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h | ||
11 | index XXXXXXX..XXXXXXX 100644 | ||
12 | --- a/include/qemu/compiler.h | ||
13 | +++ b/include/qemu/compiler.h | ||
14 | @@ -XXX,XX +XXX,XX @@ | ||
15 | #define QEMU_GENERIC9(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC8(x, __VA_ARGS__)) | ||
16 | #define QEMU_GENERIC10(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC9(x, __VA_ARGS__)) | ||
17 | |||
18 | +/** | ||
19 | + * qemu_build_not_reached() | ||
20 | + * | ||
21 | + * The compiler, during optimization, is expected to prove that a call | ||
22 | + * to this function cannot be reached and remove it. If the compiler | ||
23 | + * supports QEMU_ERROR, this will be reported at compile time; otherwise | ||
24 | + * this will be reported at link time due to the missing symbol. | ||
25 | + */ | ||
26 | +#ifdef __OPTIMIZE__ | ||
27 | +extern void QEMU_NORETURN QEMU_ERROR("code path is reachable") | ||
28 | + qemu_build_not_reached(void); | ||
29 | +#else | ||
30 | +#define qemu_build_not_reached() g_assert_not_reached() | ||
31 | +#endif | ||
32 | + | ||
33 | #endif /* COMPILER_H */ | ||
34 | -- | ||
35 | 2.17.1 | ||
36 | |||
37 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | Increase the current runtime assert to a compile-time assert. | ||
2 | 1 | ||
3 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
5 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | --- | ||
7 | accel/tcg/cputlb.c | 5 ++--- | ||
8 | 1 file changed, 2 insertions(+), 3 deletions(-) | ||
9 | |||
10 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
11 | index XXXXXXX..XXXXXXX 100644 | ||
12 | --- a/accel/tcg/cputlb.c | ||
13 | +++ b/accel/tcg/cputlb.c | ||
14 | @@ -XXX,XX +XXX,XX @@ load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
15 | res = ldq_le_p(haddr); | ||
16 | break; | ||
17 | default: | ||
18 | - g_assert_not_reached(); | ||
19 | + qemu_build_not_reached(); | ||
20 | } | ||
21 | |||
22 | return res; | ||
23 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
24 | stq_le_p(haddr, val); | ||
25 | break; | ||
26 | default: | ||
27 | - g_assert_not_reached(); | ||
28 | - break; | ||
29 | + qemu_build_not_reached(); | ||
30 | } | ||
31 | } | ||
32 | |||
33 | -- | ||
34 | 2.17.1 | ||
35 | |||
36 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | We will shortly be using these more than once. | ||
2 | 1 | ||
3 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
4 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
5 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | --- | ||
7 | accel/tcg/cputlb.c | 107 +++++++++++++++++++++++---------------------- | ||
8 | 1 file changed, 55 insertions(+), 52 deletions(-) | ||
9 | |||
10 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
11 | index XXXXXXX..XXXXXXX 100644 | ||
12 | --- a/accel/tcg/cputlb.c | ||
13 | +++ b/accel/tcg/cputlb.c | ||
14 | @@ -XXX,XX +XXX,XX @@ static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr, | ||
15 | typedef uint64_t FullLoadHelper(CPUArchState *env, target_ulong addr, | ||
16 | TCGMemOpIdx oi, uintptr_t retaddr); | ||
17 | |||
18 | +static inline uint64_t QEMU_ALWAYS_INLINE | ||
19 | +load_memop(const void *haddr, MemOp op) | ||
20 | +{ | ||
21 | + switch (op) { | ||
22 | + case MO_UB: | ||
23 | + return ldub_p(haddr); | ||
24 | + case MO_BEUW: | ||
25 | + return lduw_be_p(haddr); | ||
26 | + case MO_LEUW: | ||
27 | + return lduw_le_p(haddr); | ||
28 | + case MO_BEUL: | ||
29 | + return (uint32_t)ldl_be_p(haddr); | ||
30 | + case MO_LEUL: | ||
31 | + return (uint32_t)ldl_le_p(haddr); | ||
32 | + case MO_BEQ: | ||
33 | + return ldq_be_p(haddr); | ||
34 | + case MO_LEQ: | ||
35 | + return ldq_le_p(haddr); | ||
36 | + default: | ||
37 | + qemu_build_not_reached(); | ||
38 | + } | ||
39 | +} | ||
40 | + | ||
41 | static inline uint64_t QEMU_ALWAYS_INLINE | ||
42 | load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
43 | uintptr_t retaddr, MemOp op, bool code_read, | ||
44 | @@ -XXX,XX +XXX,XX @@ load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
45 | |||
46 | do_aligned_access: | ||
47 | haddr = (void *)((uintptr_t)addr + entry->addend); | ||
48 | - switch (op) { | ||
49 | - case MO_UB: | ||
50 | - res = ldub_p(haddr); | ||
51 | - break; | ||
52 | - case MO_BEUW: | ||
53 | - res = lduw_be_p(haddr); | ||
54 | - break; | ||
55 | - case MO_LEUW: | ||
56 | - res = lduw_le_p(haddr); | ||
57 | - break; | ||
58 | - case MO_BEUL: | ||
59 | - res = (uint32_t)ldl_be_p(haddr); | ||
60 | - break; | ||
61 | - case MO_LEUL: | ||
62 | - res = (uint32_t)ldl_le_p(haddr); | ||
63 | - break; | ||
64 | - case MO_BEQ: | ||
65 | - res = ldq_be_p(haddr); | ||
66 | - break; | ||
67 | - case MO_LEQ: | ||
68 | - res = ldq_le_p(haddr); | ||
69 | - break; | ||
70 | - default: | ||
71 | - qemu_build_not_reached(); | ||
72 | - } | ||
73 | - | ||
74 | - return res; | ||
75 | + return load_memop(haddr, op); | ||
76 | } | ||
77 | |||
78 | /* | ||
79 | @@ -XXX,XX +XXX,XX @@ tcg_target_ulong helper_be_ldsl_mmu(CPUArchState *env, target_ulong addr, | ||
80 | * Store Helpers | ||
81 | */ | ||
82 | |||
83 | +static inline void QEMU_ALWAYS_INLINE | ||
84 | +store_memop(void *haddr, uint64_t val, MemOp op) | ||
85 | +{ | ||
86 | + switch (op) { | ||
87 | + case MO_UB: | ||
88 | + stb_p(haddr, val); | ||
89 | + break; | ||
90 | + case MO_BEUW: | ||
91 | + stw_be_p(haddr, val); | ||
92 | + break; | ||
93 | + case MO_LEUW: | ||
94 | + stw_le_p(haddr, val); | ||
95 | + break; | ||
96 | + case MO_BEUL: | ||
97 | + stl_be_p(haddr, val); | ||
98 | + break; | ||
99 | + case MO_LEUL: | ||
100 | + stl_le_p(haddr, val); | ||
101 | + break; | ||
102 | + case MO_BEQ: | ||
103 | + stq_be_p(haddr, val); | ||
104 | + break; | ||
105 | + case MO_LEQ: | ||
106 | + stq_le_p(haddr, val); | ||
107 | + break; | ||
108 | + default: | ||
109 | + qemu_build_not_reached(); | ||
110 | + } | ||
111 | +} | ||
112 | + | ||
113 | static inline void QEMU_ALWAYS_INLINE | ||
114 | store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
115 | TCGMemOpIdx oi, uintptr_t retaddr, MemOp op) | ||
116 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
117 | |||
118 | do_aligned_access: | ||
119 | haddr = (void *)((uintptr_t)addr + entry->addend); | ||
120 | - switch (op) { | ||
121 | - case MO_UB: | ||
122 | - stb_p(haddr, val); | ||
123 | - break; | ||
124 | - case MO_BEUW: | ||
125 | - stw_be_p(haddr, val); | ||
126 | - break; | ||
127 | - case MO_LEUW: | ||
128 | - stw_le_p(haddr, val); | ||
129 | - break; | ||
130 | - case MO_BEUL: | ||
131 | - stl_be_p(haddr, val); | ||
132 | - break; | ||
133 | - case MO_LEUL: | ||
134 | - stl_le_p(haddr, val); | ||
135 | - break; | ||
136 | - case MO_BEQ: | ||
137 | - stq_be_p(haddr, val); | ||
138 | - break; | ||
139 | - case MO_LEQ: | ||
140 | - stq_le_p(haddr, val); | ||
141 | - break; | ||
142 | - default: | ||
143 | - qemu_build_not_reached(); | ||
144 | - } | ||
145 | + store_memop(haddr, val, op); | ||
146 | } | ||
147 | |||
148 | void helper_ret_stb_mmu(CPUArchState *env, target_ulong addr, uint8_t val, | ||
149 | -- | ||
150 | 2.17.1 | ||
151 | |||
152 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | Handle bswap on ram directly in load/store_helper. This fixes a | ||
2 | bug with the previous implementation in that one cannot use the | ||
3 | I/O path for RAM. | ||
4 | 1 | ||
5 | Fixes: a26fc6f5152b47f1 | ||
6 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
7 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
8 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
9 | --- | ||
10 | include/exec/cpu-all.h | 4 ++- | ||
11 | accel/tcg/cputlb.c | 72 +++++++++++++++++++++++++----------------- | ||
12 | 2 files changed, 46 insertions(+), 30 deletions(-) | ||
13 | |||
14 | diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/include/exec/cpu-all.h | ||
17 | +++ b/include/exec/cpu-all.h | ||
18 | @@ -XXX,XX +XXX,XX @@ CPUArchState *cpu_copy(CPUArchState *env); | ||
19 | #define TLB_MMIO (1 << (TARGET_PAGE_BITS_MIN - 3)) | ||
20 | /* Set if TLB entry contains a watchpoint. */ | ||
21 | #define TLB_WATCHPOINT (1 << (TARGET_PAGE_BITS_MIN - 4)) | ||
22 | +/* Set if TLB entry requires byte swap. */ | ||
23 | +#define TLB_BSWAP (1 << (TARGET_PAGE_BITS_MIN - 5)) | ||
24 | |||
25 | /* Use this mask to check interception with an alignment mask | ||
26 | * in a TCG backend. | ||
27 | */ | ||
28 | #define TLB_FLAGS_MASK \ | ||
29 | - (TLB_INVALID_MASK | TLB_NOTDIRTY | TLB_MMIO | TLB_WATCHPOINT) | ||
30 | + (TLB_INVALID_MASK | TLB_NOTDIRTY | TLB_MMIO | TLB_WATCHPOINT | TLB_BSWAP) | ||
31 | |||
32 | /** | ||
33 | * tlb_hit_page: return true if page aligned @addr is a hit against the | ||
34 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
35 | index XXXXXXX..XXXXXXX 100644 | ||
36 | --- a/accel/tcg/cputlb.c | ||
37 | +++ b/accel/tcg/cputlb.c | ||
38 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
39 | address |= TLB_INVALID_MASK; | ||
40 | } | ||
41 | if (attrs.byte_swap) { | ||
42 | - /* Force the access through the I/O slow path. */ | ||
43 | - address |= TLB_MMIO; | ||
44 | + address |= TLB_BSWAP; | ||
45 | } | ||
46 | if (!memory_region_is_ram(section->mr) && | ||
47 | !memory_region_is_romd(section->mr)) { | ||
48 | @@ -XXX,XX +XXX,XX @@ static uint64_t io_readx(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
49 | bool locked = false; | ||
50 | MemTxResult r; | ||
51 | |||
52 | - if (iotlbentry->attrs.byte_swap) { | ||
53 | - op ^= MO_BSWAP; | ||
54 | - } | ||
55 | - | ||
56 | section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs); | ||
57 | mr = section->mr; | ||
58 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | ||
59 | @@ -XXX,XX +XXX,XX @@ static void io_writex(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
60 | bool locked = false; | ||
61 | MemTxResult r; | ||
62 | |||
63 | - if (iotlbentry->attrs.byte_swap) { | ||
64 | - op ^= MO_BSWAP; | ||
65 | - } | ||
66 | - | ||
67 | section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs); | ||
68 | mr = section->mr; | ||
69 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | ||
70 | @@ -XXX,XX +XXX,XX @@ void *probe_access(CPUArchState *env, target_ulong addr, int size, | ||
71 | wp_access, retaddr); | ||
72 | } | ||
73 | |||
74 | - if (tlb_addr & (TLB_NOTDIRTY | TLB_MMIO)) { | ||
75 | - /* I/O access */ | ||
76 | + /* Reject I/O access, or other required slow-path. */ | ||
77 | + if (tlb_addr & (TLB_NOTDIRTY | TLB_MMIO | TLB_BSWAP)) { | ||
78 | return NULL; | ||
79 | } | ||
80 | |||
81 | @@ -XXX,XX +XXX,XX @@ load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
82 | /* Handle anything that isn't just a straight memory access. */ | ||
83 | if (unlikely(tlb_addr & ~TARGET_PAGE_MASK)) { | ||
84 | CPUIOTLBEntry *iotlbentry; | ||
85 | + bool need_swap; | ||
86 | |||
87 | /* For anything that is unaligned, recurse through full_load. */ | ||
88 | if ((addr & (size - 1)) != 0) { | ||
89 | @@ -XXX,XX +XXX,XX @@ load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
90 | /* On watchpoint hit, this will longjmp out. */ | ||
91 | cpu_check_watchpoint(env_cpu(env), addr, size, | ||
92 | iotlbentry->attrs, BP_MEM_READ, retaddr); | ||
93 | - | ||
94 | - /* The backing page may or may not require I/O. */ | ||
95 | - tlb_addr &= ~TLB_WATCHPOINT; | ||
96 | - if ((tlb_addr & ~TARGET_PAGE_MASK) == 0) { | ||
97 | - goto do_aligned_access; | ||
98 | - } | ||
99 | } | ||
100 | |||
101 | + need_swap = size > 1 && (tlb_addr & TLB_BSWAP); | ||
102 | + | ||
103 | /* Handle I/O access. */ | ||
104 | - return io_readx(env, iotlbentry, mmu_idx, addr, | ||
105 | - retaddr, access_type, op); | ||
106 | + if (likely(tlb_addr & TLB_MMIO)) { | ||
107 | + return io_readx(env, iotlbentry, mmu_idx, addr, retaddr, | ||
108 | + access_type, op ^ (need_swap * MO_BSWAP)); | ||
109 | + } | ||
110 | + | ||
111 | + haddr = (void *)((uintptr_t)addr + entry->addend); | ||
112 | + | ||
113 | + /* | ||
114 | + * Keep these two load_memop separate to ensure that the compiler | ||
115 | + * is able to fold the entire function to a single instruction. | ||
116 | + * There is a build-time assert inside to remind you of this. ;-) | ||
117 | + */ | ||
118 | + if (unlikely(need_swap)) { | ||
119 | + return load_memop(haddr, op ^ MO_BSWAP); | ||
120 | + } | ||
121 | + return load_memop(haddr, op); | ||
122 | } | ||
123 | |||
124 | /* Handle slow unaligned access (it spans two pages or IO). */ | ||
125 | @@ -XXX,XX +XXX,XX @@ load_helper(CPUArchState *env, target_ulong addr, TCGMemOpIdx oi, | ||
126 | return res & MAKE_64BIT_MASK(0, size * 8); | ||
127 | } | ||
128 | |||
129 | - do_aligned_access: | ||
130 | haddr = (void *)((uintptr_t)addr + entry->addend); | ||
131 | return load_memop(haddr, op); | ||
132 | } | ||
133 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
134 | /* Handle anything that isn't just a straight memory access. */ | ||
135 | if (unlikely(tlb_addr & ~TARGET_PAGE_MASK)) { | ||
136 | CPUIOTLBEntry *iotlbentry; | ||
137 | + bool need_swap; | ||
138 | |||
139 | /* For anything that is unaligned, recurse through byte stores. */ | ||
140 | if ((addr & (size - 1)) != 0) { | ||
141 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
142 | /* On watchpoint hit, this will longjmp out. */ | ||
143 | cpu_check_watchpoint(env_cpu(env), addr, size, | ||
144 | iotlbentry->attrs, BP_MEM_WRITE, retaddr); | ||
145 | - | ||
146 | - /* The backing page may or may not require I/O. */ | ||
147 | - tlb_addr &= ~TLB_WATCHPOINT; | ||
148 | - if ((tlb_addr & ~TARGET_PAGE_MASK) == 0) { | ||
149 | - goto do_aligned_access; | ||
150 | - } | ||
151 | } | ||
152 | |||
153 | + need_swap = size > 1 && (tlb_addr & TLB_BSWAP); | ||
154 | + | ||
155 | /* Handle I/O access. */ | ||
156 | - io_writex(env, iotlbentry, mmu_idx, val, addr, retaddr, op); | ||
157 | + if (likely(tlb_addr & (TLB_MMIO | TLB_NOTDIRTY))) { | ||
158 | + io_writex(env, iotlbentry, mmu_idx, val, addr, retaddr, | ||
159 | + op ^ (need_swap * MO_BSWAP)); | ||
160 | + return; | ||
161 | + } | ||
162 | + | ||
163 | + haddr = (void *)((uintptr_t)addr + entry->addend); | ||
164 | + | ||
165 | + /* | ||
166 | + * Keep these two store_memop separate to ensure that the compiler | ||
167 | + * is able to fold the entire function to a single instruction. | ||
168 | + * There is a build-time assert inside to remind you of this. ;-) | ||
169 | + */ | ||
170 | + if (unlikely(need_swap)) { | ||
171 | + store_memop(haddr, val, op ^ MO_BSWAP); | ||
172 | + } else { | ||
173 | + store_memop(haddr, val, op); | ||
174 | + } | ||
175 | return; | ||
176 | } | ||
177 | |||
178 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
179 | return; | ||
180 | } | ||
181 | |||
182 | - do_aligned_access: | ||
183 | haddr = (void *)((uintptr_t)addr + entry->addend); | ||
184 | store_memop(haddr, val, op); | ||
185 | } | ||
186 | -- | ||
187 | 2.17.1 | ||
188 | |||
189 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | The memory_region_tb_read tracepoint is unreachable, since notdirty | ||
2 | is supposed to apply only to writes. The memory_region_tb_write | ||
3 | tracepoint is mis-named, because notdirty is not only used for TB | ||
4 | invalidation. It is also used for e.g. VGA RAM updates and migration. | ||
5 | 1 | ||
6 | Replace memory_region_tb_write with memory_notdirty_write_access, | ||
7 | and place it in memory_notdirty_write_prepare where it can catch | ||
8 | all of the instances. Add memory_notdirty_set_dirty to log when | ||
9 | we no longer intercept writes to a page. | ||
10 | |||
11 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
12 | Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> | ||
13 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
14 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
15 | --- | ||
16 | exec.c | 3 +++ | ||
17 | memory.c | 4 ---- | ||
18 | trace-events | 4 ++-- | ||
19 | 3 files changed, 5 insertions(+), 6 deletions(-) | ||
20 | |||
21 | diff --git a/exec.c b/exec.c | ||
22 | index XXXXXXX..XXXXXXX 100644 | ||
23 | --- a/exec.c | ||
24 | +++ b/exec.c | ||
25 | @@ -XXX,XX +XXX,XX @@ void memory_notdirty_write_prepare(NotDirtyInfo *ndi, | ||
26 | ndi->size = size; | ||
27 | ndi->pages = NULL; | ||
28 | |||
29 | + trace_memory_notdirty_write_access(mem_vaddr, ram_addr, size); | ||
30 | + | ||
31 | assert(tcg_enabled()); | ||
32 | if (!cpu_physical_memory_get_dirty_flag(ram_addr, DIRTY_MEMORY_CODE)) { | ||
33 | ndi->pages = page_collection_lock(ram_addr, ram_addr + size); | ||
34 | @@ -XXX,XX +XXX,XX @@ void memory_notdirty_write_complete(NotDirtyInfo *ndi) | ||
35 | /* we remove the notdirty callback only if the code has been | ||
36 | flushed */ | ||
37 | if (!cpu_physical_memory_is_clean(ndi->ram_addr)) { | ||
38 | + trace_memory_notdirty_set_dirty(ndi->mem_vaddr); | ||
39 | tlb_set_dirty(ndi->cpu, ndi->mem_vaddr); | ||
40 | } | ||
41 | } | ||
42 | diff --git a/memory.c b/memory.c | ||
43 | index XXXXXXX..XXXXXXX 100644 | ||
44 | --- a/memory.c | ||
45 | +++ b/memory.c | ||
46 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_read_accessor(MemoryRegion *mr, | ||
47 | /* Accesses to code which has previously been translated into a TB show | ||
48 | * up in the MMIO path, as accesses to the io_mem_notdirty | ||
49 | * MemoryRegion. */ | ||
50 | - trace_memory_region_tb_read(get_cpu_index(), addr, tmp, size); | ||
51 | } else if (TRACE_MEMORY_REGION_OPS_READ_ENABLED) { | ||
52 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
53 | trace_memory_region_ops_read(get_cpu_index(), mr, abs_addr, tmp, size); | ||
54 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_read_with_attrs_accessor(MemoryRegion *mr, | ||
55 | /* Accesses to code which has previously been translated into a TB show | ||
56 | * up in the MMIO path, as accesses to the io_mem_notdirty | ||
57 | * MemoryRegion. */ | ||
58 | - trace_memory_region_tb_read(get_cpu_index(), addr, tmp, size); | ||
59 | } else if (TRACE_MEMORY_REGION_OPS_READ_ENABLED) { | ||
60 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
61 | trace_memory_region_ops_read(get_cpu_index(), mr, abs_addr, tmp, size); | ||
62 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_write_accessor(MemoryRegion *mr, | ||
63 | /* Accesses to code which has previously been translated into a TB show | ||
64 | * up in the MMIO path, as accesses to the io_mem_notdirty | ||
65 | * MemoryRegion. */ | ||
66 | - trace_memory_region_tb_write(get_cpu_index(), addr, tmp, size); | ||
67 | } else if (TRACE_MEMORY_REGION_OPS_WRITE_ENABLED) { | ||
68 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
69 | trace_memory_region_ops_write(get_cpu_index(), mr, abs_addr, tmp, size); | ||
70 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_write_with_attrs_accessor(MemoryRegion *mr, | ||
71 | /* Accesses to code which has previously been translated into a TB show | ||
72 | * up in the MMIO path, as accesses to the io_mem_notdirty | ||
73 | * MemoryRegion. */ | ||
74 | - trace_memory_region_tb_write(get_cpu_index(), addr, tmp, size); | ||
75 | } else if (TRACE_MEMORY_REGION_OPS_WRITE_ENABLED) { | ||
76 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
77 | trace_memory_region_ops_write(get_cpu_index(), mr, abs_addr, tmp, size); | ||
78 | diff --git a/trace-events b/trace-events | ||
79 | index XXXXXXX..XXXXXXX 100644 | ||
80 | --- a/trace-events | ||
81 | +++ b/trace-events | ||
82 | @@ -XXX,XX +XXX,XX @@ dma_map_wait(void *dbs) "dbs=%p" | ||
83 | find_ram_offset(uint64_t size, uint64_t offset) "size: 0x%" PRIx64 " @ 0x%" PRIx64 | ||
84 | find_ram_offset_loop(uint64_t size, uint64_t candidate, uint64_t offset, uint64_t next, uint64_t mingap) "trying size: 0x%" PRIx64 " @ 0x%" PRIx64 ", offset: 0x%" PRIx64" next: 0x%" PRIx64 " mingap: 0x%" PRIx64 | ||
85 | ram_block_discard_range(const char *rbname, void *hva, size_t length, bool need_madvise, bool need_fallocate, int ret) "%s@%p + 0x%zx: madvise: %d fallocate: %d ret: %d" | ||
86 | +memory_notdirty_write_access(uint64_t vaddr, uint64_t ram_addr, unsigned size) "0x%" PRIx64 " ram_addr 0x%" PRIx64 " size %u" | ||
87 | +memory_notdirty_set_dirty(uint64_t vaddr) "0x%" PRIx64 | ||
88 | |||
89 | # memory.c | ||
90 | memory_region_ops_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
91 | memory_region_ops_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
92 | memory_region_subpage_read(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
93 | memory_region_subpage_write(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
94 | -memory_region_tb_read(int cpu_index, uint64_t addr, uint64_t value, unsigned size) "cpu %d addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
95 | -memory_region_tb_write(int cpu_index, uint64_t addr, uint64_t value, unsigned size) "cpu %d addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
96 | memory_region_ram_device_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
97 | memory_region_ram_device_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | ||
98 | flatview_new(void *view, void *root) "%p (root %p)" | ||
99 | -- | ||
100 | 2.17.1 | ||
101 | |||
102 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | It does not require going through the whole I/O path | ||
2 | in order to discard a write. | ||
3 | 1 | ||
4 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
5 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | --- | ||
7 | include/exec/cpu-all.h | 5 ++++- | ||
8 | include/exec/cpu-common.h | 1 - | ||
9 | accel/tcg/cputlb.c | 36 ++++++++++++++++++++-------------- | ||
10 | exec.c | 41 +-------------------------------------- | ||
11 | 4 files changed, 26 insertions(+), 57 deletions(-) | ||
12 | |||
13 | diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h | ||
14 | index XXXXXXX..XXXXXXX 100644 | ||
15 | --- a/include/exec/cpu-all.h | ||
16 | +++ b/include/exec/cpu-all.h | ||
17 | @@ -XXX,XX +XXX,XX @@ CPUArchState *cpu_copy(CPUArchState *env); | ||
18 | #define TLB_WATCHPOINT (1 << (TARGET_PAGE_BITS_MIN - 4)) | ||
19 | /* Set if TLB entry requires byte swap. */ | ||
20 | #define TLB_BSWAP (1 << (TARGET_PAGE_BITS_MIN - 5)) | ||
21 | +/* Set if TLB entry writes ignored. */ | ||
22 | +#define TLB_DISCARD_WRITE (1 << (TARGET_PAGE_BITS_MIN - 6)) | ||
23 | |||
24 | /* Use this mask to check interception with an alignment mask | ||
25 | * in a TCG backend. | ||
26 | */ | ||
27 | #define TLB_FLAGS_MASK \ | ||
28 | - (TLB_INVALID_MASK | TLB_NOTDIRTY | TLB_MMIO | TLB_WATCHPOINT | TLB_BSWAP) | ||
29 | + (TLB_INVALID_MASK | TLB_NOTDIRTY | TLB_MMIO \ | ||
30 | + | TLB_WATCHPOINT | TLB_BSWAP | TLB_DISCARD_WRITE) | ||
31 | |||
32 | /** | ||
33 | * tlb_hit_page: return true if page aligned @addr is a hit against the | ||
34 | diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h | ||
35 | index XXXXXXX..XXXXXXX 100644 | ||
36 | --- a/include/exec/cpu-common.h | ||
37 | +++ b/include/exec/cpu-common.h | ||
38 | @@ -XXX,XX +XXX,XX @@ void qemu_flush_coalesced_mmio_buffer(void); | ||
39 | |||
40 | void cpu_flush_icache_range(hwaddr start, hwaddr len); | ||
41 | |||
42 | -extern struct MemoryRegion io_mem_rom; | ||
43 | extern struct MemoryRegion io_mem_notdirty; | ||
44 | |||
45 | typedef int (RAMBlockIterFunc)(RAMBlock *rb, void *opaque); | ||
46 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
47 | index XXXXXXX..XXXXXXX 100644 | ||
48 | --- a/accel/tcg/cputlb.c | ||
49 | +++ b/accel/tcg/cputlb.c | ||
50 | @@ -XXX,XX +XXX,XX @@ static void tlb_reset_dirty_range_locked(CPUTLBEntry *tlb_entry, | ||
51 | { | ||
52 | uintptr_t addr = tlb_entry->addr_write; | ||
53 | |||
54 | - if ((addr & (TLB_INVALID_MASK | TLB_MMIO | TLB_NOTDIRTY)) == 0) { | ||
55 | + if ((addr & (TLB_INVALID_MASK | TLB_MMIO | | ||
56 | + TLB_DISCARD_WRITE | TLB_NOTDIRTY)) == 0) { | ||
57 | addr &= TARGET_PAGE_MASK; | ||
58 | addr += tlb_entry->addend; | ||
59 | if ((addr - start) < length) { | ||
60 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
61 | address |= TLB_MMIO; | ||
62 | addend = 0; | ||
63 | } else { | ||
64 | - /* TLB_MMIO for rom/romd handled below */ | ||
65 | addend = (uintptr_t)memory_region_get_ram_ptr(section->mr) + xlat; | ||
66 | } | ||
67 | |||
68 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
69 | |||
70 | tn.addr_write = -1; | ||
71 | if (prot & PAGE_WRITE) { | ||
72 | - if ((memory_region_is_ram(section->mr) && section->readonly) | ||
73 | - || memory_region_is_romd(section->mr)) { | ||
74 | - /* Write access calls the I/O callback. */ | ||
75 | - tn.addr_write = address | TLB_MMIO; | ||
76 | - } else if (memory_region_is_ram(section->mr) | ||
77 | - && cpu_physical_memory_is_clean( | ||
78 | - memory_region_get_ram_addr(section->mr) + xlat)) { | ||
79 | - tn.addr_write = address | TLB_NOTDIRTY; | ||
80 | - } else { | ||
81 | - tn.addr_write = address; | ||
82 | + tn.addr_write = address; | ||
83 | + if (memory_region_is_romd(section->mr)) { | ||
84 | + /* Use the MMIO path so that the device can switch states. */ | ||
85 | + tn.addr_write |= TLB_MMIO; | ||
86 | + } else if (memory_region_is_ram(section->mr)) { | ||
87 | + if (section->readonly) { | ||
88 | + tn.addr_write |= TLB_DISCARD_WRITE; | ||
89 | + } else if (cpu_physical_memory_is_clean( | ||
90 | + memory_region_get_ram_addr(section->mr) + xlat)) { | ||
91 | + tn.addr_write |= TLB_NOTDIRTY; | ||
92 | + } | ||
93 | } | ||
94 | if (prot & PAGE_WRITE_INV) { | ||
95 | tn.addr_write |= TLB_INVALID_MASK; | ||
96 | @@ -XXX,XX +XXX,XX @@ static uint64_t io_readx(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
97 | mr = section->mr; | ||
98 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | ||
99 | cpu->mem_io_pc = retaddr; | ||
100 | - if (mr != &io_mem_rom && mr != &io_mem_notdirty && !cpu->can_do_io) { | ||
101 | + if (mr != &io_mem_notdirty && !cpu->can_do_io) { | ||
102 | cpu_io_recompile(cpu, retaddr); | ||
103 | } | ||
104 | |||
105 | @@ -XXX,XX +XXX,XX @@ static void io_writex(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
106 | section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs); | ||
107 | mr = section->mr; | ||
108 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | ||
109 | - if (mr != &io_mem_rom && mr != &io_mem_notdirty && !cpu->can_do_io) { | ||
110 | + if (mr != &io_mem_notdirty && !cpu->can_do_io) { | ||
111 | cpu_io_recompile(cpu, retaddr); | ||
112 | } | ||
113 | cpu->mem_io_vaddr = addr; | ||
114 | @@ -XXX,XX +XXX,XX @@ void *probe_access(CPUArchState *env, target_ulong addr, int size, | ||
115 | } | ||
116 | |||
117 | /* Reject I/O access, or other required slow-path. */ | ||
118 | - if (tlb_addr & (TLB_NOTDIRTY | TLB_MMIO | TLB_BSWAP)) { | ||
119 | + if (tlb_addr & (TLB_NOTDIRTY | TLB_MMIO | TLB_BSWAP | TLB_DISCARD_WRITE)) { | ||
120 | return NULL; | ||
121 | } | ||
122 | |||
123 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
124 | return; | ||
125 | } | ||
126 | |||
127 | + /* Ignore writes to ROM. */ | ||
128 | + if (unlikely(tlb_addr & TLB_DISCARD_WRITE)) { | ||
129 | + return; | ||
130 | + } | ||
131 | + | ||
132 | haddr = (void *)((uintptr_t)addr + entry->addend); | ||
133 | |||
134 | /* | ||
135 | diff --git a/exec.c b/exec.c | ||
136 | index XXXXXXX..XXXXXXX 100644 | ||
137 | --- a/exec.c | ||
138 | +++ b/exec.c | ||
139 | @@ -XXX,XX +XXX,XX @@ static MemoryRegion *system_io; | ||
140 | AddressSpace address_space_io; | ||
141 | AddressSpace address_space_memory; | ||
142 | |||
143 | -MemoryRegion io_mem_rom, io_mem_notdirty; | ||
144 | +MemoryRegion io_mem_notdirty; | ||
145 | static MemoryRegion io_mem_unassigned; | ||
146 | #endif | ||
147 | |||
148 | @@ -XXX,XX +XXX,XX @@ typedef struct subpage_t { | ||
149 | |||
150 | #define PHYS_SECTION_UNASSIGNED 0 | ||
151 | #define PHYS_SECTION_NOTDIRTY 1 | ||
152 | -#define PHYS_SECTION_ROM 2 | ||
153 | |||
154 | static void io_mem_init(void); | ||
155 | static void memory_map_init(void); | ||
156 | @@ -XXX,XX +XXX,XX @@ hwaddr memory_region_section_get_iotlb(CPUState *cpu, | ||
157 | iotlb = memory_region_get_ram_addr(section->mr) + xlat; | ||
158 | if (!section->readonly) { | ||
159 | iotlb |= PHYS_SECTION_NOTDIRTY; | ||
160 | - } else { | ||
161 | - iotlb |= PHYS_SECTION_ROM; | ||
162 | } | ||
163 | } else { | ||
164 | AddressSpaceDispatch *d; | ||
165 | @@ -XXX,XX +XXX,XX @@ static uint16_t dummy_section(PhysPageMap *map, FlatView *fv, MemoryRegion *mr) | ||
166 | return phys_section_add(map, §ion); | ||
167 | } | ||
168 | |||
169 | -static void readonly_mem_write(void *opaque, hwaddr addr, | ||
170 | - uint64_t val, unsigned size) | ||
171 | -{ | ||
172 | - /* Ignore any write to ROM. */ | ||
173 | -} | ||
174 | - | ||
175 | -static bool readonly_mem_accepts(void *opaque, hwaddr addr, | ||
176 | - unsigned size, bool is_write, | ||
177 | - MemTxAttrs attrs) | ||
178 | -{ | ||
179 | - return is_write; | ||
180 | -} | ||
181 | - | ||
182 | -/* This will only be used for writes, because reads are special cased | ||
183 | - * to directly access the underlying host ram. | ||
184 | - */ | ||
185 | -static const MemoryRegionOps readonly_mem_ops = { | ||
186 | - .write = readonly_mem_write, | ||
187 | - .valid.accepts = readonly_mem_accepts, | ||
188 | - .endianness = DEVICE_NATIVE_ENDIAN, | ||
189 | - .valid = { | ||
190 | - .min_access_size = 1, | ||
191 | - .max_access_size = 8, | ||
192 | - .unaligned = false, | ||
193 | - }, | ||
194 | - .impl = { | ||
195 | - .min_access_size = 1, | ||
196 | - .max_access_size = 8, | ||
197 | - .unaligned = false, | ||
198 | - }, | ||
199 | -}; | ||
200 | - | ||
201 | MemoryRegionSection *iotlb_to_section(CPUState *cpu, | ||
202 | hwaddr index, MemTxAttrs attrs) | ||
203 | { | ||
204 | @@ -XXX,XX +XXX,XX @@ MemoryRegionSection *iotlb_to_section(CPUState *cpu, | ||
205 | |||
206 | static void io_mem_init(void) | ||
207 | { | ||
208 | - memory_region_init_io(&io_mem_rom, NULL, &readonly_mem_ops, | ||
209 | - NULL, NULL, UINT64_MAX); | ||
210 | memory_region_init_io(&io_mem_unassigned, NULL, &unassigned_mem_ops, NULL, | ||
211 | NULL, UINT64_MAX); | ||
212 | |||
213 | @@ -XXX,XX +XXX,XX @@ AddressSpaceDispatch *address_space_dispatch_new(FlatView *fv) | ||
214 | assert(n == PHYS_SECTION_UNASSIGNED); | ||
215 | n = dummy_section(&d->map, fv, &io_mem_notdirty); | ||
216 | assert(n == PHYS_SECTION_NOTDIRTY); | ||
217 | - n = dummy_section(&d->map, fv, &io_mem_rom); | ||
218 | - assert(n == PHYS_SECTION_ROM); | ||
219 | |||
220 | d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .skip = 1 }; | ||
221 | |||
222 | -- | ||
223 | 2.17.1 | ||
224 | |||
225 | diff view generated by jsdifflib |
1 | Pages that we want to track for NOTDIRTY are RAM. We do not | 1 | From: Claudio Fontana <cfontana@suse.de> |
---|---|---|---|
2 | really need to go through the I/O path to handle them. | ||
3 | 2 | ||
4 | Acked-by: David Hildenbrand <david@redhat.com> | 3 | split up the CpusAccel tcg_cpus into three TCG variants: |
5 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | 4 | |
6 | Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> | 5 | tcg_cpus_rr (single threaded, round robin cpus) |
6 | tcg_cpus_icount (same as rr, but with instruction counting enabled) | ||
7 | tcg_cpus_mttcg (multi-threaded cpus) | ||
8 | |||
9 | Suggested-by: Richard Henderson <richard.henderson@linaro.org> | ||
10 | Signed-off-by: Claudio Fontana <cfontana@suse.de> | ||
11 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
12 | Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> | ||
13 | Message-Id: <20201015143217.29337-2-cfontana@suse.de> | ||
7 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | 14 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> |
8 | --- | 15 | --- |
9 | include/exec/cpu-common.h | 2 -- | 16 | accel/tcg/tcg-cpus-icount.h | 17 ++ |
10 | accel/tcg/cputlb.c | 26 +++++++++++++++++--- | 17 | accel/tcg/tcg-cpus-mttcg.h | 21 ++ |
11 | exec.c | 50 --------------------------------------- | 18 | accel/tcg/tcg-cpus-rr.h | 20 ++ |
12 | memory.c | 16 ------------- | 19 | accel/tcg/tcg-cpus.h | 13 +- |
13 | 4 files changed, 23 insertions(+), 71 deletions(-) | 20 | accel/tcg/tcg-all.c | 8 +- |
21 | accel/tcg/tcg-cpus-icount.c | 147 +++++++++++ | ||
22 | accel/tcg/tcg-cpus-mttcg.c | 117 +++++++++ | ||
23 | accel/tcg/tcg-cpus-rr.c | 270 ++++++++++++++++++++ | ||
24 | accel/tcg/tcg-cpus.c | 484 ++---------------------------------- | ||
25 | softmmu/icount.c | 2 +- | ||
26 | accel/tcg/meson.build | 9 +- | ||
27 | 11 files changed, 646 insertions(+), 462 deletions(-) | ||
28 | create mode 100644 accel/tcg/tcg-cpus-icount.h | ||
29 | create mode 100644 accel/tcg/tcg-cpus-mttcg.h | ||
30 | create mode 100644 accel/tcg/tcg-cpus-rr.h | ||
31 | create mode 100644 accel/tcg/tcg-cpus-icount.c | ||
32 | create mode 100644 accel/tcg/tcg-cpus-mttcg.c | ||
33 | create mode 100644 accel/tcg/tcg-cpus-rr.c | ||
14 | 34 | ||
15 | diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h | 35 | diff --git a/accel/tcg/tcg-cpus-icount.h b/accel/tcg/tcg-cpus-icount.h |
36 | new file mode 100644 | ||
37 | index XXXXXXX..XXXXXXX | ||
38 | --- /dev/null | ||
39 | +++ b/accel/tcg/tcg-cpus-icount.h | ||
40 | @@ -XXX,XX +XXX,XX @@ | ||
41 | +/* | ||
42 | + * QEMU TCG Single Threaded vCPUs implementation using instruction counting | ||
43 | + * | ||
44 | + * Copyright 2020 SUSE LLC | ||
45 | + * | ||
46 | + * This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
47 | + * See the COPYING file in the top-level directory. | ||
48 | + */ | ||
49 | + | ||
50 | +#ifndef TCG_CPUS_ICOUNT_H | ||
51 | +#define TCG_CPUS_ICOUNT_H | ||
52 | + | ||
53 | +void handle_icount_deadline(void); | ||
54 | +void prepare_icount_for_run(CPUState *cpu); | ||
55 | +void process_icount_data(CPUState *cpu); | ||
56 | + | ||
57 | +#endif /* TCG_CPUS_ICOUNT_H */ | ||
58 | diff --git a/accel/tcg/tcg-cpus-mttcg.h b/accel/tcg/tcg-cpus-mttcg.h | ||
59 | new file mode 100644 | ||
60 | index XXXXXXX..XXXXXXX | ||
61 | --- /dev/null | ||
62 | +++ b/accel/tcg/tcg-cpus-mttcg.h | ||
63 | @@ -XXX,XX +XXX,XX @@ | ||
64 | +/* | ||
65 | + * QEMU TCG Multi Threaded vCPUs implementation | ||
66 | + * | ||
67 | + * Copyright 2020 SUSE LLC | ||
68 | + * | ||
69 | + * This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
70 | + * See the COPYING file in the top-level directory. | ||
71 | + */ | ||
72 | + | ||
73 | +#ifndef TCG_CPUS_MTTCG_H | ||
74 | +#define TCG_CPUS_MTTCG_H | ||
75 | + | ||
76 | +/* | ||
77 | + * In the multi-threaded case each vCPU has its own thread. The TLS | ||
78 | + * variable current_cpu can be used deep in the code to find the | ||
79 | + * current CPUState for a given thread. | ||
80 | + */ | ||
81 | + | ||
82 | +void *tcg_cpu_thread_fn(void *arg); | ||
83 | + | ||
84 | +#endif /* TCG_CPUS_MTTCG_H */ | ||
85 | diff --git a/accel/tcg/tcg-cpus-rr.h b/accel/tcg/tcg-cpus-rr.h | ||
86 | new file mode 100644 | ||
87 | index XXXXXXX..XXXXXXX | ||
88 | --- /dev/null | ||
89 | +++ b/accel/tcg/tcg-cpus-rr.h | ||
90 | @@ -XXX,XX +XXX,XX @@ | ||
91 | +/* | ||
92 | + * QEMU TCG Single Threaded vCPUs implementation | ||
93 | + * | ||
94 | + * Copyright 2020 SUSE LLC | ||
95 | + * | ||
96 | + * This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
97 | + * See the COPYING file in the top-level directory. | ||
98 | + */ | ||
99 | + | ||
100 | +#ifndef TCG_CPUS_RR_H | ||
101 | +#define TCG_CPUS_RR_H | ||
102 | + | ||
103 | +#define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10) | ||
104 | + | ||
105 | +/* Kick all RR vCPUs. */ | ||
106 | +void qemu_cpu_kick_rr_cpus(CPUState *unused); | ||
107 | + | ||
108 | +void *tcg_rr_cpu_thread_fn(void *arg); | ||
109 | + | ||
110 | +#endif /* TCG_CPUS_RR_H */ | ||
111 | diff --git a/accel/tcg/tcg-cpus.h b/accel/tcg/tcg-cpus.h | ||
16 | index XXXXXXX..XXXXXXX 100644 | 112 | index XXXXXXX..XXXXXXX 100644 |
17 | --- a/include/exec/cpu-common.h | 113 | --- a/accel/tcg/tcg-cpus.h |
18 | +++ b/include/exec/cpu-common.h | 114 | +++ b/accel/tcg/tcg-cpus.h |
19 | @@ -XXX,XX +XXX,XX @@ void qemu_flush_coalesced_mmio_buffer(void); | 115 | @@ -XXX,XX +XXX,XX @@ |
20 | 116 | /* | |
21 | void cpu_flush_icache_range(hwaddr start, hwaddr len); | 117 | - * Accelerator CPUS Interface |
22 | 118 | + * QEMU TCG vCPU common functionality | |
23 | -extern struct MemoryRegion io_mem_notdirty; | 119 | + * |
24 | - | 120 | + * Functionality common to all TCG vcpu variants: mttcg, rr and icount. |
25 | typedef int (RAMBlockIterFunc)(RAMBlock *rb, void *opaque); | 121 | * |
26 | 122 | * Copyright 2020 SUSE LLC | |
27 | int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque); | 123 | * |
28 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | 124 | @@ -XXX,XX +XXX,XX @@ |
125 | |||
126 | #include "sysemu/cpus.h" | ||
127 | |||
128 | -extern const CpusAccel tcg_cpus; | ||
129 | +extern const CpusAccel tcg_cpus_mttcg; | ||
130 | +extern const CpusAccel tcg_cpus_icount; | ||
131 | +extern const CpusAccel tcg_cpus_rr; | ||
132 | + | ||
133 | +void tcg_start_vcpu_thread(CPUState *cpu); | ||
134 | +void qemu_tcg_destroy_vcpu(CPUState *cpu); | ||
135 | +int tcg_cpu_exec(CPUState *cpu); | ||
136 | +void tcg_handle_interrupt(CPUState *cpu, int mask); | ||
137 | |||
138 | #endif /* TCG_CPUS_H */ | ||
139 | diff --git a/accel/tcg/tcg-all.c b/accel/tcg/tcg-all.c | ||
29 | index XXXXXXX..XXXXXXX 100644 | 140 | index XXXXXXX..XXXXXXX 100644 |
30 | --- a/accel/tcg/cputlb.c | 141 | --- a/accel/tcg/tcg-all.c |
31 | +++ b/accel/tcg/cputlb.c | 142 | +++ b/accel/tcg/tcg-all.c |
32 | @@ -XXX,XX +XXX,XX @@ static uint64_t io_readx(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | 143 | @@ -XXX,XX +XXX,XX @@ static int tcg_init(MachineState *ms) |
33 | mr = section->mr; | 144 | |
34 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | 145 | tcg_exec_init(s->tb_size * 1024 * 1024); |
35 | cpu->mem_io_pc = retaddr; | 146 | mttcg_enabled = s->mttcg_enabled; |
36 | - if (mr != &io_mem_notdirty && !cpu->can_do_io) { | 147 | - cpus_register_accel(&tcg_cpus); |
37 | + if (!cpu->can_do_io) { | 148 | |
38 | cpu_io_recompile(cpu, retaddr); | 149 | + if (mttcg_enabled) { |
39 | } | 150 | + cpus_register_accel(&tcg_cpus_mttcg); |
40 | 151 | + } else if (icount_enabled()) { | |
41 | @@ -XXX,XX +XXX,XX @@ static void io_writex(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | 152 | + cpus_register_accel(&tcg_cpus_icount); |
42 | section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs); | 153 | + } else { |
43 | mr = section->mr; | 154 | + cpus_register_accel(&tcg_cpus_rr); |
44 | mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr; | 155 | + } |
45 | - if (mr != &io_mem_notdirty && !cpu->can_do_io) { | 156 | return 0; |
46 | + if (!cpu->can_do_io) { | 157 | } |
47 | cpu_io_recompile(cpu, retaddr); | 158 | |
48 | } | 159 | diff --git a/accel/tcg/tcg-cpus-icount.c b/accel/tcg/tcg-cpus-icount.c |
49 | cpu->mem_io_vaddr = addr; | 160 | new file mode 100644 |
50 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | 161 | index XXXXXXX..XXXXXXX |
51 | need_swap = size > 1 && (tlb_addr & TLB_BSWAP); | 162 | --- /dev/null |
52 | 163 | +++ b/accel/tcg/tcg-cpus-icount.c | |
53 | /* Handle I/O access. */ | 164 | @@ -XXX,XX +XXX,XX @@ |
54 | - if (likely(tlb_addr & (TLB_MMIO | TLB_NOTDIRTY))) { | 165 | +/* |
55 | + if (tlb_addr & TLB_MMIO) { | 166 | + * QEMU TCG Single Threaded vCPUs implementation using instruction counting |
56 | io_writex(env, iotlbentry, mmu_idx, val, addr, retaddr, | 167 | + * |
57 | op ^ (need_swap * MO_BSWAP)); | 168 | + * Copyright (c) 2003-2008 Fabrice Bellard |
58 | return; | 169 | + * Copyright (c) 2014 Red Hat Inc. |
59 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | 170 | + * |
60 | 171 | + * Permission is hereby granted, free of charge, to any person obtaining a copy | |
61 | haddr = (void *)((uintptr_t)addr + entry->addend); | 172 | + * of this software and associated documentation files (the "Software"), to deal |
62 | 173 | + * in the Software without restriction, including without limitation the rights | |
63 | + /* Handle clean RAM pages. */ | 174 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
64 | + if (tlb_addr & TLB_NOTDIRTY) { | 175 | + * copies of the Software, and to permit persons to whom the Software is |
65 | + NotDirtyInfo ndi; | 176 | + * furnished to do so, subject to the following conditions: |
66 | + | 177 | + * |
67 | + /* We require mem_io_pc in tb_invalidate_phys_page_range. */ | 178 | + * The above copyright notice and this permission notice shall be included in |
68 | + env_cpu(env)->mem_io_pc = retaddr; | 179 | + * all copies or substantial portions of the Software. |
69 | + | 180 | + * |
70 | + memory_notdirty_write_prepare(&ndi, env_cpu(env), addr, | 181 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
71 | + addr + iotlbentry->addr, size); | 182 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
72 | + | 183 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
73 | + if (unlikely(need_swap)) { | 184 | + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
74 | + store_memop(haddr, val, op ^ MO_BSWAP); | 185 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
75 | + } else { | 186 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
76 | + store_memop(haddr, val, op); | 187 | + * THE SOFTWARE. |
188 | + */ | ||
189 | + | ||
190 | +#include "qemu/osdep.h" | ||
191 | +#include "qemu-common.h" | ||
192 | +#include "sysemu/tcg.h" | ||
193 | +#include "sysemu/replay.h" | ||
194 | +#include "qemu/main-loop.h" | ||
195 | +#include "qemu/guest-random.h" | ||
196 | +#include "exec/exec-all.h" | ||
197 | +#include "hw/boards.h" | ||
198 | + | ||
199 | +#include "tcg-cpus.h" | ||
200 | +#include "tcg-cpus-icount.h" | ||
201 | +#include "tcg-cpus-rr.h" | ||
202 | + | ||
203 | +static int64_t tcg_get_icount_limit(void) | ||
204 | +{ | ||
205 | + int64_t deadline; | ||
206 | + | ||
207 | + if (replay_mode != REPLAY_MODE_PLAY) { | ||
208 | + /* | ||
209 | + * Include all the timers, because they may need an attention. | ||
210 | + * Too long CPU execution may create unnecessary delay in UI. | ||
211 | + */ | ||
212 | + deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL, | ||
213 | + QEMU_TIMER_ATTR_ALL); | ||
214 | + /* Check realtime timers, because they help with input processing */ | ||
215 | + deadline = qemu_soonest_timeout(deadline, | ||
216 | + qemu_clock_deadline_ns_all(QEMU_CLOCK_REALTIME, | ||
217 | + QEMU_TIMER_ATTR_ALL)); | ||
218 | + | ||
219 | + /* | ||
220 | + * Maintain prior (possibly buggy) behaviour where if no deadline | ||
221 | + * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than | ||
222 | + * INT32_MAX nanoseconds ahead, we still use INT32_MAX | ||
223 | + * nanoseconds. | ||
224 | + */ | ||
225 | + if ((deadline < 0) || (deadline > INT32_MAX)) { | ||
226 | + deadline = INT32_MAX; | ||
227 | + } | ||
228 | + | ||
229 | + return icount_round(deadline); | ||
230 | + } else { | ||
231 | + return replay_get_instructions(); | ||
232 | + } | ||
233 | +} | ||
234 | + | ||
235 | +static void notify_aio_contexts(void) | ||
236 | +{ | ||
237 | + /* Wake up other AioContexts. */ | ||
238 | + qemu_clock_notify(QEMU_CLOCK_VIRTUAL); | ||
239 | + qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL); | ||
240 | +} | ||
241 | + | ||
242 | +void handle_icount_deadline(void) | ||
243 | +{ | ||
244 | + assert(qemu_in_vcpu_thread()); | ||
245 | + int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL, | ||
246 | + QEMU_TIMER_ATTR_ALL); | ||
247 | + | ||
248 | + if (deadline == 0) { | ||
249 | + notify_aio_contexts(); | ||
250 | + } | ||
251 | +} | ||
252 | + | ||
253 | +void prepare_icount_for_run(CPUState *cpu) | ||
254 | +{ | ||
255 | + int insns_left; | ||
256 | + | ||
257 | + /* | ||
258 | + * These should always be cleared by process_icount_data after | ||
259 | + * each vCPU execution. However u16.high can be raised | ||
260 | + * asynchronously by cpu_exit/cpu_interrupt/tcg_handle_interrupt | ||
261 | + */ | ||
262 | + g_assert(cpu_neg(cpu)->icount_decr.u16.low == 0); | ||
263 | + g_assert(cpu->icount_extra == 0); | ||
264 | + | ||
265 | + cpu->icount_budget = tcg_get_icount_limit(); | ||
266 | + insns_left = MIN(0xffff, cpu->icount_budget); | ||
267 | + cpu_neg(cpu)->icount_decr.u16.low = insns_left; | ||
268 | + cpu->icount_extra = cpu->icount_budget - insns_left; | ||
269 | + | ||
270 | + replay_mutex_lock(); | ||
271 | + | ||
272 | + if (cpu->icount_budget == 0 && replay_has_checkpoint()) { | ||
273 | + notify_aio_contexts(); | ||
274 | + } | ||
275 | +} | ||
276 | + | ||
277 | +void process_icount_data(CPUState *cpu) | ||
278 | +{ | ||
279 | + /* Account for executed instructions */ | ||
280 | + icount_update(cpu); | ||
281 | + | ||
282 | + /* Reset the counters */ | ||
283 | + cpu_neg(cpu)->icount_decr.u16.low = 0; | ||
284 | + cpu->icount_extra = 0; | ||
285 | + cpu->icount_budget = 0; | ||
286 | + | ||
287 | + replay_account_executed_instructions(); | ||
288 | + | ||
289 | + replay_mutex_unlock(); | ||
290 | +} | ||
291 | + | ||
292 | +static void icount_handle_interrupt(CPUState *cpu, int mask) | ||
293 | +{ | ||
294 | + int old_mask = cpu->interrupt_request; | ||
295 | + | ||
296 | + tcg_handle_interrupt(cpu, mask); | ||
297 | + if (qemu_cpu_is_self(cpu) && | ||
298 | + !cpu->can_do_io | ||
299 | + && (mask & ~old_mask) != 0) { | ||
300 | + cpu_abort(cpu, "Raised interrupt while not in I/O function"); | ||
301 | + } | ||
302 | +} | ||
303 | + | ||
304 | +const CpusAccel tcg_cpus_icount = { | ||
305 | + .create_vcpu_thread = tcg_start_vcpu_thread, | ||
306 | + .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, | ||
307 | + | ||
308 | + .handle_interrupt = icount_handle_interrupt, | ||
309 | + .get_virtual_clock = icount_get, | ||
310 | + .get_elapsed_ticks = icount_get, | ||
311 | +}; | ||
312 | diff --git a/accel/tcg/tcg-cpus-mttcg.c b/accel/tcg/tcg-cpus-mttcg.c | ||
313 | new file mode 100644 | ||
314 | index XXXXXXX..XXXXXXX | ||
315 | --- /dev/null | ||
316 | +++ b/accel/tcg/tcg-cpus-mttcg.c | ||
317 | @@ -XXX,XX +XXX,XX @@ | ||
318 | +/* | ||
319 | + * QEMU TCG Multi Threaded vCPUs implementation | ||
320 | + * | ||
321 | + * Copyright (c) 2003-2008 Fabrice Bellard | ||
322 | + * Copyright (c) 2014 Red Hat Inc. | ||
323 | + * | ||
324 | + * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
325 | + * of this software and associated documentation files (the "Software"), to deal | ||
326 | + * in the Software without restriction, including without limitation the rights | ||
327 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
328 | + * copies of the Software, and to permit persons to whom the Software is | ||
329 | + * furnished to do so, subject to the following conditions: | ||
330 | + * | ||
331 | + * The above copyright notice and this permission notice shall be included in | ||
332 | + * all copies or substantial portions of the Software. | ||
333 | + * | ||
334 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
335 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
336 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
337 | + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
338 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
339 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
340 | + * THE SOFTWARE. | ||
341 | + */ | ||
342 | + | ||
343 | +#include "qemu/osdep.h" | ||
344 | +#include "qemu-common.h" | ||
345 | +#include "sysemu/tcg.h" | ||
346 | +#include "sysemu/replay.h" | ||
347 | +#include "qemu/main-loop.h" | ||
348 | +#include "qemu/guest-random.h" | ||
349 | +#include "exec/exec-all.h" | ||
350 | +#include "hw/boards.h" | ||
351 | + | ||
352 | +#include "tcg-cpus.h" | ||
353 | +#include "tcg-cpus-mttcg.h" | ||
354 | + | ||
355 | +/* | ||
356 | + * In the multi-threaded case each vCPU has its own thread. The TLS | ||
357 | + * variable current_cpu can be used deep in the code to find the | ||
358 | + * current CPUState for a given thread. | ||
359 | + */ | ||
360 | + | ||
361 | +void *tcg_cpu_thread_fn(void *arg) | ||
362 | +{ | ||
363 | + CPUState *cpu = arg; | ||
364 | + | ||
365 | + assert(tcg_enabled()); | ||
366 | + g_assert(!icount_enabled()); | ||
367 | + | ||
368 | + rcu_register_thread(); | ||
369 | + tcg_register_thread(); | ||
370 | + | ||
371 | + qemu_mutex_lock_iothread(); | ||
372 | + qemu_thread_get_self(cpu->thread); | ||
373 | + | ||
374 | + cpu->thread_id = qemu_get_thread_id(); | ||
375 | + cpu->can_do_io = 1; | ||
376 | + current_cpu = cpu; | ||
377 | + cpu_thread_signal_created(cpu); | ||
378 | + qemu_guest_random_seed_thread_part2(cpu->random_seed); | ||
379 | + | ||
380 | + /* process any pending work */ | ||
381 | + cpu->exit_request = 1; | ||
382 | + | ||
383 | + do { | ||
384 | + if (cpu_can_run(cpu)) { | ||
385 | + int r; | ||
386 | + qemu_mutex_unlock_iothread(); | ||
387 | + r = tcg_cpu_exec(cpu); | ||
388 | + qemu_mutex_lock_iothread(); | ||
389 | + switch (r) { | ||
390 | + case EXCP_DEBUG: | ||
391 | + cpu_handle_guest_debug(cpu); | ||
392 | + break; | ||
393 | + case EXCP_HALTED: | ||
394 | + /* | ||
395 | + * during start-up the vCPU is reset and the thread is | ||
396 | + * kicked several times. If we don't ensure we go back | ||
397 | + * to sleep in the halted state we won't cleanly | ||
398 | + * start-up when the vCPU is enabled. | ||
399 | + * | ||
400 | + * cpu->halted should ensure we sleep in wait_io_event | ||
401 | + */ | ||
402 | + g_assert(cpu->halted); | ||
403 | + break; | ||
404 | + case EXCP_ATOMIC: | ||
405 | + qemu_mutex_unlock_iothread(); | ||
406 | + cpu_exec_step_atomic(cpu); | ||
407 | + qemu_mutex_lock_iothread(); | ||
408 | + default: | ||
409 | + /* Ignore everything else? */ | ||
410 | + break; | ||
77 | + } | 411 | + } |
78 | + | ||
79 | + memory_notdirty_write_complete(&ndi); | ||
80 | + return; | ||
81 | + } | 412 | + } |
82 | + | 413 | + |
83 | /* | 414 | + qatomic_mb_set(&cpu->exit_request, 0); |
84 | * Keep these two store_memop separate to ensure that the compiler | 415 | + qemu_wait_io_event(cpu); |
85 | * is able to fold the entire function to a single instruction. | 416 | + } while (!cpu->unplug || cpu_can_run(cpu)); |
86 | diff --git a/exec.c b/exec.c | 417 | + |
418 | + qemu_tcg_destroy_vcpu(cpu); | ||
419 | + qemu_mutex_unlock_iothread(); | ||
420 | + rcu_unregister_thread(); | ||
421 | + return NULL; | ||
422 | +} | ||
423 | + | ||
424 | +static void mttcg_kick_vcpu_thread(CPUState *cpu) | ||
425 | +{ | ||
426 | + cpu_exit(cpu); | ||
427 | +} | ||
428 | + | ||
429 | +const CpusAccel tcg_cpus_mttcg = { | ||
430 | + .create_vcpu_thread = tcg_start_vcpu_thread, | ||
431 | + .kick_vcpu_thread = mttcg_kick_vcpu_thread, | ||
432 | + | ||
433 | + .handle_interrupt = tcg_handle_interrupt, | ||
434 | +}; | ||
435 | diff --git a/accel/tcg/tcg-cpus-rr.c b/accel/tcg/tcg-cpus-rr.c | ||
436 | new file mode 100644 | ||
437 | index XXXXXXX..XXXXXXX | ||
438 | --- /dev/null | ||
439 | +++ b/accel/tcg/tcg-cpus-rr.c | ||
440 | @@ -XXX,XX +XXX,XX @@ | ||
441 | +/* | ||
442 | + * QEMU TCG Single Threaded vCPUs implementation | ||
443 | + * | ||
444 | + * Copyright (c) 2003-2008 Fabrice Bellard | ||
445 | + * Copyright (c) 2014 Red Hat Inc. | ||
446 | + * | ||
447 | + * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
448 | + * of this software and associated documentation files (the "Software"), to deal | ||
449 | + * in the Software without restriction, including without limitation the rights | ||
450 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
451 | + * copies of the Software, and to permit persons to whom the Software is | ||
452 | + * furnished to do so, subject to the following conditions: | ||
453 | + * | ||
454 | + * The above copyright notice and this permission notice shall be included in | ||
455 | + * all copies or substantial portions of the Software. | ||
456 | + * | ||
457 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
458 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
459 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
460 | + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
461 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
462 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
463 | + * THE SOFTWARE. | ||
464 | + */ | ||
465 | + | ||
466 | +#include "qemu/osdep.h" | ||
467 | +#include "qemu-common.h" | ||
468 | +#include "sysemu/tcg.h" | ||
469 | +#include "sysemu/replay.h" | ||
470 | +#include "qemu/main-loop.h" | ||
471 | +#include "qemu/guest-random.h" | ||
472 | +#include "exec/exec-all.h" | ||
473 | +#include "hw/boards.h" | ||
474 | + | ||
475 | +#include "tcg-cpus.h" | ||
476 | +#include "tcg-cpus-rr.h" | ||
477 | +#include "tcg-cpus-icount.h" | ||
478 | + | ||
479 | +/* Kick all RR vCPUs */ | ||
480 | +void qemu_cpu_kick_rr_cpus(CPUState *unused) | ||
481 | +{ | ||
482 | + CPUState *cpu; | ||
483 | + | ||
484 | + CPU_FOREACH(cpu) { | ||
485 | + cpu_exit(cpu); | ||
486 | + }; | ||
487 | +} | ||
488 | + | ||
489 | +/* | ||
490 | + * TCG vCPU kick timer | ||
491 | + * | ||
492 | + * The kick timer is responsible for moving single threaded vCPU | ||
493 | + * emulation on to the next vCPU. If more than one vCPU is running a | ||
494 | + * timer event with force a cpu->exit so the next vCPU can get | ||
495 | + * scheduled. | ||
496 | + * | ||
497 | + * The timer is removed if all vCPUs are idle and restarted again once | ||
498 | + * idleness is complete. | ||
499 | + */ | ||
500 | + | ||
501 | +static QEMUTimer *tcg_kick_vcpu_timer; | ||
502 | +static CPUState *tcg_current_rr_cpu; | ||
503 | + | ||
504 | +#define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10) | ||
505 | + | ||
506 | +static inline int64_t qemu_tcg_next_kick(void) | ||
507 | +{ | ||
508 | + return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + TCG_KICK_PERIOD; | ||
509 | +} | ||
510 | + | ||
511 | +/* Kick the currently round-robin scheduled vCPU to next */ | ||
512 | +static void qemu_cpu_kick_rr_next_cpu(void) | ||
513 | +{ | ||
514 | + CPUState *cpu; | ||
515 | + do { | ||
516 | + cpu = qatomic_mb_read(&tcg_current_rr_cpu); | ||
517 | + if (cpu) { | ||
518 | + cpu_exit(cpu); | ||
519 | + } | ||
520 | + } while (cpu != qatomic_mb_read(&tcg_current_rr_cpu)); | ||
521 | +} | ||
522 | + | ||
523 | +static void kick_tcg_thread(void *opaque) | ||
524 | +{ | ||
525 | + timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
526 | + qemu_cpu_kick_rr_next_cpu(); | ||
527 | +} | ||
528 | + | ||
529 | +static void start_tcg_kick_timer(void) | ||
530 | +{ | ||
531 | + if (!tcg_kick_vcpu_timer && CPU_NEXT(first_cpu)) { | ||
532 | + tcg_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, | ||
533 | + kick_tcg_thread, NULL); | ||
534 | + } | ||
535 | + if (tcg_kick_vcpu_timer && !timer_pending(tcg_kick_vcpu_timer)) { | ||
536 | + timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
537 | + } | ||
538 | +} | ||
539 | + | ||
540 | +static void stop_tcg_kick_timer(void) | ||
541 | +{ | ||
542 | + if (tcg_kick_vcpu_timer && timer_pending(tcg_kick_vcpu_timer)) { | ||
543 | + timer_del(tcg_kick_vcpu_timer); | ||
544 | + } | ||
545 | +} | ||
546 | + | ||
547 | +static void qemu_tcg_rr_wait_io_event(void) | ||
548 | +{ | ||
549 | + CPUState *cpu; | ||
550 | + | ||
551 | + while (all_cpu_threads_idle()) { | ||
552 | + stop_tcg_kick_timer(); | ||
553 | + qemu_cond_wait_iothread(first_cpu->halt_cond); | ||
554 | + } | ||
555 | + | ||
556 | + start_tcg_kick_timer(); | ||
557 | + | ||
558 | + CPU_FOREACH(cpu) { | ||
559 | + qemu_wait_io_event_common(cpu); | ||
560 | + } | ||
561 | +} | ||
562 | + | ||
563 | +/* | ||
564 | + * Destroy any remaining vCPUs which have been unplugged and have | ||
565 | + * finished running | ||
566 | + */ | ||
567 | +static void deal_with_unplugged_cpus(void) | ||
568 | +{ | ||
569 | + CPUState *cpu; | ||
570 | + | ||
571 | + CPU_FOREACH(cpu) { | ||
572 | + if (cpu->unplug && !cpu_can_run(cpu)) { | ||
573 | + qemu_tcg_destroy_vcpu(cpu); | ||
574 | + break; | ||
575 | + } | ||
576 | + } | ||
577 | +} | ||
578 | + | ||
579 | +/* | ||
580 | + * In the single-threaded case each vCPU is simulated in turn. If | ||
581 | + * there is more than a single vCPU we create a simple timer to kick | ||
582 | + * the vCPU and ensure we don't get stuck in a tight loop in one vCPU. | ||
583 | + * This is done explicitly rather than relying on side-effects | ||
584 | + * elsewhere. | ||
585 | + */ | ||
586 | + | ||
587 | +void *tcg_rr_cpu_thread_fn(void *arg) | ||
588 | +{ | ||
589 | + CPUState *cpu = arg; | ||
590 | + | ||
591 | + assert(tcg_enabled()); | ||
592 | + rcu_register_thread(); | ||
593 | + tcg_register_thread(); | ||
594 | + | ||
595 | + qemu_mutex_lock_iothread(); | ||
596 | + qemu_thread_get_self(cpu->thread); | ||
597 | + | ||
598 | + cpu->thread_id = qemu_get_thread_id(); | ||
599 | + cpu->can_do_io = 1; | ||
600 | + cpu_thread_signal_created(cpu); | ||
601 | + qemu_guest_random_seed_thread_part2(cpu->random_seed); | ||
602 | + | ||
603 | + /* wait for initial kick-off after machine start */ | ||
604 | + while (first_cpu->stopped) { | ||
605 | + qemu_cond_wait_iothread(first_cpu->halt_cond); | ||
606 | + | ||
607 | + /* process any pending work */ | ||
608 | + CPU_FOREACH(cpu) { | ||
609 | + current_cpu = cpu; | ||
610 | + qemu_wait_io_event_common(cpu); | ||
611 | + } | ||
612 | + } | ||
613 | + | ||
614 | + start_tcg_kick_timer(); | ||
615 | + | ||
616 | + cpu = first_cpu; | ||
617 | + | ||
618 | + /* process any pending work */ | ||
619 | + cpu->exit_request = 1; | ||
620 | + | ||
621 | + while (1) { | ||
622 | + qemu_mutex_unlock_iothread(); | ||
623 | + replay_mutex_lock(); | ||
624 | + qemu_mutex_lock_iothread(); | ||
625 | + | ||
626 | + if (icount_enabled()) { | ||
627 | + /* Account partial waits to QEMU_CLOCK_VIRTUAL. */ | ||
628 | + icount_account_warp_timer(); | ||
629 | + /* | ||
630 | + * Run the timers here. This is much more efficient than | ||
631 | + * waking up the I/O thread and waiting for completion. | ||
632 | + */ | ||
633 | + handle_icount_deadline(); | ||
634 | + } | ||
635 | + | ||
636 | + replay_mutex_unlock(); | ||
637 | + | ||
638 | + if (!cpu) { | ||
639 | + cpu = first_cpu; | ||
640 | + } | ||
641 | + | ||
642 | + while (cpu && cpu_work_list_empty(cpu) && !cpu->exit_request) { | ||
643 | + | ||
644 | + qatomic_mb_set(&tcg_current_rr_cpu, cpu); | ||
645 | + current_cpu = cpu; | ||
646 | + | ||
647 | + qemu_clock_enable(QEMU_CLOCK_VIRTUAL, | ||
648 | + (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0); | ||
649 | + | ||
650 | + if (cpu_can_run(cpu)) { | ||
651 | + int r; | ||
652 | + | ||
653 | + qemu_mutex_unlock_iothread(); | ||
654 | + if (icount_enabled()) { | ||
655 | + prepare_icount_for_run(cpu); | ||
656 | + } | ||
657 | + r = tcg_cpu_exec(cpu); | ||
658 | + if (icount_enabled()) { | ||
659 | + process_icount_data(cpu); | ||
660 | + } | ||
661 | + qemu_mutex_lock_iothread(); | ||
662 | + | ||
663 | + if (r == EXCP_DEBUG) { | ||
664 | + cpu_handle_guest_debug(cpu); | ||
665 | + break; | ||
666 | + } else if (r == EXCP_ATOMIC) { | ||
667 | + qemu_mutex_unlock_iothread(); | ||
668 | + cpu_exec_step_atomic(cpu); | ||
669 | + qemu_mutex_lock_iothread(); | ||
670 | + break; | ||
671 | + } | ||
672 | + } else if (cpu->stop) { | ||
673 | + if (cpu->unplug) { | ||
674 | + cpu = CPU_NEXT(cpu); | ||
675 | + } | ||
676 | + break; | ||
677 | + } | ||
678 | + | ||
679 | + cpu = CPU_NEXT(cpu); | ||
680 | + } /* while (cpu && !cpu->exit_request).. */ | ||
681 | + | ||
682 | + /* Does not need qatomic_mb_set because a spurious wakeup is okay. */ | ||
683 | + qatomic_set(&tcg_current_rr_cpu, NULL); | ||
684 | + | ||
685 | + if (cpu && cpu->exit_request) { | ||
686 | + qatomic_mb_set(&cpu->exit_request, 0); | ||
687 | + } | ||
688 | + | ||
689 | + if (icount_enabled() && all_cpu_threads_idle()) { | ||
690 | + /* | ||
691 | + * When all cpus are sleeping (e.g in WFI), to avoid a deadlock | ||
692 | + * in the main_loop, wake it up in order to start the warp timer. | ||
693 | + */ | ||
694 | + qemu_notify_event(); | ||
695 | + } | ||
696 | + | ||
697 | + qemu_tcg_rr_wait_io_event(); | ||
698 | + deal_with_unplugged_cpus(); | ||
699 | + } | ||
700 | + | ||
701 | + rcu_unregister_thread(); | ||
702 | + return NULL; | ||
703 | +} | ||
704 | + | ||
705 | +const CpusAccel tcg_cpus_rr = { | ||
706 | + .create_vcpu_thread = tcg_start_vcpu_thread, | ||
707 | + .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, | ||
708 | + | ||
709 | + .handle_interrupt = tcg_handle_interrupt, | ||
710 | +}; | ||
711 | diff --git a/accel/tcg/tcg-cpus.c b/accel/tcg/tcg-cpus.c | ||
87 | index XXXXXXX..XXXXXXX 100644 | 712 | index XXXXXXX..XXXXXXX 100644 |
88 | --- a/exec.c | 713 | --- a/accel/tcg/tcg-cpus.c |
89 | +++ b/exec.c | 714 | +++ b/accel/tcg/tcg-cpus.c |
90 | @@ -XXX,XX +XXX,XX @@ static MemoryRegion *system_io; | 715 | @@ -XXX,XX +XXX,XX @@ |
91 | AddressSpace address_space_io; | 716 | /* |
92 | AddressSpace address_space_memory; | 717 | - * QEMU System Emulator |
93 | 718 | + * QEMU TCG vCPU common functionality | |
94 | -MemoryRegion io_mem_notdirty; | 719 | + * |
95 | static MemoryRegion io_mem_unassigned; | 720 | + * Functionality common to all TCG vCPU variants: mttcg, rr and icount. |
96 | #endif | 721 | * |
97 | 722 | * Copyright (c) 2003-2008 Fabrice Bellard | |
98 | @@ -XXX,XX +XXX,XX @@ typedef struct subpage_t { | 723 | * Copyright (c) 2014 Red Hat Inc. |
99 | } subpage_t; | 724 | @@ -XXX,XX +XXX,XX @@ |
100 | 725 | #include "hw/boards.h" | |
101 | #define PHYS_SECTION_UNASSIGNED 0 | 726 | |
102 | -#define PHYS_SECTION_NOTDIRTY 1 | 727 | #include "tcg-cpus.h" |
103 | 728 | +#include "tcg-cpus-mttcg.h" | |
104 | static void io_mem_init(void); | 729 | +#include "tcg-cpus-rr.h" |
105 | static void memory_map_init(void); | 730 | |
106 | @@ -XXX,XX +XXX,XX @@ hwaddr memory_region_section_get_iotlb(CPUState *cpu, | 731 | -/* Kick all RR vCPUs */ |
107 | if (memory_region_is_ram(section->mr)) { | 732 | -static void qemu_cpu_kick_rr_cpus(void) |
108 | /* Normal RAM. */ | 733 | -{ |
109 | iotlb = memory_region_get_ram_addr(section->mr) + xlat; | 734 | - CPUState *cpu; |
110 | - if (!section->readonly) { | 735 | +/* common functionality among all TCG variants */ |
111 | - iotlb |= PHYS_SECTION_NOTDIRTY; | 736 | |
737 | - CPU_FOREACH(cpu) { | ||
738 | - cpu_exit(cpu); | ||
739 | - }; | ||
740 | -} | ||
741 | - | ||
742 | -static void tcg_kick_vcpu_thread(CPUState *cpu) | ||
743 | -{ | ||
744 | - if (qemu_tcg_mttcg_enabled()) { | ||
745 | - cpu_exit(cpu); | ||
746 | - } else { | ||
747 | - qemu_cpu_kick_rr_cpus(); | ||
748 | - } | ||
749 | -} | ||
750 | - | ||
751 | -/* | ||
752 | - * TCG vCPU kick timer | ||
753 | - * | ||
754 | - * The kick timer is responsible for moving single threaded vCPU | ||
755 | - * emulation on to the next vCPU. If more than one vCPU is running a | ||
756 | - * timer event with force a cpu->exit so the next vCPU can get | ||
757 | - * scheduled. | ||
758 | - * | ||
759 | - * The timer is removed if all vCPUs are idle and restarted again once | ||
760 | - * idleness is complete. | ||
761 | - */ | ||
762 | - | ||
763 | -static QEMUTimer *tcg_kick_vcpu_timer; | ||
764 | -static CPUState *tcg_current_rr_cpu; | ||
765 | - | ||
766 | -#define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10) | ||
767 | - | ||
768 | -static inline int64_t qemu_tcg_next_kick(void) | ||
769 | -{ | ||
770 | - return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + TCG_KICK_PERIOD; | ||
771 | -} | ||
772 | - | ||
773 | -/* Kick the currently round-robin scheduled vCPU to next */ | ||
774 | -static void qemu_cpu_kick_rr_next_cpu(void) | ||
775 | -{ | ||
776 | - CPUState *cpu; | ||
777 | - do { | ||
778 | - cpu = qatomic_mb_read(&tcg_current_rr_cpu); | ||
779 | - if (cpu) { | ||
780 | - cpu_exit(cpu); | ||
112 | - } | 781 | - } |
113 | } else { | 782 | - } while (cpu != qatomic_mb_read(&tcg_current_rr_cpu)); |
114 | AddressSpaceDispatch *d; | 783 | -} |
115 | 784 | - | |
116 | @@ -XXX,XX +XXX,XX @@ void memory_notdirty_write_complete(NotDirtyInfo *ndi) | 785 | -static void kick_tcg_thread(void *opaque) |
786 | -{ | ||
787 | - timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
788 | - qemu_cpu_kick_rr_next_cpu(); | ||
789 | -} | ||
790 | - | ||
791 | -static void start_tcg_kick_timer(void) | ||
792 | -{ | ||
793 | - assert(!mttcg_enabled); | ||
794 | - if (!tcg_kick_vcpu_timer && CPU_NEXT(first_cpu)) { | ||
795 | - tcg_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, | ||
796 | - kick_tcg_thread, NULL); | ||
797 | - } | ||
798 | - if (tcg_kick_vcpu_timer && !timer_pending(tcg_kick_vcpu_timer)) { | ||
799 | - timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
800 | - } | ||
801 | -} | ||
802 | - | ||
803 | -static void stop_tcg_kick_timer(void) | ||
804 | -{ | ||
805 | - assert(!mttcg_enabled); | ||
806 | - if (tcg_kick_vcpu_timer && timer_pending(tcg_kick_vcpu_timer)) { | ||
807 | - timer_del(tcg_kick_vcpu_timer); | ||
808 | - } | ||
809 | -} | ||
810 | - | ||
811 | -static void qemu_tcg_destroy_vcpu(CPUState *cpu) | ||
812 | -{ | ||
813 | -} | ||
814 | - | ||
815 | -static void qemu_tcg_rr_wait_io_event(void) | ||
816 | -{ | ||
817 | - CPUState *cpu; | ||
818 | - | ||
819 | - while (all_cpu_threads_idle()) { | ||
820 | - stop_tcg_kick_timer(); | ||
821 | - qemu_cond_wait_iothread(first_cpu->halt_cond); | ||
822 | - } | ||
823 | - | ||
824 | - start_tcg_kick_timer(); | ||
825 | - | ||
826 | - CPU_FOREACH(cpu) { | ||
827 | - qemu_wait_io_event_common(cpu); | ||
828 | - } | ||
829 | -} | ||
830 | - | ||
831 | -static int64_t tcg_get_icount_limit(void) | ||
832 | -{ | ||
833 | - int64_t deadline; | ||
834 | - | ||
835 | - if (replay_mode != REPLAY_MODE_PLAY) { | ||
836 | - /* | ||
837 | - * Include all the timers, because they may need an attention. | ||
838 | - * Too long CPU execution may create unnecessary delay in UI. | ||
839 | - */ | ||
840 | - deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL, | ||
841 | - QEMU_TIMER_ATTR_ALL); | ||
842 | - /* Check realtime timers, because they help with input processing */ | ||
843 | - deadline = qemu_soonest_timeout(deadline, | ||
844 | - qemu_clock_deadline_ns_all(QEMU_CLOCK_REALTIME, | ||
845 | - QEMU_TIMER_ATTR_ALL)); | ||
846 | - | ||
847 | - /* | ||
848 | - * Maintain prior (possibly buggy) behaviour where if no deadline | ||
849 | - * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than | ||
850 | - * INT32_MAX nanoseconds ahead, we still use INT32_MAX | ||
851 | - * nanoseconds. | ||
852 | - */ | ||
853 | - if ((deadline < 0) || (deadline > INT32_MAX)) { | ||
854 | - deadline = INT32_MAX; | ||
855 | - } | ||
856 | - | ||
857 | - return icount_round(deadline); | ||
858 | - } else { | ||
859 | - return replay_get_instructions(); | ||
860 | - } | ||
861 | -} | ||
862 | - | ||
863 | -static void notify_aio_contexts(void) | ||
864 | -{ | ||
865 | - /* Wake up other AioContexts. */ | ||
866 | - qemu_clock_notify(QEMU_CLOCK_VIRTUAL); | ||
867 | - qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL); | ||
868 | -} | ||
869 | - | ||
870 | -static void handle_icount_deadline(void) | ||
871 | -{ | ||
872 | - assert(qemu_in_vcpu_thread()); | ||
873 | - if (icount_enabled()) { | ||
874 | - int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL, | ||
875 | - QEMU_TIMER_ATTR_ALL); | ||
876 | - | ||
877 | - if (deadline == 0) { | ||
878 | - notify_aio_contexts(); | ||
879 | - } | ||
880 | - } | ||
881 | -} | ||
882 | - | ||
883 | -static void prepare_icount_for_run(CPUState *cpu) | ||
884 | -{ | ||
885 | - if (icount_enabled()) { | ||
886 | - int insns_left; | ||
887 | - | ||
888 | - /* | ||
889 | - * These should always be cleared by process_icount_data after | ||
890 | - * each vCPU execution. However u16.high can be raised | ||
891 | - * asynchronously by cpu_exit/cpu_interrupt/tcg_handle_interrupt | ||
892 | - */ | ||
893 | - g_assert(cpu_neg(cpu)->icount_decr.u16.low == 0); | ||
894 | - g_assert(cpu->icount_extra == 0); | ||
895 | - | ||
896 | - cpu->icount_budget = tcg_get_icount_limit(); | ||
897 | - insns_left = MIN(0xffff, cpu->icount_budget); | ||
898 | - cpu_neg(cpu)->icount_decr.u16.low = insns_left; | ||
899 | - cpu->icount_extra = cpu->icount_budget - insns_left; | ||
900 | - | ||
901 | - replay_mutex_lock(); | ||
902 | - | ||
903 | - if (cpu->icount_budget == 0 && replay_has_checkpoint()) { | ||
904 | - notify_aio_contexts(); | ||
905 | - } | ||
906 | - } | ||
907 | -} | ||
908 | - | ||
909 | -static void process_icount_data(CPUState *cpu) | ||
910 | -{ | ||
911 | - if (icount_enabled()) { | ||
912 | - /* Account for executed instructions */ | ||
913 | - icount_update(cpu); | ||
914 | - | ||
915 | - /* Reset the counters */ | ||
916 | - cpu_neg(cpu)->icount_decr.u16.low = 0; | ||
917 | - cpu->icount_extra = 0; | ||
918 | - cpu->icount_budget = 0; | ||
919 | - | ||
920 | - replay_account_executed_instructions(); | ||
921 | - | ||
922 | - replay_mutex_unlock(); | ||
923 | - } | ||
924 | -} | ||
925 | - | ||
926 | -static int tcg_cpu_exec(CPUState *cpu) | ||
927 | -{ | ||
928 | - int ret; | ||
929 | -#ifdef CONFIG_PROFILER | ||
930 | - int64_t ti; | ||
931 | -#endif | ||
932 | - | ||
933 | - assert(tcg_enabled()); | ||
934 | -#ifdef CONFIG_PROFILER | ||
935 | - ti = profile_getclock(); | ||
936 | -#endif | ||
937 | - cpu_exec_start(cpu); | ||
938 | - ret = cpu_exec(cpu); | ||
939 | - cpu_exec_end(cpu); | ||
940 | -#ifdef CONFIG_PROFILER | ||
941 | - qatomic_set(&tcg_ctx->prof.cpu_exec_time, | ||
942 | - tcg_ctx->prof.cpu_exec_time + profile_getclock() - ti); | ||
943 | -#endif | ||
944 | - return ret; | ||
945 | -} | ||
946 | - | ||
947 | -/* | ||
948 | - * Destroy any remaining vCPUs which have been unplugged and have | ||
949 | - * finished running | ||
950 | - */ | ||
951 | -static void deal_with_unplugged_cpus(void) | ||
952 | -{ | ||
953 | - CPUState *cpu; | ||
954 | - | ||
955 | - CPU_FOREACH(cpu) { | ||
956 | - if (cpu->unplug && !cpu_can_run(cpu)) { | ||
957 | - qemu_tcg_destroy_vcpu(cpu); | ||
958 | - cpu_thread_signal_destroyed(cpu); | ||
959 | - break; | ||
960 | - } | ||
961 | - } | ||
962 | -} | ||
963 | - | ||
964 | -/* | ||
965 | - * Single-threaded TCG | ||
966 | - * | ||
967 | - * In the single-threaded case each vCPU is simulated in turn. If | ||
968 | - * there is more than a single vCPU we create a simple timer to kick | ||
969 | - * the vCPU and ensure we don't get stuck in a tight loop in one vCPU. | ||
970 | - * This is done explicitly rather than relying on side-effects | ||
971 | - * elsewhere. | ||
972 | - */ | ||
973 | - | ||
974 | -static void *tcg_rr_cpu_thread_fn(void *arg) | ||
975 | -{ | ||
976 | - CPUState *cpu = arg; | ||
977 | - | ||
978 | - assert(tcg_enabled()); | ||
979 | - rcu_register_thread(); | ||
980 | - tcg_register_thread(); | ||
981 | - | ||
982 | - qemu_mutex_lock_iothread(); | ||
983 | - qemu_thread_get_self(cpu->thread); | ||
984 | - | ||
985 | - cpu->thread_id = qemu_get_thread_id(); | ||
986 | - cpu->can_do_io = 1; | ||
987 | - cpu_thread_signal_created(cpu); | ||
988 | - qemu_guest_random_seed_thread_part2(cpu->random_seed); | ||
989 | - | ||
990 | - /* wait for initial kick-off after machine start */ | ||
991 | - while (first_cpu->stopped) { | ||
992 | - qemu_cond_wait_iothread(first_cpu->halt_cond); | ||
993 | - | ||
994 | - /* process any pending work */ | ||
995 | - CPU_FOREACH(cpu) { | ||
996 | - current_cpu = cpu; | ||
997 | - qemu_wait_io_event_common(cpu); | ||
998 | - } | ||
999 | - } | ||
1000 | - | ||
1001 | - start_tcg_kick_timer(); | ||
1002 | - | ||
1003 | - cpu = first_cpu; | ||
1004 | - | ||
1005 | - /* process any pending work */ | ||
1006 | - cpu->exit_request = 1; | ||
1007 | - | ||
1008 | - while (1) { | ||
1009 | - qemu_mutex_unlock_iothread(); | ||
1010 | - replay_mutex_lock(); | ||
1011 | - qemu_mutex_lock_iothread(); | ||
1012 | - /* Account partial waits to QEMU_CLOCK_VIRTUAL. */ | ||
1013 | - icount_account_warp_timer(); | ||
1014 | - | ||
1015 | - /* | ||
1016 | - * Run the timers here. This is much more efficient than | ||
1017 | - * waking up the I/O thread and waiting for completion. | ||
1018 | - */ | ||
1019 | - handle_icount_deadline(); | ||
1020 | - | ||
1021 | - replay_mutex_unlock(); | ||
1022 | - | ||
1023 | - if (!cpu) { | ||
1024 | - cpu = first_cpu; | ||
1025 | - } | ||
1026 | - | ||
1027 | - while (cpu && cpu_work_list_empty(cpu) && !cpu->exit_request) { | ||
1028 | - | ||
1029 | - qatomic_mb_set(&tcg_current_rr_cpu, cpu); | ||
1030 | - current_cpu = cpu; | ||
1031 | - | ||
1032 | - qemu_clock_enable(QEMU_CLOCK_VIRTUAL, | ||
1033 | - (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0); | ||
1034 | - | ||
1035 | - if (cpu_can_run(cpu)) { | ||
1036 | - int r; | ||
1037 | - | ||
1038 | - qemu_mutex_unlock_iothread(); | ||
1039 | - prepare_icount_for_run(cpu); | ||
1040 | - | ||
1041 | - r = tcg_cpu_exec(cpu); | ||
1042 | - | ||
1043 | - process_icount_data(cpu); | ||
1044 | - qemu_mutex_lock_iothread(); | ||
1045 | - | ||
1046 | - if (r == EXCP_DEBUG) { | ||
1047 | - cpu_handle_guest_debug(cpu); | ||
1048 | - break; | ||
1049 | - } else if (r == EXCP_ATOMIC) { | ||
1050 | - qemu_mutex_unlock_iothread(); | ||
1051 | - cpu_exec_step_atomic(cpu); | ||
1052 | - qemu_mutex_lock_iothread(); | ||
1053 | - break; | ||
1054 | - } | ||
1055 | - } else if (cpu->stop) { | ||
1056 | - if (cpu->unplug) { | ||
1057 | - cpu = CPU_NEXT(cpu); | ||
1058 | - } | ||
1059 | - break; | ||
1060 | - } | ||
1061 | - | ||
1062 | - cpu = CPU_NEXT(cpu); | ||
1063 | - } /* while (cpu && !cpu->exit_request).. */ | ||
1064 | - | ||
1065 | - /* Does not need qatomic_mb_set because a spurious wakeup is okay. */ | ||
1066 | - qatomic_set(&tcg_current_rr_cpu, NULL); | ||
1067 | - | ||
1068 | - if (cpu && cpu->exit_request) { | ||
1069 | - qatomic_mb_set(&cpu->exit_request, 0); | ||
1070 | - } | ||
1071 | - | ||
1072 | - if (icount_enabled() && all_cpu_threads_idle()) { | ||
1073 | - /* | ||
1074 | - * When all cpus are sleeping (e.g in WFI), to avoid a deadlock | ||
1075 | - * in the main_loop, wake it up in order to start the warp timer. | ||
1076 | - */ | ||
1077 | - qemu_notify_event(); | ||
1078 | - } | ||
1079 | - | ||
1080 | - qemu_tcg_rr_wait_io_event(); | ||
1081 | - deal_with_unplugged_cpus(); | ||
1082 | - } | ||
1083 | - | ||
1084 | - rcu_unregister_thread(); | ||
1085 | - return NULL; | ||
1086 | -} | ||
1087 | - | ||
1088 | -/* | ||
1089 | - * Multi-threaded TCG | ||
1090 | - * | ||
1091 | - * In the multi-threaded case each vCPU has its own thread. The TLS | ||
1092 | - * variable current_cpu can be used deep in the code to find the | ||
1093 | - * current CPUState for a given thread. | ||
1094 | - */ | ||
1095 | - | ||
1096 | -static void *tcg_cpu_thread_fn(void *arg) | ||
1097 | -{ | ||
1098 | - CPUState *cpu = arg; | ||
1099 | - | ||
1100 | - assert(tcg_enabled()); | ||
1101 | - g_assert(!icount_enabled()); | ||
1102 | - | ||
1103 | - rcu_register_thread(); | ||
1104 | - tcg_register_thread(); | ||
1105 | - | ||
1106 | - qemu_mutex_lock_iothread(); | ||
1107 | - qemu_thread_get_self(cpu->thread); | ||
1108 | - | ||
1109 | - cpu->thread_id = qemu_get_thread_id(); | ||
1110 | - cpu->can_do_io = 1; | ||
1111 | - current_cpu = cpu; | ||
1112 | - cpu_thread_signal_created(cpu); | ||
1113 | - qemu_guest_random_seed_thread_part2(cpu->random_seed); | ||
1114 | - | ||
1115 | - /* process any pending work */ | ||
1116 | - cpu->exit_request = 1; | ||
1117 | - | ||
1118 | - do { | ||
1119 | - if (cpu_can_run(cpu)) { | ||
1120 | - int r; | ||
1121 | - qemu_mutex_unlock_iothread(); | ||
1122 | - r = tcg_cpu_exec(cpu); | ||
1123 | - qemu_mutex_lock_iothread(); | ||
1124 | - switch (r) { | ||
1125 | - case EXCP_DEBUG: | ||
1126 | - cpu_handle_guest_debug(cpu); | ||
1127 | - break; | ||
1128 | - case EXCP_HALTED: | ||
1129 | - /* | ||
1130 | - * during start-up the vCPU is reset and the thread is | ||
1131 | - * kicked several times. If we don't ensure we go back | ||
1132 | - * to sleep in the halted state we won't cleanly | ||
1133 | - * start-up when the vCPU is enabled. | ||
1134 | - * | ||
1135 | - * cpu->halted should ensure we sleep in wait_io_event | ||
1136 | - */ | ||
1137 | - g_assert(cpu->halted); | ||
1138 | - break; | ||
1139 | - case EXCP_ATOMIC: | ||
1140 | - qemu_mutex_unlock_iothread(); | ||
1141 | - cpu_exec_step_atomic(cpu); | ||
1142 | - qemu_mutex_lock_iothread(); | ||
1143 | - default: | ||
1144 | - /* Ignore everything else? */ | ||
1145 | - break; | ||
1146 | - } | ||
1147 | - } | ||
1148 | - | ||
1149 | - qatomic_mb_set(&cpu->exit_request, 0); | ||
1150 | - qemu_wait_io_event(cpu); | ||
1151 | - } while (!cpu->unplug || cpu_can_run(cpu)); | ||
1152 | - | ||
1153 | - qemu_tcg_destroy_vcpu(cpu); | ||
1154 | - cpu_thread_signal_destroyed(cpu); | ||
1155 | - qemu_mutex_unlock_iothread(); | ||
1156 | - rcu_unregister_thread(); | ||
1157 | - return NULL; | ||
1158 | -} | ||
1159 | - | ||
1160 | -static void tcg_start_vcpu_thread(CPUState *cpu) | ||
1161 | +void tcg_start_vcpu_thread(CPUState *cpu) | ||
1162 | { | ||
1163 | char thread_name[VCPU_THREAD_NAME_SIZE]; | ||
1164 | static QemuCond *single_tcg_halt_cond; | ||
1165 | @@ -XXX,XX +XXX,XX @@ static void tcg_start_vcpu_thread(CPUState *cpu) | ||
117 | } | 1166 | } |
118 | } | 1167 | } |
119 | 1168 | ||
120 | -/* Called within RCU critical section. */ | 1169 | -static int64_t tcg_get_virtual_clock(void) |
121 | -static void notdirty_mem_write(void *opaque, hwaddr ram_addr, | 1170 | +void qemu_tcg_destroy_vcpu(CPUState *cpu) |
122 | - uint64_t val, unsigned size) | 1171 | { |
123 | -{ | 1172 | - if (icount_enabled()) { |
124 | - NotDirtyInfo ndi; | 1173 | - return icount_get(); |
125 | - | 1174 | - } |
126 | - memory_notdirty_write_prepare(&ndi, current_cpu, current_cpu->mem_io_vaddr, | 1175 | - return cpu_get_clock(); |
127 | - ram_addr, size); | 1176 | + cpu_thread_signal_destroyed(cpu); |
128 | - | 1177 | } |
129 | - stn_p(qemu_map_ram_ptr(NULL, ram_addr), size, val); | 1178 | |
130 | - memory_notdirty_write_complete(&ndi); | 1179 | -static int64_t tcg_get_elapsed_ticks(void) |
131 | -} | 1180 | +int tcg_cpu_exec(CPUState *cpu) |
132 | - | 1181 | { |
133 | -static bool notdirty_mem_accepts(void *opaque, hwaddr addr, | 1182 | - if (icount_enabled()) { |
134 | - unsigned size, bool is_write, | 1183 | - return icount_get(); |
135 | - MemTxAttrs attrs) | 1184 | - } |
136 | -{ | 1185 | - return cpu_get_ticks(); |
137 | - return is_write; | 1186 | + int ret; |
138 | -} | 1187 | +#ifdef CONFIG_PROFILER |
139 | - | 1188 | + int64_t ti; |
140 | -static const MemoryRegionOps notdirty_mem_ops = { | 1189 | +#endif |
141 | - .write = notdirty_mem_write, | 1190 | + assert(tcg_enabled()); |
142 | - .valid.accepts = notdirty_mem_accepts, | 1191 | +#ifdef CONFIG_PROFILER |
143 | - .endianness = DEVICE_NATIVE_ENDIAN, | 1192 | + ti = profile_getclock(); |
144 | - .valid = { | 1193 | +#endif |
145 | - .min_access_size = 1, | 1194 | + cpu_exec_start(cpu); |
146 | - .max_access_size = 8, | 1195 | + ret = cpu_exec(cpu); |
147 | - .unaligned = false, | 1196 | + cpu_exec_end(cpu); |
148 | - }, | 1197 | +#ifdef CONFIG_PROFILER |
149 | - .impl = { | 1198 | + qatomic_set(&tcg_ctx->prof.cpu_exec_time, |
150 | - .min_access_size = 1, | 1199 | + tcg_ctx->prof.cpu_exec_time + profile_getclock() - ti); |
151 | - .max_access_size = 8, | 1200 | +#endif |
152 | - .unaligned = false, | 1201 | + return ret; |
153 | - }, | 1202 | } |
1203 | |||
1204 | /* mask must never be zero, except for A20 change call */ | ||
1205 | -static void tcg_handle_interrupt(CPUState *cpu, int mask) | ||
1206 | +void tcg_handle_interrupt(CPUState *cpu, int mask) | ||
1207 | { | ||
1208 | - int old_mask; | ||
1209 | g_assert(qemu_mutex_iothread_locked()); | ||
1210 | |||
1211 | - old_mask = cpu->interrupt_request; | ||
1212 | cpu->interrupt_request |= mask; | ||
1213 | |||
1214 | /* | ||
1215 | @@ -XXX,XX +XXX,XX @@ static void tcg_handle_interrupt(CPUState *cpu, int mask) | ||
1216 | qemu_cpu_kick(cpu); | ||
1217 | } else { | ||
1218 | qatomic_set(&cpu_neg(cpu)->icount_decr.u16.high, -1); | ||
1219 | - if (icount_enabled() && | ||
1220 | - !cpu->can_do_io | ||
1221 | - && (mask & ~old_mask) != 0) { | ||
1222 | - cpu_abort(cpu, "Raised interrupt while not in I/O function"); | ||
1223 | - } | ||
1224 | } | ||
1225 | } | ||
1226 | - | ||
1227 | -const CpusAccel tcg_cpus = { | ||
1228 | - .create_vcpu_thread = tcg_start_vcpu_thread, | ||
1229 | - .kick_vcpu_thread = tcg_kick_vcpu_thread, | ||
1230 | - | ||
1231 | - .handle_interrupt = tcg_handle_interrupt, | ||
1232 | - | ||
1233 | - .get_virtual_clock = tcg_get_virtual_clock, | ||
1234 | - .get_elapsed_ticks = tcg_get_elapsed_ticks, | ||
154 | -}; | 1235 | -}; |
155 | - | 1236 | diff --git a/softmmu/icount.c b/softmmu/icount.c |
156 | /* Generate a debug exception if a watchpoint has been hit. */ | 1237 | index XXXXXXX..XXXXXXX 100644 |
157 | void cpu_check_watchpoint(CPUState *cpu, vaddr addr, vaddr len, | 1238 | --- a/softmmu/icount.c |
158 | MemTxAttrs attrs, int flags, uintptr_t ra) | 1239 | +++ b/softmmu/icount.c |
159 | @@ -XXX,XX +XXX,XX @@ static void io_mem_init(void) | 1240 | @@ -XXX,XX +XXX,XX @@ void icount_start_warp_timer(void) |
1241 | |||
1242 | void icount_account_warp_timer(void) | ||
160 | { | 1243 | { |
161 | memory_region_init_io(&io_mem_unassigned, NULL, &unassigned_mem_ops, NULL, | 1244 | - if (!icount_enabled() || !icount_sleep) { |
162 | NULL, UINT64_MAX); | 1245 | + if (!icount_sleep) { |
163 | - | 1246 | return; |
164 | - /* io_mem_notdirty calls tb_invalidate_phys_page_fast, | 1247 | } |
165 | - * which can be called without the iothread mutex. | 1248 | |
166 | - */ | 1249 | diff --git a/accel/tcg/meson.build b/accel/tcg/meson.build |
167 | - memory_region_init_io(&io_mem_notdirty, NULL, ¬dirty_mem_ops, NULL, | ||
168 | - NULL, UINT64_MAX); | ||
169 | - memory_region_clear_global_locking(&io_mem_notdirty); | ||
170 | } | ||
171 | |||
172 | AddressSpaceDispatch *address_space_dispatch_new(FlatView *fv) | ||
173 | @@ -XXX,XX +XXX,XX @@ AddressSpaceDispatch *address_space_dispatch_new(FlatView *fv) | ||
174 | |||
175 | n = dummy_section(&d->map, fv, &io_mem_unassigned); | ||
176 | assert(n == PHYS_SECTION_UNASSIGNED); | ||
177 | - n = dummy_section(&d->map, fv, &io_mem_notdirty); | ||
178 | - assert(n == PHYS_SECTION_NOTDIRTY); | ||
179 | |||
180 | d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .skip = 1 }; | ||
181 | |||
182 | diff --git a/memory.c b/memory.c | ||
183 | index XXXXXXX..XXXXXXX 100644 | 1250 | index XXXXXXX..XXXXXXX 100644 |
184 | --- a/memory.c | 1251 | --- a/accel/tcg/meson.build |
185 | +++ b/memory.c | 1252 | +++ b/accel/tcg/meson.build |
186 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_read_accessor(MemoryRegion *mr, | 1253 | @@ -XXX,XX +XXX,XX @@ tcg_ss.add(when: 'CONFIG_SOFTMMU', if_false: files('user-exec-stub.c')) |
187 | tmp = mr->ops->read(mr->opaque, addr, size); | 1254 | tcg_ss.add(when: 'CONFIG_PLUGIN', if_true: [files('plugin-gen.c'), libdl]) |
188 | if (mr->subpage) { | 1255 | specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss) |
189 | trace_memory_region_subpage_read(get_cpu_index(), mr, addr, tmp, size); | 1256 | |
190 | - } else if (mr == &io_mem_notdirty) { | 1257 | -specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: files('tcg-all.c', 'cputlb.c', 'tcg-cpus.c')) |
191 | - /* Accesses to code which has previously been translated into a TB show | 1258 | +specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: files( |
192 | - * up in the MMIO path, as accesses to the io_mem_notdirty | 1259 | + 'tcg-all.c', |
193 | - * MemoryRegion. */ | 1260 | + 'cputlb.c', |
194 | } else if (TRACE_MEMORY_REGION_OPS_READ_ENABLED) { | 1261 | + 'tcg-cpus.c', |
195 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | 1262 | + 'tcg-cpus-mttcg.c', |
196 | trace_memory_region_ops_read(get_cpu_index(), mr, abs_addr, tmp, size); | 1263 | + 'tcg-cpus-icount.c', |
197 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_read_with_attrs_accessor(MemoryRegion *mr, | 1264 | + 'tcg-cpus-rr.c' |
198 | r = mr->ops->read_with_attrs(mr->opaque, addr, &tmp, size, attrs); | 1265 | +)) |
199 | if (mr->subpage) { | ||
200 | trace_memory_region_subpage_read(get_cpu_index(), mr, addr, tmp, size); | ||
201 | - } else if (mr == &io_mem_notdirty) { | ||
202 | - /* Accesses to code which has previously been translated into a TB show | ||
203 | - * up in the MMIO path, as accesses to the io_mem_notdirty | ||
204 | - * MemoryRegion. */ | ||
205 | } else if (TRACE_MEMORY_REGION_OPS_READ_ENABLED) { | ||
206 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
207 | trace_memory_region_ops_read(get_cpu_index(), mr, abs_addr, tmp, size); | ||
208 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_write_accessor(MemoryRegion *mr, | ||
209 | |||
210 | if (mr->subpage) { | ||
211 | trace_memory_region_subpage_write(get_cpu_index(), mr, addr, tmp, size); | ||
212 | - } else if (mr == &io_mem_notdirty) { | ||
213 | - /* Accesses to code which has previously been translated into a TB show | ||
214 | - * up in the MMIO path, as accesses to the io_mem_notdirty | ||
215 | - * MemoryRegion. */ | ||
216 | } else if (TRACE_MEMORY_REGION_OPS_WRITE_ENABLED) { | ||
217 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
218 | trace_memory_region_ops_write(get_cpu_index(), mr, abs_addr, tmp, size); | ||
219 | @@ -XXX,XX +XXX,XX @@ static MemTxResult memory_region_write_with_attrs_accessor(MemoryRegion *mr, | ||
220 | |||
221 | if (mr->subpage) { | ||
222 | trace_memory_region_subpage_write(get_cpu_index(), mr, addr, tmp, size); | ||
223 | - } else if (mr == &io_mem_notdirty) { | ||
224 | - /* Accesses to code which has previously been translated into a TB show | ||
225 | - * up in the MMIO path, as accesses to the io_mem_notdirty | ||
226 | - * MemoryRegion. */ | ||
227 | } else if (TRACE_MEMORY_REGION_OPS_WRITE_ENABLED) { | ||
228 | hwaddr abs_addr = memory_region_to_absolute_addr(mr, addr); | ||
229 | trace_memory_region_ops_write(get_cpu_index(), mr, abs_addr, tmp, size); | ||
230 | -- | 1266 | -- |
231 | 2.17.1 | 1267 | 2.25.1 |
232 | 1268 | ||
233 | 1269 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | There is only one caller, tlb_set_page_with_attrs. We cannot | ||
2 | inline the entire function because the AddressSpaceDispatch | ||
3 | structure is private to exec.c, and cannot easily be moved to | ||
4 | include/exec/memory-internal.h. | ||
5 | 1 | ||
6 | Compute is_ram and is_romd once within tlb_set_page_with_attrs. | ||
7 | Fold the number of tests against these predicates. Compute | ||
8 | cpu_physical_memory_is_clean outside of the tlb lock region. | ||
9 | |||
10 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
11 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
12 | --- | ||
13 | include/exec/exec-all.h | 6 +--- | ||
14 | accel/tcg/cputlb.c | 68 ++++++++++++++++++++++++++--------------- | ||
15 | exec.c | 22 ++----------- | ||
16 | 3 files changed, 47 insertions(+), 49 deletions(-) | ||
17 | |||
18 | diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h | ||
19 | index XXXXXXX..XXXXXXX 100644 | ||
20 | --- a/include/exec/exec-all.h | ||
21 | +++ b/include/exec/exec-all.h | ||
22 | @@ -XXX,XX +XXX,XX @@ address_space_translate_for_iotlb(CPUState *cpu, int asidx, hwaddr addr, | ||
23 | hwaddr *xlat, hwaddr *plen, | ||
24 | MemTxAttrs attrs, int *prot); | ||
25 | hwaddr memory_region_section_get_iotlb(CPUState *cpu, | ||
26 | - MemoryRegionSection *section, | ||
27 | - target_ulong vaddr, | ||
28 | - hwaddr paddr, hwaddr xlat, | ||
29 | - int prot, | ||
30 | - target_ulong *address); | ||
31 | + MemoryRegionSection *section); | ||
32 | #endif | ||
33 | |||
34 | /* vl.c */ | ||
35 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
36 | index XXXXXXX..XXXXXXX 100644 | ||
37 | --- a/accel/tcg/cputlb.c | ||
38 | +++ b/accel/tcg/cputlb.c | ||
39 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
40 | MemoryRegionSection *section; | ||
41 | unsigned int index; | ||
42 | target_ulong address; | ||
43 | - target_ulong code_address; | ||
44 | + target_ulong write_address; | ||
45 | uintptr_t addend; | ||
46 | CPUTLBEntry *te, tn; | ||
47 | hwaddr iotlb, xlat, sz, paddr_page; | ||
48 | target_ulong vaddr_page; | ||
49 | int asidx = cpu_asidx_from_attrs(cpu, attrs); | ||
50 | int wp_flags; | ||
51 | + bool is_ram, is_romd; | ||
52 | |||
53 | assert_cpu_is_self(cpu); | ||
54 | |||
55 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
56 | if (attrs.byte_swap) { | ||
57 | address |= TLB_BSWAP; | ||
58 | } | ||
59 | - if (!memory_region_is_ram(section->mr) && | ||
60 | - !memory_region_is_romd(section->mr)) { | ||
61 | - /* IO memory case */ | ||
62 | - address |= TLB_MMIO; | ||
63 | - addend = 0; | ||
64 | - } else { | ||
65 | + | ||
66 | + is_ram = memory_region_is_ram(section->mr); | ||
67 | + is_romd = memory_region_is_romd(section->mr); | ||
68 | + | ||
69 | + if (is_ram || is_romd) { | ||
70 | + /* RAM and ROMD both have associated host memory. */ | ||
71 | addend = (uintptr_t)memory_region_get_ram_ptr(section->mr) + xlat; | ||
72 | + } else { | ||
73 | + /* I/O does not; force the host address to NULL. */ | ||
74 | + addend = 0; | ||
75 | + } | ||
76 | + | ||
77 | + write_address = address; | ||
78 | + if (is_ram) { | ||
79 | + iotlb = memory_region_get_ram_addr(section->mr) + xlat; | ||
80 | + /* | ||
81 | + * Computing is_clean is expensive; avoid all that unless | ||
82 | + * the page is actually writable. | ||
83 | + */ | ||
84 | + if (prot & PAGE_WRITE) { | ||
85 | + if (section->readonly) { | ||
86 | + write_address |= TLB_DISCARD_WRITE; | ||
87 | + } else if (cpu_physical_memory_is_clean(iotlb)) { | ||
88 | + write_address |= TLB_NOTDIRTY; | ||
89 | + } | ||
90 | + } | ||
91 | + } else { | ||
92 | + /* I/O or ROMD */ | ||
93 | + iotlb = memory_region_section_get_iotlb(cpu, section) + xlat; | ||
94 | + /* | ||
95 | + * Writes to romd devices must go through MMIO to enable write. | ||
96 | + * Reads to romd devices go through the ram_ptr found above, | ||
97 | + * but of course reads to I/O must go through MMIO. | ||
98 | + */ | ||
99 | + write_address |= TLB_MMIO; | ||
100 | + if (!is_romd) { | ||
101 | + address = write_address; | ||
102 | + } | ||
103 | } | ||
104 | |||
105 | - code_address = address; | ||
106 | - iotlb = memory_region_section_get_iotlb(cpu, section, vaddr_page, | ||
107 | - paddr_page, xlat, prot, &address); | ||
108 | wp_flags = cpu_watchpoint_address_matches(cpu, vaddr_page, | ||
109 | TARGET_PAGE_SIZE); | ||
110 | |||
111 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
112 | /* | ||
113 | * At this point iotlb contains a physical section number in the lower | ||
114 | * TARGET_PAGE_BITS, and either | ||
115 | - * + the ram_addr_t of the page base of the target RAM (if NOTDIRTY or ROM) | ||
116 | - * + the offset within section->mr of the page base (otherwise) | ||
117 | + * + the ram_addr_t of the page base of the target RAM (RAM) | ||
118 | + * + the offset within section->mr of the page base (I/O, ROMD) | ||
119 | * We subtract the vaddr_page (which is page aligned and thus won't | ||
120 | * disturb the low bits) to give an offset which can be added to the | ||
121 | * (non-page-aligned) vaddr of the eventual memory access to get | ||
122 | @@ -XXX,XX +XXX,XX @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr, | ||
123 | } | ||
124 | |||
125 | if (prot & PAGE_EXEC) { | ||
126 | - tn.addr_code = code_address; | ||
127 | + tn.addr_code = address; | ||
128 | } else { | ||
129 | tn.addr_code = -1; | ||
130 | } | ||
131 | |||
132 | tn.addr_write = -1; | ||
133 | if (prot & PAGE_WRITE) { | ||
134 | - tn.addr_write = address; | ||
135 | - if (memory_region_is_romd(section->mr)) { | ||
136 | - /* Use the MMIO path so that the device can switch states. */ | ||
137 | - tn.addr_write |= TLB_MMIO; | ||
138 | - } else if (memory_region_is_ram(section->mr)) { | ||
139 | - if (section->readonly) { | ||
140 | - tn.addr_write |= TLB_DISCARD_WRITE; | ||
141 | - } else if (cpu_physical_memory_is_clean( | ||
142 | - memory_region_get_ram_addr(section->mr) + xlat)) { | ||
143 | - tn.addr_write |= TLB_NOTDIRTY; | ||
144 | - } | ||
145 | - } | ||
146 | + tn.addr_write = write_address; | ||
147 | if (prot & PAGE_WRITE_INV) { | ||
148 | tn.addr_write |= TLB_INVALID_MASK; | ||
149 | } | ||
150 | diff --git a/exec.c b/exec.c | ||
151 | index XXXXXXX..XXXXXXX 100644 | ||
152 | --- a/exec.c | ||
153 | +++ b/exec.c | ||
154 | @@ -XXX,XX +XXX,XX @@ bool cpu_physical_memory_snapshot_get_dirty(DirtyBitmapSnapshot *snap, | ||
155 | |||
156 | /* Called from RCU critical section */ | ||
157 | hwaddr memory_region_section_get_iotlb(CPUState *cpu, | ||
158 | - MemoryRegionSection *section, | ||
159 | - target_ulong vaddr, | ||
160 | - hwaddr paddr, hwaddr xlat, | ||
161 | - int prot, | ||
162 | - target_ulong *address) | ||
163 | + MemoryRegionSection *section) | ||
164 | { | ||
165 | - hwaddr iotlb; | ||
166 | - | ||
167 | - if (memory_region_is_ram(section->mr)) { | ||
168 | - /* Normal RAM. */ | ||
169 | - iotlb = memory_region_get_ram_addr(section->mr) + xlat; | ||
170 | - } else { | ||
171 | - AddressSpaceDispatch *d; | ||
172 | - | ||
173 | - d = flatview_to_dispatch(section->fv); | ||
174 | - iotlb = section - d->map.sections; | ||
175 | - iotlb += xlat; | ||
176 | - } | ||
177 | - | ||
178 | - return iotlb; | ||
179 | + AddressSpaceDispatch *d = flatview_to_dispatch(section->fv); | ||
180 | + return section - d->map.sections; | ||
181 | } | ||
182 | #endif /* defined(CONFIG_USER_ONLY) */ | ||
183 | |||
184 | -- | ||
185 | 2.17.1 | ||
186 | |||
187 | diff view generated by jsdifflib |
1 | Since 9458a9a1df1a, all readers of the dirty bitmaps wait | 1 | From: Claudio Fontana <cfontana@suse.de> |
---|---|---|---|
2 | for the rcu lock, which means that they wait until the end | 2 | |
3 | of any executing TranslationBlock. | 3 | after the initial split into 3 tcg variants, we proceed to also |
4 | 4 | split tcg_start_vcpu_thread. | |
5 | As a consequence, there is no need for the actual access | 5 | |
6 | to happen in between the _prepare and _complete. Therefore, | 6 | We actually split it in 2 this time, since the icount variant |
7 | we can improve things by merging the two functions into | 7 | just uses the round robin function. |
8 | notdirty_write and dropping the NotDirtyInfo structure. | 8 | |
9 | 9 | Suggested-by: Richard Henderson <richard.henderson@linaro.org> | |
10 | In addition, the only users of notdirty_write are in cputlb.c, | 10 | Signed-off-by: Claudio Fontana <cfontana@suse.de> |
11 | so move the merged function there. Pass in the CPUIOTLBEntry | 11 | Message-Id: <20201015143217.29337-3-cfontana@suse.de> |
12 | from which the ram_addr_t may be computed. | ||
13 | |||
14 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
15 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
16 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | 12 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> |
17 | --- | 13 | --- |
18 | include/exec/memory-internal.h | 65 ----------------------------- | 14 | accel/tcg/tcg-cpus-mttcg.h | 21 -------------- |
19 | accel/tcg/cputlb.c | 76 +++++++++++++++++++--------------- | 15 | accel/tcg/tcg-cpus-rr.h | 3 +- |
20 | exec.c | 44 -------------------- | 16 | accel/tcg/tcg-cpus.h | 1 - |
21 | 3 files changed, 42 insertions(+), 143 deletions(-) | 17 | accel/tcg/tcg-all.c | 5 ++++ |
22 | 18 | accel/tcg/tcg-cpus-icount.c | 2 +- | |
23 | diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h | 19 | accel/tcg/tcg-cpus-mttcg.c | 29 +++++++++++++++++-- |
24 | index XXXXXXX..XXXXXXX 100644 | 20 | accel/tcg/tcg-cpus-rr.c | 39 +++++++++++++++++++++++-- |
25 | --- a/include/exec/memory-internal.h | 21 | accel/tcg/tcg-cpus.c | 58 ------------------------------------- |
26 | +++ b/include/exec/memory-internal.h | 22 | 8 files changed, 71 insertions(+), 87 deletions(-) |
27 | @@ -XXX,XX +XXX,XX @@ void address_space_dispatch_free(AddressSpaceDispatch *d); | 23 | delete mode 100644 accel/tcg/tcg-cpus-mttcg.h |
28 | 24 | ||
29 | void mtree_print_dispatch(struct AddressSpaceDispatch *d, | 25 | diff --git a/accel/tcg/tcg-cpus-mttcg.h b/accel/tcg/tcg-cpus-mttcg.h |
30 | MemoryRegion *root); | 26 | deleted file mode 100644 |
31 | - | 27 | index XXXXXXX..XXXXXXX |
32 | -struct page_collection; | 28 | --- a/accel/tcg/tcg-cpus-mttcg.h |
33 | - | 29 | +++ /dev/null |
34 | -/* Opaque struct for passing info from memory_notdirty_write_prepare() | 30 | @@ -XXX,XX +XXX,XX @@ |
35 | - * to memory_notdirty_write_complete(). Callers should treat all fields | 31 | -/* |
36 | - * as private, with the exception of @active. | 32 | - * QEMU TCG Multi Threaded vCPUs implementation |
37 | - * | 33 | - * |
38 | - * @active is a field which is not touched by either the prepare or | 34 | - * Copyright 2020 SUSE LLC |
39 | - * complete functions, but which the caller can use if it wishes to | 35 | - * |
40 | - * track whether it has called prepare for this struct and so needs | 36 | - * This work is licensed under the terms of the GNU GPL, version 2 or later. |
41 | - * to later call the complete function. | 37 | - * See the COPYING file in the top-level directory. |
42 | - */ | 38 | - */ |
43 | -typedef struct { | 39 | - |
44 | - CPUState *cpu; | 40 | -#ifndef TCG_CPUS_MTTCG_H |
45 | - struct page_collection *pages; | 41 | -#define TCG_CPUS_MTTCG_H |
46 | - ram_addr_t ram_addr; | 42 | - |
47 | - vaddr mem_vaddr; | 43 | -/* |
48 | - unsigned size; | 44 | - * In the multi-threaded case each vCPU has its own thread. The TLS |
49 | - bool active; | 45 | - * variable current_cpu can be used deep in the code to find the |
50 | -} NotDirtyInfo; | 46 | - * current CPUState for a given thread. |
51 | - | ||
52 | -/** | ||
53 | - * memory_notdirty_write_prepare: call before writing to non-dirty memory | ||
54 | - * @ndi: pointer to opaque NotDirtyInfo struct | ||
55 | - * @cpu: CPU doing the write | ||
56 | - * @mem_vaddr: virtual address of write | ||
57 | - * @ram_addr: the ram address of the write | ||
58 | - * @size: size of write in bytes | ||
59 | - * | ||
60 | - * Any code which writes to the host memory corresponding to | ||
61 | - * guest RAM which has been marked as NOTDIRTY must wrap those | ||
62 | - * writes in calls to memory_notdirty_write_prepare() and | ||
63 | - * memory_notdirty_write_complete(): | ||
64 | - * | ||
65 | - * NotDirtyInfo ndi; | ||
66 | - * memory_notdirty_write_prepare(&ndi, ....); | ||
67 | - * ... perform write here ... | ||
68 | - * memory_notdirty_write_complete(&ndi); | ||
69 | - * | ||
70 | - * These calls will ensure that we flush any TCG translated code for | ||
71 | - * the memory being written, update the dirty bits and (if possible) | ||
72 | - * remove the slowpath callback for writing to the memory. | ||
73 | - * | ||
74 | - * This must only be called if we are using TCG; it will assert otherwise. | ||
75 | - * | ||
76 | - * We may take locks in the prepare call, so callers must ensure that | ||
77 | - * they don't exit (via longjump or otherwise) without calling complete. | ||
78 | - * | ||
79 | - * This call must only be made inside an RCU critical section. | ||
80 | - * (Note that while we're executing a TCG TB we're always in an | ||
81 | - * RCU critical section, which is likely to be the case for callers | ||
82 | - * of these functions.) | ||
83 | - */ | 47 | - */ |
84 | -void memory_notdirty_write_prepare(NotDirtyInfo *ndi, | 48 | - |
85 | - CPUState *cpu, | 49 | -void *tcg_cpu_thread_fn(void *arg); |
86 | - vaddr mem_vaddr, | 50 | - |
87 | - ram_addr_t ram_addr, | 51 | -#endif /* TCG_CPUS_MTTCG_H */ |
88 | - unsigned size); | 52 | diff --git a/accel/tcg/tcg-cpus-rr.h b/accel/tcg/tcg-cpus-rr.h |
89 | -/** | 53 | index XXXXXXX..XXXXXXX 100644 |
90 | - * memory_notdirty_write_complete: finish write to non-dirty memory | 54 | --- a/accel/tcg/tcg-cpus-rr.h |
91 | - * @ndi: pointer to the opaque NotDirtyInfo struct which was initialized | 55 | +++ b/accel/tcg/tcg-cpus-rr.h |
92 | - * by memory_not_dirty_write_prepare(). | 56 | @@ -XXX,XX +XXX,XX @@ |
93 | - */ | 57 | /* Kick all RR vCPUs. */ |
94 | -void memory_notdirty_write_complete(NotDirtyInfo *ndi); | 58 | void qemu_cpu_kick_rr_cpus(CPUState *unused); |
95 | - | 59 | |
96 | #endif | 60 | -void *tcg_rr_cpu_thread_fn(void *arg); |
97 | #endif | 61 | +/* start the round robin vcpu thread */ |
98 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | 62 | +void rr_start_vcpu_thread(CPUState *cpu); |
99 | index XXXXXXX..XXXXXXX 100644 | 63 | |
100 | --- a/accel/tcg/cputlb.c | 64 | #endif /* TCG_CPUS_RR_H */ |
101 | +++ b/accel/tcg/cputlb.c | 65 | diff --git a/accel/tcg/tcg-cpus.h b/accel/tcg/tcg-cpus.h |
102 | @@ -XXX,XX +XXX,XX @@ | 66 | index XXXXXXX..XXXXXXX 100644 |
103 | #include "exec/helper-proto.h" | 67 | --- a/accel/tcg/tcg-cpus.h |
104 | #include "qemu/atomic.h" | 68 | +++ b/accel/tcg/tcg-cpus.h |
105 | #include "qemu/atomic128.h" | 69 | @@ -XXX,XX +XXX,XX @@ extern const CpusAccel tcg_cpus_mttcg; |
106 | +#include "translate-all.h" | 70 | extern const CpusAccel tcg_cpus_icount; |
107 | 71 | extern const CpusAccel tcg_cpus_rr; | |
108 | /* DEBUG defines, enable DEBUG_TLB_LOG to log to the CPU_LOG_MMU target */ | 72 | |
109 | /* #define DEBUG_TLB */ | 73 | -void tcg_start_vcpu_thread(CPUState *cpu); |
110 | @@ -XXX,XX +XXX,XX @@ tb_page_addr_t get_page_addr_code(CPUArchState *env, target_ulong addr) | 74 | void qemu_tcg_destroy_vcpu(CPUState *cpu); |
111 | return qemu_ram_addr_from_host_nofail(p); | 75 | int tcg_cpu_exec(CPUState *cpu); |
76 | void tcg_handle_interrupt(CPUState *cpu, int mask); | ||
77 | diff --git a/accel/tcg/tcg-all.c b/accel/tcg/tcg-all.c | ||
78 | index XXXXXXX..XXXXXXX 100644 | ||
79 | --- a/accel/tcg/tcg-all.c | ||
80 | +++ b/accel/tcg/tcg-all.c | ||
81 | @@ -XXX,XX +XXX,XX @@ static int tcg_init(MachineState *ms) | ||
82 | tcg_exec_init(s->tb_size * 1024 * 1024); | ||
83 | mttcg_enabled = s->mttcg_enabled; | ||
84 | |||
85 | + /* | ||
86 | + * Initialize TCG regions | ||
87 | + */ | ||
88 | + tcg_region_init(); | ||
89 | + | ||
90 | if (mttcg_enabled) { | ||
91 | cpus_register_accel(&tcg_cpus_mttcg); | ||
92 | } else if (icount_enabled()) { | ||
93 | diff --git a/accel/tcg/tcg-cpus-icount.c b/accel/tcg/tcg-cpus-icount.c | ||
94 | index XXXXXXX..XXXXXXX 100644 | ||
95 | --- a/accel/tcg/tcg-cpus-icount.c | ||
96 | +++ b/accel/tcg/tcg-cpus-icount.c | ||
97 | @@ -XXX,XX +XXX,XX @@ static void icount_handle_interrupt(CPUState *cpu, int mask) | ||
112 | } | 98 | } |
113 | 99 | ||
114 | +static void notdirty_write(CPUState *cpu, vaddr mem_vaddr, unsigned size, | 100 | const CpusAccel tcg_cpus_icount = { |
115 | + CPUIOTLBEntry *iotlbentry, uintptr_t retaddr) | 101 | - .create_vcpu_thread = tcg_start_vcpu_thread, |
102 | + .create_vcpu_thread = rr_start_vcpu_thread, | ||
103 | .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, | ||
104 | |||
105 | .handle_interrupt = icount_handle_interrupt, | ||
106 | diff --git a/accel/tcg/tcg-cpus-mttcg.c b/accel/tcg/tcg-cpus-mttcg.c | ||
107 | index XXXXXXX..XXXXXXX 100644 | ||
108 | --- a/accel/tcg/tcg-cpus-mttcg.c | ||
109 | +++ b/accel/tcg/tcg-cpus-mttcg.c | ||
110 | @@ -XXX,XX +XXX,XX @@ | ||
111 | #include "hw/boards.h" | ||
112 | |||
113 | #include "tcg-cpus.h" | ||
114 | -#include "tcg-cpus-mttcg.h" | ||
115 | |||
116 | /* | ||
117 | * In the multi-threaded case each vCPU has its own thread. The TLS | ||
118 | @@ -XXX,XX +XXX,XX @@ | ||
119 | * current CPUState for a given thread. | ||
120 | */ | ||
121 | |||
122 | -void *tcg_cpu_thread_fn(void *arg) | ||
123 | +static void *tcg_cpu_thread_fn(void *arg) | ||
124 | { | ||
125 | CPUState *cpu = arg; | ||
126 | |||
127 | @@ -XXX,XX +XXX,XX @@ static void mttcg_kick_vcpu_thread(CPUState *cpu) | ||
128 | cpu_exit(cpu); | ||
129 | } | ||
130 | |||
131 | +static void mttcg_start_vcpu_thread(CPUState *cpu) | ||
116 | +{ | 132 | +{ |
117 | + ram_addr_t ram_addr = mem_vaddr + iotlbentry->addr; | 133 | + char thread_name[VCPU_THREAD_NAME_SIZE]; |
118 | + | 134 | + |
119 | + trace_memory_notdirty_write_access(mem_vaddr, ram_addr, size); | 135 | + g_assert(tcg_enabled()); |
120 | + | 136 | + |
121 | + if (!cpu_physical_memory_get_dirty_flag(ram_addr, DIRTY_MEMORY_CODE)) { | 137 | + parallel_cpus = (current_machine->smp.max_cpus > 1); |
122 | + struct page_collection *pages | 138 | + |
123 | + = page_collection_lock(ram_addr, ram_addr + size); | 139 | + cpu->thread = g_malloc0(sizeof(QemuThread)); |
124 | + | 140 | + cpu->halt_cond = g_malloc0(sizeof(QemuCond)); |
125 | + /* We require mem_io_pc in tb_invalidate_phys_page_range. */ | 141 | + qemu_cond_init(cpu->halt_cond); |
126 | + cpu->mem_io_pc = retaddr; | 142 | + |
127 | + | 143 | + /* create a thread per vCPU with TCG (MTTCG) */ |
128 | + tb_invalidate_phys_page_fast(pages, ram_addr, size); | 144 | + snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG", |
129 | + page_collection_unlock(pages); | 145 | + cpu->cpu_index); |
130 | + } | 146 | + |
131 | + | 147 | + qemu_thread_create(cpu->thread, thread_name, tcg_cpu_thread_fn, |
132 | + /* | 148 | + cpu, QEMU_THREAD_JOINABLE); |
133 | + * Set both VGA and migration bits for simplicity and to remove | 149 | + |
134 | + * the notdirty callback faster. | 150 | +#ifdef _WIN32 |
135 | + */ | 151 | + cpu->hThread = qemu_thread_get_handle(cpu->thread); |
136 | + cpu_physical_memory_set_dirty_range(ram_addr, size, DIRTY_CLIENTS_NOCODE); | 152 | +#endif |
137 | + | 153 | +} |
138 | + /* We remove the notdirty callback only if the code has been flushed. */ | 154 | + |
139 | + if (!cpu_physical_memory_is_clean(ram_addr)) { | 155 | const CpusAccel tcg_cpus_mttcg = { |
140 | + trace_memory_notdirty_set_dirty(mem_vaddr); | 156 | - .create_vcpu_thread = tcg_start_vcpu_thread, |
141 | + tlb_set_dirty(cpu, mem_vaddr); | 157 | + .create_vcpu_thread = mttcg_start_vcpu_thread, |
158 | .kick_vcpu_thread = mttcg_kick_vcpu_thread, | ||
159 | |||
160 | .handle_interrupt = tcg_handle_interrupt, | ||
161 | diff --git a/accel/tcg/tcg-cpus-rr.c b/accel/tcg/tcg-cpus-rr.c | ||
162 | index XXXXXXX..XXXXXXX 100644 | ||
163 | --- a/accel/tcg/tcg-cpus-rr.c | ||
164 | +++ b/accel/tcg/tcg-cpus-rr.c | ||
165 | @@ -XXX,XX +XXX,XX @@ static void deal_with_unplugged_cpus(void) | ||
166 | * elsewhere. | ||
167 | */ | ||
168 | |||
169 | -void *tcg_rr_cpu_thread_fn(void *arg) | ||
170 | +static void *tcg_rr_cpu_thread_fn(void *arg) | ||
171 | { | ||
172 | CPUState *cpu = arg; | ||
173 | |||
174 | @@ -XXX,XX +XXX,XX @@ void *tcg_rr_cpu_thread_fn(void *arg) | ||
175 | return NULL; | ||
176 | } | ||
177 | |||
178 | +void rr_start_vcpu_thread(CPUState *cpu) | ||
179 | +{ | ||
180 | + char thread_name[VCPU_THREAD_NAME_SIZE]; | ||
181 | + static QemuCond *single_tcg_halt_cond; | ||
182 | + static QemuThread *single_tcg_cpu_thread; | ||
183 | + | ||
184 | + g_assert(tcg_enabled()); | ||
185 | + parallel_cpus = false; | ||
186 | + | ||
187 | + if (!single_tcg_cpu_thread) { | ||
188 | + cpu->thread = g_malloc0(sizeof(QemuThread)); | ||
189 | + cpu->halt_cond = g_malloc0(sizeof(QemuCond)); | ||
190 | + qemu_cond_init(cpu->halt_cond); | ||
191 | + | ||
192 | + /* share a single thread for all cpus with TCG */ | ||
193 | + snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "ALL CPUs/TCG"); | ||
194 | + qemu_thread_create(cpu->thread, thread_name, | ||
195 | + tcg_rr_cpu_thread_fn, | ||
196 | + cpu, QEMU_THREAD_JOINABLE); | ||
197 | + | ||
198 | + single_tcg_halt_cond = cpu->halt_cond; | ||
199 | + single_tcg_cpu_thread = cpu->thread; | ||
200 | +#ifdef _WIN32 | ||
201 | + cpu->hThread = qemu_thread_get_handle(cpu->thread); | ||
202 | +#endif | ||
203 | + } else { | ||
204 | + /* we share the thread */ | ||
205 | + cpu->thread = single_tcg_cpu_thread; | ||
206 | + cpu->halt_cond = single_tcg_halt_cond; | ||
207 | + cpu->thread_id = first_cpu->thread_id; | ||
208 | + cpu->can_do_io = 1; | ||
209 | + cpu->created = true; | ||
142 | + } | 210 | + } |
143 | +} | 211 | +} |
144 | + | 212 | + |
145 | /* | 213 | const CpusAccel tcg_cpus_rr = { |
146 | * Probe for whether the specified guest access is permitted. If it is not | 214 | - .create_vcpu_thread = tcg_start_vcpu_thread, |
147 | * permitted then an exception will be taken in the same way as if this | 215 | + .create_vcpu_thread = rr_start_vcpu_thread, |
148 | @@ -XXX,XX +XXX,XX @@ void *tlb_vaddr_to_host(CPUArchState *env, abi_ptr addr, | 216 | .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, |
149 | /* Probe for a read-modify-write atomic operation. Do not allow unaligned | 217 | |
150 | * operations, or io operations to proceed. Return the host address. */ | 218 | .handle_interrupt = tcg_handle_interrupt, |
151 | static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr, | 219 | diff --git a/accel/tcg/tcg-cpus.c b/accel/tcg/tcg-cpus.c |
152 | - TCGMemOpIdx oi, uintptr_t retaddr, | 220 | index XXXXXXX..XXXXXXX 100644 |
153 | - NotDirtyInfo *ndi) | 221 | --- a/accel/tcg/tcg-cpus.c |
154 | + TCGMemOpIdx oi, uintptr_t retaddr) | 222 | +++ b/accel/tcg/tcg-cpus.c |
155 | { | 223 | @@ -XXX,XX +XXX,XX @@ |
156 | size_t mmu_idx = get_mmuidx(oi); | 224 | #include "hw/boards.h" |
157 | uintptr_t index = tlb_index(env, mmu_idx, addr); | 225 | |
158 | @@ -XXX,XX +XXX,XX @@ static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr, | 226 | #include "tcg-cpus.h" |
159 | 227 | -#include "tcg-cpus-mttcg.h" | |
160 | hostaddr = (void *)((uintptr_t)addr + tlbe->addend); | 228 | -#include "tcg-cpus-rr.h" |
161 | 229 | ||
162 | - ndi->active = false; | 230 | /* common functionality among all TCG variants */ |
163 | if (unlikely(tlb_addr & TLB_NOTDIRTY)) { | 231 | |
164 | - ndi->active = true; | 232 | -void tcg_start_vcpu_thread(CPUState *cpu) |
165 | - memory_notdirty_write_prepare(ndi, env_cpu(env), addr, | ||
166 | - qemu_ram_addr_from_host_nofail(hostaddr), | ||
167 | - 1 << s_bits); | ||
168 | + notdirty_write(env_cpu(env), addr, 1 << s_bits, | ||
169 | + &env_tlb(env)->d[mmu_idx].iotlb[index], retaddr); | ||
170 | } | ||
171 | |||
172 | return hostaddr; | ||
173 | @@ -XXX,XX +XXX,XX @@ store_helper(CPUArchState *env, target_ulong addr, uint64_t val, | ||
174 | return; | ||
175 | } | ||
176 | |||
177 | - haddr = (void *)((uintptr_t)addr + entry->addend); | ||
178 | - | ||
179 | /* Handle clean RAM pages. */ | ||
180 | if (tlb_addr & TLB_NOTDIRTY) { | ||
181 | - NotDirtyInfo ndi; | ||
182 | - | ||
183 | - /* We require mem_io_pc in tb_invalidate_phys_page_range. */ | ||
184 | - env_cpu(env)->mem_io_pc = retaddr; | ||
185 | - | ||
186 | - memory_notdirty_write_prepare(&ndi, env_cpu(env), addr, | ||
187 | - addr + iotlbentry->addr, size); | ||
188 | - | ||
189 | - if (unlikely(need_swap)) { | ||
190 | - store_memop(haddr, val, op ^ MO_BSWAP); | ||
191 | - } else { | ||
192 | - store_memop(haddr, val, op); | ||
193 | - } | ||
194 | - | ||
195 | - memory_notdirty_write_complete(&ndi); | ||
196 | - return; | ||
197 | + notdirty_write(env_cpu(env), addr, size, iotlbentry, retaddr); | ||
198 | } | ||
199 | |||
200 | + haddr = (void *)((uintptr_t)addr + entry->addend); | ||
201 | + | ||
202 | /* | ||
203 | * Keep these two store_memop separate to ensure that the compiler | ||
204 | * is able to fold the entire function to a single instruction. | ||
205 | @@ -XXX,XX +XXX,XX @@ void helper_be_stq_mmu(CPUArchState *env, target_ulong addr, uint64_t val, | ||
206 | #define EXTRA_ARGS , TCGMemOpIdx oi, uintptr_t retaddr | ||
207 | #define ATOMIC_NAME(X) \ | ||
208 | HELPER(glue(glue(glue(atomic_ ## X, SUFFIX), END), _mmu)) | ||
209 | -#define ATOMIC_MMU_DECLS NotDirtyInfo ndi | ||
210 | -#define ATOMIC_MMU_LOOKUP atomic_mmu_lookup(env, addr, oi, retaddr, &ndi) | ||
211 | -#define ATOMIC_MMU_CLEANUP \ | ||
212 | - do { \ | ||
213 | - if (unlikely(ndi.active)) { \ | ||
214 | - memory_notdirty_write_complete(&ndi); \ | ||
215 | - } \ | ||
216 | - } while (0) | ||
217 | +#define ATOMIC_MMU_DECLS | ||
218 | +#define ATOMIC_MMU_LOOKUP atomic_mmu_lookup(env, addr, oi, retaddr) | ||
219 | +#define ATOMIC_MMU_CLEANUP | ||
220 | |||
221 | #define DATA_SIZE 1 | ||
222 | #include "atomic_template.h" | ||
223 | @@ -XXX,XX +XXX,XX @@ void helper_be_stq_mmu(CPUArchState *env, target_ulong addr, uint64_t val, | ||
224 | #undef ATOMIC_MMU_LOOKUP | ||
225 | #define EXTRA_ARGS , TCGMemOpIdx oi | ||
226 | #define ATOMIC_NAME(X) HELPER(glue(glue(atomic_ ## X, SUFFIX), END)) | ||
227 | -#define ATOMIC_MMU_LOOKUP atomic_mmu_lookup(env, addr, oi, GETPC(), &ndi) | ||
228 | +#define ATOMIC_MMU_LOOKUP atomic_mmu_lookup(env, addr, oi, GETPC()) | ||
229 | |||
230 | #define DATA_SIZE 1 | ||
231 | #include "atomic_template.h" | ||
232 | diff --git a/exec.c b/exec.c | ||
233 | index XXXXXXX..XXXXXXX 100644 | ||
234 | --- a/exec.c | ||
235 | +++ b/exec.c | ||
236 | @@ -XXX,XX +XXX,XX @@ ram_addr_t qemu_ram_addr_from_host(void *ptr) | ||
237 | return block->offset + offset; | ||
238 | } | ||
239 | |||
240 | -/* Called within RCU critical section. */ | ||
241 | -void memory_notdirty_write_prepare(NotDirtyInfo *ndi, | ||
242 | - CPUState *cpu, | ||
243 | - vaddr mem_vaddr, | ||
244 | - ram_addr_t ram_addr, | ||
245 | - unsigned size) | ||
246 | -{ | 233 | -{ |
247 | - ndi->cpu = cpu; | 234 | - char thread_name[VCPU_THREAD_NAME_SIZE]; |
248 | - ndi->ram_addr = ram_addr; | 235 | - static QemuCond *single_tcg_halt_cond; |
249 | - ndi->mem_vaddr = mem_vaddr; | 236 | - static QemuThread *single_tcg_cpu_thread; |
250 | - ndi->size = size; | 237 | - static int tcg_region_inited; |
251 | - ndi->pages = NULL; | ||
252 | - | ||
253 | - trace_memory_notdirty_write_access(mem_vaddr, ram_addr, size); | ||
254 | - | 238 | - |
255 | - assert(tcg_enabled()); | 239 | - assert(tcg_enabled()); |
256 | - if (!cpu_physical_memory_get_dirty_flag(ram_addr, DIRTY_MEMORY_CODE)) { | 240 | - /* |
257 | - ndi->pages = page_collection_lock(ram_addr, ram_addr + size); | 241 | - * Initialize TCG regions--once. Now is a good time, because: |
258 | - tb_invalidate_phys_page_fast(ndi->pages, ram_addr, size); | 242 | - * (1) TCG's init context, prologue and target globals have been set up. |
243 | - * (2) qemu_tcg_mttcg_enabled() works now (TCG init code runs before the | ||
244 | - * -accel flag is processed, so the check doesn't work then). | ||
245 | - */ | ||
246 | - if (!tcg_region_inited) { | ||
247 | - tcg_region_inited = 1; | ||
248 | - tcg_region_init(); | ||
249 | - parallel_cpus = qemu_tcg_mttcg_enabled() && current_machine->smp.max_cpus > 1; | ||
250 | - } | ||
251 | - | ||
252 | - if (qemu_tcg_mttcg_enabled() || !single_tcg_cpu_thread) { | ||
253 | - cpu->thread = g_malloc0(sizeof(QemuThread)); | ||
254 | - cpu->halt_cond = g_malloc0(sizeof(QemuCond)); | ||
255 | - qemu_cond_init(cpu->halt_cond); | ||
256 | - | ||
257 | - if (qemu_tcg_mttcg_enabled()) { | ||
258 | - /* create a thread per vCPU with TCG (MTTCG) */ | ||
259 | - snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG", | ||
260 | - cpu->cpu_index); | ||
261 | - | ||
262 | - qemu_thread_create(cpu->thread, thread_name, tcg_cpu_thread_fn, | ||
263 | - cpu, QEMU_THREAD_JOINABLE); | ||
264 | - | ||
265 | - } else { | ||
266 | - /* share a single thread for all cpus with TCG */ | ||
267 | - snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "ALL CPUs/TCG"); | ||
268 | - qemu_thread_create(cpu->thread, thread_name, | ||
269 | - tcg_rr_cpu_thread_fn, | ||
270 | - cpu, QEMU_THREAD_JOINABLE); | ||
271 | - | ||
272 | - single_tcg_halt_cond = cpu->halt_cond; | ||
273 | - single_tcg_cpu_thread = cpu->thread; | ||
274 | - } | ||
275 | -#ifdef _WIN32 | ||
276 | - cpu->hThread = qemu_thread_get_handle(cpu->thread); | ||
277 | -#endif | ||
278 | - } else { | ||
279 | - /* For non-MTTCG cases we share the thread */ | ||
280 | - cpu->thread = single_tcg_cpu_thread; | ||
281 | - cpu->halt_cond = single_tcg_halt_cond; | ||
282 | - cpu->thread_id = first_cpu->thread_id; | ||
283 | - cpu->can_do_io = 1; | ||
284 | - cpu->created = true; | ||
259 | - } | 285 | - } |
260 | -} | 286 | -} |
261 | - | 287 | - |
262 | -/* Called within RCU critical section. */ | 288 | void qemu_tcg_destroy_vcpu(CPUState *cpu) |
263 | -void memory_notdirty_write_complete(NotDirtyInfo *ndi) | 289 | { |
264 | -{ | 290 | cpu_thread_signal_destroyed(cpu); |
265 | - if (ndi->pages) { | ||
266 | - assert(tcg_enabled()); | ||
267 | - page_collection_unlock(ndi->pages); | ||
268 | - ndi->pages = NULL; | ||
269 | - } | ||
270 | - | ||
271 | - /* Set both VGA and migration bits for simplicity and to remove | ||
272 | - * the notdirty callback faster. | ||
273 | - */ | ||
274 | - cpu_physical_memory_set_dirty_range(ndi->ram_addr, ndi->size, | ||
275 | - DIRTY_CLIENTS_NOCODE); | ||
276 | - /* we remove the notdirty callback only if the code has been | ||
277 | - flushed */ | ||
278 | - if (!cpu_physical_memory_is_clean(ndi->ram_addr)) { | ||
279 | - trace_memory_notdirty_set_dirty(ndi->mem_vaddr); | ||
280 | - tlb_set_dirty(ndi->cpu, ndi->mem_vaddr); | ||
281 | - } | ||
282 | -} | ||
283 | - | ||
284 | /* Generate a debug exception if a watchpoint has been hit. */ | ||
285 | void cpu_check_watchpoint(CPUState *cpu, vaddr addr, vaddr len, | ||
286 | MemTxAttrs attrs, int flags, uintptr_t ra) | ||
287 | -- | 291 | -- |
288 | 2.17.1 | 292 | 2.25.1 |
289 | 293 | ||
290 | 294 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | We can use notdirty_write for the write and return a valid host | ||
2 | pointer for this case. | ||
3 | 1 | ||
4 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
5 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
6 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
7 | --- | ||
8 | accel/tcg/cputlb.c | 26 +++++++++++++++++--------- | ||
9 | 1 file changed, 17 insertions(+), 9 deletions(-) | ||
10 | |||
11 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
12 | index XXXXXXX..XXXXXXX 100644 | ||
13 | --- a/accel/tcg/cputlb.c | ||
14 | +++ b/accel/tcg/cputlb.c | ||
15 | @@ -XXX,XX +XXX,XX @@ void *probe_access(CPUArchState *env, target_ulong addr, int size, | ||
16 | return NULL; | ||
17 | } | ||
18 | |||
19 | - /* Handle watchpoints. */ | ||
20 | - if (tlb_addr & TLB_WATCHPOINT) { | ||
21 | - cpu_check_watchpoint(env_cpu(env), addr, size, | ||
22 | - env_tlb(env)->d[mmu_idx].iotlb[index].attrs, | ||
23 | - wp_access, retaddr); | ||
24 | - } | ||
25 | + if (unlikely(tlb_addr & TLB_FLAGS_MASK)) { | ||
26 | + CPUIOTLBEntry *iotlbentry = &env_tlb(env)->d[mmu_idx].iotlb[index]; | ||
27 | |||
28 | - /* Reject I/O access, or other required slow-path. */ | ||
29 | - if (tlb_addr & (TLB_NOTDIRTY | TLB_MMIO | TLB_BSWAP | TLB_DISCARD_WRITE)) { | ||
30 | - return NULL; | ||
31 | + /* Reject I/O access, or other required slow-path. */ | ||
32 | + if (tlb_addr & (TLB_MMIO | TLB_BSWAP | TLB_DISCARD_WRITE)) { | ||
33 | + return NULL; | ||
34 | + } | ||
35 | + | ||
36 | + /* Handle watchpoints. */ | ||
37 | + if (tlb_addr & TLB_WATCHPOINT) { | ||
38 | + cpu_check_watchpoint(env_cpu(env), addr, size, | ||
39 | + iotlbentry->attrs, wp_access, retaddr); | ||
40 | + } | ||
41 | + | ||
42 | + /* Handle clean RAM pages. */ | ||
43 | + if (tlb_addr & TLB_NOTDIRTY) { | ||
44 | + notdirty_write(env_cpu(env), addr, size, iotlbentry, retaddr); | ||
45 | + } | ||
46 | } | ||
47 | |||
48 | return (void *)((uintptr_t)addr + entry->addend); | ||
49 | -- | ||
50 | 2.17.1 | ||
51 | |||
52 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | With the merge of notdirty handling into store_helper, | ||
2 | the last user of cpu->mem_io_vaddr was removed. | ||
3 | 1 | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
5 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
6 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
7 | --- | ||
8 | include/hw/core/cpu.h | 2 -- | ||
9 | accel/tcg/cputlb.c | 2 -- | ||
10 | hw/core/cpu.c | 1 - | ||
11 | 3 files changed, 5 deletions(-) | ||
12 | |||
13 | diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h | ||
14 | index XXXXXXX..XXXXXXX 100644 | ||
15 | --- a/include/hw/core/cpu.h | ||
16 | +++ b/include/hw/core/cpu.h | ||
17 | @@ -XXX,XX +XXX,XX @@ struct qemu_work_item; | ||
18 | * @next_cpu: Next CPU sharing TB cache. | ||
19 | * @opaque: User data. | ||
20 | * @mem_io_pc: Host Program Counter at which the memory was accessed. | ||
21 | - * @mem_io_vaddr: Target virtual address at which the memory was accessed. | ||
22 | * @kvm_fd: vCPU file descriptor for KVM. | ||
23 | * @work_mutex: Lock to prevent multiple access to queued_work_*. | ||
24 | * @queued_work_first: First asynchronous work pending. | ||
25 | @@ -XXX,XX +XXX,XX @@ struct CPUState { | ||
26 | * we store some rarely used information in the CPU context. | ||
27 | */ | ||
28 | uintptr_t mem_io_pc; | ||
29 | - vaddr mem_io_vaddr; | ||
30 | /* | ||
31 | * This is only needed for the legacy cpu_unassigned_access() hook; | ||
32 | * when all targets using it have been converted to use | ||
33 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
34 | index XXXXXXX..XXXXXXX 100644 | ||
35 | --- a/accel/tcg/cputlb.c | ||
36 | +++ b/accel/tcg/cputlb.c | ||
37 | @@ -XXX,XX +XXX,XX @@ static uint64_t io_readx(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
38 | cpu_io_recompile(cpu, retaddr); | ||
39 | } | ||
40 | |||
41 | - cpu->mem_io_vaddr = addr; | ||
42 | cpu->mem_io_access_type = access_type; | ||
43 | |||
44 | if (mr->global_locking && !qemu_mutex_iothread_locked()) { | ||
45 | @@ -XXX,XX +XXX,XX @@ static void io_writex(CPUArchState *env, CPUIOTLBEntry *iotlbentry, | ||
46 | if (!cpu->can_do_io) { | ||
47 | cpu_io_recompile(cpu, retaddr); | ||
48 | } | ||
49 | - cpu->mem_io_vaddr = addr; | ||
50 | cpu->mem_io_pc = retaddr; | ||
51 | |||
52 | if (mr->global_locking && !qemu_mutex_iothread_locked()) { | ||
53 | diff --git a/hw/core/cpu.c b/hw/core/cpu.c | ||
54 | index XXXXXXX..XXXXXXX 100644 | ||
55 | --- a/hw/core/cpu.c | ||
56 | +++ b/hw/core/cpu.c | ||
57 | @@ -XXX,XX +XXX,XX @@ static void cpu_common_reset(CPUState *cpu) | ||
58 | cpu->interrupt_request = 0; | ||
59 | cpu->halted = 0; | ||
60 | cpu->mem_io_pc = 0; | ||
61 | - cpu->mem_io_vaddr = 0; | ||
62 | cpu->icount_extra = 0; | ||
63 | atomic_set(&cpu->icount_decr_ptr->u32, 0); | ||
64 | cpu->can_do_io = 1; | ||
65 | -- | ||
66 | 2.17.1 | ||
67 | |||
68 | diff view generated by jsdifflib |
1 | All callers pass false to this argument. Remove it and pass the | 1 | From: Claudio Fontana <cfontana@suse.de> |
---|---|---|---|
2 | constant on to tb_invalidate_phys_page_range__locked. | ||
3 | 2 | ||
4 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | 3 | Signed-off-by: Claudio Fontana <cfontana@suse.de> |
5 | Reviewed-by: David Hildenbrand <david@redhat.com> | 4 | Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> |
5 | Message-Id: <20201015143217.29337-4-cfontana@suse.de> | ||
6 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | 6 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> |
7 | --- | 7 | --- |
8 | accel/tcg/translate-all.h | 3 +-- | 8 | accel/tcg/tcg-cpus-icount.h | 6 +-- |
9 | accel/tcg/translate-all.c | 6 ++---- | 9 | accel/tcg/tcg-cpus-rr.h | 2 +- |
10 | exec.c | 4 ++-- | 10 | accel/tcg/tcg-cpus.h | 6 +-- |
11 | 3 files changed, 5 insertions(+), 8 deletions(-) | 11 | accel/tcg/tcg-cpus-icount.c | 24 ++++++------ |
12 | accel/tcg/tcg-cpus-mttcg.c | 10 ++--- | ||
13 | accel/tcg/tcg-cpus-rr.c | 74 ++++++++++++++++++------------------- | ||
14 | accel/tcg/tcg-cpus.c | 6 +-- | ||
15 | 7 files changed, 64 insertions(+), 64 deletions(-) | ||
12 | 16 | ||
13 | diff --git a/accel/tcg/translate-all.h b/accel/tcg/translate-all.h | 17 | diff --git a/accel/tcg/tcg-cpus-icount.h b/accel/tcg/tcg-cpus-icount.h |
14 | index XXXXXXX..XXXXXXX 100644 | 18 | index XXXXXXX..XXXXXXX 100644 |
15 | --- a/accel/tcg/translate-all.h | 19 | --- a/accel/tcg/tcg-cpus-icount.h |
16 | +++ b/accel/tcg/translate-all.h | 20 | +++ b/accel/tcg/tcg-cpus-icount.h |
17 | @@ -XXX,XX +XXX,XX @@ struct page_collection *page_collection_lock(tb_page_addr_t start, | 21 | @@ -XXX,XX +XXX,XX @@ |
18 | void page_collection_unlock(struct page_collection *set); | 22 | #ifndef TCG_CPUS_ICOUNT_H |
19 | void tb_invalidate_phys_page_fast(struct page_collection *pages, | 23 | #define TCG_CPUS_ICOUNT_H |
20 | tb_page_addr_t start, int len); | 24 | |
21 | -void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end, | 25 | -void handle_icount_deadline(void); |
22 | - int is_cpu_write_access); | 26 | -void prepare_icount_for_run(CPUState *cpu); |
23 | +void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end); | 27 | -void process_icount_data(CPUState *cpu); |
24 | void tb_check_watchpoint(CPUState *cpu); | 28 | +void icount_handle_deadline(void); |
25 | 29 | +void icount_prepare_for_run(CPUState *cpu); | |
26 | #ifdef CONFIG_USER_ONLY | 30 | +void icount_process_data(CPUState *cpu); |
27 | diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c | 31 | |
28 | index XXXXXXX..XXXXXXX 100644 | 32 | #endif /* TCG_CPUS_ICOUNT_H */ |
29 | --- a/accel/tcg/translate-all.c | 33 | diff --git a/accel/tcg/tcg-cpus-rr.h b/accel/tcg/tcg-cpus-rr.h |
30 | +++ b/accel/tcg/translate-all.c | 34 | index XXXXXXX..XXXXXXX 100644 |
31 | @@ -XXX,XX +XXX,XX @@ tb_invalidate_phys_page_range__locked(struct page_collection *pages, | 35 | --- a/accel/tcg/tcg-cpus-rr.h |
32 | * | 36 | +++ b/accel/tcg/tcg-cpus-rr.h |
33 | * Called with mmap_lock held for user-mode emulation | 37 | @@ -XXX,XX +XXX,XX @@ |
38 | #define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10) | ||
39 | |||
40 | /* Kick all RR vCPUs. */ | ||
41 | -void qemu_cpu_kick_rr_cpus(CPUState *unused); | ||
42 | +void rr_kick_vcpu_thread(CPUState *unused); | ||
43 | |||
44 | /* start the round robin vcpu thread */ | ||
45 | void rr_start_vcpu_thread(CPUState *cpu); | ||
46 | diff --git a/accel/tcg/tcg-cpus.h b/accel/tcg/tcg-cpus.h | ||
47 | index XXXXXXX..XXXXXXX 100644 | ||
48 | --- a/accel/tcg/tcg-cpus.h | ||
49 | +++ b/accel/tcg/tcg-cpus.h | ||
50 | @@ -XXX,XX +XXX,XX @@ extern const CpusAccel tcg_cpus_mttcg; | ||
51 | extern const CpusAccel tcg_cpus_icount; | ||
52 | extern const CpusAccel tcg_cpus_rr; | ||
53 | |||
54 | -void qemu_tcg_destroy_vcpu(CPUState *cpu); | ||
55 | -int tcg_cpu_exec(CPUState *cpu); | ||
56 | -void tcg_handle_interrupt(CPUState *cpu, int mask); | ||
57 | +void tcg_cpus_destroy(CPUState *cpu); | ||
58 | +int tcg_cpus_exec(CPUState *cpu); | ||
59 | +void tcg_cpus_handle_interrupt(CPUState *cpu, int mask); | ||
60 | |||
61 | #endif /* TCG_CPUS_H */ | ||
62 | diff --git a/accel/tcg/tcg-cpus-icount.c b/accel/tcg/tcg-cpus-icount.c | ||
63 | index XXXXXXX..XXXXXXX 100644 | ||
64 | --- a/accel/tcg/tcg-cpus-icount.c | ||
65 | +++ b/accel/tcg/tcg-cpus-icount.c | ||
66 | @@ -XXX,XX +XXX,XX @@ | ||
67 | #include "tcg-cpus-icount.h" | ||
68 | #include "tcg-cpus-rr.h" | ||
69 | |||
70 | -static int64_t tcg_get_icount_limit(void) | ||
71 | +static int64_t icount_get_limit(void) | ||
72 | { | ||
73 | int64_t deadline; | ||
74 | |||
75 | @@ -XXX,XX +XXX,XX @@ static int64_t tcg_get_icount_limit(void) | ||
76 | } | ||
77 | } | ||
78 | |||
79 | -static void notify_aio_contexts(void) | ||
80 | +static void icount_notify_aio_contexts(void) | ||
81 | { | ||
82 | /* Wake up other AioContexts. */ | ||
83 | qemu_clock_notify(QEMU_CLOCK_VIRTUAL); | ||
84 | qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL); | ||
85 | } | ||
86 | |||
87 | -void handle_icount_deadline(void) | ||
88 | +void icount_handle_deadline(void) | ||
89 | { | ||
90 | assert(qemu_in_vcpu_thread()); | ||
91 | int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL, | ||
92 | QEMU_TIMER_ATTR_ALL); | ||
93 | |||
94 | if (deadline == 0) { | ||
95 | - notify_aio_contexts(); | ||
96 | + icount_notify_aio_contexts(); | ||
97 | } | ||
98 | } | ||
99 | |||
100 | -void prepare_icount_for_run(CPUState *cpu) | ||
101 | +void icount_prepare_for_run(CPUState *cpu) | ||
102 | { | ||
103 | int insns_left; | ||
104 | |||
105 | /* | ||
106 | - * These should always be cleared by process_icount_data after | ||
107 | + * These should always be cleared by icount_process_data after | ||
108 | * each vCPU execution. However u16.high can be raised | ||
109 | - * asynchronously by cpu_exit/cpu_interrupt/tcg_handle_interrupt | ||
110 | + * asynchronously by cpu_exit/cpu_interrupt/tcg_cpus_handle_interrupt | ||
111 | */ | ||
112 | g_assert(cpu_neg(cpu)->icount_decr.u16.low == 0); | ||
113 | g_assert(cpu->icount_extra == 0); | ||
114 | |||
115 | - cpu->icount_budget = tcg_get_icount_limit(); | ||
116 | + cpu->icount_budget = icount_get_limit(); | ||
117 | insns_left = MIN(0xffff, cpu->icount_budget); | ||
118 | cpu_neg(cpu)->icount_decr.u16.low = insns_left; | ||
119 | cpu->icount_extra = cpu->icount_budget - insns_left; | ||
120 | @@ -XXX,XX +XXX,XX @@ void prepare_icount_for_run(CPUState *cpu) | ||
121 | replay_mutex_lock(); | ||
122 | |||
123 | if (cpu->icount_budget == 0 && replay_has_checkpoint()) { | ||
124 | - notify_aio_contexts(); | ||
125 | + icount_notify_aio_contexts(); | ||
126 | } | ||
127 | } | ||
128 | |||
129 | -void process_icount_data(CPUState *cpu) | ||
130 | +void icount_process_data(CPUState *cpu) | ||
131 | { | ||
132 | /* Account for executed instructions */ | ||
133 | icount_update(cpu); | ||
134 | @@ -XXX,XX +XXX,XX @@ static void icount_handle_interrupt(CPUState *cpu, int mask) | ||
135 | { | ||
136 | int old_mask = cpu->interrupt_request; | ||
137 | |||
138 | - tcg_handle_interrupt(cpu, mask); | ||
139 | + tcg_cpus_handle_interrupt(cpu, mask); | ||
140 | if (qemu_cpu_is_self(cpu) && | ||
141 | !cpu->can_do_io | ||
142 | && (mask & ~old_mask) != 0) { | ||
143 | @@ -XXX,XX +XXX,XX @@ static void icount_handle_interrupt(CPUState *cpu, int mask) | ||
144 | |||
145 | const CpusAccel tcg_cpus_icount = { | ||
146 | .create_vcpu_thread = rr_start_vcpu_thread, | ||
147 | - .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, | ||
148 | + .kick_vcpu_thread = rr_kick_vcpu_thread, | ||
149 | |||
150 | .handle_interrupt = icount_handle_interrupt, | ||
151 | .get_virtual_clock = icount_get, | ||
152 | diff --git a/accel/tcg/tcg-cpus-mttcg.c b/accel/tcg/tcg-cpus-mttcg.c | ||
153 | index XXXXXXX..XXXXXXX 100644 | ||
154 | --- a/accel/tcg/tcg-cpus-mttcg.c | ||
155 | +++ b/accel/tcg/tcg-cpus-mttcg.c | ||
156 | @@ -XXX,XX +XXX,XX @@ | ||
157 | * current CPUState for a given thread. | ||
34 | */ | 158 | */ |
35 | -void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end, | 159 | |
36 | - int is_cpu_write_access) | 160 | -static void *tcg_cpu_thread_fn(void *arg) |
37 | +void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end) | 161 | +static void *mttcg_cpu_thread_fn(void *arg) |
38 | { | 162 | { |
39 | struct page_collection *pages; | 163 | CPUState *cpu = arg; |
40 | PageDesc *p; | 164 | |
41 | @@ -XXX,XX +XXX,XX @@ void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end, | 165 | @@ -XXX,XX +XXX,XX @@ static void *tcg_cpu_thread_fn(void *arg) |
42 | return; | 166 | if (cpu_can_run(cpu)) { |
43 | } | 167 | int r; |
44 | pages = page_collection_lock(start, end); | 168 | qemu_mutex_unlock_iothread(); |
45 | - tb_invalidate_phys_page_range__locked(pages, p, start, end, | 169 | - r = tcg_cpu_exec(cpu); |
46 | - is_cpu_write_access); | 170 | + r = tcg_cpus_exec(cpu); |
47 | + tb_invalidate_phys_page_range__locked(pages, p, start, end, 0); | 171 | qemu_mutex_lock_iothread(); |
48 | page_collection_unlock(pages); | 172 | switch (r) { |
49 | } | 173 | case EXCP_DEBUG: |
50 | 174 | @@ -XXX,XX +XXX,XX @@ static void *tcg_cpu_thread_fn(void *arg) | |
51 | diff --git a/exec.c b/exec.c | 175 | qemu_wait_io_event(cpu); |
52 | index XXXXXXX..XXXXXXX 100644 | 176 | } while (!cpu->unplug || cpu_can_run(cpu)); |
53 | --- a/exec.c | 177 | |
54 | +++ b/exec.c | 178 | - qemu_tcg_destroy_vcpu(cpu); |
55 | @@ -XXX,XX +XXX,XX @@ const char *parse_cpu_option(const char *cpu_option) | 179 | + tcg_cpus_destroy(cpu); |
56 | void tb_invalidate_phys_addr(target_ulong addr) | 180 | qemu_mutex_unlock_iothread(); |
57 | { | 181 | rcu_unregister_thread(); |
58 | mmap_lock(); | 182 | return NULL; |
59 | - tb_invalidate_phys_page_range(addr, addr + 1, 0); | 183 | @@ -XXX,XX +XXX,XX @@ static void mttcg_start_vcpu_thread(CPUState *cpu) |
60 | + tb_invalidate_phys_page_range(addr, addr + 1); | 184 | snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG", |
61 | mmap_unlock(); | 185 | cpu->cpu_index); |
62 | } | 186 | |
63 | 187 | - qemu_thread_create(cpu->thread, thread_name, tcg_cpu_thread_fn, | |
64 | @@ -XXX,XX +XXX,XX @@ void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr, MemTxAttrs attrs) | 188 | + qemu_thread_create(cpu->thread, thread_name, mttcg_cpu_thread_fn, |
65 | return; | 189 | cpu, QEMU_THREAD_JOINABLE); |
66 | } | 190 | |
67 | ram_addr = memory_region_get_ram_addr(mr) + addr; | 191 | #ifdef _WIN32 |
68 | - tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); | 192 | @@ -XXX,XX +XXX,XX @@ const CpusAccel tcg_cpus_mttcg = { |
69 | + tb_invalidate_phys_page_range(ram_addr, ram_addr + 1); | 193 | .create_vcpu_thread = mttcg_start_vcpu_thread, |
70 | rcu_read_unlock(); | 194 | .kick_vcpu_thread = mttcg_kick_vcpu_thread, |
71 | } | 195 | |
196 | - .handle_interrupt = tcg_handle_interrupt, | ||
197 | + .handle_interrupt = tcg_cpus_handle_interrupt, | ||
198 | }; | ||
199 | diff --git a/accel/tcg/tcg-cpus-rr.c b/accel/tcg/tcg-cpus-rr.c | ||
200 | index XXXXXXX..XXXXXXX 100644 | ||
201 | --- a/accel/tcg/tcg-cpus-rr.c | ||
202 | +++ b/accel/tcg/tcg-cpus-rr.c | ||
203 | @@ -XXX,XX +XXX,XX @@ | ||
204 | #include "tcg-cpus-icount.h" | ||
205 | |||
206 | /* Kick all RR vCPUs */ | ||
207 | -void qemu_cpu_kick_rr_cpus(CPUState *unused) | ||
208 | +void rr_kick_vcpu_thread(CPUState *unused) | ||
209 | { | ||
210 | CPUState *cpu; | ||
211 | |||
212 | @@ -XXX,XX +XXX,XX @@ void qemu_cpu_kick_rr_cpus(CPUState *unused) | ||
213 | * idleness is complete. | ||
214 | */ | ||
215 | |||
216 | -static QEMUTimer *tcg_kick_vcpu_timer; | ||
217 | -static CPUState *tcg_current_rr_cpu; | ||
218 | +static QEMUTimer *rr_kick_vcpu_timer; | ||
219 | +static CPUState *rr_current_cpu; | ||
220 | |||
221 | #define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10) | ||
222 | |||
223 | -static inline int64_t qemu_tcg_next_kick(void) | ||
224 | +static inline int64_t rr_next_kick_time(void) | ||
225 | { | ||
226 | return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + TCG_KICK_PERIOD; | ||
227 | } | ||
228 | |||
229 | /* Kick the currently round-robin scheduled vCPU to next */ | ||
230 | -static void qemu_cpu_kick_rr_next_cpu(void) | ||
231 | +static void rr_kick_next_cpu(void) | ||
232 | { | ||
233 | CPUState *cpu; | ||
234 | do { | ||
235 | - cpu = qatomic_mb_read(&tcg_current_rr_cpu); | ||
236 | + cpu = qatomic_mb_read(&rr_current_cpu); | ||
237 | if (cpu) { | ||
238 | cpu_exit(cpu); | ||
239 | } | ||
240 | - } while (cpu != qatomic_mb_read(&tcg_current_rr_cpu)); | ||
241 | + } while (cpu != qatomic_mb_read(&rr_current_cpu)); | ||
242 | } | ||
243 | |||
244 | -static void kick_tcg_thread(void *opaque) | ||
245 | +static void rr_kick_thread(void *opaque) | ||
246 | { | ||
247 | - timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
248 | - qemu_cpu_kick_rr_next_cpu(); | ||
249 | + timer_mod(rr_kick_vcpu_timer, rr_next_kick_time()); | ||
250 | + rr_kick_next_cpu(); | ||
251 | } | ||
252 | |||
253 | -static void start_tcg_kick_timer(void) | ||
254 | +static void rr_start_kick_timer(void) | ||
255 | { | ||
256 | - if (!tcg_kick_vcpu_timer && CPU_NEXT(first_cpu)) { | ||
257 | - tcg_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, | ||
258 | - kick_tcg_thread, NULL); | ||
259 | + if (!rr_kick_vcpu_timer && CPU_NEXT(first_cpu)) { | ||
260 | + rr_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, | ||
261 | + rr_kick_thread, NULL); | ||
262 | } | ||
263 | - if (tcg_kick_vcpu_timer && !timer_pending(tcg_kick_vcpu_timer)) { | ||
264 | - timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick()); | ||
265 | + if (rr_kick_vcpu_timer && !timer_pending(rr_kick_vcpu_timer)) { | ||
266 | + timer_mod(rr_kick_vcpu_timer, rr_next_kick_time()); | ||
267 | } | ||
268 | } | ||
269 | |||
270 | -static void stop_tcg_kick_timer(void) | ||
271 | +static void rr_stop_kick_timer(void) | ||
272 | { | ||
273 | - if (tcg_kick_vcpu_timer && timer_pending(tcg_kick_vcpu_timer)) { | ||
274 | - timer_del(tcg_kick_vcpu_timer); | ||
275 | + if (rr_kick_vcpu_timer && timer_pending(rr_kick_vcpu_timer)) { | ||
276 | + timer_del(rr_kick_vcpu_timer); | ||
277 | } | ||
278 | } | ||
279 | |||
280 | -static void qemu_tcg_rr_wait_io_event(void) | ||
281 | +static void rr_wait_io_event(void) | ||
282 | { | ||
283 | CPUState *cpu; | ||
284 | |||
285 | while (all_cpu_threads_idle()) { | ||
286 | - stop_tcg_kick_timer(); | ||
287 | + rr_stop_kick_timer(); | ||
288 | qemu_cond_wait_iothread(first_cpu->halt_cond); | ||
289 | } | ||
290 | |||
291 | - start_tcg_kick_timer(); | ||
292 | + rr_start_kick_timer(); | ||
293 | |||
294 | CPU_FOREACH(cpu) { | ||
295 | qemu_wait_io_event_common(cpu); | ||
296 | @@ -XXX,XX +XXX,XX @@ static void qemu_tcg_rr_wait_io_event(void) | ||
297 | * Destroy any remaining vCPUs which have been unplugged and have | ||
298 | * finished running | ||
299 | */ | ||
300 | -static void deal_with_unplugged_cpus(void) | ||
301 | +static void rr_deal_with_unplugged_cpus(void) | ||
302 | { | ||
303 | CPUState *cpu; | ||
304 | |||
305 | CPU_FOREACH(cpu) { | ||
306 | if (cpu->unplug && !cpu_can_run(cpu)) { | ||
307 | - qemu_tcg_destroy_vcpu(cpu); | ||
308 | + tcg_cpus_destroy(cpu); | ||
309 | break; | ||
310 | } | ||
311 | } | ||
312 | @@ -XXX,XX +XXX,XX @@ static void deal_with_unplugged_cpus(void) | ||
313 | * elsewhere. | ||
314 | */ | ||
315 | |||
316 | -static void *tcg_rr_cpu_thread_fn(void *arg) | ||
317 | +static void *rr_cpu_thread_fn(void *arg) | ||
318 | { | ||
319 | CPUState *cpu = arg; | ||
320 | |||
321 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
322 | } | ||
323 | } | ||
324 | |||
325 | - start_tcg_kick_timer(); | ||
326 | + rr_start_kick_timer(); | ||
327 | |||
328 | cpu = first_cpu; | ||
329 | |||
330 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
331 | * Run the timers here. This is much more efficient than | ||
332 | * waking up the I/O thread and waiting for completion. | ||
333 | */ | ||
334 | - handle_icount_deadline(); | ||
335 | + icount_handle_deadline(); | ||
336 | } | ||
337 | |||
338 | replay_mutex_unlock(); | ||
339 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
340 | |||
341 | while (cpu && cpu_work_list_empty(cpu) && !cpu->exit_request) { | ||
342 | |||
343 | - qatomic_mb_set(&tcg_current_rr_cpu, cpu); | ||
344 | + qatomic_mb_set(&rr_current_cpu, cpu); | ||
345 | current_cpu = cpu; | ||
346 | |||
347 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, | ||
348 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
349 | |||
350 | qemu_mutex_unlock_iothread(); | ||
351 | if (icount_enabled()) { | ||
352 | - prepare_icount_for_run(cpu); | ||
353 | + icount_prepare_for_run(cpu); | ||
354 | } | ||
355 | - r = tcg_cpu_exec(cpu); | ||
356 | + r = tcg_cpus_exec(cpu); | ||
357 | if (icount_enabled()) { | ||
358 | - process_icount_data(cpu); | ||
359 | + icount_process_data(cpu); | ||
360 | } | ||
361 | qemu_mutex_lock_iothread(); | ||
362 | |||
363 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
364 | } /* while (cpu && !cpu->exit_request).. */ | ||
365 | |||
366 | /* Does not need qatomic_mb_set because a spurious wakeup is okay. */ | ||
367 | - qatomic_set(&tcg_current_rr_cpu, NULL); | ||
368 | + qatomic_set(&rr_current_cpu, NULL); | ||
369 | |||
370 | if (cpu && cpu->exit_request) { | ||
371 | qatomic_mb_set(&cpu->exit_request, 0); | ||
372 | @@ -XXX,XX +XXX,XX @@ static void *tcg_rr_cpu_thread_fn(void *arg) | ||
373 | qemu_notify_event(); | ||
374 | } | ||
375 | |||
376 | - qemu_tcg_rr_wait_io_event(); | ||
377 | - deal_with_unplugged_cpus(); | ||
378 | + rr_wait_io_event(); | ||
379 | + rr_deal_with_unplugged_cpus(); | ||
380 | } | ||
381 | |||
382 | rcu_unregister_thread(); | ||
383 | @@ -XXX,XX +XXX,XX @@ void rr_start_vcpu_thread(CPUState *cpu) | ||
384 | /* share a single thread for all cpus with TCG */ | ||
385 | snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "ALL CPUs/TCG"); | ||
386 | qemu_thread_create(cpu->thread, thread_name, | ||
387 | - tcg_rr_cpu_thread_fn, | ||
388 | + rr_cpu_thread_fn, | ||
389 | cpu, QEMU_THREAD_JOINABLE); | ||
390 | |||
391 | single_tcg_halt_cond = cpu->halt_cond; | ||
392 | @@ -XXX,XX +XXX,XX @@ void rr_start_vcpu_thread(CPUState *cpu) | ||
393 | |||
394 | const CpusAccel tcg_cpus_rr = { | ||
395 | .create_vcpu_thread = rr_start_vcpu_thread, | ||
396 | - .kick_vcpu_thread = qemu_cpu_kick_rr_cpus, | ||
397 | + .kick_vcpu_thread = rr_kick_vcpu_thread, | ||
398 | |||
399 | - .handle_interrupt = tcg_handle_interrupt, | ||
400 | + .handle_interrupt = tcg_cpus_handle_interrupt, | ||
401 | }; | ||
402 | diff --git a/accel/tcg/tcg-cpus.c b/accel/tcg/tcg-cpus.c | ||
403 | index XXXXXXX..XXXXXXX 100644 | ||
404 | --- a/accel/tcg/tcg-cpus.c | ||
405 | +++ b/accel/tcg/tcg-cpus.c | ||
406 | @@ -XXX,XX +XXX,XX @@ | ||
407 | |||
408 | /* common functionality among all TCG variants */ | ||
409 | |||
410 | -void qemu_tcg_destroy_vcpu(CPUState *cpu) | ||
411 | +void tcg_cpus_destroy(CPUState *cpu) | ||
412 | { | ||
413 | cpu_thread_signal_destroyed(cpu); | ||
414 | } | ||
415 | |||
416 | -int tcg_cpu_exec(CPUState *cpu) | ||
417 | +int tcg_cpus_exec(CPUState *cpu) | ||
418 | { | ||
419 | int ret; | ||
420 | #ifdef CONFIG_PROFILER | ||
421 | @@ -XXX,XX +XXX,XX @@ int tcg_cpu_exec(CPUState *cpu) | ||
422 | } | ||
423 | |||
424 | /* mask must never be zero, except for A20 change call */ | ||
425 | -void tcg_handle_interrupt(CPUState *cpu, int mask) | ||
426 | +void tcg_cpus_handle_interrupt(CPUState *cpu, int mask) | ||
427 | { | ||
428 | g_assert(qemu_mutex_iothread_locked()); | ||
72 | 429 | ||
73 | -- | 430 | -- |
74 | 2.17.1 | 431 | 2.25.1 |
75 | 432 | ||
76 | 433 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | Rather than rely on cpu->mem_io_pc, pass retaddr down directly. | ||
2 | 1 | ||
3 | Within tb_invalidate_phys_page_range__locked, the is_cpu_write_access | ||
4 | parameter is non-zero exactly when retaddr would be non-zero, so that | ||
5 | is a simple replacement. | ||
6 | |||
7 | Recognize that current_tb_not_found is true only when mem_io_pc | ||
8 | (and now retaddr) are also non-zero, so remove a redundant test. | ||
9 | |||
10 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
11 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
12 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
13 | --- | ||
14 | accel/tcg/translate-all.h | 3 ++- | ||
15 | accel/tcg/cputlb.c | 6 +----- | ||
16 | accel/tcg/translate-all.c | 39 +++++++++++++++++++-------------------- | ||
17 | 3 files changed, 22 insertions(+), 26 deletions(-) | ||
18 | |||
19 | diff --git a/accel/tcg/translate-all.h b/accel/tcg/translate-all.h | ||
20 | index XXXXXXX..XXXXXXX 100644 | ||
21 | --- a/accel/tcg/translate-all.h | ||
22 | +++ b/accel/tcg/translate-all.h | ||
23 | @@ -XXX,XX +XXX,XX @@ struct page_collection *page_collection_lock(tb_page_addr_t start, | ||
24 | tb_page_addr_t end); | ||
25 | void page_collection_unlock(struct page_collection *set); | ||
26 | void tb_invalidate_phys_page_fast(struct page_collection *pages, | ||
27 | - tb_page_addr_t start, int len); | ||
28 | + tb_page_addr_t start, int len, | ||
29 | + uintptr_t retaddr); | ||
30 | void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end); | ||
31 | void tb_check_watchpoint(CPUState *cpu); | ||
32 | |||
33 | diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c | ||
34 | index XXXXXXX..XXXXXXX 100644 | ||
35 | --- a/accel/tcg/cputlb.c | ||
36 | +++ b/accel/tcg/cputlb.c | ||
37 | @@ -XXX,XX +XXX,XX @@ static void notdirty_write(CPUState *cpu, vaddr mem_vaddr, unsigned size, | ||
38 | if (!cpu_physical_memory_get_dirty_flag(ram_addr, DIRTY_MEMORY_CODE)) { | ||
39 | struct page_collection *pages | ||
40 | = page_collection_lock(ram_addr, ram_addr + size); | ||
41 | - | ||
42 | - /* We require mem_io_pc in tb_invalidate_phys_page_range. */ | ||
43 | - cpu->mem_io_pc = retaddr; | ||
44 | - | ||
45 | - tb_invalidate_phys_page_fast(pages, ram_addr, size); | ||
46 | + tb_invalidate_phys_page_fast(pages, ram_addr, size, retaddr); | ||
47 | page_collection_unlock(pages); | ||
48 | } | ||
49 | |||
50 | diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c | ||
51 | index XXXXXXX..XXXXXXX 100644 | ||
52 | --- a/accel/tcg/translate-all.c | ||
53 | +++ b/accel/tcg/translate-all.c | ||
54 | @@ -XXX,XX +XXX,XX @@ static void | ||
55 | tb_invalidate_phys_page_range__locked(struct page_collection *pages, | ||
56 | PageDesc *p, tb_page_addr_t start, | ||
57 | tb_page_addr_t end, | ||
58 | - int is_cpu_write_access) | ||
59 | + uintptr_t retaddr) | ||
60 | { | ||
61 | TranslationBlock *tb; | ||
62 | tb_page_addr_t tb_start, tb_end; | ||
63 | @@ -XXX,XX +XXX,XX @@ tb_invalidate_phys_page_range__locked(struct page_collection *pages, | ||
64 | #ifdef TARGET_HAS_PRECISE_SMC | ||
65 | CPUState *cpu = current_cpu; | ||
66 | CPUArchState *env = NULL; | ||
67 | - int current_tb_not_found = is_cpu_write_access; | ||
68 | + bool current_tb_not_found = retaddr != 0; | ||
69 | + bool current_tb_modified = false; | ||
70 | TranslationBlock *current_tb = NULL; | ||
71 | - int current_tb_modified = 0; | ||
72 | target_ulong current_pc = 0; | ||
73 | target_ulong current_cs_base = 0; | ||
74 | uint32_t current_flags = 0; | ||
75 | @@ -XXX,XX +XXX,XX @@ tb_invalidate_phys_page_range__locked(struct page_collection *pages, | ||
76 | if (!(tb_end <= start || tb_start >= end)) { | ||
77 | #ifdef TARGET_HAS_PRECISE_SMC | ||
78 | if (current_tb_not_found) { | ||
79 | - current_tb_not_found = 0; | ||
80 | - current_tb = NULL; | ||
81 | - if (cpu->mem_io_pc) { | ||
82 | - /* now we have a real cpu fault */ | ||
83 | - current_tb = tcg_tb_lookup(cpu->mem_io_pc); | ||
84 | - } | ||
85 | + current_tb_not_found = false; | ||
86 | + /* now we have a real cpu fault */ | ||
87 | + current_tb = tcg_tb_lookup(retaddr); | ||
88 | } | ||
89 | if (current_tb == tb && | ||
90 | (tb_cflags(current_tb) & CF_COUNT_MASK) != 1) { | ||
91 | - /* If we are modifying the current TB, we must stop | ||
92 | - its execution. We could be more precise by checking | ||
93 | - that the modification is after the current PC, but it | ||
94 | - would require a specialized function to partially | ||
95 | - restore the CPU state */ | ||
96 | - | ||
97 | - current_tb_modified = 1; | ||
98 | - cpu_restore_state_from_tb(cpu, current_tb, | ||
99 | - cpu->mem_io_pc, true); | ||
100 | + /* | ||
101 | + * If we are modifying the current TB, we must stop | ||
102 | + * its execution. We could be more precise by checking | ||
103 | + * that the modification is after the current PC, but it | ||
104 | + * would require a specialized function to partially | ||
105 | + * restore the CPU state. | ||
106 | + */ | ||
107 | + current_tb_modified = true; | ||
108 | + cpu_restore_state_from_tb(cpu, current_tb, retaddr, true); | ||
109 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, | ||
110 | ¤t_flags); | ||
111 | } | ||
112 | @@ -XXX,XX +XXX,XX @@ void tb_invalidate_phys_range(target_ulong start, target_ulong end) | ||
113 | * Call with all @pages in the range [@start, @start + len[ locked. | ||
114 | */ | ||
115 | void tb_invalidate_phys_page_fast(struct page_collection *pages, | ||
116 | - tb_page_addr_t start, int len) | ||
117 | + tb_page_addr_t start, int len, | ||
118 | + uintptr_t retaddr) | ||
119 | { | ||
120 | PageDesc *p; | ||
121 | |||
122 | @@ -XXX,XX +XXX,XX @@ void tb_invalidate_phys_page_fast(struct page_collection *pages, | ||
123 | } | ||
124 | } else { | ||
125 | do_invalidate: | ||
126 | - tb_invalidate_phys_page_range__locked(pages, p, start, start + len, 1); | ||
127 | + tb_invalidate_phys_page_range__locked(pages, p, start, start + len, | ||
128 | + retaddr); | ||
129 | } | ||
130 | } | ||
131 | #else | ||
132 | -- | ||
133 | 2.17.1 | ||
134 | |||
135 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | Fixes the previous TLB_WATCHPOINT patches because we are currently | ||
2 | failing to set cpu->mem_io_pc with the call to cpu_check_watchpoint. | ||
3 | Pass down the retaddr directly because it's readily available. | ||
4 | 1 | ||
5 | Fixes: 50b107c5d61 | ||
6 | Reviewed-by: Alex Bennée <alex.bennee@linaro.org> | ||
7 | Reviewed-by: David Hildenbrand <david@redhat.com> | ||
8 | Signed-off-by: Richard Henderson <richard.henderson@linaro.org> | ||
9 | --- | ||
10 | accel/tcg/translate-all.h | 2 +- | ||
11 | accel/tcg/translate-all.c | 6 +++--- | ||
12 | exec.c | 2 +- | ||
13 | 3 files changed, 5 insertions(+), 5 deletions(-) | ||
14 | |||
15 | diff --git a/accel/tcg/translate-all.h b/accel/tcg/translate-all.h | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/accel/tcg/translate-all.h | ||
18 | +++ b/accel/tcg/translate-all.h | ||
19 | @@ -XXX,XX +XXX,XX @@ void tb_invalidate_phys_page_fast(struct page_collection *pages, | ||
20 | tb_page_addr_t start, int len, | ||
21 | uintptr_t retaddr); | ||
22 | void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end); | ||
23 | -void tb_check_watchpoint(CPUState *cpu); | ||
24 | +void tb_check_watchpoint(CPUState *cpu, uintptr_t retaddr); | ||
25 | |||
26 | #ifdef CONFIG_USER_ONLY | ||
27 | int page_unprotect(target_ulong address, uintptr_t pc); | ||
28 | diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c | ||
29 | index XXXXXXX..XXXXXXX 100644 | ||
30 | --- a/accel/tcg/translate-all.c | ||
31 | +++ b/accel/tcg/translate-all.c | ||
32 | @@ -XXX,XX +XXX,XX @@ static bool tb_invalidate_phys_page(tb_page_addr_t addr, uintptr_t pc) | ||
33 | #endif | ||
34 | |||
35 | /* user-mode: call with mmap_lock held */ | ||
36 | -void tb_check_watchpoint(CPUState *cpu) | ||
37 | +void tb_check_watchpoint(CPUState *cpu, uintptr_t retaddr) | ||
38 | { | ||
39 | TranslationBlock *tb; | ||
40 | |||
41 | assert_memory_lock(); | ||
42 | |||
43 | - tb = tcg_tb_lookup(cpu->mem_io_pc); | ||
44 | + tb = tcg_tb_lookup(retaddr); | ||
45 | if (tb) { | ||
46 | /* We can use retranslation to find the PC. */ | ||
47 | - cpu_restore_state_from_tb(cpu, tb, cpu->mem_io_pc, true); | ||
48 | + cpu_restore_state_from_tb(cpu, tb, retaddr, true); | ||
49 | tb_phys_invalidate(tb, -1); | ||
50 | } else { | ||
51 | /* The exception probably happened in a helper. The CPU state should | ||
52 | diff --git a/exec.c b/exec.c | ||
53 | index XXXXXXX..XXXXXXX 100644 | ||
54 | --- a/exec.c | ||
55 | +++ b/exec.c | ||
56 | @@ -XXX,XX +XXX,XX @@ void cpu_check_watchpoint(CPUState *cpu, vaddr addr, vaddr len, | ||
57 | cpu->watchpoint_hit = wp; | ||
58 | |||
59 | mmap_lock(); | ||
60 | - tb_check_watchpoint(cpu); | ||
61 | + tb_check_watchpoint(cpu, ra); | ||
62 | if (wp->flags & BP_STOP_BEFORE_ACCESS) { | ||
63 | cpu->exception_index = EXCP_DEBUG; | ||
64 | mmap_unlock(); | ||
65 | -- | ||
66 | 2.17.1 | ||
67 | |||
68 | diff view generated by jsdifflib |