mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 04:05:37 +00:00
tcg/optimize: Optimize bswap
Somehow we forgot these operations, once upon a time. This will allow immediate stores to have their bswap optimized away. Backports commit 6498594c8eda83c5f5915afc34bd03396f8de6df from qemu
This commit is contained in:
parent
1bcbdc2f1b
commit
fdb3d6488e
|
@ -355,6 +355,15 @@ static TCGArg do_constant_folding_2(TCGOpcode op, TCGArg x, TCGArg y)
|
|||
CASE_OP_32_64(ext16u):
|
||||
return (uint16_t)x;
|
||||
|
||||
CASE_OP_32_64(bswap16):
|
||||
return bswap16(x);
|
||||
|
||||
CASE_OP_32_64(bswap32):
|
||||
return bswap32(x);
|
||||
|
||||
case INDEX_op_bswap64_i64:
|
||||
return bswap64(x);
|
||||
|
||||
case INDEX_op_ext_i32_i64:
|
||||
case INDEX_op_ext32s_i64:
|
||||
return (int32_t)x;
|
||||
|
@ -1104,6 +1113,9 @@ void tcg_optimize(TCGContext *s)
|
|||
CASE_OP_32_64(ext16s):
|
||||
CASE_OP_32_64(ext16u):
|
||||
CASE_OP_32_64(ctpop):
|
||||
CASE_OP_32_64(bswap16):
|
||||
CASE_OP_32_64(bswap32):
|
||||
case INDEX_op_bswap64_i64:
|
||||
case INDEX_op_ext32s_i64:
|
||||
case INDEX_op_ext32u_i64:
|
||||
case INDEX_op_ext_i32_i64:
|
||||
|
|
Loading…
Reference in a new issue