All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
@ 2020-05-19 16:21 Ahmed Karaman
  2020-05-19 16:21 ` [PATCH 1/2] target/hppa: Check page crossings in use_goto_tb() only in system mode Ahmed Karaman
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Ahmed Karaman @ 2020-05-19 16:21 UTC (permalink / raw)
  To: qemu-devel, rth, ysato
  Cc: Ahmed Karaman, aleksandar.qemu.devel, alex.bennee, stefanha

Greetings to all QEMU developers!

First of all, I want to say I'm really honored that I will be working
with you on the Google Summer of Code project "TCG Continuous
Benchmarking" this June, July and August.

This is my first set of patches sent to the QEMU mailing list, that
came up as a result of some preliminary exploration for this project.

***

Dear Mr. Richard,

During some performance experiments that Mr. Aleksandar Markovic an I
were doing recently, we discovered a performance drop in the the hppa
target user mode after the commit below:

https://git.qemu.org/?p=qemu.git;a=commit;h=f3b423ec6e

The issue arose because the page crossings check in use_goto_tb()
function is required only in the system mode. Checking it in both modes
causes an unnecessary overhead in the user mode.

The issue can be solved by simply checking for the page crossings only
in the system mode. By doing so, the runtime of the target decreased by
up to 6.93% on some benchmarks that we tested against.

The patch 1/2 proposes such solution for the mentioned problem.

***

Dear Mr. Yoshinori,

For the rx target, the problem is almost the opposite to one described
above for the hppa target problem. The page crossings check in rx's
use_goto_tb() was missing, so I included it to be checked, and, off
course, in the system mode only. Just for the sake of clarity, I added
some other relatively minor improvements to that function. Without this
patch, you may experience intermittent and hard-to-debug bugs while
running rx target in system-mode.

The patch 2/2 proposes the solution for the problem I described.

***

The approach to the "TCG Continuous Benchmarking" project adopted by
Mr. Aleksandar and I can by called "tool-agnostic". This means that we
will not favor any single performance-measurement-related tool, but that
we will consider a wide range of such tools, examine the details of
functionalities they provide, and use the one that fits a given
situation the most.

For performance measurements related to patch 1/2, we utilized a tool
called Valgrind (more precisely, its subtool called Callgrind) - we
measured the performance before and after the fix using it. The reason
for such choice is that this method gave use the most stable results -
the results between subsequent measurements of an identical experiment
had very little differences. That quality was not present in other
tools, or, at least, was not that good for other tools.

We plan to continue such pragmatic approach to tools choice - rather
than fix the preferred tool in advance at the beginning of the project.

For starters, we will present to you a comparison between Perf and
Valgrind/Callgrind tools. To know more on the setup, usage, pros and
cons of each of these tools, keep an eye on the mailing list for a
detailed post that will be sent by myself very soon. It will cover the
basics of what you should know to start integrating these tools in your
development workflow.

Best regards,
Ahmed Karaman

Ahmed Karaman (2):
  target/hppa: Check page crossings in use_goto_tb() only in system mode
  target/rx: Check for page crossings in use_goto_tb()

 target/hppa/translate.c | 18 ++++++++++++++----
 target/rx/translate.c   | 12 ++++++++----
 2 files changed, 22 insertions(+), 8 deletions(-)

-- 
2.17.1



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

* [PATCH 1/2] target/hppa: Check page crossings in use_goto_tb() only in system mode
  2020-05-19 16:21 [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Ahmed Karaman
@ 2020-05-19 16:21 ` Ahmed Karaman
  2020-05-19 16:21 ` [PATCH 2/2] target/rx: Check for page crossings in use_goto_tb() Ahmed Karaman
  2020-05-19 18:01 ` [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Richard Henderson
  2 siblings, 0 replies; 14+ messages in thread
From: Ahmed Karaman @ 2020-05-19 16:21 UTC (permalink / raw)
  To: qemu-devel, rth, ysato
  Cc: Ahmed Karaman, aleksandar.qemu.devel, alex.bennee, stefanha

Restrict page crossing check to system mode only. By doing this, the
hppa target performance in user mode improves by up to 6.93%. Of course,
the amount of performance improvement will vary depending on the nature
of the hppa executable being emulated by QEMU.

While doing this correction, this patch adds some more verbose
comments in use_goto_tb() as well.

Signed-off-by: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
---
 target/hppa/translate.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/target/hppa/translate.c b/target/hppa/translate.c
index 52d7bea1ea..7c9180cd76 100644
--- a/target/hppa/translate.c
+++ b/target/hppa/translate.c
@@ -817,10 +817,20 @@ static bool gen_illegal(DisasContext *ctx)
 
 static bool use_goto_tb(DisasContext *ctx, target_ureg dest)
 {
-    /* Suppress goto_tb for page crossing, IO, or single-steping.  */
-    return !(((ctx->base.pc_first ^ dest) & TARGET_PAGE_MASK)
-             || (tb_cflags(ctx->base.tb) & CF_LAST_IO)
-             || ctx->base.singlestep_enabled);
+    /* No direct translation block linking with CF_LAST_IO or in singlestep */
+    if ((tb_cflags(ctx->base.tb) & CF_LAST_IO) ||
+        ctx->base.singlestep_enabled) {
+        return false;
+    }
+
+#ifndef CONFIG_USER_ONLY
+    /* Directly link translation blocks only from inside the same guest page */
+    if ((ctx->base.pc_first ^ dest) & TARGET_PAGE_MASK) {
+        return false;
+    }
+#endif
+
+    return true;
 }
 
 /* If the next insn is to be nullified, and it's on the same page,
-- 
2.17.1



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

* [PATCH 2/2] target/rx: Check for page crossings in use_goto_tb()
  2020-05-19 16:21 [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Ahmed Karaman
  2020-05-19 16:21 ` [PATCH 1/2] target/hppa: Check page crossings in use_goto_tb() only in system mode Ahmed Karaman
@ 2020-05-19 16:21 ` Ahmed Karaman
  2020-05-19 18:01 ` [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Richard Henderson
  2 siblings, 0 replies; 14+ messages in thread
From: Ahmed Karaman @ 2020-05-19 16:21 UTC (permalink / raw)
  To: qemu-devel, rth, ysato
  Cc: Ahmed Karaman, aleksandar.qemu.devel, alex.bennee, stefanha

Add the page crossings check when using system mode. If this
fix is not applied, a number of bugs may occasionally occur during
target rx system mode emulation.

Rename parameter dc of type DisasContext* to the more common
name ctx, to keep consistency with other targets.

Signed-off-by: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
---
 target/rx/translate.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/target/rx/translate.c b/target/rx/translate.c
index 61e86653a4..77497ddbfb 100644
--- a/target/rx/translate.c
+++ b/target/rx/translate.c
@@ -143,13 +143,17 @@ void rx_cpu_dump_state(CPUState *cs, FILE *f, int flags)
     }
 }
 
-static bool use_goto_tb(DisasContext *dc, target_ulong dest)
+static bool use_goto_tb(DisasContext *ctx, target_ulong dest)
 {
-    if (unlikely(dc->base.singlestep_enabled)) {
+    if (unlikely(ctx->base.singlestep_enabled)) {
         return false;
-    } else {
-        return true;
     }
+
+#ifndef CONFIG_USER_ONLY
+    return (ctx->base.tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
+#else
+    return true;
+#endif
 }
 
 static void gen_goto_tb(DisasContext *dc, int n, target_ulong dest)
-- 
2.17.1



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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-19 16:21 [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Ahmed Karaman
  2020-05-19 16:21 ` [PATCH 1/2] target/hppa: Check page crossings in use_goto_tb() only in system mode Ahmed Karaman
  2020-05-19 16:21 ` [PATCH 2/2] target/rx: Check for page crossings in use_goto_tb() Ahmed Karaman
@ 2020-05-19 18:01 ` Richard Henderson
  2020-05-19 18:38   ` Alex Bennée
  2020-05-21 11:32   ` Ahmed Karaman
  2 siblings, 2 replies; 14+ messages in thread
From: Richard Henderson @ 2020-05-19 18:01 UTC (permalink / raw)
  To: Ahmed Karaman, qemu-devel, rth, ysato
  Cc: aleksandar.qemu.devel, alex.bennee, stefanha

On 5/19/20 9:21 AM, Ahmed Karaman wrote:
> The issue arose because the page crossings check in use_goto_tb()
> function is required only in the system mode. Checking it in both modes
> causes an unnecessary overhead in the user mode.

It is not only required in system mode.

You can see failures in user-mode if you modify executable pages, or change
their permissions with mmap.  Such as if the guest program contains a JIT.


r~


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-19 18:01 ` [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Richard Henderson
@ 2020-05-19 18:38   ` Alex Bennée
  2020-05-19 18:51     ` Richard Henderson
  2020-05-21 11:32   ` Ahmed Karaman
  1 sibling, 1 reply; 14+ messages in thread
From: Alex Bennée @ 2020-05-19 18:38 UTC (permalink / raw)
  To: Richard Henderson
  Cc: ysato, qemu-devel, Ahmed Karaman, aleksandar.qemu.devel, stefanha, rth


Richard Henderson <richard.henderson@linaro.org> writes:

> On 5/19/20 9:21 AM, Ahmed Karaman wrote:
>> The issue arose because the page crossings check in use_goto_tb()
>> function is required only in the system mode. Checking it in both modes
>> causes an unnecessary overhead in the user mode.
>
> It is not only required in system mode.
>
> You can see failures in user-mode if you modify executable pages, or change
> their permissions with mmap.  Such as if the guest program contains a
> JIT.

If we kept better track couldn't we just tb_flush() if a new +x region
gets mmaped? I guess that would be sub-optimal compared to having a
translation cache per mmap region.

-- 
Alex Bennée


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-19 18:38   ` Alex Bennée
@ 2020-05-19 18:51     ` Richard Henderson
  0 siblings, 0 replies; 14+ messages in thread
From: Richard Henderson @ 2020-05-19 18:51 UTC (permalink / raw)
  To: Alex Bennée
  Cc: ysato, qemu-devel, Ahmed Karaman, aleksandar.qemu.devel, stefanha, rth

On 5/19/20 11:38 AM, Alex Bennée wrote:
> 
> Richard Henderson <richard.henderson@linaro.org> writes:
> 
>> On 5/19/20 9:21 AM, Ahmed Karaman wrote:
>>> The issue arose because the page crossings check in use_goto_tb()
>>> function is required only in the system mode. Checking it in both modes
>>> causes an unnecessary overhead in the user mode.
>>
>> It is not only required in system mode.
>>
>> You can see failures in user-mode if you modify executable pages, or change
>> their permissions with mmap.  Such as if the guest program contains a
>> JIT.
> 
> If we kept better track couldn't we just tb_flush() if a new +x region
> gets mmaped? I guess that would be sub-optimal compared to having a
> translation cache per mmap region.
> 

Yes, this could definitely be improved.  Noticing changes to PROT_EXEC via
mprotect, for one.


r~


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-19 18:01 ` [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Richard Henderson
  2020-05-19 18:38   ` Alex Bennée
@ 2020-05-21 11:32   ` Ahmed Karaman
  2020-05-22  3:12     ` Richard Henderson
  1 sibling, 1 reply; 14+ messages in thread
From: Ahmed Karaman @ 2020-05-21 11:32 UTC (permalink / raw)
  To: Richard Henderson, QEMU Developers, rth, ysato
  Cc: Aleksandar Markovic, Alex Bennée, stefanha

On Tue, May 19, 2020 at 8:01 PM Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> On 5/19/20 9:21 AM, Ahmed Karaman wrote:
> > The issue arose because the page crossings check in use_goto_tb()
> > function is required only in the system mode. Checking it in both
> > modes causes an unnecessary overhead in the user mode.
>
> It is not only required in system mode.
>
> You can see failures in user-mode if you modify executable pages, or
> change their permissions with mmap.  Such as if the guest program
> contains a JIT.
>
>
> r~

Hi Mr. Richard,

I've checked how the use_goto_tb() function is implemented in other
targets, and it appears that they do the page crossings check in the
system mode only.

Below is an example from the arm64 target:
-----------------------------------------------------------------------
static inline bool use_goto_tb(DisasContext *s, int n, uint64_t dest)
{
  /* No direct tb linking with singlestep (either QEMU's or the ARM
   * debug architecture kind) or deterministic io
   */
  if (s->base.singlestep_enabled || s->ss_active ||
    (tb_cflags(s->base.tb) & CF_LAST_IO)) {
    return false;
  }

#ifndef CONFIG_USER_ONLY
  /* Only link tbs from inside the same guest page */
  if ((s->base.tb->pc & TARGET_PAGE_MASK)!=(dest & TARGET_PAGE_MASK)) {
    return false;
  }
#endif

  return true;
}
-----------------------------------------------------------------------
Please let me know what you think. Does this mean that there is a bug
in this function for the other targets?
That we have to do the page crossings check in both modes to avoid the
user-mode failures that you have mentioned above?

