qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Joelle van Dyne <j@getutm.app>
To: Richard Henderson <richard.henderson@linaro.org>
Cc: QEMU <qemu-devel@nongnu.org>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Joelle van Dyne" <j@getutm.app>
Subject: Re: [PATCH 07/10] tcg: implement bulletproof JIT
Date: Wed, 14 Oct 2020 15:54:27 -0700	[thread overview]
Message-ID: <CA+E+eSCi81G_ShewtABvGAucOiebkROAu2bDO0c3DUs8G6v55A@mail.gmail.com> (raw)
In-Reply-To: <05c6cd7d-aa9f-ddea-cc04-2db5aa3110a0@linaro.org>

There's about 40 instances of *code_ptr or code_ptr[i] changed to
TCG_CODE_PTR_RW(s, code_ptr). It's around 2 instances per function, so
if I go with a local variable, that would be ~20 extra LOC.

Another alternative is two separate functions: tcg_code_ptr_insn_rw()
which returns tcg_insn_unit * and tcg_code_ptr_rw() which returns void
*. I'll go that route unless there's any objections?

-j

On Wed, Oct 14, 2020 at 2:49 PM Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> On 10/14/20 1:58 PM, Joelle van Dyne wrote:
> > Much of the code that uses the macro is like the following (from
> > aarch64/tcg-include.inc.c)
> >
> >         *TCG_CODE_PTR_RW(s, code_ptr) =
> >             deposit32(*TCG_CODE_PTR_RW(s, code_ptr), 0, 26, offset);
> >
> > Before the change, it was just *code_ptr. I'm saying the alternative
> > was to have to write "tcg_insn_unit *rw_code_ptr = (tcg_insn_unit
> > *)TCG_CODE_PTR_RW(s, code_ptr)" everywhere or else inline cast it.
> > Whereas making it return tcg_insn_unit * means only three instances of
> > casting to uint8_t *. Using void * means casting at every instance.
>
> I should have done more than skim, I suppose.
>
> Well, without going back to look, how many of these are there, really?
> Virtually all of the writes should be via tcg_out32().
>
> If there's < 5 of the above per tcg/foo/ -- particularly if they're all
> restricted to relocations as in the above -- then I'm ok with local variable
> assignment to "rw_ptr".  Especially since the replacement isn't exactly small,
> and you're having to split to two separate lines anyway.
>
> I'll have a real look when you've split this into parts, because otherwise it's
> just too big.
>
>
> r~


  reply	other threads:[~2020-10-14 22:58 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-12 23:29 [PATCH 00/10] iOS and Apple Silicon host support Joelle van Dyne
2020-10-12 23:29 ` [PATCH 01/10] configure: option to disable host block devices Joelle van Dyne
2020-10-12 23:29 ` [PATCH 02/10] configure: cross-compiling without cross_prefix Joelle van Dyne
2020-10-12 23:29 ` [PATCH 03/10] qemu: add support for iOS host Joelle van Dyne
2020-10-12 23:29 ` [PATCH 04/10] meson: option to build as shared library Joelle van Dyne
2020-10-13  7:51   ` Daniel P. Berrangé
2020-10-13 14:41     ` BALATON Zoltan via
2020-10-13 14:46       ` Daniel P. Berrangé
2020-10-13 15:16         ` Joelle van Dyne
2020-10-13 15:57           ` Daniel P. Berrangé
2020-10-13 16:40             ` BALATON Zoltan via
2020-10-14 16:09               ` Joelle van Dyne
2020-10-13 15:23         ` BALATON Zoltan via
2020-10-12 23:29 ` [PATCH 05/10] slirp: update for iOS resolv fix Joelle van Dyne
2020-10-13 13:32   ` Philippe Mathieu-Daudé
2020-10-13 14:38     ` Marc-André Lureau
2020-10-13 14:59       ` Philippe Mathieu-Daudé
2020-10-14 15:54         ` Joelle van Dyne
2020-10-12 23:29 ` [PATCH 06/10] coroutine: add libucontext as external library Joelle van Dyne
2020-10-13 13:31   ` Stefan Hajnoczi
2020-10-13 14:49     ` BALATON Zoltan via
2020-10-13 15:25       ` Joelle van Dyne
2020-10-13 16:18       ` Daniel P. Berrangé
2020-10-12 23:29 ` [PATCH 07/10] tcg: implement bulletproof JIT Joelle van Dyne
2020-10-13  8:22   ` Philippe Mathieu-Daudé
2020-10-13 14:58   ` BALATON Zoltan via
2020-10-14 16:03     ` Joelle van Dyne
2020-10-14 20:35       ` Richard Henderson
2020-10-14 20:54         ` BALATON Zoltan via
2020-10-14 21:40           ` Richard Henderson
2020-10-14 20:58         ` Joelle van Dyne
2020-10-14 21:08           ` BALATON Zoltan via
2020-10-14 21:49           ` Richard Henderson
2020-10-14 22:54             ` Joelle van Dyne [this message]
2020-10-12 23:29 ` [PATCH 08/10] tcg: mirror mapping RWX pages for iOS optional Joelle van Dyne
2020-10-13 13:52   ` Paolo Bonzini
2020-10-13 15:10     ` Joelle van Dyne
2020-10-12 23:29 ` [PATCH 09/10] tcg: support JIT on Apple Silicon Joelle van Dyne
2020-10-13 13:55   ` Paolo Bonzini
2020-10-13 14:09     ` Peter Maydell
2020-10-13 15:13       ` Joelle van Dyne
2020-10-12 23:29 ` [PATCH 10/10] block: check availablity for preadv/pwritev on mac Joelle van Dyne
2020-10-13  1:21 ` [PATCH 00/10] iOS and Apple Silicon host support no-reply
2020-10-13  2:12   ` Joelle van Dyne

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CA+E+eSCi81G_ShewtABvGAucOiebkROAu2bDO0c3DUs8G6v55A@mail.gmail.com \
    --to=j@getutm.app \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).