All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Richard Henderson <rth@twiddle.net>
Cc: Jan Kiszka <jan.kiszka@siemens.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [PATCH] memory: use signed arithmetic
Date: Wed, 03 Aug 2011 01:06:40 +0300	[thread overview]
Message-ID: <4E3874F0.3040106@redhat.com> (raw)
In-Reply-To: <4E387353.9020806@twiddle.net>

On 08/03/2011 12:59 AM, Richard Henderson wrote:
> On 08/02/2011 01:50 PM, Avi Kivity wrote:
> >   struct AddrRange {
> >  -    uint64_t start;
> >  -    uint64_t size;
> >  +    int64_t start;
> >  +    int64_t size;
>
> I'm must say I'm not keen on this.  My primary objection is that
> a "range" can no longer properly represent the entire address space.
> Or, indeed, anything in the second half of it.

I don't think there's any cpu which has a real 64-bit physical address 
space?  Don't they all truncate it?

> It sounds like your problem would be better solved by re-arranging
> things such that you perform X<  Y comparisons rather than DELTA<  0.
>


More like, X + delta < Y + delta, I just get a headache what all those 
deltas mean everywhere.

For reference, the root cause is
static void render_memory_region(FlatView *view,
                                  MemoryRegion *mr,
                                  target_phys_addr_t base,
                                  AddrRange clip)
{
...

     base += mr->addr;

...

     if (mr->alias) {
         base -= mr->alias->addr;
         base -= mr->alias_offset;   // <--- HERE!
         render_memory_region(view, mr->alias, base, clip);
         return;
     }

I could pass alias_offset everywhere and compensate for it.  But 
stealing bit from the address space is easier than adjusting all the 
calculations.

-- 
I have a truly marvellous patch that fixes the bug which this
signature is too narrow to contain.

WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Richard Henderson <rth@twiddle.net>
Cc: Jan Kiszka <jan.kiszka@siemens.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH] memory: use signed arithmetic
Date: Wed, 03 Aug 2011 01:06:40 +0300	[thread overview]
Message-ID: <4E3874F0.3040106@redhat.com> (raw)
In-Reply-To: <4E387353.9020806@twiddle.net>

On 08/03/2011 12:59 AM, Richard Henderson wrote:
> On 08/02/2011 01:50 PM, Avi Kivity wrote:
> >   struct AddrRange {
> >  -    uint64_t start;
> >  -    uint64_t size;
> >  +    int64_t start;
> >  +    int64_t size;
>
> I'm must say I'm not keen on this.  My primary objection is that
> a "range" can no longer properly represent the entire address space.
> Or, indeed, anything in the second half of it.

I don't think there's any cpu which has a real 64-bit physical address 
space?  Don't they all truncate it?

> It sounds like your problem would be better solved by re-arranging
> things such that you perform X<  Y comparisons rather than DELTA<  0.
>


More like, X + delta < Y + delta, I just get a headache what all those 
deltas mean everywhere.

For reference, the root cause is
static void render_memory_region(FlatView *view,
                                  MemoryRegion *mr,
                                  target_phys_addr_t base,
                                  AddrRange clip)
{
...

     base += mr->addr;

...

     if (mr->alias) {
         base -= mr->alias->addr;
         base -= mr->alias_offset;   // <--- HERE!
         render_memory_region(view, mr->alias, base, clip);
         return;
     }

I could pass alias_offset everywhere and compensate for it.  But 
stealing bit from the address space is easier than adjusting all the 
calculations.

-- 
I have a truly marvellous patch that fixes the bug which this
signature is too narrow to contain.

  reply	other threads:[~2011-08-02 22:06 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-02 20:50 [PATCH] memory: use signed arithmetic Avi Kivity
2011-08-02 20:50 ` [Qemu-devel] " Avi Kivity
2011-08-02 21:15 ` malc
2011-08-02 21:15   ` malc
2011-08-02 21:21   ` Avi Kivity
2011-08-02 21:21     ` Avi Kivity
2011-08-02 21:59 ` Richard Henderson
2011-08-02 21:59   ` [Qemu-devel] " Richard Henderson
2011-08-02 22:06   ` Avi Kivity [this message]
2011-08-02 22:06     ` Avi Kivity
2011-08-02 22:15     ` Richard Henderson
2011-08-02 22:15       ` [Qemu-devel] " Richard Henderson
2011-08-03  8:26       ` Avi Kivity
2011-08-03  8:26         ` [Qemu-devel] " Avi Kivity
2011-08-03 11:48         ` Benjamin Herrenschmidt
2011-08-03 11:48           ` [Qemu-devel] " Benjamin Herrenschmidt

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=4E3874F0.3040106@redhat.com \
    --to=avi@redhat.com \
    --cc=jan.kiszka@siemens.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 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.