On Mon, 2012-09-10 at 13:56 +0200, Aurelien Jarno wrote: > On x86, it is possible to move a constant value to memory. Add code to > handle a constant argument to load/store ops. > > Signed-off-by: Aurelien Jarno <aurel...@aurel32.net>
While useful, you'll find that most constants that want storing to memory are not generated with store opcodes, but directly via tcg_out_st. As happens for all register spilling, and helper calls. Reviewed-by: Richard Henderson <r...@twiddle.net> r~