2013-02-16 15:13:11 +01:00
|
|
|
From 431480a9ea14835d9cff4c5564e90a36595f3af3 Mon Sep 17 00:00:00 2001
|
2012-07-11 16:55:34 +02:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
|
|
|
Date: Wed, 11 Jul 2012 16:47:42 +0200
|
|
|
|
Subject: [PATCH] linux-user: lock tb flushing too
|
2013-02-10 19:32:29 +01:00
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
2012-07-11 16:55:34 +02:00
|
|
|
|
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
2013-02-10 19:32:29 +01:00
|
|
|
[AF: Rebased onto exec.c/translate-all.c split for 1.4]
|
|
|
|
Signed-off-by: Andreas Färber <afaerber@suse.de>
|
2012-07-11 16:55:34 +02:00
|
|
|
---
|
2013-02-10 19:32:29 +01:00
|
|
|
translate-all.c | 20 ++++++++++++++++++--
|
|
|
|
1 Datei geändert, 18 Zeilen hinzugefügt(+), 2 Zeilen entfernt(-)
|
2012-07-11 16:55:34 +02:00
|
|
|
|
2013-02-10 19:32:29 +01:00
|
|
|
diff --git a/translate-all.c b/translate-all.c
|
|
|
|
index 0d6c5a9..1066017 100644
|
|
|
|
--- a/translate-all.c
|
|
|
|
+++ b/translate-all.c
|
|
|
|
@@ -625,18 +625,22 @@ static TranslationBlock *tb_alloc(target_ulong pc)
|
2012-07-11 16:55:34 +02:00
|
|
|
{
|
|
|
|
TranslationBlock *tb;
|
|
|
|
|
|
|
|
+ tcg_lock();
|
|
|
|
if (nb_tbs >= code_gen_max_blocks ||
|
2013-02-10 19:32:29 +01:00
|
|
|
(code_gen_ptr - code_gen_buffer) >= code_gen_buffer_max_size) {
|
2012-07-11 16:55:34 +02:00
|
|
|
+ tcg_unlock();
|
|
|
|
return NULL;
|
2013-02-10 19:32:29 +01:00
|
|
|
}
|
2012-07-11 16:55:34 +02:00
|
|
|
tb = &tbs[nb_tbs++];
|
|
|
|
tb->pc = pc;
|
|
|
|
tb->cflags = 0;
|
|
|
|
+ tcg_unlock();
|
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tb_free(TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
+ tcg_lock();
|
|
|
|
/* In practice this is mostly used for single use temporary TB
|
|
|
|
Ignore the hard cases and just back up if this TB happens to
|
|
|
|
be the last one generated. */
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -644,6 +648,7 @@ void tb_free(TranslationBlock *tb)
|
2012-07-11 16:55:34 +02:00
|
|
|
code_gen_ptr = tb->tc_ptr;
|
|
|
|
nb_tbs--;
|
|
|
|
}
|
|
|
|
+ tcg_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void invalidate_page_bitmap(PageDesc *p)
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -700,6 +705,7 @@ void tb_flush(CPUArchState *env1)
|
2012-07-11 16:55:34 +02:00
|
|
|
nb_tbs, nb_tbs > 0 ?
|
|
|
|
((unsigned long)(code_gen_ptr - code_gen_buffer)) / nb_tbs : 0);
|
|
|
|
#endif
|
|
|
|
+ tcg_lock();
|
2013-02-10 19:32:29 +01:00
|
|
|
if ((unsigned long)(code_gen_ptr - code_gen_buffer)
|
|
|
|
> code_gen_buffer_size) {
|
2012-07-11 16:55:34 +02:00
|
|
|
cpu_abort(env1, "Internal error: code buffer overflow\n");
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -717,6 +723,7 @@ void tb_flush(CPUArchState *env1)
|
2012-07-11 16:55:34 +02:00
|
|
|
/* XXX: flush processor icache at this point if cache flush is
|
|
|
|
expensive */
|
|
|
|
tb_flush_count++;
|
|
|
|
+ tcg_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_TB_CHECK
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -1020,8 +1027,10 @@ void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end,
|
2012-07-11 16:55:34 +02:00
|
|
|
int current_flags = 0;
|
|
|
|
#endif /* TARGET_HAS_PRECISE_SMC */
|
|
|
|
|
|
|
|
+ tcg_lock();
|
|
|
|
p = page_find(start >> TARGET_PAGE_BITS);
|
2013-02-10 19:32:29 +01:00
|
|
|
if (!p) {
|
2012-07-11 16:55:34 +02:00
|
|
|
+ tcg_unlock();
|
|
|
|
return;
|
2013-02-10 19:32:29 +01:00
|
|
|
}
|
2012-07-11 16:55:34 +02:00
|
|
|
if (!p->code_bitmap &&
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -1109,6 +1118,7 @@ void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end,
|
2012-07-11 16:55:34 +02:00
|
|
|
cpu_resume_from_signal(env, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
+ tcg_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* len must be <= 8 and start must be a multiple of len */
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -1323,13 +1333,16 @@ static TranslationBlock *tb_find_pc(uintptr_t tc_ptr)
|
2012-07-11 16:55:34 +02:00
|
|
|
{
|
|
|
|
int m_min, m_max, m;
|
|
|
|
uintptr_t v;
|
|
|
|
- TranslationBlock *tb;
|
|
|
|
+ TranslationBlock *tb, *r;
|
|
|
|
|
|
|
|
+ tcg_lock();
|
2013-02-10 19:32:29 +01:00
|
|
|
if (nb_tbs <= 0) {
|
2012-07-11 16:55:34 +02:00
|
|
|
+ tcg_unlock();
|
|
|
|
return NULL;
|
2013-02-10 19:32:29 +01:00
|
|
|
}
|
2012-07-11 16:55:34 +02:00
|
|
|
if (tc_ptr < (uintptr_t)code_gen_buffer ||
|
|
|
|
tc_ptr >= (uintptr_t)code_gen_ptr) {
|
|
|
|
+ tcg_unlock();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* binary search (cf Knuth) */
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -1340,6 +1353,7 @@ static TranslationBlock *tb_find_pc(uintptr_t tc_ptr)
|
2012-07-11 16:55:34 +02:00
|
|
|
tb = &tbs[m];
|
|
|
|
v = (uintptr_t)tb->tc_ptr;
|
2013-02-10 19:32:29 +01:00
|
|
|
if (v == tc_ptr) {
|
2012-07-11 16:55:34 +02:00
|
|
|
+ tcg_unlock();
|
|
|
|
return tb;
|
2013-02-10 19:32:29 +01:00
|
|
|
} else if (tc_ptr < v) {
|
2012-07-11 16:55:34 +02:00
|
|
|
m_max = m - 1;
|
2013-02-10 19:32:29 +01:00
|
|
|
@@ -1347,7 +1361,9 @@ static TranslationBlock *tb_find_pc(uintptr_t tc_ptr)
|
2012-07-11 16:55:34 +02:00
|
|
|
m_min = m + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
- return &tbs[m_max];
|
|
|
|
+ r = &tbs[m_max];
|
|
|
|
+ tcg_unlock();
|
|
|
|
+ return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tb_reset_jump_recursive(TranslationBlock *tb);
|