diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-12 13:29:02 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-12 04:19:45 -0400 |
commit | db7858e227f3951c665410314fca62c77349ac24 (patch) | |
tree | 01fb8b93600bc89ef86a7e883ca17e3df8387174 /sim/sh64/ChangeLog | |
parent | 966f0aefa6a96df2c45ec36a7ecc02419e3842db (diff) | |
download | gdb-db7858e227f3951c665410314fca62c77349ac24.zip gdb-db7858e227f3951c665410314fca62c77349ac24.tar.gz gdb-db7858e227f3951c665410314fca62c77349ac24.tar.bz2 |
sim: cgen: namespace custom trace functions
The cgen code declares some macros/funcs using the trace_xxx prefix, but
the code isn't generic and only works with cgen targets. This is blocking
the creation of new common trace functions.
Let's blindly add cgen_xxx prefixes to all these symbols. Some already
use this convention to avoid conflicts, so it makes sense to align them.
In the future we might want to move some to the common trace core, but
one thing at a time.
Diffstat (limited to 'sim/sh64/ChangeLog')
-rw-r--r-- | sim/sh64/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sim/sh64/ChangeLog b/sim/sh64/ChangeLog index e8b81e1..a443a1a 100644 --- a/sim/sh64/ChangeLog +++ b/sim/sh64/ChangeLog @@ -1,3 +1,19 @@ +2015-06-12 Mike Frysinger <vapier@gentoo.org> + + * decode-compact.c (sh64_compact_decode): Change TRACE_EXTRACT to + CGEN_TRACE_EXTRACT. + * decode-media.c: Likewise. + * mloop-compact.in (execute): Change TRACE_INSN_INIT to + CGEN_TRACE_INSN_INIT, TRACE_INSN to CGEN_TRACE_INSN, and TRACE_INSN_FINI + to CGEN_TRACE_INSN_FINI. + (sh64_compact_pbb_before): Likewise. + (sh64_compact_pbb_after): Change TRACE_INSN_FINI to CGEN_TRACE_INSN_FINI. + * mloop-media.in: Likewise. + * sem-compact.c: Rename TRACE_RESULT to CGEN_TRACE_RESULT. + * sem-compact-switch.c: Likewise. + * sem-media.c: Likewise. + * sem-media-switch.c: Likewise. + 2015-04-18 Mike Frysinger <vapier@gentoo.org> * sim-main.h (USING_SIM_BASE_H): Delete. |