There is a definition for Translation Block in Qemu Source Code(cpu-exec.c)
Line 127 says
static TranslationBlock *tb_find_slow(target_ulong pc, target_ulong cs_base, uint64_t flags)
what does it mean?
|
There is a definition for Translation Block in Qemu Source Code(cpu-exec.c) Line 127 says static TranslationBlock *tb_find_slow(target_ulong pc, target_ulong cs_base, uint64_t flags) what does it mean?
| |||
|
feedback
|
|
That's not a definition for a translation block, that's a function called As to what they are, this page has a succinct description:
In other words, it's sort of a just-in-time compiler. There's a | ||||
|
feedback
|