]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/rx/ChangeLog
daily update
[thirdparty/binutils-gdb.git] / sim / rx / ChangeLog
CommitLineData
31e6ad7d
MF
12013-06-03 Mike Frysinger <vapier@gentoo.org>
2
3 * aclocal.m4, configure: Regenerate.
4
04e65a62
NC
52013-01-16 Nick Clifton <nickc@redhat.com>
6
7 * rx.c (decode_opcode): Handle RXO_satr.
8
5f3ef9d0
JB
92012-06-15 Joel Brobecker <brobecker@adacore.com>
10
11 * config.in, configure: Regenerate.
12
a493e3e2
PA
132012-05-24 Pedro Alves <palves@redhat.com>
14
15 PR gdb/7205
16
17 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
18
2232061b
MF
192012-03-24 Mike Frysinger <vapier@gentoo.org>
20
21 * aclocal.m4, config.in, configure: Regenerate.
22
abcee8fd
MF
232012-03-22 Mike Frysinger <vapier@gentoo.org>
24
25 * configure.ac (CYCLE_ACCURATE): Add template with AC_DEFINE call.
26 (CYCLE_STATS): Likewise.
27
d98bfeb0
KB
282012-03-02 Kevin Buettner <kevinb@redhat.com>
29
30 * load.h (rx_load): Add `callback' parameter to function prototype.
31 (gdb/callback.h): Include.
32 * load.c (load.h): Include.
33 (xprintf, find_section_name_by_offset): New functions.
34 (rx_load): Add `callback' parameter. Add code for printing
35 section loaded using GDB's printf facilities.
36 * gdb-if.c (sim_load, sim_create_inferior): Update calls to
37 rx_load().
38 * main.c (main): Likewise.
39 * syscalls.c, syscalls.h (get_callbacks): New function.
40
db2e4d67
MF
412011-12-03 Mike Frysinger <vapier@gentoo.org>
42
43 * aclocal.m4: New file.
44 * configure: Regenerate.
45
9c082ca8
MF
462011-10-17 Mike Frysinger <vapier@gentoo.org>
47
48 * configure.ac: Change include to common/acinclude.m4.
49
6ffe910a
MF
502011-10-17 Mike Frysinger <vapier@gentoo.org>
51
52 * configure.ac: Change AC_PREREQ to 2.64. Delete AC_CONFIG_HEADER
53 call. Replace common.m4 include with SIM_AC_COMMON.
54 * configure: Regenerate.
55
89ab8a15
MF
562011-07-11 Mike Frysinger <vapier@gentoo.org>
57
58 * configure.ac: Rename from configure.in.
59
31a27ee8
MF
602011-07-11 Mike Frysinger <vapier@gentoo.org>
61
62 * configure.in: Add "dnl" before copyright notice.
63
af9f7da7
MF
642011-04-16 Mike Frysinger <vapier@gentoo.org>
65
66 * gdb-if.c (sim_complete_command): New stub function.
67
dae477fe
AB
682011-01-11 Andrew Burgess <aburgess@broadcom.com>
69
70 * gdb-if.c (sim_store_register): Update return value to
71 match new API.
72
29cfc22f
DD
732010-12-14 DJ Delorie <dj@redhat.com>
74
75 * rx.c (decode_opcode): For "MVFC PC,", use the address of the
76 opcode, not the address following the opcode.
45eb4d47
DD
77 (decode_opcode): RXO_branchrel is relative to the opcode's PC, not
78 the address following the opcode.
29cfc22f 79
5cbc4f2e
DD
802010-11-11 DJ Delorie <dj@redhat.com>
81
82 * rx.c (lsb_count): New.
83 (divu_cycles): New.
84 (div_cycles): New.
85 (decode_opcode): Fix cycle count math for div, divu, suntil, and
86 swhile.
87
e4dcb664
KB
882010-09-29 Kevin Buettner <kevinb@redhat.com>
89
90 * mem.c (rx_mem_ptr): When invalidating the decode cache, account
91 for the fact that the instruction decoder never uses swapped
92 addresses.
93
5f79eb72
NC
942010-09-29 Nick Clifton <nickc@redhat.com>
95
96 * rx.c (decode_opcode: RXO_int): Only break out of the emulation
97 loop if rx_syscall() does not return a RX_STEPPED result.
98
e5379772
KB
992010-09-23 Kevin Buettner <kevinb@redhat.com>
100
101 * rx.c (decode_opcode): Add cycle information for RXO_smovu.
102
8d794149
KB
1032010-09-23 Kevin Buettner <kevinb@redhat.com>
104
105 * fpu.c, gdb-if.c, load.c, misc.c, syscalls.c (config.h): Include.
106
3c7be86b 107 * rx.c (decode_opcode): Declare `tx' as unsigned.
6607c80d 108
be380a3e
KB
109 * cpu.h (reset_decoder): Declare.
110 * load.c (rx_load): Call `reset_decoder'.
111 * rx.c (reset_decoder): New function.
112
f9c7014e
DD
1132010-07-29 DJ Delorie <dj@redhat.com>
114
115 * rx.c (decode_cache_base): New.
116 (id_names): Remove ediv and edivu.
117 (optype_names): Add TwoReg.
118 (maybe_get_mem_page): New.
119 (rx_get_byte): Call it.
120 (get_op): Add TwoReg support.
121 (put_op): Likewise.
122 (PD, PS, PS2, GD, GS, GS2, DSZ, SSZ, S2SZ, US1, US2, OM): "opcode"
123 is a pointer now.
124 (DO_RETURN): New. We use longjmp to return an exception result.
125 (decode_opcode): Make opcode a pointer to the decode cache. Save
126 decoded opcode information and re-use. Call DO_RETURN instead of
127 return throughout. Remove ediv and edivu.
128 * mem.c (ptdc): New. Adds decode cache.
129 (rx_mem_ptr): Support it.
130 (rx_mem_decode_cache): New.
131 * mem.h (enum mem_ptr_action): add MPA_DECODE_CACHE.
132 (rx_mem_decode_cache): Declare.
133 * gdb-if.c (sim_resume): Add decode_opcode's setjmp logic here...
134 * main.c (main): ...and here. Use a fast loop if neither trace
135 nor disassemble is given.
136 * cpu.h (RX_MAKE_STEPPED, RX_MAKE_HIT_BREAK, RX_MAKE_EXITED,
137 RX_MAKE_STOPPED, RX_EXITED, RX_STOPPED): Adjust so that 0 is not a
138 valid code for anything.
139
93378652
DD
1402010-07-27 DJ Delorie <dj@redhat.com>
141
142 * README.txt: New.
143 * config.h (CYCLE_ACCURATE, CYCLE_STATS): New.
144 * configure.in (--enable-cycle-accurate, --enable-cycle-stats):
145 New. Default to enabled.
146 * configure: Regenerate.
147
148 * cpu.h (regs_type): Add cycle tracking info.
149 (reset_pipeline_stats): Declare.
150 (halt_pipeline_stats): Declare.
151 (pipeline_stats): Declare.
152 * main.c (done): Call pipeline_stats().
153 * mem.h (rx_mem_ptr): Moved to here ...
154 * mem.c (mem_ptr): ... from here. Rename throughout.
155 (mem_put_byte): Move LEDs to Port A. Add Port B to control cycle
156 statistics. Move UART to SCI4.
157 (mem_put_hi): Add TPU 1-2. TPU 1 and 2 count CPU cycles.
158 * reg.c (init_regs): Set Rt reg to -1 (no reg).
159 * rx.c: Add cycle counting and statistics throughout.
160 (rx_get_byte): Optimize for speed.
161 (decode_opcode): Likewise.
162 (reset_pipeline_stats): New.
163 (halt_pipeline_stats): New.
164 (pipeline_stats): New.
165 * trace.c (sim_disasm_one): Print cycle count.
166
a1669f9a
KB
1672010-07-07 Kevin Buettner <kevinb@redhat.com>
168
169 * gdb-if.c (sim_store_register): Add case for sim_rx_acc_regnum.
170
fd60dc69
KB
1712010-06-24 Kevin Buettner <kevinb@redhat.com>
172
173 * gdb-if.c (trace.h): Include.
174 (reg_size, sim_fetch_register): Add cases for sim_rx_acc_regnum.
175
092b7bb8
NC
1762010-06-07 Nick Clifton <nickc@redhat.com>
177
178 * reg.c (set_oszc): Use unsigned int for the mask.
179 (set_szc, set_osz, set_sz): Likewise.
180
12cb7388
KB
1812010-05-28 Kevin Buettner <kevinb@redhat.com>
182
183 * gdb-if.c (sim_do_command): Add a "sim verbose noisy" command.
184
5558e7e6
MF
1852010-04-14 Mike Frysinger <vapier@gentoo.org>
186
187 * gdb-if.c (sim_write): Add const to buf arg.
188
2388a152
MM
1892010-01-30 Masaki Muranaka <monaka@monami-software.com>
190
191 * configure.in: Check if the host has getopt.h.
192 * configure: Regenerate.
193 * config.in: Regenerate.
194 * main.c: Include config.h.
195 Use HAVE_STDLIB_H, HAVE_UNISTD_H, HAVE_GETOPT_H.
196 Include getopt.h in case HAVE_GETOPT_H is defined.
197
feafbb2e
DD
1982009-12-22 Yoshinori Sato <ysato@users.sourceforge.jp>
199
200 * rx/rx.c (decode_opcode): btst bit address mask fix.
201
117f2c0d
DD
2022009-11-30 DJ Delorie <dj@redhat.com>
203
204 * rx/rx.c (decode_opcode): fix SWHILE logic.
205
4f8d4a38
DD
2062009-10-27 DJ Delorie <dj@redhat.com>
207 Kevin Buettner <kevinb@redhat.com>
208
209 * load.h: New.
210 * rx.c: New.
211 * syscalls.c: New.
212 * syscalls.h: New.
213 * load.c: New.
214 * configure.in: New.
215 * gdb-if.c: New.
216 * err.c: New.
217 * cpu.h: New.
218 * Makefile.in: New.
219 * fpu.c: New.
220 * mem.c: New.
221 * config.in: New.
222 * err.h: New.
223 * reg.c: New.
224 * mem.h: New.
225 * main.c: New.
226 * misc.h: New.
227 * trace.c: New.
228 * misc.c: New.
229 * syscall.h: New.
230 * trace.h: New.
231 * fpu.h: New.