tools within a debugger Flashcards
Describe the function of a trace.(f)
a facility
displays the order in which the lines of a program will be executed in
and possibly the values of variables as the code is being run
Describe the function of a break point.(f)
a facility
interrupts a program at a specific line allowing the programmer to compare the current variable value with the expected value
Describe the function of a variable watch.(f)
a facility
displays current value of any variable
value can be watched as the program is single stepped to see effects of code onto the variable
Describe the function of single stepping.
program code being executed one line at a time
programmer decides when next step will take place
this helps so that they can examine carefully what the program is doing at the moment
Describe the function of a store dump.
displays the contents of all the stores used in the program
Describe the function of a memory inspector. (f)
a facility
displays contents of all of the stores in a defined section of memory
Describe the function of error diagnostics.
displays error message to help programmer diagnose what has gone wrong when a program fails to run successfully