projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56e4943
)
tcg/optimize: simplify or/xor r, a, 0 cases
author
Aurelien Jarno
<aurelien@aurel32.net>
Thu, 6 Sep 2012 14:47:14 +0000
(16:47 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Tue, 11 Sep 2012 16:05:56 +0000
(18:05 +0200)
or/xor r, a, 0 is equivalent to a mov r, a.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/optimize.c
patch
|
blob
|
history
diff --git
a/tcg/optimize.c
b/tcg/optimize.c
index
63f970d
..
0db849e
100644
(file)
--- a/
tcg/optimize.c
+++ b/
tcg/optimize.c
@@
-331,6
+331,8
@@
static TCGArg *tcg_constant_folding(TCGContext *s, uint16_t *tcg_opc_ptr,
CASE_OP_32_64(sar):
CASE_OP_32_64(rotl):
CASE_OP_32_64(rotr):
+ CASE_OP_32_64(or):
+ CASE_OP_32_64(xor):
if (temps[args[1]].state == TCG_TEMP_CONST) {
/* Proceed with possible constant folding. */
break;