diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2010-07-16 23:19:37 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2010-07-16 23:19:37 +0000 |
commit | 431e49aac1a3380de203af04b119f01401765ead (patch) | |
tree | 654f13093b636c7e531400a149aaebedf3ad205b | |
parent | bd91e7ae05e3bee2640ab0be848a79bfcd081dcc (diff) | |
download | gdb-431e49aac1a3380de203af04b119f01401765ead.zip gdb-431e49aac1a3380de203af04b119f01401765ead.tar.gz gdb-431e49aac1a3380de203af04b119f01401765ead.tar.bz2 |
* NEWS: Mention support for the new ptrace interface and hardware
accelerated watchpoint conditions on powerpc-linux.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/NEWS | 15 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9f0ad56..5472aa9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com> + + * NEWS: Mention support for the new ptrace interface and hardware + accelerated watchpoint conditions on powerpc-linux. + 2010-07-16 Ozkan Sezer <sezeroz@gmail.com> * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned @@ -223,6 +223,21 @@ ARM Symbian arm*-*-symbianelf* GDB now supports debugging programs written in the D programming language. +* GDB now supports the extended ptrace interface for PowerPC which is + available since Linux kernel version 2.6.34. This automatically enables + any hardware breakpoints and additional hardware watchpoints available in + the processor. The old ptrace interface exposes just one hardware + watchpoint and no hardware breakpoints. + +* GDB is now able to use the Data Value Compare (DVC) register available on + embedded PowerPC processors to implement in hardware simple watchpoint + conditions of the form: + + watch ADDRESS|VARIABLE if ADDRESS|VARIABLE == CONSTANT EXPRESSION + + This works in native GDB running on Linux kernels with the extended ptrace + interface mentioned above. + *** Changes in GDB 7.1 * C++ Improvements |