qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] target-xtensa: fix cross-page jumps/calls at the end of TB
@ 2014-05-20 11:17 Max Filippov
  2014-05-20 11:27 ` Max Filippov
  0 siblings, 1 reply; 2+ messages in thread
From: Max Filippov @ 2014-05-20 11:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Max Filippov, qemu-stable

Move cross-page jump check to gen_jump_slot and use tb->pc instead of
dc->pc to check for cross-page jumps.
When TB ends at the page boundary dc->pc points to the next page
allowing chaining to TBs in it.

Cc: qemu-stable@nongnu.org
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
---
 target-xtensa/translate.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/target-xtensa/translate.c b/target-xtensa/translate.c
index 764cee9..d93d0a3 100644
--- a/target-xtensa/translate.c
+++ b/target-xtensa/translate.c
@@ -401,7 +401,7 @@ static void gen_jump_slot(DisasContext *dc, TCGv dest, int slot)
     if (dc->singlestep_enabled) {
         gen_exception(dc, EXCP_DEBUG);
     } else {
-        if (slot >= 0) {
+        if (slot >= 0 && ((dc->tb->pc ^ dest) & TARGET_PAGE_MASK) == 0) {
             tcg_gen_goto_tb(slot);
             tcg_gen_exit_tb((uintptr_t)dc->tb + slot);
         } else {
@@ -419,9 +419,6 @@ static void gen_jump(DisasContext *dc, TCGv dest)
 static void gen_jumpi(DisasContext *dc, uint32_t dest, int slot)
 {
     TCGv_i32 tmp = tcg_const_i32(dest);
-    if (((dc->pc ^ dest) & TARGET_PAGE_MASK) != 0) {
-        slot = -1;
-    }
     gen_jump_slot(dc, tmp, slot);
     tcg_temp_free(tmp);
 }
@@ -447,9 +444,6 @@ static void gen_callw(DisasContext *dc, int callinc, TCGv_i32 dest)
 static void gen_callwi(DisasContext *dc, int callinc, uint32_t dest, int slot)
 {
     TCGv_i32 tmp = tcg_const_i32(dest);
-    if (((dc->pc ^ dest) & TARGET_PAGE_MASK) != 0) {
-        slot = -1;
-    }
     gen_callw_slot(dc, callinc, tmp, slot);
     tcg_temp_free(tmp);
 }
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] target-xtensa: fix cross-page jumps/calls at the end of TB
  2014-05-20 11:17 [Qemu-devel] [PATCH] target-xtensa: fix cross-page jumps/calls at the end of TB Max Filippov
@ 2014-05-20 11:27 ` Max Filippov
  0 siblings, 0 replies; 2+ messages in thread
From: Max Filippov @ 2014-05-20 11:27 UTC (permalink / raw)
  To: qemu-devel; +Cc: Max Filippov, qemu-stable

On Tue, May 20, 2014 at 3:17 PM, Max Filippov <jcmvbkbc@gmail.com> wrote:
> Move cross-page jump check to gen_jump_slot and use tb->pc instead of
> dc->pc to check for cross-page jumps.
> When TB ends at the page boundary dc->pc points to the next page
> allowing chaining to TBs in it.
>
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
> ---
>  target-xtensa/translate.c | 8 +-------
>  1 file changed, 1 insertion(+), 7 deletions(-)
> diff --git a/target-xtensa/translate.c b/target-xtensa/translate.c
> index 764cee9..d93d0a3 100644
> --- a/target-xtensa/translate.c
> +++ b/target-xtensa/translate.c
> @@ -401,7 +401,7 @@ static void gen_jump_slot(DisasContext *dc, TCGv dest, int slot)
>      if (dc->singlestep_enabled) {
>          gen_exception(dc, EXCP_DEBUG);
>      } else {
> -        if (slot >= 0) {
> +        if (slot >= 0 && ((dc->tb->pc ^ dest) & TARGET_PAGE_MASK) == 0) {

Ugh, complete nonsense, please ignore. ):

-- 
Thanks.
-- Max

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-20 11:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-20 11:17 [Qemu-devel] [PATCH] target-xtensa: fix cross-page jumps/calls at the end of TB Max Filippov
2014-05-20 11:27 ` Max Filippov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).