aboutsummaryrefslogtreecommitdiff
path: root/src/target/etm.h
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2015-01-17 15:15:11 +0300
committerPaul Fertser <fercerpav@gmail.com>2015-01-30 08:56:54 +0000
commit355f4cadbbf10c75cf05fb1a82bf918b3ab65c55 (patch)
treef874ce4af77346c82220be72f217b2b311cff380 /src/target/etm.h
parent9d745a0690f6f5c24d914ebfa3c1d6b824a19a5e (diff)
downloadriscv-openocd-355f4cadbbf10c75cf05fb1a82bf918b3ab65c55.zip
riscv-openocd-355f4cadbbf10c75cf05fb1a82bf918b3ab65c55.tar.gz
riscv-openocd-355f4cadbbf10c75cf05fb1a82bf918b3ab65c55.tar.bz2
Use (uint8_t *) for buf_(set|get)_u(32|64) instead of (void *)
This helps to uncover incorrect usage when a pointer to uint32_t is passed to those functions which leads to subtle bugs on BE systems. The reason is that it's normally assumed that any uint32_t variable holds its value in host byte order, but using but_set_u32 on it silently does implicit pointer conversion to (void *) and the assumption ends up broken without any indication. Change-Id: I48ffd190583d8aa32ec1fef8f1cdc0b4184e4546 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/2467 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'src/target/etm.h')
-rw-r--r--src/target/etm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/etm.h b/src/target/etm.h
index ded18e9..ff7925b 100644
--- a/src/target/etm.h
+++ b/src/target/etm.h
@@ -72,7 +72,7 @@ enum {
};
struct etm_reg {
- uint32_t value;
+ uint8_t value[4];
const struct etm_reg_info *reg_info;
struct arm_jtag *jtag_info;
};