]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/rx/ChangeLog
sim: testsuite: regenerate configure
[thirdparty/binutils-gdb.git] / sim / rx / ChangeLog
CommitLineData
89ab8a15
MF
12011-07-11 Mike Frysinger <vapier@gentoo.org>
2
3 * configure.ac: Rename from configure.in.
4
31a27ee8
MF
52011-07-11 Mike Frysinger <vapier@gentoo.org>
6
7 * configure.in: Add "dnl" before copyright notice.
8
af9f7da7
MF
92011-04-16 Mike Frysinger <vapier@gentoo.org>
10
11 * gdb-if.c (sim_complete_command): New stub function.
12
dae477fe
AB
132011-01-11 Andrew Burgess <aburgess@broadcom.com>
14
15 * gdb-if.c (sim_store_register): Update return value to
16 match new API.
17
29cfc22f
DD
182010-12-14 DJ Delorie <dj@redhat.com>
19
20 * rx.c (decode_opcode): For "MVFC PC,", use the address of the
21 opcode, not the address following the opcode.
45eb4d47
DD
22 (decode_opcode): RXO_branchrel is relative to the opcode's PC, not
23 the address following the opcode.
29cfc22f 24
5cbc4f2e
DD
252010-11-11 DJ Delorie <dj@redhat.com>
26
27 * rx.c (lsb_count): New.
28 (divu_cycles): New.
29 (div_cycles): New.
30 (decode_opcode): Fix cycle count math for div, divu, suntil, and
31 swhile.
32
e4dcb664
KB
332010-09-29 Kevin Buettner <kevinb@redhat.com>
34
35 * mem.c (rx_mem_ptr): When invalidating the decode cache, account
36 for the fact that the instruction decoder never uses swapped
37 addresses.
38
5f79eb72
NC
392010-09-29 Nick Clifton <nickc@redhat.com>
40
41 * rx.c (decode_opcode: RXO_int): Only break out of the emulation
42 loop if rx_syscall() does not return a RX_STEPPED result.
43
e5379772
KB
442010-09-23 Kevin Buettner <kevinb@redhat.com>
45
46 * rx.c (decode_opcode): Add cycle information for RXO_smovu.
47
8d794149
KB
482010-09-23 Kevin Buettner <kevinb@redhat.com>
49
50 * fpu.c, gdb-if.c, load.c, misc.c, syscalls.c (config.h): Include.
51
3c7be86b 52 * rx.c (decode_opcode): Declare `tx' as unsigned.
6607c80d 53
be380a3e
KB
54 * cpu.h (reset_decoder): Declare.
55 * load.c (rx_load): Call `reset_decoder'.
56 * rx.c (reset_decoder): New function.
57
f9c7014e
DD
582010-07-29 DJ Delorie <dj@redhat.com>
59
60 * rx.c (decode_cache_base): New.
61 (id_names): Remove ediv and edivu.
62 (optype_names): Add TwoReg.
63 (maybe_get_mem_page): New.
64 (rx_get_byte): Call it.
65 (get_op): Add TwoReg support.
66 (put_op): Likewise.
67 (PD, PS, PS2, GD, GS, GS2, DSZ, SSZ, S2SZ, US1, US2, OM): "opcode"
68 is a pointer now.
69 (DO_RETURN): New. We use longjmp to return an exception result.
70 (decode_opcode): Make opcode a pointer to the decode cache. Save
71 decoded opcode information and re-use. Call DO_RETURN instead of
72 return throughout. Remove ediv and edivu.
73 * mem.c (ptdc): New. Adds decode cache.
74 (rx_mem_ptr): Support it.
75 (rx_mem_decode_cache): New.
76 * mem.h (enum mem_ptr_action): add MPA_DECODE_CACHE.
77 (rx_mem_decode_cache): Declare.
78 * gdb-if.c (sim_resume): Add decode_opcode's setjmp logic here...
79 * main.c (main): ...and here. Use a fast loop if neither trace
80 nor disassemble is given.
81 * cpu.h (RX_MAKE_STEPPED, RX_MAKE_HIT_BREAK, RX_MAKE_EXITED,
82 RX_MAKE_STOPPED, RX_EXITED, RX_STOPPED): Adjust so that 0 is not a
83 valid code for anything.
84
93378652
DD
852010-07-27 DJ Delorie <dj@redhat.com>
86
87 * README.txt: New.
88 * config.h (CYCLE_ACCURATE, CYCLE_STATS): New.
89 * configure.in (--enable-cycle-accurate, --enable-cycle-stats):
90 New. Default to enabled.
91 * configure: Regenerate.
92
93 * cpu.h (regs_type): Add cycle tracking info.
94 (reset_pipeline_stats): Declare.
95 (halt_pipeline_stats): Declare.
96 (pipeline_stats): Declare.
97 * main.c (done): Call pipeline_stats().
98 * mem.h (rx_mem_ptr): Moved to here ...
99 * mem.c (mem_ptr): ... from here. Rename throughout.
100 (mem_put_byte): Move LEDs to Port A. Add Port B to control cycle
101 statistics. Move UART to SCI4.
102 (mem_put_hi): Add TPU 1-2. TPU 1 and 2 count CPU cycles.
103 * reg.c (init_regs): Set Rt reg to -1 (no reg).
104 * rx.c: Add cycle counting and statistics throughout.
105 (rx_get_byte): Optimize for speed.
106 (decode_opcode): Likewise.
107 (reset_pipeline_stats): New.
108 (halt_pipeline_stats): New.
109 (pipeline_stats): New.
110 * trace.c (sim_disasm_one): Print cycle count.
111
a1669f9a
KB
1122010-07-07 Kevin Buettner <kevinb@redhat.com>
113
114 * gdb-if.c (sim_store_register): Add case for sim_rx_acc_regnum.
115
fd60dc69
KB
1162010-06-24 Kevin Buettner <kevinb@redhat.com>
117
118 * gdb-if.c (trace.h): Include.
119 (reg_size, sim_fetch_register): Add cases for sim_rx_acc_regnum.
120
092b7bb8
NC
1212010-06-07 Nick Clifton <nickc@redhat.com>
122
123 * reg.c (set_oszc): Use unsigned int for the mask.
124 (set_szc, set_osz, set_sz): Likewise.
125
12cb7388
KB
1262010-05-28 Kevin Buettner <kevinb@redhat.com>
127
128 * gdb-if.c (sim_do_command): Add a "sim verbose noisy" command.
129
5558e7e6
MF
1302010-04-14 Mike Frysinger <vapier@gentoo.org>
131
132 * gdb-if.c (sim_write): Add const to buf arg.
133
2388a152
MM
1342010-01-30 Masaki Muranaka <monaka@monami-software.com>
135
136 * configure.in: Check if the host has getopt.h.
137 * configure: Regenerate.
138 * config.in: Regenerate.
139 * main.c: Include config.h.
140 Use HAVE_STDLIB_H, HAVE_UNISTD_H, HAVE_GETOPT_H.
141 Include getopt.h in case HAVE_GETOPT_H is defined.
142
feafbb2e
DD
1432009-12-22 Yoshinori Sato <ysato@users.sourceforge.jp>
144
145 * rx/rx.c (decode_opcode): btst bit address mask fix.
146
117f2c0d
DD
1472009-11-30 DJ Delorie <dj@redhat.com>
148
149 * rx/rx.c (decode_opcode): fix SWHILE logic.
150
4f8d4a38
DD
1512009-10-27 DJ Delorie <dj@redhat.com>
152 Kevin Buettner <kevinb@redhat.com>
153
154 * load.h: New.
155 * rx.c: New.
156 * syscalls.c: New.
157 * syscalls.h: New.
158 * load.c: New.
159 * configure.in: New.
160 * gdb-if.c: New.
161 * err.c: New.
162 * cpu.h: New.
163 * Makefile.in: New.
164 * fpu.c: New.
165 * mem.c: New.
166 * config.in: New.
167 * err.h: New.
168 * reg.c: New.
169 * mem.h: New.
170 * main.c: New.
171 * misc.h: New.
172 * trace.c: New.
173 * misc.c: New.
174 * syscall.h: New.
175 * trace.h: New.
176 * fpu.h: New.