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