Regards,
Ahmed Karaman


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-21 11:32   ` Ahmed Karaman
@ 2020-05-22  3:12     ` Richard Henderson
  2020-05-25 18:39       ` Aleksandar Markovic
  0 siblings, 1 reply; 14+ messages in thread
From: Richard Henderson @ 2020-05-22  3:12 UTC (permalink / raw)
  To: Ahmed Karaman, QEMU Developers, rth, ysato
  Cc: Aleksandar Markovic, Alex Bennée, stefanha

On 5/21/20 4:32 AM, Ahmed Karaman wrote:
> Does this mean that there is a bug
> in this function for the other targets?

Yes, I think so.

> That we have to do the page crossings check in both modes to avoid the
> user-mode failures that you have mentioned above?

Well, that or we need to fix linux-user/mmap.c to do all the invalidations
required.


r~



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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-22  3:12     ` Richard Henderson
@ 2020-05-25 18:39       ` Aleksandar Markovic
  2020-05-26 14:14         ` Aleksandar Markovic
  0 siblings, 1 reply; 14+ messages in thread
From: Aleksandar Markovic @ 2020-05-25 18:39 UTC (permalink / raw)
  To: Richard Henderson
  Cc: Yoshinori Sato, QEMU Developers, Laurent Vivier, Ahmed Karaman,
	Stefan Hajnoczi, Alex Bennée, Richard Henderson

