Ge van Geldorp
a2e94444ad
winedbg: Implement be_x86_64_init_registers.
2006-07-03 11:41:53 +02:00
Ge van Geldorp
f0279726eb
winedbg: Adjust the parameters of the backend read/write routines to
...
match those of ReadProcessMemory/WriteProcessMemory, since those are
the ones actually used.
2006-07-03 11:37:29 +02:00
Eric Pouech
6cff43fd72
winedbg: Module info.
...
when requesting info on a module by address, always print the module
ELF/PE pair (if this applies) (and not only the embedded PE), which
can be confusing.
2006-06-27 11:19:53 +02:00
Eric Pouech
82ed6a4578
winedbg: Use 64 bit version of imagehlp_module.
...
This allows reimplementing the module list command and do less black
magic to guess the ELF debug format.
2006-06-27 11:19:03 +02:00
Eric Pouech
e79085258b
winedbg: Proper handling of typedefs.
...
Added types_get_real_type() to get rid of typedef information, and
access the real underlying type.
2006-06-20 11:36:25 +02:00
Ge van Geldorp
e08a176007
winedbg: Added x86_64 support.
2006-06-20 11:06:31 +02:00
Alexandre Julliard
d47dcbf05a
winedbg: Avoid a crash when there's no backtrace to print.
2006-06-15 11:39:29 +02:00
Alexandre Julliard
68090e5d68
winedbg: sscanf arguments should be ints, not size_t.
2006-06-13 14:16:06 +02:00
Andrew Talbot
a7142d435b
winedbg: Write-strings warnings fix.
2006-06-12 13:21:48 +02:00
Alexandre Julliard
dbd566d545
Revert "winedbg: Remove useless NOCMD state."
...
This reverts 92deacbe42
commit.
2006-06-06 17:15:31 +02:00
Juan Lang
b885b76146
winedbg: Get rid of unused mode command.
2006-06-05 21:01:40 +02:00
Juan Lang
92deacbe42
winedbg: Remove useless NOCMD state.
2006-06-05 13:50:23 +02:00
Eric Pouech
65da8987d5
winedbg: Correct typedefs in type manipulations.
2006-06-05 13:24:24 +02:00
Juan Lang
a866fa37e9
winedbg: Fix a crash on initial empty input.
2006-06-03 11:58:34 +02:00
Jonathan Ernst
360a3f9142
Update the address of the Free Software Foundation.
2006-05-23 14:11:13 +02:00
Eric Pouech
820141114e
winedbg: extract_as_integer
...
- now supporting extract_as_integer on functions (so that,
for example, 'disas foo' works as expected)
- now properly handling errors when calling extract_as_integer
2006-05-17 10:41:41 +02:00
Eric Pouech
bf8509d37c
winedbg: Fixed regression for command 'bt all'.
...
Don't print 'process has terminated' message when detaching from a
process (or backtracing it).
2006-05-15 11:04:05 +02:00
Petr Tesarik
68f8d28945
winedbg: Fix stepping over an instruction.
2006-03-27 12:14:20 +02:00
Eric Pouech
f661e7a924
winedbg: Fixes for identifiers.
...
- fixed lexical rules for a path name
- fixed identifier rules so that we get the right precedence
between ! and ::
- modules (in mod!name forms) are now handled as tIDENTIFIER
(tPATH was buggy anyhow)
2006-03-27 11:30:50 +02:00
Jeff Latimer
0994126701
winedbg: Add display for floating point status.
...
Added code to examine and display floating point unit status into
be_i386.c as info all-regs command.
2006-03-21 16:30:47 +01:00
Jeff Latimer
18f5d0abdc
winedbg: Copy floating point status to the dbgcontext.
2006-03-20 12:04:00 +01:00
Eric Pouech
db90e17d92
dbghelp: Live target detection.
...
- DBGHELP_NOLIVE env variable is tested earlier to avoid
some strange effects in live target detection
- in WineDbg, delete DBGHELP_NOLIVE before attaching to
a process, because we know it must be a live target
2006-03-18 18:05:38 +01:00
Petr Tesarik
315c4e78cb
winedbg: Fix lcall instruction opcode.
2006-03-10 21:41:09 +01:00
Eric Pouech
81198f3971
winedbg: Bring usage() and .man up to date.
2006-03-02 11:55:12 +01:00
Eric Pouech
348067a9bf
winedbg: Add ability to reload a minidump.
...
- now recognize winedbg foo.mdmp on command line
- fleshed out tgt_minidump to reload information from minidump
2006-03-02 11:49:41 +01:00
Eric Pouech
c918e80ed2
winedbg: process_io
...
- added ability to specify process_io at process creation/attachment
time
- created a process_io structure for gdbproxy
2006-03-02 11:48:43 +01:00
Eric Pouech
f29d084c37
winedbg: main_loop.
...
- split dbg_main_loop in two parts (one for finishing the debuggee
attachment, the second one really for handling the main loop)
- removed now longer needed dbg_main_loop
2006-03-02 11:43:10 +01:00
Eric Pouech
5ca519705d
winedbg: Added a close_process method to process_io.
...
- added a close_process method to process_io
- made use of it to get rid of dbg_detach
2006-02-28 12:07:23 +01:00
Eric Pouech
4202c752d3
winedbg: Extend auto mode with minidump.
...
- added -minidump and -minidump <file> options to command line
Those options are to be used in remplacement of --auto to create a minidump
In the form --minidump <file>, the minidump will be created in <file>,
otherwise the filename will be automatically generated.
2006-02-28 12:06:33 +01:00
Eric Pouech
67001a1d8b
winedbg: Rewrite auto mode.
...
- rewrote auto mode as a specific set of commands to be run in
regular parser, instead of hard coding those commands
- added a new function to store a set of commands to be executed
in a file
- added 'echo' command to the parser functions
- got rid of dbg_action_mode
- added support of '--' on command line
2006-02-28 12:05:15 +01:00
Eric Pouech
22ff946409
winedbg: Fixed regression in gdb handling.
2006-02-28 12:05:06 +01:00
Eric Pouech
893d7524c7
winedbg: Auto mode.
...
- rewrite auto mode startup
- move part of auto handling to tgt_active.c
2006-02-27 14:30:18 +01:00
Eric Pouech
a67f8e862e
winedbg: Move gdb command line handling.
...
- moves gdb command line handling to gdbproxy.c
- using manifest constants to make code more readable
2006-02-27 14:22:21 +01:00
Eric Pouech
ac7be1e91b
winedbg: Active and command line.
...
- move process attachment and process creation (related to command
line handling) from winedbg.c to tgt_active.c
- tidy up argument parsing
2006-02-27 14:19:57 +01:00
Eric Pouech
f16f847cc7
winedbg: Cleanup the process_io usage.
...
- made be_process_io references 'const'
- make use of it for dbg_read_memory and dbg_write_memory
2006-02-27 14:17:25 +01:00
Eric Pouech
829e002c3f
winedbg: Active targets
...
Move all code related to an 'active' target (ie a running process)
from winedbg.c to tgt_active.c.
2006-02-27 14:14:05 +01:00
Eric Pouech
804cd257f6
winedbg: Fixed regression: stack info was no longer working.
2006-02-20 11:03:33 +01:00
Eric Pouech
a7ff2f671c
winedbg: A couple of fixes after running valgrind.
2006-02-16 12:06:43 +01:00
Eric Pouech
467ba4d398
winedbg: Allow using MSVC mangled symbol names as identifiers.
2006-02-14 14:03:52 +01:00
Mike Frysinger
5392844392
Add support for 'make install DESTDIR'.
2006-02-14 13:51:38 +01:00
Eric Pouech
2ce5eca6a5
winedbg: Added support for function parameters passed in registers.
...
Added correct stabs parsing for function parameters in registers.
Added a couple of helper functions to make code smaller and more
readable.
2006-02-06 11:27:32 +01:00
Eric Pouech
6ab9b23526
winedbg: Hardware breakpoints
...
- implemented hardware assisted breakpoints (new 'hbreak' command
which behaves just as 'break' command)
- small improvements to break handling (saving hit xpoint across
exception handling)
- fixed 'cont N' command for watchpoints
2006-01-27 16:17:22 +01:00
Alexandre Julliard
b7b7f2b679
Avoid importing _strlwr/_strupr from ntdll.
2006-01-24 12:24:05 +01:00
Alexandre Julliard
9daaab54c7
winedbg: Use Win32 types instead of long long.
2006-01-23 16:47:07 +01:00
Eric Pouech
9d0b5f5372
winedbg: Added a more decent scheme for handling segmented addresses.
2006-01-23 16:26:40 +01:00
Alexandre Julliard
1e96455094
Remove YY_NO defines that cause warnings.
2006-01-05 12:20:05 +01:00
Alexandre Julliard
0ae2c69c7a
Added some flex options to avoid compiler warnings.
...
Moved options from the Makefile into the source.
2006-01-03 12:16:05 +01:00
Eric Pouech
4d7f9f7c65
winedbg: Fixed broken code about type management for binary operator.
2005-12-06 10:57:17 +01:00
Eric Pouech
34db4856ae
dbghelp,winedbg: SYMBOL_INFO fix.
...
- native dbghelp returns in SYMBOL_INFO.TypeIndex the index of the
type of the symbol (we were returning the symbol index instead)
- fixed winedbg accordingly
2005-12-05 12:00:54 +01:00
Eric Pouech
56dcea4d16
winedbg: simplify some code.
2005-12-03 18:09:59 +01:00