diff options
| author | Richard Henderson | 2018-11-30 20:42:17 +0100 |
|---|---|---|
| committer | Richard Henderson | 2018-12-17 04:04:43 +0100 |
| commit | 8c1b079279fadaee10dc39ca9a58c4c91c7a1854 (patch) | |
| tree | 84616e420225dd8be8af8229e7f58b1c9f58faff /tcg/mips | |
| parent | tcg/sparc: Remove retranslation code (diff) | |
| download | qemu-8c1b079279fadaee10dc39ca9a58c4c91c7a1854.tar.gz qemu-8c1b079279fadaee10dc39ca9a58c4c91c7a1854.tar.xz qemu-8c1b079279fadaee10dc39ca9a58c4c91c7a1854.zip | |
tcg/mips: Remove retranslation code
There is no longer a need for preserving branch offset operands,
as we no longer re-translate.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/mips')
| -rw-r--r-- | tcg/mips/tcg-target.inc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tcg/mips/tcg-target.inc.c b/tcg/mips/tcg-target.inc.c index cff525373b..e21cb1ae28 100644 --- a/tcg/mips/tcg-target.inc.c +++ b/tcg/mips/tcg-target.inc.c @@ -483,12 +483,7 @@ static inline void tcg_out_opc_bf64(TCGContext *s, MIPSInsn opc, MIPSInsn opm, static inline void tcg_out_opc_br(TCGContext *s, MIPSInsn opc, TCGReg rt, TCGReg rs) { - /* We pay attention here to not modify the branch target by reading - the existing value and using it again. This ensure that caches and - memory are kept coherent during retranslation. */ - uint16_t offset = (uint16_t)*s->code_ptr; - - tcg_out_opc_imm(s, opc, rt, rs, offset); + tcg_out_opc_imm(s, opc, rt, rs, 0); } /* |
