]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/m32c/ChangeLog
63d6b4acf112a4a9c5719a10a292a88933b4ecf5
[thirdparty/binutils-gdb.git] / sim / m32c / ChangeLog
1 2012-05-24 Pedro Alves <palves@redhat.com>
2
3 PR gdb/7205
4
5 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6
7 2012-05-18 Nick Clifton <nickc@redhat.com>
8
9 PR 14072
10 * gdb-if.c: Include config.h before system header files.
11 * load.c: Likewise.
12 * syscalls.c: Likewise.
13 * trace.c: Likewise.
14
15 2012-03-24 Mike Frysinger <vapier@gentoo.org>
16
17 * aclocal.m4, config.in, configure: Regenerate.
18
19 2012-01-02 Joel Brobecker <brobecker@adacore.com>
20
21 * blinky.S, gloss.S, sample.S: Reformat copyright header.
22
23 2011-12-03 Mike Frysinger <vapier@gentoo.org>
24
25 * aclocal.m4: New file.
26 * configure: Regenerate.
27
28 2011-10-17 Mike Frysinger <vapier@gentoo.org>
29
30 * configure.ac: Change include to common/acinclude.m4.
31
32 2011-10-17 Mike Frysinger <vapier@gentoo.org>
33
34 * configure.ac: Change AC_PREREQ to 2.64. Delete AC_CONFIG_HEADER
35 call. Replace common.m4 include with SIM_AC_COMMON.
36 * configure: Regenerate.
37
38 2011-07-11 Mike Frysinger <vapier@gentoo.org>
39
40 * configure.ac: Rename from configure.in.
41
42 2011-07-11 Mike Frysinger <vapier@gentoo.org>
43
44 * configure.in: Add "dnl" before copyright notice.
45
46 2011-04-16 Mike Frysinger <vapier@gentoo.org>
47
48 * gdb-if.c (sim_complete_command): New stub function.
49
50 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
51
52 * gdb-if.c (sim_store_register): Update return value to
53 match new API.
54
55 2010-12-04 Masaki Muranaka <monaka@monami-software.com>
56
57 * Makefile.in: Use CC_FOR_BUILD to build opc2c.
58
59 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
60
61 * main.c (setup_tcp_console): Check error return from socket() call
62 by its equality to -1 not by it being negative.
63
64 2010-04-14 Mike Frysinger <vapier@gentoo.org>
65
66 * gdb-if.c (sim_write): Add const to buf arg.
67 * mem.h (mem_put_blk): Add const to bufptr arg.
68 * mem.c (mem_put_blk): Likewise, and add const to cast.
69
70 2010-01-20 DJ Delorie <dj@redhat.com>
71
72 * m32c.opc (MATH_OP): When doing subtraction, also set carry if
73 the result is zero.
74
75 2010-01-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
76
77 * configure: Regenerate.
78
79 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
80
81 * config.in: Regenerate.
82 * configure: Likewise.
83
84 * configure: Regenerate.
85
86 2009-08-14 DJ Delorie <dj@redhat.com>
87
88 * configure.in: Check for sys/select.h, termios.h, sys/socket.h,
89 netinet/in.h, and netinet/tcp.h.
90 * configure: Regenerate.
91 * config.in: Add those headers.
92 * main.c: Check for them.
93 (setup_tcp_console): Disable if no networking.
94 (main): Note missing networking or termios.
95 * mem.c: Check for those headers.
96 (stdin_ready): Disable if no termios.
97 (m32c_sim_restore_console): Disable if no termios.
98 (mem_get_byte): Disable console input if no termios.
99
100 2009-01-06 Joel Sherrill <joel.sherrill@oarcorp.com>
101
102 * r8c.opc, m32c.opc: Add parentheses to remove warnings.
103
104 2008-10-01 DJ Delorie <dj@redhat.com>
105
106 * int.c (trigger_peripheral_interrupt): Clear interrupt pending
107 bit when peripheral interrupts are serviced.
108
109 2008-07-11 Hans-Peter Nilsson <hp@axis.com>
110
111 * configure: Regenerate to track ../common/common.m4 changes.
112 * config.in: Ditto.
113
114 2008-06-16 DJ Delorie <dj@redhat.com>
115
116 * m32c.opc (BRK, GDBBRK): Remove debug logic.
117 * main.c (main): Add option to set raw console.
118 * mem.h (m32c_use_raw_console): Declare.
119 * mem.c (m32c_sim_restore_console): Only restore console if it's
120 been previously set.
121 (m32c_use_raw_console): Define.
122 (mem_get_byte): Set raw console if m32c_use_raw_console is set.
123
124 2008-06-06 Vladimir Prus <vladimir@codesourcery.com>
125 Daniel Jacobowitz <dan@codesourcery.com>
126 Joseph Myers <joseph@codesourcery.com>
127
128 * configure: Regenerate.
129
130 2008-06-06 DJ Delorie <dj@redhat.com>
131
132 * Makefile.in: Add Timer A support.
133 * cpu.h (m32c_opcode_pc): New.
134 (in_gdb): New.
135 * gdb-if.c (sim_open): Add Timer A support. Support unbuffered
136 console.
137 * int.c (trigger_interrupt): Manage the U flag properly.
138 (trigger_based_interrupt): Likewise.
139 (trigger_fixed_interrupt): New.
140 (trigger_peripheral_interrupt): New.
141 * int.h (trigger_peripheral_interrupt): New.
142 * m32c.opc: Use m32c_opcode_pc throughout, as needed.
143 (decode_m32c): Detect jump-to-zero with traceback.
144 (BRK): Try to do the right thing, keeping track of whether we're
145 in gdb or not, and if the user has provided a handler or not.
146 (GBRK): Alternate break opcode for gdb, in case the user's app
147 needs to use BRK for itself.
148 (BRK2): Implement.
149 * main.c: Add Timer A support. Support TCP-based console.
150 (setup_tcp_console): New.
151 (main): Add Timer A support. Support TCP-based console.
152 * mem.h (m32c_sim_restore_console): New.
153 * mem.c: Add Timer A support. Support TCP-based console.
154 (mem_ptr): Enhance NULL pointer detection.
155 (stdin_ready): New.
156 (m32c_sim_restore_console): New.
157 (mem_get_byte): Check for console input ready.
158 (update_timer_a): New.
159 * r8c.opc (SSTR): Use r0l, not r0h.
160 (REIT): Fix return frame logic.
161 * reg.c (print_flags): New.
162 (trace_register_changes): Use it.
163 (m32c_dump_all_registers): New.
164 * timer_a.h: New.
165
166 * load.c: Fix indentation.
167 * trace.c: Fix indentation.
168 * trace.h: Fix indentation.
169
170 2006-06-26 DJ Delorie <dj@redhat.com>
171
172 * r8c.opc (decode_r8c): Don't bother reading the destination
173 before moving a constant into it. Fix borrow comparison for SUB.
174
175 2006-06-13 Richard Earnshaw <rearnsha@arm.com>
176
177 * configure: Regenerated.
178
179 2006-06-05 Daniel Jacobowitz <dan@codesourcery.com>
180
181 * configure: Regenerated.
182
183 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
184
185 * configure: Regenerated.
186
187 2006-03-13 DJ Delorie <dj@redhat.com>
188
189 * mem.c (mem_put_byte): Hook simulated UART to stdout.
190 (mem_put_hi): Hook in simulated trace port.
191 (mem_get_byte): Hook in simulated uart control port.
192 * opc2c: Be more picky about matching special comments.
193 * r8c.opc (shift_op): Limit shift counts to -16..16.
194 (BMcnd): Map conditional codes.
195 * reg.c (condition_true): Mask condition code to 4 bits.
196 * syscalls.c: Include local syscall.h.
197 * syscall.h: New, copied from libgloss.
198
199 2005-10-06 Jim Blandy <jimb@redhat.com>
200
201 Simulator for Renesas M32C and M16C, by DJ Delorie <dj@redhat.com>,
202 with further work from Jim Blandy <jimb@redhat.com> and
203 Kevin Buettner <kevinb@redhat.com>.
204
205 * ChangeLog: New.
206 * Makefile.in: New.
207 * blinky.S: New.
208 * config.in: New.
209 * configure: New.
210 * configure.in: New.
211 * cpu.h: New.
212 * gdb-if.c: New.
213 * gloss.S: New.
214 * int.c: New.
215 * int.h: New.
216 * load.c: New.
217 * load.h: New.
218 * m32c.opc: New.
219 * main.c: New.
220 * mem.c: New.
221 * mem.h: New.
222 * misc.c: New.
223 * misc.h: New.
224 * opc2c.c: New.
225 * r8c.opc: New.
226 * reg.c: New.
227 * safe-fgets.c: New.
228 * safe-fgets.h: New.
229 * sample.S: New.
230 * sample.ld: New.
231 * sample2.c: New.
232 * srcdest.c: New.
233 * syscalls.c: New.
234 * syscalls.h: New.
235 * trace.c: New.
236 * trace.h: New.
237
238