projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3995c2
)
target/sh4: optimize gen_store_fpr64
author
Aurelien Jarno
<aurelien@aurel32.net>
Mon, 1 May 2017 21:20:43 +0000
(23:20 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Sat, 13 May 2017 09:18:26 +0000
(11:18 +0200)
Using extr and avoiding intermediate temps.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
target/sh4/translate.c
patch
|
blob
|
history
diff --git
a/target/sh4/translate.c
b/target/sh4/translate.c
index a4c7a0895b12a413ddfef4a3a18cfb7a616c0150..fe8bff54a6d5b6506d25ff534902efde14783a6b 100644
(file)
--- a/
target/sh4/translate.c
+++ b/
target/sh4/translate.c
@@
-305,13
+305,7
@@
static inline void gen_load_fpr64(TCGv_i64 t, int reg)
static inline void gen_store_fpr64 (TCGv_i64 t, int reg)
{
- TCGv_i32 tmp = tcg_temp_new_i32();
- tcg_gen_extrl_i64_i32(tmp, t);
- tcg_gen_mov_i32(cpu_fregs[reg + 1], tmp);
- tcg_gen_shri_i64(t, t, 32);
- tcg_gen_extrl_i64_i32(tmp, t);
- tcg_gen_mov_i32(cpu_fregs[reg], tmp);
- tcg_temp_free_i32(tmp);
+ tcg_gen_extr_i64_i32(cpu_fregs[reg + 1], cpu_fregs[reg], t);
}
#define B3_0 (ctx->opcode & 0xf)