提交 c170cb66 编写于 作者: S Stefan Weil

tcg/i386: Use GDB JIT debugging interface only for hosts with ELF

Not all i386 / x86_64 hosts use ELF.
Ask the compiler whether ELF is used.

On w64, gdb crashes when ELF_HOST_MACHINE is defined.

Cc: Blue Swirl <blauwirbel@gmail.com>
Acked-by: NRichard Henderson <rth@twiddle.net>
Signed-off-by: NStefan Weil <sw@weilnetz.de>
上级 4d036516
...@@ -2102,7 +2102,9 @@ typedef struct { ...@@ -2102,7 +2102,9 @@ typedef struct {
DebugFrameFDE fde; DebugFrameFDE fde;
} DebugFrame; } DebugFrame;
#if TCG_TARGET_REG_BITS == 64 #if !defined(__ELF__)
/* Host machine without ELF. */
#elif TCG_TARGET_REG_BITS == 64
#define ELF_HOST_MACHINE EM_X86_64 #define ELF_HOST_MACHINE EM_X86_64
static DebugFrame debug_frame = { static DebugFrame debug_frame = {
.cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */ .cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */
...@@ -2156,6 +2158,7 @@ static DebugFrame debug_frame = { ...@@ -2156,6 +2158,7 @@ static DebugFrame debug_frame = {
}; };
#endif #endif
#if defined(ELF_HOST_MACHINE)
void tcg_register_jit(void *buf, size_t buf_size) void tcg_register_jit(void *buf, size_t buf_size)
{ {
/* We're expecting a 2 byte uleb128 encoded value. */ /* We're expecting a 2 byte uleb128 encoded value. */
...@@ -2166,3 +2169,4 @@ void tcg_register_jit(void *buf, size_t buf_size) ...@@ -2166,3 +2169,4 @@ void tcg_register_jit(void *buf, size_t buf_size)
tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame)); tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
} }
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册