From: Laurent Desnogues Date: Mon, 21 Sep 2009 12:27:59 +0000 (+0200) Subject: ARM host: fix generated blocks linking X-Git-Tag: v0.11.1~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6166c0f95e8093d695835d07798557439a226f48;p=thirdparty%2Fqemu.git ARM host: fix generated blocks linking This patch fixes the linking of generated blocks on an ARM host. No need to say this brings a very nice speedup :-) Signed-off-by: Laurent Desnogues Signed-off-by: Aurelien Jarno --- diff --git a/exec-all.h b/exec-all.h index cd27eb694ad..6439e3cc7b6 100644 --- a/exec-all.h +++ b/exec-all.h @@ -211,7 +211,9 @@ static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr #endif /* we could use a ldr pc, [pc, #-4] kind of branch and avoid the flush */ - *(uint32_t *)jmp_addr |= ((addr - (jmp_addr + 8)) >> 2) & 0xffffff; + *(uint32_t *)jmp_addr = + (*(uint32_t *)jmp_addr & ~0xffffff) + | (((addr - (jmp_addr + 8)) >> 2) & 0xffffff); #if QEMU_GNUC_PREREQ(4, 1) __clear_cache((char *) jmp_addr, (char *) jmp_addr + 4);