mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
tcg: Lower indirect registers in a separate pass
Rather than rely on recursion during the middle of register allocation, lower indirect registers to loads and stores off the indirect base into plain temps. For an x86_64 host, with sufficient registers, this results in identical code, modulo the actual register assignments. For an i686 host, with insufficient registers, this means that temps can be (temporarily) spilled to the stack in order to satisfy an allocation. This as opposed to the possibility of not being able to spill, to allocate a register for the indirect base, in order to perform a spill. Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
c0ef05b5e6
commit
5a18407f55
5 changed files with 263 additions and 84 deletions
|
@ -247,8 +247,9 @@ const QEMULogItem qemu_log_items[] = {
|
|||
{ CPU_LOG_TB_OP, "op",
|
||||
"show micro ops for each compiled TB" },
|
||||
{ CPU_LOG_TB_OP_OPT, "op_opt",
|
||||
"show micro ops (x86 only: before eflags optimization) and\n"
|
||||
"after liveness analysis" },
|
||||
"show micro ops after optimization" },
|
||||
{ CPU_LOG_TB_OP_IND, "op_ind",
|
||||
"show micro ops before indirect lowering" },
|
||||
{ CPU_LOG_INT, "int",
|
||||
"show interrupts/exceptions in short format" },
|
||||
{ CPU_LOG_EXEC, "exec",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue