* [Qemu-devel] MMU and Physical<->Virtual address conversion
@ 2007-06-21 7:10 Shane Hummer-Smith
2007-06-21 12:22 ` amateur
0 siblings, 1 reply; 2+ messages in thread
From: Shane Hummer-Smith @ 2007-06-21 7:10 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 314 bytes --]
Hello,
I am trying to experiment with the memory management unit in QEMU, but I
don't seem to be able to wrap my head around the source code. Can somebody
help me figure out how the physical to virtual address translation and
vice-versa is implemented in QEMU? Any pointer would be appreciated. Thanks
much!
--S
[-- Attachment #2: Type: text/html, Size: 338 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] MMU and Physical<->Virtual address conversion
2007-06-21 7:10 [Qemu-devel] MMU and Physical<->Virtual address conversion Shane Hummer-Smith
@ 2007-06-21 12:22 ` amateur
0 siblings, 0 replies; 2+ messages in thread
From: amateur @ 2007-06-21 12:22 UTC (permalink / raw)
To: qemu-devel
On Thu, Jun 21, 2007 at 12:10:38AM -0700, Shane Hummer-Smith wrote:
> Hello,
>
> I am trying to experiment with the memory management unit in QEMU, but I
> don't seem to be able to wrap my head around the source code. Can somebody
> help me figure out how the physical to virtual address translation and
> vice-versa is implemented in QEMU? Any pointer would be appreciated. Thanks
> much!
-------------------------
The address translation things in full system mode is handled by the
so called SoftMMU, which translate gVA->hEA. gEA->gVA is known as
address calculation and handled in insn translation. gVA->gPA is
handled by SoftMMU using Guest Page Table, gPA->hEA is handled by
SoftMMU using two-level-table of PhyPageDesc structures. There is
again TLB which translate gVA->hEA directly.
SoftMMU code is mainly in softmmu_header.h, softmmu_template.h, things
related to PhyPageDesc...
--
^[[32m《东郊》^[[m
^[[33m作者:韦应物^[[m
吏舍局终年,出郊旷清曙。
杨柳散和风,青山澹吾虑。
依丛适自憩,缘涧还复去。
微雨霭芳原,春鸠鸣何处。
乐幽心屡止,遵事迹犹遽。
终罢斯结庐,慕陶真可庶。
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-06-21 12:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-21 7:10 [Qemu-devel] MMU and Physical<->Virtual address conversion Shane Hummer-Smith
2007-06-21 12:22 ` amateur
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).