From: Richard Henderson Date: Fri, 14 Mar 2014 22:30:10 +0000 (-0700) Subject: cpu: Move tcg_exit_req to the end of CPUState X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~386^2~42^2~68^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e4fb26d757b460de5b80b4220bcd926f7175cb2;p=sdk%2Femulator%2Fqemu.git cpu: Move tcg_exit_req to the end of CPUState Reverse an increase in the size of generated code. Signed-off-by: Richard Henderson Signed-off-by: Andreas Färber --- diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 06ee2636c3..f99885a137 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -227,7 +227,6 @@ struct CPUState { bool stop; bool stopped; volatile sig_atomic_t exit_request; - volatile sig_atomic_t tcg_exit_req; uint32_t interrupt_request; int singlestep_enabled; int64_t icount_extra; @@ -272,6 +271,12 @@ struct CPUState { } icount_decr; uint32_t can_do_io; int32_t exception_index; /* used by m68k TCG */ + + /* Note that this is accessed at the start of every TB via a negative + offset from AREG0. Leave this field at the end so as to make the + (absolute value) offset as small as possible. This reduces code + size, especially for hosts without large memory offsets. */ + volatile sig_atomic_t tcg_exit_req; }; QTAILQ_HEAD(CPUTailQ, CPUState);