пет, 22. мај 2020. у 05:12 Richard Henderson
<richard.henderson@linaro.org> је написао/ла:
>
> On 5/21/20 4:32 AM, Ahmed Karaman wrote:
> > Does this mean that there is a bug
> > in this function for the other targets?
>
> Yes, I think so.
>
> > That we have to do the page crossings check in both modes to avoid the
> > user-mode failures that you have mentioned above?
>
> Well, that or we need to fix linux-user/mmap.c to do all the invalidations
> required.
>

Hi, Mr. Richard, :)

Many thanks for diagnosis, and, more than this, presenting two
alternatives for resolution!

That mmap()... It has been giving us the hardest time since forever,
and it looks it continues to torture us.

It looks we are now between a rock and a hard place. I slightly prefer
the later (fixing mmap.c) alternative, just from the gut feeling that
it is better to fix the problem at its source, rather than to apply
(easy, but possibly performance-wise costly) band-aid to some later
consequence.

But it seem to me that this is as if I say I choose Charybdis, between
Scylla and Charybdis. We also risk jumping out of the frying pan into
the fire.

Adding Laurent, since this is, in essence, a linux-user issue.

If nobody objects, I will instruct Ahmed to file a bug in QEMU Bugzilla.

Wishing to improve the performance, we found the hard bug... eh...

Thanks again to Richard,

Aleksandar

>
> r~
>


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-25 18:39       ` Aleksandar Markovic
@ 2020-05-26 14:14         ` Aleksandar Markovic
  2020-05-26 16:08           ` Ahmed Karaman
  0 siblings, 1 reply; 14+ messages in thread
From: Aleksandar Markovic @ 2020-05-26 14:14 UTC (permalink / raw)
  To: Richard Henderson
  Cc: Yoshinori Sato, QEMU Developers, Laurent Vivier, Ahmed Karaman,
	Stefan Hajnoczi, Alex Bennée, Richard Henderson

[-- Attachment #1: Type: text/plain, Size: 382 bytes --]

> If nobody objects, I will instruct Ahmed to file a bug in QEMU Bugzilla.
>

Ahmed, please follow the instructions on this page: How to report a QEMU bug
<https://www.qemu.org/contribute/report-a-bug/> and file the bug related to
the discussion, to the best of your abilities, if possible, today.

This can be viewed as a part of your community bonding period.

Thanks,
Aleksandar

[-- Attachment #2: Type: text/html, Size: 523 bytes --]

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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-26 14:14         ` Aleksandar Markovic
@ 2020-05-26 16:08           ` Ahmed Karaman
  2020-05-26 16:29             ` Aleksandar Markovic
  0 siblings, 1 reply; 14+ messages in thread
