mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winedbg: Add disassembly capacity to x86-64 backend.
This commit is contained in:
parent
e1b677dcd1
commit
7f1105e656
3 changed files with 1571 additions and 4 deletions
|
@ -17,6 +17,7 @@ C_SRCS = \
|
|||
break.c \
|
||||
crashdlg.c \
|
||||
db_disasm.c \
|
||||
db_disasm64.c \
|
||||
display.c \
|
||||
expr.c \
|
||||
gdbproxy.c \
|
||||
|
|
|
@ -186,10 +186,7 @@ static unsigned be_x86_64_is_func_call(const void* insn, ADDRESS64* callee)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static void be_x86_64_disasm_one_insn(ADDRESS64* addr, int display)
|
||||
{
|
||||
dbg_printf("Disasm NIY\n");
|
||||
}
|
||||
extern void be_x86_64_disasm_one_insn(ADDRESS64* addr, int display);
|
||||
|
||||
#define DR7_CONTROL_SHIFT 16
|
||||
#define DR7_CONTROL_SIZE 4
|
||||
|
|
1569
programs/winedbg/db_disasm64.c
Normal file
1569
programs/winedbg/db_disasm64.c
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue