Questions tagged [reverse-debugging]

21 questions
3
votes
4 answers

Modifying code during a debugging session.

Does anyone know of a Debugger or Programming Language that allows you to set a break point, and then modify the code and then execute the newly modified code. This is even more useful if the Debugger also had the ability for reverse debugging. So…
rook
  • 66,304
  • 38
  • 162
  • 239
3
votes
2 answers

Are changes made to the GOT expected to be reversed during reverse debugging?

Is it expected that changes made to a program's address space would not be reverted during reverse debugging? I have been debugging a program which segfaults when a pointer to strlen in the GOT becomes corrupted during the course of execution.…
user001
  • 1,850
  • 4
  • 27
  • 42
3
votes
1 answer

Can I get reverse debugging functionality for Visual Studio 2013 Professional?

I know that GDB comes with reverse debugging, but is there a way I can get this functionality in Visual Studio 2013 Pro?
1
vote
2 answers

Debugger ignores me

Having code: Date::Date(const char* day, const char* month, const char* year):is_leap__(false) { my_day_ = lexical_cast(day); my_month_ = static_cast(lexical_cast(month)); /*Have to check month here, other ctor…
There is nothing we can do
  • 23,727
  • 30
  • 106
  • 194
0
votes
1 answer

R: Enriched debugging for linear code chains

I am trying to figure out if it is possible, with a sane amount of programming, to create a certain debugging function by using R's metaprogramming features. Suppose I have a block of code, such that each line uses as all or part of its input the…
andrewH
  • 2,281
  • 2
  • 22
  • 32
0
votes
0 answers

Enable reverse debugging in QtCreator for non-gui methods

I have 2 installations of QtCreator on Windows (with MingW, gcc, g++, make and gdb) and on Ubuntu. On the 2 OS I am able to run some Qt programs (with Qt Windows) or console programs, and debug programs. But I tried without success the reverse…
lolveley
  • 1,659
  • 2
  • 18
  • 34
1
2