From: Ahmed Karaman @ 2020-05-26 16:08 UTC (permalink / raw)
  To: Aleksandar Markovic
  Cc: Yoshinori Sato, Richard Henderson, QEMU Developers,
	Laurent Vivier, Stefan Hajnoczi, Alex Bennée,
	Richard Henderson

On Tue, May 26, 2020 at 4:14 PM Aleksandar Markovic
<aleksandar.qemu.devel@gmail.com> wrote:
> Ahmed, please follow the instructions on this page: How to report a QEMU bug and file the bug related to the discussion, to the best of your abilities, if possible, today.

Please find the link to the bug below:
https://bugs.launchpad.net/qemu/+bug/1880722


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-26 16:08           ` Ahmed Karaman
@ 2020-05-26 16:29             ` Aleksandar Markovic
  2020-05-26 16:45               ` Aleksandar Markovic
  0 siblings, 1 reply; 14+ messages in thread
From: Aleksandar Markovic @ 2020-05-26 16:29 UTC (permalink / raw)
  To: Ahmed Karaman
  Cc: Yoshinori Sato, Richard Henderson, QEMU Developers,
	Laurent Vivier, Stefan Hajnoczi, Alex Bennée,
	Richard Henderson

уто, 26. мај 2020. у 18:08 Ahmed Karaman
<ahmedkhaledkaraman@gmail.com> је написао/ла:
>
> On Tue, May 26, 2020 at 4:14 PM Aleksandar Markovic
> <aleksandar.qemu.devel@gmail.com> wrote:
> > Ahmed, please follow the instructions on this page: How to report a QEMU bug and file the bug related to the discussion, to the best of your abilities, if possible, today.
>
> Please find the link to the bug below:
> https://bugs.launchpad.net/qemu/+bug/1880722

I think your last sentence in the bug report is not entirely correct.
It is not known what would be performance results in case of
correcting mmap.c. So, if possible, and unless Richard or someone else
disagrees, please change that last sentence to: "By doing so, a better
performance results could be achieved, compared to the case of the
workaround described above."

Also, please add the tag "linux-user".

Yours,
Aleksandar


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-26 16:29             ` Aleksandar Markovic
@ 2020-05-26 16:45               ` Aleksandar Markovic
  2020-05-26 17:38                 ` Aleksandar Markovic
  0 siblings, 1 reply; 14+ messages in thread
From: Aleksandar Markovic @ 2020-05-26 16:45 UTC (permalink / raw)
  To: Ahmed Karaman
  Cc: Yoshinori Sato, Richard Henderson, QEMU Developers,
	Laurent Vivier, Stefan Hajnoczi, Alex Bennée,
	Richard Henderson

