aboutsummaryrefslogtreecommitdiff
path: root/tcg/s390x/tcg-target.c.inc
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-12-05 16:55:40 -0600
committerRichard Henderson <richard.henderson@linaro.org>2023-01-17 10:25:49 -1000
commit2fd2e78d1b5281d589eabdf31a21166c80bebd80 (patch)
tree700d3fbf2985621bd6d02736c11ea77ff9f80787 /tcg/s390x/tcg-target.c.inc
parent90c0fee3a28b25d23081b3c435762cadde813ec4 (diff)
downloadqemu-2fd2e78d1b5281d589eabdf31a21166c80bebd80.zip
qemu-2fd2e78d1b5281d589eabdf31a21166c80bebd80.tar.gz
qemu-2fd2e78d1b5281d589eabdf31a21166c80bebd80.tar.bz2
tcg: Remove TCG_TARGET_HAS_direct_jump
We now have the option to generate direct or indirect goto_tb depending on the dynamic displacement, thus the define is no longer necessary or completely accurate. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/s390x/tcg-target.c.inc')
-rw-r--r--tcg/s390x/tcg-target.c.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/s390x/tcg-target.c.inc b/tcg/s390x/tcg-target.c.inc
index 2d049a4..218318f 100644
--- a/tcg/s390x/tcg-target.c.inc
+++ b/tcg/s390x/tcg-target.c.inc
@@ -1973,6 +1973,9 @@ static void tcg_out_goto_tb(TCGContext *s, int which)
void tb_target_set_jmp_target(const TranslationBlock *tb, int n,
uintptr_t jmp_rx, uintptr_t jmp_rw)
{
+ if (!HAVE_FACILITY(GEN_INST_EXT)) {
+ return;
+ }
/* patch the branch destination */
uintptr_t addr = tb->jmp_target_addr[n];
intptr_t disp = addr - (jmp_rx - 2);