diff options
author | Anthony Liguori <aliguori@amazon.com> | 2013-10-14 09:59:59 -0700 |
---|---|---|
committer | Anthony Liguori <aliguori@amazon.com> | 2013-10-14 09:59:59 -0700 |
commit | 1680d485777ecf436d724631ea8722cc0c66990e (patch) | |
tree | e34c35b33715e96c9b209caf2f9f721ff1356274 /tcg/tcg-be-ldst.h | |
parent | ded77da3cd6b6bcd201a4e36abb3294d725be644 (diff) | |
parent | f8da40aefbd1b40a0c5ab6fb25987943fe01125c (diff) | |
download | qemu-1680d485777ecf436d724631ea8722cc0c66990e.zip qemu-1680d485777ecf436d724631ea8722cc0c66990e.tar.gz qemu-1680d485777ecf436d724631ea8722cc0c66990e.tar.bz2 |
Merge remote-tracking branch 'rth/tcg-ldst-6' into staging
# By Richard Henderson
# Via Richard Henderson
* rth/tcg-ldst-6:
target-alpha: Convert to new ldst opcodes
tcg-ppc64: Support new ldst opcodes
tcg-ppc: Support new ldst opcodes
tcg-ppc64: Convert to le/be ldst helpers
tcg-ppc: Convert to le/be ldst helpers
tcg-ppc64: Use TCGMemOp within qemu_ldst routines
tcg-ppc: Use TCGMemOp within qemu_ldst routines
tcg-arm: Improve GUEST_BASE qemu_ld/st
tcg-arm: Convert to new ldst opcodes
tcg-arm: Tidy variable naming convention in qemu_ld/st
tcg-arm: Convert to le/be ldst helpers
tcg-arm: Use TCGMemOp within qemu_ldst routines
tcg-i386: Support new ldst opcodes
tcg-i386: Remove "cb" output restriction from qemu_st8 for i386
tcg-i386: Tidy softmmu routines
tcg-i386: Use TCGMemOp within qemu_ldst routines
tcg: Use TCGMemOp for TCGLabelQemuLdst.opc
Message-id: 1381620683-4568-1-git-send-email-rth@twiddle.net
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'tcg/tcg-be-ldst.h')
-rw-r--r-- | tcg/tcg-be-ldst.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg-be-ldst.h b/tcg/tcg-be-ldst.h index 2826d29..284db0c 100644 --- a/tcg/tcg-be-ldst.h +++ b/tcg/tcg-be-ldst.h @@ -25,7 +25,7 @@ typedef struct TCGLabelQemuLdst { int is_ld:1; /* qemu_ld: 1, qemu_st: 0 */ - int opc:4; + TCGMemOp opc:4; TCGReg addrlo_reg; /* reg index for low word of guest virtual addr */ TCGReg addrhi_reg; /* reg index for high word of guest virtual addr */ TCGReg datalo_reg; /* reg index for low word to be loaded or stored */ |