From: olivier cozette <olivier.cozette@u-picardie.fr>
To: qemu-devel@nongnu.org
Subject: Re:Another related question Re: [Qemu-devel] Question about softmmu
Date: Wed, 10 Nov 2004 15:15:11 +0100 [thread overview]
Message-ID: <1100096111.4192226f785e6@webmail.u-picardie.fr> (raw)
Hello Ye,
>So EIP is just the offset of current instruction.
Yes
>When address mapping changes,
>the CS segment register also changes.
No.
The virtual adress is CS+EIP (CS.Base+EIP), this virtual address is translated
to the physical address with the page mapping. In pseudo code, the real address
is PAGE_MAPPING(CS+EIP). So, if the page mapping change the CS stay the same.
>That's why QEMU does not need to flush
>the code. Am I right?
>The reason I'm thinking about this is because I'm implementing QEMU's
>translation method in my ARM simulator which needs to simulate the whole system
>running Linux. In ARM, since PC is just r15, you can access it as a normal
>register and it is the absolute virtual address. So I wonder if I have to flush
>code cache every time page table changes.
I don't know well ARM processor, but i know Alpha, and it's different from the
x86.
With x86, the data stored in the data/code cache are stored with the physical
address (page mapping is done between processor and cache), and so the cache
don't need to be flushed when page mapping change (CR3 change).
With alpha (and probably arm), the address stored in cache are the virtual
address (page mapping is done between cache and memory).
But, i presume this difference have no impact with Qemu cache, and it will be
better to don't flush qemu cache.
Olivier
Thanks,
Ye
next reply other threads:[~2004-11-10 14:24 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-11-10 14:15 olivier cozette [this message]
-- strict thread matches above, loose matches on Subject: below --
2004-11-10 14:15 Re:Another related question Re: [Qemu-devel] Question about softmmu olivier cozette
2004-11-11 8:21 ` Ye Wen
2004-11-12 17:30 ` RE : Another " Olivier Cozette
2004-11-09 16:01 Olivier Cozette
2004-11-09 19:33 ` Ye Wen
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=1100096111.4192226f785e6@webmail.u-picardie.fr \
--to=olivier.cozette@u-picardie.fr \
--cc=qemu-devel@nongnu.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).