Mr. Ahmed,

The title "Changing executable page permissions with mmap causes
user-mode failures", I know you paraphrased one of Richard's
responses, but you picked up those pieces that don't convey the
complete, larger, picture. So, the better, more inclusive, and much
clearer title would be "Problems related to checking page crossing in
use_goto_tb()"

Yours,
Mr. Aleksandar

уто, 26. мај 2020. у 18:29 Aleksandar Markovic
<aleksandar.qemu.devel@gmail.com> је написао/ла:
>
> уто, 26. мај 2020. у 18:08 Ahmed Karaman
> <ahmedkhaledkaraman@gmail.com> је написао/ла:
> >
> > On Tue, May 26, 2020 at 4:14 PM Aleksandar Markovic
> > <aleksandar.qemu.devel@gmail.com> wrote:
> > > Ahmed, please follow the instructions on this page: How to report a QEMU bug and file the bug related to the discussion, to the best of your abilities, if possible, today.
> >
> > Please find the link to the bug below:
> > https://bugs.launchpad.net/qemu/+bug/1880722
>
> I think your last sentence in the bug report is not entirely correct.
> It is not known what would be performance results in case of
> correcting mmap.c. So, if possible, and unless Richard or someone else
> disagrees, please change that last sentence to: "By doing so, a better
> performance results could be achieved, compared to the case of the
> workaround described above."
>
> Also, please add the tag "linux-user".
>
> Yours,
> Aleksandar


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

* Re: [PATCH 0/2] Update use_goto_tb() in hppa and rx targets
  2020-05-26 16:45               ` Aleksandar Markovic
@ 2020-05-26 17:38                 ` Aleksandar Markovic
  0 siblings, 0 replies; 14+ messages in thread
From: Aleksandar Markovic @ 2020-05-26 17:38 UTC (permalink / raw)
  To: Ahmed Karaman
  Cc: Yoshinori Sato, Richard Henderson, QEMU Developers,
	Laurent Vivier, Stefan Hajnoczi, Alex Bennée,
	Richard Henderson

> >
> > I think your last sentence in the bug report is not entirely correct.
> > It is not known what would be performance results in case of
> > correcting mmap.c. So, if possible, and unless Richard or someone else
> > disagrees, please change that last sentence to: "By doing so, a better
> > performance results could be achieved, compared to the case of the
> > workaround described above."
> >
> > Also, please add the tag "linux-user".
> >

Ahmed, since rx target supports system only mode at the moment, they
must include page crossing check in use_goto_tb(), which is missing
right now. So, since the rx bug is of a little bit of different
nature, please file another bug for rx target only - they have the bug
in system mode too, as opposed to other targets. Their fix should and
could be applied independently on any user-mode modifications for any
other target.

Sincerely,
Aleksandar


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

end of thread, other threads:[~2020-05-26 17:40 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-19 16:21 [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Ahmed Karaman
2020-05-19 16:21 ` [PATCH 1/2] target/hppa: Check page crossings in use_goto_tb() only in system mode Ahmed Karaman
2020-05-19 16:21 ` [PATCH 2/2] target/rx: Check for page crossings in use_goto_tb() Ahmed Karaman
2020-05-19 18:01 ` [PATCH 0/2] Update use_goto_tb() in hppa and rx targets Richard Henderson
2020-05-19 18:38   ` Alex Bennée
2020-05-19 18:51     ` Richard Henderson
2020-05-21 11:32   ` Ahmed Karaman
2020-05-22  3:12     ` Richard Henderson
2020-05-25 18:39       ` Aleksandar Markovic
2020-05-26 14:14         ` Aleksandar Markovic
2020-05-26 16:08           ` Ahmed Karaman
2020-05-26 16:29             ` Aleksandar Markovic
2020-05-26 16:45               ` Aleksandar Markovic
2020-05-26 17:38                 ` Aleksandar Markovic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.