* [Qemu-devel] What's the differences betweencld/st and qemu_ld/st in TCG IR?
@ 2015-05-23 12:18 浩倫 魏
2015-05-23 21:17 ` Peter Maydell
0 siblings, 1 reply; 3+ messages in thread
From: 浩倫 魏 @ 2015-05-23 12:18 UTC (permalink / raw)
To: qemu-devel@nongnu.org
[-- Attachment #1: Type: text/plain, Size: 576 bytes --]
Hi, all:
I've been trying to understand the process of binary translation inside TCG.If I haven't misunderstood, qemu_ld/st are the operations that will call helper function(ld_mmu) to let softmmu translate the GVA->GPA for the guest load/store instructions.
So there are some points that I hope you can help me out:
1. Is every guest load/store instruction would be translated to qemu_ld/st IR?
2. What about another TCG IR "ld/st"? What kind of guest instructions would cause TCG generates that IRs and for what purpose?
Any reply would be helpful to me.Thanks in advance.
[-- Attachment #2: Type: text/html, Size: 1514 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] What's the differences betweencld/st and qemu_ld/st in TCG IR?
2015-05-23 12:18 [Qemu-devel] What's the differences betweencld/st and qemu_ld/st in TCG IR? 浩倫 魏
@ 2015-05-23 21:17 ` Peter Maydell
2015-05-24 0:09 ` 浩倫 魏
0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2015-05-23 21:17 UTC (permalink / raw)
To: 浩倫 魏; +Cc: qemu-devel@nongnu.org
On 23 May 2015 at 13:18, 浩倫 魏 <goberwei@yahoo.com.tw> wrote:
> Hi, all:
> I've been trying to understand the process of binary translation inside TCG.
> If I haven't misunderstood, qemu_ld/st are the operations that will call
> helper function(ld_mmu) to let softmmu translate the GVA->GPA for the guest
> load/store instructions.
> So there are some points that I hope you can help me out:
> 1. Is every guest load/store instruction would be translated to qemu_ld/st
> IR?
Yes, as a general rule. There are a few special cases:
* sometimes complicated instructions are just translated into
calls to helper functions which do the guest memory access
at runtime (for instance x86 cmpxchg8b turns into a call to
helper_cmpxchg8b())
* for linux-user some of the atomic instructions (load-lock/
store-conditional pairs) are handled by translating to a
"raise internal exception" call, and the actual load/store
is then dealt with in linux-user/main.c
[This mechanism might change in the near future; we're looking at
multi-threaded TCG emulation, and so might switch the linux-user
atomics to work the same way as a future mechanism for doing atomics
in multi-threaded system emulation]
But almost all guest accesses will turn into qemu_ld/st ops.
> 2. What about another TCG IR "ld/st"? What kind of guest instructions would
> cause TCG generates that IRs and for what purpose?
These just do plain load/store to the *host* address specified.
This is almost always used to read a value from the CPU state
structure (CPUARMState, etc). Generated code always has access
to a pointer to this struct, and uses the ld/st ops to read
or write fields within it. (If you search for tcg_gen_ld
in target-*/ you'll see lots of examples.) The op can be used
for any host load or store, but in practice use for anything
other than "read a value from the CPU state struct" is very rare.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] What's the differences betweencld/st and qemu_ld/st in TCG IR?
2015-05-23 21:17 ` Peter Maydell
@ 2015-05-24 0:09 ` 浩倫 魏
0 siblings, 0 replies; 3+ messages in thread
From: 浩倫 魏 @ 2015-05-24 0:09 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-devel@nongnu.org
[-- Attachment #1: Type: text/plain, Size: 2119 bytes --]
Dear Peter:
Now I get it, thanks for the help! :-)
Peter Maydell <peter.maydell@linaro.org> 於 2015/5/24 (週日) 5:17 AM 寫道﹕
On 23 May 2015 at 13:18, 浩倫 魏 <goberwei@yahoo.com.tw> wrote:
> Hi, all:
> I've been trying to understand the process of binary translation inside TCG.
> If I haven't misunderstood, qemu_ld/st are the operations that will call
> helper function(ld_mmu) to let softmmu translate the GVA->GPA for the guest
> load/store instructions.
> So there are some points that I hope you can help me out:
> 1. Is every guest load/store instruction would be translated to qemu_ld/st
> IR?
Yes, as a general rule. There are a few special cases:
* sometimes complicated instructions are just translated into
calls to helper functions which do the guest memory access
at runtime (for instance x86 cmpxchg8b turns into a call to
helper_cmpxchg8b())
* for linux-user some of the atomic instructions (load-lock/
store-conditional pairs) are handled by translating to a
"raise internal exception" call, and the actual load/store
is then dealt with in linux-user/main.c
[This mechanism might change in the near future; we're looking at
multi-threaded TCG emulation, and so might switch the linux-user
atomics to work the same way as a future mechanism for doing atomics
in multi-threaded system emulation]
But almost all guest accesses will turn into qemu_ld/st ops.
> 2. What about another TCG IR "ld/st"? What kind of guest instructions would
> cause TCG generates that IRs and for what purpose?
These just do plain load/store to the *host* address specified.
This is almost always used to read a value from the CPU state
structure (CPUARMState, etc). Generated code always has access
to a pointer to this struct, and uses the ld/st ops to read
or write fields within it. (If you search for tcg_gen_ld
in target-*/ you'll see lots of examples.) The op can be used
for any host load or store, but in practice use for anything
other than "read a value from the CPU state struct" is very rare.
-- PMM
[-- Attachment #2: Type: text/html, Size: 3827 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-05-24 0:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-23 12:18 [Qemu-devel] What's the differences betweencld/st and qemu_ld/st in TCG IR? 浩倫 魏
2015-05-23 21:17 ` Peter Maydell
2015-05-24 0:09 ` 浩倫 魏
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).