[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 11/14] tcg: Fix high_pc fields in .debug_info
From: |
Richard Henderson |
Subject: |
[Qemu-devel] [PATCH v3 11/14] tcg: Fix high_pc fields in .debug_info |
Date: |
Wed, 3 Jul 2013 14:29:25 -0700 |
I don't think the debugger actually looks at this for anything,
using the correct .debug_frame contents, but might as well get
it all correct.
Signed-off-by: Richard Henderson <address@hidden>
---
tcg/tcg.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tcg/tcg.c b/tcg/tcg.c
index c7e6567..42dc958 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -2657,9 +2657,9 @@ static void tcg_register_jit_int(void *buf_ptr, size_t
buf_size,
img->sym[1].st_size = buf_size;
img->di.cu_low_pc = buf;
- img->di.cu_high_pc = buf_size;
+ img->di.cu_high_pc = buf + buf_size;
img->di.fn_low_pc = buf;
- img->di.fn_high_pc = buf_size;
+ img->di.fn_high_pc = buf + buf_size;
#ifdef DEBUG_JIT
/* Enable this block to be able to debug the ELF image file creation.
--
1.8.1.4
[Qemu-devel] [PATCH v3 10/14] tcg-arm: Use AT_PLATFORM to detect the host ISA, Richard Henderson, 2013/07/03
[Qemu-devel] [PATCH v3 11/14] tcg: Fix high_pc fields in .debug_info,
Richard Henderson <=
[Qemu-devel] [PATCH v3 12/14] tcg: Move the CIE and FDE header definitions to common code, Richard Henderson, 2013/07/03
[Qemu-devel] [PATCH v3 13/14] tcg-i386: Use QEMU_BUILD_BUG_ON instead of assert for frame size, Richard Henderson, 2013/07/03
[Qemu-devel] [PATCH v3 14/14] tcg-arm: Implement tcg_register_jit, Richard Henderson, 2013/07/03
Re: [Qemu-devel] [PATCH v3 00/14] tcg: remainder and tcg-arm updates, Claudio Fontana, 2013/07/04