mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00
tcg: Add INDEX_op_qemu_{ld,st}_i128
Add opcodes for backend support for 128-bit memory operations. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
7b88010719
commit
12fde9bcdb
15 changed files with 108 additions and 11 deletions
|
@ -2186,11 +2186,13 @@ void tcg_optimize(TCGContext *s)
|
|||
break;
|
||||
case INDEX_op_qemu_ld_i32:
|
||||
case INDEX_op_qemu_ld_i64:
|
||||
case INDEX_op_qemu_ld_i128:
|
||||
done = fold_qemu_ld(&ctx, op);
|
||||
break;
|
||||
case INDEX_op_qemu_st_i32:
|
||||
case INDEX_op_qemu_st8_i32:
|
||||
case INDEX_op_qemu_st_i64:
|
||||
case INDEX_op_qemu_st_i128:
|
||||
done = fold_qemu_st(&ctx, op);
|
||||
break;
|
||||
CASE_OP_32_64(rem):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue