Approved by Jim Blandy:
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2001-12-08 Fred Fish <fnf@redhat.com>
2
3 * c-lang.c (c_create_fundamental_type): For FT_CHAR, pass
4 TYPE_FLAG_NOSIGN to init_type() rather than setting it after the
5 type is created.
6
7 2001-12-08 Fred Fish <fnf@redhat.com>
8
9 * dwarf2read.c (TYPE_FLAG_VARARGS): Remove from here.
10 * gdbtypes.h (TYPE_FLAG_VARARGS): Add here and change value to
11 not collide with other flag bits.
12
13 2001-12-08 Fred Fish <fnf@redhat.com>
14
15 * dwarf2read.c (read_base_type): Rename is_unsigned to type_flags.
16 For unsigned types set TYPE_FLAG_UNSIGNED and pass it to
17 init_type().
18
19 2001-12-08 Daniel Jacobowitz <drow@mvista.com>
20
21 * Makefile.in (cp-valprint.o): Add dependency on $(cp_abi_h).
22
23 2001-12-08 Jim Blandy <jimb@redhat.com>
24
25 * config/s390/s390.mh: Don't use the linux-thread.o module;
26 thread-db.o, lin-lwp.o, and proc-service.o should work just fine.
27
28 2001-12-07 Andrew Cagney <ac131313@redhat.com>
29
30 * PROBLEMS: New file.
31 * README: Move known problems to PROBLEMS file.
32
33 2001-12-07 Daniel Jacobowitz <drow@mvista.com>
34
35 * stabsread.c (read_member_functions): Skip member functions which
36 are duplicates of the callable constructor/destructor.
37
38 2001-12-07 Jim Blandy <jimb@redhat.com>
39
40 * s390-tdep.c (s390_store_return_value): Don't convert float
41 values to double format when returning them; just return them in
42 the first half of the FP register, as the ABI specifies.
43
44 2001-12-07 Daniel Jacobowitz <drow@mvista.com>
45
46 * valops.c (hand_function_call): Check for method arguments in
47 TYPE_ARG_TYPES(), not in TYPE_FIELD ().
48
49 2001-12-07 Daniel Jacobowitz <drow@mvista.com>
50
51 * cp-valprint.c (cp_print_value): Preserve offset if
52 the virtual base is outside of this object.
53
54 2001-12-07 Daniel Jacobowitz <drow@mvista.com>
55
56 * gdbtypes.c (finish_cv_type): New function.
57 (check_typedef): Remove ``register'' keyword from argument.
58 Preserve const and volatile attributes across filling in
59 opaque types.
60 * gdbtypes.h (finish_cv_type): Add prototype.
61
62 * hp-symtab-read.c (hpread_read_struct_type): Call finish_cv_type.
63 * stabsread.c (read_struct_type): Likewise.
64 * dwarf2read.c (read_structure_scope): Likewise. Remove redundant
65 assignment to die->type.
66
67 2001-12-07 Jim Blandy <jimb@redhat.com>
68
69 * printcmd.c (print_scalar_formatted): Compare the length of the
70 value against the lengths of the target's floating-point types,
71 not the host's. Add support for `long double'.
72
73 2001-12-07 Martin M. Hunt <hunt@redhat.com>
74
75 * configure.in: Check for sys/filio.h
76 * configure: Rebuild.
77 * config.in: Add HAVE_SYS_FILIO_H
78 * ser-tcp.c: Conditionally include sys/filio.h.
79
80 2001-12-07 Andrew Cagney <ac131313@redhat.com>
81
82 * ui-out.c (ui_out_table_begin): Initialize body_flag.
83 (struct ui_out_table): New structure. Move table fields to here.
84 Rename headercurr to headernext.
85 (struct ui_out): Remove table specific fields. Add field table.
86 (ui_out_table_begin, ui_out_table_body, ui_out_table_end): Update.
87 (ui_out_table_header, ui_out_begin): Update.
88 (verify_field_proper_position, verify_field_alignment): Update.
89 (ui_out_new, clear_header_list, append_header_to_list): Update.
90 (get_next_header): Rename get_curr_header. Update comments and
91 code.
92
93 2001-12-06 Andrew Cagney <ac131313@redhat.com>
94
95 * regcache.c (XCALLOC): Delete macro that should not have been
96 added.
97
98 2001-12-07 Jiri Smid <smid@suse.cz>
99
100 * dwarf2cfi.c: New file.
101 * dwarf2cfi.h: New file.
102 * dwarf2read.c (dwarf_frame_offset, dwarf_frame_size): New variables.
103 (dwarf_eh_frame_offset, dwarf_eh_frame_size): New variables.
104 (dwarf2_read_section): Change to non static.
105 (dwarf2_locate_sections): Add .debug_frame and .eh_frame section
106 recognition.
107 (FRAME_SECTION, EH_FRAME_SECTION): New define.
108 * elfread.c (elf_symfile_read): Add call of frame informations build.
109 * frame.h (frame_info): Add pointer to unwind_context.
110 * symfile.h (dwarf2_build_frame_info): Add declaration.
111 * gdbarch.sh (DWARF2_BUILD_FRAME_INFO): Add.
112 * gdbarch.h, gdbarch.c: Regenerate.
113 * Makefile.in: Add dwarf2cfi_h, dwarf2cfi.o
114 * x86-64-tdep.c (i386_gdbarch_init): Initialize target vector to
115 use debug frame info.
116
117 2001-12-06 Andrew Cagney <ac131313@redhat.com>
118
119 * defs.h: Do not include "mmalloc.h".
120 (mcalloc, mmalloc, mrealloc, mfree): Delete declaration.
121 * objfiles.c: Include "mmalloc.h".
122 * utils.c: Include "mmalloc.h".
123 (mmalloc, mfree, mrealloc, mmalloc): Make static, change PTR to
124 void pointer.
125
126 2001-12-06 Andrew Cagney <ac131313@redhat.com>
127
128 * regcache.c (store_register, fetch_register): Only use
129 fetch/store pseudo-register when function is present. Assume
130 target can handle all registers.
131 (registers_changed): Simplify invalidate loop.
132 (registers_fetched): Add comments.
133 (register_buffer): Add regnum range assertion. Remove code
134 handling -ve regnum.
135 (build_regcache): Make space for pseudo-registers when computing
136 sizeof_registers. Initialize register_offset.
137
138 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Change to a function with
139 predicate.
140 (STORE_PSEUDO_REGISTER): Ditto.
141 * gdbarch.h, gdbarch.c: Re-generate.
142
143 2001-12-06 Jim Blandy <jimb@redhat.com>
144
145 * config/s390/nm-linux.h: Watchpoints are either continuable or
146 steppable, not both. The S/390 has continuable watchpoints, so
147 delete the #definition of HAVE_STEPPABLE_WATCHPOINT.
148
149 2001-12-04 Pierre Muller <muller@ics.u-strasbg.fr>
150
151 * go32-nat.c (go32_fetch_registers): Remove call to register_buffer
152 (which is now a static function in regcache.c)
153 and use regcache_collect instead.
154
155 2001-12-05 Andrew Cagney <cagney@redhat.com>
156
157 * target.c (cleanup_target): Do not initialize to_query to
158 return_zero.
159
160 2001-12-05 Jim Blandy <jimb@redhat.com>
161
162 * s390-tdep.c (s390_get_frame_info): Recognize argument register
163 spills that use the `stm' instruction.
164 (is_arg_reg): New function.
165
166 2001-12-03 Keith Walker <keith.walker@arm.com>
167
168 * gdbserver/low-linux.c (arm_register_u_addr): Added.
169 (initialize_arch): Added for ARM target.
170 * config/arm/nm-linux.h (U_REGS_OFFSET): Defined.
171 (REGISTER_U_ADDR): Defined.
172 * config/arm/tm-linux.h (ARM_GNULINUX_TARGET): Defined.
173
174 2001-12-04 Corinna Vinschen <vinschen@redhat.com>
175
176 * arm-tdep.c (arm_skip_prologue): Always skip prologue by scanning
177 the prologue if source is assembler.
178
179 2001-12-04 Jackie Smith Cashion <jsmith@redhat.com>
180
181 * MAINTAINERS (write-after-approval): Add self.
182
183 * d10v-tdep.c (d10v_gdbarch_init): Change size of long long to 8 bytes.
184
185 From Andrew Cagney <cagney@redhat.com>:
186 * d10v-tdep.c (d10v_frame_chain_valid): Check if the caller's PC
187 is in the entry function.
188 (d10v_use_struct_convention): Store multi-field struct and union
189 return values on the stack.
190
191 2001-12-04 Jim Blandy <jimb@redhat.com>
192
193 * s390-tdep.c (s390_get_frame_info): Recognize spills of reg
194 arguments into their stack slots.
195
196 * s390-tdep.c (s390_get_frame_info): More doc fixes.
197
198 * s390-tdep.c (s390_get_frame_info): Doc fixes.
199
200 2001-12-04 Orjan Friberg <orjanf@axis.com>
201
202 * cris-tdep.c (cris_regnums): Add DCCR_REGNUM for completeness.
203 (cris_examine): Add comment about solib prologue parsing.
204 (bdap_prefix): Read offset with correct signedness and size.
205 (move_to_preg_op): Don't rely on register numbering for register size.
206 (none_reg_mode_move_from_preg_op): Ditto.
207
208 2001-12-04 Orjan Friberg <orjanf@axis.com>
209
210 * solib.c (solib_open): Make path relative if search for absolute path
211 failed. If search for relative path in solib_search_path failed, fall
212 back to search for basename only.
213
214 2001-12-03 Martin M. Hunt <hunt@redhat.com>
215
216 * serial.h: Add a note to serial_open.
217
218 * ser-tcp.c (tcp_open): Rewrite to use a non-blocking connect.
219 Allow UI and CLI to abort connect. Instead of trying 15 times
220 with very long timeouts, just try one connect with a maximum timeout
221 of 15 seconds.
222
223 2001-12-03 Kevin Buettner <kevinb@redhat.com>
224
225 * config/powerpc/tm-macos.h (solib.h): Include.
226 * config/powerpc/tm-ppc-eabi.h (solib.h): Include.
227
228 2001-12-03 Michael Snyder <msnyder@redhat.com>
229
230 * symtab.c (search_symbols): Make sure alloca size is big enough.
231
232 2001-12-03 Andrew Cagney <ac131313@redhat.com>
233
234 * MAINTAINERS: Prune m68k targets down to just m68k-elf.
235
236 2001-12-03 Jim Blandy <jimb@redhat.com>
237
238 * s390-tdep.c (s390_get_frame_info): Don't used fextra_info to set
239 orig_sp if it's not initialized.
240
241 2001-11-30 Pierre Muller <muller@ics.u-strasbg.fr>
242
243 * findvar.c (locate_var_value): Specify in which register a register
244 variable is stored.
245
246 2001-11-30 Pierre Muller <muller@ics.u-strasbg.fr>
247
248 * win32-nat.c (mappings): Correct position of XMM registers,
249 based on FXSAVE instruction structure.
250
251 2001-12-02 Andrew Cagney <ac131313@redhat.com>
252
253 * jv-lang.c (get_java_class_symtab): Use xmmalloc instead of
254 mmalloc.
255
256 * coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c, hpread.c,
257 nlmread.c, objfiles.c, os9kread.c, somread.c, source.c, symfile.c,
258 symmisc.c, xcoffread.c: Use xmfree instead of mfree.
259
260 * jv-lang.c (add_class_symtab_symbol): Use xmrealloc instead of
261 mrealloc.
262
263 2001-12-02 Andrew Cagney <ac131313@redhat.com>
264
265 * i386-tdep.c (i386go32_frame_saved_pc): New function.
266 * config/i386/tm-go32.h (i386go32_frame_saved_pc): Declare.
267 (FRAME_SAVED_PC): Redefine to i386go32_frame_saved_pc.
268
269 2001-12-01 Andrew Cagney <ac131313@redhat.com>
270
271 * defs.h: Update comment on HOST_BYTE_ORDER.
272 * config/xm-aix4.h: Delete definition of HOST_BYTE_ORDER.
273 * config/xm-nbsd.h, config/alpha/xm-alphalinux.h: Ditto.
274 * config/alpha/xm-alphaosf.h, config/alpha/xm-fbsd.h: Ditto.
275 * config/arm/xm-linux.h, config/i386/xm-cygwin.h: Ditto.
276 * config/i386/xm-i386bsd.h, config/i386/xm-i386gnu.h: Ditto.
277 * config/i386/xm-i386lynx.h, config/i386/xm-i386m3.h: Ditto.
278 * config/i386/xm-i386mach.h, config/i386/xm-i386v.h: Ditto.
279 * config/i386/xm-ptx.h, config/i386/xm-symmetry.h: Ditto.
280 * config/ia64/xm-aix.h, config/ia64/xm-linux.h: Ditto.
281 * config/m68k/xm-3b1.h, config/m68k/xm-apollo68b.h: Ditto.
282 * config/m68k/xm-apollo68v.h, config/m68k/xm-delta68.h: Ditto.
283 * config/m68k/xm-dpx2.h, config/m68k/xm-hp300bsd.h: Ditto.
284 * config/m68k/xm-hp300hpux.h, config/m68k/xm-m68k.h: Ditto.
285 * config/m68k/xm-m68klynx.h, config/m68k/xm-sun2.h: Ditto.
286 * config/m68k/xm-sun3.h, config/m88k/xm-dgux.h: Ditto.
287 * config/m88k/xm-m88k.h, config/mips/xm-irix3.h: Ditto.
288 * config/mips/xm-irix5.h, config/mips/xm-linux.h: Ditto.
289 * config/mips/xm-mips.h, config/mips/xm-mipsm3.h: Ditto.
290 * config/mips/xm-mipsv4.h, config/mips/xm-news-mips.h: Ditto.
291 * config/mips/xm-riscos.h, config/pa/xm-hppab.h: Ditto.
292 * config/pa/xm-hppah.h, config/powerpc/xm-linux.h: Ditto.
293 * config/romp/xm-rtbsd.h, config/rs6000/xm-rs6000.h: Ditto.
294 * config/rs6000/xm-rs6000ly.h, config/s390/xm-linux.h: Ditto.
295 * config/sparc/xm-sparc.h, config/sparc/xm-sparclynx.h: Ditto.
296 * config/vax/xm-vax.h: Ditto.
297
298 * config/a29k/tm-vx29k.h: Add #error as file depends on
299 HOST_BYTE_ORDER.
300 * config/a29k/tm-a29k.h: Ditto.
301 * MAINTAINERS (a29k-amd-udi): Document as broken.
302
303 2001-12-01 Andrew Cagney <ac131313@redhat.com>
304
305 * Makefile.in (tm-news.h, tm-isi.h, xm-news1000.h): Delete.
306 (ALLDEPFILES): Delete news-xdep.c.
307 (news-xdep.o): Delete.
308 (isi-xdep.o): Delete.
309 * configure.tgt: Delete m68*-isi-*, m68*-sony-*, m68*-rom68k-*,
310 m68*-*bug-*, m68*-monitor-* and m68*-est-* targets.
311 * configure.host: Delete m68030-sony-*, m68*-isi-* and m68*-sony-*
312 Hosts.
313 * m68k-tdep.c (isi_skip_prologue): Delete function.
314 * news-xdep.c: Delete file.
315 * isi-xdep.c: Delete file.
316 * config/m68k/isi.mh: Delete file.
317 * config/m68k/isi.mt: Delete file.
318 * config/m68k/news.mh: Delete file.
319 * config/m68k/news.mt: Delete file.
320 * config/m68k/news1000.mh: Delete file.
321 * config/m68k/nm-news.h: Delete file.
322 * config/m68k/tm-isi.h: Delete file.
323 * config/m68k/tm-news.h: Delete file.
324 * config/m68k/xm-isi.h: Delete file.
325 * config/m68k/xm-news.h: Delete file.
326 * config/m68k/xm-news1000.h: Delete file.
327
328 * kdb-start.c: Delete file.
329 * stuff.c: Delete file.
330
331 * NEWS: Note that a29k-nyu-sym1 and a29k-*-kern* were deleted.
332 * configure.host: Delete a29k-*-* host.
333 * configure.tgt: Delete a29k-*-kern* and a29k-*-sym1* targets.
334 * config/a29k/a29k-kern.mt: Delete file.
335 * config/a29k/nm-ultra3.h: Delete file.
336 * config/a29k/tm-ultra3.h: Delete file.
337 * config/a29k/ultra3.mh: Delete file.
338 * config/a29k/ultra3.mt: Delete file.
339 * config/a29k/xm-ultra3.h: Delete file.
340
341 * NEWS: Note that i[3456]86-*-sunos* was deleted.
342 * Makefile.in (sun386-nat.o): Delete.
343 * configure.tgt: Delete i[3456]86-*-sunos* target.
344 * configure.host: Delete i[3456]86-*-sunos* host.
345 * sun386-nat.c: Delete.file.
346 * config/i386/nm-sun386.h: Delete file.
347 * config/i386/sun386.mh: Delete file.
348 * config/i386/sun386.mt: Delete file.
349 * config/i386/tm-sun386.h: Delete file.
350 * config/i386/xm-sun386.h: Delete file.
351
352 * NEWS: Note that ns32k-*-mach3*, ns32k-umax-*, ns32k-utek-sysv*
353 and ns32k-utek-* were deleted.
354 * Makefile.in (ultra3-nat.o, ultra3-xdep.o): Delete.
355 (umax-xdep.o, ns32km3-nat.o): Delete.
356 * configure.tgt: Delete ns32k-*-mach3*, ns32k-utek-sysv* and
357 ns32k-utek-* targets.
358 * configure.host: Delete ns32k-*-mach3*, ns32k-umax-* and
359 ns32k-utek-sysv* hosts.
360 * ultra3-nat.c: Delete file.
361 * ultra3-xdep.c: Delete file.
362 * umax-xdep.o: Delete file.
363 * ns32km3-nat: Delete file.
364 * config/ns32k/merlin.mh: Delete file.
365 * config/ns32k/merlin.mt: Delete file.
366 * config/ns32k/nm-umax.h: Delete file.
367 * config/ns32k/ns32km3.mh: Delete file.
368 * config/ns32k/ns32km3.mt: Delete file.
369 * config/ns32k/tm-merlin.h: Delete file.
370 * config/ns32k/tm-ns32km3.h: Delete file.
371 * config/ns32k/umax.mh: Delete file.
372 * config/ns32k/umax.mt: Delete file.
373 * config/ns32k/xm-merlin.h: Delete file.
374 * config/ns32k/xm-ns32km3.h: Delete file.
375 * config/ns32k/xm-umax.h: Delete file.
376
377 * NEWS: Note that m88*-harris-cxux* was deleted.
378 * configure.host: Delete m88*-harris-cxux* host.
379 * configure.tgt: Delete m88*-harris-cxux* target.
380 * config/m88k/cxux.mh: Delete file.
381 * config/m88k/cxux.mt: Delete file.
382 * config/m88k/nm-cxux.h: Delete file.
383 * config/m88k/tm-cxux.h: Delete file.
384 * config/m88k/xm-cxux.h: Delete file.
385
386 * NEWS: Note that powerpc-*-netware*, powerpcle-*-cygwin* and
387 powerpcle-*-solaris* were deleted.
388 * configure.host: Delete powerpcle-*-cygwin* and
389 powerpcle-*-solaris* hosts.
390 * configure.tgt: Delete powerpc-*-netware*, powerpcle-*-cygwin*
391 and powerpcle-*-solaris* targets.
392 * config/powerpc/cygwin.mh: Delete file.
393 * config/powerpc/cygwin.mt: Delete file.
394 * config/powerpc/nm-solaris.h: Delete.file.
395 * config/powerpc/ppc-nw.mt: Delete file.
396 * config/powerpc/solaris.mh: Delete file.
397 * config/powerpc/solaris.mt: Delete file.
398 * config/powerpc/tm-cygwin.h: Delete file.
399 * config/powerpc/tm-ppc-nw.h: Delete file.
400 * config/powerpc/tm-solaris.h: Delete file.
401 * config/powerpc/xm-cygwin.h: Delete file.
402 * config/powerpc/xm-mpw.h: Delete file.
403 * config/powerpc/xm-solaris.h: Delete file.
404
405 * NEWS, MAINTAINERS: Note that w65-*-* was deleted.
406 * configure.tgt: Delete w65-*-*.
407 * Makefile.in (w65-tdep.o): Delete.
408 * config/w65/tm-w65.h: Delete file.
409 * config/w65/w65.mt: Delete file.
410 * w65-tdep.c: Delete file.
411
412 * NEWS: Mention deleted tic80-*-*.
413 * configure.tgt: Delete tic80-*-*.
414 * Makefile.in (tic80-tdep.o): Delete.
415 * config/tic80/tic80.mt: Delete.
416 * config/tic80/tm-tic80.h: Delete.
417 * tic80-tdep.c: Delete.
418 * MAINTAINERS: Note that tic80 was deleted.
419
420 2001-11-30 Kevin Buettner <kevinb@redhat.com>
421
422 * ppc-linux-tdep.c (solib-svr4.h): Include.
423 (ppc_linux_svr4_fetch_link_map_offsets): New function.
424 * ppc-tdep.h (ppc_linux_svr4_fetch_link_map_offsets): Declare.
425 * rs6000-tdep.c (solib-svr4.h): Include.
426 (rs6000_gdbarch_init): Set up ppc_linux_svr4_fetch_link_map_offsets()
427 as the link map offsets fetcher.
428
429 * config/powerpc/aix.mt (TDEPFILES): Add solib-svr4.o.
430 * config/powerpc/macos.mt (TDEPFILES): Likewise.
431 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
432 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
433 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
434 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
435 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
436 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
437 * config/rs6000/aix4.mt (TDEPFILES): Likewise.
438 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
439 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
440
441 2001-11-30 Kevin Buettner <kevinb@redhat.com>
442
443 From Louis Hamilton <hamilton@redhat.com>:
444 * arm-tdep.c (solib-svr4.h): Include.
445 (arm_linux_svr4_fetch_link_map_offsets): New function.
446 * config/arm/tm-linux.h (SVR4_FETCH_LINK_MAP_OFFSETS): Define.
447 (arm_linux_svr4_fetch_link_map_offsets): Declare.
448
449 2001-11-30 Daniel Jacobowitz <drow@mvista.com>
450
451 * values.c (value_primitive_field): Add embedded_offset to the
452 address of structure members.
453 * gnu-v3-abi.c (gnuv3_rtti_type): Cast to base type before
454 attempting to access vtable pointer. Set using_enc_p if we cast.
455 (gnuv3_virtual_fn_field): Call value_cast with structure rather than
456 structure pointer. Cast to base type before attempting to access
457 vtable pointer.
458
459 2001-11-29 Elena Zannoni <ezannoni@redhat.com>
460
461 * Makefile.in (ppc-linux-nat.o): Add dependency on ppc-tdep.h.
462
463 * ppc-tdep.h (PPC_GPLAST_REGNUM): Define.
464
465 * ppc-linux-nat.c: Include ppc-tdep.h.
466 (ppc_register_u_addr): Don't use the static array regmap[],
467 dynamically define the mapping instead.
468 (supply_gregset): Ditto.
469 (fill_gregset): Ditto.
470 (COPY_REG): Delete macro defintion.
471 (regmap): Delete array.
472
473 2001-11-29 Jim Blandy <jimb@redhat.com>
474
475 Tighten up GDB's support for returning structs by value.
476 * s390-tdep.c (s390_use_struct_convention): New function.
477 (s390_gdbarch_init): Register it as the S/390's
478 USE_STRUCT_CONVENTION method. Register
479 generic_cannot_extract_struct_value_address as our
480 EXTRACT_STRUCT_VALUE_ADDRESS method.
481 * arch-utils.c (generic_cannot_extract_struct_value_address): New
482 function.
483 * arch-utils.h: Add corresponding prototype.
484
485 * values.c (value_being_returned): Make error message a proper
486 sentence.
487
488 2001-11-27 Keith Walker <keith.walker@arm.com>
489
490 * dwarf2read.c (read_attribute_value): New function to handle
491 DW_FORM_indirect
492 (read_attribute): uses read_attribute_value
493
494 2001-11-29 Jim Blandy <jimb@redhat.com>
495
496 * s390-tdep.c (s390_frame_saved_pc_nofix): If the prologue didn't
497 save the return address register, assume that the return address
498 is still in there.
499
500 2001-11-27 Andrew Cagney <ac131313@redhat.com>
501
502 * MAINTAINERS: Clarify obvious fix a little (as suggested by Eli
503 Zaretskii).
504
505 2001-11-25 Jim Blandy <jimb@redhat.com>
506
507 * mn10300-tdep.c (mn10300_analyze_prologue): Doc fixes.
508
509 2001-11-27 Jim Blandy <jimb@redhat.com>
510
511 * s390-tdep.c: Get frame chains and saved pc values properly from
512 dummy frames.
513 (s390_frame_saved_pc_nofix): if `*fi' is a dummy frame, get the
514 saved PC from the dummy frame's registers.
515 (s390_frame_chain): Same for the saved SP.
516 (s390_gdbarch_init): Register `generic_save_dummy_frame_tos' as
517 the `SAVE_DUMMY_FRAME_TOS' method, so the dummy frame's `top' gets
518 set correctly.
519
520 * s390-tdep.c (s390_frame_chain): Remember that the SP's element
521 of the frame's saved_regs array is special.
522
523 * s390-tdep.c (register_names): Call the general-purpose registers
524 `r0' -- `r15', and the floating-point registers `f0' -- `f15', to
525 match the assembly language.
526
527 2001-11-26 Pierre Muller <muller@ics.u-strasbg.fr>
528
529 * config/i386/tm-cygwin.h: Define HAVE_SSE_REGS if
530 HAVE_CONTEXT_EXTENDED_REGISTERS is defined.
531 * win32-nat.c: Define CONTEXT_DEBUGGER_DR that will also include
532 extended registers if HAVE_SSE_REGS is defined.
533 (mappings array): Add offset of extended registers.
534 (thread_rec): Use new CONTEXT_DEBUGGER_DR macro.
535
536 2001-11-26 Tom Tromey <tromey@redhat.com>
537
538 * NEWS: Updated.
539 * event-loop.c (start_event_loop): Call
540 after_char_processing_hook.
541 * event-top.h (after_char_processing_hook): Declare.
542 * event-top.c (rl_callback_read_char_wrapper): Call
543 after_char_processing_hook.
544 (after_char_processing_hook): New global.
545 * top.c (operate_saved_history): New global.
546 (gdb_rl_operate_and_get_next): New function.
547 (init_main): Add the operate-and-get-next defun.
548 (gdb_rl_operate_and_get_next_completion): New function.
549
550 2001-11-26 Tom Tromey <tromey@redhat.com>
551
552 * NEWS: Update for --args.
553 * infcmd.c (construct_inferior_arguments): Moved from ...
554 * fork-child.c: ... here.
555
556 2001-11-26 Jim Blandy <jimb@redhat.com>
557
558 * symtab.c (find_pc_sect_line): Revert change of 2001-11-13; add
559 comment explaining that hand-written assembly code can have line
560 number info but no debug info for an enclosing function.
561
562 2001-11-26 Jakub Jelinek <jakub@redhat.com>
563
564 * sparc-nat.c (fetch_inferior_registers): Don't rely
565 on CORE_ADDR being 32-bit.
566 (store_inferior_registers): Likewise.
567
568 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
569
570 * config/djgpp/config.sed: Fix an error in etc/ at "make install"
571 time on non-LFN systems where standards*.inf* expands to nothing.
572
573 * go32-nat.c (save_npx): Avoid a warning from GCC 3.x.
574
575 2001-11-24 Pierre Muller <muller@ics.u-strasbg.fr>
576 Christopher Faylor <cgf@redhat.com>
577
578 * win32-nat.c (struct so_stuff): Add objfile *objfile field needed to
579 be able to remove the DLL when unloaded. Remove unused last field.
580 (handle_unload_dll): New function to handle unloading of DLL.
581 (solib_symbols_add): Change return type to struct objfile *.
582 (get_child_debug_event): Call handle_unload_dll function.
583
584 2001-11-24 Christopher Faylor <cgf@redhat.com>
585
586 * win32-nat.c (_initialize_check_for_gdb_ini): New function.
587 * config/i386/xm-cygwin.h: Remove obsolete handling of __CYGWIN32__.
588 (GDBINIT_FILENAME): Remove.
589
590 2001-11-23 Mark Kettenis <kettenis@gnu.org>
591
592 Add x86 OpenBSD native configuration.
593 * config/i386/obsd.mt, config/i386/tm-obsd.h, config/i386/obsd.mh,
594 config/i386/nm-obsd.h: New files.
595 * configure.host (i[3456]86-*-openbsd*): New host.
596 * configure.tgt (i[3456]86-*-openbsd*): New target.
597 * NEWS: Update.
598
599 2001-11-21 GDB Administrator <gdbadmin@sourceware.cygnus.com>
600
601 * GDB 5.1 was released.
602
603 2001-11-21 Tom Tromey <tromey@redhat.com>
604
605 Fix for PR gdb/209, PR gdb/156:
606 * gdbarch.c, gdbarch.h: Rebuilt.
607 * gdbarch.sh: Added `construct_inferior_arguments'.
608 * cli/cli-decode.h (cmd_list_element): Added pre_show_hook.
609 Typo fix.
610 * cli/cli-setshow.c (do_setshow_command): Call the pre_show_hook.
611 * infcmd.c (_initialize_infcmd): Set sfunc on `set args' command.
612 (inferior_argc, inferior_argv): New globals.
613 (notice_args_set): New function.
614 (set_inferior_args): Clear inferior_argc and inferior_argv.
615 (set_inferior_args_vector): New function.
616 (get_inferior_args): Handle inferior argument vector.
617 (run_command): Use get_inferior_args().
618 (notice_args_read): New function.
619 (_initialize_infcmd): Don't call set_inferior_args.
620 * command.h: Typo fix.
621 (cmd_list_element): Added pre_show_hook.
622 * main.c (captured_main): Added --args option.
623 (print_gdb_help): Document --args.
624 * inferior.h (construct_inferior_arguments): Declare.
625 (set_inferior_args_vector): Likewise.
626 * fork-child.c (construct_inferior_arguments): New function.
627
628 2001-11-21 Kevin Buettner <kevinb@redhat.com>
629
630 * lin-lwp.c (lin_lwp_attach_lwp): Make sure SIGCHLD is in set of
631 blocked signals.
632
633 * lin-lwp.c (lin_lwp_attach_lwp): Mark main thread as stopped.
634
635 2001-11-20 Jim Blandy <jimb@redhat.com>
636
637 * target.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT): Delete
638 default definition; this is never used.
639
640 2001-11-20 Keith Seitz <keiths@redhat.com>
641
642 * varobj.c (c_value_of_child): Release memory for "name" when
643 finshed using it.
644 (c_type_of_child): Likewise.
645 (cplus_value_of_child): Isolate the use of name_of_child to
646 one case that needs it.
647 Release memory for "name" when finished using it.
648
649 2001-11-20 Keith Seitz <keiths@redhat.com>
650
651 * top.c (gdb_init): Call init_ui_hook before initializing
652 the default UI.
653
654 2001-11-19 Elena Zannoni <ezannoni@redhat.com>
655
656 * config/powerpc/nm-linux.h (ppc_register_u_addr): Add extern
657 declaration.
658
659 2001-11-19 Elena Zannoni <ezannoni@redhat.com>
660
661 * ppc-linux-nat.c (COPY_REG): Use regcache_collect instead of
662 accessing registers[].
663 (fill_fpregset): Ditto.
664
665 2001-11-19 Elena Zannoni <ezannoni@redhat.com>
666
667 * infptrace.c (fetch_register): Dynamically allocate buffer for
668 register.
669 (store_register): Use regcache_collect, instead of accessing the
670 register buffer directly.
671
672 2001-11-19 Daniel Jacobowitz <drow@mvista.com>
673
674 * mips-tdep.c (find_proc_desc): Add cur_frame argument. Pass
675 cur_frame to heuristic_proc_desc.
676 (heuristic_proc_desc): Add cur_frame argument. Do not read SP
677 if cur_frame == 0.
678 (after_prologue): Pass cur_frame == 0 to find_proc_desc.
679 (mips_frame_chain): Pass cur_frame == 1 to find_proc_desc.
680 (mips_init_extra_frame_info): Likewise.
681
682 2001-11-19 Andrew Cagney <ac131313@redhat.com>
683
684 * defs.h (return_to_top_level): Comment.
685
686 Mon Nov 19 14:58:52 2001 Andrew Cagney <cagney@redhat.com>
687
688 * remote.c (remote_open_1, remote_async_open_1): Use ISO C string
689 concatenation for error parameter.
690 (remote_cisco_open): Ditto.
691
692 2001-11-19 Keith Seitz <keiths@redhat.com>
693
694 * varobj.c (c_value_of_child): Use the wrapper function,
695 gdb_value_struct_elt.
696 (cplus_value_of_child): Likewise.
697
698 2001-11-18 Andrew Cagney <ac131313@redhat.com>
699
700 * i386-tdep.c (i386_gdbarch_init): Initialize num_regs.
701 * config/i386/tm-i386.h (NUM_REGS): Delete.
702
703 2001-11-18 Kevin Buettner <kevinb@redhat.com>
704
705 * i386-linux-nat.c (fill_gregset): Fix botched regcache_collect()
706 conversion for I386_LINUX_ORIG_EAX_REGNUM.
707
708 2001-11-18 Andrew Cagney <ac131313@redhat.com>
709
710 * config/i386/embed.mt (TM_FILE): Set to tm-i386.h.
711 * config/i386/tm-embed.h: Delete.
712
713 2001-11-17 Andrew Cagney <ac131313@redhat.com>
714
715 * Makefile.in (distclean): Explicitly delete Makefile et.al. in
716 gdbserver sub directory.
717
718 2001-11-17 Andrew Cagney <ac131313@redhat.com>
719
720 * README: Mention need for alloca(). Mention problems with
721 alpha-dec-osf4.0e. Clarify that comments refer to GDB 5.1.
722
723 2001-11-17 Kevin Buettner <kevinb@redhat.com>
724
725 * i386-linux-nat.c (fill_gregset): Use regcache_collect() instead
726 of accessing registers[] directly.
727
728 2001-11-17 Kevin Buettner <kevinb@redhat.com>
729
730 * i386-linux-nat.c (fill_gregset): Don't invoke read_register_gen()
731 when fetching ORIG_EAX.
732
733 2001-11-17 Daniel Jacobowitz <drow@mvista.com>
734
735 * arm-linux-nat.c: Don't include <asm/ptrace.h>.
736 (fetch_register): Use elf_gregset_t instead of struct pt_regs.
737 (fetch_regs): Likewise.
738 (store_register): Likewise.
739 (store_regs): Likewise.
740
741 2001-11-17 Daniel Jacobowitz <drow@mvista.com>
742
743 * sparc-linux-nat.c (fill_gregset): Replace read_register_gen
744 with regcache_collect.
745 (fill_fpregset): Likewise.
746
747 2001-11-17 Daniel Jacobowitz <drow@mvista.com>
748
749 * Makefile.in: Add mips-linux-nat.c, mips-linux-tdep.c,
750 and sparc-linux-nat.c to ALLDEPFILES. Add dependencies.
751 * config/sparc/linux.mh: Add sparc-linux-nat.o to NATDEPFILES.
752 * sparc-linux-nat.c: New file, from Mark Kettenis.
753
754 2001-11-16 Jakub Jelinek <jakub@redhat.com>
755
756 * dwarf2read.c (dwarf_str_buffer): New.
757 (struct dwarf2_pinfo): Add dwarf_str_buffer and dwarf_str_size.
758 (DWARF_STR_BUFFER, DWARF_STR_SIZE): Define.
759 (dwarf2_has_info): Clear dwarf_str_offset.
760 (dwarf2_build_psymtabs): Read .debug_str section if present.
761 (dwarf2_build_psymtabs_hard): Save DWARF_STR_BUFFER and
762 DWARF_STR_SIZE.
763 (psymtab_to_symtab_1): Restore DWARF_STR_BUFFER and DWARF_STR_SIZE.
764 (read_attribute): Handle DW_FORM_strp.
765 (read_n_bytes, read_string): Remove HOST_CHAR_BIT != 8
766 handling code.
767 (read_indirect_string): New.
768 (dump_die): Handle DW_FORM_strp.
769
770 2001-11-16 Jim Blandy <jimb@redhat.com>
771
772 * s390-tdep.c: Tweak argument-passing to match GCC bugs.
773 (is_float_singleton, is_struct_like, is_float_like): New
774 functions, that isolate the weirdness.
775 (is_double_or_float, is_simple_arg, pass_by_copy_ref,
776 is_double_arg): Use is_struct_like and is_float_like, rather than
777 testing the type codes ourselves.
778 (s390_push_arguments): When passing args on the stack, align each
779 on to a four-byte boundary, regardless of what the type itself
780 needs.
781
782 2001-11-16 Ben Harris <bjh21@netbsd.org>
783
784 * Makefile.in (os9kread.o): Replace $< with autoconf-approved
785 $(srcdir)/....
786 (procfs.o): Ditto.
787 (z8k-tdep.o): Ditto.
788
789 2001-11-16 Ben Harris <bjh21@netbsd.org>
790
791 * MAINTAINERS (write-after-approval): Add self.
792
793 2001-11-15 Jim Blandy <jimb@redhat.com>
794
795 * s390-tdep.c (is_simple_arg): Structs and unions exactly eight
796 bytes long should be handled as DOUBLE_ARGs; don't recognize them
797 as SIMPLE_ARGs.
798
799 2001-11-12 Andrew Cagney <ac131313@redhat.com>
800
801 * remote.c (struct packet_reg): Declare.
802 (struct remote_state): Add fields sizeof_g_packet and g_packet.
803 (init_remote_state): Initialize sizeof_g_packet and g_packet.
804 (free_remote_state): Free g_packet.
805 (packet_reg_from_pnum, packet_reg_by_regnum): New functions.
806 (remote_wait): Use above instead of gdbarch methods
807 REGISTER_RAW_SIZE and REGISTER_BYTES.
808 (remote_async_wait): Ditto.
809 (remote_fetch_registers, remote_store_registers): Ditto.
810 (store_register_using_P): Ditto.
811
812 2001-11-15 Andrew Cagney <ac131313@redhat.com>
813
814 * remote.c (_initialize_remote): Don't multi-arch swap tty_input.
815 Second attempt.
816
817 2001-11-15 Andrew Cagney <ac131313@redhat.com>
818
819 * utils.c (phex_nz): For default case, set str to phex_nz return
820 value.
821 (phex): Ditto.
822
823 2001-11-15 Andrew Cagney <ac131313@redhat.com>
824
825 * TODO (register_buffer): Delete.
826 * regcache.c (register_buffer): Make static.
827 (regcache_collect): New function.
828 * regcache.h (register_buffer): Delete declaration.
829 (regcache_collect): Declare.
830 * remote.c (store_register_using_P): Rewrite using
831 regcache_collect.
832 (remote_store_registers): Ditto.
833 * go32-nat.c (store_register): Ditto.
834
835 2001-11-14 Andrew Cagney <ac131313@redhat.com>
836
837 * remote.c (struct remote_state): Declare.
838 (get_remote_state): New function.
839 (init_remote_state): New function.
840 (remote_gdbarch_data_handle): New global.
841 (build_remote_packet_sizes): Delete function, moved to
842 init_remote_state.
843 (register_remote_packet_sizes): Delete function.
844 (actual_register_packet_size, remote_packet_size): Moved to
845 ``struct remote_state''.
846 (PBUFSIZE): Delete. Replaced by rs->remote_packet_size.
847 (free_remote_state): New function.
848 (get_memory_packet_size, get_memory_read_packet_size)
849 (set_thread, remote_unpack_thread_info_response)
850 (remote_get_threadinfo, parse_threadlist_response)
851 (remote_get_threadlist, remote_current_thread)
852 (remote_threads_info, remote_threads_extra_info)
853 (extended_remote_restart, get_offsets)
854 (get_offsets, remote_check_symbols, remote_open_1)
855 (remote_async_open_1, remote_detach, remote_async_detach)
856 (remote_resume, remote_async_resume, remote_wait)
857 (remote_async_wait, remote_fetch_registers)
858 (store_register_using_P, remote_store_registers)
859 (check_binary_download, putpkt_binary)
860 (remote_insert_breakpoint, remote_remove_breakpoint)
861 (remote_insert_watchpoint, remote_remove_watchpoint)
862 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
863 (compare_sections_command, remote_query)
864 (remote_rcmd, remote_rcmd, packet_command)
865 (remote_info_process): Update.
866
867 2001-11-14 Andrew Cagney <ac131313@redhat.com>
868
869 * remote.c: Include "gdb_assert.h".
870 (tty_input): Wire buffer to 400 bytes.
871 (readsocket): Check tty_input doesn't overflow.
872 (build_remote_gdbarch_data, _initialize_remote): Don't multi-arch
873 tty_input.
874
875 2001-11-14 Michael Snyder <msnyder@redhat.com>
876
877 * d10v-tdep.c (d10v_pointer_to_address): Use new type flag
878 TYPE_FLAG_CODE_SPACE to recognize a pointer that has been cast
879 into the instruction address space.
880 * Makefile.in (doublest.o): Add dependency on gdbtypes.h.
881
882 2001-11-14 Michael Snyder <msnyder@redhat.com>
883 Add address space identifiers to expression language for types.
884 * c-exp.y (space_identifier, cv_with_space_id,
885 const_or_volatile_or_space_identifier_noopt,
886 const_or_volatile_or_space_identifier): New terminals.
887 (ptype): Accept const_or_volatile_or_space_identifier.
888 (typebase): Accept const_or_volatile_or_space_identifier.
889 * c-typeprint.c (c_type_print_cv_qualifier): Rename to
890 c_type_print_modifier. Handle address space modified types.
891 * gdbtypes.h (TYPE_FLAG_CODE_SPACE, TYPE_FLAG_DATA_SPACE):
892 New type flags.
893 (struct type): Add new field as_type for addr-space qualified types.
894 (TYPE_AS_TYPE): New macro, retrieves the chain of types that are
895 identical to this one except for address-space qualification.
896 * gdbtypes.c (alloc_type): Initialize new field 'as_type'.
897 (address_space_name_to_int): New function.
898 (address_space_int_to_name): New function.
899 (make_type_with_address_space): New function.
900 (make_cv_type): Handle as_type field of new struct type object.
901 * parse.c (check_type_stack_depth): New function.
902 (push_type_address_space): New function.
903 (follow_types): Handle types with address-space qualifier.
904 * parser-defs.h (enum type_pieces): Add enum tp_space_identifier.
905
906 2001-11-14 Jim Blandy <jimb@redhat.com>
907
908 * s390-tdep.c (s390_pop_frame_regular): On the S/390, the frame
909 pointer and the SP are often the same, so we can't pop the frame
910 by setting the SP to the FP; we need to get the old SP from
911 saved_regs.
912
913 * s390-tdep.c (s390_extract_return_value): Returned `float' values
914 can simply be copied bitwise from the registers into the value
915 object's buffer.
916
917 * s390-tdep.c (s390_get_frame_info): Initialize SP's element of
918 the frame's saved_regs array correctly.
919
920 * symfile.c (simple_read_overlay_table): Make sure we can find
921 both `_novlys' and `_ovly_table' before we try anything else;
922 print a helpful error message.
923 (simple_overlay_update): No need to print error message here.
924
925 2001-11-14 Michael Snyder <msnyder@redhat.com>
926
927 * Makefile.in (doublest.o): Add dependency on gdbtypes.h.
928
929 2001-11-10 Andrew Cagney <ac131313@redhat.com>
930
931 * arm-tdep.c (arm_register_type): New function.
932 (arm_register_convertible): Delete.
933 (arm_register_convert_to_virtual): Delete.
934 (arm_register_convert_to_raw): Delete.
935 * config/arm/tm-arm.h (REGISTER_CONVERTIBLE): Delete.
936 (REGISTER_CONVERT_TO_VIRTUAL): Delete.
937 (REGISTER_CONVERT_TO_RAW): Delete.
938 (REGISTER_VIRTUAL_TYPE): Redefine as call to arm_register_type.
939 (arm_register_type): Declare.
940
941 2001-11-13 Elena Zannoni <ezannoni@redhat.com>
942
943 From Andrew Cagney <cagney@redhat.com>:
944 * gdbtypes.h (builtin_type_int128, builtin_type_uint128): Declare.
945 * gdbtypes.c (_initialize_gdbtypes, build_gdbtypes): Initialize
946 new builtin types.
947
948 2001-11-13 Jim Blandy <jimb@redhat.com>
949
950 * s390-tdep.c: Rewrite inferior function call code. This may
951 break zSeries support; that should be fixed soon.
952 #include "gdb_assert.h".
953 (is_integer_like, is_pointer_like, is_simple_arg,
954 pass_by_copy_ref, extend_simple_arg, is_double_arg, round_up,
955 round_down, alignment_of): New functions.
956 (s390_push_arguments): Rewritten to handle passing large arguments
957 by value, and to make more readable.
958
959 * s390-tdep.c (s390_pop_frame): Call generic_pop_current_frame, to
960 interact correctly with generic dummy frames.
961 (s390_pop_frame_regular): Move the guts of the frame-popping code
962 to here, to be called by generic_pop_current_frame. Use the
963 frame's saved_regs array; this works for `return' as well as
964 inferior function calls.
965
966 * s390-tdep.c (s390_gdbarch_init): Register the function
967 `standard_coerce_float_to_double', since GCC for the S/390 follows
968 the standard rules for passing floats.
969
970 * valops.c (default_coerce_float_to_double,
971 standard_coerce_float_to_double): Doc fixes.
972
973 Patch from Peter Schauer:
974
975 * symtab.c (find_pc_sect_line): If we can't find the function
976 containing PC, we certainly won't have line number information for
977 that location, so return zero immediately.
978
979 2001-11-10 Andrew Cagney <ac131313@redhat.com>
980
981 * config/i960/tm-nindy960.h (REGISTER_CONVERTIBLE)
982 (REGISTER_CONVERT_TO_RAW, REGISTER_CONVERT_TO_VIRTUAL): Delete
983 undef.
984 * i960-tdep.c (i960_register_type): New function.
985 * config/i960/tm-i960.h (REGISTER_CONVERTIBLE): Delete.
986 (REGISTER_CONVERT_TO_VIRTUAL): Delete.
987 (REGISTER_CONVERT_TO_RAW): Delete.
988 (REGISTER_VIRTUAL_TYPE): Update. Call i960_register_type.
989
990 2001-11-10 Andrew Cagney <ac131313@redhat.com>
991
992 * m88k-tdep.c (m88k_register_type): New function.
993 * config/m88k/tm-m88k.h (REGISTER_CONVERTIBLE): Delete.
994 (REGISTER_CONVERT_TO_VIRTUAL): Delete.
995 (REGISTER_CONVERT_TO_RAW): Delete.
996 (m88k_register_type): Declare.
997 (REGISTER_VIRTUAL_TYPE): Update. Call m88k_register_type.
998
999 2001-11-11 Mark Kettenis <kettenis@elgar.my.domain>
1000
1001 * i386-tdep.h (FPU_REG_RAW_SIZE): Define unconditionally.
1002 * i387-nat.c, i387-tdep.c: Unconditionally include "i386-tdep.h".
1003 * config/i386/tm-i386.h (FPU_REG_RAW_SIZE): Removed.
1004 (SIZEOF_FPU_REGS): Don't use FPU_REG_RAW_SIZE here.
1005
1006 2001-11-12 Jim Blandy <jimb@redhat.com>
1007
1008 Patch from Andreas Schwab <schwab@suse.de>:
1009 * eval.c (evaluate_subexp_standard): Fix memory leak: use alloca
1010 instead of xmalloc.
1011
1012 2001-11-12 Jim Blandy <jimb@redhat.com>
1013
1014 * corefile.c (write_memory_unsigned_integer,
1015 write_memory_signed_integer): New functions.
1016 (write_memory): Move to be with other write_memory_* functions.
1017 * gdbcore.h (write_memory_unsigned_integer,
1018 write_memory_signed_integer): New declarations.
1019
1020 2001-11-11 Geoffrey Keating <geoffk@redhat.com>
1021
1022 * dwarf2read.c (dwarf_decode_lines): Properly deal with
1023 unknown standard opcodes.
1024
1025 2001-11-11 Andrew Cagney <ac131313@redhat.com>
1026
1027 * README (alpha-dec-osf5.1): Mention -DUSE_LDR_ROUTINES.
1028 (sparcv9-sun-solars2.8): Mention problem with 64 bit GCC 3.0.x.
1029 (i586-sco-sysv5uw7.1.1): Mention problem with threads.
1030
1031 2001-11-11 Andrew Cagney <ac131313@redhat.com>
1032
1033 From Mark Kettenis <kettenis@gnu.org>:
1034 * breakpoint.c (breakpoint_re_set_one): Don't discard SHLIB
1035 breakpoints when they fail.
1036
1037 2001-11-10 Andrew Cagney <ac131313@redhat.com>
1038
1039 * printcmd.c, valprint.c, language.c, linespec.c, infcmd.c,
1040 gnu-nat.c, findvar.c, expprint.c, typeprint.c, stack.c, top.c:
1041 Replace value_ptr with struct value.
1042
1043 2001-11-10 Andrew Cagney <ac131313@redhat.com>
1044
1045 * c-valprint.c, ch-lang.c, ch-valprint.c, cp-valprint.c,
1046 p-valprint.c, scm-exp.c, scm-lang.c, scm-valprint.c: Replace
1047 value_ptr with struct value.
1048
1049 2001-11-10 Andrew Cagney <ac131313@redhat.com>
1050
1051 * eval.c: Replace most occurances of value_ptr with struct value.
1052
1053 2001-11-09 Jim Blandy <jimb@redhat.com>
1054
1055 * s390-tdep.c: Don't use a call dummy.
1056 (s390_fix_call_dummy, s390_pc_in_call_dummy): Delete.
1057 (s390_push_return_address): Put the address of the inferior call
1058 breakpoint in r14.
1059 (s390_gdbarch_init):
1060 - Provide trivial definition of s390_call_dummy_words; register it
1061 with the gdbarch appropriately.
1062 - Delete S390x_call_dummy_words.
1063 - Gather inferior-call-related settings into a group.
1064 - Use generic dummy frames.
1065 - Put the inferior call breakpoint at the entry point.
1066 - Use generic gdbarch methods: pc_in_call_dummy_at_entry_point,
1067 generic_push_dummy_frame, generic_fix_call_dummy.
1068 - There is a call dummy breakpoint offset; it's zero.
1069
1070 * s390-tdep.c: (s390_push_arguments): Write a back chain pointer
1071 into the dummy frame, to help us get backtraces.
1072
1073 * values.c (value_as_address): If VAL is a function or method,
1074 just return its address; don't let COERCE_ARRAY convert its
1075 address to a pointer, and then have unpack_long convert it back to
1076 an address.
1077
1078 2001-11-06 Pierre Muller <muller@ics.u-strasbg.fr>
1079
1080 * p-lang.c (is_pascal_string_type): New function to determine if a
1081 type is a string type.
1082 * p-lang.h: Add prototype for is_pascal_string_type.
1083 * p-valprint.c (pascal_val_print) : Use is_pascal_string_type function
1084 to display strings nicely.
1085
1086 2001-11-06 Pierre Muller <muller@ics.u-strasbg.fr>
1087
1088 * p-exp.y (yylex): Only change case of expression if symbol is found.
1089 Also check for GPC standard name form.
1090
1091 2001-11-08 Andrew Cagney <ac131313@redhat.com>
1092
1093 * gdb_indent.sh: New file.
1094
1095 2001-11-08 Jim Blandy <jimb@redhat.com>
1096
1097 * s390-tdep.c (s390_get_frame_info): Initialize got_load_addr and
1098 got_load_len, to placate compiler.
1099
1100 2001-11-08 Mark Kettenis <kettenis@gnu.org>
1101
1102 * i386-tdep.c (i386_gdbarch_init): Fix typo.
1103
1104 2001-11-08 Jim Blandy <jimb@redhat.com>
1105
1106 * s390-tdep.c (s390_gdbarch_init): Use func_frame_chain_valid, not
1107 file_frame_chain_valid.
1108
1109 * s390-tdep.c (s390_get_frame_info): If the prologue loads r12
1110 from the constant pool, but doesn't add in the constant pool's
1111 address to it, then this function probably isn't using r12 as a
1112 GOT pointer, and that load probably wasn't part of the prologue.
1113
1114 * s390-tdep.c (s390_gdbarch_init): Use the default
1115 prepare_to_proceed function established by config/nm-linux.h;
1116 don't try to set it to linuxthreads_prepare_to_proceed.
1117
1118 Wed Nov 7 20:38:14 2001 Andrew Cagney <cagney@redhat.com>
1119
1120 * i386-tdep.c: Include "i386-tdep.h".
1121 (XMALLOC): Define.
1122 (i386_gdbarch_init): New function.
1123 (_initialize_i386_tdep): Register bfd_arch_i386.
1124 * config/i386/tm-i386.h (GDB_MULTI_ARCH): Define as
1125 GDB_MULTI_ARCH_PARTIAL.
1126 * i386-tdep.h: When partially multi-arch, conditionally define
1127 all macros.
1128
1129 Wed Nov 7 20:45:32 2001 Andrew Cagney <cagney@redhat.com>
1130
1131 * i386-tdep.c (set_disassembly_flavor): Delete function.
1132 (set_disassembly_flavor_sfunc): Delete function.
1133
1134 2001-11-07 Elena Zannoni <ezannoni@redhat.com>
1135
1136 * dbxread.c (set_namestring): New function, replacing the
1137 SET_NAMESTRING macro.
1138 (SET_NAMESTRING, CUR_SYMBOL_TYPE, CUR_SYMBOL_VALUE,
1139 CUR_SYMBOL_STRX, DBXREAD_ONLY, START_PSYMTAB, END_PSYMTAB): Delete
1140 definitions.
1141 (read_dbx_symtab): Don't include partial-stab.h any more. Don't
1142 reuse code in partial-stab.h, include the code directly, instead.
1143
1144 * Makefile.in (dbxread.o): Remove dependency on partial-stab.h.
1145 (HFILES_NO_SRCDIR): Remove partial-stab.h.
1146
1147 * partial-stab.h: Remove file.
1148
1149 2001-11-07 Andrew Cagney <ac131313@redhat.com>
1150
1151 * gdbarch.sh: For multi-arch functions, check there is a
1152 predefault and use it as the static default.
1153 * gdbarch.c: Re-generate.
1154
1155 2001-11-08 Mark Kettenis <kettenis@gnu.org>
1156
1157 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Define in
1158 terms of NUM_GREGS, NUM_FREGS and NUM_SSE_REGS instead of
1159 hardcoding the register number.
1160
1161 2001-11-07 Andrew Cagney <ac131313@redhat.com>
1162
1163 * gdbarch.sh (USE_STRUCT_CONVENTION): Default to
1164 generic_use_struct_convention.
1165 * gdbarch.h, gdbarch.c: Regenerate.
1166 * values.c (USE_STRUCT_CONVENTION): Delete definition, moved to
1167 gdbarch.h.
1168
1169 2001-11-06 Andrew Cagney <ac131313@redhat.com>
1170
1171 * gdbarch.sh (PC_IN_CALL_DUMMY): Require a value.
1172 * gdbarch.c: Regenerate.
1173
1174 2001-11-06 Fred Fish <fnf@redhat.com>
1175
1176 * complaints.c (info_verbose): Remove unneeded decl, is in defs.h.
1177 * dbxread.c: Ditto
1178 * dwarf2read.c: Ditto.
1179 * dwarfread.c: Ditto.
1180 * exec.c: Ditto.
1181 * hpread.c: Ditto.
1182 * hpread.h: Ditto.
1183 * mdebugread.c: Ditto.
1184 * os9kread.c: Ditto.
1185 * stack.c: Ditto.
1186 * symfile.c: Ditto.
1187 * tracepoint.c: Ditto.
1188
1189 2001-11-06 Andrew Cagney <ac131313@redhat.com>
1190
1191 * MAINTAINERS: Update Andrew Cagney's responsibilities. Mention
1192 David Taylor and Nick Duffek in past maintainers.
1193
1194 2001-11-06 Elena Zannoni <ezannoni@redhat.com>
1195
1196 * mdebugread.c (CUR_SYMBOL_TYPE, CUR_SYMBOL_VALUE, START_PSYMTAB,
1197 END_PSYMTAB, SET_NAMESTRING, HANDLE_RBRAC): Delete definitions.
1198 (parse_partial_symbols): Don't include partial-stab.h any
1199 more. Don't reuse code in partial-stab.h, include the code
1200 directly, instead. Simplify code from partial-stab.h eliminating
1201 ifdef DBXREAD_ONLY code.
1202
1203 * Makefile.in (mdebugread.o): Remove dependency on partial-stab.h.
1204
1205 2001-11-06 Jim Blandy <jimb@redhat.com>
1206
1207 * s390-nat.c: #include "regcache.h", to get declaration for
1208 `supply_register'. (The last change already added the dependency
1209 of s390-nat.o on regcache.h. Oops.)
1210
1211 * Makefile.in (ALLDEPFILES): Add s390-tdep.c and s390-nat.c.
1212 (s390-tdep.o, s390-nat.o): New rules.
1213
1214 * s390-nat.c (s390_register_u_addr): Pass proper arguments to
1215 internal_error.
1216
1217 2001-11-06 Andrew Cagney <ac131313@redhat.com>
1218
1219 * gdbarch.sh (CALL_DUMMY_LOCATION): Require a value.
1220 * gdbarch.c: Regenerate.
1221
1222 2001-11-06 Andrew Cagney <ac131313@redhat.com>
1223
1224 * blockframe.c (get_prev_frame): Replace #ifdef
1225 INIT_EXTRA_FRAME_INFO with run-time test.
1226
1227 2001-11-05 Andrew Cagney <ac131313@redhat.com>
1228
1229 * gdbarch.sh (push_return_address): Change to a function with
1230 predicate.
1231 * gdbarch.h, gdbarch.c: Re-generate.
1232 * valops.c (hand_function_call): Replace #ifdef
1233 PUSH_RETURN_ADDRESS with run-time test of PUSH_RETURN_ADDRESS_P.
1234
1235 2001-11-06 Corinna Vinschen <vinschen@redhat.com>
1236
1237 * arch-utils.c (generic_in_function_epilogue_p): New function.
1238 * arch-utils.h (generic_in_function_epilogue_p): Declare extern.
1239 * breakpoint.c (watchpoint_check): Add test whether the pc is
1240 currently in the epilogue of a function.
1241 * gdbarch.c: Autogenerated from gdbarch.sh.
1242 * gdbarch.h: Ditto.
1243 * gdbarch.sh (function_list): Add `in_function_epilogue_p' definition.
1244
1245 2001-11-05 Jim Blandy <jimb@redhat.com>
1246
1247 * config/s390/s390.mh (NATDEPFILES): Don't split this across
1248 several lines with backslashes; the `sed' command in
1249 configure.in's AC_OUTPUT clause that comments out the NATDEPFILES
1250 assignment doesn't handle lines extended with backslashes.
1251
1252 * configure.in (AC_OUTPUT): Handle assignments to NATDEPFILES
1253 using `+=' as well as `='.
1254 * configure: Regenerated.
1255
1256 2001-11-05 Andrew Cagney <ac131313@redhat.com>
1257
1258 * gdbarch.sh (init_extra_frame_info): Change to a function with
1259 predicate.
1260 * gdbarch.h, gdbarch.c: Re-generate.
1261 * blockframe.c (create_new_frame): Replace #ifdef
1262 INIT_EXTRA_FRAME_INFO with run-time test of
1263 INIT_EXTRA_FRAME_INFO_P.
1264
1265 2001-11-05 Andrew Cagney <ac131313@redhat.com>
1266
1267 * gdbarch.sh (verify_gdbarch): Use a mem_file to accumulate all
1268 error messages. Print in a single batch.
1269 * gdbarch.c: Re-generate.
1270
1271 2001-11-04 Mark Kettenis <kettenis@gnu.org>
1272
1273 * i386-linux-nat.c (GETREGS_SUPPLIES, supply_gregset,
1274 fill_gregset): Add support for "orig_eax" register.
1275
1276 Add support for "orig_eax" pseudo register on Linux/x86.
1277 * i386-linux-tdep.c: Include "inferior.h".
1278 (i386_linux_register_name, i386_linux_register_byte,
1279 i386_linux_register_raw_size): New functions.
1280 (i386_linux_write_pc): New function.
1281 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): New define.
1282 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
1283 REGISTER_BYTE, REGISTER_RAW_SIZE): Define to deal with additional
1284 register.
1285 (i386_linux_register_name, i386_linux_register_byte,
1286 i386_linux_register_raw_size): New prototypes.
1287 (TARGET_WRITE_PC): New define.
1288 (i386_linux_write_pc): New prototype.
1289
1290 * i386-tdep.c (i386_register_offset): Renamed from
1291 i386_register_byte. Made static.
1292 (i386_register_size): Renamed from i386_register_raw_size. Made
1293 static.
1294 (i386_register_virtual_size): Removed.
1295 (i386_register_byte, i386_register_raw_size,
1296 i386_register_virtual_size): New functions.
1297 (_initialize_i386_tdep): Initialize i386_register_offset instead
1298 of i386_register_byte. Remove code to initialize
1299 i386_register_virtual_size.
1300 * config/i386/tm-i386.h (REGISTER_BYTE): Redefine to use
1301 i386_register_byte function.
1302 (REGISTER_RAW_SIZE): Redefine to use i386_register_raw_size
1303 function.
1304 (REGISTER_VIRTUAL_SIZE): Redefine to use
1305 i386_register_virtual_size function.
1306 (i386_register_byte, i386_register_raw_size,
1307 i386_register_virtual_size): New functions.
1308
1309 * Makefile.in (ALLDEPFILES): Add i387-nat.c.
1310 (i387-nat.o): Add dependencies.
1311
1312 2001-11-02 Andrew Cagney <ac131313@redhat.com>
1313
1314 * README: Mention problem with alpha-dec-osf5.1.
1315
1316 2001-11-02 Andrew Cagney <ac131313@redhat.com>
1317
1318 * utils.c (internal_verror): Restore calls to abort().
1319 Fix PR gdb/219.
1320
1321 2001-11-02 Michael Chastain <mec@shout.net>
1322
1323 * MAINTAINERS: Update my entry.
1324
1325 2001-11-01 Michael Snyder <msnyder@redhat.com>
1326
1327 * symtab.c (operator_chars): Allow '*' and '[' to be quoted in
1328 operator names, to avoid regexp expansion.
1329 (search_symbols): Alloca buffer is too small, may get clobbered.
1330
1331 2001-11-01 Fred Fish <fnf@redhat.com>
1332
1333 * coff-solib.c (coff_solib_add): Add new readsyms arg.
1334 * irix5-nat.c (solib_add): Ditto.
1335 * osfsolib.c (solib_add): Ditto.
1336 * pa64solib.c (pa64_solib_add): Ditto.
1337 * pa64solib.c (add_to_solist): Ditto.
1338 * pa64solib.c (read_dld_descriptor): Ditto.
1339 * solib.c (solib_add): Ditto.
1340 * somsolib.c (som_solib_add): Ditto.
1341 * win32-nat.c (child_solib_add): Ditto.
1342 * xcoffsolib.c (solib_add): Ditto.
1343
1344 * coff-solib.h (coff_solib_add): Add new readsyms arg to prototype.
1345 * pa64solib.c (add_to_solist): Ditto.
1346 * pa64solib.c (read_dld_descriptor): Ditto.
1347 * pa64solib.h (pa64_solib_add): Ditto.
1348 * solib.h (solib_add): Ditto.
1349 * somsolib.h (som_solib_add): Ditto.
1350 * config/i386/tm-cygwin.h (child_solib_add): Ditto.
1351
1352 * coff-solib.c (coff_solib_add): If readsyms is zero don't read
1353 symbols but do any other needed work for shared libs.
1354 * irix5-nat.c: Ditto.
1355 * osfsolib.c (solib_add): Ditto.
1356 * solib.c (solib_add): Ditto.
1357 * win32-nat.c (child_solib_add): Ditto.
1358 * xcoffsolib.c (solib_add): Ditto.
1359
1360 * irix5-nat.c (sharedlibrary_command): Pass 1 as readsyms to
1361 solib_add to force reading of shared library symbols.
1362 * osfsolib.c (sharedlibrary_command;): Ditto.
1363 * pa64solib.c (pa64_solib_sharedlibrary_command): Ditto.
1364 * solib.c (sharedlibrary_command): Ditto.
1365 * somsolib.c (som_solib_sharedlibrary_command): Ditto.
1366 * xcoffsolib.c (sharedlibrary_command): Ditto.
1367
1368 * coff-solib.c (coff_solib_create_inferior_hook): Call solib_add
1369 unconditionally with auto_solib_add.
1370 * irix5-nat.c (solib_create_inferior_hook): Ditto.
1371 * osfsolib.c (solib_create_inferior_hook): Ditto.
1372 * solib.c (solib_create_inferior_hook): Ditto.
1373 * solib-osf.c (osf_solib_create_inferior_hook): Ditto.
1374 * solib-svr4.c (enable_break): Ditto.
1375 * solib-sunos.c (sunos_solib_create_inferior_hook): Ditto.
1376
1377 * corelow.c (solib_add_stub): Add auto_solib_add to args passed
1378 via SOLIB_ADD.
1379 * sol-thread.c (sol_thread_attach): Ditto.
1380 * config/rs6000/nm-rs6000.h (SOLIB_ADD): Ditto.
1381
1382 * infcmd.c (attach_command): Remove auto_solib_add decl.
1383 Call SOLIB_ADD directly with auto_solib_add.
1384 * infrun.c (handle_inferior_event): Ditto.
1385
1386 * coff-solib.h (SOLIB_ADD): Add readsyms arg.
1387 * pa64solib.h (SOLIB_ADD): Ditto.
1388 * solib.h (SOLIB_ADD): Ditto.
1389 * somsolib.h (SOLIB_ADD): Ditto.
1390 * config/i386/tm-cygwin.h (SOLIB_ADD): Ditto.
1391
1392 * fork-child.c (clone_and_follow_inferior): Remove unused
1393 auto_solib_add decl.
1394
1395 * pa64solib.c (pa64_solib_add): Call add_to_solist with readsyms.
1396 (read_dld_descriptor): Ditto.
1397 (pa64_solib_add): Call read_dld_descriptor with readsyms.
1398 (pa64_solib_in_dynamic_linker): Ditto.
1399
1400 * corelow.c (symfile.h): Need this for auto_solib_add declaration.
1401 * sol-thread.c (symfile.h): Ditto.
1402
1403 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1404
1405 * s390-nat.c (s390_remove_watchpoint): Use xfree.
1406 (s390_insert_watchpoint): Use xmalloc.
1407
1408 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1409
1410 * varobj.c: Replace value_ptr with ``struct value *''.
1411
1412 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1413
1414 * varobj.c: Re-indent.
1415
1416 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1417
1418 * x86-64-tdep.c (value_push, x86_64_push_arguments): Replace
1419 ``value_ptr'' with ``struct value *''.
1420 * s390-tdep.c (s390_push_arguments): Ditto.
1421
1422 2001-10-30 Andrew Cagney <ac131313@redhat.com>
1423
1424 * ppc-tdep.h: Add #ifndef wrapper. Replace value_ptr with
1425 ``struct value *''.
1426 (struct frame_info, struct value): Add opaque declarations.
1427
1428 2001-10-31 Corinna Vinschen <vinschen@redhat.com>
1429
1430 * arch-utils.c (generic_in_solib_call_trampoline): New function.
1431 * arch-utils.h (generic_in_solib_call_trampoline): Extern declaration.
1432 * gdbarch.c: Regenerated from gdbarch.sh.
1433 * gdbarch.h: Ditto.
1434 * gdbarch.sh (function_list): Add `IN_SOLIB_CALL_TRAMPOLINE' definition.
1435 * infrun.c (IN_SOLIB_CALL_TRAMPOLINE): Remove macro.
1436
1437 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1438
1439 From DJ Barrow.
1440 * s390-tdep.c: (s390_gdbarch_init): Don't initialize
1441 find_solib_trampoline_target.
1442
1443 2001-10-31 Andrew Cagney <ac131313@redhat.com>
1444
1445 * remote-vx.c (net_wait): Fix typo from PIDGET change.
1446
1447 2001-10-31 Mark Kettenis <kettenis@gnu.org>
1448
1449 * config/i386/tm-i386.h (REGISTER_NAMES): Remove.
1450 (REGISTER_NAME): New define.
1451 (i386_register_name): New prototype.
1452 * i386-tdep.c (i386_register_names): New variable.
1453 (i386_register_name): New function.
1454 * config/i386/tm-i386os9k.h, config/i386/tm-ptx.h,
1455 config/i386/tm-symmetry.h: Undefine REGISTER_NAME instead of
1456 REGISTER_NAMES.
1457
1458 2001-10-31 Christopher Faylor <cgf@redhat.com>
1459
1460 * win32-nat.c (register_loaded_dll): Attempt to ensure that the case of
1461 the loaded DLL matches the on-disk case since the debugging API does
1462 not seem to ensure this. Calculate max name length here.
1463 (handle_load_dll): Move max name length calculation to
1464 register_loaded_dll.
1465
1466 2001-10-31 Daniel Jacobowitz <drow@mvista.com>
1467
1468 * arm-linux-nat.c: Include <asm/ptrace.h> explicitly.
1469
1470 2001-10-30 Keith Seitz <keiths@redhat.com>
1471
1472 * wrapper.h (gdb_value_struct_elt): New function.
1473 * wrapper.c (gdb_value_struct_elt): Ditto.
1474 (do_captured_value_struct_elt): Ditto.
1475
1476 2001-10-30 Andrew Cagney <ac131313@redhat.com>
1477
1478 * README, NEWS: Update for 5.1.
1479
1480 2001-10-30 Andrew Cagney <ac131313@redhat.com>
1481
1482 * configure.in (WERROR_CFLAGS): Use AC_TRY_COMPILE to test the
1483 -W... flags.
1484 * configure: Re-generate.
1485
1486 2001-10-30 Fred Fish <fnf@redhat.com>
1487
1488 * somsolib.c (som_solib_add): A megabyte is 1024*1024 bytes.
1489 * pa64solib.c (add_to_solist): Ditto.
1490 * win32-nat.c (_initialize_inftarg): Remove unnecessary
1491 initialization of auto_solib_add, it defaults to 1.
1492
1493 2001-10-27 Fred Fish <fnf@redhat.com>
1494
1495 * symfile.c (auto_solib_add): Update comment to note that
1496 this variable is now just used as a boolean to control shlib
1497 autoloading, and clarify when it is used.
1498 * symfile.h (auto_solib_add): Ditto.
1499
1500 * symfile.c (auto_solib_limit): New variable that holds the
1501 autoloading threshold instead of overloading auto_solib_add.
1502 * symfile.h (auto_solib_limit): Ditto.
1503
1504 * irix5-nat.c (_initialize_solib): Change auto-solib-add
1505 variable from var_zinteger to var_boolean and update help.
1506 * osfsolib.c (_initialize_solib): Ditto.
1507 * pa64solib.c (_initialize_pa64_solib): Ditto.
1508 * solib.c (_initialize_solib): Ditto.
1509 * somsolib.c (_initialize_som_solib): Ditto.
1510 * xcoffsolib.c (_initialize_solib): Ditto.
1511
1512 * pa64solib.c (pa64_solib_total_st_size): Update comment to
1513 note that the new auto_solib_limit variable is used instead
1514 of overloading auto_solib_add variable.
1515 (_initialize_pa64_solib): Ditto.
1516 * somsolib.c (som_solib_total_st_size): Ditto.
1517 (_initialize_som_solib): Ditto.
1518
1519 * pa64solib.c (_initialize_pa64_solib): Add new set/show
1520 commands for auto-solib-limit variable.
1521 * somsolib.c (_initialize_som_solib): Ditto
1522
1523 * pa64solib.c (add_to_solist): Check that auto_solib_add is
1524 set and use auto_solib_limit as the threshold size instead
1525 of auto_solib_add.
1526 * somsolib.c (som_solib_add): Ditto, and also change warning
1527 text about size threshold exceeded.
1528
1529 2001-10-21 Mark Kettenis <kettenis@gnu.org>
1530
1531 * config/i386/tm-i386v.h: Don't include "regcache.h".
1532 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, FRAME_CHAIN,
1533 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_NUM_ARGS):
1534 Remove macros. The versions from "tm-i386.h" should work fine
1535 (and in most cases even better).
1536
1537 2001-10-30 Mark Kettenis <kettenis@gnu.org>
1538
1539 * i386-tdep.c (i386_extract_return_value): Use
1540 convert_typed_floating to extract floating-point value from
1541 register buffer.
1542 (i386_store_return_value): Use convert_typed_floating to store
1543 floating-point return balue in register buffer
1544 (i386_register_virtual_type): Change type of floating-point
1545 registers to builtin_type_i387_ext.
1546 (i386_register_convert_to_virtual): Use convert_typed_floating to
1547 do the conversion.
1548 (i386_register_convert_to_raw): Likewise.
1549
1550 2001-10-29 Mark Kettenis <kettenis@gnu.org>
1551
1552 * doublest.h (convert_typed_floating): New prototype.
1553 * doublest.c (convert_typed_floating): New function.
1554
1555 2001-10-28 Mark Kettenis <kettenis@gnu.org>
1556
1557 * doublest.c: Improve comments a bit.
1558 (floatformat_from_length): New function.
1559 (NAN): Define to 0.0 if not already defined.
1560 (extract_floating): Rewrite to use floatformat_from_length. Warn
1561 instead of error if LEN doesn't match a known floating-point type,
1562 and return NaN (or 0.0 if NaN isn't available) in that case.
1563 (store_floating): Likewise, but zero out the target byte-stream if
1564 LEN doesn't match a known floating-point type.
1565 (extract_typed_floating): Reformat a bit.
1566 (store_typed_floating): Reformat a bit. Add comment about zeroing
1567 out padding in the target buffer.
1568 * doublest.h (extract_floating, store_floating): Fix comment about
1569 deprecation of these functions. Add parameter names to prototypes.
1570
1571 2001-10-28 Mark Kettenis <kettenis@gnu.org>
1572
1573 * i387-tdep.c (print_i387_value): Use extract_typed_floating to
1574 convert RAW to a DOUBLEST instead of extract_floating.
1575
1576 * gdbtypes.c (_initialize_gdbtypes): Set floating-point type for
1577 builtin_type_i387_ext to floatformat_i387_ext.
1578
1579 2001-10-24 Daniel Jacobowitz <drow@mvista.com>
1580
1581 * arm-linux-nat.c (fill_gregset): Do not check register_valid[].
1582 (fill_fpregset): Likewise.
1583
1584 2001-10-26 Orjan Friberg <orjanf@axis.com>
1585
1586 * cris-tdep.c (constraint): Loop through the whole cris_spec_regs
1587 struct, not just the NUM_SPECREGS first entries.
1588 (bdap_prefix): Read PC before autoincrement.
1589
1590 2001-10-24 Corinna Vinschen <vinschen@redhat.com>
1591
1592 * win32-nat.c (DebugSetProcessKillOnExit): New static function
1593 pointer to Windows' DebugSetProcessKillOnExit() function.
1594 (DebugActiveProcessStop): Ditto for DebugActiveProcessStop().
1595 (has_detach_ability): New function.
1596 (child_attach): If system has detach ability, enable it.
1597 (child_detach): If system has detach ability, actually
1598 detach from process.
1599 Change tty output to Linux format.
1600
1601 2001-10-23 Jim Blandy <jimb@redhat.com>
1602
1603 Isolate STABS readers' use of the `textlow' and `texthigh' fields
1604 of `struct partial_symtab' to only a few locations. This change
1605 is not supposed to affect the way the values are computed, only
1606 where they live.
1607
1608 * dbxread.c (struct symloc): Add `textlow' and `texthigh' fields
1609 to the reader-specific structure.
1610 * mdebugread.c (struct symloc): Same.
1611 * dbxread.c (TEXTLOW, TEXTHIGH): New accessor macros.
1612 * mdebugread.c (TEXTLOW, TEXTHIGH): Same.
1613 * dbxread.c (dbx_symfile_read): After we've built all our partial
1614 symbol tables, set each partial symtab's `textlow' and `texthigh'
1615 fields from our reader-specific structure.
1616 * mdebugread.c (mdebug_build_psymtabs): Same.
1617 * dbxread.c (start_psymtab): Initialize the reader-specific
1618 structure's `textlow' and `texthigh' from the new psymtab's.
1619 * mdebugread.c (parse_partial_symbols, new_psymtab): Same.
1620 * dbxread.c (read_dbx_symtab, end_psymtab, read_ofile_symtab): Use
1621 the reader-specific `textlow' and `texthigh', not the generic
1622 psymtab fields.
1623 * mdebugread.c (parse_lines, parse_partial_symbols,
1624 psymtab_to_symtab_1): Same.
1625 * partial-stab.h: Same.
1626
1627 Tue Oct 23 18:59:42 2001 Andrew Cagney <cagney@redhat.com>
1628
1629 * hp-psymtab-read.c, hppah-nat.c, hppa-tdep.c: Fix -Wformat
1630 problems.
1631
1632 Tue Oct 23 14:16:10 2001 Andrew Cagney <cagney@redhat.com>
1633
1634 * somsolib.c (som_solib_add): Use core_addr_to_host_pointer.
1635 (som_solib_desire_dynamic_linker_symbols): Compare integers with
1636 zero not NULL.
1637 * hp-psymtab-read.c (hpread_call_pxdb): Make parameter constant.
1638
1639 2001-10-21 Andrew Cagney <ac131313@redhat.com>
1640
1641 * top.c (print_gdb_version): Do not print ``(MI_OUT)''. MI
1642 interface is always enabled.
1643
1644 2001-10-21 Andrew Cagney <ac131313@redhat.com>
1645
1646 * Makefile.in: Replace top.h with $(top_h). Replace expression.h
1647 with $(expression_h). Replace command.h with $(command_h).
1648 (language_h): Define. Replace language.h with $(language_h).
1649 Replace call-cmds.h with $(call_cmds_h). Replace varobj.h with
1650 $(varobj_h).
1651 (wrapper_h, valprint_h, objfiles_h, complaints_h): Ditto.
1652 (serial_h, hpread_h, buildsym_h, stabsread_h): Ditto.
1653 (xcoffsolib_h, gdb_stabs_h, linespec_h): Ditto.
1654 (bcache_h, gdb_events_h, monitor_h): Ditto.
1655 (ser_unix_h, source_h): Ditto.
1656 (varobj_h): Update list.
1657
1658 * call-cmds.h: Add CALL_CMDS_H macro wrapper.
1659 * solist.h: Add SOLIST_H macro wrapper.
1660 * monitor.h: Add MONITOR_H macro wrapper.
1661 * typeprint.h: Add TYPEPRINT_H macro wrapper.
1662 * xcoffsolib.h: Add XCOFFSOLIB_H macro wrapper.
1663 * valprint.h: Add VALPRINT_H macro wrapper.
1664 * top.h: Add TOP_H macro wrapper.
1665
1666 2001-10-21 Andrew Cagney <ac131313@redhat.com>
1667
1668 * config/a29k/tm-vx29k.h, i386-tdep.c: Include "value.h".
1669 * arm-tdep.c, exec.c, ia64-tdep.c, infrun.c: Ditto.
1670 * ppc-linux-tdep.c, remote-es.c, remote.c: Ditto.
1671 * rs6000-tdep.c, s390-tdep.c, x86-64-tdep.c: Ditto.
1672 * Makefile.in (arm-tdep.o, exec.o, i386-tdep.o, ia64-tdep.o)
1673 (infrun.o, ppc-linux-tdep.o, remote.o, rs6000-tdep.o)
1674 (x86-64-tdep.o): Update dependencies.
1675 * gdbarch.sh [!GDB_MULTI_ARCH]: Include "value.h".
1676 * gdbarch.h, gdbarch.c: Re-generate.
1677
1678 2001-10-21 Mark Kettenis <kettenis@gnu.org>
1679
1680 * infptrace.c (child_xfer_memory): Fix a few coding standards
1681 violations.
1682
1683 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
1684
1685 * config/djgpp/README: Fix a typo and tweak for GDB 5.1.
1686
1687 2001-10-20 Andrew Cagney <ac131313@redhat.com>
1688
1689 * jv-lang.h: Add #ifndef JV_LANG_H wrapper.
1690 (struct value): Add opaque declaration. Replace value_ptr with
1691 ``struct value *''.
1692 * jv-valprint.c, jv-lang.c: Replace value_ptr with equivalent
1693 struct.
1694
1695 * wrapper.h (struct value): Add opaque declaration. Replace
1696 value_ptr with ``struct value *''.
1697 * wrapper.c: Replace value_ptr with ``struct value *''.
1698 * breakpoint.h, breakpoint.c: Ditto.
1699 * cp-abi.h, hpacc-abi.c, gnu-v2-abi.c, cp-abi.c: Ditto.
1700
1701 2001-10-20 Andrew Cagney <ac131313@redhat.com>
1702
1703 * alpha-nat.c: Include <alpha/coreregs.h> instead of
1704 <machine/reg.h>.
1705 (fetch_osf_core_registers): Define core_reg_mapping in a way that
1706 works on OSF5 as well as previous OSF versions.
1707
1708 2001-10-20 Christopher Faylor <cgf@redhat.com>
1709
1710 * win32-nat.c (handle_load_dll): Avoid strlwr'ing loaded DLLs or cygwin
1711 may not be able to read them in certain situations.
1712
1713 2001-10-18 Andrew Cagney <ac131313@redhat.com>
1714
1715 * config/powerpc/nbsd.mt (SIM_OBS, SIM): Define.
1716 * config/powerpc/linux.mt (SIM, SIM_OBS): Ditto
1717
1718 2001-10-18 Andrew Cagney <ac131313@redhat.com>
1719
1720 * README: Mention problems with HP/UX.
1721
1722 2001-10-16 Andrew Cagney <ac131313@redhat.com>
1723
1724 Based on code by John Moore <jmore@redhat.com>:
1725
1726 * utils.c (core_addr_to_string): New function for conversion of
1727 CORE_ADDR to string.
1728 (string_to_core_addr): New function to convert from string to
1729 CORE_ADDR.
1730 * defs.h: Added extern statements for the above.
1731
1732 2001-10-17 Jason Molenda (jason-cl@molenda.com)
1733
1734 * symtab.c (lookup_block_symbol): Break out of linear search
1735 if we're past the range of possible matches.
1736
1737 2001-10-16 Christopher Faylor <cgf@redhat.com>
1738
1739 * win32-nat.c (safe_symbol_file_add_stub): Improve logic for avoiding
1740 load of already loaded DLL.
1741 (register_loaded_dll): Convert loaded DLL name to "posix" format or it
1742 will confuse subsequent opening of the filename due to dos paths.
1743 (dll_symbol_command): Pass from_tty parameter to safe_symbol_file_add.
1744
1745 2001-10-15 Elena Zannoni <ezannoni@redhat.com>
1746
1747 * symtab.c (lookup_block_symbol): Update comment.
1748
1749 2001-10-15 Andrew Cagney <ac131313@redhat.com>
1750
1751 * value.h (value_as_address): Rename value_as_pointer.
1752 * eval.c, findvar.c, gnu-v2-abi.c, gnu-v3-abi.c, jv-lang.c,
1753 jv-valprint.c, printcmd.c, stack.c, top.c, valarith.c, valops.c,
1754 values.c: Update.
1755
1756 202001-10-15 Jim Ingham <jingham@inghji.apple.com>
1757
1758 * valarith.c (value_sub): Don't pass a raw type to
1759 value_from_pointer, it has to go through check_typedef first.
1760
1761 2001-10-15 Andrew Cagney <ac131313@redhat.com>
1762
1763 * gdbarch.sh (fallbackdefault): Set to one when predefault is
1764 empty.
1765 * gdbarch.h: Regenerate.
1766
1767 2001-10-15 Andrew Cagney <ac131313@redhat.com>
1768
1769 * mips-tdep.c (mips_integer_to_address): New function.
1770 (mips_gdbarch_init): Initialize pointer_to_address,
1771 address_to_pointer and integer_to_address.
1772
1773 * config/mips/tm-mips.h (POINTER_TO_ADDRESS): Delete
1774 (ADDRESS_TO_POINTER): Delete.
1775
1776 * d10v-tdep.c (d10v_integer_to_address): New function.
1777 (d10v_gdbarch_init): Initialize integer_to_address.
1778
1779 * values.c (value_as_pointer): Use INTEGER_TO_ADDRESS when
1780 available.
1781
1782 * gdbarch.sh (INTEGER_TO_ADDRESS): New predicate and function.
1783 * gdbarch.h, gdbarch.c: Regenerate.
1784
1785 2001-10-14 Mark Kettenis <kettenis@gnu.org>
1786
1787 * config/s390/nm-linux.h: Don't include <signal.h>.
1788 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
1789 GET_THREAD_SIGNAL): Remove.
1790
1791 * config/nm-linux.h (struct objfile): Remove forward declaration.
1792 (linuxthreads_new_objfile): Remove prototype.
1793 (linuxthreads_pid_to_str): Remove prototype.
1794 (PREPARE_TO_PROCEED): Redefine in terms of
1795 lin_lwp_prepare_to_proceed.
1796 (struct target_waitstatus): Forward declaration.
1797 (child_wait): New prototype.
1798 (CHILD_WAIT): Define.
1799 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
1800 GET_THREAD_SIGNAL): Moved here from arch-specific files.
1801 * config/alpha/nm-linux.h, config/arm/nm-linux.h,
1802 config/ia64/nm-linux.h, config/mips/nm-linux.h,
1803 config/powerpc/nm-linux.h: Don't include <signal.h>.
1804 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
1805 GET_THREAD_SIGNAL): Remove.
1806 * config/i386/nm-linux.h: Likewise.
1807 (struct target_waitstatus, child_wait, CHILD_WAIT): Remove.
1808 * config/m68k/linux.mh, config/sparc/linux.mh (NATDEPFILES):
1809 Remove linux-thread.o. Add proc-service.o, thread-db.o and
1810 lin-lwp.o.
1811 (LOADLIBES): New variable.
1812
1813 * sparc-nat.c (fetch_core_registers): Remove redundant prototype.
1814
1815 * proc-service.c (BUILD_LWP): Redefine in terms of ptid_build.
1816
1817 Fix attaching to cloned processes. This fixes PR gdb/61.
1818 * lin-lwp.c (struct lwp_info): Add new member `cloned'.
1819 (is_cloned) Removed.
1820 (lin_lwp_attach_lwp): Don't call stop_wait_callback. Instead call
1821 waitpid explicitly. Mark the LWP as cloned if waitpid fails and
1822 retry with __WCLONE flag.
1823 (lin_lwp_attach): Likewise. Warn if attaching to a cloned process.
1824 (detach_callback): Replace use of is_cloned with explicit check on
1825 LWP id and process id.
1826 (stop_wait_callback): Replace use of is_cloned with check if LWP
1827 is marked as cloned.
1828 [CHILD_WAIT] (child_wait): New function.
1829 (lin_lwp_wait): Replace use of is_cloned with check if LWP is
1830 marked as cloned. Mark newly detected LWPs as cloned if detected
1831 by waitpid with __WCLONE flag.
1832 (kill_wait_callback): Replace use of is_cloned with check if LWP
1833 is marked as cloned.
1834 * config/i386/nm-linux.h (struct target_waitstatus): Add forward
1835 declaration.
1836 (child_wait): Add prototype.
1837 (CHILD_WAIT): Define.
1838
1839 2001-10-13 Andrew Cagney <ac131313@redhat.com>
1840
1841 S/390 31 & 64 bit target and GNU/Linux native support.
1842 Contributed by D.J. Barrow <djbarrow@de.ibm.com> of IBM.
1843 * s390-nat.c, s390-tdep.c: New file.
1844 * config/s390/nm-linux.h, config/s390/s390.mh: New file.
1845 * config/s390/s390.mt, config/s390/s390x.mt: New file.
1846 * config/s390/tm-linux.h, config/s390/tm-s390.h: New file.
1847 * config/s390/xm-linux.h: New file.
1848 * NEWS: Update.
1849 * MAINTAINERS: Update.
1850
1851 2001-10-13 Andrew Cagney <ac131313@redhat.com>
1852
1853 From 2001-07-09 D.J. Barrow <djbarrow@de.ibm.com>:
1854 * gdbarch.sh: Fixed CALL_DUMMY_BREAKPOINT_OFFSET to check
1855 CALL_DUMMY_BREAKPOINT_OFFSET_P.
1856 * gdbarch.c: Regenerate.
1857
1858 2001-10-13 Mark Kettenis <kettenis@gnu.org>
1859
1860 * thread-db.c: Fix a few formatting mistakes.
1861
1862 2001-10-12 Christopher Faylor <cgf@redhat.com>
1863
1864 * win32-nat.c (safe_symbol_file_add_stub): Properly initialize linked
1865 list pointer to beginning rather than one beyond beginning.
1866
1867 2001-10-12 Daniel Jacobowitz <drow@mvista.com>
1868
1869 * symtab.h (struct block): (ALL_BLOCK_SYMBOLS): New macro.
1870
1871 * symtab.c (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
1872 (make_symbol_completion_list): Likewise.
1873 (make_symbol_overload_list): Likewise.
1874 * buildsym.c (finish_block): Likewise.
1875 * breakpoint.c (get_catch_sals): Likewise.
1876 * mdebugread.c (mylookup_symbol): Likewise.
1877 * objfiles.c (objfile_relocate): Likewise.
1878 * printcmd.c (print_frame_args): Likewise.
1879 * stack.c (print_block_frame_locals): Likewise.
1880 (print_block_frame_labels): Likewise.
1881 (print_frame_arg_vars): Likewise.
1882 * symmisc.c (dump_symtab): Likewise.
1883 * tracepoint.c (add_local_symbols): Likewise.
1884 (scope_info): Likewise.
1885
1886 2001-10-12 Daniel Jacobowitz <drow@mvista.com>
1887
1888 * minsyms.c (msymbol_hash): Use better hash function.
1889 (msymbol_hash_iw): Likewise. Terminate loop at '(' properly.
1890
1891 * objfiles.h: Increase MINIMAL_SYMBOL_HASH_SIZE to match modern
1892 binaries.
1893
1894 2001-10-12 Daniel Jacobowitz <drow@mvista.com>
1895
1896 * printcmd.c (print_frame_args): Move symbol iteration explicitly
1897 inside the func != NULL block.
1898
1899 2001-10-12 Fernando Nasser <fnasser@redhat.com>
1900
1901 * MAINTAINERS (Misc): Add Ian Roxborough as tcl/, tk/ and itcl/
1902 maintainer.
1903
1904 2001-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
1905
1906 * config/i386/tm-cygwin.h: Include tm-i386.h instead of tm-i386v.h.
1907 This fixes errors in "long long" handling for 'finish' and 'return'
1908 commands.
1909
1910 2001-10-12 Christopher Faylor <cgf@redhat.com>
1911
1912 * win32-nat.c (safe_symbol_file_add_stub): Avoid adding a shared
1913 library if it has already been loaded.
1914 (safe_symbol_file_add_cleanup): Don't mess with stderr or we won't see
1915 any error messages.
1916 (safe_symbol_file_add): Ditto.
1917 (solib_symbols_add): Make static. Accept 'from_tty' parameter. Pass
1918 it to safe_symbol_file_add.
1919 (core_dll_symbols_add): Accomodate extra solib_symbols_add parameter.
1920 (child_solib_add): Ditto.
1921
1922 * win32-nat.c (handle_exception): Don't print "first chance"
1923 exceptions.
1924 (get_child_debug_event): Continue from exceptions if !handle_exception.
1925
1926 2001-10-11 Tom Tromey <tromey@redhat.com>
1927
1928 * symtab.c (lookup_symtab): Removed.
1929 (lookup_symtab_1): Renamed to lookup_symtab.
1930
1931 2001-10-10 Christopher Faylor <cgf@redhat.com>
1932
1933 * win32-nat.c (get_child_debug_event): Close file handles created after
1934 process creation and DLL load.
1935 (child_create_inferior): Close unneeded process/thread handle after
1936 thread creation.
1937
1938 2001-10-10 Jim Blandy <jimb@redhat.com>
1939
1940 * mn10300-tdep.c (mn10300_analyze_prologue): Doc fixes.
1941
1942 2001-10-10 Keith Seitz <keiths@redhat.com>
1943
1944 * varobj.c (cplus_value_of_child): Deal with a failure
1945 to dereference a pointer object.
1946
1947 2001-10-08 J. Brobecker <brobecker@gnat.com>
1948
1949 * hpux-thread.c: rewrite find_active_thread() and find_tcb()
1950 to use ptid_t, instead of overloading the thread and the pid
1951 into the same 32-bit value. Make associated necessary adaptations.
1952 Also remove unused variable cached_active_thread.
1953
1954 2001-10-08 Nicholas Duffek <nsd@redhat.com>
1955
1956 * MAINTAINERS (powerpc, SCO/Unixware, Solaris/x86): Remove my
1957 entries.
1958
1959 2001-10-06 Mark Kettenis <kettenis@beast.freebsd.org>
1960
1961 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Define.
1962
1963 2001-10-04 Tom Tromey <tromey@redhat.com>
1964
1965 * main.c (enable_external_editor): Don't declare.
1966 (captured_main): Don't set enable_external_editor.
1967
1968 2001-10-02 Kevin Buettner <kevinb@redhat.com>
1969
1970 * Makefile.in (ALLDEPFILES): Add solib-svr4.c and solib-sunos.c
1971 to this list.
1972 (solib-sunos.o): Add dependencies.
1973 (solib-svr4.o): Revise dependencies.
1974 * solib-svr4.c: Remove SunOS shared library support.
1975 * solib-sunos.c: New file, created from solib-svr4.c, which still
1976 contains SunOS shared library support, but no SVR4 support.
1977
1978 * config/i386/nbsd.mh (NATDEPFILES): Remove solib-svr4.o and
1979 solib-legacy.o from this list. Add solib-sunos.o.
1980 * config/i386/sun386.mt (TDEPFILES): Likewise.
1981 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
1982 * config/m68k/sun2os4.mt (TDEPFILES): Likewise.
1983 * config/m68k/sun3os4.mt (TDEPFILES): Likewise.
1984 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
1985 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
1986 * config/sparc/sun4os4.mt (TDEPFILES): Likewise.
1987
1988 2001-10-01 Elena Zannoni <ezannoni@redhat.com>
1989
1990 * Makefile.in (mipsread.o): Remove old dependency on partial-stab.h.
1991
1992 2001-10-01 Elena Zannoni <ezannoni@redhat.com>
1993
1994 * xcoffread.c (N_UNDF, N_ABS, N_TEXT, N_DATA, N_BSS, N_COMM, N_FN,
1995 N_EXT, N_INDR, N_SETA, N_SETT, N_SETD, N_SETB, N_SETV,
1996 CUR_SYMBOL_TYPE, CUR_SYMBOL_VALUE, START_PSYMTAB, END_PSYMTAB,
1997 SET_NAMESTRING): Delete definitions.
1998 Don't include language.h any more.
1999 Don't include partial-stab.h any more.
2000 (scan_xcoff_symtab): Don't jump through hoops to reuse code in
2001 partial-stab.h, include the code directly, instead.
2002
2003 * Makefile.in (xcoffread.o): Remove dependency on partial-stab.h.
2004
2005 2001-10-01 Andrew Cagney <ac131313@redhat.com>
2006
2007 * infcmd.c (do_registers_info): Delete code dumping large
2008 registers. Handled by val_print.
2009
2010 2001-09-30 Andrew Cagney <ac131313@redhat.com>
2011
2012 * gdbarch.sh (gdbarch_alloc): Name the new architecture
2013 ``current_gdbarch'' so that it, and not the identically named
2014 global is refered to by macros.
2015 * gdbarch.c: Regenerate.
2016
2017 2001-09-29 Andrew Cagney <ac131313@redhat.com>
2018
2019 * cli/cli-decode.c (add_set_boolean_cmd): Define.
2020 * cli/cli-decode.h (add_set_boolean_cmd): Declare.
2021 * command.h (add_set_boolean_cmd): Ditto.
2022 * remote.c (_initialize_remote): Use add_set_boolean_cmd for "set
2023 remotebreak"
2024
2025 2001-09-29 Andrew Cagney <ac131313@redhat.com>
2026
2027 * gdbarch.sh (gdbarch_dump): Sort output.
2028 * gdbarch.c: Regenerate.
2029
2030 2001-09-29 Andrew Cagney <ac131313@redhat.com>
2031
2032 * rs6000-tdep.c (rs6000_gdbarch_init): Don't use the previous
2033 architecture to infer the wordsize. Previous architecture may not
2034 be a PowerPC.
2035
2036 2001-09-27 J. Brobecker <brobecker@gnat.com>
2037
2038 * infttrace.c (kill_inferior): Issue a TT_PROC_EXIT request rather
2039 than a TT_PROC_STOP request to kill the inferior and its child
2040 processes. Otherwise, the inferior is not killed on HPUX 11.0.
2041 Removed the code that detaches the child processes since we just
2042 killed them.
2043
2044 2001-09-26 Andrew Cagney <ac131313@redhat.com>
2045
2046 * serial.c (serial_set_cmdlist, serial_show_cmdlist): New
2047 variables.
2048 (serial_set_cmd, serial_show_cmd): New functions.
2049 (_initialize_serial): Add "set/show serial" command.
2050
2051 2001-09-26 Andrew Cagney <ac131313@redhat.com>
2052
2053 * CONTRIBUTE: Update.
2054
2055 2001-09-26 Kevin Buettner <kevinb@redhat.com>
2056
2057 * solib-svr4.h (set_solib_svr4_fetch_link_map_offsets): Add
2058 argument ``gdbarch''.
2059 * solib-svr4.c (SVR4_FETCH_LINK_MAP_OFFSETS): Change default value.
2060 (default_svr4_fetch_link_map_offsets): Rename to
2061 legacy_fetch_link_map_offsets().
2062 (svr4_fetch_link_map_offsets): New function.
2063 (fetch_link_map_offsets, fetch_link_map_offsets_init): Deleted.
2064 (fetch_link_map_offsets_gdbarch_data): New static global.
2065 (set_solib_svr4_fetch_link_map_offsets): Add argument ``gdbarch''.
2066 Revise to invoke set_gdbarch_data().
2067 (init_fetch_link_map_offsets): Change return type and add an
2068 argument so that it may be used as a gdbarch_data initializer.
2069 (_initialize_svr4_solib): Eliminate use of gdbarch swap mechanism.
2070 Use gdbarch data mechanism instead.
2071
2072 2001-09-25 Jiri Smid <smid@suse.cz>
2073
2074 * x86-64-linux-tdep.c (LINUX_SIGINFO_SIZE): Add.
2075 (x86_64_linux_sigcontext_addr): Replace `sizeof (struct siginfo)'
2076 by LINUX_SIGINFO_SIZE.
2077
2078 2001-09-24 Andrew Cagney <ac131313@redhat.com>
2079
2080 * maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): New
2081 variables.
2082 (maintenance_set_profile_cmd): New function.
2083 (maintenance_show_cmd, maintenance_set_cmd): New functions.
2084 (_initialize_maint_cmds): Add "maintenance set" and "maintenance
2085 show" and, commented out, "maintenance set/show profile" commands.
2086
2087 2001-09-24 Andrew Cagney <ac131313@redhat.com>
2088
2089 * findvar.c (read_var_value): For LOC_INDIRECT and LOC_REF_ARG
2090 convert the pointer into a CORE_ADDRs.
2091
2092 2001-09-24 Andrew Cagney <ac131313@redhat.com>
2093
2094 * doublest.h (store_floating, extract_floating): Add comment
2095 indicating these functions are deprecated.
2096 (extract_typed_floating, store_typed_floating): Declare.
2097 * doublest.c: Include "gdbtypes.h".
2098 (extract_typed_floating, store_typed_floating): Define.
2099
2100 * stabsread.c (define_symbol): Use store_typed_floating.
2101 * valarith.c (value_binop): Ditto.
2102 * values.c (unpack_long): Use extract_typed_floating.
2103 (unpack_double): Ditto.
2104
2105 2001-09-24 Orjan Friberg <orjanf@axis.com>
2106
2107 * cris-tdep.c (reg_mode_add_sub_cmp_and_or_move_op): Fetch operand1
2108 from correct register.
2109
2110 2001-09-22 Mark Kettenis <kettenis@gnu.org>
2111
2112 * x86-64-linux-tdep.c (STRUCT_OFFSET): Removed.
2113
2114 2001-09-21 Jiri Smid <smid@suse.cz>
2115
2116 * config/i386/x86-64linux.mh: New file.
2117 * config/i386/x86-64linux.mt: New file.
2118 * config/i386/nm-x86_64.h: New file.
2119 * x86-64-linux-tdep.c: New file.
2120 * x86-64-linux-nat.c: New file.
2121 * x86-64-tdep.c: New file.
2122 * x86-64-tdep.h: New file.
2123 * i386-tdep.h: New file.
2124 * i387-nat.c: Include i386-tdep.h when multiarch.
2125 * i387-tdep.c: Ditto.
2126 * config/djgpp/fnchange.lst: Add entries for x86_64-linux-tdep.c
2127 and x86_64-linux-nat.c
2128 * Makefile.in: Add x86_64-linux-tdep.o, x86_64-tdep.o,
2129 x86_64-linux-tdep.o, x86_64-nat.o, update dependencies.
2130
2131 2001-09-21 Jiri Smid <smid@suse.cz>
2132
2133 * MAINTAINERS: Add myself to the write-after-approval list.
2134 * i386-nat.c (TARGET_HAS_DR_LEN_8, DR_LEN_8): Declare.
2135 (i386_length_and_rw_bits, i386_handle_nonaligned_watchpoint,
2136 i386_insert_watchpoint, i386_remove_watchpoint): Add support for
2137 8-byte wide watchpoints.
2138 (i386_show_dr): Debug message format string change.
2139
2140 2001-09-21 Michael Snyder <msnyder@redhat.com>
2141
2142 * c-exp.y (typebase): Accept (signed long long) as a type expr.
2143
2144 2001-09-20 Michael Snyder <msnyder@redhat.com>
2145 Changes by Daniel Berlin <dan@cgsoftware.com>, to support
2146 better parsing of const and volatile type expressions.
2147 * c-exp.y (const_and_volatile, const_or_volatile_noopt,
2148 const_or_volatile): New non-terminals.
2149 (ptype): Use new rule for const_or_volatile.
2150 (typebase): Use new rule for const_or_volatile_noopt.
2151 * parser-defs.h (enum type_pieces): New values tp_const, tp_volatile.
2152 * parse.c (follow_types): Handle tp_const and tp_volatile on the
2153 type stack: call make_cv_type to create new const/volatile type.
2154
2155 2001-09-20 Kevin Buettner <kevinb@redhat.com>
2156
2157 * solib-svr4.c (fetch_link_map_offsets): Add comment.
2158 (fetch_link_map_offsets_init): New static global.
2159 (set_solib_svr4_fetch_link_map_offsets, init_fetch_link_map_offsets):
2160 Revise implementation to use ``fetch_link_map_offsets_init''
2161 instead of ``fetch_link_map_offsets''.
2162
2163 2001-09-20 Alan Modra <amodra@bigpond.net.au>
2164
2165 * coffread.c: Replace all occurrences of bfd_read with bfd_bread.
2166 * dbxread.c: Likewise.
2167 * dwarf2read.c: Likewise.
2168 * dwarfread.c: Likewise.
2169 * somread.c: Likewise.
2170 * ultra3-nat.c: Likewise.
2171 * xcoffread.c: Likewise.
2172
2173 2001-09-19 Andrew Cagney <ac131313@redhat.com>
2174
2175 * cris-tdep.c (cris_get_signed_offset): Change return type to an
2176 explicitly signed char.
2177
2178 * config/mcore/tm-mcore.h (mcore_virtual_frame_pointer): Update
2179 function signature to match recent tracepoint.c:encode_actions
2180 changes.
2181 * mcore-tdep.c (mcore_virtual_frame_pointer): Ditto.
2182
2183 2001-09-18 Andrew Cagney <ac131313@redhat.com>
2184
2185 * thread.c (do_captured_thread_select): Add uiout parameter.
2186 (do_captured_list_thread_ids): Ditto.
2187 * breakpoint.c (do_captured_breakpoint_query): Ditto.
2188
2189 * breakpoint.c (gdb_breakpoint_query): Update. Use
2190 catch_exceptions.
2191 * thread.c (gdb_list_thread_ids): Ditto.
2192 (gdb_thread_select): Ditto.
2193 (thread_command): Pass uiout to gdb_thread_select.
2194
2195 * gdb.h (gdb_breakpoint_query): Add parameter ui_out.
2196 (gdb_thread_select, gdb_list_thread_ids): Ditto.
2197
2198 2001-09-13 Kevin Buettner <kevinb@redhat.com>
2199
2200 From Ilya Golubev <gin@mo.msk.ru>:
2201 * solib.c (clear_solib): Call `remove_target_sections' to fix
2202 stale pointers in `struct target_ops'.
2203 * irix5-nat.c (clear_solib): Likewise.
2204 * osfsolib.c (clear_solib): Likewise.
2205
2206 2001-09-13 Jim Blandy <jimb@redhat.com>
2207
2208 * monitor.c (monitor_load): Don't delete symtab users, or reset
2209 inferior_ptid.
2210
2211 * monitor.c (monitor_load): Fix indentation.
2212
2213 2001-09-11 Jim Blandy <jimb@redhat.com>
2214
2215 * printcmd.c (print_scalar_formatted): Compare the length of the
2216 value against the lengths of the target's floating-point types,
2217 not the host's. Add support for `long double'.
2218
2219 * printcmd.c (print_scalar_formatted): Fix indentation.
2220
2221 2001-09-10 Jim Blandy <jimb@redhat.com>
2222
2223 * rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that
2224 programs running on the board can produce output.
2225
2226 2001-09-10 Jason Molenda (jmolenda@apple.com)
2227
2228 * NEWS: "ANS/ISO C" -> "ISO C".
2229 * MAINTAINERS (write-after-approval): Update my entry.
2230
2231 2001-09-08 Mark Kettenis <kettenis@gnu.org>
2232
2233 * config/xm-aix4.h (MEM_FNS_DECLARED): Removed.
2234
2235 * config/arm/xm-linux.h, config/ia64/xm-linux.h,
2236 config/m68k/xm-linux.h, config/mips/xm-linux.h,
2237 config/powerpc/xm-linux.h, config/sparc/xm-linux.h: Remove
2238 redundant inclusion of <unistd.h>.
2239
2240 * gdbtypes.h (struct block): Add forward declaration.
2241
2242 2001-09-07 Andrew Cagney <ac131313@redhat.com>
2243
2244 * defs.h (enum return_reason): Renumber so that all values are
2245 negative.
2246 (RETURN_MASK): Negate reason.
2247 (catch_exception_ftype): Declare.
2248 (catch_exceptions): Declare.
2249 * top.c (catcher): New function, based on catch_errors. Add in
2250 parameter func_uiout and out parameters func_val, func_caught and
2251 func_cleanup. Change type of func to catch_exceptions_ftype.
2252 Save/restore uiout.
2253 (struct catch_errors_args): Define.
2254 (do_catch_errors): New function.
2255 (catch_errors): Rewrite, use do_catch_errors and catcher.
2256 (catch_exceptions): New function, use catcher.
2257
2258 2001-09-07 Jim Blandy <jimb@redhat.com>
2259
2260 Correctly parse register values provided by the monitor.
2261 * rom68k-rom.c: #include "value.h".
2262 (is_hex_digit, hex_digit_value, is_whitespace,
2263 rom68k_supply_one_register): New static functions.
2264 (rom68k_supply_register): Call rom68k_supply_one_register, instead
2265 of monitor_supply_register; the latter was incorrectly parsing
2266 the values.
2267 * Makefile.in (rom68k-rom.o): Note that this now #includes value.h.
2268
2269 2001-09-07 Mark Kettenis <kettenis@gnu.org>
2270
2271 * config/rs6000/xm-rs6000.h (setpgrp): Remove macro. GDB defaults
2272 to using setpgid if available now.
2273
2274 2001-09-06 Keith Seitz <keiths@redhat.com>
2275
2276 From Ian Roxborough <irox@redhat.com>
2277 * configure.in: Use ITCL_LIB_FULL_PATH and
2278 ITK_LIB_FULL_PATH to set Itcl and Itk dependancies
2279 for gdb.
2280 * configure: Regenerated.
2281
2282 2001-09-06 Kevin Buettner <kevinb@redhat.com>
2283
2284 * dbxread.c (process_one_symbol): Don't use error result from
2285 find_stab_function_addr().
2286 * partial-stab.h (case 'F'): Likewise.
2287
2288 * partial-stab.h (case 'f'): Make SOFUN_ADDRESS_MAYBE_MISSING
2289 code match that used for case 'F'. This fixes the divergence
2290 that was introduced by my 1999-09-14 changes to partial-stab.h.
2291
2292 2001-09-05 Elena Zannoni <ezannoni@redhat.com>
2293
2294 * gdbarch.sh: Move include of dis-asm.h so it is generated earlier
2295 in gdbarch.h.
2296 (TARGET_PRINT_INSN): Multiarch.
2297 * gdbarch.h: Regenerate.
2298 * gdbarch.c: Regenerate.
2299
2300 * arch-utils.c (legacy_print_insn): New function.
2301 * arch-utils.h (legacy_print_insn): Export.
2302
2303 * cris-tdep.c (cris_delayed_get_disassembler): Use
2304 TARGET_PRINT_INSN, instead of tm_print_insn.
2305 * d10v-tdep.c (print_insn): Ditto.
2306 * d30v-tdep.c (print_insn): Ditto.
2307 * m32r-tdep.c (dump_insn): Ditto.
2308 * v850-tdep.c (v850_scan_prologue): Ditto.
2309 * mcore-tdep.c (mcore_dump_insn): Ditto.
2310 * sh-tdep.c (sh_gdbarch_init): Set print_insn gdbarch field.
2311
2312 2001-09-05 Jim Blandy <jimb@redhat.com>
2313
2314 * gdbtypes.h (struct type): Doc fix.
2315
2316 2001-09-04 Elena Zannoni <ezannoni@redhat.com>
2317
2318 From Daniel Jacobowitz <drow@mvista.com>
2319 * dbxread.c (free_header_files): Make global.
2320 (init_header_files): Likewise.
2321 * stabsread.h (free_header_files): Add prototype.
2322 (init_header_files): Likewise.
2323 * mdebugread.c (mdebug_build_psymtabs): Initialize
2324 properly before using the stabs debug reader.
2325
2326 2001-09-04 Elena Zannoni <ezannoni@redhat.com>
2327
2328 From Daniel Jacobowitz <drow@mvista.com>
2329 * dbxread.c (dbx_symfile_read): Only reinitialize
2330 the psymbol list if mainline or if both static
2331 and global lists are empty.
2332 * dwarf2read.c (dwarf2_build_psymtabs): Likewise.
2333 * dwarfread.c (dwarf_build_psymtabs): Likewise.
2334 * xcoffread.c (xcoff_initial_scan): Likewise.
2335 * os9kread.c (os9k_symfile_read): Likewise.
2336
2337 2001-09-04 Elena Zannoni <ezannoni@redhat.com>
2338
2339 From Daniel Jacobowitz <drow@mvista.com>
2340 * mdebugread.c (psymtab_to_symtab_1): Handle N_SO stabs without
2341 a name specially.
2342
2343 2001-09-01 Mark Kettenis <kettenis@gnu.org>
2344
2345 Make GDB use libiberty regex implementation.
2346 * gdb_regex.h: Normalize protection against multiple inclusion.
2347 Include "xregex.h" instead of "gnu-regex.h".
2348 * cli/cli-cmds.c: Include "gdb_regex.h" instead of "gnu-regex.h".
2349 * cli/cli-decode.c: Likewise.
2350 * Makefile.in (REGEX): Remove.
2351 (GDB_CFLAGS): Remove reference to gnu-regex.h in comment.
2352 (ADD_FILES, ADD_DEPS): Remove $(REGEX).
2353 (POSSLIBS): Remove.
2354 (TAGFILES_NO_SRCDIR): Remove $(POSSLIBS).
2355 (irix5-nat.o, solib.o, solib-svr4.o, source.o, symtab.o,
2356 xcoffsolib.o, cli-decode.o, cli-cmd.o): Replace gnu-regex.h with
2357 gdb_regex.h in list of dependencies.
2358 (gnu-regex.o): Remove rule.
2359 * gnu-regex.c, gnu-regex.h: Remove files.
2360
2361 2001-08-31 Jason Molenda (jmolenda@apple.com)
2362
2363 * c-valprint.c (c_val_print): Second call to check_typedef ()
2364 is no longer necessary.
2365
2366 2001-08-31 Kevin Buettner <kevinb@redhat.com>
2367
2368 * ia64-tdep.c (examine_prologue): Don't let a branch unit nop
2369 terminate the prologue scan.
2370
2371 2001-08-30 Jim Blandy <jimb@redhat.com>
2372
2373 * symfile.c (sections_overlap): New function.
2374 (map_overlay_command): Call sections_overlap, instead of using
2375 incorrect logic to recognize overlapping sections.
2376
2377 * symfile.c (load_command): Invalidate the overlay cache.
2378
2379 2001-08-30 Mark Kettenis <kettenis@gnu.org>
2380
2381 * config/i386/xm-i386.h (HOST_BYTE_ORDER): Removed.
2382
2383 2001-08-29 Kevin Buettner <kevinb@redhat.com>
2384
2385 From 2001-08-07 Daniel Jacobowitz <drow@mvista.com>:
2386 * solib-svr4.c (enable_break): Check the inferior link map
2387 before assuming the inferior PC is at the start of the dynamic
2388 loader.
2389
2390 2001-08-28 Andrew Cagney <cagney@toribio.toronto.redhat.com>
2391
2392 * frame.h (struct frame_info): Fix documentation on fields
2393 saved_regs, next and prev.
2394
2395 2001-08-23 Mark Kettenis <kettenis@gnu.org>
2396
2397 * event-top.c (async_stop_sig) [HAVE_SIGPROCMASK]: Some
2398 gratuitious whitespace changes.
2399 [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is defined.
2400 * top.c: Remove redundant logic to define HAVE_SIGSETMASK.
2401 (sigsetmask) Don't define macro.
2402 (stop_sig) [HAVE_SIGPROCMASK]: Add bit of code snatched from
2403 async_stop_sig from event-top.c.
2404 [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is
2405 defined.
2406 * configure.in (AC_CHECK_FUNCS): Put functions in alphabetical
2407 order. Add sigsetmask.
2408 (AC_FUNC_VFORK, AC_FUNC_ALLOCA): Reorder such that they're in
2409 alphabetical order.
2410 * config/xm-aix4.h, config/alpha/xm-alphalinux.h,
2411 config/i386/xm-cygwin.h, config/rs6000/xm-rs6000.h
2412 (HAVE_SIGSETMASK): Remove.
2413 * aclocal.m4, config.in, configure: Regenerated.
2414
2415 2001-08-26 Andrew Cagney <ac131313@redhat.com>
2416
2417 From 2001-06-29 Andrew Cagney <ac131313@redhat.com>:
2418 * config/powerpc/nbsd.mh (XM_FILE): Delete.
2419
2420 2001-08-21 Andrew Cagney <ac131313@redhat.com>
2421
2422 * doublest.h (HOST_FLOAT_FORMAT): Delete macro.
2423 (HOST_DOUBLE_FORMAT): Delete macro.
2424
2425 2001-08-24 Mark Kettenis <kettenis@gnu.org>
2426
2427 * config/xm-lynx.h, config/xm-nbsd.h, config/xm-sysv4.h,
2428 config/i386/xm-i386aix.h, config/m68k/xm-dpx2.h: Remove redundant
2429 inclusion of <limits.h>.
2430
2431 2001-08-24 Andrew Cagney <ac131313@redhat.com>
2432
2433 * regcache.c (read_register_bytes): When REGISTER_NAME indicates
2434 that a register should be ignored, supply a value for the register
2435 from the raw registers[] buffer.
2436
2437 2001-08-24 Andrew Cagney <ac131313@redhat.com>
2438
2439 * go32-nat.c (go32_create_inferior): Use xfree instead of free.
2440 * config/djgpp/fnchange.lst: Add entries for i386bsd-tdep.c and
2441 i386bsd-nat.c.
2442
2443 2001-08-21 Andrew Cagney <ac131313@redhat.com>
2444
2445 * gdbtypes.h (builtin_type_ieee_single_big)
2446 (builtin_type_ieee_single_little, builtin_type_ieee_double_big)
2447 (builtin_type_ieee_double_little)
2448 (builtin_type_ieee_double_littlebyte_bigword)
2449 (builtin_type_i387_ext, builtin_type_m68881_ext)
2450 (builtin_type_i960_ext, builtin_type_m88110_ext)
2451 (builtin_type_m88110_harris_ext, builtin_type_arm_ext_big)
2452 (builtin_type_arm_ext_littlebyte_bigword)
2453 (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little)
2454 (builtin_type_ia64_quad_big)
2455 (builtin_type_ia64_quad_little): Declare.
2456 * gdbtypes.c (builtin_type_ieee_single_big)
2457 (builtin_type_ieee_single_little, builtin_type_ieee_double_big)
2458 (builtin_type_ieee_double_little)
2459 (builtin_type_ieee_double_littlebyte_bigword)
2460 (builtin_type_i387_ext, builtin_type_m68881_ext)
2461 (builtin_type_i960_ext, builtin_type_m88110_ext)
2462 (builtin_type_m88110_harris_ext, builtin_type_arm_ext_big)
2463 (builtin_type_arm_ext_littlebyte_bigword)
2464 (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little)
2465 (builtin_type_ia64_quad_big)
2466 (builtin_type_ia64_quad_little): Define.
2467 (_initialize_gdbtypes): Initialize builtin floatformat types.
2468
2469 2001-08-23 Mark Kettenis <kettenis@gnu.org>
2470
2471 * tracepoint.c (read_actions): Add FIXME for code depending on
2472 STOP_SIGNAL.
2473
2474 2001-08-23 Martin M. Hunt <hunt@redhat.com>
2475
2476 * remote-mips.c (pmon_load_fast): Add ui_load_progress_hook
2477 to download loop.
2478 (mips_load_srec): Ditto.
2479
2480 2001-08-22 Andrew Cagney <ac131313@redhat.com>
2481
2482 * gdbtypes.c (build_gdbtypes): Initialize TYPE_FLOATFORMAT field
2483 of builtin_type_float, builtin_type_double and
2484 builtin_type_long_double.
2485 (recursive_dump_type): Print the floatformat name.
2486 * gdbtypes.h (struct type): Add type_specific field floatformat.
2487 (TYPE_FLOATFORMAT): Define
2488
2489 2001-08-21 Keith Seitz <keiths@redhat.com>
2490
2491 * printcmd.c (print_insn): Use the given stream for
2492 output.
2493
2494 2001-07-24 Andrew Cagney <ac131313@redhat.com>
2495
2496 * arm-tdep.c (convert_from_extended, convert_to_extended): Delete
2497 assembler version of function.
2498 (convert_from_extended, convert_to_extended): Rewrite. Use
2499 floatformat_to_doublest, floatformat_from_doublest,
2500 floatformat_arm_ext_big, floatformat_arm_ext_littlebyte_bigword.
2501 (arm_push_arguments): Use extract_floating and store_floating to
2502 perform floating point conversions.
2503 (SWAP_TARGET_AND_HOST): Delete macro.
2504 * arm-linux-tdep.c (arm_linux_push_arguments): Use
2505 extract_floating and store_floating to perform floating point
2506 conversions.
2507
2508 2001-08-20 Andrew Cagney <ac131313@redhat.com>
2509
2510 * gdbtypes.h (struct type): Clarify meaning of field ``length''.
2511
2512 2001-08-17 Keith Seitz <keiths@redhat.com>
2513
2514 * varobj.c (varobj_update): Change first parameter to
2515 pointer to struct varobj*. This function can delete
2516 varobjs, so we need to give callers the new varobj
2517 when this happens.
2518 (value_of_root): Update "var", too, if "var_handle"
2519 changes.
2520 * varobj.h (varobj_update): Likewise.
2521
2522 2001-08-17 Keith Seitz <keiths@redhat.com>
2523
2524 * Makefile.in (varobj_h): Define.
2525 (mi-cmd-var.o): Depends on varobj_h.
2526 (gdbtk-varobj.o): Change varobj.h to $(varobj_h).
2527
2528 2001-08-16 Keith Seitz <keiths@redhat.com>
2529
2530 * configure.in (GDBTK_SRC_DIR): We must have autoconf
2531 give us the absolute path to the source directory.
2532 * configure: Regenerated.
2533 * Makefile.in (GDBTK_SRC_DIR): Add variable so that
2534 autoconf can substitue it in for us.
2535 (gdbtk.o): Pass in GDBTK_SRC_DIR instead of srcdir. We
2536 really do need an absolute pathname.
2537
2538 2001-08-15 Keith Seitz <keiths@redhat.com>
2539
2540 * Makefile.in (GDBTK_VERSION): Set a version number.
2541 (GDBTK_LIBRARY): New variable to point to location where
2542 gdbtk will install its tcl library. Changed all refereneces
2543 to $(datadir)/insight1.0 to $(GDBTK_LIBRARY).
2544 (SUBDIR_GDBTK_ALL): Remove "all-gdbtk". No longer needed.
2545 (SUBDIR_GDBTK_CLEAN): Remove "clean-gdbtk". No longer needed.
2546 (all-gdbtk): Remove.
2547 (install-gdbtk): Remove.
2548 (gdbtk.o): Pass srcdir to file when compiling.
2549
2550 2001-08-15 Ian Roxborough <irox@redhat.com>
2551
2552 * Makefile.in: Changed all references to the install directory
2553 "gdbtcl" to read "insight1.0".
2554
2555 2001-08-15 Corinna Vinschen <vinschen@redhat.com>
2556
2557 * arch-utils.c (generic_skip_trampoline_code): New function.
2558 * arch-utils.h (generic_skip_trampoline_code): Declare external.
2559 * gdbarch.c: Regeberated from gdbarch.sh.
2560 * gdbarch.h: Ditto.
2561 * gdbarch.sh (SKIP_TRAMPOLINE_CODE): Multi-arch.
2562 * infrun.c: Remove default setting of SKIP_TRAMPOLINE_CODE macro.
2563
2564 2001-08-14 Daniel Jacobowitz <drow@mvista.com>
2565 H.J. Lu (hjl@gnu.org)
2566
2567 * partial-stab.h: valu should be a CORE_ADDR.
2568
2569 2001-08-14 H.J. Lu (hjl@gnu.org)
2570
2571 * dbxread.c (SWAP_SYMBOL): Removed.
2572 (INTERNALIZE_SYMBOL): Check sign extended vma.
2573
2574 2001-08-13 Christopher Faylor <cgf@cygnus.com>
2575
2576 * top.c (SIGSETJMP): Protect env argument with parentheses.
2577 (SIGLONGJMP): Protect env argument with parentheses.
2578
2579 2001-08-11 Andrew Cagney <ac131313@redhat.com>
2580
2581 * config/mn10300/mn10300.mt (TM_FILE): Delete.
2582 * configure.tgt: Add mn10300 to list of mulit-arch targets.
2583 * config/mn10300/tm-mn10300.h: Delete file. Move contents ...
2584 * mn10300-tdep.c: To here.
2585
2586 2001-08-11 Andrew Cagney <ac131313@redhat.com>
2587
2588 * config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_VIRTUAL): Make
2589 val a DOUBLEST. Use floatformat_to_doublest.
2590 (REGISTER_CONVERT_TO_RAW): Ditto. Use foatformat_from_doublest.
2591 * config/m88k/tm-m88k.h (REGISTER_CONVERT_TO_VIRTUAL): Ditto.
2592 (REGISTER_CONVERT_TO_RAW): Ditto.
2593
2594 2001-08-11 Andrew Cagney <ac131313@redhat.com>
2595
2596 * config/mn10300/tm-mn10300.h (PC_REGNUM, SP_REGNUM): Delete.
2597 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize pc_regnum and
2598 sp_regnum.
2599
2600 2001-08-11 Andrew Cagney <ac131313@redhat.com>
2601
2602 * doublest.c (convert_doublest_to_floatformat): Rename
2603 floatformat_from_doublest. Make static.
2604 (convert_floatformat_to_doublest): Rename floatformat_to_doublest.
2605 Make static.
2606 (floatformat_to_doublest): New function.
2607 (floatformat_from_doublest): New function.
2608 (host_float_format, host_double_format, host_long_double_format):
2609 New static variables.
2610 (store_floating, extract_floating): Always use
2611 floatformat_to_doublest and floatformat_from_doublest.
2612 * doublest.h (HOST_LONG_DOUBLE_FORMAT): Delete macro.
2613
2614 2001-08-11 Andrew Cagney <ac131313@redhat.com>
2615
2616 * config/mn10300/tm-mn10300.h (INIT_FRAME_PC): Delete.
2617 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize init_frame_pc.
2618
2619 2001-08-07 Andrew Cagney <ac131313@redhat.com>
2620
2621 * target.h (TARGET_VIRTUAL_FRAME_POINTER): Delete, multi-arched.
2622 * gdbarch.sh (TARGET_VIRTUAL_FRAME_POINTER): Add.
2623 * gdbarch.h, gdbarch.c: Regenerate.
2624
2625 * arch-utils.h (legacy_virtual_frame_pointer): Declare.
2626 * arch-utils.c: Include "gdb_assert.h".
2627 (legacy_virtual_frame_pointer): Define.
2628 * Makefile.in (arch-utils.o): Depends on gdb_assert.h.
2629
2630 * tracepoint.c (encode_actions): Make frame_reg an int. Make
2631 frame_offset a LONGEST.
2632 * ax-gdb.c (gen_frame_args_address): Ditto.
2633 (gen_frame_locals_address): Ditto.
2634 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize
2635 virtual_frame_pointer.
2636 (mn10300_virtual_frame_pointer): Make static. Update parameter
2637 list to match function signature.
2638 * config/mn10300/tm-mn10300.h (TARGET_VIRTUAL_FRAME_POINTER): Delete.
2639
2640 2001-08-10 Keith Seitz <keiths@redhat.com>
2641
2642 * gdb-events.sh: Add architecture_changed event.
2643 * gdbarch.sh: Include gdb-event.h.
2644 (gdbarch_update_p): Notify UIs when architecture changes.
2645 * gdb-events.h: Regenerated.
2646 * gdb-events.c: Regenerated.
2647 * gdbarch.c: Regenerated.
2648
2649 2001-08-10 Michael Snyder <msnyder@redhat.com>
2650
2651 * regcache.c (legacy_write_register_gen): Don't 'optimize out'
2652 a write_register to a pseudo-reg. Target_store_pseudo_register
2653 needs to get called, because these regs may be computed and may
2654 have side-effects.
2655
2656 2001-08-10 Keith Seitz <keiths@redhat.com>
2657
2658 * gdb-events.sh: Deal with event notifications with no
2659 arguments.
2660
2661 2001-08-10 Orjan Friberg <orjanf@axis.com>
2662
2663 * remote.c (read_frame): Correct off-by-one error in condition.
2664
2665 2001-08-08 Don Howard <dhoward@redhat.com>
2666
2667 * stabsread.c (read_type): Add support for const and volatile
2668 modifiers.
2669
2670 2001-08-02 Daniel Jacobowitz <drow@mvista.com>
2671
2672 * core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_T
2673 and HAVE_FPREGSET_T checks. Use gdb_gregset_t and gdb_fpregset_t.
2674
2675 2001-08-02 Keith Seitz <keiths@redhat.com>
2676
2677 * defs.h (SLASH_STRING): If not defined, set
2678 to "/", regardless of _WIN32, __CYGWIN__, or
2679 whatnot.
2680
2681 2001-08-02 Mark Kettenis <kettenis@gnu.org>
2682
2683 * cli/cli-decode.h: Include "gdb_regex.h" instead of
2684 "gnu-regex.h".
2685
2686 * NEWS: Update.
2687
2688 2001-08-02 Eli Zaretskii <eliz@is.elta.co.il>
2689
2690 * config/i386/xm-go32.h: Include xm-i386.h.
2691 (HOST_BYTE_ORDER, HOST_LONG_DOUBLE_FORMAT): Remove definitions.
2692
2693 2001-08-02 Eli Zaretskii <eliz@is.elta.co.il>
2694
2695 The following changes avoid polluting global namespace with the
2696 `enable' and `disable' identifiers, because some platforms define
2697 in their system headers symbols with global scope that go by those
2698 names.
2699
2700 * breakpoint.h (enum enable_state): Rename from `enum enable'.
2701 Also rename all the enum members to have the "bp_" prefix.
2702 (struct breakpoint): Rename the `enable' member to `enable_state'.
2703 (enum bpdisp): Rename all members to have the "disp_" prefix.
2704
2705 * breakpoint.c: All users of `enum enable' and `enum bpdisp'
2706 changed.
2707 (args_for_catchpoint_enable): Rename the `enable' member to
2708 `enable_p'. All users changed.
2709
2710 * tracepoint.h (enum enable): Remove.
2711 (struct tracepoint): The member `enabled' is now `int enabled_p'.
2712
2713 * tracepoint.c: All users of the `enabled' member changed.
2714
2715 * printcmd.c (struct display): The `status' member is now an int.
2716
2717 * memattr.h (struct mem_region): Rename the `status' member to
2718 `enabled_p'.
2719 (enum enable): Remove.
2720
2721 * memattr.c: Change all users of the `status' member of struct
2722 mem_region to use `enabled_p' instead.
2723
2724 * infcmd.c (run_stack_dummy): Use disp_del instead of del.
2725
2726 * go32-nat.c: Remove the kludgey work-around for conflicts between
2727 <dos.h> and "breakpoint.h".
2728
2729 2001-08-02 Corinna Vinschen <vinschen@redhat.com>
2730
2731 * MAINTAINERS: Add myself to the write-after-approval list.
2732 * ser-tcp.c (tcp_open): Use `localhost' as default host if no
2733 hostname is given.
2734
2735 2001-08-01 Andrew Cagney <ac131313@redhat.com>
2736
2737 * doublest.h (store_floating, floatformat_to_doublest): Make IN
2738 paramter a const void pointer.
2739 (floatformat_from_doublest): Make IN const, Make OUT a void
2740 pointer.
2741 * doublest.c (floatformat_to_doublest): Update.
2742 (floatformat_from_doublest): Update.
2743 (extract_floating): Update.
2744
2745 2001-07-31 Andrew Cagney <ac131313@redhat.com>
2746
2747 * defs.h (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2748 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2749 (HOST_LONG_DOUBLE_FORMAT, DOUBLEST)
2750 (floatformat_to_doublest, floatformat_from_doublest)
2751 (floatformat_is_negative, floatformat_is_nan)
2752 (floatformat_mantissa, store_floating)
2753 (extract_floating): Move declaration from here.
2754 * doublest.h: To here. New file.
2755 * utils.c (get_field, floatformat_to_doublest, put_field)
2756 (ldfrexp, floatformat_from_doublest, floatformat_is_negative)
2757 (floatformat_is_nan, floatformat_mantissa)
2758 (FLOATFORMAT_CHAR_BIT): Move from here.
2759 * doublest.c: To here. New file.
2760 * findvar.c (store_floating, extract_floating): Move from here.
2761 * doublest.c: To here.
2762 * Makefile.in (SFILES): Add doublest.c.
2763 (COMMON_OBS): Add doublest.o.
2764 (doublest.o): Specify dependencies.
2765 (doublest_h): Define.
2766
2767 * config/m88k/tm-m88k.h: Include "doublest.h".
2768 * config/i960/tm-i960.h: Ditto.
2769 * config/i386/tm-symmetry.h: Ditto.
2770 * rs6000-tdep.c, valarith.c: Ditto.
2771 * valprint.c, stabsread.c, sh-tdep.c: Ditto.
2772 * ia64-tdep.c, i387-tdep.c, i386-tdep.c: Ditto.
2773 * values.c, arm-tdep.c, arm-linux-tdep.c: Ditto.
2774 * alpha-tdep.c, ax.h, expression.h: Ditto.
2775 * sh-tdep.c, parse.c, top.c, value.h: Ditto.
2776
2777 * Makefile.in (arm-tdep.o): Add $(doublest_h).
2778 (i386-tdep.o, i387-tdep.o, ia64-tdep.o): Ditto.
2779 (rs6000-tdep.o, stabsread.o, valarith.o): Ditto.
2780 (values.o, valprint.o, arm-linux-tdep.o): Ditto.
2781 (alpha-tdep.o, ax_h, parse.o, top.o, value_h): Ditto.
2782 (parser_defs_h): Ditto.
2783 (expression_h): Add $(doublest_h) and $(symtab_h).
2784
2785 2001-08-01 Andrew Cagney <ac131313@redhat.com>
2786
2787 * Makefile.in: Sort header definitions.
2788 (parser_defs_h, dis_asm_h, annotate_h, gdbthread_h): Define.
2789 Replace parser-defs.h with $(parser_defs_h). Replace $(dis-asm_h)
2790 and $(dis-asm.h) with $(dis_asm_h). Replace annotate.h with
2791 $(annotate_h). Replace target.h with $(target_h). Replace
2792 gdbthread.h with $(gdb_thread_h). Replace symfile.h with $(symfile_h).
2793
2794 2001-07-31 Mark Kettenis <kettenis@gnu.org>
2795
2796 * config/i386/xm-i386.h: New file.
2797 * config/i386/xm-fbsd.h: Removed.
2798 * config/i386/xm-linux.h: Removed.
2799 * config/i386/fbsd.mh: Reorganize a bit.
2800 (XM_FILE): Set to xm-i386.h instead of xm-fbsd.h.
2801 * config/i386/linux.mh (XM_FILE): Set to xm-i386.h insread of
2802 xm-linux.h.
2803
2804 2001-07-30 Jim Blandy <jimb@redhat.com>
2805
2806 * dwarf2read.c (dwarf2_build_psymtabs_hard): Doc fix.
2807
2808 2001-07-27 Daniel Jacobowitz <drow@mvista.com>
2809
2810 * configure.in: Only invoke AC_FUNC_SETPGRP if not cross-compiling.
2811 Check for SETPGRP_VOID separately if cross-compiling and ISO C
2812 headers are available.
2813
2814 2001-07-30 Mark Kettenis <kettenis@gnu.org>
2815
2816 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Redefine to call
2817 i386_dwarf_reg_to_regnum.
2818
2819 * i386-tdep.c (i386_register_convert_to_virtual): Replace
2820 assertion with a warning if we're asked to convert towards a
2821 non-floating-point type. Zero out the the buffer where the data
2822 is supposed to be stored in that case.
2823
2824 2001-07-29 Eli Zaretskii <eliz@is.elta.co.il>
2825
2826 * config/djgpp/djconfig.sh: Unset CDPATH.
2827
2828 * go32-nat.c (get_cr3): Temporary disable support for page tables
2829 in UMBs, as it is incomplete.
2830
2831 Support for stepping through longjmp in DJGPP programs:
2832
2833 * config/i386/tm-go32.h (JB_ELEMENT_SIZE, JB_PC): New macros.
2834 (GET_LONGJMP_TARGET): Define to call get_longjmp_target.
2835 (get_longjmp_target): Add prototype.
2836
2837 2001-07-28 Andrew Cagney <ac131313@redhat.com>
2838
2839 Fix some PID/TPID fallout for HP/UX.
2840 From 2001-07-22 Rodney Brown <rbrown64@csc.com.au>:
2841 * infttrace.c (ptrace_wait): Match external declaration,
2842 and match target_post_wait declaration.
2843
2844 2001-07-28 Andrew Cagney <ac131313@redhat.com>
2845
2846 * MAINTAINERS: Add Orjan Friberg as cris target maintainer.
2847 (cris): Set --enable-gdb-build-warnings flag to -w.
2848
2849 2001-07-28 Andrew Cagney <ac131313@redhat.com>
2850
2851 From 2001-07-23 Andreas Schwab <schwab@suse.de>:
2852 * config/m68k/tm-m68k.h (TARGET_LONG_DOUBLE_FORMAT): Define.
2853 (TARGET_LONG_DOUBLE_BIT): Define.
2854 (REGISTER_VIRTUAL_SIZE): Return 12 for floating point registers.
2855 (MAX_REGISTER_VIRTUAL_SIZE): Increase to 12.
2856 (REGISTER_VIRTUAL_TYPE): Return builtin_type_long_double for
2857 floating point registers.
2858 (REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL)
2859 (REGISTER_CONVERT_TO_RAW): Remove.
2860 * config/m68k/xm-linux.h (HOST_LONG_DOUBLE_FORMAT): Define.
2861
2862 2001-07-26 Andrew Cagney <ac131313@redhat.com>
2863
2864 * thread.c, breakpoint.c: Include "gdb.h".
2865 * Makefile.in (gdb_h): Define.
2866 (HFILES_NO_SRCDIR): Add gdb.h.
2867 (mi-cmd-break.o, mi-main.o, thread.o)
2868 (breakpoint.o): Add dependency on $(gdb_h).
2869
2870 * defs.h (enum gdb_rc, gdb_breakpoint_query)
2871 (gdb_breakpoint, gdb_thread_select)
2872 (gdb_list_thread_ids): Move declaration from here ...
2873 * gdb.h: To here. New file.
2874
2875 2001-07-28 Stephane Carrez <Stephane.Carrez@worldnet.fr>
2876
2877 * Makefile.in (SUBDIR_TUI_OBS): Add tui-out.o, tui-hooks.o.
2878 (SUBDIR_TUI_SRCS): Add tui-out.c tui-hooks.c
2879 (SFILES): Likewise.
2880 (tui-out.o): Define dependencies.
2881 (tui-hooks.o): Likewise.
2882
2883 2001-07-28 Andrew Cagney <ac131313@redhat.com>
2884
2885 * MAINTAINERS: Update e-mail address of active @cygnus.com
2886 maintainers to @redhat.com.
2887
2888 2001-07-28 Andrew Cagney <ac131313@redhat.com>
2889
2890 * README (Known bugs): Delete section.
2891 (Kernel debugging): Delete section.
2892 (Languages other than C): Delete section.
2893 (Host/target specific installation notes) New section.
2894
2895 2001-07-28 Mark Kettenis <kettenis@gnu.org>
2896
2897 * config/i386/tm-i386.h (STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
2898 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): New defines.
2899 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum): New
2900 prototypes.
2901 * config/i386/tm-fbsd.h, config/i386/tm-i386gnu.h,
2902 config/i386/tm-linux.h (STAB_REG_TO_REGNUM): Redefine to call
2903 i386_dwarf_reg_to_regnum.
2904 * i386-tdep.c (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum):
2905 New functions.
2906
2907 * i386-tdep.c: Include "gdb_assert.h"
2908 (i386_register_convert_to_virtual): Fix such that it can handle
2909 conversion to any floating-point type. Assert that we are dealing
2910 with a floating-point first.
2911 (i386_register_convert_to_raw): Assert that TYPE is a
2912 floating-point type with length 12.
2913
2914 2001-07-27 John R. Moore <jmoore@redhat.com>
2915
2916 * configure.in: Added dependency of gdb on tcl/tk libraries.
2917 * Makefile.in: Likewise.
2918 * configure: Regenerated with the above using autoconf.
2919
2920 2001-07-26 Elena Zannoni <ezannoni@redhat.com>
2921
2922 * sh-tdep.c (sh_gdbarch_init): Use SH_DEFAULT_NUM_REGS instead of
2923 NUM_REGS.
2924 (SH_DEFAULT_NUM_REGS): Define.
2925
2926 2001-07-26 Eli Zaretskii <eliz@is.elta.co.il>
2927
2928 * go32-nat.c (read_memory_region): Make sure the segment limit was
2929 indeed set, to work around a Windows 2000 bug.
2930
2931 2001-07-25 Daniel Jacobowitz <drow@mvista.com>
2932
2933 * infptrace.c (child_xfer_memory): Add cast to CORE_ADDR.
2934 * infttrace.c (child_xfer_memory): Likewise.
2935 * symm-nat.c (child_xfer_memory): Likewise.
2936 * gdbserver/low-hppabsd.c (read_inferior_memory): Likewise.
2937 (write_inferior_memory): Likewise.
2938 * gdbserver/low-linux.c (read_inferior_memory): Likewise.
2939 (write_inferior_memory): Likewise.
2940 * gdbserver/low-lynx.c (read_inferior_memory): Likewise.
2941 (write_inferior_memory): Likewise.
2942 * gdbserver/low-nbsd.c (read_inferior_memory): Likewise.
2943 (write_inferior_memory): Likewise.
2944 * gdbserver/low-sparc.c (read_inferior_memory): Likewise.
2945 (write_inferior_memory): Likewise.
2946 * gdbserver/low-sun3.c (read_inferior_memory): Likewise.
2947 (write_inferior_memory): Likewise.
2948
2949 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
2950
2951 * README: Mention how to make gdb.pdf.
2952
2953 * NEWS: Update.
2954
2955 2001-07-24 Stephen P. Smith <ischis2@home.com>
2956
2957 * MAINTAINERS (Stephen P. Smith): Added to write after approval
2958 list.
2959
2960 2001-07-23 Andrew Cagney <ac131313@redhat.com>
2961
2962 * mips-tdep.c (mips_push_arguments): Add comment explaining
2963 problem with LE o32 GCC.
2964
2965 2001-07-23 Elena Zannoni <ezannoni@redhat.com>
2966
2967 * config/powerpc/aix.mh (MH_LDFLAGS): Don't set these, the Gnu linker
2968 doesn't understand them.
2969
2970 2001-07-23 Elena Zannoni <ezannoni@redhat.com>
2971
2972 * memattr.c (mem_info_command): Reformat output to look more like
2973 'info break' output.
2974 (_initialize_mem): Improve help.
2975
2976 2001-07-23 Mark Kettenis <kettenis@gnu.org>
2977
2978 * configure.in (AC_CHECK_FUNCS): Add setpggrp.
2979 (AC_FUNC_SETPGRP): Add.
2980 * aclocal.m4, configure, config.in: Regenerated.
2981 * inflow.c (gdb_setpgid): Get rid of NEED_POSIX_SETPGID and
2982 SETPGRP_ARGS. Always use setpgid if it is available, fall back on
2983 setpgrp if it isn't. Use SETPGRP_VOID (defined by autoconf) to
2984 distinguish between the two setpgrp flavours.
2985 * config/xm-sysv4.h, config/arm/xm-linux.h,
2986 config/i386/xm-i386aix.h, config/i386/xm-sco.h,
2987 config/i386/xm-linux.h, config/i386/xm-ptx.h,
2988 config/m68k/xm-linux.h, config/powerpc/xm-linux.h,
2989 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h,
2990 config/ia64/xm-linux.h (NEED_POSIX_SETPGID): Remove.
2991 * config/rs6000/xm-rs6000.h (SETPGRP_ARGS): Remove.
2992
2993 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
2994
2995 * go32-nat.c (read_memory_region): Set the granularity bit of the
2996 allocated segment according to its size, and adjust the limit to
2997 be page-aligned if the segment is page-granular.
2998
2999 * (get_cr3, get_pde, get_pte, display_ptable_entry, go32_pde)
3000 (display_page_table, go32_pte, go32_pte_for_address): New functions.
3001 (_initialize_go32_nat): Initialize and document them.
3002
3003 2001-07-22 Mark Kettenis <kettenis@gnu.org>
3004
3005 * i386gnu-nat.c: Include "i387-nat.h".
3006 (struct env387): Removed.
3007 (reg_offset): Fix comment.
3008 (fetch_fpregs): Use FCTRL_REGNUM and FOP_REGNUM instead of
3009 FIRST_FPU_CONTROL_REGNUM and LAST_FPU_CONTROL_REGNUM. Rewrite to
3010 use i387_supply_fsave.
3011 (gnu_fetch_registers): Remove spurious whitespace.
3012 (convert_to_env387): Remove.
3013 (store_fpregs): Add argument regno. Use i387_fill_fsave instead
3014 of convert_to_env387.
3015 (gnu_store_registers): Remove spurious whitespace. Pass REGNO to
3016 store_fpregs.
3017 * config/i386/i386gnu.mt (TDEPFILES): Add i387-tdep.o.
3018 * config/i386/i386gnu.mh (XDEPFILES): Remove i387-tdep.o.
3019 (NATDEPFILES): Add i387-nat.o.
3020
3021 2001-07-22 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3022
3023 * Makefile.in (ALLDEPFILES): Add m68hc11-tdep.c.
3024 (m68hc11-tdep.o): Define dependencies.
3025
3026 2001-07-22 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3027
3028 * m68hc11-tdep.c (m68hc11_gdbarch_init): Define int at 16-bits.
3029
3030 2001-07-21 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3031
3032 * utils.c (init_page_info): Use tui_get_command_dimension.
3033 * printcmd.c (disassemble_command): Simplify tui specific code,
3034 use tui_is_window_visible, tui_show_assembly.
3035
3036 2001-07-21 Mark Kettenis <kettenis@gnu.org>
3037
3038 * i386bsd-nat.c: Do not include <sys/sysctl.h>.
3039 (_initialize_i386bsd_nat) [KERN_PS_STRINGS]: Move FreeBSD-specific
3040 code to ...
3041 * i386fbsd-nat.c: ... here. New file.
3042 * config/i386/fbsd.mh (NATDEPFILES): Add i386-fbsd.o.
3043 * config/i386/nm-fbsd.h (CHILD_RESUME): Define.
3044 * Makefile.in (ALLDEPFILES): Add i386fbsd-nat.c.
3045 (i386fbsd-nat.o): Add dependencies.
3046
3047 2001-07-19 Daniel Jacobowitz <drow@mvista.com>
3048
3049 * signals.c: New file.
3050 * Makefile.in: Add signals.o.
3051 * target.c (struct signals, target_signal_to_name)
3052 (target_signal_from_name, target_signal_from_host)
3053 (do_target_signal_to_host, target_signal_to_host_p)
3054 (target_signal_to_host, target_signal_from_command): Move to
3055 signals.c.
3056 (initialize_targets): Move check of struct signals to...
3057 * signals.c (_initialize_signals): Here.
3058
3059 2001-07-19 Andrew Cagney <ac131313@redhat.com>
3060
3061 * MAINTAINERS: Add Michael Chastain as C++ testsuite maintainer.
3062
3063 2001-07-19 Andrew Cagney <ac131313@redhat.com>
3064
3065 From Stephen Smith:
3066 * configure.tgt (i*86-*-pe*): New target.
3067
3068 2001-07-19 Andrew Cagney <ac131313@redhat.com>
3069
3070 From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
3071 * infttrace.c (child_thread_alive): Fix gdb_tid typo.
3072 * somsolib.c (no_shared_libraries): Provide stub.
3073 * xcoffsolib.c (no_shared_libraries): Provide stub.
3074
3075 2001-07-18 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3076
3077 * Makefile.in (COMMON_OBS): Remove tui-file.o.
3078 (SUBDIR_TUI_OBS): Add it here.
3079 (SUBDIR_TUI_SRCS): Move tui-file.c and tui-file.h here.
3080 (main.o): Remove dependency with tui-file.h.
3081
3082 2001-07-17 Elena Zannoni <ezannoni@redhat.com>
3083
3084 * Makefile.in (tui-file.o): Update dependencies.
3085
3086 2001-07-17 Elena Zannoni <ezannoni@redhat.com>
3087
3088 * top.c (catch_errors): Convert PTR to void * in parameters list.
3089 (quit_cover): Ditto.
3090
3091 2001-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3092
3093 * source.c (find_source_lines): Remove tui test, must be replaced
3094 by appropriate warning hook.
3095 (print_source_lines): Remove tui hacks, must be replaced by cli.
3096 (forward_search_command): Remove tui hacks, can be replaced by
3097 appropriate calls to identify_source_line when tui scrolls.
3098 (reverse_search_command): Likewise.
3099
3100 2001-07-16 Nick Duffek <nsd@redhat.com>
3101
3102 * remote.c (init_remote_ops, init_remote_cisco_ops,
3103 init_remote_async_ops): Set to_pid_to_str and
3104 to_extra_thread_info correctly and in the same order as declared
3105 in target.h.
3106
3107 2001-07-16 Andrew Cagney <ac131313@redhat.com>
3108
3109 * remote.c: Revert below. Included more than intended.
3110
3111 2001-07-16 Nick Duffek <nsd@redhat.com>
3112
3113 * remote.c (init_remote_ops, init_remote_cisco_ops,
3114 init_remote_async_ops): Set to_pid_to_str and
3115 to_extra_thread_info correctly and in the same order as declared
3116 in target.h.
3117
3118 2001-07-16 Nick Duffek <nsd@redhat.com>
3119
3120 * findvar.c (read_var_value): Apply value_as_pointer() to
3121 addresses retrieved from the target for LOC_BASEREG and
3122 LOC_BASEREG_ARG variables.
3123
3124 2001-07-16 Orjan Friberg <orjanf@axis.com>
3125
3126 * NEWS: New target CRIS.
3127
3128 2001-07-16 Elena Zannoni <ezannoni@redhat.com>
3129
3130 * top.c (show_commands): Remove extern decl of history_get, it's
3131 already in readline/history.h.
3132
3133 2001-07-16 Elena Zannoni <ezannoni@redhat.com>
3134
3135 * top.c (is_complete_command, init_cmd_lists, init_cli_cmds,
3136 execute_user_command, do_setshow_command, get_prompt, init_proc,
3137 serial_log_command): Remove extern declarations. Include
3138 cli/cli-cmds.h, cli/cli-script.h, cli/cli-setshow.h, serial.h.
3139 * gdbcmd.h (execute_user_command): Remove declaration, it's already
3140 in cli/cli-script.h.
3141 * command.h (do_setshow_command): Remove declaration, it's already
3142 in cli/cli-setshow.h.
3143 * infrun.c: Include "cli/cli-script.h" for execute_user_command.
3144 * Makefile.in (infrun.o): Update dependencies.
3145 (top.o): Ditto.
3146 * cli/cli-setshow.h: Add comment for do_setshow_command.
3147
3148 2001-07-16 Eli Zaretskii <eliz@is.elta.co.il>
3149
3150 * cli/cli-cmds.c (shell_escape) [GLOBAL_CURDIR]: Condition the
3151 call to chdir on this symbol rather than on __DJGPP__.
3152 (CANT_FORK) [__MSDOS__]: Move from here...
3153 * defs.h (CANT_FORK) [__MSDOS__]: ...to here.
3154 (GLOBAL_CURDIR) [__MSDOS__]: Define.
3155
3156 2001-07-16 Orjan Friberg <orjanf@axis.com>
3157
3158 * configure.tgt: Recognise the CRIS architecture.
3159 * config/cris/cris.mt: New file for CRIS target.
3160 * cris-tdep.c: New file for CRIS target.
3161
3162 2001-07-15 Elena Zannoni <ezannoni@redhat.com>
3163
3164 * top.c (quit_cover, float_handler): Move definition up before use.
3165 (gdb_init): Move to end of file, to avoid calls to not yet defined
3166 functions.
3167 Delete prototypes.
3168
3169 2001-07-14 Andrew Cagney <ac131313@redhat.com>
3170
3171 * serial.h (SERIAL_ASYNC): Delete.
3172 (DEPRECATED_SERIAL_FD): Delete.
3173 (SERIAL_DEBUG): Delete.
3174 (SERIAL_DEBUG_P): Delete.
3175 (SERIAL_DRAIN_OUTPUT): Delete.
3176 (SERIAL_FLUSH_OUTPUT): Delete.
3177 (SERIAL_FLUSH_INPUT): Delete.
3178 (SERIAL_SEND_BREAK): Delete.
3179 (SERIAL_RAW): Delete.
3180 (SERIAL_GET_TTY_STATE): Delete.
3181 (SERIAL_SET_TTY_STATE): Delete.
3182 (SERIAL_PRINT_TTY_STATE): Delete.
3183 (SERIAL_NOFLUSH_SET_TTY_STATE): Delete.
3184 (SERIAL_SETBAUDRATE): Delete.
3185 (SERIAL_SETSTOPBITS): Delete.
3186 (SERIAL_CAN_ASYNC_P): Delete.
3187 (SERIAL_IS_ASYNC_P): Delete.
3188 (SERIAL_UN_FDOPEN): Delete.
3189 (SERIAL_READCHAR): Delete.
3190 (SERIAL_CLOSE): Delete.
3191 (SERIAL_FDOPEN): Delete.
3192 (SERIAL_OPEN): Delete.
3193 * ser-unix.c: Update.
3194 * sparclet-rom.c: Update.
3195 * remote-bug.c: Update.
3196 * dsrec.c: Update.
3197 * xmodem.c: Update.
3198 * nindy-share/ttyflush.c: Update.
3199 * nindy-share/Onindy.c: Update.
3200 * utils.c: Update.
3201 * serial.c: Update.
3202 * remote-nindy.c: Update.
3203 * inflow.c: Update.
3204 * sparcl-tdep.c: Update.
3205 * sh3-rom.c: Update.
3206 * remote.c: Update.
3207 * remote-utils.c: Update.
3208 * remote-st.c: Update.
3209 * remote-sds.c: Update.
3210 * remote-rdp.c: Update.
3211 * remote-os9k.c: Update.
3212 * remote-nrom.c: Update.
3213 * remote-mips.c: Update.
3214 * remote-es.c: Update.
3215 * remote-e7000.c: Update.
3216 * remote-array.c: Update.
3217 * ocd.c: Update.
3218 * nindy-share/nindy.c: Update.
3219 * monitor.c: Update.
3220
3221 2001-07-14 Andrew Cagney <ac131313@redhat.com>
3222
3223 * mn10200-tdep.c: Replace value_ptr with ``struct value *''.
3224 * mcore-tdep.c: Ditto.
3225 * sparc-tdep.c: Ditto.
3226 * sh-tdep.c: Ditto.
3227 * rs6000-tdep.c: Ditto.
3228 * ppc-linux-tdep.c: Ditto.
3229 * m68hc11-tdep.c: Ditto.
3230 * ia64-tdep.c: Ditto.
3231 * i386-tdep.c: Ditto.
3232 * arm-linux-tdep.c: Ditto.
3233 * hppa-tdep.c: Ditto.
3234 * h8500-tdep.c: Ditto.
3235 * fr30-tdep.c: Ditto.
3236 * arm-tdep.c: Ditto.
3237 * alpha-tdep.c: Ditto.
3238 * d30v-tdep.c: Ditto.
3239 * d10v-tdep.c: Ditto.
3240 * m32r-tdep.c: Ditto.
3241 * mips-tdep.c: Ditto.
3242 * v850-tdep.c: Ditto.
3243
3244 2001-07-15 Elena Zannoni <ezannoni@redhat.com>
3245
3246 * top.c (readline_line_completion_function, noop_completer): Move
3247 from here...
3248 * completer.c (readline_line_completion_function, noop_completer):
3249 ...to here.
3250 * gdbcmd.h (readline_line_completion_function, noop_completer):
3251 Move declarations from here...
3252 * completer.h (readline_line_completion_function, noop_completer):
3253 ...to here.
3254 * corefile.c: Include completer.h.
3255 * source.c: Ditto.
3256 * symfile.c: Ditto.
3257 * Makefile.in: Update dependencies.
3258
3259 2001-07-15 Eli Zaretskii <eliz@is.elta.co.il>
3260
3261 * go32-nat.c (go32_create_inferior): Support command lines longer
3262 than 126 characters.
3263
3264 2001-07-14 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3265
3266 * NEWS: New target 68HC11/68HC12.
3267
3268 2001-07-14 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3269
3270 * utils.c (query): Remove tui hacks; tui must use the query_hook.
3271 * top.c (command_loop): Remove tui insert_mode hacks; don't call
3272 tuiCleanUp because this must be made with atexit by tui.
3273 * symfile.c (symbol_file_command): Remove call to TUIDO
3274 * stack.c (show_and_print_stack_frame_stub): Remove tui check;
3275 not necessary when using the selected frame hooks.
3276 (print_stack_frame_stub): Likewise.
3277 (print_frame_info_base): Likewise.
3278 (print_frame_info): Likewise.
3279 (up_silently_command): Likewise.
3280 (down_silently_command): Likewise.
3281 (show_stack_frame): Likewise for TUIDO.
3282 (select_frame): Likewise.
3283 (select_and_print_frame): Likewise.
3284 (stack_publish_stopped_with_no_frame): Remove.
3285 (select_and_maybe_print_frame): Remove.
3286 * main.c (captured_main): Remove tui_fileopen and tuiInit; tui
3287 must use the initialize ui hook.
3288 * infrun.c (normal_stop): Remove call to TUIDO; tui must use the
3289 selected frame hooks.
3290 * event-top.c (command_handler): Remove tui insert_mode hack.
3291 * defs.h: Remove TUIDO; Only include tui.h.
3292 * breakpoint.c (mention): Remove calls to TUIDO.
3293 (delete_breakpoint): Remove tui hacks; tui must install
3294 the breakpoint hooks.
3295
3296 2001-07-14 Mark Kettenis <kettenis@gnu.org>
3297
3298 * config/i386/xm-linux.h (KERNEL_U_ADDR): Move from here...
3299 * config/i386/nm-linux.h: ...to here. Change comments about user
3300 area/struct a bit.
3301
3302 * config/i386/xm-linux.h (HAVE_TERMIOS): Really remove.
3303
3304 * Makefile.in (ALLDEPFILES): Add i386bsd-nat.c and i386bsd-tdep.c
3305 (i386bsd-tdep.o, i386bsd-nat.o): New targets.
3306
3307 2001-07-13 Elena Zannoni <ezannoni@redhat.com>
3308
3309 * remote-e7000.c (fetch_regs_from_dump): If register set is null,
3310 generate an internal error.
3311 (e7000_fetch_registers): Initialize variable 'wanted'.
3312 (e7000_wait): Initialize variable 'wanted_nopc'.
3313 (e7000_store_register): Fix sprintf compiler warnings.
3314 (sub2_from_pc): Ditto.
3315 (e7000_open): Close the descriptor, not the name.
3316 (e7000_load): Fix compiler warnings.
3317 (sub2_from_pc): Ditto.
3318 * Makefile.in (remote-e7000.o): Can now compile with -Werror.
3319
3320 2001-07-13 Mark Kettenis <kettenis@gnu.org>
3321
3322 * i386bsd-nat.c: Include <signal.h>, <stddef.h> and
3323 <sys/sysctl.h>.
3324 (store_inferior_registers): Wrap long line.
3325 (i386bsd_dr_get_status): Fix typo in comment.
3326 (_initialize_i386bsd_nat): New function. * i386bsd-tdep.c: New
3327 file. * config/i386/tm-fbsd.h (IN_SIGTRAMP): New define.
3328 (i386bsd_in_sigtramp): New prototype.
3329 (SIGTRAMP_START, SIGTRAMP_END): Redefine in terms...
3330 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): ...these new
3331 (external) variables.
3332 (SIGCONTEXT_PC_OFFSET): Removed.
3333 (FRAME_SAVED_PC): New define.
3334 (i386bsd_frame_saved_pc): New function. * config/i386/fbsd.mt
3335 (TDEPFILES): Add i386bsd-tdep.o.
3336
3337 2001-07-12 Daniel Jacobowitz <drow@mvista.com>
3338
3339 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Use ISO C
3340 definition.
3341
3342 2001-07-13 Mark Kettenis <kettenis@gnu.org>
3343
3344 * lin-lwp.c (lin_lwp_wait): Avoid check for resumed LWPs if there
3345 are no registered LWPs yet.
3346
3347 2001-07-12 Daniel Jacobowitz <drow@mvista.com>
3348
3349 * config/i386/nm-linux.h (CANNOT_FETCH_REGISTER): Call the right
3350 function.
3351 (CANNOT_STORE_REGISTER): Likewise.
3352
3353 2001-07-12 Keith Seitz <keiths@redhat.com>
3354
3355 * remote-rdp.c: Include "serial.h"
3356
3357 2001-07-12 Daniel Jacobowitz <drow@mvista.com>
3358
3359 * gdbserver/remote-utils.c (remote_open): Set VMIN to 1
3360 in HAVE_TERMIO/HAVE_TERMIOS cases.
3361
3362 2001-07-12 Mark Kettenis <kettenis@gnu.org>
3363
3364 * lin-lwp.c (stop_wait_callback): Add support for flushing
3365 signals. Use that in favour of the old code to get rid of
3366 superfluous SIGINTs.
3367 (lin_lwp_wait): Use the new support in stop_wait_callback to
3368 flush all but one SIGINT.
3369
3370 * i386-tdep.c (i386_extract_return_value): Undo 2001-07-11 changes
3371 to comment.
3372 (i386_store_return_value): Improve comments about storing
3373 floating-point return values.
3374
3375 * config/arm/xm-linux.h, config/i386/xm-linux.h,
3376 config/m68k/xm-linux.h, config/powerpc/xm-linux.h,
3377 config/sparc/xm-linux.h, config/ia64/xm-linux.h (HAVE_TERMIOS):
3378 Removed. Taken care of by autoconf and terminal.h.
3379
3380 2001-07-12 Daniel Jacobowitz <drow@mvista.com>
3381
3382 * mips-tdep.c (mips_type_needs_double_align): New function.
3383 (mips_push_arguments): Align o32 structs to even argument
3384 registers if necessary.
3385
3386 2001-07-11 Daniel Jacobowitz <drow@mvista.com>
3387
3388 * config/djgpp/fnchange.lst: Add entries for
3389 mips-linux-nat.c and mips-linux-tdep.c.
3390
3391 2001-07-12 Mark Kettenis <kettenis@gnu.org>
3392
3393 * config/powerpc/xm-linux.h: Fix corrupted file.
3394
3395 * configure.in: Add check for sigsetjmp.
3396 * config/m68k/xm-linux.h (HAVE_SIGSETJMP): Removed.
3397 * config/xm-sysv4.h (HAVE_SIGSETJMP): Removed.
3398 * configure, config.in: Regenerated.
3399
3400 2001-07-11 Elena Zannoni <ezannoni@redhat.com>
3401
3402 * config/sh/tm-sh.h (struct gdbarch_tdep): Add
3403 FLOAT_ARGLAST_REGNUM, RETURN_REGNUM, ARG0_REGNUM, ARGLAST_REGNUM,
3404 PR_REGNUM fields.
3405
3406 * sh-tdep.c (sh_skip_prologue_hard_way): Rename from
3407 skip_prologue_hard_way().
3408 (skip_prologue_hard_way): Make it a function pointer.
3409 (sh_print_register): Use function pointer do_pseudo_register,
3410 instead of sh_do_pseudo_register.
3411 (sh_do_registers_info): Ditto.
3412 (sh_gdbarch_init): Initialize do_pseudo_register.
3413 (IS_MOV_TO_R14): Rename from IS_MOV_R14.
3414 (skip_prologue_hard_way): Update.
3415 (sh_gdbarch_init): Move setting of frame_chain,
3416 get_saved_register, init_extra_frame_info, push_arguments,
3417 extract_return_value, pop_frame, store_struct_return,
3418 extract_struct_value_address, use_struct_convention,
3419 init_extra_frame_info to before target specific settings.
3420 (sh_gdbarch_init): Initialize new tdep fields
3421 FLOAT_ARGLAST_REGNUM, RETURN_REGNUM, ARG0_REGNUM, ARGLAST_REGNUM,
3422 PR_REGNUM.
3423 (sh_push_arguments): Use new gdbarch_tdep fields
3424 {ARG0,ARGLAST}_REGNUM.
3425 (sh_saved_pc_after_call, sh_nofp_frame_init_saved_regs,
3426 sh_init_extra_frame_info, sh_push_return_address,
3427 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
3428 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs): Update to use
3429 gdbarch_tdep->PR_REGNUM.
3430 (dr_reg_base_num, fv_reg_base_num): Move to earlier in the file.
3431
3432 2001-07-11 Daniel Jacobowitz <drow@mvista.com>
3433
3434 * config/mips/tm-linux.h: Include "tm-linux.h" instead of copying
3435 from it. Move definitions of REALTIME_LO and REALTIME_HI above
3436 include.
3437
3438 2001-07-11 Daniel Jacobowitz <drow@mvista.com>
3439
3440 * MAINTAINERS: List myself for MIPS/Linux
3441 port.
3442
3443 2001-07-11 Daniel Jacobowitz <drow@mvista.com>
3444
3445 * gdbserver/remote-utils.c (remote_open): Only
3446 check for F_SETOWN if we had F_SETFL and FASYNC.
3447
3448 2001-07-11 Daniel Jacobowitz <drow@mvista.com>
3449
3450 From Michael Fedrowitz <michael.fedrowitz@informatik.uni-ulm.de>:
3451
3452 * config/m68k/linux.mh: Remove core-regset.o.
3453 * m68klinux-nat.c: Fix comment.
3454 (supply_gregset): Change argument to elf_gregset_t *.
3455 (supply_fpregset): Change argument to elf_fpregset_t *.
3456 (fetch_core_registers): New function.
3457 (linux_elf_core_fns): Define.
3458 (_initialize_m68k_linux_nat): New function.
3459
3460 2001-07-11 Andrew Cagney <ac131313@redhat.com>
3461
3462 * configure.tgt: Mark d10v as pure multi-arch.
3463 * config/d10v/tm-d10v.h: Delete file.
3464 * config/d10v/d10v.mt (TM_FILE): Delete.
3465
3466 2001-07-10 Andrew Cagney <ac131313@redhat.com>
3467
3468 * serial.h (typedef serial_t): Delete. Replace all references to
3469 serial_t with `struct serial *'.
3470 * serial.c: Update.
3471 * nindy-share/ttyflush.c: Update.
3472 * nindy-share/ttyflush.c: Update.
3473 * nindy-share/Onindy.c: Update.
3474 * nindy-share/nindy.c: Update.
3475 * remote-rdp.c: Update.
3476 * remote-sds.c: Update.
3477 * remote-st.c: Update.
3478 * remote-nindy.c: Update.
3479 * remote-mips.c: Update.
3480 * remote-e7000.c: Update.
3481 * remote-os9k.c: Update.
3482 * remote-nrom.c: Update.
3483 * remote-es.c: Update.
3484 * remote-array.c: Update.
3485 * ocd.c: Update.
3486 * mon960-rom.c: Update.
3487 * dsrec.c: Update.
3488 * inflow.c: Update.
3489 * ser-e7kpc.c: Update.
3490 * sparclet-rom.c: Update.
3491 * srec.h: Update.
3492 * ser-tcp.c: Update.
3493 * ser-go32.c: Update.
3494 * sparcl-tdep.c: Update.
3495 * w89k-rom.c: Update.
3496 * utils.c: Update.
3497 * sh3-rom.c: Update.
3498 * remote.c: Update.
3499 * ser-pipe.c: Update.
3500 * ser-unix.c: Update.
3501 * ser-unix.h: Update.
3502 * xmodem.c: Update.
3503 * xmodem.h: Update.
3504
3505 2001-07-11 J.T. Conklin <jtc@redback.com>
3506
3507 From Greg McGary <greg@mcgary.org>:
3508 * gdbserver/remote-utils.c (remote_open): Set gdbserver as "owner"
3509 of SIGIO.
3510 (input_interrupt): Don't block on read, in case we got redundant
3511 SIGIO. Don't gripe about redundant SIGIO.
3512 * gdbserver/low-hppabsd.c (mywait): Use waitpid(). Enable SIGIO
3513 handler while waiting.
3514 * gdbserver/low-linux.c (mywait): Likewise.
3515 * gdbserver/low-nbsd.c (mywait): Likewise.
3516 * gdbserver/low-sparc.c (mywait): Likewise.
3517
3518 2001-07-11 Keith Seitz <keiths@redhat.com>
3519
3520 * infrun.c (print_stop_reason): Add missing uiout field
3521 "reason" for SIGNAL_RECEIVED case.
3522
3523 2001-07-11 Mark Kettenis <kettenis@gnu.org>
3524
3525 * config/alpha/nm-linux.h (TARGET_ELF64, PSIGNAL_IN_SIGNAL_H):
3526 Remove unused macro's.
3527
3528 * config/powerpc/nm-linux.h (NO_SYS_REG_H): Remove, it's no longer
3529 used.
3530
3531 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
3532
3533 * go32-nat.c (info_dos_cmdlist): New variable.
3534 (go32_info_dos_command): New function.
3535 (_initialize_go32_nat): Convert all DOS-specific commands into
3536 subcommands of "info dos". Suggested by Andrew Cagney
3537 <ac131313@redhat.com>.
3538
3539 2001-07-11 Mark Kettenis <kettenis@gnu.org>
3540
3541 * config/nm-linux.h: Fix comments.
3542
3543 * thread-db.c (enable_thread_event_reporting): Correct warning
3544 message about getting thread death breakpoint.
3545 Reported by John S Kallal <jskallal@home.com>.
3546
3547 * i386-tdep.c (i386_extract_return_value): "Fix" comment.
3548 (i386_store_return_value): Frob FPU status and tag word to make
3549 sure the return value is the only value on the FPU stack.
3550
3551 * config/tm-linux.h: Do not include <signal.h>. Instead provide
3552 reasonable defaults for REALTIME_LO and REALTIME_HI if they're not
3553 already defined.
3554 * config/nm-linux.h: Include <signal.h>.
3555 [__SIGRTMIN] (REALTIME_LO, REALTIME_HI): Define to __SIGRTMIN and
3556 (__SIGRTMAX + 1) respectively.
3557
3558 2001-07-10 Andrew Cagney <ac131313@redhat.com>
3559
3560 * mcore-rom.c: Include "serial.h".
3561 * Makefile.in (mcore-rom.o): Depends on "serial.h".
3562
3563 2001-07-10 Andrew Cagney <ac131313@redhat.com>
3564
3565 * Makefile.in (remote-bug.o): Depends on serial.h.
3566 * remote-bug.c: Include "serial.h".
3567 * MAINTAINERS: Mark m88k target as buildable.
3568 * TODO: Update.
3569
3570 2001-07-10 Jim Blandy <jimb@redhat.com>
3571
3572 Clean up the D10V port so that GDB and the target program no
3573 longer disagree on how big pointers are.
3574 * findvar.c (value_from_register): Remove special case code for D10V.
3575 * printcmd.c (print_frame_args): Same.
3576 * valops.c (value_at, value_fetch_lazy): Same.
3577 * values.c (unpack_long): Same.
3578 * gdbarch.sh: Changes to effect the following:
3579 * gdbarch.h (GDB_TARGET_IS_D10V, D10V_MAKE_DADDR,
3580 gdbarch_d10v_make_daddr_ftype, gdbarch_d10v_make_daddr,
3581 set_gdbarch_d10v_make_daddr, D10V_MAKE_IADDR,
3582 gdbarch_d10v_make_iaddr_ftype, gdbarch_d10v_make_iaddr,
3583 set_gdbarch_d10v_make_iaddr, D10V_DADDR_P,
3584 gdbarch_d10v_daddr_p_ftype, gdbarch_d10v_daddr_p,
3585 set_gdbarch_d10v_daddr_p, D10V_IADDR_P,
3586 gdbarch_d10v_iaddr_p_ftype, gdbarch_d10v_iaddr_p,
3587 set_gdbarch_d10v_iaddr_p, D10V_CONVERT_DADDR_TO_RAW,
3588 gdbarch_d10v_convert_daddr_to_raw_ftype,
3589 gdbarch_d10v_convert_daddr_to_raw,
3590 set_gdbarch_d10v_convert_daddr_to_raw, D10V_CONVERT_IADDR_TO_RAW,
3591 gdbarch_d10v_convert_iaddr_to_raw_ftype,
3592 gdbarch_d10v_convert_iaddr_to_raw,
3593 set_gdbarch_d10v_convert_iaddr_to_raw): Delete declarations.
3594 * gdbarch.c: Delete the corresponding definitions.
3595 (struct gdbarch): Delete members d10v_make_daddr,
3596 d10v_make_iaddr, d10v_daddr_p, d10v_iaddr_p,
3597 d10v_convert_daddr_to_raw, and d10v_convert_iaddr_to_raw.
3598 (startup_gdbarch): Remove initializers for the above.
3599 (verify_gdbarch, gdbarch_dump): Don't verify or dump them any
3600 more.
3601 * d10v-tdep.c (d10v_register_virtual_type): Rather that
3602 claiming the stack pointer and PC are 32 bits long (which they
3603 aren't), say that the stack pointer is an int16_t, and the
3604 program counter is a function pointer. This allows the rest
3605 of GDB to make the appropriate conversions between the code
3606 pointer format and real addresses.
3607 (d10v_register_convertible, d10v_register_convert_to_virtual,
3608 d10v_register_convert_to_raw): Delete function; no registers
3609 are convertible now, so we use
3610 generic_register_convertible_not instead.
3611 (d10v_address_to_pointer, d10v_pointer_to_address): New gdbarch
3612 methods.
3613 (d10v_push_arguments, d10v_extract_return_value): Remove special
3614 cases for code and data pointers.
3615 (d10v_gdbarch_init): Set gdbarch_ptr_bit to 16, so that GDB and
3616 the target agree on how large pointers are. Say that addresses
3617 are 32 bits long. Register the address_to_pointer and
3618 pointer_to_address conversion functions. Since no registers are
3619 convertible now, register generic_register_convertible_not as the
3620 gdbarch_register_convertible method instead of
3621 d10v_register_convertible. Remove registrations for
3622 d10v_register_convert_to_virtual,
3623 d10v_register_convert_to_raw, gdbarch_d10v_make_daddr,
3624 gdbarch_d10v_make_iaddr, gdbarch_d10v_daddr_p,
3625 gdbarch_d10v_iaddr_p, gdbarch_d10v_convert_daddr_to_raw, and
3626 gdbarch_d10v_convert_iaddr_to_raw.
3627
3628 * printcmd.c (print_scalar_formatted): If we are printing an
3629 address, remember that TARGET_ADDR_BIT is not always equal to
3630 TARGET_PTR_BIT.
3631
3632 * valops.c (value_cast): When casting a pointer to an integer,
3633 don't convert it to an address.
3634
3635 2001-07-10 Andrew Cagney <ac131313@redhat.com>
3636
3637 * remote-utils.h (struct serial): Declare as opaque. Remove
3638 include of "serial.h".
3639 * Makefile.in (remote_utils_h): Update.
3640
3641 * monitor.h (struct serial): Declare as opaque. Remove include of
3642 "serial.h".
3643 (struct monitor_ops): Replace serial_t with `struct serial *'.
3644 * monitor.c (monitor_desc): Ditto.
3645
3646 2001-07-10 Daniel Jacobowitz <drow@mvista.com>
3647
3648 * mips-linux-tdep.c: New file.
3649 * mips-linux-nat.c: New file.
3650 * config/mips/linux.mh: New file.
3651 * config/mips/linux.mt: New file.
3652 * config/mips/xm-linux.h: New file.
3653 * config/mips/nm-linux.h: New file.
3654 * config/mips/tm-linux.h: New file.
3655 * configure.host: Recognize mips*-*-linux*.
3656 * configure.tgt: Likewise.
3657 * NEWS: Mention mips*-*-linux* port.
3658
3659 2001-07-09 Andrew Cagney <ac131313@redhat.com>
3660
3661 * serial.h (struct serial): Rename `struct _serial_t'.
3662 * serial.c (XMALLOC): Define.
3663 (serial_open): Update. Use XMALLOC.
3664 (serial_fdopen): Ditto.
3665
3666 2001-07-07 Andrew Cagney <ac131313@redhat.com>
3667
3668 * gdbtypes.h (builtin_type_void_data_ptr): Rename
3669 builtin_type_ptr.
3670 * gdbtypes.c (builtin_type_void_data_ptr): Update.
3671 (build_gdbtypes): Update.
3672 (_initialize_gdbtypes): Update.
3673 * values.c (value_as_pointer): Update.
3674 * utils.c (host_pointer_to_address): Update.
3675 (address_to_host_pointer): Update.
3676
3677 2001-07-08 Andrew Cagney <ac131313@redhat.com>
3678
3679 * remote-udi.c (udi_wait): Make type, instead of name, of first
3680 parameter a ptid_t.
3681
3682 2001-07-07 Andrew Cagney <ac131313@redhat.com>
3683
3684 * ser-mac.c: Make obsolete.
3685 * Makefile.in (ser-mac.o): Ditto.
3686
3687 2001-07-08 Eli Zaretskii <eliz@is.elta.co.il>
3688
3689 * go32-nat.c (go32_get_windows_version, print_mem, go32_sysinfo)
3690 (read_memory_region, get_descriptor, display_descriptor)
3691 (go32_sldt, go32_sgdt, go32_sidt): New functions.
3692 (top-level): Include ctype.h, utsname.h, dos.h, and go32.h. Ifdef
3693 away `disable' from dos.h, since breakpoint.h defines an enum
3694 member of the same name, and GCC 2.7.2 barfs.
3695 (_initialize_go32_nat): Provide new commands dos-sysinfo, dos-ldt,
3696 dos-gdt, and dos-idt, all of them in the "info" class
3697
3698 2001-07-07 Kevin Buettner <kevinb@redhat.com>
3699
3700 * procfs.c (create_procinfo): Allocate space for saved_entryset
3701 and saved_exitset.
3702 (destroy_one_procinfo): Free space allocated to saved_entryset
3703 and saved_exitset.
3704
3705 2001-07-07 Andrew Cagney <ac131313@redhat.com>
3706
3707 * TODO (5.1): Update.
3708
3709 2001-07-07 Andrew Cagney <ac131313@redhat.com>
3710
3711 * symtab.c (main_name): New function.
3712 (set_main_name): New function.
3713 * symtab.h: Declare.
3714 * TODO: Update
3715
3716 From 2000-03-05 Anthony Green <green@redhat.com>:
3717 * dbxread.c (process_one_symbol): Handle the N_MAIN stab by
3718 setting main_name.
3719 * blockframe.c (inside_main_func): Use main_name instead of
3720 "main".
3721 * symtab.c (find_main_psymtab): Ditto.
3722 * source.c (select_source_symtab): Ditto.
3723 * nlmread.c (nlm_symfile_read): Ditto.
3724 * rs6000-tdep.c (skip_prologue): Ditto.
3725
3726 2001-07-07 Andrew Cagney <ac131313@redhat.com>
3727
3728 * TODO: Convert most items into PRs.
3729
3730 2001-07-07 Mark Kettenis <kettenis@gnu.org>
3731
3732 * lin-lwp.c (status_to_str): New function.
3733 (lin_lwp_wait): Use it to print debug messages where appropriate.
3734
3735 2001-07-06 Michael Chastain <chastain@redhat.com>
3736
3737 * i387-tdep.c (print_i387_value): Fix pointer glitch.
3738
3739 2001-07-07 Mark Kettenis <kettenis@gnu.org>
3740
3741 * lin-lwp.c (count_events_callback): Fix formatting. Turn check
3742 commented with "paranoia" into gdb_assert.
3743 (select_event_lwp_callback): Likewise.
3744 (cancel_breakpoints_callback): Bail out early if LP is the event
3745 LWP. Add comment about backup up breakpoints. Fix formatting and
3746 debug message.
3747 (select_event_lwp): Make solely repsonsible for switching event
3748 LWP. Fix formatting and remove bogus "ERROR" debug message.
3749 Don't backup breakpoints from here.
3750 (lin_lwp_wait): Don't touch LP->status, let select_event_lwp
3751 handle that. Only call select_event_lwp if we're not waiting for
3752 a specific LWP, i.e. when PID == -1. Backup breakpoints from here.
3753
3754 2001-07-06 Michael Snyder <msnyder@redhat.com>
3755
3756 * procfs.c (procfs_resume): Silence noisy warning.
3757
3758 2001-06-12 Michael Snyder <msnyder@redhat.com>
3759
3760 * lin-lwp.c: Prevent thread starvation by using a monte carlo
3761 method to choose which of several event threads to handle next.
3762
3763 (stop_wait_callback): Defer pushback of breakpoint events until
3764 later; add SIGTRAP events to the queue of unhandled events.
3765 Keep calling waitpid until SIGSTOP retrieved. If more than one
3766 non-SIGSTOP event is retrieved, push them back onto the process
3767 queue using kill.
3768 (count_events_callback, select_singlestep_lwp_callback,
3769 select_event_lwp_callback, cancel_breakpoints_callback,
3770 select_event_lwp): New functions. Implement monte carlo method
3771 for selecting which of several SIGTRAP threads to handle next.
3772 Push back the breakpoint event for all threads other than the
3773 selected one.
3774 (lin_lwp_wait): Call select_event_lwp to decide which of several
3775 sigtrapped lwps to handle next.
3776 (resume_callback): Disable code that attempts to handle
3777 step_resume breakpoints. Let core gdb handle this.
3778
3779 2001-07-06 Jim Blandy <jimb@redhat.com>
3780
3781 * gdbtypes.h (builtin_type_void_func_ptr): New builtin type.
3782 * gdbtypes.c (builtin_type_void_func_ptr): Define the variable.
3783 (build_gdbtypes): Initialize it.
3784 (_initialize_gdbtypes): Swap it.
3785
3786 2001-07-04 Daniel Jacobowitz <drow@mvista.com>
3787
3788 * mips-tdep.c (mips32_op): Correct offset.
3789 (itype_op): Likewise.
3790 (itype_rs): Fix formatting.
3791 (itype_immediate): Fix formatting.
3792 (jtype_op): Correct offset.
3793 (jtype_target): Fix formatting.
3794 (rtype_op): Correct offset.
3795 (rtype_rs): Fix formatting.
3796 (rtype_rt): Likewise.
3797 (rtype_rd): Likewise.
3798 (rtype_shamt): Likewise.
3799 (rtype_funct): Likewise.
3800
3801 (mips32_next_pc): Fix formatting and comments. Recognize
3802 coprocessor 1 branches. Check the correct field for BLT family
3803 branches. Use itype_rt instead of itype_rs for the second register
3804 of a BNE or BNEL branch. Move (unreachable) default case.
3805
3806 2001-07-04 Andrew Cagney <ac131313@redhat.com>
3807
3808 * ui-out.h (struct ui_out_impl): Add field is_mi_like_p.
3809 (ui_out_is_mi_like_p): Declare.
3810 * ui-out.c (ui_out_is_mi_like_p): Define.
3811 (default_ui_out_impl): Initialize is_mi_like_p to zero.
3812 * cli-out.c (cli_ui_out_impl): Ditto.
3813 * breakpoint.c (print_it_typical): Use ui_out_is_mi_like_p.
3814 (watchpoint_check, print_one_breakpoint, mention): Ditto.
3815 * infrun.c (print_stop_reason, normal_stop): Ditto.
3816
3817 2001-07-05 Daniel Jacobowitz <drow@mvista.com>
3818
3819 * mips-tdep.c (mips_software_single_step): New function.
3820 * config/mips/tm-mips.h: Add prototype for
3821 mips_software_single_step.
3822
3823 2001-07-05 Daniel Jacobowitz <drow@mvista.com>
3824
3825 * ppc-linux-nat.c (supply_gregset): Use elf_greg_t instead
3826 of greg_t.
3827 (fill_gregset): Likewise.
3828
3829 2001-07-05 Andrew Cagney <ac131313@redhat.com>
3830
3831 * objfiles.c (open_mapped_file): Use lbasename instead of
3832 basename.
3833
3834 2001-07-05 Jim Blandy <jimb@redhat.com>
3835
3836 * d10v-tdep.c (d10v_frame_chain, d10v_frame_init_saved_regs,
3837 show_regs, d10v_read_pc, d10v_write_pc, d10v_read_sp,
3838 d10v_write_sp, d10v_write_fp, d10v_read_fp,
3839 d10v_push_return_address): Call the functions d10v_make_daddr,
3840 d10v_make_iaddr, d10v_convert_iaddr_to_raw, and
3841 d10v_convert_daddr_to_raw, not the global macros D10V_MAKE_DADDR,
3842 D10V_MAKE_IADDR, D10V_CONVERT_IADDR_TO_RAW, and
3843 D10V_CONVERT_DADDR_TO_RAW.
3844
3845 * dwarf2read (dwarf2_build_psymtabs_hard): Doc fix.
3846
3847 2001-07-05 Mark Kettenis <kettenis@gnu.org>
3848
3849 * config/i386/xm-go32.h (HOST_I386): Removed.
3850 * config/i386/xm-linux.h (HOST_I386): Removed.
3851
3852 2001-07-04 Mark Kettenis <kettenis@gnu.org>
3853
3854 * i387-tdep.c (print_i387_value): Add extra space after final full
3855 stop in comment.
3856
3857 2001-07-04 Andrew Cagney <ac131313@redhat.com>
3858
3859 * TODO (5.1): Update. Doco changes committed.
3860
3861 2001-06-29 Andrew Cagney <ac131313@redhat.com>
3862
3863 * config/arm/tm-arm.h: Include "floatformat.h".
3864
3865 2001-06-29 Andrew Cagney <ac131313@redhat.com>
3866
3867 * i387-tdep.c: Include "gdb_assert.h".
3868 (print_i387_value): Use extract_floating to extract the FP value
3869 from a zero padded local buffer.
3870
3871 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3872
3873 * TODO: Delete all thread items. The thread code was overhauled.
3874
3875 2001-07-04 Elena Zannoni <ezannoni@redhat.com>
3876
3877 * memattr.c (create_mem_region): Move n to next memory region,
3878 to avoid infinite loop.
3879
3880 * memattr.h: Add copyright statement.
3881 * memattr.c: Ditto.
3882
3883 2001-07-04 Jim Blandy <jimb@redhat.com>
3884
3885 * dwarf2read.c (struct partial_die_info): New member: has_pc_info.
3886 (read_partial_die): Delete fourth argument; we return this info in
3887 the struct partial_die_info object itself now.
3888 (dwarf2_build_psymtabs_hard, scan_partial_symbols): Use the
3889 has_pc_info field of the partial die struct, rather than passing a
3890 variable by reference to read_partial_die.
3891
3892 * dwarf2read.c (dwarf2_build_psymtabs_hard): Remove extraneous
3893 code in loop condition.
3894
3895 2001-07-03 Michael Snyder <msnyder@redhat.com>
3896
3897 * thread_db (find_new_threads_callback, thread_db_thread_alive,
3898 attach_thread): Update comments.
3899
3900 2001-06-29 Ken Whaley <ken@believe.com>
3901
3902 * thread-db.c (attach_thread): Check for TD_THR_ZOMBIE in addition
3903 to TD_THR_UNKNOWN when looking for defunct zombie threads.
3904 (thread_db_thread_alive): Ditto.
3905 (find_new_threads_callback): Ditto.
3906
3907 2001-07-02 Daniel Jacobowitz <drow@mvista.com>
3908
3909 * MAINTAINERS: Add myself to the write-after-approval list.
3910
3911 2001-07-02 Daniel Jacobowitz <drow@mvista.com>
3912
3913 * solib-svr4.c: Include "elf/mips.h".
3914 (elf_locate_base): Make DT_MIPS_RLD_MAP block unconditional.
3915
3916 2001-07-02 Jim Blandy <jimb@redhat.com>
3917
3918 * dwarf2read.c (read_comp_unit, sibling_die, dump_die,
3919 dump_die_list, store_in_ref_table, follow_die_ref): Make these
3920 static; they're private functions.
3921
3922 2001-07-01 Mark Elbrecht <snowball@bigfoot.com>
3923
3924 * coffread.c (coff_symfile_read): Parse DWARF2 info if present.
3925
3926 2001-06-28 Elena Zannoni <ezannoni@redhat.com>
3927
3928 * TODO: Add import of readline 4.2 as a gdb 5.2 task.
3929
3930 2001-06-29 Andrew Cagney <ac131313@redhat.com>
3931
3932 * config/djgpp/fnchange.lst: Sort.
3933
3934 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3935
3936 * config/djgpp/fnchange.lst: Rename mi0-var-block.exp,
3937 mi0-var-cmd.exp, mi0-var-child.exp and mi0-var-display.exp.
3938
3939 2001-06-29 Andreas Jaeger <aj@suse.de>
3940
3941 * MAINTAINERS: Add myself to the write-after-approval list.
3942
3943 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3944
3945 * remote-array.c (SWAP_TARGET_AND_HOST): Delete macro.
3946 (get_hex_word): Don't use HOST_BYTE_ORDER.
3947 (array_fetch_registers): Add variable ``reg''. Use
3948 store_unsigned_integer to byte-swap the register. Delete unused
3949 local ``regs''.
3950
3951 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3952
3953 * MAINTAINERS: Add Per Bothner to Java maintainers.
3954
3955 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3956
3957 * rdi-share/unixcomm.c (SERIAL_PREFIX): Always provide a default.
3958 * rdi-share/hostchan.h (__unix): Hack, provide a default value.
3959 * rdi-share/host.h (__unix): Hack, define when __NetBSD__.
3960 * TODO: Update.
3961 * MAINTAINERS: Update. arm-elf builds.
3962
3963 2001-06-28 Jim Blandy <jimb@redhat.com>
3964
3965 * d10v-tdep.c (d10v_ts2_dmap_register): Doc fix.
3966
3967 * d10v-tdep.c (d10v_frame_chain_valid, d10v_use_struct_convention,
3968 d10v_breakpoint_from_pc, d10v_register_byte,
3969 d10v_register_raw_size, d10v_register_virtual_size,
3970 d10v_register_virtual_type, d10v_register_convertible,
3971 d10v_register_convert_to_virtual, d10v_register_convert_to_raw,
3972 d10v_make_daddr, d10v_make_iaddr, d10v_daddr_p, d10v_iaddr_p,
3973 d10v_convert_iaddr_to_raw, d10v_convert_daddr_to_raw,
3974 d10v_store_struct_return, d10v_store_return_value,
3975 d10v_extract_struct_value_address, d10v_frame_saved_pc,
3976 d10v_saved_pc_after_call, d10v_pop_frame, d10v_skip_prologue,
3977 d10v_frame_chain, d10v_frame_init_saved_regs,
3978 d10v_init_extra_frame_info, d10v_read_pc, d10v_write_pc,
3979 d10v_read_sp, d10v_write_sp, d10v_write_fp, d10v_read_fp,
3980 d10v_push_return_address, d10v_push_arguments,
3981 d10v_extract_return_value): Make these functions static.
3982
3983 2001-06-28 Andrew Cagney <ac131313@redhat.com>
3984
3985 From Fernando Nasser:
3986 * infrun.c (handle_inferior_event): Handle "nexti" inside function
3987 prologues.
3988
3989 2001-06-28 Michael Snyder <msnyder@redhat.com>
3990
3991 * infrun.c (handle_inferior_event): Replace prev_pc test in all
3992 calls to bpstat_stop_status (removed in 1999-09-24). This test
3993 helps distinguish stepping over a breakpoint trap from stepping
3994 thru a jump to the instruction after a breakpoint trap.
3995 (handle_inferior_event): Don't bother writing the PC if
3996 DECR_PC_AFTER_BREAK is zero (optimization).
3997 * breakpoint.c (bpstat_stop_status): Add comment explaining the
3998 purpose and usage of the "not_a_breakpoint" argument in computing
3999 the breakpoint address.
4000
4001 2001-06-28 Andrew Cagney <ac131313@redhat.com>
4002
4003 From 2000-12-03 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
4004 * monitor.c (setmem_resp_delim_pattern): New regexp pattern.
4005 (setreg_resp_delim_pattern): Likewise.
4006 (setmem_resp_delim_fastmap): New buffer.
4007 (setreg_resp_delim_fastmap): Likewise.
4008 (monitor_open): Initialize above regexp if they are defined.
4009 (monitor_write_memory): Use regexp to check the result of write.
4010 (monitor_store_register): Likewise to check result of register set.
4011
4012 2001-06-28 Andrew Cagney <ac131313@redhat.com>
4013
4014 From 2000-06-14 John Marshall <john_w_marshall@palm.com>:
4015 * coff-solib.c: Include symfile.h and objfiles.h to make
4016 OBJF_SHARED visible.
4017
4018 2001-06-28 Andrew Cagney <ac131313@redhat.com>
4019
4020 * configure.in (--enable-gdbmi): Enable by default.
4021 * configure: Regenerate.
4022 * TODO: Update.
4023 * NEWS: Update
4024
4025 2001-06-28 Joel Brobecker <brobecker@act-europe.fr>
4026
4027 * solib-osf.c (osf_in_dynsym_resolve_code): Add a comment
4028 explaining the consequences of always returning zero. No code
4029 change.
4030
4031 2001-06-28 Andrew Cagney <ac131313@redhat.com>
4032
4033 From 2001-06-08 Daniel Jacobowitz <djacobowitz@mvista.com>:
4034 * defs.h (enum target_signal): Add TARGET_SIGNAL_REALTIME_65
4035 to TARGET_SIGNAL_REALTIME_127.
4036 * target.c (struct signals): Add SIG63 to SIG127.
4037 (target_signal_from_host): Handle up to 127 signals.
4038 (do_target_signal_to_host): Likewise.
4039
4040 2001-06-27 Andrew Cagney <ac131313@redhat.com>
4041
4042 * remote-sds.c (sds_start_remote): Change type of ``c'' to int
4043 from possibly unsigned char.
4044
4045 2001-06-27 Andrew Cagney <ac131313@redhat.com>
4046
4047 * ser-ocd.c: Delete file.
4048 * Makefile.in (ALLDEPFILES): Remove ser-ocd.c
4049 (ser-ocd.o): Delete target.
4050 * TODO: Update.
4051 * NEWS: Update.
4052
4053 2001-06-27 Andrew Cagney <ac131313@redhat.com>
4054
4055 * MAINTAINERS (Write After Approval): Sort.
4056 (Past Maintainers): Daniel Berlin stepped down as C++ maintainer.
4057
4058 2001-06-26 Andrew Cagney <ac131313@redhat.com>
4059
4060 * breakpoint.c (breakpoint_1): Always output the breakpoint
4061 headings. Leave it to ui-out to decide which
4062
4063 2001-06-25 Andrew Cagney <ac131313@redhat.com>
4064
4065 * stack.c (print_frame): For ui_out, output a list of arguments.
4066
4067 2001-06-25 Kevin Buettner <kevinb@redhat.com>
4068
4069 * MAINTAINERS (paper trail): Update.
4070
4071 2001-06-25 Michael Snyder <msnyder@redhat.com>
4072
4073 * infrun.c: Eliminate the "thread_step_needed" state variable,
4074 and replace it with a relatively simple test in resume.
4075 (resume): Replace thread_step_needed logic with a test for
4076 stepping, breakpoint_here_p and breakpoints_inserted.
4077 Move CANNOT_STEP_BREAKPOINT logic to after thread_step logic.
4078 (proceed): Discard thread_step_needed logic.
4079 (wait_for_inferior, fetch_inferior_event, handle_inferior_event):
4080 Discard thread_step_needed logic.
4081
4082 2001-06-24 Fernando Nasser <fnasser@redhat.com>
4083
4084 * remote-rdi.c (arm_rdi_wait): Fix return type in prototype.
4085 * rdi-share/host.h: Add missing parenthesis in conditional.
4086
4087 2001-06-22 J.T. Conklin <jtc@redback.com>
4088
4089 * configure.in: include nlist.h when checking for member som_addr
4090 in struct so_map.
4091 * configure: regenerate.
4092
4093 2001-06-21 Keith Seitz <keiths@redhat.com>
4094
4095 * cli-out.c (cli_out_new): Initialize new structure member
4096 "suppress_output".
4097
4098 2001-06-20 Andrew Cagney <ac131313@redhat.com>
4099
4100 * ui-out.h (ui_out_table_header): Add parameter ``col_name''.
4101 (table_header_ftype): Ditto.
4102 * cli-out.c (cli_table_header): Update.
4103 * ui-out.c (ui_out_table_header): Update.
4104 (uo_table_header): Update.
4105 (default_table_header): Update.
4106 (append_header_to_list): Update.
4107 (struct ui_out_header): Add field ``col_name''.
4108 (append_header_to_list): Use xstrdup. Initialize col_name.
4109 * breakpoint.c (breakpoint_1): Pass COL_NAME to
4110 ui_out_table_header.
4111
4112 2001-06-19 Andrew Cagney <ac131313@redhat.com>
4113
4114 * cli-out.c: Include "gdb_assert.h'.
4115 (struct ui_out_data): Add field ``suppress_output.
4116 (cli_table_begin): When NR_ROWS is zero, suppress_output.
4117 (cli_table_end): Clear suppress_output.
4118 (cli_table_body): Check suppress_output.
4119 (cli_table_header, cli_begin): Ditto.
4120 (cli_end, cli_field_int, cli_field_skip): Ditto.
4121 (cli_field_string, cli_field_fmt, cli_spaces): Ditto.
4122 (cli_text, cli_message, cli_wrap_hint): Ditto.
4123 * breakpoint.c (breakpoint_1): Close the ui_out table before
4124 printing the breakpoint not found message.
4125
4126 2001-06-18 Andrew Cagney <ac131313@redhat.com>
4127
4128 * ui-out.c (ui_out_table_begin): Add parameter ``nr_rows''.
4129 (default_table_begin): Ditto.
4130 (uo_table_begin): Ditto.
4131 * cli-out.c (cli_table_begin): Ditto.
4132 * ui-out.h (ui_out_table_begin): Update
4133 (table_begin_ftype): Update.
4134 * breakpoint.c (breakpoint_1): Pass nr_printable_breakpoints to
4135 ui_out_table_begin.
4136
4137 2001-06-16 Andrew Cagney <ac131313@redhat.com>
4138
4139 * breakpoint.c (breakpoint_1): Restructure. Compute the
4140 nr_printable_breakpoints. Move the header output to before the
4141 main print breakpoints loop.
4142 (user_settable_breakpoint): New function.
4143
4144 2001-06-18 Andrew Cagney <ac131313@redhat.com>
4145
4146 * infrun.c, breakpoint.c: Use strncmp as the "mi" test. Allow,
4147 "mi", "mi0" and "mi1".
4148
4149 2001-06-17 Andrew Cagney <ac131313@redhat.com>
4150
4151 * gdbarch.sh: Generate an error when conflicting macro
4152 definitions. Generate an error when both pure multi-arch and
4153 "tm.h".
4154 * gdbarch.h, gdbarch.c: Regenerate.
4155 * defs.h (GDB_MULTI_ARCH_TM): Rewrite definition.
4156
4157 2001-06-17 Andrew Cagney <ac131313@redhat.com>
4158
4159 * config/sparc/tm-sun4sol2.h (GDB_MULTI_ARCH): Down grade to
4160 GDB_MULTI_ARCH_PARTIAL from two.
4161
4162 2001-06-17 Fernando Nasser <fnasser@redhat.com>
4163
4164 From 2001-06-15 Eirik Fuller <eirik@hackrat.com>
4165 * cli/cli-script.c (free_command_lines): Reset list pointer.
4166
4167 2001-06-16 Andrew Cagney <ac131313@redhat.com>
4168
4169 * arch-utils.c (init_frame_pc_default): New function
4170 * arch-utils.h (init_frame_pc_default): Declare.
4171 * gdbarch.sh (INIT_FRAME_PC): Default to init_frame_pc_default and
4172 not init_frame_pc_noop.
4173 * gdbarch.h, gdbarch.c: Re-generate.
4174 * blockframe.c (INIT_FRAME_PC): Delete macro definition.
4175 * mips-tdep.c (mips_gdbarch_init): Set init_frame_pc to
4176 init_frame_pc_noop.
4177
4178 2001-06-16 Andrew Cagney <ac131313@redhat.com>
4179
4180 * gdbarch.c: Regenerate. Out-of-sync with gdbarch.sh.
4181
4182 2001-06-15 Andrew Cagney <ac131313@redhat.com>
4183
4184 * gdbarch.sh (CANNOT_FETCH_REGISTER): Multi-arch.
4185 (CANNOT_STORE_REGISTER): Ditto.
4186 * infptrace.c (CANNOT_FETCH_REGISTER): Delete definition.
4187 (CANNOT_STORE_REGISTER): Ditto.
4188 * regcache.c (CANNOT_STORE_REGISTER): Ditto.
4189 * lynx-nat.c (CANNOT_STORE_REGISTER): Ditto.
4190 * arch-utils.h (cannot_register_not): Define.
4191 * arch-utils.c (cannot_register_not): Declare.
4192
4193 2001-06-15 Andrew Cagney <ac131313@redhat.com>
4194
4195 * gdbarch.sh: Clarify pre/post default
4196 (INIT_FRAME_PC_FIRST, INIT_FRAME_PC): Multiarch.
4197 * blockframe.c (get_prev_frame): Remove #ifdef from around
4198 INIT_FRAME_PC_FIRST call.
4199 * arch-utils.c (init_frame_pc_noop): Define.
4200 * arch-utils.h (init_frame_pc_noop): Declare.
4201 * config/mips/tm-mips.h (INIT_FRAME_PC_FIRST): Delete.
4202 (INIT_FRAME_PC, mips_init_frame_pc_first): Ditto.
4203 * mips-tdep.c (mips_init_frame_pc_first): Make static.
4204 (mips_gdbarch_init): Initialize init_frame_pc_first.
4205 (mips_dump_tdep): Update.
4206
4207 2001-06-15 Michael Snyder <msnyder@redhat.com>
4208
4209 * infrun.c (context_switch): New function. Abstract the operation
4210 of saving and restoring infrun's state when switching threads.
4211 (handle_inferior_event): Normalize the handling of the 'thread hop'
4212 event (when the wrong thread hits a thread-specific breakpoint,
4213 and we need to solo-step that thread past the breakpoint).
4214 Call keep_going, instead of target_resume. Handle the subsequent
4215 singlestep-trap as a normal event instead of just resuming.
4216
4217 2001-06-15 Andrew Cagney <ac131313@redhat.com>
4218
4219 * arch-utils.c (core_addr_identity): New function. Rename
4220 default_convert_from_func_ptr_addr.
4221 * gdbarch.sh (CONVERT_FROM_FUNC_PTR_ADDR): Update.
4222 (ADDR_BITS_REMOVE): Define. Default to core_addr_identity.
4223 * defs.h (ADDR_BITS_REMOVE): Delete macro definition.
4224 * config/mips/tm-mips.h (ADDR_BITS_REMOVE): Delete definition.
4225 * mips-tdep.c (mips_addr_bits_remove): Make static.
4226 (mips_gdbarch_init): Initialize addr_bits_remove.
4227
4228 2001-06-15 Andrew Cagney <ac131313@redhat.com>
4229
4230 From 2001-02-26 D.J. Barrow <djbarrow@de.ibm.com>:
4231 * configure.tgt: Add S/390 31 & 64 bit target configuration.
4232 * configure.host: Ditto for host.
4233
4234 2001-06-15 Andrew Cagney <ac131313@redhat.com>
4235
4236 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS_P): Delete definition.
4237 (EXTRACT_STRUCT_VALUE_ADDRESS): Change to a function with
4238 predicate.
4239 * gdbarch.h, gdbarch.c: Regenerate.
4240 * values.c (value_being_returned): Change the reference to
4241 EXTRACT_STRUCT_VALUE_ADDRESS_P to a function call.
4242
4243 2001-06-15 Joel Brobecker <brobecker@act-europe.fr>
4244
4245 * MAINTAINERS: Add Paul Hilfinger and Joel Brobecker to the
4246 Write After Approval list.
4247
4248 2001-06-14 Michael Snyder <msnyder@redhat.com>
4249
4250 * remote.c (show_remote_protocol_qSymbol_packet_cmd,
4251 set_remote_protocol_qSymbol_packet_cmd): New functions.
4252 (init_all_packet_configs, show_remote_cmd): Add qSymbol packet.
4253 (remote_check_symbols): New function. Implement qSymbol packet,
4254 allowing target to request symbol lookup service from gdb.
4255 (remote_open_1, remote_async_open_1): Call remote_check_symbols,
4256 allowing symbol lookup from exec_bfd on connection to target.
4257 (remote_new_objfile): New function. Catch new objfile notifications
4258 from shared library module, and call remote_check_symbols.
4259 (_initialize_remote): Hook remote_new_objfile into the shared
4260 library notification chain. Add "set remote symbol-lookup" command.
4261
4262 2001-06-14 Keith Seitz <keiths@redhat.com>
4263
4264 * tracepoint.c (trace_command): We now have tracepoint
4265 events. Get rid of those ugly hooks.
4266 (tracepoint_operation): Likewise.
4267 (trace_pass_command): Likewise.
4268
4269 2001-06-13 Michael Snyder <msnyder@redhat.com>
4270
4271 * gdbthread.h (struct thread_info): Add new fields:
4272 current_line, current_symtab, step_sp, for saved infrun state.
4273 * thread.c (save_infrun_state, load_infrun_state): Save and
4274 restore current_line, current_symtab, and step_sp.
4275 (add_thread): Rather than adding assignments to initialize
4276 the new fields, just use memset (tp, 0, sizeof (*tp).
4277 This way future new fields will not be overlooked.
4278 * infrun.c (handle_inferior_event): Save and restore save_sp,
4279 current_line, and current_symtab when switching threads.
4280
4281 2001-06-13 Elena Zannoni <ezannoni@redhat.com>
4282
4283 * MAINTAINERS: Add Andrew Cagney as co-maintainer of
4284 testsuite/gdb.mi.
4285
4286 2001-06-11 Andrew Cagney <ac131313@redhat.com>
4287
4288 * symtab.c (lookup_symtab_1): Replace basename with lbasename.
4289 (lookup_partial_symtab, file_matches): Ditto.
4290 (make_source_files_completion_list): Ditto.
4291 (make_file_symbol_completion_list): Ditto. Make local char*
4292 variable ``tail'' constant.
4293 (make_source_files_completion_list): Ditto with ``base_name''.
4294 * source.c (open_source_file): Use lbasename. Make ``p'' const
4295 char *.
4296
4297 2001-06-13 Eli Zaretskii <eliz@is.elta.co.il>
4298
4299 * config/i386/xm-go32.h (SLASH_P, ROOTED_P, SLASH_CHAR)
4300 (SLASH_STRING): Remove unused definitions.
4301 * config/i386/xm-cygwin.h: Likewise.
4302
4303 2001-06-12 Andrew Cagney <ac131313@redhat.com>
4304
4305 * ui-out.c (ui_out_list_begin): Add parameter ``id''.
4306 (make_cleanup_ui_out_list_begin_end): Ditto. Open the list.
4307 * ui-out.h: Update declarations.
4308
4309 Mon Jun 11 17:26:43 2001 Andrew Cagney <cagney@b1.cygnus.com>
4310
4311 * source.c (openp): Make parameters ``path'' and ``string''
4312 constant.
4313 (openp): Use alloca to safely duplicate ``string''. Make local
4314 variables ``p'' and ``p1'' constant. Delete char* casts.
4315 * defs.h: Update.
4316
4317 * symtab.c (lookup_symtab_1): Make parameter ``name'' constant.
4318 (lookup_symtab, lookup_partial_symtab): Ditto.
4319 * symtab.h (lookup_symtab, lookup_partial_symtab): Update.
4320
4321 2001-06-11 Andrew Cagney <ac131313@redhat.com>
4322
4323 * ui-out.h (ui_out_table_begin): Make char* parameters constant.
4324 (ui_out_table_header, ui_out_field_int): Ditto.
4325 (ui_out_field_core_addr, ui_out_field_string): Ditto.
4326 (ui_out_field_stream, ui_out_field_fmt): Ditto.
4327 (ui_out_field_skip, ui_out_text, ui_out_message): Ditto.
4328 * ui-out.c (ui_out_table_begin, ui_out_table_header): Update.
4329 (ui_out_field_core_addr, ui_out_field_stream): Update.
4330 (ui_out_field_string, ui_out_field_fmt): Update.
4331 (ui_out_text, ui_out_message): Update.
4332 (append_header_to_list): Make char* parameters constant.
4333 (uo_table_header, uo_table_begin): Ditto.
4334 (uo_field_int, uo_field_skip): Ditto.
4335 (uo_field_string, uo_field_fmt): Ditto.
4336 (uo_text, uo_message): Ditto.
4337
4338 2001-06-11 Eli Zaretskii <eliz@is.elta.co.il>
4339
4340 * completer.c (gdb_completer_loc_break_characters): New variable.
4341 (line_completion_function): If we are completing on locations,
4342 back up the start of word pointer past all characters which can
4343 appear in a location spec.
4344 (location_completer): New function.
4345
4346 * completer.h: Add prototype for location_completer.
4347
4348 * symtab.c (make_source_files_completion_list)
4349 (add_filename_to_list, not_interesting_fname): New functions.
4350 (filename_seen): New function, body extracted from
4351 output_source_filename.
4352 (output_source_filename): Call filename_seen to check if the file
4353 was already printed.
4354 (make_symbol_completion_list): If TEXT includes a
4355 double-quoted string, return an empty list, not NULL.
4356 (make_file_symbol_completion_list): New function, similar to
4357 make_symbol_completion_list but with an additional argument
4358 SRCFILE.
4359
4360 * symtab.h (make_file_symbol_completion_list)
4361 (make_source_files_completion_list): Add prototypes.
4362
4363 * breakpoint.c (_initialize_breakpoint): Make location_completer
4364 be the completion function for all commands which set breakpoints
4365 and watchpoints.
4366 (top-level): #include "completer.h".
4367
4368 * tracepoint.c (_initialize_tracepoint): Make location_completer
4369 be the completion function for the "trace" command.
4370 (top-level): #include "completer.h".
4371
4372 * printcmd.c (_initialize_printcmd): Make location_completer be
4373 the completion function for the "print", "inspect", "call", and
4374 "disassemble" commands.
4375 (top-level): #include "completer.h".
4376
4377 * infcmd.c (_initialize_infcmd): Make location_completer be the
4378 completion function for the "go", "jump", and "until" commands.
4379 (top-level): #include "completer.h".
4380
4381 2001-06-10 Christopher Faylor <cgf@redhat.com>
4382
4383 * gnu-regex.c: Eliminate obsolete check for _MSC_VER.
4384 * utils.c (notice_quit): Remove dummy function only used for _MSC_VER.
4385 * values.c (unpack_double): Remove obsolete check for _MSC_VER.
4386 * defs.h: Ditto.
4387 * m32r-rom.c: Ditto.
4388 * p-exp.y: Ditto.
4389 * ser-e7kpc.c: Ditto. Define WIN32_LEAN_AND_MEAN under _WIN32, for
4390 faster compilation.
4391 (get_ds_base): Remove _MSC_VER version of this function.
4392 * nindy-share/ttyflush.c: Ditto.
4393 * rdi-share/host.h: Ditto.
4394 * ser-go32.c (dos_readchar): Remove call to obsolete function.
4395 * remote-sim.c (gdb_os_poll_quit): Ditto.
4396 * remote-e7000.c (expect): Remove obsolete #if 0'ed code.
4397
4398 * main.c (captured_main): Eliminate special Cygwin checks.
4399 * ser-tcp.c: Remove unneeded __CYGWIN__ guard against system include.
4400
4401 2001-06-09 Andrew Cagney <ac131313@redhat.com>
4402
4403 * Makefile.in (gdbcmd_h): Add ui_out_h.
4404 (breakpoint.o, infcmd.o, main.o, printcmd.o, stack.o): Ditto.
4405 (thread.o, top.o): Ditto.
4406
4407 * ui-out.h (table_begin_ftype): Make string parameters constant.
4408 (table_header_ftype): Ditto.
4409 (field_int_ftype): Ditto.
4410 (field_skip_ftype): Ditto.
4411 (field_string_ftype): Ditto.
4412 (field_fmt_ftype): Ditto.
4413 (text_ftype): Ditto.
4414 (message_ftype): Ditto.
4415 * cli-out.c (cli_table_begin): Ditto.
4416 (cli_table_header): Ditto.
4417 (cli_field_int): Ditto.
4418 (cli_field_skip): Ditto.
4419 (cli_field_string): Ditto.
4420 (cli_field_fmt): Ditto.
4421 (cli_text): Ditto.
4422 (cli_message): Ditto.
4423 (out_field_fmt): Ditto.
4424 * ui-out.c (default_table_begin): Ditto.
4425 (default_table_header): Ditto.
4426 (default_field_int): Ditto.
4427 (default_field_skip): Ditto.
4428 (default_field_string): Ditto.
4429 (default_field_fmt): Ditto.
4430 (default_text): Ditto.
4431 (default_message): Ditto.
4432
4433 2001-06-08 Michael Snyder <msnyder@redhat.com>
4434
4435 * breakpoint.c (delete_breakpoint): Pass mark_inserted to
4436 remove_breakpoint, so that the subsequent test for
4437 bpt->inserted will succeed, and duplicates will be fixed up.
4438
4439 2001-06-08 Per Bothner <per@bothner.com>
4440
4441 * dwarf2read.c (set_cu_language): Handle DW_LANG_Java.
4442
4443 2001-06-07 Keith Seitz <keiths@redhat.com>
4444
4445 * tracepoint.c (tracepoint_opertation): Add ui event
4446 notifications.
4447 (trace_pass_command): Ditto.
4448
4449 2001-06-07 Andrew Cagney <ac131313@redhat.com>
4450
4451 * MAINTAINERS (Write After Approval): Note the entry criteria.
4452 (HP/PA): Jeff Law stepped down
4453
4454 2001-06-07 Jim Blandy <jimb@redhat.com>
4455
4456 * gdbarch.sh: Make sure that '[' doesn't interpret interesting
4457 variable values as operators.
4458
4459 2001-06-07 Keith Seitz <keiths@redhat.com>
4460
4461 * gdb-events.sh: Fix quote escaping which was obsoleted
4462 by last patch.
4463
4464 2001-06-07 Keith Seitz <keiths@redhat.com>
4465
4466 * gdb-events.sh: Make if statements and tests
4467 a little more portable.
4468 Don't use shell's echo command to put strings containing
4469 escaped characeters into a file -- different flavors of /bin/sh
4470 require differnt levels of escaping. Use cat <<EOF instead.
4471 Our internal field separator is a colon. Change all
4472 commands which assume it is a space.
4473
4474 2001-06-06 Mark Kettenis <kettenis@gnu.org>
4475
4476 * lin-lwp.c (struct lwp_info): Add member `resumed'.
4477 (iterate_over_lwps): Make sure we can handle CALLBACK deleting the
4478 LWP it's called for.
4479 (lin_lwp_attach): Mark LWP as resumed to make sure the fake
4480 SIGSTOP is reported.
4481 (resume_clear_callback): New function.
4482 (resume_set_callback): New function.
4483 (lin_lwp_resume): Mark all LWP's that we're going to resume as
4484 resumed, and unmark all others.
4485 (status_callback): Only report a pending wait status if we pretend
4486 that LP has been resumed.
4487 (resumed_callback): New function.
4488 (lin_lwp_wait): Add assertions to check that LWP's are properly
4489 marked as resumed. Partially revert 2001-05-25 patch by Michael
4490 Snyder: do not resume all threads. Add comment explaining the
4491 problems associated with this bit of code.
4492
4493 2001-06-07 Keith Seitz <keiths@redhat.com>
4494
4495 * MAINTAINTERS: Syd Polk is stepping down from
4496 maintaining libgui. I am replacing him.
4497
4498 2001-06-07 Eli Zaretskii <elis@is.elta.co.il>
4499
4500 * config/mips/tm-irix6.h: New file.
4501
4502 * config/mips/irix6.mh: New file.
4503
4504 * config/mips/irix6.mt: New file.
4505
4506 * config/mips/xm-irix6.h: New file.
4507
4508 * config/mips/nm-irix6.h: New file.
4509
4510 * mips-tdep.c (mips_gdbarch_init) <MIPS_ABI_N32>: Set up the
4511 disassembler info in tm_print_insn_info as appropriate for the N32
4512 ABI. Force N32 ABI to be the default if the CPU is R8000 or
4513 R10000.
4514
4515 * configure.tgt (mips*-sgi-irix6*): Map to irix6.
4516
4517 * configure.host (mips*-sgi-irix6*): Ditto.
4518
4519 2001-06-07 Andrew Cagney <ac131313@redhat.com>
4520
4521 * gnu-v3-abi.c: Include "gdb_assert.h".
4522 (build_gdb_vtable_type): Replace abort() with gdb_assert().
4523
4524 2001-06-06 Jim Blandy <jimb@redhat.com>
4525
4526 * cp-abi.h: Rearrange code to put documentation comments above the
4527 functions we export. The actual function table itself simply
4528 refers to those functions. Minor doc fixes.
4529
4530 * gdbarch.sh: Changes to effect the following:
4531 * gdbarch.c (initialize_non_multiarch): New function.
4532 * gdbarch.h (initialize_non_multiarch): New declaration.
4533 * arch-utils.c (initialize_current_architecture): For
4534 non-multiarch configurations, call initialize_non_multiarch.
4535
4536 2001-06-06 Andrew Cagney <ac131313@redhat.com>
4537
4538 * symfile.c (compare_psymbols): Replace PTR with void*. Delete
4539 declaration.
4540 (compare_symbols): Ditto.
4541
4542 2001-06-06 Jonathan Larmour <jlarmour@redhat.com>
4543
4544 * arch-utils.c (generic_prepare_to_proceed): Allow for having
4545 stopped due to a Ctrl-C as well as breakpoints.
4546
4547 * hppa-tdep.c (hppa_prepare_to_proceed): Add FIXME as this may not
4548 support thread switches after Ctrl-C.
4549 * lin-lwp.c (lin_lwp_prepare_to_proceed): Ditto.
4550 * linux-thread.c (linuxthreads_prepare_to_proceed): Ditto.
4551 * m3-nat.c (mach3_prepare_to_proceed): Ditto.
4552
4553 2001-06-06 Jim Blandy <jimb@redhat.com>
4554
4555 * gdbarch.sh, gdbarch.c: Revert change of 2001-06-01; all
4556 per-architecture data should be registered at initialization time,
4557 before any gdbarch objects get used, so the generality is
4558 unnecessary.
4559
4560 2001-06-06 Keith Seitz <keiths@redhat.com>
4561
4562 * gdb-events.sh (function_list): Add tracepoint_create,
4563 tracepoint_delete, and tracepoint_modify events.
4564 * gdb-events.c: Regenerated.
4565 * gdb-events.h: Regenerated.
4566
4567 2001-06-06 Keith Seitz <keiths@redhat.com>
4568
4569 * gdb-events.sh: Update copyrights.
4570 Change free to xfree.
4571 * gdb-events.c: Regenerated.
4572 * gdb-events.h: Regenerated.
4573
4574 2001-06-06 Eli Zaretskii <eliz@is.elta.co.il>
4575
4576 * source.c (mod_path, openp): Use #ifdef HAVE_DOS_BASED_FILE_SYSTEM
4577 instead of #if HAVE_DOS_BASED_FILE_SYSTEM.
4578 * completer.c: Ditto.
4579 * cli/cli-cmds.c (cd_command): Ditto.
4580
4581 2001-06-04 Eli Zaretskii <eliz@is.elta.co.il>
4582
4583 * mips-tdep.c (show_mipsfpu_command): Remove unused variable msg.
4584 (mips_set_processor_type_command): Remove unused variable j.
4585 (mips_breakpoint_from_pc): Declare breakpoint instruction
4586 sequences as unsigned char, to avoid compiler warnings.
4587
4588 * source.c (mod_path, openp): Use HAVE_DOS_BASED_FILE_SYSTEM
4589 instead of system-specific define's like _WIN32 and __MSDOS__.
4590 Use IS_DIR_SEPARATOR and IS_ABSOLUTE_PATH instead of SLASH_P and
4591 ROOTED_P.
4592 (top-level): #include "filenames.h".
4593
4594 * solib.c (solib_open): Use IS_DIR_SEPARATOR and IS_ABSOLUTE_PATH
4595 instead of SLASH_CHAR, ROOTED_P and SLASH_P.
4596 (top-level): #include "filenames.h".
4597
4598 * defs.h (SLASH_P, SLASH_CHAR, ROOTED_P): Remove definitions.
4599 (SLASH_STRING): Define only for _WIN32.
4600
4601 * completer.c: Use HAVE_DOS_BASED_FILE_SYSTEM instead of
4602 __MSDOS_.
4603
4604 * cli/cli-cmds.c (cd_command): Use IS_DIR_SEPARATOR and
4605 IS_ABSOLUTE_PATH instead of SLASH_P and ROOTED_P. Replace
4606 system-specific ifdefs with HAVE_DOS_BASED_FILE_SYSTEM.
4607 (top-level): #include "filenames.h".
4608
4609 * go32-nat.c (go32_wait): Change the return value to ptid_t.
4610
4611 * config/djgpp/fnchange.lst: Add two new files in the
4612 gdb/testsuite/gdb.c++/ directory to the remapped names.
4613
4614 * config/djgpp/djconfig.sh (lt_cv_sys_max_cmd_len): Set to 12KB.
4615
4616 2001-06-01 Jim Blandy <jimb@redhat.com>
4617
4618 Expand the gdbarch per-architecture data vector as needed, rather
4619 than requiring that all per-architecture data be registered before
4620 the first gdbarch object is allocated.
4621 * gdbarch.sh: Changes to effect the following:
4622 * gdbarch.c (alloc_gdbarch_data, init_gdbarch_data): Delete
4623 declarations and definitions.
4624 (check_gdbarch_data): New function, and declaration.
4625 (gdbarch_alloc): Don't call alloc_gdbarch_data; leaving the fields
4626 zero is good enough.
4627 (free_gdbarch_data): Tolerate a null data pointer. Free only
4628 those data items gdbarch->data actually has allocated.
4629 (set_gdbarch_data, gdbarch_data): Call check_gdbarch_data.
4630 (gdbarch_update_p): No need to call init_gdbarch_data.
4631
4632 2001-06-01 Kevin Buettner <kevinb@redhat.com>
4633
4634 * ia64-tdep.c (is_float_or_hfa_type_recurse): Call check_typedef()
4635 on types that we wish to recurse on.
4636 (slot_alignment_is_next_even): New function.
4637 (ia64_push_arguments): Call slot_alignment_is_next_even() to
4638 examine the type in order to decide if it's necessary to skip
4639 an odd slot.
4640
4641 2001-06-01 Michael Snyder <msnyder@redhat.com>
4642
4643 * thread.c (delete_step_resume_breakpoint): New function.
4644 Maintain internal consistency of the thread list while deleting
4645 a step_resume_breakpoint.
4646 * gdbthread.h (delete_step_resume_breakpoint): Export.
4647 * breakpoint.c (bpstat_find_step_resume_breakpoint):
4648 Make thread-aware: don't return a step_resume_breakpoint
4649 for the wrong thread.
4650 * infrun.c (wait_for_inferior): Call delete_step_resume_breakpoint
4651 instead of delete_breakpoint_current_contents.
4652 (fetch_inferior_event): Ditto.
4653 (handle_inferior_event): Call delete_step_resume_breakpoint
4654 instead of delete_breakpoint.
4655 * infrun.c (handle_inferior_event): After singlestepping over a
4656 thread-specific breakpoint, use currently_stepping() to decide
4657 whether to step or continue.
4658
4659 2001-06-01 Jim Blandy <jimb@redhat.com>
4660
4661 * gnu-v3-abi.c (gnu_v3_abi_ops, vtable_type_gdbarch_data): Make
4662 these static --- there's no reason other files should use these.
4663
4664 * partial-stab.h (case N_FUN: case 'f':, case N_FUN: case 'F':)
4665 Fix memory leak.
4666
4667 * partial-stab.h: New complaint: function_outside_compilation_unit.
4668 (case N_FUN: case 'f':, case N_FUN: case 'F':): If pst is zero,
4669 complain, and don't try to set pst's start address.
4670
4671 2001-05-31 Kevin Buettner <kevinb@redhat.com>
4672
4673 * ia64-linux-tdep.c (IA64_LINUX_SIGCONTEXT_OFFSET): Revise to
4674 match the location at which the kernel is placing the sigcontext
4675 struct.
4676
4677 * ia64-tdep.c (max_skip_non_prologue_insns): New static global.
4678 (refine_prologue_limit): New function.
4679 (examine_prologue): Further limit number of instructions
4680 scanned by calling refine_prologue_limit(). Revise way in
4681 which the end of prologue address is computed for frameless
4682 functions.
4683
4684 2001-05-29 Christopher Faylor <cgf@redhat.com>
4685
4686 * partial-stab.h: Revert previous patch.
4687
4688 2001-05-29 Christopher Faylor <cgf@redhat.com>
4689
4690 * partial-stab.h: Consistently guard against pst being NULL.
4691
4692 2001-05-29 Alexandre Oliva <aoliva@redhat.com>
4693
4694 * symfile.c (compare_psymbols, compare_symbols): Declare using
4695 PTR, as in the definition.
4696 * minsyms.c (compare_minimal_symbols): Likewise.
4697 * coffread.c (find_targ_sec): Likewise.
4698 * elfread.c (free_elfinfo, elf_locate_sections): Likewise.
4699 * mipsread.c (alphacoff_locate_sections): Likewise.
4700 * mdebugread.c (compare_blocks): Likewise.
4701
4702 2001-05-25 Nick Duffek <nsd@redhat.com>
4703
4704 * solib.c (update_solib_list): Move target_resize_to_sections()
4705 into solib_map_sections() loop.
4706 (info_sharedlibrary_command): Try bfd_arch_bits_per_address() if
4707 bfd_get_arch_size() fails.
4708
4709 2001-05-25 Nick Duffek <nsd@redhat.com>
4710
4711 * Makefile.in (osfsolib.c, osfsolib.o): Rename to solib-osf.c and
4712 solib-osf.o.
4713 * config/alpha/alpha-osf1.mh (NATDEPFILES): Replace osfsolib.o
4714 with solib-osf.o and solib.o.
4715 * config/alpha/alpha-osf2.mh: Likewise.
4716 * config/alpha/alpha-osf3.mh: Likewise.
4717 * solib-osf.c: New file, renamed and largely rewritten from
4718 osfsolib.c.
4719
4720 2001-05-25 Michael Snyder <msnyder@redhat.com>
4721
4722 * lin-lwp.c (lin_lwp_attach_lwp): Call stop_wait_callback,
4723 to consume the SIGSTOP generated by PTRACE_ATTACH.
4724 (stop_wait_callback): If a SIGTRAP or a SIGINT event is consumed,
4725 try again to get the SIGSTOP event.
4726 (lin_lwp_wait): Resume all threads when ignoring a signal.
4727 This will insure that newly attached threads get resumed.
4728 * lin-lwp.c (stop_wait_callback): Discard redundant SIGINT events.
4729 * remote.c (remote_write_bytes): Update 'p' packet pointer.
4730
4731 2001-05-25 Jim Blandy <jimb@redhat.com>
4732
4733 * gnu-v2-abi.c (gnuv2_virtual_fn_field): There's no need to clear
4734 VALUE_POINTED_TO_OFFSET here; if value_cast doesn't return a
4735 useful value, then we should fix that instead.
4736
4737 2001-05-24 Nick Duffek <nsd@redhat.com>
4738
4739 * solist.h (struct so_list): Document the requirement that
4740 current_sos initialize some fields to 0.
4741
4742 2001-05-24 Mark Kettenis <kettenis@gnu.org>
4743
4744 * gnu-nat.c: Include <ctype.h>.
4745 (gnu_pid_to_exec_file): Add PID parameter.
4746 (set_sig_thread_cmd): Use PIDGET on return value from
4747 thread_id_to_pid.
4748 (proc_string): Use MERGEPID to construct argument to
4749 pid_to_thread_id.
4750
4751 2001-05-22 Kevin Buettner <kevinb@redhat.com>
4752
4753 * breakpoint.c (breakpoint_address_is_meaningful): New function.
4754 (check_duplicates): Don't compare non-meaningful addresses.
4755
4756 2001-05-22 Michael Snyder <msnyder@redhat.com>
4757
4758 * thread-db.c: Allow for defunct zombie threads.
4759 (attach_thread): Do not attempt to attach zombie thread.
4760 (thread_db_thread_alive): Return false for defunct zombie thread.
4761 (find_new_threads_callback): Don't add defunct zombie thread to list.
4762
4763 2001-05-22 Jim Blandy <jimb@redhat.com>
4764
4765 Add support for the GNU V3 C++ ABI.
4766 (Includes changes by Dan Berlin.)
4767
4768 * gnu-v3-abi.c: New file.
4769 * minsyms.c: #include "value.h" and "cp-abi.h".
4770 (install_minimal_symbols): Check the minimal symbol table for
4771 symbols that look mangled in the V3 style, and select the V3 ABI
4772 if we find any.
4773 * Makefile.in (SFILES): Add gnu-v3-abi.c.
4774 (COMMON_OBS): Add gnu-v3-abi.o.
4775 (gnu-v3-abi.o): Add new rule.
4776 (minsyms.o): Depend on $(cp_abi_h) and $(value_h).
4777
4778 2001-05-21 Jim Blandy <jimb@redhat.com>
4779
4780 * values.c (value_primitive_field): If we're extracting a base
4781 class, then the type of the result should be the base class being
4782 extracted, not the type of which it is a base class.
4783
4784 * value.h (struct value): Doc fix, and rearrange members to place
4785 them near their explanations.
4786
4787 2001-05-21 Michael Snyder <msnyder@redhat.com>
4788
4789 * remote.c (remote_async_wait): Added new variable fieldsize.
4790 Add fieldsize (return value of hex2bin) to string pointer p.
4791
4792 2001-05-20 Stephane Carrez <Stephane.Carrez@worldnet.fr>
4793
4794 * m68hc11-tdep.c (m68hc11_pop_frame): Fix stack pointer computation.
4795 (m68hc11_analyze_instruction): Update the pc correctly.
4796 (m68hc11_guess_from_prologue): Take into account the stack correction
4797 for the saving address.
4798
4799 2001-05-07 Daniel Berlin <dan@cgsoftware.com>
4800
4801 Changes by Jim Ingham:
4802
4803 * values.c (value_change_enclosing_type): New function. If the
4804 new enclosing type is larger than the old one, we need to allocate
4805 more space.
4806 * value.h: Add value_change_enclosing_type prototype.
4807 * valops.c (value_cast): Use it.
4808 (value_assign): Use it.
4809 (value_addr): Use it.
4810 (value_ind): Use it.
4811 (value_full_object): Use it.
4812
4813 2001-05-07 Daniel Berlin <dan@cgsoftware.com>
4814
4815 * values.c (value_static_field): Handle static fields that have a
4816 constant value.
4817
4818 2001-05-17 Michael Snyder <msnyder@redhat.com>
4819
4820 * blockframe.c (create_new_frame): Zero all the fields via memset,
4821 rather than zeroing them one by one.
4822
4823 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
4824
4825 * top.c (user_args): Remove unused declaration.
4826
4827 2001-05-16 Michael Snyder <msnyder@redhat.com>
4828
4829 * infcmd.c (do_registers_info): Move alloca outside of loop.
4830
4831 2001-05-15 John S Kallal <jskallal@home.com>
4832
4833 * remote.c (remote_wait): Added new variable fieldsize.
4834 Add fieldsize (return value of hex2bin) to string pointer p.
4835
4836 2001-05-15 Mark Kettenis <kettenis@gnu.org>
4837
4838 * sparc-tdep.c (sparc_gdbarch_init): Get the architecture from
4839 info.bfd_arch_info.
4840
4841 2001-05-14 Kevin Buettner <kevinb@redhat.com>
4842
4843 * lin-lwp.c (detach_callback, lin_lwp_wait, lin_lwp_pid_to_str):
4844 Adjust format strings for printing LWPs to account for the fact
4845 that the type returned by GET_LWP() is now a long instead of an
4846 int.
4847
4848 2001-05-14 Kevin Buettner <kevinb@redhat.com>
4849
4850 * inferior.h (null_ptid, minus_one_ptid): New variable declarations.
4851 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4852 (ptid_get_tid, ptid_equal): New function declarations.
4853 * infrun.c (null_ptid, minus_one_ptid): New variables.
4854 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4855 (ptid_get_tid, ptid_equal): New functions.
4856 (_initialize_infrun): Initialize null_ptid, minus_one_ptid,
4857 inferior_ptid, and target_last_wait_ptid.
4858
4859 * defs.h (ptid_t): Redefine to be a struct rather than an int.
4860 (pid_to_ptid, null_ptid, ptid_equal): Delete these macros.
4861 (PIDGET, TIDGET, MERGEPID): Redefine these macros using the
4862 new ptid accessors and constructor.
4863
4864 * config/i386/tm-i386v42mp.h (PIDGET, TIDGET, LIDGET, MERGEPID,
4865 MKLID, MKTID, ISTID): Provide new definitions for these macros.
4866 The old macros are retained, but disabled via #if 0 in order
4867 to aid in future restructuring. See FIXME.
4868
4869 * arm-linux-nat.c (PIDGET, TIDGET): Delete macro definitions.
4870 * i386-linux-nat.c (PIDGET, TIDGET): Likewise.
4871 * infptrace.c (PIDGET, TIDGET): Likewise.
4872 * lin-lwp.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
4873 * lin-thread.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
4874 * proc-service.c (MERGEPID): Likewise.
4875 * procfs.c (PIDGET, TIDGET, MERGEPID): Likewise.
4876 * thread-db.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
4877 * config/nm-linux.h (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
4878 * config/i386/tm-i386sol2.h (PIDGET0, PIDGET, TIDGET, MERGEPID):
4879 Likewise.
4880 * config/sparc/tm-sun4sol2.h (PIDGET0, PIDGET, TIDGET, MERGEPID):
4881 Likewise.
4882
4883 * lin-lwp.c (THREAD_FLAG): Delete macro definition.
4884 (GET_LWP): Redefine in terms of ptid_get_lwp().
4885 (GET_PID): Redefine in terms of ptid_get_pid().
4886 (is_lwp): Redefine without the need for THREAD_FLAG.
4887 (BUILD_LWP): Redefine in terms of ptid_build().
4888 * lin-thread.c (THREAD_FLAG): Delete macro definition.
4889 (GET_LWP): Redefine in terms of ptid_get_lwp().
4890 (GET_PID): Redefine in terms of ptid_get_pid().
4891 (GET_THREAD): Redefine in terms of ptid_get_tid().
4892 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
4893 (is_lwp, is_thread): Redefine.
4894 (linux_child_wait, check_all_signal_numbers)
4895 (linuxthreads_discard_global_state, attach_thread): Declare these
4896 functions to squash warnings about missing declarations.
4897 * sol-thread.c (THREAD_FLAG): Delete macro definition.
4898 (GET_PID): Redefine in terms of ptid_get_pid().
4899 (GET_LWP): Redefine in terms of ptid_get_lwp().
4900 (GET_THREAD): Redefine in terms of ptid_get_tid().
4901 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
4902 (is_lwp, is_thread): Redefine.
4903 * thread-db.c (THREAD_FLAG): Delete macro definition.
4904 (GET_PID): Redefine in terms of ptid_get_pid().
4905 (GET_LWP): Redefine in terms of ptid_get_lwp().
4906 (GET_THREAD): Redefine in terms of ptid_get_tid().
4907 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
4908 (is_lwp, is_thread): Redefine.
4909
4910 * corelow.c (add_to_thread_list, get_core_register_section):
4911 Eliminate hacks needed to prevent regressions when inferior_ptid
4912 wasn't wide enough to hold the core file thread id in the pid
4913 component of inferior_ptid.
4914
4915 2001-05-14 Michael Snyder <msnyder@redhat.com>
4916
4917 * remote.c (hex2bin): Make first argument const.
4918 Require explicit count, don't accept null-terminated str.
4919 (remote_resume, remote_async_resume): White space fix-up.
4920 (remote_write_bytes): Set nr_bytes to return value of bin2hex.
4921
4922 2001-05-13 Mark Kettenis <kettenis@gnu.org>
4923
4924 * symtab.c (lookup_symtab_1): Use lbasename (NAME) instead of
4925 basename (NAME). The FreeBSD basename returns a pointer to a
4926 static buffer, even if it's simply returning a string identical to
4927 its argument.
4928 (lookup_partial_symtab): Likewise.
4929
4930 2001-05-14 Michael Snyder <msnyder@redhat.com>
4931
4932 * solib.c, solib.h: Add comment for function no_shared_libraries.
4933
4934 2001-05-14 Kevin Buettner <kevinb@redhat.com>
4935
4936 * solib.h (no_shared_libraries): Make declaration match definition
4937 in solib.c.
4938
4939 2001-05-14 Andrew Cagney <ac131313@redhat.com>
4940
4941 * remote.c (remote_write_bytes): Set nr_bytes before returning it.
4942 * solib.h (no_shared_libraries): Declare.
4943
4944 2001-05-12 Andrew Cagney <ac131313@redhat.com>
4945
4946 * gdbarch.sh (struct gdbarch_info): Delete field bfd_architecture.
4947 (gdbarch_update_p): Rewrite logic filling in INFO struct. Use
4948 user specified values when available.
4949 * rs6000-tdep.c (rs6000_gdbarch_init): Update. Get the
4950 architecture from info.bfd_arch_info.
4951 * gdbarch.c, gdbarch.h: Regenerate.
4952
4953 2001-05-12 Fernando Nasser <fnasser@redhat.com>
4954
4955 * remote-e7000.c (e7000_open): Check for bad baud rate.
4956 * remote-st.c (st2000_open): Ditto.
4957
4958 2001-05-11 Jim Blandy <jimb@redhat.com>
4959
4960 * thread.c (do_captured_list_thread_ids): Use ui_out_tuple_begin
4961 and ui_out_tuple_end instead of ui_out_list_begin and
4962 ui_out_list_end.
4963
4964 * Makefile.in (gnu-v2-abi.o): Add $(demangle_h) to list of
4965 dependencies. Reorder dependencies to match #includes in file,
4966 for easier verification.
4967
4968 Fri May 11 13:32:50 2001 Andrew Cagney <cagney@b1.cygnus.com>
4969
4970 * breakpoint.c: Replace ui_out_list_begin, ui_out_list_end and
4971 make_cleanup_ui_out_list_end with ui_out_tuple_begin,
4972 ui_out_tuple_end and make_cleanup_ui_out_tuple_begin_end.
4973 * cli/cli-setshow.c: Ditto.
4974 * printcmd.c: Ditto.
4975 * stack.c: Ditto.
4976
4977 * ui-out.h (enum ui_out_type): Fix tipo - tupple -> tuple.
4978 * ui-out.c (ui_out_list_begin): Delete ``lstid'' parameter.
4979 (ui_out_tuple_begin): New function.
4980 (ui_out_tuple_end): New function.
4981 (ui_out_tuple_begin_end): New function.
4982 (make_cleanup_ui_out_list_begin_end): Replace
4983 make_cleanup_ui_out_list_end function.
4984 * ui-out.h (ui_out_list_begin): Update declaration.
4985 (make_cleanup_ui_out_list_begin_end): Replace
4986 make_cleanup_ui_out_list_end declaration.
4987 (ui_out_tuple_begin, ui_out_tuple_end): Declare.
4988 (ui_out_tuple_begin_end): Declare.
4989
4990 2001-05-11 Jim Blandy <jimb@redhat.com>
4991
4992 * gnu-v2-abi.c: Don't #include "gdb_regex.h". We don't use it.
4993
4994 2001-05-11 Andrew Cagney <ac131313@redhat.com>
4995
4996 From 2001-03-26 Rodney Brown <RodneyBrown@mynd.com>
4997 * config/pa/tm-hppa.h: Remove trigraph.
4998 * hp-symtab-read.c (hpread_type_translate): Provide return value.
4999 (hpread_read_struct_type): Remove trigraph. Add parameter in
5000 `warning'.
5001 (hpread_read_array_type): Provide return value.
5002 (hpread_type_lookup): Avoid ambiguous `else'. Provide return
5003 value.
5004 * hppa-tdep.c (initialize_hp_cxx_exception_support): Remove
5005 trigraph.
5006
5007 2001-05-11 Jim Blandy <jimb@redhat.com>
5008
5009 * mips-tdep.c (mips_store_return_value,
5010 mips_extract_return_value): Pass arguments to
5011 return_value_location in the proper order.
5012
5013 2001-05-11 Andrew Cagney <ac131313@redhat.com>
5014
5015 * Makefile.in (VERSION): Delete. Moved to file ``version.in''.
5016 (version.c): Depends on file ``version.in''. Extract version
5017 number from ``version.in'' file.
5018 (clean mostlyclean): Update.
5019 * version.in: New file.
5020 * NEWS: Update.
5021
5022 2001-05-11 Kevin Buettner <kevinb@redhat.com>
5023
5024 * breakpoint.c (set_raw_breakpoint): Add new parameter
5025 representing the breakpoint's type. Adjust all callers.
5026 (create_longjmp_breakpoint, create_temp_exception_breakpoint)
5027 (create_thread_event_breakpoint): Don't test for zero return
5028 value from set_raw_breakpoint(). It can never be zero.
5029 (create_exception_catchpoint, watch_command_1): Move logic
5030 which calculates the breakpoint type prior to the call to
5031 set_raw_breakpoint().
5032
5033 2001-05-11 Fernando Nasser <fnasser@redhat.com>
5034
5035 * ser-unix.c (rate_to_code): Issue warning if baud rate is invalid.
5036 (hardwire_setbaudrate): Set errno to EINVAL and return with error
5037 if the conversion of the baud rate to code fails.
5038
5039 2001-05-10 Andrew Cagney <ac131313@redhat.com>
5040
5041 * ui-out.h (make_cleanup_ui_out_begin_end): Declare.
5042 * ui-out.c (struct ui_out_end_cleanup_data): Define.
5043 (do_cleanup_end): New function. Replace do_list_end.
5044 (make_cleanup_ui_out_end): New function.
5045 (make_cleanup_ui_out_begin_end): New function.
5046 (make_cleanup_ui_out_list_end): Use make_cleanup_ui_out_end.
5047
5048 2001-05-10 Elena Zannoni <ezannoni@redhat.com>
5049
5050 * MAINTAINERS: Declare xcoffread.c open to all maintainers,
5051 and make Kevin Buettner (kevinb@redhat.com) the reference person.
5052
5053 2001-05-10 Elena Zannoni <ezannoni@redhat.com>
5054
5055 * proc-api.c (ioctl_with_trace): Fix uninitialized variable.
5056
5057 2001-05-10 Fernando Nasser <fnasser@redhat.com>
5058
5059 * MAINTAINERS: Add testsuite subdirectory co-maintainers.
5060
5061 Thu May 10 16:26:47 2001 Andrew Cagney <cagney@b1.cygnus.com>
5062
5063 * Makefile.in (mi-main.o): Compile with -Werror.
5064
5065 2001-05-10 Michael Snyder <msnyder@redhat.com>
5066
5067 * remote.c (remote_open_1): Call no_shared_libraries, so that
5068 symbols for shared libraries can be reloaded per session.
5069 (remote_async_open_1): Ditto.
5070 * remote.c (bin2hex, hex2bin): New functions. Factor out these
5071 two conversions which are coded for repeatedly in this module.
5072 (remote_threads_extra_info, remote_wait, remote_async_wait,
5073 store_register_using_P, remote_store_registers, remote_write_bytes,
5074 remote_read_bytes, remote_rcmd): Use bin2hex and hex2bin instead
5075 of coding the conversions inline.
5076 (fromhex): Not exported, change from extern to static.
5077
5078 2001-05-10 Andrew Cagney <ac131313@redhat.com>
5079
5080 * arch-utils.c (initialize_current_architecture): Delete obsolete
5081 ``info architecture'' command.
5082 (info_architecture): Delete function.
5083
5084 2001-05-10 Andrew Cagney <ac131313@redhat.com>
5085
5086 * TODO (5.1, 5.2): Update.
5087
5088 2001-05-09 Andrew Cagney <ac131313@redhat.com>
5089
5090 * MAINTAINERS: Jim Ingham is no longer maintaining Arm related
5091 stuff.
5092
5093 2001-05-10 Keith Seitz <keiths@cygnus.com>
5094
5095 * Makefile.in (SUBDIR_GDBTK_OBS): Add gdbtk-bp.o, gdbtk-register.o
5096 and gdbtk-stack.o.
5097 (SUBDIR_GDBTK_SRCS): Ditto for the sources.
5098 (gdbtk-bp.o): New rule.
5099 (gdbtk-register.o): New rule.
5100 (gdbtk-stack.o): New rule.
5101 (gdbtk-cmds.o): Update dependencies.
5102 (gdbtk.o): Ditto.
5103 (gdbtk-hooks.o): Ditto.
5104 (gdbtk-varobj.o): Ditto.
5105
5106 2001-05-10 Fernando Nasser <fnasser@redhat.com>
5107
5108 * varobj.c (c_number_of_children): Fix memory leak. Delete unwanted old
5109 variables, not just unregister them.
5110
5111 2001-05-10 Fernando Nasser <fnasser@redhat.com>
5112
5113 * varobj.c (c_number_of_children): Check for target type of void*,
5114 not the target type name. Allow dereferencing char*.
5115
5116 2001-05-10 Fernando Nasser <fnasser@redhat.com>
5117
5118 * symfile.c (symbol_file_add_main_1): New static function.
5119 Passes the flags arguments to symbol_file_add() and takes care
5120 of any necessary reinitializations.
5121 (symbol_file_command): Call symbol_file_add_main_1() instead of
5122 symbol_file_add().
5123 (symbol_file_add_main): Ditto.
5124
5125 2001-05-09 Kevin Buettner <kevinb@redhat.com>
5126
5127 * lin-lwp.c (lin_lwp_pid_to_str): Revert inadvertent format
5128 string change in 2001-05-03 changes.
5129 (lin_lwp_wait): Revert GET_LWP coercion introduced in 2001-05-03
5130 changes.
5131
5132 2001-05-09 Kevin Buettner <kevinb@redhat.com>
5133
5134 * lin-lwp.c (lin_lwp_attach): Use PIDGET() to fetch the pid
5135 component from inferior_ptid.
5136 (lin_lwp_detach): Use pid_to_ptid() to convert from a pid to a
5137 ptid.
5138
5139 2001-05-09 Elena Zannoni <ezannoni@redhat.com>
5140
5141 * sh3-rom.c (_initialize_sh3_rom): Get rid of specific _WINDOWS
5142 conditional for help with connections through parallel ports,
5143 given that the actual code for downloading through a parallel port
5144 is not conditionalized.
5145
5146 * sh-tdep.c: Remove WIN32_WCE conditional. The wince sh target is
5147 unmaintaned, and probably on its way to obsolescence.
5148
5149 2001-05-09 Mark Kettenis <kettenis@gnu.org>
5150
5151 * i386-tdep.c (i386_frame_saved_pc): New function.
5152 * config/i386/tm-i386.h (FRAME_SAVED_PC): Redefine in terms of
5153 i386_frame_saved_pc.
5154 (i386_frame_saved_pc): New prototype.
5155
5156 * i386-tdep.c (i386_register_virtual_type): New function.
5157 (i386_register_convertible): New function.
5158 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE): Redefine in terms
5159 of i386_register_virtual_type.
5160 (REGISTER_CONVERTIBLE): Redefine in terms of
5161 i386_register_convertible.
5162 (i386_register_virtual_type, i386_register_convertible): New
5163 prototypes.
5164
5165 2001-05-08 Jim Blandy <jimb@redhat.com>
5166
5167 * Makefile.in (mn10300-tdep.o): New rule.
5168
5169 * Makefile.in (gdb_string_h): Define. Use it throughout.
5170 Some rules were already using this, even though it isn't defined.
5171
5172 * Makefile.in (obstack_h, target_h): Define; these are already
5173 used elsewhere, but have been expanding to the empty string.
5174 (memattr_h): Define; needed by target_h.
5175
5176 * mn10300-tdep.c (mn10300_extract_return_value): Mark this as
5177 static. (This was accidentally omitted from the earlier patch.)
5178
5179 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): New function.
5180 (mn10300_gdbarch_init): Register it as the architecture's
5181 dwarf2_reg_to_regnum method.
5182
5183 Correct and expand handling of `movm' instruction, and register
5184 saves in general.
5185 * config/mn10300/tm-mn10300.h (D0_REGNUM, A0_REGNUM, MDRQ_REGNUM,
5186 MCRH_REGNUM, MCRL_REGNUM, MCVF_REGNUM): New definitions.
5187 (enum movm_register_bits): New enum.
5188 * mn10300-tdep.c (set_movm_offsets): Use symbolic names for the
5189 bits, not hex literals. Handle the `other', `exreg0', and
5190 `exother' bits. Correct handling of `exreg1': it saves r4, r5,
5191 r6, and r7, not r2, r3, r4, and r5.
5192 (saved_regs_size): New function.
5193 (mn10300_frame_chain, mn10300_frame_saved_pc): Use it, instead
5194 of computing the same thing inline, incorrectly.
5195
5196 * mn10300-tdep.c (mn10300_gdbarch_init): We do have a
5197 dummy_breakpoint_offset; it's zero.
5198
5199 * mn10300-tdep.c (mn10300_pop_frame): Split the mn10300-specific
5200 stuff out into mn10300_pop_frame_regular, and use
5201 generic_pop_current_frame. This lets us share code, and also
5202 makes this function's prototype match that expected by gdbarch.
5203 Make this function static.
5204 (mn10300_pop_frame_regular): New function.
5205 (mn10300_gdbarch_init): Register mn10300_pop_frame as the
5206 gdbarch's pop_frame method.
5207 * config/mn10300/tm-mn10300.h (POP_FRAME): Delete definition.
5208 (mn10300_pop_frame): Delete declaration.
5209
5210 * mn10300-tdep.c (mn10300_saved_pc_after_call,
5211 mn10300_extract_return_value,
5212 mn10300_extract_struct_value_address, mn10300_store_return_value,
5213 mn10300_use_struct_convention, mn10300_breakpoint_from_pc,
5214 mn10300_frame_chain, mn10300_skip_prologue,
5215 mn10300_push_arguments, mn10300_push_return_address,
5216 mn10300_store_struct_return, mn10300_frame_saved_pc,
5217 mn10300_init_extra_frame_info, mn10300_frame_init_saved_regs):
5218 Make these functions static; they should only be visible to the
5219 outside world as gdbarch methods.
5220
5221 * config/mn10300/tm-mn10300.h (mn10300_find_callers_reg): Delete
5222 unused declaration.
5223
5224 * mn10300-tdep.c (mn10300_gdbarch_init): Put the gdbarch methods
5225 in some rational order.
5226
5227 * mn10300-tdep.c (mn10300_gdbarch_init): Rather than using
5228 generic_pc_in_call_dummy, use pc_in_call_dummy_at_entry_point.
5229
5230 Use gdbarch for most target parameters for the MN10300, rather
5231 than the tm-*.h file.
5232 * config/mn10300/tm-mn10300.h (MAX_REGISTER_VIRTUAL_SIZE,
5233 REGISTER_BYTES, FP_REGNUM, BREAKPOINT_FROM_PC,
5234 FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK, INNER_THAN,
5235 SAVED_PC_AFTER_CALL, INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS,
5236 FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC,
5237 EXTRACT_RETURN_VALUE, EXTRACT_STRUCT_VALUE_ADDRESS,
5238 STORE_RETURN_VALUE, STORE_STRUCT_RETURN, SKIP_PROLOGUE,
5239 FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
5240 FRAME_NUM_ARGS, POP_FRAME, USE_GENERIC_DUMMY_FRAMES, CALL_DUMMY,
5241 CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
5242 CALL_DUMMY_LOCATION, FIX_CALL_DUMMY, CALL_DUMMY_ADDRESS,
5243 TARGET_READ_FP, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
5244 SAVE_DUMMY_FRAME_TOS, PUSH_ARGUMENTS, PC_IN_CALL_DUMMY,
5245 REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER):
5246 Delete definitions. We register gdbarch methods for these now.
5247 (struct frame_info, struct type, struct value): Delete forward
5248 declarations of these types; they're no longer necessary, since we
5249 don't have function declarations here any more.
5250 * mn10300-tdep.c: #include "arch-utils.h", to get declarations for
5251 some default gdbarch methods.
5252 (mn10300_store_struct_return): Return void, as expected by
5253 gdbarch.
5254 (mn10300_init_extra_frame_info): Take initial `fromleaf' argument,
5255 as expected by gdbarch.
5256 (mn10300_frame_init_saved_regs): Provide dummy definition for
5257 this, as required by gdbarch.
5258 (mn10300_gdbarch_init): Add mn10300_call_dummy_words, as expected
5259 by gdbarch. Register gdbarch methods or values for all the stuff
5260 removed from tm-10300.h, listed above.
5261
5262 2001-05-08 Andrew Cagney <ac131313@redhat.com>
5263
5264 * cli-out.c (cli_begin, cli_end): Replace cli_list_begin and
5265 cli_list_end.
5266 (cli_ui_out_impl): Update.
5267
5268 * ui-out.c (default_begin, default_end): Replace
5269 default_list_begin and default_list_end.
5270 (default_ui_out_impl): Update.
5271 (uo_begin, uo_end): Replace ou_list_begin and uo_list_end.
5272 (ui_out_begin, ui_out_end): Replace ui_out_list_begin and
5273 ui_out_list_end.
5274 (ui_out_list_begin, ui_out_list_end): New. Compatibility
5275 functions.
5276 (struct ui_out_level): Add field type.
5277 (push_level, pop_level): Update. Add type parameter.
5278
5279 * ui-out.h (enum ui_out_type): Declare.
5280 (ui_out_begin, ui_out_end): Declare.
5281 (ui_out_begin_ftype, ui_out_end_ftype): Replace list_begin_ftype
5282 and list_end_ftype.
5283 (struct ui_out_impl): Update.
5284
5285 2001-05-07 Andrew Cagney <ac131313@redhat.com>
5286
5287 * ui-out.h (list_begin_ftype, list_end_ftype): Rename argument
5288 ``list_flag'' to ``depth''.
5289 * ui-out.c (default_list_begin, default_list_end): Update.
5290 (uo_list_begin, uo_list_end): Update.
5291 (MAX_UI_OUT_LEVELS): Define.
5292 (struct ui_out_level): Define.
5293 (top-level): Include "gdb_assert.h".
5294 (struct ui_out): Add fields ``level'' and ``levels''. Delete
5295 fields ``list_flag'' and ``field_count''.
5296 (ui_out_new): Update.
5297 (verify_field_proper_position): Update.
5298 (current_level, push_level, pop_level): New functions.
5299 (ui_out_list_begin): Use push_level.
5300 (ui_out_list_end): Use pop_level.
5301 (ui_out_field_int): Use current_level.
5302 (ui_out_field_skip): Ditto.
5303 (ui_out_field_fmt): Ditto.
5304
5305 2001-05-08 Michael Snyder <msnyder@redhat.com>
5306
5307 * language.c (longest_local_hex_string_custom): Strlen test is
5308 inverted -- reverse the sense of the test.
5309
5310 2001-05-08 Mark Kettenis <kettenis@gnu.org>
5311
5312 * config/i386/tm-i386v.h (struct frame_info, struct
5313 frame_saved_regs): Remove declarations.
5314 (i386_frame_num_args): Remove prototype.
5315
5316 2001-05-07 Andrew Cagney <ac131313@redhat.com>
5317
5318 * MAINTAINERS: I'm no longer actively maintaining the mn10300
5319 target.
5320
5321 2001-05-04 Andrew Cagney <ac131313@redhat.com>
5322
5323 * main.c (captured_main): Delete #ifndef _WIN32 conditional for
5324 WinGDB.
5325
5326 2001-05-06 Kevin Buettner <kevinb@redhat.com>
5327
5328 * inferior.h (save_inferior_ptid): Declare.
5329 * infrun.c (save_inferior_ptid, restore_inferior_ptid): Define.
5330
5331 * hpux-thread.c (save_inferior_ptid, restore_inferior_ptid):
5332 Delete these functions.
5333 * lin-lwp.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
5334 * lin-thread.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
5335 * linux-thread.c (save_inferior_ptid, restore_inferior_ptid):
5336 Likewise.
5337 * proc-service.c (save_inferior_ptid, restore_inferior_ptid):
5338 Likewise.
5339 * sol-thread.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
5340 * thread-db.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
5341
5342 * somsolib.c (reset_inferior_ptid): Delete.
5343 (som_solib_remove_inferior_hook): Use save_inferior_ptid() to
5344 build the cleanup struct.
5345
5346 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
5347 a cleanup to save/restore inferior_ptid.
5348
5349 2001-05-06 Mark Kettenis <kettenis@gnu.org>
5350
5351 Implement attach/detach for multi-threaded programs on Linux.
5352 * thread-db.c (keep_thread_db): Adjust comment.
5353 (deactivate_target): Removed.
5354 (thread_db_new_objfile): Don't call deactivate_target. Implement
5355 guts of deactivate_target inline instead.
5356 (attach_thread): Call ATTACH_LWP unconditionally if defined.
5357 (thread_db_attach): New function.
5358 (thread_db_detach): Don't call deactivate_target. Do necessary
5359 cleanup inline instead. Set inferior_ptid to LWP corresponding to
5360 the current user-level thread.
5361 (thread_db_kill): Set inferior_ptid to LWP corresponding to the
5362 current user-level thread.
5363 (thread_db_create_inferior): Deactivate target vector if
5364 KEEP_THREAD_DB is zero.
5365 (thread_db_mourn_inferior): Don't call deactivate_target. Do
5366 necessary cleanup inline instead.
5367 (init_thread_db_ops): Initialize to_attach field to
5368 thread_db_attach.
5369 * lin-lwp.c (lin_lwp_mourn_inferior): Remove prototype.
5370 (stop_wait_callback): Add prototype.
5371 (init_lwp_list): Add comment about when to re-initialize the LWP
5372 list.
5373 (lin_lwp_attach_lwp): Only call ptrace for cloned processes.
5374 Avoid adding publicates to the LWP list. Only mark an LWP as
5375 signalled if it doesn't correspond to a cloned process.
5376 (lin_lwp_attach): Add initial process to the LWP list. Make sure
5377 it's stopped and fake a SIGSTOP.
5378 (detach_callback): New function.
5379 (lin_lwp_detach): Implement.
5380 (lin_lwp_create_inferior): Don't re-initialize LWP list here.
5381 Call child_ops.to_create_inferior directly instead of via
5382 target_beneath local.
5383 (lin_lwp_mourn_inferior): Call child_ops.to_mourn_inferior
5384 directly instead of via target_beneath local.
5385
5386 2001-05-06 Eli Zaretskii <eliz@is.elta.co.il>
5387
5388 * symtab.c (lookup_symtab_1, lookup_partial_symtab): Use basename
5389 instead of non-portable search for `/'. Use FILENAME_CMP instead
5390 of STREQ, to account for case-insensitive filesystems.
5391 (top-level): #include "filenames.h".
5392
5393 2001-05-05 Jim Blandy <jimb@redhat.com>
5394
5395 * breakpoint.c (check_duplicates): Use the breakpoint's type, not
5396 its address, to decide whether it's a watchpoint or not. Zero
5397 is a valid code address.
5398 (update_breakpoints_after_exec): Admonishing comments.
5399 * breakpoint.h (struct breakpoint): Doc fixes.
5400
5401 * breakpoint.c (check_duplicates): Take a breakpoint object as an
5402 argument, rather than an address and section. All callers changed.
5403
5404 2001-05-03 Kevin Buettner <kevinb@redhat.com>
5405
5406 * defs.h (ptid_t): New typedef.
5407 (pid_to_ptid, null_ptid, minus_one_ptid, ptid_equal): New macros.
5408
5409 * a68v-nat.c, alphabsd-nat.c, arch-utils.c, arm-linux-nat.c,
5410 blockframe.c, breakpoint.c, breakpoint.h,
5411 config/i386/nm-i386sol2.h, config/i386/tm-i386sco5.h,
5412 config/ia64/nm-linux.h, config/m68k/nm-hp300bsd.h,
5413 config/mips/nm-irix4.h, config/mips/nm-irix5.h,
5414 config/pa/nm-hppah.h, config/pa/tm-hppa.h,
5415 config/rs6000/nm-rs6000.h, config/sparc/nm-sun4sol2.h,
5416 corelow.c, cxux-nat.c, d10v-tdep.c, dink32-rom.c,
5417 dve3900-rom.c, fork-child.c, frame.c, gnu-nat.c, go32-nat.c,
5418 hp300ux-nat.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c,
5419 hpux-thread.c, i386-linux-nat.c, i386aix-nat.c, i386b-nat.c,
5420 i386bsd-nat.c, i386gnu-nat.c, i386mach-nat.c, i386nbsd-nat.c,
5421 infcmd.c, inferior.h, inflow.c, infptrace.c, infrun.c,
5422 inftarg.c, infttrace.c, lin-lwp.c, lin-thread.c,
5423 linux-thread.c, lynx-nat.c, m3-nat.c, m32r-rom.c,
5424 m68knbsd-nat.c, m88k-nat.c, mac-nat.c, mips-nat.c,
5425 mon960-rom.c, monitor.c, ns32knbsd-nat.c, ocd.c, ppc-bdm.c,
5426 ppcnbsd-nat.c, proc-service.c, procfs.c, ptx4-nat.c,
5427 regcache.c, remote-adapt.c, remote-array.c, remote-bug.c,
5428 remote-e7000.c, remote-es.c, remote-mips.c, remote-mm.c,
5429 remote-nindy.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
5430 remote-sds.c, remote-sim.c, remote-st.c, remote-udi.c,
5431 remote-vx.c, remote.c, rs6000-nat.c, sol-thread.c,
5432 solib-aix5.c, solib-svr4.c, somsolib.c, sparc-nat.c,
5433 standalone.c, sun3-nat.c, sun386-nat.c, symm-nat.c, target.c,
5434 target.h, thread-db.c, thread.c, top.c, ultra3-nat.c,
5435 uw-thread.c, v850ice.c, win32-nat.c, wince.c, xcoffsolib.c
5436 (inferior_pid): Rename to inferior_ptid everywhere - even in
5437 comments and obsolete ports. In cases where this variable
5438 really is supposed to be used as a process id, use PIDGET() to
5439 extract the process id component from inferior_ptid. The
5440 other cases, either involving other variables whose types had
5441 to be changed or functions whose signatures had to changed
5442 are listed separately below.
5443
5444 * arm-linux-nat.c (get_thread_id): Change type of argument
5445 representing a combined process/thread id from ``int'' to
5446 ``ptid_t''. Also change parameter name to ptid.
5447 * breakpoint.h, breakpoint.c (breakpoint_thread_match): Likewise.
5448 * corelow.c (core_file_thread_alive): Likewise.
5449 * d10v-tdep.c (d10v_read_pc, d10v_write_pc): Likewise.
5450 * defs.h (*target_wait_hook): Likewise.
5451 * gdbthread.h (thread_info, delete_thread, pid_to_thread_id)
5452 (find_thread_pid, save_infrun_state, load_infrun_state): Likewise.
5453 * gnu-nat.c (gnu_thread_alive, gnu_pid_to_str, gnu_wait)
5454 (gnu_resume): Likewise.
5455 * go32-nat.c (go32_wait, go32_resume): Likewise.
5456 * h8500-tdep.c (h8500_read_pc, h8500_write_pc): Likewise.
5457 * hppa-tdep.c (target_read_pc, target_write_pc): Likewise.
5458 * hppah-nat.c (child_pid_to_str, hppa_tid_to_str,
5459 (hppa_pid_or_tid_to_str, child_post_startup_inferior)
5460 (child_thread_alive): Likewise.
5461 * hpux-thread.c (hpux_thread_notice_signals, hpux_thread_alive)
5462 (hpux_pid_to_str, hpux_thread_wait, hpux_thread_resume): Likewise.
5463 * i386-linux-nat.c (child_resume): Likewise.
5464 * ia64-linux-nat.c (enable_watchpoints_in_psr, fetch_debug_register)
5465 (store_debug_register, fetch_debug_register_pair)
5466 (store_debug_register_pair, ia64_linux_insert_watchpoint)
5467 (ia64_linux_remove_watchpoint, ia64_linux_stopped_by_watchpoint):
5468 Likewise.
5469 * ia64-tdep.c (ia64_read_pc, ia64_write_pc): Likewise.
5470 * inferior.h (read_pc_pid, generic_target_read_pc, write_pc_pid)
5471 (generic_target_write_pc, ptrace_wait, child_resume)
5472 (get_last_target_status): Likewise.
5473 * infptrace.c (ptrace_wait, child_resume): Likewise.
5474 * inftarg.c (child_wait, child_post_wait, child_thread_live)
5475 (child_pid_to_str): Likewise.
5476 * infttrace.c (ptrace_wait, child_thread_alive, child_resume)
5477 (hppa_pid_or_tid_to_str, child_post_startup_inferior): Likewise.
5478 * lin-lwp.c (add_lwp, delete_lwp, find_lwp_pid, lin_lwp_attach_lwp)
5479 (lin_lwp_resume, lin_lwp_wait, lin_lwp_thread_alive)
5480 (lin_lwp_pid_to_str): Likewise.
5481 * lin-thread.c (thread_db_alive, thread_db_pid_to_str)
5482 (thread_db_resume, thread_db_wait): Likewise.
5483 * linux-thread.c (linuxthreads_thread_alive, linuxthreads_pid_to_str)
5484 (linuxthreads_resume, linuxthreads_wait): Likewise.
5485 * lynx-nat.c (child_wait, child_thread_alive, child_resume)
5486 (child_pid_to_str): Likewise.
5487 * m3-nat.c (mach_really_wait, m3_resume): Likewise.
5488 * mac-nat.c (child_wait, child_resume): Likewise.
5489 * mips-tdep.c (mips_read_pc): Likewise.
5490 * monitor.c (monitor_wait, monitor_resume): Likewise.
5491 * ocd.c, ocd.h (ocd_thread_alive, ocd_resume): Likewise.
5492 * ppc-bdm.c (bdm_ppc_wait): Likewise.
5493 * procfs.c (do_attach, procfs_wait, procfs_resume)
5494 (procfs_notice_signals, procfs_thread_alive, procfs_pid_to_str)
5495 (procfs_set_watchpoint, procfs_stopped_by_watchpoint)
5496 (procfs_find_LDT_entry): Likewise.
5497 * regcache.c (read_register_pid, read_signed_register_pid)
5498 (write_register_pid, generic_target_read_pc, read_pc_pid)
5499 (generic_target_write_pc, write_pc_pid): Likewise.
5500 * regcache.h (read_register_pid, read_signed_register_pid)
5501 (write_register_pid): Likewise.
5502 * remote-adapt.c (adapt_wait, adapt_resume): Likewise.
5503 * remote-array.c (array_wait, array_resume): Likewise.
5504 * remote-bug.c (bug_wait, bug_resume): Likewise.
5505 * remote-e7000.c (e7000_wait, e7000_resume): Likewise.
5506 * remote-eb.c (eb_wait, eb_resume): Likewise.
5507 * remote-es.c (es1800_wait, es1800_resume): Likewise.
5508 * remote-mips.c (mips_wait, mips_resume): Likewise.
5509 * remote-mm.c (mm_wait, mm_resume): Likewise.
5510 * remote-nindy.c (nindy_wait, nindy_resume): Likewise.
5511 * remote-os9k.c (rombug_wait, rombug_resume): Likewise.
5512 * remote-rdi.c (arm_rdi_wait, arm_rdi_resume): Likewise.
5513 * remote-rdp.c (remote_rdp_resume, remote_rdp_wait): Likewise.
5514 * remote-sds.c (sds_wait, sds_resume): Likewise.
5515 * remote-sim.c (gdbsim_wait, gdbsim_resume): Likewise.
5516 * remote-st.c (st2000_wait, st2000_resume): Likewise.
5517 * remote-udi.c (udi_wait, udi_resume): Likewise.
5518 * remote-vx.c (vx_wait, vx_resume): Likewise.
5519 * remote.c (remote_current_thread, remote_resume, remote_wait)
5520 (remote_async_resume, remote_async_wait, remote_cisco_wait)
5521 (remote_thread_alive): Likewise.
5522 * sol-thread.c (thread_to_lwp, lwp_to_thread, sol_thread_resume)
5523 (sol_thread_wait, sol_thread_notice_signals, sol_thread_alive)
5524 (solaris_pid_to_str): Likewise.
5525 * symm-nat.c (child_wait, child_resume): Likewise.
5526 * target.c (debug_to_resume, debug_to_wait, debug_to_post_wait)
5527 (debug_to_notice_signals, debug_to_thread_alive)
5528 (normal_target_post_startup_inferior, normal_pid_to_str)
5529 (debug_to_post_startup_inferior): Likewise.
5530 * target.h (to_resume, to_wait, to_post_wait)
5531 (to_post_startup_inferior, to_notice_signals, to_thread_alive)
5532 (to_pid_to_str [all in struct target_ops]): Likewise.
5533 (child_post_wait, child_thread_alive, normal_pid_to_str): Likewise.
5534 * thread-db.c (thread_from_lwp, lwp_from_thread, thread_db_wait)
5535 (attach_thread, detach_thread, thread_db_resume, check_event)
5536 (thread_db_post_startup_inferior, thread_db_thread_alive)
5537 (thread_db_pid_to_str): Likewise.
5538 * thread.c (add_thread, delete_thread, find_thread_pid)
5539 (pid_to_thread_id, in_thread_list, load_infrun_state)
5540 (save_infrun_state, switch_to_thread, restore_current_thread)
5541 (make_cleanup_restore_current_thread): Likewise.
5542 * top.c (target_wait_hook): Likewise.
5543 * uw-thread.c (dbgpid, thr_to_lwp, lwp_to_thr, add_thread_uw)
5544 (uw_thread_resume, libtrhead_stub, uw_thread_wait, uw_thread_alive)
5545 (uw_thread_pid_to_str): Likewise.
5546 * v850ice.c (v850ice_wait, v850ice_resume): Likewise.
5547 * win32-nat.c (child_wait, child_resume, win32_child_thread_alive)
5548 (cywin_pid_to_str): Likewise.
5549 * wince.c (child_wait, child_resume, win32_child_thread_alive):
5550 Likewise.
5551 * config/nm-linux.h (linuxthreads_pid_to_str): Likewise.
5552 * config/nm-lynx.h (child_wait, lynx_pid_to_str): Likewise.
5553 * config/alpha/nm-linux.h (lin_lwp_attach_lwp): Likewise.
5554 * config/arm/nm-linux.h (lin_lwp_attach_lwp): Likewise.
5555 * config/h8500/tm-h8500.h (h8500_read_pc, h8500_write_pc): Likewise.
5556 * config/i386/nm-i386sol2.h (procfs_stopped_by_watchpoint)
5557 (procfs_set_watchpoint): Likewise.
5558 * config/i386/nm-linux.h (lin_lwp_attach_lwp): Likewise.
5559 * config/i386/nm-ptx4.h (child_wait): Likewise.
5560 * config/i386/nm-symmetry.h (child_wait): Likewise.
5561 * config/i386/tm-cygwin.h (cygwin_pid_to_str): Likewise.
5562 * config/ia64/nm-linux.h (ia64_linux_stopped_by_watchpoint)
5563 (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
5564 (lin_lwp_attach_lwp): Likewise.
5565 * config/mips/nm-irix4.h, config/mips/nm-irix5.h
5566 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Likewise.
5567 * config/pa/nm-hppah.h (child_pid_to_str, hppa_tid_to_str)
5568 (hppa_pid_or_tid_to_str): Likewise.
5569 * config/pa/tm-hppa.h (target_read_pc, target_write_pc): Likewise.
5570 * config/powerpc/nm-linux.h (lin_lwp_attach_lwp): Likewise.
5571 * config/sparc/nm-sun4sol2.h (procfs_stopped_by_watchpoint)
5572 (procfs_set_watchpoint): Likewise.
5573
5574 * gdbthread.h (thread_id_to_pid): Change return type which
5575 represents a combined process/thread id from ``int'' to
5576 ``ptid_t''.
5577 * gnu-nat.c (gnu_wait): Likewise.
5578 * go32-nat.c (go32_wait): Likewise.
5579 * hpux-thread.c (hpux_thread_wait): Likewise.
5580 * inferior.h (procfs_first_available): Likewise.
5581 * inftarg.c (child_wait): Likewise.
5582 * infttrace.c (ptrace_wait): Likewise.
5583 * lin-lwp.c (lin_lwp_wait): Likewise.
5584 * lin-thread.c (thread_db_wait): Likewise.
5585 * linux-thread.c (linuxthreads_wait): Likewise.
5586 * lynx-nat.c (child_wait): Likewise.
5587 * m3-nat.c (mach_really_wait): Likewise.
5588 * mac-nat.c (child_wait): Likewise.
5589 * monitor.c (monitor_wait): Likewise.
5590 * ppc-bdm.c (bdm_ppc_wait): Likewise.
5591 * procfs.c (do_attach, procfs_wait, procfs_first_available): Likewise.
5592 * remote-adapt.c (adapt_wait): Likewise.
5593 * remote-array.c (array_wait): Likewise.
5594 * remote-bug.c (bug_wait): Likewise.
5595 * remote-e7000.c (e7000_wait): Likewise.
5596 * remote-eb.c (eb_wait): Likewise.
5597 * remote-es.c (es1800_wait): Likewise.
5598 * remote-mips.c (mips_wait): Likewise.
5599 * remote-mm.c (mm_wait): Likewise.
5600 * remote-nindy.c (nindy_wait): Likewise.
5601 * remote-os9k (rombug_wait): Likewise.
5602 * remote-rdi.c (arm_rdi_wait): Likewise.
5603 * remote-rdp.c (remote_rdp_wait): Likewise.
5604 * remote-sds.c (sds_wait): Likewise.
5605 * remote-sim.c (gdbsim_wait): Likewise.
5606 * remote-st.c (st2000_wait): Likewise.
5607 * remote-udi.c (udi_wait): Likewise.
5608 * remote-vx.c (vx_wait): Likewise.
5609 * remote.c (remote_wait, remote_async_wait, remote_current_thread)
5610 (remote_cisco_wait): Likewise.
5611 * sol-thread.c (thread_to_lwp, lwp_to_thread, sol_thread_wait):
5612 Likewise.
5613 * symm-nat.c (child_wait): Likewise.
5614 * target.c (debug_to_wait): Likewise.
5615 * target.h (to_wait [in struct target_ops]): Likewise.
5616 * thread.c (thread_id_to_pid): Likewise.
5617 * thread-db.c (thread_from_lwp, lwp_from_thread, thread_db_wait):
5618 Likewise.
5619 * top.c (*target_wait_hook): Likewise.
5620 * uw-thread.c (lwp_to_thr, uw_thread_wait): Likewise.
5621 * v850ice.c (v850ice_wait): Likewise.
5622 * win32-nat.c (child_wait): Likewise.
5623 * wince.c (child_wait): Likewise.
5624 * config/nm-lynx.h (child_wait): Likewise.
5625 * config/i386/nm-ptx4.h (child_wait): Likewise.
5626 * config/i386/nm-symmetry.h (child_wait): Likewise.
5627
5628 * arch-utils.c (generic_prepare_to_proceed): Rename wait_pid
5629 to wait_ptid and change its type from ``int'' to ``ptid_t''.
5630 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Likewise,
5631 but rename saved_inferior_pid to saved_inferior_ptid.
5632 * d10v-tdep.c (d10v_read_pc, d10_write_pc): Likewise, but rename
5633 save_pid to save_ptid.
5634 * gdbthread.h (struct thread_info): Likewise, but rename pid to ptid.
5635 * hppah-nat.c (child_pid_to_exec): Likewise, but rename
5636 saved_inferior_pid to saved_inferior_ptid.
5637 * hpux-thread.c (main_ptid): Likewise, but rename from main_pid.
5638 * infrun.c (previous_inferior_pid [static global]): Likewise,
5639 but rename to previous_inferior_ptid.
5640 (resume): Likewise, but rename resume_pid to resume_ptid.
5641 (struct execution_control_state): Likewise, but rename
5642 pid to ptid, saved_inferior_pid to saved_inferior_ptid,
5643 and waiton_pid to waiton_ptid.
5644 (target_last_wait_pid): Likewise, but rename to
5645 target_last_wait_ptid.
5646 * infttrace.c (saved_real_pid): Likewise, but rename to
5647 saved_real_ptid.
5648 (child_pid_to_exec_file): Likewise, but rename saved_inferior_pid
5649 to saved_inferior_ptid.
5650 * lin-lwp.c (struct lwp_info): Likewise, but rename pid to ptid.
5651 (trap_ptid): Likewise, but renamed from trap_pid.
5652 * lin-thread.c (handle_new_thread): Likewise, but rename gdb_pid
5653 to gdb_ptid.
5654 * linux-thread.c (detach_thread): Likewise, but rename pid to ptid.
5655 (thread_db_wait): Likewise, but rename ret_pid to retptid.
5656 * procfs.c (procfs_wait): Likewise, for retval whose name
5657 doesn't change. Also, ``temp'' becomes two separate variables,
5658 one named temp_tid (an int) and the other temp_ptid.
5659 (procfs_notice_thread): Likewise (type change) for gdb_threadid
5660 whose name does not change.
5661 * regcache.c (registers_ptid): Likewise, but renamed from
5662 registers_pid.
5663 (read_register_pid, read_signed_register_pid, write_register_pid):
5664 Likewise, but rename save_pid to save_ptid.
5665 (read_pc_pid, write_pc_pid): Likewise, but rename saved_inferior_pid
5666 to saved_inferior_ptid.
5667 * remote.c (remote_newthread_step): Likewise, but rename pid to ptid.
5668 * sol-thread.c (struct ps_prochandle): Likewise.
5669 (sol_thread_resume): Likewise, for save_pid which becomes save_ptid.
5670 (sol_thread_wait): Likewise, for rtnval whose name does not
5671 change, and for save_pid which becomes save_ptid.
5672 (solaris_pid_to_str): Likewise for lwp whose name does not change.
5673 (sol_find_new_threads_callback): Likewise, for pid which becomes
5674 ptid.
5675 * target.h (target_resume, target_wait, target_post_wait)
5676 (target_post_startup_inferior, target_notice_signals)
5677 (target_thread_alive): Likewise.
5678 * thread.c (info_threads_command): Likewise, but rename
5679 current_pid to current_ptid.
5680 (struct current_thread_cleanup): Likewise, but rename field
5681 inferior_pid to inferior_ptid.
5682 * thread-db.c (find_new_threads_callback): Likewise, but rename
5683 pid to ptid.
5684 * uw-thread.c (thr_to_lwp): Likewise for lid whose name does not
5685 change.
5686 (lwp_to_tr): Likewise fo tid whose name remains unchanged.
5687 (thr_infpid, lwp_infpid, notice_thread, libthread_stub): Likewise,
5688 but rename pid to ptid.
5689 * config/alpha/nm-linux.h (ATTACH_LWP): Likewise.
5690 * config/arm/nm-linux.h (ATTACH_LWP): Likewise.
5691 * config/i386/nm-linux.h (ATTACH_LWP): Likewise.
5692 * config/ia64/nm-linux.h (ATTACH_LWP): Likewise.
5693 * config/pa/nm-hppah.h (target_tid_to_str): Likewise.
5694 * config/powerpc/nm-linux.h (ATTACH_LWP): Likewise.
5695
5696 * arch-utils.c (generic_prepare_to_proceed): Test for the
5697 "zero" ptid by using ptid_equal() to test to see if variable
5698 in question is the same as null_ptid. This replaces a direct
5699 test against zero.
5700 * cxux-nat.c (add_shared_symbol_files): Likewise.
5701 * i386aix-nat.c, i386b-nat.c (i386_float_info): Likewise.
5702 * infcmd.c (run_command): Likewise.
5703 * inflow.c (kill_command): Likewise.
5704 * infttrace.c (call_ttrace): Likewise.
5705 * lin-lwp.c (lin_lwp_prepare_to_proceed): Likewise.
5706 * lin-thread.c (thread_db_kill): Likewise.
5707 * procfs.c (procfs_kill_inferior, procfs_mourn_inferior): Likewise.
5708 * remote-es.c (es1800_kill): Likewise.
5709 * sol-thread.c (sol_thread_create_inferior): Likewise.
5710 * solib.c (locate_base): Likewise.
5711 * target.c (nosupport_runtime): Likewise.
5712 * thread-db.c (thread_db_wait): Likewise.
5713 * top.c (quit_confirm, quit_force): Likewise.
5714 * uw-thread (lwp_infpid, uw_thread_resume): Likewise.
5715
5716 * infrun.c (handle_inferior_event, stop_stepping, normal_stop):
5717 Use ptid_equal to compare value of process/thread ids instead of
5718 ``=='' and ``!='' operators.
5719 lin-lwp.c (delete_lwp, lin_lwp_prepare_to_proceed)
5720 (stop_wait_callback, lin_lwp_wait): Likewise.
5721 * procfs.c (procfs_wait): Likewise.
5722 * regcache.c (read_register_bytes, read_register_gen)
5723 (write_register_gen, read_register, read_register_pid)
5724 (read_signed_register, read_signed_register_pid, write_register)
5725 (write_register_pid, supply_register): Likewise.
5726 * remote-vx.c (vx_resume): Likewise.
5727 * sol-thread.c (sol_thread_wait): Likewise.
5728 * symm-nat.c (kill_inferior): Likewise.
5729 * thread.c (delete_thread, find_thread_pid, pid_to_thread_id)
5730 (in_thread_list, info_threads_command, switch_to_thread)
5731 (restore_current_thread): Likewise.
5732 * uw-thread (libtread_stub): Likewise.
5733
5734 * arm-linux-nat.c (GET_THREAD_ID): Change PID to PTID.
5735
5736 * corelow.c (add_to_thread_list): Convert argument in add_thread()
5737 call to a ptid_t.
5738 * gnu-nat.c (inf_validate_procs): Likewise.
5739 * linux-thread.c (stop_thread, update_stop_threads): Likewise.
5740 * remote.c (record_currthread, remote_threads_info): Likewise.
5741 * win32-nat.c (child_add_thread): Likewise.
5742
5743 * hpux-thread.c (save_inferior_pid, restore_inferior_pid): Rename,
5744 respectively, to save_inferior_ptid() and restore_inferior_ptid().
5745 Adjust implementations to operate on ``ptid_t'' instead of ``int''.
5746 * lin-lwp.c (save_inferior_pid, restore_inferior_pid): Likewise.
5747 * lin-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
5748 * linux-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
5749 * proc-service.c (save_inferior_pid, restore_inferior_pid): Likewise.
5750 * sol-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
5751 * thread-db.c (save_inferior_pid, restore_inferior_pid): Likewise.
5752
5753 * infrun.c (RESUME_ALL): New macro representing the -1 ptid
5754 to be passed to target_resume() when all threads should resume.
5755 (resume): Set resume_ptid to RESUME_ALL rather than -1.
5756 (handle_inferior_event): Invoke target_resume() with RESUME_ALL
5757 instead of -1.
5758 * irix5-nat.c (solib_create_inferior_hook): Convert -1 to
5759 a ptid_t in target_resume() call.
5760 * osfsolib.c (solib_create_inferior_hook): Likewise.
5761 * solib-svr4.c (solib_create_inferior_hook): Likewise.
5762
5763 * lin-lwp.c (PIDGET, PIDGET0): Rename original PIDGET macro to
5764 PIDGET0. Define new PIDGET macro which uses PIDGET0, the only
5765 difference being that the 0xffff pattern will be interpreted
5766 as -1.
5767 * lin-thread.c (PIDGET, PIDGET0): Likewise.
5768 * thread-db.c (PIDGET, PIDGET0): Likewise.
5769 * config/nm-linux.h (PIDGET, PIDGET0): Likewise.
5770 * config/i386/tm-i386sol2.h (PIDGET, PIDGET0): Likewise.
5771 * config/i386/tm-i386v42mp.h (PIDGET, PIDGET0): Likewise.
5772 * config/sparc/tm-sun4sol2.h (PIDGET, PIDGET0): Likewise.
5773
5774 * m3-nat.c (init_m3_ops): Fix typo; initialize to_wait field to
5775 mach_really_wait rather than mach_really__wait.
5776 * lin-thread.c (check_for_thread_event): Fix warning; make function
5777 actually return a value.
5778
5779 * gdbarch.sh (TARGET_READ_PC, TARGET_WRITE_PC): Change type of
5780 ``pid'' arguments from ``int'' to ``ptid_t''. Also renamed
5781 pid to ptid.
5782 * gdbarch.h, gdbarch.c: Regenerated.
5783
5784 2001-05-03 Jonathan Larmour <jlarmour@redhat.com>
5785
5786 * rdi-share/devsw.c: Include <time.h> for struct tm
5787
5788 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
5789
5790 * config/djgpp/fnchange.lst: Add mappings for the new
5791 opcodes/openrisc-* files.
5792
5793 2001-05-01 Michael Snyder <msnyder@redhat.com>
5794
5795 * lin-lwp.c: Change printf to fprintf_unfiltered.
5796 * Makefile.in: Add rules for thread-db.o, lin-lwp.o, proc-service.o.
5797
5798 2001-05-01 Nicholas Duffek <nsd@redhat.com>
5799
5800 * config/rs6000/tm-rs6000.h (IN_SOLIB_RETURN_TRAMPOLINE): Define.
5801 (rs6000_in_solib_return_trampoline): Declare.
5802 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): New
5803 function.
5804 (rs6000_skip_trampoline_code): Skip bigtoc fixup code.
5805 * xcoffread.c (read_xcoff_symtab): Perform the ISFCN function
5806 check after the CSECT check rather than before it. Allocate
5807 separate symtabs for CSECTs whose names begin with '@'.
5808 (scan_xcoff_symtab): Don't ignore symbols beginning with '@'.
5809 Activate the misc_func_recorded mechanism for whose names begin
5810 with '@'.
5811
5812 2001-04-30 J.T. Conklin <jtc@redback.com>
5813
5814 * ppcnbsd-nat.c (fetch_inferior_registers)
5815 (store_inferior_registers, fetch_core_registers): Changed to use
5816 fpreg[] instead of r_regs[] to access floating point registers.
5817
5818 2001-04-30 Elena Zannoni <ezannoni@redhat.com>
5819
5820 * sh-tdep.c: Get rid of the function prototypes.
5821 (sh_sh4_build_float_register_type): Move earlier in file.
5822 (fv_reg_base_num): Ditto.
5823 (dr_reg_base_num): Ditto.
5824
5825 2001-04-30 Michael Snyder <msnyder@redhat.com>
5826
5827 * thread-db.c: Revert 2001-04-26 change for debugging output.
5828 * lin-lwp.c: Ditto.
5829 * lin-lwp.c: Add set/show debug lin-lwp command. Use this
5830 command to turn extra debugging output on / off.
5831
5832 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
5833
5834 * buildsym.c (start_subfile): Use FILENAME_CMP instead of STREQ.
5835 (top-level): #include filenames.h.
5836
5837 * dwarf2read.c (dwarf2_start_subfile): Use IS_ABSOLUTE_PATH and
5838 FILENAME_CMP, to DTRT on non-Posix platforms.
5839 (top-level): #include filenames.h.
5840
5841
5842 2001-04-27 Andrew Cagney <ac131313@redhat.com>
5843
5844 * gdbtypes.c (check_stub_method): Always initialize ``p''.
5845
5846 2001-04-27 Andrew Cagney <ac131313@redhat.com>
5847
5848 * configure.host: Delete romp host.
5849 * TODO: Update.
5850
5851 2001-04-27 Andrew Cagney <ac131313@redhat.com>
5852
5853 * TODO: Updates to 5.1. No more targets to obsolete.
5854
5855 2001-04-27 Don Howard <dhoward@redhat.com>
5856
5857 (Changes from Kevin Buettner, with minor update by Don Howard.)
5858
5859 * i387-nat.c (i387_supply_fxsave, i387_fill_fxsave, i387_tag): Fix
5860 typos in which hexadecimal constants were really intended to be
5861 binary constants.
5862 (i387_tag): Swap logic regarding zero vs non-zero exponents.
5863 * MAINTAINERS (Misc): Added myself to the write-after-approval
5864 list.
5865
5866 2001-04-26 Jim Blandy <jimb@redhat.com>
5867
5868 (Changes from Daniel Berlin, with revisions by Jim Blandy.)
5869
5870 Abstract out operations specific to particular C++ ABI's, and
5871 invoke them through a function table. This removes the C++ ABI
5872 dependencies scattered throughout the code, and allows us to
5873 cleanly add support for new C++ ABI's.
5874 * cp-abi.h, cp-abi.h, gnu-v2-abi.c, hpacc-abi.c: New files.
5875 * c-typeprint.c, c-valprint.c, dbxread.c, eval.c, gdbtypes.c,
5876 jv-typeprint.c, linespec.c, symtab.c, typeprint.c, valops.c:
5877 #include "cp-abi.h". These files all use functions now declared
5878 there.
5879 * symtab.h (OPNAME_PREFIX_P, VTBL_PREFIX_P, DESTRUCTOR_PREFIX_P):
5880 Deleted. These services are now provided by functions declared in
5881 cp-abi.h.
5882 * value.h (value_rtti_type, value_virtual_fn_field): Same.
5883 * values.c (value_virtual_fn_field): Same, for this definition.
5884 * valops.c (value_rtti_type): Same.
5885 * c-typeprint.c (c_type_print_base): Use the functions from
5886 "cp-abi.h", instead of the old macros, or hard-coded ABI-specific
5887 tests.
5888 * dbxread.c (record_minimal_symbol): Same.
5889 * gdbtypes.c (get_destructor_fn_field, virtual_base_index,
5890 virtual_base_index_skip_primaries): Same.
5891 * jv-typeprint.c (java_type_print_base): Same.
5892 * linespec.c (find_methods, decode_line_1): Same.
5893 * symtab.c (gdb_mangle_name): Same.
5894 * Makefile.in (SFILES): Add the new .c files mentioned above.
5895 (cp_abi_h): New variable.
5896 (COMMON_OBS): Add gnu-v2-abi.o, hpacc-abi.o, and cp-abi.o.
5897 (cp-abi.o, gnu-v2-abi.o, hpacc-abi.o): New targets.
5898 (c-typeprint.o, c-valprint.o, dbxread.o, eval.o, gdbtypes.o,
5899 jv-typeprint.o, symtab.o, linespec.o, typeprint.o, valops.o): Add
5900 dependency on $(cp_abi_h).
5901
5902 2001-04-26 Michael Snyder <msnyder@redhat.com>
5903
5904 * thread-db.c (_initialize_thread_db): Add set/show command
5905 "debug-linux-threads" for debugging output.
5906 * lin-lwp.c (various): Use global "debug_linux_threads to
5907 turn on extra debugging output.
5908 * lin-lwp.c: Minor cleanups in comments.
5909 * target.c (normal_pid_to_str): Get rid of an ancient hack.
5910 * remote.c (remote_pid_to_str): New function for remote target.
5911
5912 2001-04-24 Jim Blandy <jimb@redhat.com>
5913
5914 * c-typeprint.c (c_type_print_cv_qualifier): Don't print `const'
5915 qualifier on C++ references; all references are innately const.
5916
5917 2001-04-20 Mark Kettenis <kettenis@gnu.org>
5918
5919 * event-top.h: Fix formatting.
5920
5921 2001-04-17 Andrew Cagney <ac131313@redhat.com>
5922
5923 * source.c (openp): Obsolete #ifdef MPW code.
5924 (open_source_file): Ditto.
5925 * event-top.c (display_gdb_prompt): Ditto.
5926 * utils.c (query): Ditto.
5927 (init_page_info): Ditto.
5928 (init_page_info): Delete #ifndef MPW.
5929 * top.c (gdb_readline): Ditto.
5930 * mac-xdep.c: Obsolete.
5931 * mac-gdb.r: Obsolete.
5932 * config/powerpc/xm-mpw.h: Obsolete.
5933 * config/xm-mpw.h: Obsolete.
5934 * mpw-make.sed: Obsolete.
5935 * mpw-config.in: Obsolete.
5936 * TODO: Update
5937 * NEWS: Update
5938
5939 2001-04-19 Mark Kettenis <kettenis@gnu.org>
5940
5941 * i386-tdep.c (i386_frameless_function_invocation): New function.
5942 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION): Redefine
5943 in terms of i386_frameless_function_invocation. Adjust comment.
5944 (i386_frameless_function_invocation): New prototype.
5945
5946 2001-04-18 Martin M. Hunt <hunt@redhat.com>
5947
5948 * top.c (gdb_init): Don't call cli_out_new() to
5949 create global uiout if init_ui_hook is set. uiout will
5950 have to be initialized there.
5951
5952 2001-04-18 Andrew Cagney <ac131313@redhat.com>
5953
5954 * arch-utils.c: Include "regcache.h".
5955
5956 2001-04-18 Mark Kettenis <kettenis@gnu.org>
5957
5958 * i386-tdep.c (i386_saved_pc_after_call): New function.
5959 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Redefine in terms
5960 of i386_saved_pc_after_call.
5961 (i386_saved_pc_after_call): New prototype.
5962
5963 2001-04-17 Michael Snyder <msnyder@redhat.com>
5964
5965 * i386-nat.c: Fix typo in comment.
5966 * solib.c (no_shared_libraries): New function. Discard all symbols
5967 from shared libraries.
5968 (_initialize_solib): Add command "nosharedlibrary" as complement
5969 to the command "sharedlibrary". Unloads symbols for all solibs.
5970
5971 2001-04-16 Andrew Cagney <ac131313@redhat.com>
5972
5973 * configure.host (m68030-sony-*, m68*-isi-*, m68*-sony-*):
5974 * configure.tgt (m68*-rom68k-*, m68*-*bug-*, m68*-monitor-*)
5975 (m68*-est-*, m68*-sony-*, m68*-isi-*):
5976 * Makefile.in (xm-news1000.h, tm-news.h, xm-news.h): Obsolete..
5977 * config/m68k/xm-news.h: Obsolete.
5978 * config/m68k/tm-news.h:
5979 * config/m68k/xm-news1000.h: Obsolete.
5980 * config/m68k/news.mh: Obsolete.
5981 * config/m68k/news.mt: Obsolete.
5982 * config/m68k/nm-news.h: Obsolete.
5983 * config/m68k/news1000.mh: Obsolete.
5984 * news-xdep.c: Obsolete.
5985 * Makefile.in (isi-xdep.o): Obsolete.
5986 (ALLDEPFILES): Delete isi-xdep.c.
5987 (tm-isi.h): Obsolete.
5988 * m68k-tdep.c (altos_skip_prologue): Update comments.
5989 (isi_skip_prologue): Obsolete.
5990 * isi-xdep.c: Obsolete.
5991 * config/m68k/xm-isi.h: Obsolete.
5992 * config/m68k/isi.mh: Obsolete.
5993 * config/m68k/tm-isi.h: Obsolete.
5994 * config/m68k/isi.mt: Obsolete.
5995
5996 * TODO: Update.
5997 * NEWS: Update.
5998
5999 2001-04-17 Michael Snyder <msnyder@redhat.com>
6000
6001 * remote.c (remote_open_1): On opening the remote target, activate
6002 the solib_create_inferior_hook, so that it can detect when the
6003 target loads shared libraries.
6004 (remote_async_open_1): Ditto.
6005
6006 2001-04-17 Michael Snyder <msnyder@redhat.com>
6007
6008 * breakpoint.c (print_one_breakpoint): Handle 64-bit addresses.
6009 * tracepoint.c (tracepoints_info): Handle 64-bit addresses.
6010 * testsuite/gdb.trace/deltrace.exp: Allow for 64-bit addresses.
6011 * testsuite/gdb.trace/infotrace.exp: Ditto.
6012 * testsuite/gdb.trace/passcount.exp: Ditto.
6013 * testsuite/gdb.trace/while-stepping.exp: Ditto.
6014
6015 2001-04-17 Michael Snyder <msnyder@redhat.com>
6016
6017 * thread-db.c (check_thread_signals): When looping over all
6018 signals, ignore signal zero.
6019 (disable_thread_signals): Ditto.
6020
6021 2001-04-17 Eirik Fuller <eirik@netapp.com>
6022
6023 * thread.c (do_captured_thread_select): Allow the argument to the
6024 thread command to be an expression rather than a literal integer.
6025
6026 2001-04-17 Mark Kettenis <kettenis@gnu.org>
6027
6028 * i386-linux-tdep.c (i386_linux_saved_pc_after_call): Use
6029 read_memory_unsigned_integer instead of read_memory_integer.
6030
6031 2001-04-16 Kevin Buettner <kevinb@redhat.com>
6032
6033 * solib-aix5.c (map_index_vs_section_name_okay): New function.
6034 (aix5_relocate_main_executable): Don't use file offsets for
6035 determining corresponding sections and map file entries. Call
6036 map_index_vs_section_name_okay() to do this instead.
6037
6038 2001-04-16 Kevin Buettner <kevinb@redhat.com>
6039
6040 * procfs.c (open_with_retry): New function.
6041 (open_procinfo_files, load_syscalls, proc_iterate_over_mappings)
6042 (proc_get_LDT_entry): Call open_with_retry() instead of open().
6043
6044 2001-04-16 Kevin Buettner <kevinb@redhat.com>
6045
6046 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Adjust
6047 comparison against TRAP_HWBKPT constant yet again to account
6048 for the various values used by different kernel versions.
6049
6050 2001-04-16 Daniel Berlin <dan@cgsoftware.com>
6051
6052 * demangle.c (_initialize_demangler): Use xcalloc on the
6053 demangling_style_names, and make it a null terminated array of
6054 names, to avoid a crash.
6055
6056 2001-04-16 Mark Kettenis <kettenis@gnu.org>
6057
6058 * i386-tdep.c (i386_frame_chain): New function.
6059 * config/i386/tm-i386.h (FRAME_CHAIN): Redefine in terms of
6060 i386_frame_chain.
6061 (i386_frame_chain): New prototype.
6062
6063 2001-04-14 J.T. Conklin <jtc@redback.com>
6064
6065 * target.h (target_ops): Removed to_core_file_to_sym_file vector
6066 function.
6067 * corelow.c (core_ops): Updated for above change.
6068 * gnu-nat.c (core_ops): Likewise.
6069 * inftarg.c (child_ops): Likewise.
6070 * monitor.c (monitor_ops): Likewise.
6071 * ppc-bdm.c (bdm_ppc_ops): Likewise.
6072 * remote-adapt.c (adapt_ops): Likewise.
6073 * remote-bug.c (bug_ops): Likewise.
6074 * remote-e7000.c (e7000_ops): Likewise.
6075 * remote-eb.c (eb_ops): Likewise.
6076 * remote-es.c (es1800_ops, es1800_child_ops): Likewise.
6077 * remote-mm.c (mm_ops): Likewise.
6078 * remote-nindy.c (nindy_ops): Likewise.
6079 * remote-nrom.c (nrom_ops): Likewise.
6080 * remote-os9k.c (rombug_ops): Likewise.
6081 * remote-rdp.c (remote_rdp_ops): Likewise.
6082 * remote-sim.c (gdbsim_ops): Likewise.
6083 * remote-st.c (st2000_ops): Likewise.
6084 * v850ice.c (v850ice_ops): Likewise.
6085 * target.c (cleanup_target): Likewise
6086 (update_current_target): Likewise.
6087 (setup_target_debug): Likewise
6088 (debug_to_core_file_to_sym_file): Removed.
6089
6090 * corefile.c (core_file_command) [HPUXHPPA]: Removed code that
6091 sets symbol file from information obtained from the core file.
6092 * corelow.c (core_file_to_sym_file): Removed.
6093
6094 2001-04-13 Fernando Nasser <fnasser@redhat.com>
6095
6096 From Adam Mirowski <Adam.Mirowski@Sun.COM>
6097 Fixed Insight on Solaris. It was not possible to debug a process
6098 because of EINTR "errors".
6099 * procfs.c: (procfs_wait): if proc_wait_for_stop() fails
6100 with EINTR, retry the call.
6101
6102 2001-04-12 Kevin Buettner <kevinb@redhat.com>
6103
6104 * solib-aix5.c (enum maptype): Delete.
6105 (struct lm_info): Add new member ``nmappings''. Make ``mapping''
6106 member a pointer instead of a statically sized array.
6107 (build_so_list_from_mapfile): Dynamically allocate ``mapping''
6108 array.
6109 (aix5_relocate_main_executable, aix5_relocate_section_addresses,
6110 aix5_find_global_pointer): Search for correct mapping to use
6111 based on file offset instead of knowledge of whether the section
6112 is read-only or read/write.
6113 (aix5_find_gate_addresses): Use the first mapping instead of
6114 the (now defunct) MT_READONLY mapping.
6115
6116 2001-04-12 Nicholas Duffek <nsd@redhat.com>
6117
6118 * xcoffread.c (scan_xcoff_symtab): Ignore symbols beginning with
6119 "@".
6120
6121 2001-04-12 Kevin Buettner <kevinb@redhat.com>
6122
6123 * config/i386/fbsd.mh (NATDEPFILES): Add i386-nat.o.
6124
6125 2001-04-09 Andrew Cagney <ac131313@redhat.com>
6126
6127 Obsolete i[3456]86-*-sunos* (aka Sun386) host and target.
6128 * config/i386/sun386.mh: Obsolete.
6129 * config/i386/sun386.mt: Obsolete.
6130 * config/i386/xm-sun386.h: Obsolete.
6131 * config/i386/tm-sun386.h: Obsolete.
6132 * config/i386/nm-sun386.h: Obsolete.
6133 * Makefile.in (ALLDEPFILES): Delete sun386-nat.c.
6134 (sun386-nat.o): Target is obsolete.
6135 * sun386-nat.c: Obsolete.
6136 * configure.tgt (i[3456]86-*-sunos*): Obsolete.
6137 * configure.host (i[3456]86-*-sunos*): Obsolete.
6138 * NEWS: Update.
6139 * TODO: Update.
6140
6141 2001-04-10 J.T. Conklin <jtc@redback.com>
6142
6143 * maint.c: Fix typo in comment.
6144
6145 2001-04-09 Keith Seitz <keiths@cygnus.com>
6146
6147 * MAINTAINERS: Swap with Syd Polk as a gdbtk maintainer.
6148
6149 2001-04-08 Kevin Buettner <kevinb@redhat.com>
6150
6151 * fork-child.c (fork_inferior, clone_and_follow_inferior):
6152 Document fact that apparent call to vfork() might actually be
6153 a call to fork() instead.
6154 * ser-pipe.c (pipe_open): Likewise.
6155
6156 2001-04-08 Kevin Buettner <kevinb@redhat.com>
6157
6158 * printcmd.c (print_frame_args): Use a cleanup to invoke
6159 ui_out_list_end() so that the list count nesting flag will
6160 be decremented properly when an error occurs.
6161 * stack.c (print_frame): Likewise.
6162
6163 2001-04-06 J.T. Conklin <jtc@redback.com>
6164
6165 * dcache.c (dcache_write_line): Fixed bugs where cache line was
6166 not written to target correctly.
6167
6168 * gdbserver/low-hppabsd.c (read_inferior_memory): Add explicit
6169 void return value;
6170 * gdbserver/low-nbsd.c: Likewise.
6171 * gdbserver/low-sparc.c: Likewise.
6172 * gdbserver/low-sun3.c: Likewise.
6173
6174 2001-04-06 Geoffrey Keating <geoffk@redhat.com>
6175
6176 * config/rs6000/nm-rs6000.h (PTRACE_ATTACH): Don't define.
6177 (PTRACE_DETACH): Don't define.
6178
6179 2001-04-06 David Smith <dsmith@redhat.com>
6180
6181 * arch-utils.c (default_prepare_to_proceed)
6182 (generic_prepare_to_proceed): Added new functions.
6183 * arch-utils.h: New function declarations for
6184 default_prepare_to_proceed() and generic_prepare_to_proceed().
6185 * gdbarch.sh: Added PREPARE_TO_PROCEED.
6186 * gdbarch.c: Regenerated.
6187 * gdbarch.h: Regenerated.
6188 * inferior.h: Added get_last_target_status() declaration.
6189 * infrun.c (get_last_target_status): Added new function.
6190 (handle_inferior_event): Saves last pid and waitstatus, which will
6191 get returned by get_last_target_status().
6192
6193 * hppa-tdep.c (prepare_to_proceed): Added comment stating that
6194 prepare_to_proceed() is potentially redundant since
6195 default_prepare_to_proceed() has been added.
6196 * linux-thread.c (prepare_to_proceed): Ditto.
6197 * lin-lwp.c (prepare_to_proceed): Ditto.
6198 * m3-nat.c (prepare_to_proceed): Ditto.
6199
6200 2001-04-05 Andrew Cagney <ac131313@redhat.com>
6201
6202 Obsolete powerpcle-*-cygwin* and powerpcle-*-solaris* platforms
6203 and powerpc-*-netware* target.
6204 * configure.host (powerpcle-*-cygwin*, powerpcle-*-solaris*):
6205 Obsolete.
6206 * configure.tgt (powerpc-*-netware*, powerpcle-*-cygwin*)
6207 (powerpcle-*-solaris*): Obsolete.
6208 * config/powerpc/tm-cygwin.h: Obsolete.
6209 * config/powerpc/cygwin.mt: Obsolete.
6210 * config/powerpc/xm-cygwin.h: Obsolete.
6211 * config/powerpc/cygwin.mh: Obsolete.
6212 * config/powerpc/nm-solaris.h: Obsolete.
6213 * config/powerpc/xm-solaris.h: Obsolete.
6214 * config/powerpc/tm-solaris.h: Obsolete.
6215 * config/powerpc/solaris.mt: Obsolete.
6216 * config/powerpc/tm-ppc-nw.h: Obsolete.
6217 * config/powerpc/ppc-nw.mt: Obsolete.
6218 * TODO: Update.
6219 * NEWS: Update.
6220
6221 2001-04-06 Fernando Nasser <fnasser@redhat.com>
6222
6223 * buildsym.c (record_line): Turn off unused addr bits.
6224
6225 2001-04-06 Fernando Nasser <fnasser@redhat.com>
6226
6227 From David Deephanphongs <deephan@telocity.com>
6228 * inferior.h: Fix declarations of get_inferior_args and
6229 set_inferior_args, which were missing the trailing 's'.
6230
6231 2001-04-05 Jeff Holcomb <jeffh@redhat.com>
6232
6233 * monitor.c (monitor_supply_register): Only report an error if we
6234 don't get a valid value.
6235
6236 2001-04-05 Eli Zaretskii <eliz@is.elta.co.il>
6237
6238 * README: Don't mention gdba.el.
6239
6240 2001-04-05 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6241
6242 From Jimmy Guo <guo@cup.hp.com>
6243 * top.c (init_main): set prompt if annotation_level>1,
6244 this is necessary when annotation_level is set to 2 via
6245 --annotate=2 command line option.
6246
6247 2001-04-04 Andrew Cagney <ac131313@redhat.com>
6248
6249 Obsolete a29k-*-* host and a29k-*-sym1* and a29k-*-kern* targets.
6250 * configure.tgt (a29k-*-sym1*, a29k-*-kern*): Obsolete.
6251 * configure.host (a29k-*-*): Obsolete.
6252 * Makefile.in (ALLDEPFILES): Remove ultra3-nat.c and
6253 ultra3-xdep.c.
6254 (ultra3-nat.o, ultra3-xdep.o): Obsolete.
6255 * config/a29k/tm-ultra3.h: Obsolete.
6256 * config/a29k/ultra3.mt: Obsolete.
6257 * config/a29k/ultra3.mh: Obsolete.
6258 * config/a29k/nm-ultra3.h: Obsolete.
6259 * config/a29k/xm-ultra3.h: Obsolete.
6260 * ultra3-xdep.c: Obsolete.
6261 * ultra3-nat.c: Obsolete.
6262 * config/a29k/a29k-kern.mt: Obsolete.
6263 * NEWS: Update.
6264 * TODO: Update.
6265
6266 Wed Apr 4 21:48:42 2001 Christopher Faylor <cgf@cygnus.com>
6267
6268 * main.c: Remove windows.h use.
6269 (gdbtk_test): Use PATH_MAX for home var calculation.
6270 * remote-e7000.c (e7000_parse_device): Accomodate Cygwin as well as
6271 Win32 in colon test.
6272 * ser-tcp.c: Use modern __CYGWIN__ conditional.
6273 * source.c (mod_path): Add __CYGWIN__ conditional to WIN32 test.
6274 (openp): Ditto.
6275 * symfile.c (symfile_bfd_open): Ditto.
6276
6277 2001-04-04 Martin M. Hunt <hunt@redhat.com>
6278
6279 * main.c (captured_main): For GDBtk, don't use tui_fileopen().
6280 Handle all stream setup in gdbtk_init
6281
6282 2001-04-04 Mark Kettenis <kettenis@gnu.org>
6283
6284 * i386-tdep.c (i386_extract_return_value): Don't return the return
6285 value of a void function.
6286 (i386_store_return_value): Likewise.
6287
6288 2001-04-03 Andrew Cagney <ac131313@redhat.com>
6289
6290 Obsolete w65-*-* target.
6291 * configure.tgt (w65-*-*): Obsolete.
6292 * config/w65/w65.mt: Obsolete.
6293 * config/w65/tm-w65.h: Obsolete.
6294 * w65-tdep.c: Obsolete.
6295 * NEWS: Update. Fix TiC80 description.
6296 * TODO: Update.
6297
6298 2001-04-03 Andrew Cagney <ac131313@redhat.com>
6299
6300 Obsolete tic80-*-* target.
6301 * configure.tgt (tic80-*-*): Obsolete.
6302 * config/tic80/tic80.mt: Obsolete.
6303 * config/tic80/tm-tic80.h: Obsolete.
6304 * tic80-tdep.c: Obsolete.
6305 * TODO: Update
6306 * NEWS: Update.
6307
6308 2001-04-02 J.T. Conklin <jtc@redback.com>
6309
6310 * remote-mips.c (S_IROTH): Moved definition from here.
6311 * gdb_stat.h (S_IROTH): to here.
6312
6313 * remote.c (remote_protocol_e, remote_protocol_E): Define.
6314 (set_remote_protocol_e_packet_cmd)
6315 (set_remote_protocol_E_packet_cmd)
6316 (show_remote_protocol_e_packet_command)
6317 (show_remote_protocol_E_packet_command): New functions.
6318 (init_all_packet_configs): Initialize remote_protocol_e and
6319 remote_protocol_E.
6320 (remote_resume, remote_async_resume): Support e/E command
6321 packets.
6322 (show_remote_cmd): Show state of remote_protocol_e and
6323 remote_protocol_E.
6324 (_initialize_remote): Add "set remote step-over-range-packet"
6325 and "set remote step-over-range-w-signal-packet" to CLI.
6326
6327 2001-04-01 Andrew Cagney <ac131313@redhat.com>
6328
6329 Obsolete ns32k-*-mach3*, ns32k-umax-*, ns32k-utek-sysv* and
6330 ns32k-utek-*.
6331 * Makefile.in (ALLDEPFILES): Delete umax-xdep.c and ns32km3-nat.c.
6332 (umax-xdep.o, ns32km3-nat.o): Obsolete.
6333 * configure.tgt (ns32k-*-mach3*, ns32k-utek-sysv*, ns32k-utek-*):
6334 Obsolete.
6335 * configure.host (ns32k-*-mach3*, ns32k-umax-*, ns32k-utek-sysv*):
6336 Obsolete.
6337 * config/ns32k/merlin.mh: Obsolete.
6338 * config/ns32k/merlin.mt: Obsolete.
6339 * config/ns32k/xm-merlin.h: Obsolete.
6340 * config/ns32k/tm-merlin.h: Obsolete.
6341 * config/ns32k/nm-umax.h: Obsolete.
6342 * config/ns32k/umax.mh: Obsolete.
6343 * config/ns32k/umax.mt: Obsolete.
6344 * config/ns32k/xm-umax.h: Obsolete.
6345 * umax-xdep.c: Obsolete.
6346 * config/ns32k/ns32km3.mh: Obsolete.
6347 * config/ns32k/ns32km3.mt: Obsolete.
6348 * config/ns32k/tm-ns32km3.h: Obsolete.
6349 * config/ns32k/xm-ns32km3.h: Obsolete.
6350 * ns32km3-nat.c: Obsolete.
6351 * ns32k-tdep.c (merlin_skip_prologue): Obsolete.
6352 (merlin_frame_num_args): Ditto.
6353 * NEWS: Update.
6354 * TODO: Update.
6355
6356 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
6357
6358 * config/djgpp/fnchange.lst: Tweak due to
6359 expect/example/chesslib.c.
6360
6361 2001-04-02 Kevin Buettner <kevinb@redhat.com>
6362
6363 * m88k-tdep.c (examine_prologue): Change type of ``insn'' from
6364 unsigned int to unsigned long. Also, fix format string.
6365 (pop_frame): Fix PC_IN_CALL_DUMMY() call so that it doesn't
6366 use an undeclared variable. Also, delete declaration and
6367 initialization of ``fp'' because it is otherwise unused.
6368 * remote-bug.c (sleep): Delete declaration.
6369 (bug_store_register, bug_write_memory, bug_read_memory)
6370 (bug_insert_breakpoint, bug_remove_breakpoint): Fix sprintf()
6371 format statements and cast certain sprintf() arguments to
6372 eliminate warnings.
6373 (bug_load): Likewise for call to printf_filtered().
6374 * config/m88k/tm-m88k.h (FIX_CALL_DUMMY): Eliminate
6375 assignment to ``pc''. The necessary assignment is done in
6376 hand_function_call() after the invocation of FIX_CALL_DUMMY().
6377
6378 2001-03-20 Daniel Berlin <dberlin@redhat.com>
6379
6380 * symtab.c (completion_list_add_name): Remove duplicate string checks,
6381 readline already does this, and it's much faster at it, too.
6382
6383 2001-04-01 Eli Zaretskii <eliz@is.elta.co.il>
6384
6385 * go32-nat.c: Minor tweaks, to pacify the ari script.
6386
6387 2001-04-01 Mark Kettenis <kettenis@gnu.org>
6388
6389 * i386-tdep.c (i386_extract_struct_value_address): New function.
6390 * config/i386/tm-i386.h (EXTRACT_STRUCT_VALUE_ADDRESS): Redefine
6391 in terms of i386_extract_struct_value_address.
6392 (i386_extract_struct_value_address): New prototype.
6393
6394 * i386-linux-nat.c (i386_linux_dr_get): Change type of return
6395 value to `unsigned long'. Change type of `value' to `unsigned
6396 long'.
6397 (i386_linux_dr_set): Change type of second argument to `unsigned
6398 long'.
6399 (i386_linux_dr_set_control): Change type of first argument to
6400 `unsigned long'.
6401 (i386_linux_dr_get_status): Change type of return value to
6402 unsigned long.
6403 * config/i386/nm-linux.h (i386_linux_dr_set_control,
6404 i386_linux_dr_get_status): Adjust prototypes accordingly.
6405
6406 2001-03-31 Kevin Buettner <kevinb@redhat.com>
6407
6408 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Change
6409 TRAP_HWBKPT constant to match that in the kernel headers for
6410 Linux/IA-64.
6411
6412 2001-03-31 Mark Kettenis <kettenis@gnu.org>
6413
6414 * i386bsd-nat.c: Include "gdb_assert.h".
6415 [HAVE_PT_GETDBREGS] (DBREG_DRX): Define if not
6416 already defined.
6417 [HAVE_PT_GETDBREGS] (i386bsd_dr_set, i386bsd_dr_set_control,
6418 i386bsd_dr_set_addr, i386bsd_dr_reset_addr,
6419 i386bsd_dr_get_status): New functions.
6420 * config/i386/nm-fbsd.h [HAVE_PT_GETDBREGS]
6421 (I386_USE_GENERIC_WATCHPOINTS): Define.
6422 Include "i386/nm-i386.h".
6423 (I386_DR_LOW_SET_CONTROL, I386_DR_LOW_SET_ADDR,
6424 I386_DR_LOW_RESET_ADDR, I386_DR_LOW_GET_STATUS): New macros.
6425 (i386bsd_dr_set_control, i386bsd_dr_set_addr,
6426 i386bsd_dr_reset_addr, i386bsd_dr_get_status): New prototypes.
6427 * acconfig.h (HAVE_PT_GETDBREGS): New configure macro.
6428 * configure.in: Cleanup a few comments. Check for PT_GETDBREGS
6429 ptrace request.
6430 * config.in, configure: Regenerate.
6431
6432 * i386-nat.c (i386_insert_aligned_watchpoint): Set address
6433 register before enabling it by setting the control register.
6434 (i386_remove_aligned_watchpoint): Reset address register after
6435 disabling it by setting the control register.
6436
6437 * i386-tdep.c (i386_extract_return_value): If the type of the
6438 return value is TYPE_STRUCT and the number of fields is one, call
6439 ourselves with TYPE set tp the type of the first field.
6440 (i386_store_return_value): Likewise.
6441 This fixes a problem with returning structs consisting of a single
6442 `float' or `double' on *BSD.
6443
6444 2001-03-30 Mark Kettenis <kettenis@gnu.org>
6445
6446 * lin-lwp.c (lin_lwp_resume): Don't mark LWP as not stopped until
6447 we're absolutely sure we're going to resume it.
6448
6449 * thread-db.c (check_event): Don't report an error if we encounter
6450 a thread creation event for a thread that's already in the thread
6451 list, since that may legitemately happen. Instead only call
6452 attach_thread if it's not already in the thread list.
6453
6454 2001-03-28 Andrew Cagney <ac131313@redhat.com>
6455
6456 * config/pa/xm-hppah.h (malloc): Really delete declaration
6457 (MALLOC_INCOMPATIBLE): Really delete macro.
6458 * cli/cli-cmds.c (apropos_command): Use xcalloc.
6459
6460 2001-03-28 Andrew Cagney <ac131313@redhat.com>
6461
6462 * configure.in (build_warnings): Add -Wuninitialized.
6463 * configure: Regenerate.
6464
6465 * v850-tdep.c (v850_scan_prologue): Initialize ``insn2''.
6466 * sparc-tdep.c (sparc64_push_arguments): Add default case to
6467 switch.
6468 * sh-tdep.c (sh_do_fp_register): Replace ``?:'' printf format
6469 expression with if statement.
6470 * mn10200-tdep.c (mn10200_analyze_prologue): Initialize
6471 ``stack_size''.
6472 * mips-tdep.c (show_mipsfpu_command): Add default case to switch.
6473 (mips_dump_tdep): Fix setting of ef_mips_arch.
6474 * mcore-tdep.c (mcore_analyze_prologue): Initialize ``fp_regnum''.
6475 * dsrec.c (make_srec): Always initialize ``binbuf''.
6476 * monitor.c (monitor_read_memory_single): Do not pass an
6477 uninitialized buffer to monitor_error. Make ``i'' more local.
6478
6479 2001-03-28 Andrew Cagney <ac131313@redhat.com>
6480
6481 * MAINTAINERS: Change ns32k target to ,-Werror.
6482
6483 * ns32k-tdep.c: Include "gdbcore.h"
6484 (flip_bytes): Change first argument to void*. Add forward
6485 declaration.
6486 (sign_extend): Add declaration.
6487 (merlin_frame_num_args): Add final else clause to if-else chain.
6488 (umax_frame_num_args): Ditto.
6489 * config/ns32k/tm-umax.h (ns32k_localcount): Declare.
6490 (flip_bytes): Ditto.
6491
6492 2001-03-28 Mark Kettenis <kettenis@gnu.org>
6493
6494 * i386-linux-tdep.c (FRAMELESS_SIGNAL): Moved here from
6495 config/i386/nm-linux.h (including comment).
6496 (i386_linux_frame_chain): New function implementing guts of the
6497 former FRAME_CHAIN macro, but using read_memory_unsigned_integer
6498 instead of read_memory_integer.
6499 (i386_linux_frame_saved_pc): Removed doc pointing to
6500 i386/tm-linux.h for an explanation of FRAMELESS_SIGNAL since that
6501 now lives in this file.
6502 * config/i386/tm-linux.h (FRAMELESS_SIGNAL): Moved to
6503 i386-linux-tdep.c (including comment).
6504 (FRAME_CHAIN): Redefined in terms of i386_linux_frame_chain.
6505 (i386_linux_frame_chain): New prototype.
6506
6507 * gdbserver/low-linux.c [I386_GNULINUX_TARGET]: Cleanup code and
6508 make it work again.
6509 (NUM_FREGS): Redefine to 0.
6510 (NUM_REGS): Redefine as NUM_GREGS.
6511 (i386_register_byte, i386_register_raw_size): Update from
6512 i386-tdep.c. Add comment about their origin.
6513 (regmap, register_u_addr): Take these from i386-linux-nat.c.
6514 (i386_register_u_addr): Removed.
6515
6516 * i386-linux-nat.c (i386_linux_dr_get): Return 0 if ptrace call
6517 fails instead of calling perror_with_name. This should fix
6518 debugging remote i386 targets with a native Linux/x86 GDB. Add
6519 FIXME for this hack.
6520
6521 2001-03-19 J.T. Conklin <jtc@redback.com>
6522
6523 * arch-utils.c (#include "gdbthread.h"): Removed.
6524 (#include "symfile.h"): Removed.
6525 (XMALLOC): Removed unused macro.
6526 * breakpoint.c (tbreak_command): Removed local declaration.
6527 (awatch_command, do_enable_breakpoint, set_breakpoint_count):
6528 Remove duplicate declarations.
6529 (bpstat_should_step, bpstat_have_active_hw_watchpoints)
6530 (remove_solib_event_breakpoints): Fix indentation botch.
6531 * c-typeprint.c (#include "command.h"): Removed.
6532 (#include "gdbcmd.h"): Removed.
6533 * ch-exp.c (ch_terminal_match_float_literal, parse_expr)
6534 (parse_primval, parse_untyped_expr, parse_opt_untyped_expr):
6535 Removed duplicate declarations.
6536 * ch-typeprint.c (#include "command.h"): Removed.
6537 (#include "gdbcmd.h"): Removed.
6538 * corefile.c (#include "frame.h"): Removed
6539 (#include "symfile.h"): Removed.
6540 (#include "language.h"): Removed.
6541 * dbxread.c (#include "command.h"): Removed.
6542 * environ.c (#include "gdbcore.h"): Removed.
6543 * event-loop.c (#include "top.h"): Removed.
6544 * f-typeprint.c (#include "command.h"): Removed.
6545 (#include "gdbcmd.h"): Removed.
6546 (#include "language.h"): Removed.
6547 (#include "typeprint.h"): Removed.
6548 (#include "frame.h"): Removed.
6549 * gdbtypes.h (print_type_scalar): Removed declaration.
6550 * infcmd.c (#include "completer.h"): Removed.
6551 * language.c (#include "frame.h"): Removed.
6552 * m2-typeprint.c (#include "command.h"): Removed.
6553 (#include "gdbcmd.h"): Removed.
6554 (#include "language.h"): Removed.
6555 * m2-valprint.c (#include "valprint.h"): Removed.
6556 * p-typeprint.c (#include "command.h"): Removed.
6557 (#include "gdbcmd.h"): Removed.
6558 * p-valprint.c (#include "typeprint.h"): Removed.
6559 * parse.c (#include "linespec.h"): Removed.
6560 * regcache.c (#include "frame.h"): Removed.
6561 * remote.c (#include "frame.h"): Removed.
6562 (getpkt_sane): Make static.
6563 * source.c (#include "completer.h"): Removed.
6564 * stack.c (#include "symfile.h"): Removed.
6565 (#include "objfiles.h"): Removed.
6566 * symfile.c (#include "completer.h"): Removed.
6567 * tracepoint.c (#include "completer.h"): Removed.
6568 * values.c (#include "frame.h"): Removed.
6569 * varobj.c (#include "valprint.h"): Removed.
6570 * wrapper.c (#include "frame.h"): Removed.
6571
6572 * memattr.c (create_mem_region): Removed unused variable.
6573 * remote-nrom.c: Removed spurious semicolon after init_nrom_ops.
6574
6575 2001-03-27 Nick Clifton <nickc@redhat.com>
6576
6577 * remote-rdp.c (rdp_set_command_line): Add missing double quote.
6578
6579 2001-03-27 Kevin Buettner <kevinb@redhat.com>
6580
6581 * solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
6582 of free().
6583
6584 2001-03-27 Eli Zaretskii <eliz@is.elta.co.il>
6585
6586 * TODO (Cleanups): Remove the item about converting docs to GFDL.
6587
6588 2001-03-26 Kevin Buettner <kevinb@redhat.com>
6589
6590 * ia64-tdep.c (slotN_contents, replace_slotN_contents): Change
6591 type of ``bundle'' from unsigned char * to char *.
6592 (ia64_get_saved_register): Use alloca() to allocate register
6593 buffers.
6594
6595 * solib-aix5.c (build_so_lib_from_mapfile): Fix xasprintf() usage.
6596
6597 2001-03-26 Kevin Buettner <kevinb@redhat.com>
6598
6599 * proc-utils.h (procfs_ctl_t): New typedef.
6600 * proc-api.c (write_with_trace): Change type of ``opcode'' from
6601 long to procfs_ctl_t. Don't assume that the target has defined
6602 BREAKPOINT. Handle case in which PCRESET is the same as PCUNSET.
6603 * proc-events.c (sys/syscall.h, sys/fault.h): Include conditionally.
6604 * procfs.c (sys/fault.h, sys/syscall.h): Include conditionally.
6605 (gdb_sigset_t, gdb_sigaction_t, gdb_siginfo_t, gdb_premptysysset)
6606 (gdb_praddsysset, gdb_prdelsysset, gdb_pr_issyssetmember):
6607 Conditionally define as appropriate for AIX/non-AIX systems. Use
6608 these defines/typedefs as appropriate elsewhere in file.
6609 (struct procinfo): Change type of saved_sigset and saved_sighold
6610 from sigset_t to gdb_sigset_t. Make saved_exitset and
6611 saved_entryset pointer variables. Add two new fields, num_syscalls
6612 and syscall_names.
6613 (DYNAMIC_SYSCALLS): Define when HAVE_PRSYSENT_T is defined.
6614 (sysset_t_size, sysset_t_alloc): New functions.
6615 (load_syscalls, free_syscalls, find_syscall): New functions for
6616 platforms which define DYNAMIC_SYSCALLS.
6617 (create_procinfo): Call load_syscalls.
6618 (destroy_one_procinfo): Call free_syscalls.
6619 (GDBRESET): Don't define twice.
6620 (proc_modify_flag): Change type of operation code array `arg'
6621 from long to procfs_ctl_t.
6622 (proc_stop_process, proc_wait_for_stop, proc_run_process)
6623 (proc_set_traced_signals, proc_set_traced_faults)
6624 (proc_set_traced_sysentry, proc_set_traced_sysexit)
6625 (proc_set_held_signals, proc_clear_current_fault)
6626 (proc_set_current_signal, proc_clear_current_signal, proc_set_gregs)
6627 (proc_set_fpregs, proc_kill, proc_set_watchpoint): Likewise for `cmd'.
6628 (proc_set_traced_sysentry): Dynamically allocate variable sized
6629 struct gdb_proc_ctl_pcsentry. Also, free it at function exit.
6630 (proc_set_traced_sysexit): Dynamically allocate variable
6631 sized struct gdb_proc_ctl_pcsexit. Also, free it at
6632 function exit.
6633 (proc_get_traced_sysentry, proc_get_traced_sysexit): Add new code
6634 for reading the sysset_t struct on AIX5.
6635 (procfs_debug_inferior): Don't assume that SYS_exit will be
6636 defined. Add new code for finding certain syscalls on AIX5.
6637 (syscall_is_lwp_exit, syscall_is_exit, syscall_is_exec)
6638 (syscall_is_lwp_create): New functions.
6639 (procfs_wait): Restructured code which checks for certain
6640 system calls to use the new syscall_is_... functions.
6641 (procfs_notice_signals): Account for the fact that saved_entryset
6642 and saved_exitset in struct procinfo are now pointers.
6643
6644 2001-03-26 Kevin Buettner <kevinb@redhat.com>
6645
6646 * symtab.c (find_pc_sect_line): Revise method used for finding
6647 the ending pc.
6648
6649 2001-03-26 Mark Kettenis <kettenis@gnu.org>
6650
6651 * i386-linux-tdep.c (i386_linux_sigtramp_saved_pc,
6652 i386_linux_sigtramp_saved_sp): Make static.
6653 (i386_linux_frame_saved_pc): New function based on the old
6654 FRAME_SAVED_PC macro, but use read_memory_unsigned_integer instead
6655 of read_memory_integer.
6656 * config/i386/tm-linux.h (sigtramp_saved_pc): Remove definition.
6657 (i386_linux_sigtramp_saved_pc): Remove prototype.
6658 (FRAME_SAVED_PC): Redefine in terms of i386_linux_frame_saved_pc.
6659 (i386_linux_frame_saved_pc): New prototype.
6660
6661 2001-03-26 Andrew Cagney <ac131313@redhat.com>
6662
6663 * MAINTAINERS: Document m88k as a ``Known problem in 5.1''.
6664 * TODO (GDB 5.1 - Cleanups): Update.
6665
6666 2001-03-26 Andrew Cagney <ac131313@redhat.com>
6667
6668 * fork-child.c (clone_and_follow_inferior): Delete #ifdef
6669 HAVE_VFORK.
6670
6671 2001-03-26 Mark Kettenis <kettenis@gnu.org>
6672
6673 * config/i386/tm-symmetry.h (PUSH_ARGUMENTS): #undef.
6674
6675 * i386-tdep.c (i386_push_arguments, i386_store_struct_return): New
6676 functions.
6677 * config/i386/tm-i386.h (PUSH_ARGUMENTS): New macro.
6678 (STORE_STRUCT_RETURN): Redefine in terms of
6679 i386_store_struct_return.
6680 (i386_push_arguments, i386_store_struct_return): New prototypes.
6681 * config/i386/tm-i386v.h (STORE_STRUCT_RETURN): Remove. It's
6682 definition was identical to the definition in "i386/tm-i386.h" so
6683 the new definition should suffice too.
6684
6685 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
6686
6687 * event-loop.c (toplevel) [!HAVE_POLL] [NO_FD_SET]: Remove unused
6688 definitions for SELECT, NBBY, FD_SETSIZE, NFDBITS, and MASK_SIZE.
6689
6690 * config/djgpp/djconfig.sh: Add copyright notice.
6691
6692 * ser-go32.c (rawclock): Remove prototype; include time.h instead.
6693 (ISR, dos_hookirq, isr_t): Convert K&R definition to ANSI C.
6694 (top level) <string.h>: Include gdb_string.h instead.
6695 (dos_noop, dos_raw, dos_noflush_set_tty_state)
6696 (dos_print_tty_state, dos_info): Remove ATTRIBUTE_UNUSED.
6697
6698 * go32-nat.c (go32_create_inferior): Move the declaration of
6699 `environ' to here from the top level.
6700 (top level) <_initialize_go32_nat>: Remove redundant prototype.
6701 <gdb_string.h>: Include it instead of string.h.
6702 (store_register): Call register_buffer instead of accessing
6703 registers[] directly.
6704 (redir_cmdline_delete, redir_cmdline_parse, redir_to_debugger)
6705 (redir_to_debugger, redir_debug_init) [__DJGPP_MINOR__ < 3]: Put
6706 the function names at the start of the line.
6707 (go32_set_dr): Throw internal_error if the argument is not a valid
6708 debug register number.
6709 (go32_open, go32_close, go32_attach, go32_detach, go32_resume)
6710 (go32_wait, go32_xfer_memory, go32_files_info)
6711 (go32_terminal_info): Remove ATTRIBUTE_UNUSED.
6712
6713 2001-03-25 Jim Blandy <jimb@redhat.com>
6714
6715 * mips-tdep.c (mips_gdbarch_init): Tweak indentation.
6716
6717 2001-03-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6718
6719 From Andrew Cagney <ac131313@redhat.com>
6720
6721 * coffread.c: Include "gdb_assert.h".
6722 (coff_symtab_read): Cast the integer s_sclass to a long before
6723 casting it to a pointer.
6724
6725 2001-03-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6726
6727 From Andrew Cagney <ac131313@redhat.com>
6728
6729 * coffread.c (coff_symtab_read): Initialize
6730 ``fcn_first_line_addr''. Check that the ``.bf'' always preceeds
6731 the ``.ef'' info.
6732 * dbxread.c (find_text_range): Initialize ``start'' and ``end''.
6733
6734 2001-03-23 Andrew Cagney <ac131313@redhat.com>
6735
6736 * config/sparc/tm-sp64.h (GDB_MULTI_ARCH): Down grade to
6737 GDB_MULTI_ARCH_PARTIAL from two. SOFTWARE_SINGLE_STEP is not
6738 multi-arch.
6739
6740 * gdbarch.sh (SOFTWARE_SINGLE_STEP): Add.
6741 * gdbarch.h, gdbarch.c: Re-generate.
6742
6743 * target.h (SOFTWARE_SINGLE_STEP_P)
6744 (SOFTWARE_SINGLE_STEP): Delete macro definitions.
6745
6746 2001-03-23 Andrew Cagney <ac131313@redhat.com>
6747
6748 * gdbarch.sh (gdbarch_register_read, gdbarch_register_write): Add.
6749 * gdbarch.h, gdbarch.c: Regenerate.
6750
6751 * regcache.h (regcache_read, regcache_write): Declare.
6752 (registers, register_valid, register_buffer): Add note that these
6753 interfaces are deprecated.
6754
6755 * regcache.c: Include "gdb_assert.h".
6756 (legacy_write_register_gen): Rename write_register_gen.
6757 (legacy_read_register_gen): Rename read_register_gen.
6758 (regcache_read, regcache_write): New function.
6759 (read_register_gen, write_register_gen): New function.
6760 (write_register): Simplify. Use write_register_gen.
6761 (read_register): Ditto using read_register_gen.
6762 (read_signed_register): Ditto.
6763 (read_register_bytes): Ditto!!!!
6764 (supply_register): Add note that CLEANUP_REGISTER_VALUE is being
6765 replaced by gdbarch_register_read.
6766
6767 * TODO (GDB 5.2 - Cleanups): Add list of gdbarch methods to
6768 deprecate.
6769
6770 2001-03-23 Jim Blandy <jimb@redhat.com>
6771
6772 Fix from Dan Berlin:
6773
6774 * stabsread.c (read_cpp_abbrev): Properly construct the names of
6775 virtual function table pointer fields.
6776
6777 2001-03-19 Andrew Cagney <ac131313@redhat.com>
6778
6779 * defs.h (xfree, mcalloc, mmalloc, mrealloc, mfree, xmmalloc,
6780 xmrealloc): Move existing declarations to the one place and
6781 re-order to be consistent.
6782 (xmcalloc, xmfree): Declare.
6783 (xmmalloc, xmrealoc): Assume ISO-C - use size_t and void* in
6784 declaration.
6785
6786 * utils.c (size_t): Delete #ifdef defining size_t.
6787 (mmalloc, mrealloc, mcalloc, mfree): Re-order.
6788 (mmalloc, mrealloc, mcalloc): Document as only calls in GDB
6789 corresponding malloc, realloc, calloc.
6790 (mfree): Call free directly.
6791 (xmmalloc, xmrealloc): Clean up. Assume ISO-C.
6792 (xmcalloc, xmfree): New functions. Copy old xcalloc and xfree
6793 function bodies to here.
6794 (xcalloc, xfree): Call xmcalloc and xmfree respectfully.
6795
6796 2001-03-23 Andrew Cagney <ac131313@redhat.com>
6797
6798 * fork-child.c (fork_inferior): Make ``argv'', ``exec_file'' and
6799 ``shell_file'' static locals.
6800
6801 * jv-lang.c (java_link_class_type): Initialize ``field'' and
6802 ``method''.
6803
6804 * jv-valprint.c (java_value_print): Initialize ``next_element''.
6805
6806 2001-03-23 Mark Kettenis <kettenis@gnu.org>
6807
6808 * config/i386/nm-i386.h: Fix formatting and change reference to
6809 i386-tdep.c to i386-nat.c.
6810
6811 2001-03-23 David Smith <dsmith@redhat.com>
6812
6813 * configure.in: Corrected spelling errors.
6814 * configure: Regenerated.
6815
6816 2001-03-22 Andrew Cagney <ac131313@redhat.com>
6817
6818 * TODO (GDB 5.1 - Cleanups): Add more targets to obsolete.
6819
6820 2001-03-22 Andrew Cagney <ac131313@redhat.com>
6821
6822 * Makefile.in (NTSSTART): Delete.
6823 (NTSOBS): Delete.
6824 (kdb): Delete target.
6825 * kdb-start.c, stuff.c: Mark as obsolete.
6826 * NEWS: Update.
6827
6828 2001-03-22 Andrew Cagney <ac131313@redhat.com>
6829
6830 * config/pa/xm-hppah.h (HPPA_COMPILER_BUG): Delete. GDB only
6831 compiles using an ISO-C compiler.
6832 (MALLOC_INCOMPATIBLE): Ditto.
6833 * linespec.c (decode_line_1): Delete hack to work around
6834 HPPA_COMPILER_BUG.
6835
6836 2001-03-22 Andrew Cagney <ac131313@redhat.com>
6837
6838 * exec.c (xfer_memory): Always initialize section.
6839 * infrun.c (normal_stop): Always initialize source_flag.
6840
6841 2001-03-22 Andrew Cagney <ac131313@redhat.com>
6842
6843 * TODO (Remote Protocol Support): Review. Add notes about ``!'',
6844 non-use of a continue address and typical use of ``q'' packet.
6845
6846 2001-03-22 Eli Zaretskii <eliz@is.elta.co.il>
6847
6848 Make DJGPP use the new unified support for hardware
6849 breakpoints and watchpoints on x86 targets:
6850
6851 * config/i386/nm-go32.h <top level>: Don't include nm-i386v.h,
6852 include nm-i386.h instead.
6853 (TARGET_HAS_HARDWARE_WATCHPOINTS, HAVE_CONTINUABLE_WATCHPOINT)
6854 (TARGET_CAN_USE_HARDWARE_WATCHPOINT, STOPPED_BY_WATCHPOINT)
6855 (TARGET_REGION_OK_FOR_HW_WATCHPOINT, DECR_PC_AFTER_HW_BREAK)
6856 (target_stopped_data_address, target_insert_watchpoint)
6857 (target_remove_watchpoint, target_insert_hw_breakpoint)
6858 (target_remove_hw_breakpoint): Don't define.
6859 (I386_USE_GENERIC_WATCHPOINTS, I386_DR_LOW_SET_CONTROL)
6860 (I386_DR_LOW_SET_ADDR, I386_DR_LOW_RESET_ADDR)
6861 (I386_DR_LOW_GET_STATUS): Define to call appropriate go32_*
6862 functions from go32-nat.c.
6863
6864 * config/i386/go32.mh (NATDEPFILES): Add i386-nat.o.
6865
6866 * go32-nat.c <top level>: Remove prototypes for watchpoint-
6867 related functions. Remove definitions of watchpoint-related
6868 macros.
6869 (go32_mourn_inferior): Call i386_cleanup_dregs instead of the
6870 private cleanup_dregs function.
6871 (cleanup_dregs, go32_insert_watchpoint)
6872 (go32_insert_aligned_watchpoint, go32_handle_nonaligned_watchpoint)
6873 (go32_remove_watchpoint, go32_remove_aligned_watchpoint)
6874 (go32_region_ok_for_watchpoint, go32_stopped_by_watchpoint)
6875 (go32_remove_hw_breakpoint, go32_insert_hw_breakpoint): Remove.
6876 (go32_set_dr, go32_set_dr7, go32_get_dr6): New functions.
6877
6878 2001-03-21 Kevin Buettner <kevinb@redhat.com>
6879
6880 * ia64-tdep.c (fetch_instruction): Warn about slot numbers greater
6881 than two instead of generating an error.
6882
6883 2001-03-21 Jim Blandy <jimb@redhat.com>
6884
6885 * cp-valprint.c: Reformat to bring into line with GNU coding
6886 standards.
6887
6888 2001-03-21 Mark Kettenis <kettenis@gnu.org>
6889
6890 Make Linux use the new unified support for hardware breakpoints
6891 and watchpoints on x86 targets.
6892 * i386-linux-nat.c: Doc fixes. Include "gdb_assert.h".
6893 [HAVE_SYS_DEBUGREG_H]: Include <sys/debugreg.h>.
6894 (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS, DR_CONTROL): Define to
6895 appropriate value if not already defined.
6896 (register_u_addr): New function.
6897 (kernel_u_size): New function.
6898 (i386_linux_dr_get, i386_linux_dr_set): New functions.
6899 (i386_linux_dr_set_control, i386_linux_dr_set_addr,
6900 i386_linux_reset_addr, i386_linux_dr_get_status): New functions.
6901 * config/i386/nm-linux.h: Don't include "nm-i386v.h".
6902 (I386_USE_GENERIC_WATCHPOINTS): Define and include "nm-i386.h".
6903 (TARGET_HAS_HARDWARE_WATCHPOINTS,
6904 TARGET_CAN_USE_HARDWARE_WATCHPOINTS, HAVE_CONTINUABLE_WATCHPOINT,
6905 STOPPED_BY_WATCHPOINT, target_insert_watchpoint,
6906 target_remove_watchpoint): Remove macros.
6907 (i386_stopped_by_watchpoint, i386_insert_watchpoint,
6908 i386_remove_watchpoint): Remove prototypes.
6909 (register_u_addr): New prototype.
6910 (REGISTER_U_ADDR): Define in terms of register_u_addr.
6911 (i386_linux_dr_set_control, i386_linux_dr_set_addr,
6912 i386_linux_reset_addr, i386_linux_dr_get_status): New prototypes.
6913 (I386_DR_LOW_SET_CONTROL, I386_DR_LOW_SET_ADDR,
6914 I386_DR_LOW_RESET_ADDR, I386_DR_LOW_GET_STATUS): New macros.
6915 * config/i386/linux.mh (NATDEPFILES): Replace i386v-nat.o with
6916 i386-nat.o.
6917
6918 2001-03-21 Jim Blandy <jimb@redhat.com>
6919
6920 Fix from Dan Berlin:
6921
6922 * linespec.c (find_methods): Whitespace differences aren't
6923 significant in *un*mangled method names. Use strcmp_iw to compare
6924 them, not STREQ.
6925
6926 2001-03-21 Andrew Cagney <ac131313@redhat.com>
6927
6928 * gdbarch.sh: Allow a non- multi-arch target to override a
6929 predicate.
6930 * gdbarch.h: Regenerate.
6931
6932 2001-03-21 Andrew Cagney <ac131313@redhat.com>
6933
6934 * gdbarch.sh: Avoid use of ``!''.
6935
6936 2001-03-20 Andrew Cagney <ac131313@redhat.com>
6937
6938 * target.h (enum target_signal): Move definition from here.
6939 * defs.h (enum target_signal): To here.
6940
6941 * config/arc/tm-arc.h (arc_software_single_step): Change type of
6942 first parameter to enum target_signal.
6943 * config/rs6000/tm-rs6000.h (rs6000_software_single_step): Ditto.
6944 * config/sparc/tm-sparc.h (sparc_software_single_step): Ditto.
6945 * rs6000-tdep.c (rs6000_software_single_step): Update.
6946
6947 2001-03-20 Andrew Cagney <ac131313@redhat.com>
6948
6949 * frame.h (SIZEOF_FRAME_SAVED_REGS): Report an error if macro
6950 already defined.
6951
6952 From 2000-08-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
6953 * stabsread.c (define_symbol): A parameter ('R'), a local ('r'),
6954 or a reference ('a') can be in a pseudo register.
6955 * infcmd.c (do_registers_info): Must take into account the pseudo
6956 registers to print their value.
6957 (registers_info): Likewise.
6958 * stack.c (frame_info): Likewise.
6959 * frame.h (SIZEOF_FRAME_SAVED_REGS): Save the pseudo registers.
6960
6961 2001-03-21 Eli Zaretskii <eliz@is.elta.co.il>
6962
6963 Unified support for hardware breakpoints and watchpoints on
6964 x86 targets:
6965
6966 * config/i386/nm-i386.h: New file.
6967
6968 * config/i386/nm-i386.h: (i386_cleanup_dregs)
6969 (i386_insert_watchpoint, i386_remove_watchpoint)
6970 (i386_region_ok_for_watchpoint, i386_stopped_by_hwbp)
6971 (i386_stopped_data_address, i386_insert_hw_breakpoint)
6972 (i386_remove_hw_breakpoint): Declare prototypes.
6973 [I386_USE_GENERIC_WATCHPOINTS] (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
6974 Define if not already defined.
6975 (TARGET_REGION_OK_FOR_HW_WATCHPOINT, HAVE_CONTINUABLE_WATCHPOINT)
6976 (STOPPED_BY_WATCHPOINT, target_stopped_data_address)
6977 (target_insert_watchpoint, target_remove_watchpoint)
6978 (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Define
6979 to call the appropriate i386_* functions.
6980
6981 * i386-nat.c: New file.
6982
6983 * i386-nat.c (I386_DR_CONTROL_MASK, I386_DR_LOCAL_ENABLE)
6984 (I386_DR_GLOBAL_ENABLE, I386_DR_DISABLE, I386_DR_SET_RW_LEN)
6985 (I386_DR_GET_RW_LEN, I386_DR_WATCH_HIT): New macros.
6986 (dr_mirror, dr_status_mirror, dr_control_mirror, dr_ref_count)
6987 (maint_show_dr): New variables.
6988 (i386_cleanup_dregs, i386_show_dr, i386_length_and_rw_bits)
6989 (i386_insert_aligned_watchpoint, i386_remove_aligned_watchpoint)
6990 (i386_handle_nonaligned_watchpoint, i386_insert_watchpoint)
6991 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
6992 (i386_stopped_data_address, i386_stopped_by_hwbp)
6993 (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): New
6994 functions.
6995 (_initialize_i386_nat): New function.
6996 [I386_USE_GENERIC_WATCHPOINTS]: Add new maint command
6997 `show-debug-regs', sets maint_show_dr to non-zero value and
6998 activates debugging print-outs in functions which insert, remove,
6999 and test watchpoints and hardware breakpoints.
7000
7001 * Makefile.in (i386-nat.o): New target.
7002 (ALLDEPFILES): Add i386-nat.o.
7003
7004 2001-03-21 Mark Kettenis <kettenis@gnu.org>
7005
7006 * i386-tdep.c: Add back _initialize_i386_tdep prototype with
7007 appropriate comment.
7008
7009 2001-03-20 Kevin Buettner <kevinb@redhat.com>
7010
7011 * config/alpha/alpha-linux.mh (NATDEPFILES): Use proc-service.o,
7012 thread-db.o, and lin-lwp.o for thread support instead of
7013 linux-thread.o and lin-thread.o.
7014 * config/alpha/nm-linux.h (PREPARE_TO_PROCEED, GET_THREAD_SIGNALS)
7015 (ATTACH_LWP): Define to use the following lin-lwp.c functions...
7016 (lin_lwp_prepare_to_proceed, lin_thread_get_thread_signals)
7017 (lin_lwp_attach_lwp): Declare.
7018
7019 2001-03-20 Jim Blandy <jimb@redhat.com>
7020
7021 Fix from Dan Berlin:
7022
7023 * Makefile.in: Clean up dependencies on ../include/demangle.h.
7024 (demangle_h): New variable.
7025 (jv-typeprint.o, jv-valprint.o, linespec.o): Use it.
7026
7027 2001-03-20 Andrew Cagney <ac131313@redhat.com>
7028
7029 * target.h (SOFTWARE_SINGLE_STEP_P): Add empty parameter list.
7030 * breakpoint.c (bpstat_stop_status): Update.
7031 * infrun.c (handle_inferior_event): Ditto.
7032 * mips-tdep.c (mips_dump_tdep): Ditto.
7033 * infrun.c (resume): Ditto.
7034 * infptrace.c (child_resume): Ditto.
7035 * config/mips/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7036 * config/sh/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7037 * config/sparc/tm-sparc.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7038 * config/powerpc/tm-linux.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7039 * config/arm/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7040 * config/arc/tm-arc.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7041 * config/powerpc/tm-ppc-eabi.h (SOFTWARE_SINGLE_STEP_P): Ditto.
7042
7043 2001-03-20 Andrew Cagney <ac131313@redhat.com>
7044
7045 * config/powerpc/tm-linux.h (SOFTWARE_SINGLE_STEP): Replace abort
7046 with internal_error.
7047
7048 2001-03-20 Jim Blandy <jimb@redhat.com>
7049
7050 Fix from Dan Berlin:
7051
7052 * linespec.c (find_methods): Just call CHECK_TYPEDEF on t, rather
7053 than asking for sym_class's type; that's circuitous. Remove
7054 sym_class, since the last use of it is gone.
7055
7056 2001-03-20 Eli Zaretskii <eliz@is.elta.co.il>
7057
7058 * breakpoint.c (print_it_typical) <bp_access_watchpoint> [UI_OUT]:
7059 Correct the order of calls to ui_out_field_string and
7060 ui_out_list_begin when bs->old_val is NULL.
7061
7062 2001-03-19 Kevin Buettner <kevinb@redhat.com>
7063
7064 * configure.in (AC_CHECK_HEADERS): Check for existence of nlist.h.
7065 * configure: Regenerate.
7066 * config.in: Regenerate.
7067 * solib-legacy.c (nlist.h): Include if HAVE_NLIST_H is defined.
7068
7069 2001-03-19 Kevin Buettner <kevinb@redhat.com>
7070
7071 * config/i386/i386v42mp.mh (NATDEPFILES): List all files on
7072 same line to avoid problems with Unixware 7's make when building
7073 a cross debugger.
7074
7075 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7076
7077 * defs.h (malloc): Move declaration from here.
7078 * utils.c (malloc): To here.
7079 * config/pa/xm-hppah.h (malloc): Delete declaration.
7080
7081 * gnu-nat.c (make_proc): Use xmalloc instead of malloc.
7082 * hp-psymtab-read.c (hpread_call_pxdb): Ditto.
7083 (hpread_quick_traverse): Ditto.
7084 * infttrace.c (create_thread_info): Ditto.
7085 (kill_inferior): Ditto.
7086 * gnu-nat.c (make_inf): Ditto, and don't check return value.
7087 * procfs.c (proc_update_threads): Ditto.
7088 * valprint.c (print_decimal_chars): Ditto.
7089 * gdbtypes.c (cfront_mangle_name): Use xasprintf instead of
7090 malloc and sprintf.
7091 * remote-rdp.c (rdp_set_command_line): Ditto.
7092
7093 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7094
7095 * defs.h (realloc): Move declaration from here.
7096 * utils.c (realloc): To here.
7097 * config/pa/xm-hppah.h (realloc): Delete declaration.
7098 * lin-thread.c (insert_thread): Use xrealloc instead of realloc.
7099 * symfile.c (add_filename_language): Ditto.
7100 * event-loop.c (create_file_handler): Ditto.
7101
7102 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7103
7104 * defs.h (free): Move declaration from here.
7105 * utils.c (free): To here.
7106 (xfree): Document as the only call to free().
7107 * config/pa/xm-hppah.h (free): Delete declaration.
7108
7109 2001-03-19 Kevin Buettner <kevinb@redhat.com>
7110
7111 * config/ia64/linux.mh (NATDEPFILES): Add proc-service.o to
7112 this list.
7113
7114 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7115
7116 * eval.c (evaluate_subexp): Remove #ifdef __STDC__ and ``inline''.
7117 * config/mips/xm-mips.h (offsetof): Define when !GNUC not !STDC.
7118 * cli/cli-cmds.c (init_cli_cmds): Remove #ifdef __STDC__
7119
7120 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7121
7122 * TODO: List known problems with TUI.
7123
7124 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7125
7126 * MAINTAINERS: Jimmy Guo stepped down as a maintiner (TUI,
7127 gdb.hp).
7128
7129 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7130
7131 * remote.c (remote_cisco_section_offsets): Do not cast result from
7132 bfd_get_section_name.
7133 (compare_sections_command): Ditto.
7134 (remote_cisco_section_offsets): Make ``p'' a const pointer.
7135 (compare_sections_command): Ditto for ``sectname''.
7136
7137 2001-03-19 Andrew Cagney <ac131313@redhat.com>
7138
7139 From Mon Nov 20 13:59:29 2000 Andrew Cagney <cagney@b1.cygnus.com>:
7140 * valops.c (hand_function_call): Simplify computation of the
7141 address of the pushed argument.
7142
7143 2001-03-17 Andrew Cagney <ac131313@redhat.com>
7144
7145 * p-exp.y (parse_number): Avoid shift overflow when ``long''.
7146 Code copied from c-exp.y.
7147
7148 2001-03-18 Kevin Buettner <kevinb@redhat.com>
7149
7150 * acconfig.h (HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
7151 (HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
7152 (HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS): New configure macros.
7153 * configure.in (HAVE_STRUCT_LINK_MAP32): Move this test out
7154 of the Solaris procfs testing section. Instead, group with...
7155 (HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
7156 (HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
7157 (HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS): New <link.h> tests.
7158 * configure: Regenerate.
7159 * config.in: Regenerate.
7160
7161 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Use
7162 new configure macros to choose which (if any) code to
7163 compile in. Added code to explicitly handle *BSD systems;
7164 these systems were previously handled only through macro
7165 redefinition. Also, due to the way the autoconf tests are set
7166 up, this function will no longer return a non-zero value when
7167 GDB is configured as a cross debugger. I.e, cross debuggers
7168 will no longer be able to "accidentally" get the host system's
7169 link map offsets.
7170
7171 2001-03-18 Kevin Buettner <kevinb@redhat.com>
7172
7173 * config/i386/nbsd.mh (NATDEPFILES): List all files on the same
7174 line to avoid build problem on NetBSD 1.4.
7175
7176 2001-03-17 Michael Chastain <chastain@redhat.com>
7177
7178 * win32-nat.c (child_attach): check args for NULL before passing
7179 to strtoul. This fixes PR gdb/43.
7180
7181 2001-03-17 Mark Kettenis <kettenis@gnu.org>
7182
7183 * i387-nat.h: Doc Fix.
7184
7185 * i386-tdep.c: Fix formatting.
7186 (i386_get_frame_setup, i386_follow_jump, codestream_read,
7187 codestream_seek, codestream_fill, skip_trampoline_code,
7188 gdb_print_insn_i386, _initialize_i386_tdep): Remove redundant
7189 prototypoes.
7190
7191 2001-03-17 Mark Kettenis <kettenis@gnu.org>
7192
7193 * config/i386/tm-linux.h (TARGET_ANALYZE_FLOATING): Remove. It's
7194 no longer used. Also remove associated FIXME.
7195
7196 2001-03-16 Andrew Cagney <ac131313@redhat.com>
7197
7198 * gdbarch.sh: Add classes ``m'' and ``M'' for pure multi-arch. Do
7199 not generate macro wrappers for multi-arch functions or
7200 predicates.
7201 (class_is_info_p, class_is_predicate_p): Update.
7202 (class_is_function_p, class_is_variable_p): Ditto.
7203 (class_is_multiarch_p): New class function.
7204
7205 2001-03-16 J.T. Conklin <jtc@redback.com>
7206
7207 * config/h8300/tm-h8300.h (FRAME_ARGS_ADDRESS): Changed to use
7208 h8300_frame_args_address from frame_args_address.
7209 (FRAME_LOCALS_ADDRESS): Changed to use h8300_frame_locals_address
7210 from frame_locals_address.
7211 (PRINT_REGISTER_HOOK): Changed to use h8300_print_register_hook
7212 from print_register_hook.
7213 (h8300_frame_args_address): Declare.
7214 (h8300_frame_find_saved_regs): Declare.
7215 (h8300_frame_locals_address): Declare.
7216 (h8300_frame_saved_pc): Declare.
7217 (h8300_pop_frame): Declare.
7218 (h8300_print_register_hook): Declare.
7219 * h8300-tdep.c (h8300_frame_find_saved_regs): Removed declaration.
7220 (h8300_frame_args_address): Renamed from frame_args_address.
7221 (h8300_frame_locals_address): Renamed from frame_locals_address.
7222 (h8300_pop_frame): Renamed from pop_frame.
7223 (h8300_print_register_hook): Renamed from print_register_hook.
7224
7225 2001-03-16 Kevin Buettner <kevinb@redhat.com>
7226
7227 * solib-svr4.c (bfd_lookup_symbol): Change type of
7228 ``storage_needed'' from unsigned int to long in order to
7229 match return type of bfd_get_symtab_upper_bound() and
7230 bfd_get_dynamic_symtab_upper_bound().
7231 * solib-aix5.c (bfd_lookup_symbol): Likewise. Also, eliminate
7232 REASONABLE_LIMIT hack which had been added to work around this
7233 problem.
7234
7235 2001-03-15 Kevin Buettner <kevinb@redhat.com>
7236
7237 * solib-aix5.c (bfd_lookup_symbol, build_so_list_from_mapfile)
7238 (aix5_relocate_main_executable, aix5_clear_solib): Replace calls
7239 to free() with calls to xfree().
7240 (bfd_lookup_symbol): Eliminate use of PTR.
7241 (build_so_list_from_mapfile): Use xasprintf() instead of sprintf().
7242
7243 2001-03-15 Martin Hunt <hunt@redhat.com>
7244
7245 * linespec.c (decode_line_1): Remove trailing quote
7246 when parsing double quotes.
7247
7248 2001-03-15 Kevin Buettner <kevinb@redhat.com>
7249
7250 * uw-thread.c (read_thr_debug, read_map, read_lwp, thread_iter)
7251 (libthread_stub, libthread_init): Pass NULL for the mem_attrib
7252 argument in the to_xfer_memory calls.
7253
7254 2001-03-15 Andrew Cagney <ac131313@redhat.com>
7255
7256 * MAINTAINERS: Fix typo - w65 not w64. Still doesn't build.
7257 * TODO (GDB 5.1 - Cleanups): Add status of targets being obsoleted.
7258
7259 2001-03-15 Andrew Cagney <ac131313@redhat.com>
7260
7261 * wince.c (child_xfer_memory): Add attrib parameter.
7262 * symm-nat.c (child_xfer_memory): Ditto.
7263 * mac-nat.c (child_xfer_memory): Ditto.
7264 * infttrace.c (child_xfer_memory): Ditto.
7265 * procfs.c (procfs_xfer_memory): Ditto.
7266 * lin-thread.c (thread_db_xfer_memory): Ditto.
7267 * gnu-nat.c (gnu_xfer_memory): Ditto.
7268
7269 2001-03-14 Andrew Cagney <ac131313@redhat.com>
7270
7271 * NEWS: Mention that Harris/CXUX m88k is obsolete.
7272
7273 2001-03-13 Andrew Cagney <ac131313@redhat.com>
7274
7275 * config/mips/tm-mips.h: Include "regcache.h" for macros refering
7276 to regcache functions.
7277 * config/m68k/tm-m68k.h: Ditto.
7278 * config/i386/tm-i386v.h: Ditto.
7279 * config/mcore/tm-mcore.h: Ditto.
7280 * config/m88k/tm-m88k.h: Ditto.
7281 * config/m68k/tm-news.h: Ditto.
7282 * config/m68k/tm-linux.h: Ditto.
7283 * config/m68k/tm-delta68.h: Ditto.
7284 * config/m68k/nm-sun3.h: Ditto.
7285 * config/m32r/tm-m32r.h: Ditto.
7286 * config/i386/tm-symmetry.h: Ditto.
7287 * config/i386/tm-sun386.h: Ditto.
7288 * config/i386/tm-i386.h: Ditto.
7289 * config/i386/nm-symmetry.h: Ditto.
7290 * config/i386/nm-sun386.h: Ditto.
7291 * config/i386/nm-ptx4.h: Ditto.
7292 * config/i386/nm-i386mach.h: Ditto.
7293 * config/h8500/tm-h8500.h: Ditto.
7294 * config/h8300/tm-h8300.h: Ditto.
7295 * config/fr30/tm-fr30.h: Ditto.
7296 * config/d30v/tm-d30v.h: Ditto.
7297 * config/arm/tm-arm.h: Ditto.
7298 * config/arc/tm-arc.h: Ditto.
7299 * config/alpha/tm-alpha.h: Ditto.
7300 * config/a29k/tm-vx29k.h: Ditto.
7301 * config/a29k/tm-a29k.h: Ditto.
7302 * config/w65/tm-w65.h: Ditto.
7303 * config/vax/tm-vax.h: Ditto.
7304 * config/v850/tm-v850.h: Ditto.
7305 * config/tic80/tm-tic80.h: Ditto.
7306 * config/sparc/tm-sparclite.h: Ditto.
7307 * config/sparc/tm-sparclet.h: Ditto.
7308 * config/sparc/tm-sparc.h: Ditto.
7309 * config/sparc/nm-sun4sol2.h: Ditto.
7310 * config/sparc/nm-sun4os4.h: Ditto.
7311 * config/sparc/nm-nbsd.h: Ditto.
7312 * config/powerpc/nm-solaris.h: Ditto.
7313 * config/pa/tm-hppao.h: Ditto.
7314 * config/pa/tm-hppa.h: Ditto.
7315 * config/pa/nm-hppab.h: Ditto.
7316 * config/ns32k/tm-umax.h: Ditto.
7317 * config/ns32k/tm-merlin.h: Ditto.
7318 * config/nm-m3.h: Ditto.
7319 * config/nm-gnu.h: Ditto.
7320
7321 2001-03-14 Andrew Cagney <ac131313@redhat.com>
7322
7323 * MAINTAINERS: Update list of targets. Mark arm-* and v850-elf as
7324 broken. Mark sh-*, ia64-linux and ns32k-netbsd as buildable.
7325 Specify an m88k target. Include sample GAWK script to generate
7326 target list. Delete non-existant romp target.
7327 * TODO (GDB 5.1 - Cleanups): Update.
7328
7329 2001-03-14 Keith Seitz <keiths@cygnus.com>
7330
7331 * linespec.c (decode_line_1): Skip argptr over a leading
7332 double quote. Prevents alloc of 0 bytes and memcpy of -1 bytes.
7333
7334 2001-03-14 Kevin Buettner <kevinb@redhat.com>
7335
7336 * config/djgpp/fnchange.lst (ia64-aix-nat.c): Add entry.
7337
7338 2001-03-13 Andrew Cagney <ac131313@redhat.com>
7339
7340 * ui-out.h: Remove #if __STDC__, assume an ISO-C compiler.
7341 * m3-nat.c: Ditto.
7342 * p-lang.h: Ditto.
7343 * printcmd.c (printf_command): Ditto.
7344 * ch-exp.c (match_integer_literal): Ditto.
7345 * scm-tags.h: Ditto.
7346 * ser-go32.c: Ditto.
7347 * hppa-tdep.c (unwind_command): Ditto.
7348 * defs.h (volatile): Delete macro definition. Assume __STDC__.
7349 * remote-adapt.c (volatile): Ditto.
7350 * remote-eb.c (volatile): Ditto.
7351 * remote-mm.c (volatile): Ditto.
7352 * defs.h (alloca): Assume __STDC__, declare returning void *.
7353
7354 2001-03-08 Andrew Cagney <ac131313@redhat.com>
7355
7356 * inferior.h (ARCH_NUM_REGS): Delete definition.
7357 * stack.c (frame_info): Use NUM_REGS, not ARCH_NUM_REGS.
7358 * regcache.c (registers_changed): Ditto.
7359 (registers_fetched): Ditto.
7360 * infptrace.c (fetch_inferior_registers): Ditto.
7361 (store_inferior_registers): Ditto.
7362 * infcmd.c (do_registers_info): Ditto.
7363 (registers_info): Ditto.
7364 * i386-linux-nat.c (old_fetch_inferior_registers): Ditto.
7365 (old_store_inferior_registers): Ditto.
7366 * gdbserver/low-linux.c (register_addr): Ditto.
7367 * gdbserver/low-hppabsd.c (register_addr): Ditto.
7368 * core-aout.c: Don't include "inferior.h".
7369 (fetch_core_registers): Use NUM_REGS not ARCH_NUM_REGS.
7370 (register_addr): Ditto.
7371
7372 2001-03-13 Fernando Nasser <fnasser@redhat.com>
7373
7374 From Steven Johnson <sjohnson@neurizon.net>
7375 * cli/cli-script.c (define_command): Fix setting of post hooks.
7376
7377 2001-03-13 Mark Kettenis <kettenis@gnu.org>
7378
7379 * i386-linux-tdep.c: Fix formatting and clarify comments.
7380 (i386_linux_svr4_fetch_link_map_offsets): Use NULL instead of 0
7381 where appropriate.
7382
7383 2001-03-12 Andrew Cagney <ac131313@redhat.com>
7384
7385 * gnu-nat.c: Include "gdb_assert.h" instead of <assert.h>.
7386 (proc_update_sc): Use gdb_assert instead of assert.
7387 (proc_abort): Ditto.
7388 (inf_set_step_thread): Ditto.
7389 (gnu_wait): Ditto.
7390 (S_exception_raise_request): Ditto.
7391 (gnu_terminal_init_inferior): Ditto.
7392
7393 2001-03-09 Kevin Buettner <kevinb@redhat.com>
7394
7395 * Makefile.in (solib-svr4.o): Depend on solib-svr4.c, not solib.c.
7396 (solib-legacy.o): New makefile target.
7397 * solib-legacy.c: New file.
7398 * solib-svr4.h (SVR4_FETCH_LINK_MAP_OFFSETS): Delete.
7399 (default_svr4_fetch_link_map_offsets): Delete.
7400 (set_solib_svr4_fetch_link_map_offsets): Declare.
7401 (legacy_svr4_fetch_link_map_offsets_hook): Declare.
7402 * solib-svr4.c (elf/common.h): Include.
7403 (link.h): Only include for SunOS shared library support.
7404 (_SYSCALL32): Don't define.
7405 (SVR4_FETCH_LINK_MAP_OFFSETS): Define.
7406 (default_svr4_fetch_link_map_offsets): Made static; added forward
7407 declaration.
7408 (fetch_link_map_offsets): New static global.
7409 (legacy_svr4_fetch_link_map_offsets_hook): New global variable.
7410 (default_svr4_fetch_link_map_offsets): Rewritten. The guts
7411 of what used to be in this function now reside in
7412 legacy_svr4_fetch_link_map_offsets() in solib-legacy.c.
7413 (open_symbol_file_object): Fix declaration in SunOS section
7414 of the code.
7415 (set_solib_svr4_fetch_link_map_offsets): New extern function.
7416 (init_fetch_link_map_offsets): New static function.
7417 (_initialize_svr4_solib): Put static global fetch_link_map_offsets
7418 under multiarch control.
7419
7420 * config/alpha/alpha-linux.mt (TDEPFILES): Add solib-legacy.o to
7421 list.
7422 * config/alpha/fbsd.mh (NATDEPFILES): Likewise.
7423 * config/arm/linux.mt (TDEPFILES): Likewise.
7424 * config/i386/fbsd.mh (NATDEPFILES): Likewise.
7425 * config/i386/i386dgux.mh (NATDEPFILES): Likewise.
7426 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7427 * config/i386/i386sco5.mh (NATDEPFILES): Likewise.
7428 * config/i386/i386sol2.mt (TDEPFILES): Likewise.
7429 * config/i386/i386v4.mh (NATDEPFILES): Likewise.
7430 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7431 * config/i386/linux.mt (TDEPFILES): Likewise.
7432 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7433 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7434 * config/i386/ncr3000.mt (TDEPFILES): Likewise.
7435 * config/i386/ptx4.mh (XDEPFILES): Likewise.
7436 * config/i386/sun386.mt (TDEPFILES): Likewise.
7437 * config/ia64/linux.mt (TDEPFILES): Likewise.
7438 * config/m68k/linux.mt (TDEPFILES): Likewise.
7439 * config/m68k/m68kv4.mh (NATDEPFILES): Likewise.
7440 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7441 * config/m68k/sun2os4.mt (TDEPFILES): Likewise.
7442 * config/m68k/sun3os4.mt (TDEPFILES): Likewise.
7443 * config/m88k/delta88v4.mh (NATDEPFILES): Likewise.
7444 * config/mips/mipsv4.mh (NATDEPFILES): Likewise.
7445 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7446 * config/powerpc/linux.mt (TDEPFILES): Likewise.
7447 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7448 * config/powerpc/solaris.mh (NATDEPFILES): Likewise.
7449 * config/sh/linux.mt (TDEPFILES): Likewise.
7450 * config/sparc/linux.mt (TDEPFILES): Likewise.
7451 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7452 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7453 * config/sparc/sp64linux.mt (TDEPFILES): Likewise.
7454 * config/sparc/sun4os4.mt (TDEPFILES): Likewise.
7455 * config/sparc/sun4sol2.mh (NATDEPFILES): Likewise.
7456
7457 2001-03-09 Kevin Buettner <kevinb@redhat.com>
7458
7459 * utils.c (xmrealloc, xcalloc): Return NULL for zero-sized requests.
7460
7461 2001-03-09 Andrew Cagney <ac131313@redhat.com>
7462
7463 * MAINTAINERS (Write After Approval): Update Philip Blundell.
7464
7465 2001-03-09 Keith Seitz <keiths@cygnus.com>
7466
7467 * MAINTAINERS: Add myself to write after approval list.
7468
7469 2001-03-09 Mark Kettenis <kettenis@gnu.org>
7470
7471 * i387-tdep.c (print_i387_status_word): Fix printing of Stack
7472 fault flag. It is bit 6 of the x87 FPU status word, not bit 7.
7473
7474 2001-03-08 Andrew Cagney <ac131313@redhat.com>
7475
7476 * configure.host (m88*-harris-cxux*): Mark as obsolete.
7477 * configure.tgt: Ditto.
7478 * config/m88k/xm-cxux.h: Ditto.
7479 * config/m88k/tm-cxux.h: Ditto.
7480 * config/m88k/nm-cxux.h: Ditto.
7481 * config/m88k/cxux.mt: Ditto.
7482 * config/m88k/cxux.mh: Ditto.
7483
7484 2001-03-08 Andrew Cagney <ac131313@redhat.com>
7485
7486 * Makefile.in: Delete rules for obsolete files.
7487
7488 Thu Mar 8 15:43:40 2001 David Taylor <taylor@redhat.com>
7489
7490 * stack.c (parse_frame_specification): For one argument case,
7491 handle the situation where the argument is an integer, not an
7492 address -- arguably the most common case. This matters on
7493 targets where pointers and addresses are different.
7494
7495 2001-03-08 Andrew Cagney <ac131313@redhat.com>
7496
7497 * TODO: Revise 5.1 list. Delete PARAMS task. Add coding standard
7498 review. Clarify GNU/LINUX/sparc. Move other tasks to 5.2 or
7499 general.
7500
7501 2001-03-07 Andrew Cagney <ac131313@redhat.com>
7502
7503 * TODO (GDB 5.1 Known Problems): Document problem of building GDB
7504 with SID on Solaris 8.
7505
7506 2001-03-07 Mark Kettenis <kettenis@gnu.org>
7507
7508 * defs.h: Provide prototypes for floatformat_is_negative,
7509 floatformat_is_nan and floatformat_mantissa.
7510 * utils.c: Include "gdb_assert.h".
7511 (floatformat_is_negative): New function.
7512 (floatformat_is_nan): New function.
7513 (floatformat_mantissa): New function.
7514 * valprint.c: Include "floatformat.h".
7515 (print_floating): Get rid of the Linux-specific
7516 TARGET_ANALYZE_FLOATING macro and rewrite NaN detection with the
7517 help these new functions. Print NaN's in a format conforming to
7518 ISO C99.
7519
7520 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
7521
7522 * top.c (init_main): Make `set history file name' complete on file
7523 names.
7524
7525 2001-03-06 J.T. Conklin <jtc@redback.com>
7526
7527 * Makefile.in (LINTFLAGS): Update to contain all of the macros
7528 which define include paths used when compiling.
7529
7530 * util.c (savestring, msavestring): Change type of length argument.
7531 * defs.h (savestring, msavestring): Update to match.
7532
7533 * symtab.h (decode_line_1): Removed declaration.
7534
7535 * symfile.c (#include <assert.h>): Removed.
7536
7537 * arch-utils.c (#include <ctype.h>): Removed.
7538 * c-typeprint.c: Likewise.
7539 * dbxread.c: Likewise.
7540 * gdbtypes.c: Likewise.
7541 * target.c: Likewise.
7542 * os9kread.c: Likewise.
7543
7544 * c-valprint.c (#include "demangle.h"): Removed.
7545 * ch-typeprint.c: Likewise.
7546 * eval.c: Likewise.
7547 * f-typeprint.c: Likewise.
7548 * f-valprint.c: Likewise.
7549 * m2-typeprint.c: Likewise.
7550 * typeprint.c: Likewise.
7551 * p-typeprint.c: Likewise.
7552 * valarith.c: Likewise.
7553 * valprint.c: Likewise.
7554
7555 * m2-typeprint.c (#include "gdb_string.h"): Removed.
7556 * nlmread.c: Likewise.
7557
7558 * mdebugread.c (#include "gdb-stabs.h"): Removed.
7559 * minsyms.c: Likewise.
7560 * mipsread.c: Likewise.
7561 * nlmread.c: Likewise.
7562
7563 * m2-typeprint.c (#include "obstack.h"): Removed.
7564 * m2-valprint.c: Likewise.
7565
7566 * event-loop.c (#include <setjmp.h>): Removed.
7567
7568 2001-03-06 Stan Shebs <shebs@apple.com>
7569
7570 * MAINTAINERS: Remove self from specific maintenance domains
7571 (macos, gdbserver, documentation, testsuite).
7572
7573 2001-03-06 Kevin Buettner <kevinb@redhat.com>
7574
7575 * 29k-share/udi/udip2soc.c, Makefile.in, a29k-tdep.c,
7576 a68v-nat.c, abug-rom.c, aclocal.m4, alpha-nat.c, alpha-tdep.c,
7577 annotate.c, annotate.h, arc-tdep.c, arch-utils.c,
7578 arch-utils.h, arm-tdep.c, ax-gdb.c, ax-gdb.h, ax-general.c,
7579 ax.h, bcache.c, bcache.h, blockframe.c, breakpoint.c,
7580 breakpoint.h, buildsym.c, buildsym.h, c-exp.y, c-lang.c,
7581 c-lang.h, c-typeprint.c, c-valprint.c, call-cmds.h, ch-exp.c,
7582 ch-lang.c, ch-lang.h, ch-typeprint.c, ch-valprint.c,
7583 cli/cli-cmds.h, cli/cli-decode.c, cli/cli-decode.h,
7584 cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.h,
7585 cli/cli-utils.h, cli-out.c, cli-out.h, coff-solib.c,
7586 coff-solib.h, coffread.c, command.h, complaints.c,
7587 complaints.h, completer.c, completer.h,
7588 config/a29k/nm-ultra3.h, config/a29k/tm-a29k.h,
7589 config/a29k/tm-ultra3.h, config/a29k/tm-vx29k.h,
7590 config/a29k/xm-ultra3.h, config/alpha/nm-fbsd.h,
7591 config/alpha/nm-linux.h, config/alpha/nm-osf.h,
7592 config/alpha/nm-osf2.h, config/alpha/nm-osf3.h,
7593 config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h,
7594 config/alpha/xm-alphalinux.h, config/alpha/xm-alphaosf.h,
7595 config/alpha/xm-fbsd.h, config/arc/tm-arc.h,
7596 config/arm/nm-linux.h, config/arm/tm-arm.h,
7597 config/arm/tm-embed.h, config/d10v/tm-d10v.h,
7598 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
7599 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
7600 config/i386/nm-fbsd.h, config/i386/nm-gnu.h,
7601 config/i386/nm-i386bsd.h, config/i386/nm-i386mach.h,
7602 config/i386/nm-i386sco.h, config/i386/nm-i386sol2.h,
7603 config/i386/nm-i386v.h, config/i386/nm-i386v4.h,
7604 config/i386/nm-i386v42mp.h, config/i386/nm-linux.h,
7605 config/i386/nm-nbsd.h, config/i386/nm-nbsdelf.h,
7606 config/i386/nm-ptx4.h, config/i386/nm-sun386.h,
7607 config/i386/nm-symmetry.h, config/i386/tm-cygwin.h,
7608 config/i386/tm-fbsd.h, config/i386/tm-i386.h,
7609 config/i386/tm-i386aix.h, config/i386/tm-i386bsd.h,
7610 config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h,
7611 config/i386/tm-i386m3.h, config/i386/tm-i386mk.h,
7612 config/i386/tm-i386nw.h, config/i386/tm-i386os9k.h,
7613 config/i386/tm-i386sco5.h, config/i386/tm-i386sol2.h,
7614 config/i386/tm-i386v.h, config/i386/tm-i386v4.h,
7615 config/i386/tm-i386v42mp.h, config/i386/tm-linux.h,
7616 config/i386/tm-nbsd.h, config/i386/tm-ptx.h,
7617 config/i386/tm-ptx4.h, config/i386/tm-sun386.h,
7618 config/i386/tm-symmetry.h, config/i386/tm-vxworks.h,
7619 config/i386/xm-fbsd.h, config/i386/xm-i386bsd.h,
7620 config/i386/xm-i386gnu.h, config/i386/xm-i386m3.h,
7621 config/i386/xm-i386mach.h, config/i386/xm-i386mk.h,
7622 config/i386/xm-i386sco.h, config/i386/xm-i386v4.h,
7623 config/i386/xm-linux.h, config/i386/xm-nbsd.h,
7624 config/i386/xm-ptx.h, config/i386/xm-ptx4.h,
7625 config/i386/xm-sun386.h, config/i386/xm-symmetry.h,
7626 config/i960/tm-i960.h, config/i960/tm-mon960.h,
7627 config/i960/tm-nindy960.h, config/i960/tm-vx960.h,
7628 config/ia64/nm-aix.h, config/ia64/nm-linux.h,
7629 config/ia64/tm-aix.h, config/ia64/tm-ia64.h,
7630 config/ia64/tm-linux.h, config/ia64/xm-aix.h,
7631 config/ia64/xm-linux.h, config/m68k/nm-apollo68b.h,
7632 config/m68k/nm-delta68.h, config/m68k/nm-dpx2.h,
7633 config/m68k/nm-hp300bsd.h, config/m68k/nm-hp300hpux.h,
7634 config/m68k/nm-linux.h, config/m68k/nm-sun3.h,
7635 config/m68k/tm-apollo68b.h, config/m68k/tm-cisco.h,
7636 config/m68k/tm-dpx2.h, config/m68k/tm-es1800.h,
7637 config/m68k/tm-hp300bsd.h, config/m68k/tm-hp300hpux.h,
7638 config/m68k/tm-isi.h, config/m68k/tm-linux.h,
7639 config/m68k/tm-m68k.h, config/m68k/tm-m68kv4.h,
7640 config/m68k/tm-mac.h, config/m68k/tm-monitor.h,
7641 config/m68k/tm-nbsd.h, config/m68k/tm-news.h,
7642 config/m68k/tm-os68k.h, config/m68k/tm-sun3.h,
7643 config/m68k/tm-vx68.h, config/m68k/xm-3b1.h,
7644 config/m68k/xm-apollo68b.h, config/m68k/xm-dpx2.h,
7645 config/m68k/xm-hp300bsd.h, config/m68k/xm-hp300hpux.h,
7646 config/m68k/xm-linux.h, config/m68k/xm-m68kv4.h,
7647 config/m68k/xm-mpw.h, config/m68k/xm-news.h,
7648 config/m68k/xm-sun2.h, config/m68k/xm-sun3.h,
7649 config/m68k/xm-sun3os4.h, config/m88k/nm-delta88v4.h,
7650 config/m88k/tm-delta88.h, config/m88k/tm-delta88v4.h,
7651 config/m88k/tm-m88k.h, config/m88k/xm-cxux.h,
7652 config/m88k/xm-delta88.h, config/m88k/xm-delta88v4.h,
7653 config/m88k/xm-dgux.h, config/mcore/tm-mcore.h,
7654 config/mips/nm-irix3.h, config/mips/nm-irix4.h,
7655 config/mips/nm-irix5.h, config/mips/nm-mips.h,
7656 config/mips/nm-news-mips.h, config/mips/tm-bigmips.h,
7657 config/mips/tm-embed.h, config/mips/tm-embed64.h,
7658 config/mips/tm-embedl.h, config/mips/tm-embedl64.h,
7659 config/mips/tm-irix3.h, config/mips/tm-irix5.h,
7660 config/mips/tm-mips.h, config/mips/tm-mips64.h,
7661 config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h,
7662 config/mips/tm-tx39.h, config/mips/tm-tx39l.h,
7663 config/mips/tm-vr4100.h, config/mips/tm-vr4300.h,
7664 config/mips/tm-vr4300el.h, config/mips/tm-vr4xxx.h,
7665 config/mips/tm-vr4xxxel.h, config/mips/tm-vr5000.h,
7666 config/mips/tm-vr5000el.h, config/mips/xm-irix3.h,
7667 config/mips/xm-irix4.h, config/mips/xm-irix5.h,
7668 config/mips/xm-mips.h, config/mips/xm-mipsm3.h,
7669 config/mips/xm-mipsv4.h, config/mips/xm-news-mips.h,
7670 config/mips/xm-riscos.h, config/mn10200/tm-mn10200.h,
7671 config/mn10300/tm-mn10300.h, config/nm-gnu.h,
7672 config/nm-linux.h, config/nm-lynx.h, config/nm-m3.h,
7673 config/nm-sysv4.h, config/none/nm-none.h,
7674 config/none/tm-none.h, config/none/xm-none.h,
7675 config/ns32k/nm-nbsd.h, config/ns32k/nm-umax.h,
7676 config/ns32k/tm-merlin.h, config/ns32k/tm-nbsd.h,
7677 config/ns32k/tm-ns32km3.h, config/ns32k/tm-umax.h,
7678 config/ns32k/xm-merlin.h, config/ns32k/xm-ns32km3.h,
7679 config/pa/nm-hppab.h, config/pa/nm-hppah.h,
7680 config/pa/nm-hppao.h, config/pa/tm-hppa.h,
7681 config/pa/tm-hppa64.h, config/pa/tm-hppah.h,
7682 config/pa/xm-hppab.h, config/pa/xm-hppah.h,
7683 config/powerpc/nm-aix.h, config/powerpc/nm-linux.h,
7684 config/powerpc/nm-macos.h, config/powerpc/nm-nbsd.h,
7685 config/powerpc/tm-cygwin.h, config/powerpc/tm-linux.h,
7686 config/powerpc/tm-macos.h, config/powerpc/tm-ppc-aix.h,
7687 config/powerpc/tm-ppc-eabi.h, config/powerpc/tm-ppc-nw.h,
7688 config/powerpc/tm-ppcle-eabi.h, config/powerpc/tm-solaris.h,
7689 config/powerpc/xm-aix.h, config/powerpc/xm-linux.h,
7690 config/powerpc/xm-mpw.h, config/rs6000/nm-rs6000.h,
7691 config/rs6000/tm-rs6000.h, config/rs6000/tm-rs6000ly.h,
7692 config/rs6000/xm-aix4.h, config/rs6000/xm-rs6000.h,
7693 config/sh/tm-linux.h, config/sh/tm-sh.h, config/sh/tm-wince.h,
7694 config/sparc/nm-linux.h, config/sparc/nm-nbsd.h,
7695 config/sparc/nm-nbsdelf.h, config/sparc/nm-sparclynx.h,
7696 config/sparc/nm-sun4os4.h, config/sparc/nm-sun4sol2.h,
7697 config/sparc/tm-linux.h, config/sparc/tm-sp64.h,
7698 config/sparc/tm-sp64sim.h, config/sparc/tm-sparc.h,
7699 config/sparc/tm-sparclet.h, config/sparc/tm-sparclite.h,
7700 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
7701 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
7702 config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h,
7703 config/tic80/tm-tic80.h, config/tm-linux.h, config/tm-lynx.h,
7704 config/tm-sysv4.h, config/v850/tm-v850.h, config/vax/tm-vax.h,
7705 config/w65/tm-w65.h, config/xm-aix4.h, config/xm-lynx.h,
7706 config/xm-mpw.h, config/xm-nbsd.h, config/xm-sysv4.h,
7707 config/z8k/tm-z8k.h, configure.in, core-aout.c, core-regset.c,
7708 core-sol2.c, corefile.c, corelow.c, cp-valprint.c,
7709 cpu32bug-rom.c, cxux-nat.c, d10v-tdep.c, d30v-tdep.c,
7710 dbug-rom.c, dbxread.c, dcache.c, dcache.h, defs.h,
7711 delta68-nat.c, demangle.c, dink32-rom.c, dpx2-nat.c, dsrec.c,
7712 dstread.c, dve3900-rom.c, dwarf2read.c, dwarfread.c,
7713 elfread.c, environ.c, environ.h, eval.c, event-loop.c,
7714 event-loop.h, event-top.c, exec.c, expprint.c, f-exp.y,
7715 f-lang.c, f-lang.h, f-typeprint.c, f-valprint.c, findvar.c,
7716 fork-child.c, fr30-tdep.c, frame.c, frame.h, gdb-events.c,
7717 gdb-events.h, gdb-events.sh, gdb-stabs.h, gdb.1, gdb_string.h,
7718 gdb_thread_db.h, gdbcmd.h, gdbcore.h, gdbserver/Makefile.in,
7719 gdbserver/gdbreplay.c, gdbserver/gdbserver.1,
7720 gdbserver/low-hppabsd.c, gdbserver/low-linux.c,
7721 gdbserver/low-lynx.c, gdbserver/low-nbsd.c,
7722 gdbserver/low-sim.c, gdbserver/low-sparc.c,
7723 gdbserver/low-sun3.c, gdbserver/remote-utils.c,
7724 gdbserver/server.c, gdbserver/server.h, gdbserver/utils.c,
7725 gdbthread.h, gdbtypes.c, gdbtypes.h, gnu-nat.c, gnu-nat.h,
7726 gnu-regex.c, gnu-regex.h, h8300-tdep.c, h8500-tdep.c,
7727 hp-psymtab-read.c, hp-symtab-read.c, hp300ux-nat.c,
7728 hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c, hpread.c,
7729 hpread.h, hpux-thread.c, i386-tdep.c, i386aix-nat.c,
7730 i386b-nat.c, i386gnu-nat.c, i386ly-tdep.c, i386m3-nat.c,
7731 i386mach-nat.c, i386nbsd-nat.c, i386nbsd-tdep.c, i386v-nat.c,
7732 i386v4-nat.c, i387-tdep.c, i960-tdep.c, infcmd.c, inferior.h,
7733 inflow.c, infptrace.c, infrun.c, inftarg.c, infttrace.c,
7734 irix4-nat.c, irix5-nat.c, isi-xdep.c, jv-exp.y, jv-lang.c,
7735 jv-lang.h, jv-typeprint.c, jv-valprint.c, kdb-start.c,
7736 kod-cisco.c, kod.c, language.c, language.h, lin-thread.c,
7737 linespec.c, linespec.h, linux-thread.c, lynx-nat.c, m2-exp.y,
7738 m2-lang.c, m2-lang.h, m2-typeprint.c, m2-valprint.c, m3-nat.c,
7739 m32r-rom.c, m32r-tdep.c, m68k-tdep.c, m68klinux-nat.c,
7740 m68knbsd-nat.c, m88k-nat.c, m88k-tdep.c, mac-nat.c,
7741 mac-xdep.c, main.c, maint.c, mcore-rom.c, mcore-tdep.c,
7742 mdebugread.c, mem-break.c, minimon.h, minsyms.c, mips-nat.c,
7743 mips-tdep.c, mipsm3-nat.c, mipsread.c, mipsv4-nat.c,
7744 mn10200-tdep.c, mn10300-tdep.c, mon960-rom.c, monitor.c,
7745 monitor.h, news-xdep.c, nindy-share/env.h, nindy-tdep.c,
7746 nlm/Makefile.in, nlmread.c, ns32k-tdep.c, ns32km3-nat.c,
7747 ns32knbsd-nat.c, objfiles.c, objfiles.h, ocd.c, ocd.h,
7748 op50-rom.c, os9kread.c, osfsolib.c, p-exp.y, pa64solib.c,
7749 pa64solib.h, parse.c, parser-defs.h, partial-stab.h,
7750 ppc-bdm.c, ppc-linux-nat.c, ppc-linux-tdep.c, ppcbug-rom.c,
7751 ppcnbsd-nat.c, printcmd.c, proc-api.c, proc-events.c,
7752 proc-flags.c, proc-utils.h, proc-why.c, procfs.c, ptx4-nat.c,
7753 rdi-share/Makefile.in, rdi-share/aclocal.m4, regcache.c,
7754 regcache.h, remote-adapt.c, remote-array.c, remote-bug.c,
7755 remote-e7000.c, remote-eb.c, remote-es.c, remote-est.c,
7756 remote-hms.c, remote-mips.c, remote-mm.c, remote-nindy.c,
7757 remote-nrom.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
7758 remote-sds.c, remote-sim.c, remote-st.c, remote-udi.c,
7759 remote-utils.c, remote-utils.h, remote-vx.c, remote.c,
7760 remote.h, reply_mig_hack.awk, rom68k-rom.c, rs6000-nat.c,
7761 rs6000-tdep.c, scm-exp.c, scm-lang.c, scm-lang.h, scm-tags.h,
7762 scm-valprint.c, ser-e7kpc.c, ser-mac.c, ser-ocd.c, ser-pipe.c,
7763 ser-tcp.c, ser-unix.c, serial.c, serial.h, sh-tdep.c,
7764 sh3-rom.c, sol-thread.c, solib-aix5.c, solib-svr4.c, solib.c,
7765 solib.h, solist.h, somread.c, somsolib.c, somsolib.h,
7766 source.c, sparc-nat.c, sparc-tdep.c, sparcl-tdep.c,
7767 sparclet-rom.c, srec.h, stabsread.c, stabsread.h, stack.c,
7768 standalone.c, stop-gdb.c, stuff.c, sun3-nat.c, sun386-nat.c,
7769 symfile.c, symfile.h, symm-nat.c, symm-tdep.c, symmisc.c,
7770 symtab.c, symtab.h, target.c, target.h, terminal.h, thread.c,
7771 tic80-tdep.c, top.c, top.h, tracepoint.c, tracepoint.h,
7772 typeprint.c, ui-file.c, ui-file.h, ui-out.h, ultra3-nat.c,
7773 ultra3-xdep.c, umax-xdep.c, utils.c, v850-tdep.c, v850ice.c,
7774 valarith.c, valops.c, valprint.c, value.h, values.c, varobj.h,
7775 vax-tdep.c, version.h, vx-share/vxWorks.h, vx-share/xdr_ld.c,
7776 vx-share/xdr_ptrace.c, vx-share/xdr_ptrace.h,
7777 vx-share/xdr_rdb.c, w65-tdep.c, w89k-rom.c, win32-nat.c,
7778 wrapper.c, wrapper.h, xcoffread.c, xcoffsolib.c, xcoffsolib.h,
7779 xmodem.c, xmodem.h, z8k-tdep.c: Update/correct copyright
7780 notices.
7781
7782 2001-03-05 Kevin Buettner <kevinb@redhat.com>
7783
7784 * acconfig.h (HAVE_PRSYSENT_T, HAVE_PR_SIGSET_T,
7785 HAVE_PR_SIGACTION64_T, HAVE_PR_SIGINFO64_T): New configure
7786 macros.
7787 * configure.in (prsysent_t, pr_sigset_t, pr_sigaction64_t,
7788 pr_siginfo64_t): Test for these typedefs in <sys/procfs.h>.
7789 (sys/fault.h, sys/select.h): Test for presence of these
7790 header files.
7791 (ia64-*-aix*): Define NEW_PROC_API for this host.
7792 * configure: Regenerate.
7793 * config.in: Regenerate.
7794
7795 * configure.host (ia64-*-aix*): New host.
7796 * configure.tgt (ia64-*-aix*): New target.
7797
7798 2001-03-05 Andrew Cagney <ac131313@redhat.com>
7799
7800 * TODO (GDB 5.1 Known Problems): Document z8k as broken.
7801
7802 Mon Mar 5 11:56:09 2001 Christopher Faylor <cgf@cygnus.com>
7803
7804 * wince.c: Change realloc to xrealloc throughout.
7805 (handle_load_dll): Use void * rather than PTR in argument.
7806
7807 2001-03-04 Andrew Cagney <ac131313@redhat.com>
7808
7809 * ocd.h (ocd_xfer_memory): Add ``attrib'' parameter.
7810 * ocd.c (ocd_xfer_memory): Ditto.
7811 * ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
7812 * MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
7813 buildable with ,-Werror.
7814
7815 * Makefile.in (symfile_h): Define.
7816 (mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
7817 * mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
7818 * MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
7819 ,-Werror.
7820
7821 * dsrec.c (make_srec): Fix internal_error fmt arg.
7822 * MAINTAINERS: Document i960-coff as buildable with ,-Werror.
7823
7824 2001-03-03 Kevin Buettner <kevinb@redhat.com>
7825
7826 * solib-aix5.c (aix5_relocate_main_executable): Don't use ANOFFSET
7827 as an lvalue.
7828
7829 2001-03-02 Andrew Cagney <ac131313@redhat.com>
7830
7831 * MAINTAINERS (paper trail): Update.
7832
7833 * CONTRIBUTE: Update note on ``Fix PR gdb/4706'' convention.
7834
7835 2001-03-02 Andrew Cagney <ac131313@redhat.com>
7836
7837 From 2001-03-01 Tom Rix <trix@redhat.com>:
7838 * mn10200-tdep.c (mn10200_frame_chain): Pass 0 for ``pc''
7839 parameter to mn10200_analyze_prologue.
7840
7841 * config/mn10200/tm-mn10200.h: Include "regcache.h".
7842 * MAINTAINERS: Document that mn10200-elf target is buildable.
7843
7844 2001-03-02 Kevin Buettner <kevinb@redhat.com>
7845
7846 * config/ia64/xm-aix.h (GDB_GREGSET_T, GDB_FPREGSET_T): Move defines
7847 from here...
7848 * config/ia64/nm-aix.h (GDB_GREGSET_T, GDB_FPREGSET_T): ...to here.
7849 (MONTEREY): Don't define.
7850 (AIX5): Define.
7851
7852 2001-03-02 Matt Hiller <hiller@redhat.com>
7853
7854 * config/mn10300/tm-mn10300.h (E0_REGNUM): Correct to 15.
7855
7856 2001-03-02 Kevin Buettner <kevinb@redhat.com>
7857
7858 * sparc-nat.c (sparc-nat.c): Don't include self.
7859
7860 2001-03-01 J.T. Conklin <jtc@redback.com>
7861
7862 * defs.h (__CYGWIN__): Moved conditional which defines __CYGWIN__
7863 if __CYGWIN32__ is set from here.
7864 * config/i386/xm-cygwin.h: To here.
7865 * config/powerpc/xm-cygwin.h: To here.
7866
7867 * i386-stub.c (handle_exception): Use 'T' response packet.
7868
7869 2001-03-01 Michael Snyder <msnyder@mvstp600e.cygnus.com>
7870
7871 * m32r-tdep.c: Fix cut and paste error in comment.
7872
7873 2001-02-28 Michael Snyder <msnyder@mvstp600e.cygnus.com>
7874
7875 * symtab.c (print_msymbol_info): Print addresses by portable method
7876 longest_local_hex_string_custom. Allow for 64-bit addresses.
7877
7878 2001-03-01 J.T. Conklin <jtc@redback.com>
7879
7880 * gdbtypes.h (builtin_type_f_integer): Removed duplicate declaration.
7881 (MAX_OF_TYPE): Wrap macro definition in parenthesis.
7882 (MIN_OF_TYPE): Likewise.
7883
7884 * memattr.h (mem_access_mode): Removed extraneous trailing comma.
7885
7886 2001-03-01 Andrew Cagney <ac131313@redhat.com>
7887
7888 * Makefile.in (os9kread.o): Do not compile with WERROR_CFLAGS.
7889 * os9kread.c (os9k_process_one_symbol): Add assert to detect
7890 ``loses if sizeof (char *) > sizeof (int)''.
7891
7892 2001-03-01 Andrew Cagney <ac131313@redhat.com>
7893
7894 * gdb_assert.h: Document pragmatics behind gdb_assert's case.
7895
7896 2001-03-01 Andrew Cagney <ac131313@redhat.com>
7897
7898 * Makefile.in (gdbtk-cmds.o): Add $(regcache_h) to dependency
7899 lists.
7900 (mi-main.o): Ditto.
7901
7902 2001-03-01 Andrew Cagney <ac131313@redhat.com>
7903
7904 * Makefile.in (regcache_h): Define. Add $(regcache_h) to
7905 dependency lists.
7906
7907 2001-02-28 Michael Snyder <msnyder@mvstp600e.cygnus.com>
7908
7909 * printcmd.c (print_address_numeric): Update comments to refer
7910 to sizeof addr, not sizeof pointer.
7911 (x_command): Remove needless whitespace (shorten long line).
7912
7913 * breakpoint.c (print_one_breakpoint): Formatting clean-up.
7914 (read_memory_nobpt): Ditto.
7915 (ep_is_catchpoint): Ditto.
7916 (ep_is_shlib_catchpoint): Ditto.
7917 (ep_is_exception_catchpoint): Ditto.
7918 (describe_other_breakpoints): Ditto.
7919
7920 Wed Feb 28 20:37:36 2001 Andrew Cagney <ac131313@redhat.com>
7921
7922 * regcache.h (register_valid): Fix comment documenting valid
7923 states.
7924
7925 Tue Feb 27 23:56:23 2001 Andrew Cagney <ac131313@redhat.com>
7926
7927 From Steven Johnson:
7928 * regcache.h: New file.
7929
7930 * value.h (read_register_bytes, read_register_gen)
7931 (write_register_gen, write_register_bytes)
7932 (read_register, read_register_pid)
7933 (read_signed_register, read_signed_register_pid)
7934 (write_register, write_register_pid)
7935 (register_cached, set_register_cached)
7936 (register_changed, register_buffer)
7937 (registers_changed, supply_register): Move declaration from here.
7938 * regcache.h: To here.
7939 * gdbcore.h (registers_fetched): Ditto.
7940 * inferior.h (registers, registers_valid): Ditto.
7941
7942 * regcache.c (generic_target_read_pc, read_pc_pid, read_pc,
7943 generic_target_write_pc, write_pc_pid, write_pc,
7944 generic_target_read_sp, read_sp, generic_target_write_sp,
7945 write_sp, generic_target_read_fp, read_fp,
7946 generic_target_write_fp, write_fp): Add note that these functions
7947 will be moved from this file.
7948
7949 * a29k-tdep.c: Include "regcache.h".
7950 * a68v-nat.c: Ditto.
7951 * abug-rom.c: Ditto.
7952 * alpha-nat.c: Ditto.
7953 * alpha-tdep.c: Ditto.
7954 * alphabsd-nat.c: Ditto.
7955 * arc-tdep.c: Ditto.
7956 * arm-linux-nat.c: Ditto.
7957 * arm-linux-tdep.c: Ditto.
7958 * arm-tdep.c: Ditto.
7959 * blockframe.c: Ditto.
7960 * core-aout.c: Ditto.
7961 * core-sol2.c: Ditto.
7962 * corelow.c: Ditto.
7963 * cpu32bug-rom.c: Ditto.
7964 * cxux-nat.c: Ditto.
7965 * d10v-tdep.c: Ditto.
7966 * d30v-tdep.c: Ditto.
7967 * dbug-rom.c: Ditto.
7968 * dink32-rom.c: Ditto.
7969 * dve3900-rom.c: Ditto.
7970 * findvar.c: Ditto.
7971 * fr30-tdep.c: Ditto.
7972 * frame.c: Ditto.
7973 * go32-nat.c: Ditto.
7974 * h8300-tdep.c: Ditto.
7975 * h8500-tdep.c: Ditto.
7976 * hp300ux-nat.c: Ditto.
7977 * hppa-tdep.c: Ditto.
7978 * hppab-nat.c: Ditto.
7979 * hppah-nat.c: Ditto.
7980 * hppam3-nat.c: Ditto.
7981 * hpux-thread.c: Ditto.
7982 * i386-linux-nat.c: Ditto.
7983 * i386-linux-tdep.c: Ditto.
7984 * i386-tdep.c: Ditto.
7985 * i386aix-nat.c: Ditto.
7986 * i386b-nat.c: Ditto.
7987 * i386bsd-nat.c: Ditto.
7988 * i386gnu-nat.c: Ditto.
7989 * i386ly-tdep.c: Ditto.
7990 * i386m3-nat.c: Ditto.
7991 * i386mach-nat.c: Ditto.
7992 * i386nbsd-nat.c: Ditto.
7993 * i386v4-nat.c: Ditto.
7994 * i387-nat.c: Ditto.
7995 * i387-tdep.c: Ditto.
7996 * i960-tdep.c: Ditto.
7997 * ia64-aix-nat.c: Ditto.
7998 * ia64-linux-nat.c: Ditto.
7999 * ia64-tdep.c: Ditto.
8000 * infptrace.c: Ditto.
8001 * infrun.c: Ditto.
8002 * irix4-nat.c: Ditto.
8003 * irix5-nat.c: Ditto.
8004 * lin-lwp.c: Ditto.
8005 * lin-thread.c: Ditto.
8006 * lynx-nat.c: Ditto.
8007 * m3-nat.c: Ditto.
8008 * m32r-rom.c: Ditto.
8009 * m32r-tdep.c: Ditto.
8010 * m68hc11-tdep.c: Ditto.
8011 * m68k-tdep.c: Ditto.
8012 * m68klinux-nat.c: Ditto.
8013 * m68knbsd-nat.c: Ditto.
8014 * m68knbsd-tdep.c: Ditto.
8015 * m88k-nat.c: Ditto.
8016 * m88k-tdep.c: Ditto.
8017 * mac-nat.c: Ditto.
8018 * mcore-rom.c: Ditto.
8019 * mcore-tdep.c: Ditto.
8020 * mi/mi-main.c: Ditto.
8021 * mips-nat.c: Ditto.
8022 * mips-tdep.c: Ditto.
8023 * mipsm3-nat.c: Ditto.
8024 * mipsv4-nat.c: Ditto.
8025 * mn10200-tdep.c: Ditto.
8026 * mn10300-tdep.c: Ditto.
8027 * monitor.c: Ditto.
8028 * ns32km3-nat.c: Ditto.
8029 * ns32knbsd-nat.c: Ditto.
8030 * ocd.c: Ditto.
8031 * pa64solib.c: Ditto.
8032 * ppc-bdm.c: Ditto.
8033 * ppc-linux-nat.c: Ditto.
8034 * ppc-linux-tdep.c: Ditto.
8035 * ppcbug-rom.c: Ditto.
8036 * ppcnbsd-nat.c: Ditto.
8037 * ptx4-nat.c: Ditto.
8038 * regcache.c: Ditto.
8039 * remote-adapt.c: Ditto.
8040 * remote-array.c: Ditto.
8041 * remote-bug.c: Ditto.
8042 * remote-e7000.c: Ditto.
8043 * remote-eb.c: Ditto.
8044 * remote-es.c: Ditto.
8045 * remote-est.c: Ditto.
8046 * remote-hms.c: Ditto.
8047 * remote-mips.c: Ditto.
8048 * remote-mm.c: Ditto.
8049 * remote-nindy.c: Ditto.
8050 * remote-os9k.c: Ditto.
8051 * remote-rdi.c: Ditto.
8052 * remote-rdp.c: Ditto.
8053 * remote-sds.c: Ditto.
8054 * remote-sim.c: Ditto.
8055 * remote-st.c: Ditto.
8056 * remote-udi.c: Ditto.
8057 * remote-utils.c: Ditto.
8058 * remote-vx.c: Ditto.
8059 * remote-vx29k.c: Ditto.
8060 * remote-vx68.c: Ditto.
8061 * remote-vx960.c: Ditto.
8062 * remote-vxmips.c: Ditto.
8063 * remote-vxsparc.c: Ditto.
8064 * remote.c: Ditto.
8065 * rom68k-rom.c: Ditto.
8066 * rs6000-nat.c: Ditto.
8067 * rs6000-tdep.c: Ditto.
8068 * sh-tdep.c: Ditto.
8069 * sh3-rom.c: Ditto.
8070 * sol-thread.c: Ditto.
8071 * solib-svr4.c: Ditto.
8072 * somsolib.c: Ditto.
8073 * sparc-nat.c: Ditto.
8074 * sparc-tdep.c: Ditto.
8075 * sparcl-tdep.c: Ditto.
8076 * sparclet-rom.c: Ditto.
8077 * sun3-nat.c: Ditto.
8078 * sun386-nat.c: Ditto.
8079 * symm-nat.c: Ditto.
8080 * target.c: Ditto.
8081 * thread-db.c: Ditto.
8082 * thread.c: Ditto.
8083 * tic80-tdep.c: Ditto.
8084 * tracepoint.c: Ditto.
8085 * ultra3-nat.c: Ditto.
8086 * umax-xdep.c: Ditto.
8087 * uw-thread.c: Ditto.
8088 * v850-tdep.c: Ditto.
8089 * v850ice.c: Ditto.
8090 * valops.c: Ditto.
8091 * w65-tdep.c: Ditto.
8092 * w89k-rom.c: Ditto.
8093 * win32-nat.c: Ditto.
8094 * wince.c: Ditto.
8095 * z8k-tdep.c: Ditto.
8096
8097 2001-02-28 Matt Hiller <hiller@redhat.com>
8098
8099 * MAINTAINERS: Add Matt Hiller to Write After Approval list.
8100
8101 2001-02-27 Matt Hiller <hiller@redhat.com>
8102
8103 * mn10300-tdep.c (mn10300_stab_reg_to_regnum): New function.
8104 (mn10300_gdbarch_init): Set appropriate elements of gdbarch to
8105 mn10300_stab_reg_to_regnum.
8106
8107 Tue Feb 27 16:56:13 2001 David Taylor <taylor@redhat.com>
8108
8109 * symtab.c (search_symbols): Fix off by one error in test for
8110 error.
8111
8112 2001-02-23 Andrew Cagney <ac131313@redhat.com>
8113
8114 * config/sparc/sp64linux.mt: New file.
8115 * configure.tgt: Recognize sparc64-*-linux* as a sp64linux target.
8116 * configure.host: Recognize sparc64-*-linux* as a linux host.
8117
8118 From 2000-03-17 Jakub Jelinek <jakub@redhat.com>:
8119 * config/sparc/tm-sp64linux.h: New file.
8120
8121 2001-02-24 Kevin Buettner <kevinb@redhat.com>
8122
8123 * buildsym.c (push_subfile, pop_subfile): Replace call to abort()
8124 with call to internal_error().
8125 * dbxread.c (process_one_symbol): Likewise.
8126 * exec.c (build_section_table, xfer_memory): Likewise.
8127 * h8500-tdep.c (h8500_register_size, h8500_register_virtual_type):
8128 Likewise.
8129 * hpread.c (hpread_type_translate, hpread_read_array_type)
8130 (hpread_type_lookup): Likewise.
8131 * i386-tdep.c (gdb_print_insn_i386): Likewise.
8132 * i960-tdep.c (mem): Likewise
8133 * inflow.c (set_sigio_trap, clear_sigio_trap): Likewise.
8134 * infptrace.c (child_resume): Likewise.
8135 * infttrace.c (_initialize_infttrace): Likewise.
8136 * language.c (binop_result_type, add_language): Likewise.
8137 * lynx-nat.c (store_inferior_registers): Likewise.
8138 * m3-nat.c (port_chain_insert, m3_trace_me): Likewise.
8139 * mdebugread.c (parse_partial_symbols): Likewise.
8140 * monitor.c (monitor_printf_noecho, monitor_printf)
8141 (monitor_dump_regs): Likewise.
8142 * ocd.c (stu_put_packet): Likewise.
8143 * printcmd.c (decode_format, print_scalar_formatted): Likewise.
8144 * remote-bug.c (bug_open): Likewise.
8145 * remote-e7000.c (fetch_regs_from_dump, e7000_wait): Likewise.
8146 * remote-es.c (es1800_read_bytes): Likewise.
8147 * remote-mips.c (common_breakpoint): Likewise.
8148 * remote-rdp.c (send_rdp): Likewise.
8149 * remote-sds.c (putmessage): Likewise.
8150 * sparc-nat.c (fetch_inferior_registers, store_inferior_registers):
8151 Likewise.
8152 * sparcl-tdep.c (sparclite_download): Likewise.
8153 * symtab.c (lookup_partial_symbol): Likewise.
8154 * target.c (push_target, pop_target, initialize_targets): Likewise.
8155 * utils.c (internal_verror, malloc_botch, wrap_here, decimal2str):
8156 Likewise.
8157 * valprint.c (print_decimal, print_longest, print_longest)
8158 (strcat_longest): Likewise.
8159 * w65-tdep.c (init_frame_pc, w65_push_dummy_frame): Likewise.
8160 * xmodem.c (xmodem_send_packet): Likewise.
8161 * z8k-tdep.c (init_frame_pc, z8k_push_dummy_frame): Likewise.
8162 * config/h8500/tm-h8500.h (STORE_STRUCT_RETURN): Likewise.
8163 * config/mn10200/tm-mn10200.h (EXTRACT_RETURN_VALUE)
8164 (STORE_RETURN_VALUE): Likewise.
8165 * config/ns32k/nm-umax.h (REGISTER_U_ADDR): Likewise.
8166 * config/ns32k/xm-merlin.h (REGISTER_U_ADDR): Likewise.
8167 * config/z8k/tm-z8k.h (STORE_STRUCT_RETURN, STORE_RETURN_VALUE):
8168 Likewise.
8169
8170 2001-02-23 Andrew Cagney <ac131313@redhat.com>
8171
8172 * CONTRIBUTE: Document how to cite a problem report.
8173 * TODO: Note need to replace CONTRIBUTE with generated file.
8174
8175 * CONTRIBUTE: Mention that patches do not need to include the
8176 generated files gdbarch.h and gdbarch.c.
8177
8178 2001-02-21 Andrew Cagney <ac131313@redhat.com>
8179
8180 * value.h (get_saved_register): Move from here.
8181 * frame.h: To here.
8182
8183 2001-02-21 Kevin Buettner <kevinb@redhat.com>
8184
8185 * solib.h (in_svr4_dynsym_resolve_code): Delete declaration.
8186 (in_solib_dynsym_resolve_code): Add declaration.
8187 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Changed define to invoke
8188 in_solib_dynsym_resolve_code() rather than
8189 in_svr4_dynsym_resolve_code(). Also, removed the ifdefs
8190 which caused this macro to only be defined when
8191 SVR4_SHARED_LIBS is defined.
8192 * solib.c (in_solib_dynsym_resolve_code): New function.
8193 * solist.h (struct target_so_ops): Add new member
8194 in_dynsym_resolve_code.
8195 * solib-aix5.c (aix5_in_dynsym_resolve_code): Renamed from
8196 in_svr4_dynsym_resolve_code. Also, made static.
8197 (_initialize_aix5_solib): Initialize in_dynsym_resolve_code
8198 member in aix5_so_ops.
8199 * solib-svr4.c (svr4_in_dynsym_resolve_code): Renamed from
8200 in_svr4_dynsym_resolve_code. Also, added second version
8201 of this function which will be used when SVR4_SHARED_LIBS
8202 is not defined.
8203 (_initialize_svr4_solib): Initialize in_dynsym_resolve_code
8204 member in svr4_so_ops.
8205
8206 * ia64-aix-nat.c, ia64-aix-tdep.c, config/ia64/aix.mh,
8207 config/ia64/aix.mt, config/ia64/nm-aix.h, config/ia64/tm-aix.h,
8208 config/ia64/xm-aix.h: New files.
8209 * ia64-tdep.c (_initialize_ia64_tdep): Remove declaration.
8210 (ia64_aix_sigcontext_register_address): New declaration.
8211 (ia64_gdbarch_init): Provide for initialization of
8212 sigcontext_register_address member of struct tdep when
8213 on target is detected to be running AIX.
8214 * config/ia64/linux.mt (TDEPFILES): Add ia64-aix-tdep.o to
8215 this list.
8216
8217 2001-02-20 Kevin Buettner <kevinb@redhat.com>
8218
8219 * ia64-tdep.c (ia64_frameless_function_invocation): Implement.
8220 * config/ia64/linux.mh (NATDEPFILES): Use thread-db.o and lin-lwp.o
8221 for thread support instead of linux-thread.o and lin-thread.o.
8222 * config/ia64/nm-linux.h (PREPARE_TO_PROCEED, GET_THREAD_SIGNALS,
8223 ATTACH_LWP): Define to use the following lin-lwp.c functions...
8224 (lin_lwp_prepare_to_proceed, lin_thread_get_thread_signals,
8225 lin_lwp_attach_lwp): Declare.
8226
8227 2001-02-20 Andrew Cagney <ac131313@redhat.com>
8228
8229 * mips-tdep.c (do_fp_register_row, do_fp_register_row): Fix printf
8230 formatting.
8231
8232 2001-02-20 Kevin Buettner <kevinb@redhat.com>
8233
8234 * solib-aix5.c (solib-svr4.h): Remove include.
8235 (solib_break_names): Delete names which aren't actually
8236 used by AIX5.
8237 (bkpt_names): Remove.
8238 (aix5_relocate_main_executable, bfd_lookup_symbol): Replace calls
8239 to STREQ() with equivalent calls to strcmp().
8240 (in_svr4_dynsym_resolve_code, enable_break, bfd_lookup_symbol,
8241 aix5_solib_create_inferior_hook): Revise comments.
8242 (enable_break): Remove old ``bkpt_names'' code.
8243
8244 2001-02-19 Andrew Cagney <ac131313@redhat.com>
8245
8246 * Makefile.in (SFILES): Add frame.c .
8247 (COMMON_OBS): Add frame.o .
8248 (frame.o): New target.
8249
8250 * frame.c (find_saved_register):
8251 (default_get_saved_register):
8252 (get_saved_register):
8253 (read_relative_register_raw_bytes_for_frame):
8254 (read_relative_register_raw_bytes): Moved to here.
8255 * regcache.c: From here.
8256
8257 2001-02-20 Kevin Buettner <kevinb@redhat.com>
8258
8259 * solib-aix5.c: New file.
8260
8261 2001-02-20 Martin M. Hunt <hunt@redhat.com>
8262
8263 * solib.c (info_sharedlibrary_command): Don't assume pointers
8264 are the same size of long, call longest_local_hex_string_custom().
8265
8266 * solib-svr4.c (LM_ADDR): LM_ADDR is a signed offset, so
8267 extract_signed_integer() should be called instead of
8268 extract_address().
8269
8270 2001-02-20 Martin M. Hunt <hunt@redhat.com>
8271
8272 * MAINTAINERS: Add Martin Hunt to Write After Approval list.
8273
8274 2001-02-19 Andrew Cagney <ac131313@redhat.com>
8275
8276 Frm 2001-02-09 Jim Kingdon <jkingdon@engr.sgi.com>:
8277 * mips-tdep.c (mips_register_raw_size): If FP_REGISTER_DOUBLE,
8278 then floating point registers are 8 bytes.
8279
8280 2001-02-19 Michael Snyder <msnyder@mvstp600e.cygnus.com>
8281
8282 * parse.c (write_exp_msymbol): Make the type CORE_ADDR, to
8283 accomodate 64-bit addresses.
8284
8285 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
8286
8287 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>
8288 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux, not
8289 lookup_symbol, when trying to find a symbol with a mangled name,
8290 to avoid infinite recursion.
8291
8292 2001-02-18 Andrew Cagney <ac131313@redhat.com>
8293
8294 * TODO (5.2): Mention G++ 3.0 ABI. General cleanups.
8295
8296 2001-02-19 Jonathan Larmour <jlarmour@redhat.com>
8297
8298 * arm-tdep.c (check_prologue_cache): Fix off by 1 error.
8299 (save_prologue_cache): Ditto.
8300
8301 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
8302
8303 From: innadadadavida@yahoo.com:
8304 * partial-stab.h (switch): Check that pst is not null
8305 before dereferencing it.
8306
8307 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
8308
8309 From Andrew Cagney <cagney@b1.cygnus.com>:
8310 * symfile.c (add_symbol_file_command): Always initialize
8311 my_cleanup using a NULL cleanup.
8312
8313 2001-02-19 Eli Zaretskii <eliz@is.elta.co.il>
8314
8315 * demangle.c (demangling_style_names): New variable.
8316 (_initialize_demangler): Fill demangling_style_names with the
8317 names of known demangling styles from libiberty_demanglers[]. Use
8318 add_set_enum_cmd instead of add_set_cmd, to get completion on
8319 demangling style names.
8320
8321 * proc-api.c (_initialize_proc_api): Make `procfs-file' use
8322 file-name completion.
8323
8324 * remote-rdi.c (_initialize_remote_rdi): Ditto for `rdilogfile'.
8325
8326 * solib.c (_initialize_solib): Ditto for `solib-search-path' and
8327 `solib-absolute-prefix'.
8328
8329 * tracepoint.c (_initialize_tracepoint): Ditto for
8330 `save-tracepoints'.
8331
8332 * win32-nat.c (_initialize_inftarg): Ditto for `dll-symbols'.
8333
8334 * cli/cli-cmds.c (init_cli_cmds): Make `shell' and `make' use
8335 file-name completion.
8336
8337 * infcmd.c (_initialize_infcmd): Make the following commands use
8338 the file-name completer: `tty', `args', `path', `paths', and
8339 `run'.
8340
8341 2001-02-18 Eli Zaretskii <eliz@is.elta.co.il>
8342
8343 * go32-nat.c: Include i387-nat.h.
8344 (fetch_register): New function, uses some of the guts of
8345 go32_fetch_registers and calls i387_supply_register.
8346 (go32_fetch_registers): Most of the code moved into
8347 fetch_register. Use i387_supply_fsave.
8348 (store_register): Use i387_fill_fsave instead of custom code.
8349 (go32_store_registers): Use i387_fill_fsave.
8350
8351 * Makefile.in (go32-nat.o): Depend on i387-nat.h.
8352
8353 * config/i386/go32.mh (NATDEPFILES): Add i387-nat.o.
8354
8355 * completer.c (gdb_completer_file_name_break_characters): Remove
8356 slash from file-name break characters.
8357 [__MSDOS__]: Special definition for DOS/Windows file names.
8358 (line_completion_function): When completing on file names, bump
8359 `p' to the first file-name constituent character of `word', before
8360 invoking the completer.
8361
8362 2001-02-17 Mark Kettenis <kettenis@gnu.org>
8363
8364 * i387-nat.c: Include "i387-nat.h". Use regnum instead of regno
8365 consistently for parameter names. Fix comments accordingly.
8366 (i387_supply_register): New function.
8367 (i387_supply_fsave): Implement using i387_supply_register.
8368 * i387-nat.h: Use regnum instead of regno consistently for
8369 parameter names. Fix comments accordingly.
8370 (i387_supply_register): New prototype.
8371
8372 2001-02-16 Michael Snyder <msnyder@mvstp600e.cygnus.com>
8373
8374 * remote.c (build_remote_gdbarch_data): Use new TARGET_ADDR_BIT
8375 instead of TARGET_PTR_BIT (to support Harvard architectures).
8376
8377 2001-02-16 Andrew Cagney <ac131313@redhat.com>
8378
8379 From 2001-02-11 Paul Hilfinger <hilfingr@lisbon.int.act-europe.fr>
8380 * hpux-thread.c (hpux_thread_xfer_memory): Add mem_attrib
8381 argument to parameter list and to call in order to conform to
8382 to_xfer_memory field of struct target_ops.
8383
8384 2001-02-12 Michael Chastain <chastain@redhat.com>
8385
8386 * somsolib.c (som_solib_add_solib_objfile): Do not use
8387 section relocation feature of syms_from_objfile. Do my own
8388 section relocation, offsetting each section of the som by
8389 either text_addr - text_link_addr or data_start.
8390
8391 2001-02-16 Andrew Cagney <ac131313@redhat.com>
8392
8393 * TODO (5.1): Move ``Hardware watchpint problems'' out of 5.1.
8394
8395 2001-02-16 Andrew Cagney <ac131313@redhat.com>
8396
8397 * MAINTAINERS (paper trail): Update.
8398
8399 2001-02-16 Mark Kettenis <kettenis@gnu.org>
8400
8401 * target.h (target_fetch_registers): Fix comment.
8402
8403 2001-02-15 Andrew Cagney <ac131313@redhat.com>
8404
8405 * f-exp.y: Include <ctype.h>.
8406 (parse_number): Ensure that ``i'' is always initialized.
8407
8408 2001-02-14 Jim Kingdon <jkingdon@engr.sgi.com>
8409
8410 * MAINTAINERS: Add myself to paper trail section.
8411
8412 2001-02-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
8413
8414 * configure.in (AC_CHECK_HEADERS): Add sys/file.h.
8415 * configure, config.in: Regenerate.
8416 * corelow.c: Include <sys/file.h> if present.
8417
8418 2001-02-14 Andrew Cagney <ac131313@redhat.com>
8419
8420 * inflow.c (terminal_ours_1): Initialize ``osigtou''. Only
8421 declare when have SIGTTOU.
8422
8423 2001-02-14 Eli Zaretskii <eliz@is.elta.co.il>
8424
8425 * config/djgpp/fnchange.lst: Add entries for gdb/gdbtk/*/ChangeLog-*.
8426
8427 2001-02-12 Jim Kingdon <jkingdon@engr.sgi.com>
8428
8429 * MAINTAINERS: Update my email address.
8430
8431 2001-02-11 Eli Zaretskii <eliz@is.elta.co.il>
8432
8433 * NEWS: Document that "info symbol" works with COFF debug info and
8434 its variants.
8435
8436 * minsyms.c (lookup_minimal_symbol_by_pc_section): Don't skip
8437 symbols whose SYMBOL_BFD_SECTION is NULL.
8438
8439 2001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8440
8441 Get rid of AIX specific PC_LOAD_SEGMENT, replace with PC_SOLIB.
8442 * xcoffsolib.c (xcoff_solib_address): Renamed from
8443 pc_load_segment_name. Return NULL if address is not in a shared
8444 library. Cleanup shared library name construction, using xasprintf.
8445 Format shared library member names consistent with format in exec.c.
8446 (solib_info): Format shared library member names consistent with
8447 format in exec.c.
8448 * config/rs6000/nm-rs6000.h: Replace PC_LOAD_SEGMENT with PC_SOLIB,
8449 using xcoff_solib_address for PC_SOLIB definition.
8450 * stack.c (print_frame): Remove PC_LOAD_SEGMENT code, no longer
8451 needed.
8452
8453 2001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8454
8455 * mipsread.c (read_alphacoff_dynamic_symtab): Replace alloca calls
8456 with xmalloc calls and cleanups.
8457
8458 2001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8459
8460 * rs6000-nat.c (child_xfer_memory): Add missing parameter
8461 'struct mem_attrib *' required by 2001-01-23 change.
8462
8463 2001-02-08 Jim Kingdon <jkingdon@engr.sgi.com>
8464
8465 Updates to "make TAGS":
8466 * Makefile.in (ALLDEPFILES): Remove altos-xdep.c arm-convert.s
8467 arm-xdep.c convex-tdep.c convex-xdep.c pyr-tdep.c pyr-xdep.c
8468 tahoe-tdep.c.
8469 (TAGFILES_NO_SRCDIR): Add $(SUBDIR_CLI_SRCS).
8470
8471 2001-02-08 Eli Zaretskii <eliz@is.elta.co.il>
8472
8473 * config/djgpp/fnchange.lst: Remove extraneous "too many dots".
8474
8475 Wed Feb 7 22:39:26 2001 Andrew Cagney <cagney@redhat.com>
8476
8477 From Dean Luick <luick@cray.com>:
8478 * defs.h (continuation): Remove unused global variable.
8479
8480 Wed Feb 7 22:28:31 2001 Andrew Cagney <cagney@redhat.com>
8481
8482 * configure.tgt: Remove references to convex, pyramid, altos and
8483 tahoe.
8484 * configure.host: Ditto.
8485 * MAINTAINERS: Ditto.
8486 * NEWS: Update.
8487
8488 * tahoe-tdep.c: Delete obsolete file.
8489 * pyr-xdep.c: Ditto.
8490 * pyr-tdep.c: Ditto.
8491 * convex-tdep.c: Ditto.
8492 * convex-xdep.c: Ditto.
8493 * config/tahoe/xm-tahoe.h: Ditto.
8494 * config/tahoe/tm-tahoe.h: Ditto.
8495 * config/tahoe/tahoe.mt: Ditto.
8496 * config/tahoe/tahoe.mh: Ditto.
8497 * config/pyr/xm-pyr.h: Ditto.
8498 * config/pyr/tm-pyr.h: Ditto.
8499 * config/pyr/pyramid.mt: Ditto.
8500 * config/pyr/pyramid.mh: Ditto.
8501 * config/m68k/xm-altos.h: Ditto.
8502 * config/m68k/tm-altos.h: Ditto.
8503 * config/m68k/altos.mt: Ditto.
8504 * config/m68k/altos.mh: Ditto.
8505 * config/convex/xm-convex.h: Ditto.
8506 * config/convex/tm-convex.h: Ditto.
8507 * config/convex/convex.mt: Ditto.
8508 * config/convex/convex.mh: Ditto.
8509 * config/convex/Convex.notes: Ditto.
8510 * config/arm/xm-arm.h: Ditto.
8511 * config/arm/nm-arm.h: Ditto.
8512 * config/arm/arm.mt: Ditto.
8513 * config/arm/arm.mh: Ditto.
8514 * arm-convert.s: Ditto.
8515 * arm-xdep.c: Ditto.
8516 * altos-xdep.c: Ditto.
8517
8518 Wed Feb 7 19:41:21 2001 Andrew Cagney <cagney@redhat.com>
8519
8520 * defs.h (internal_error, internal_verror): Add __FILE__ and
8521 __LINE__ parameter.
8522 * utils.c (internal_error, internal_verror): Update.
8523
8524 * v850-tdep.c: Update calls to internal_error.
8525 * utils.c: Ditto.
8526 * ui-out.c: Ditto.
8527 * ui-file.c: Ditto.
8528 * target.h: Ditto.
8529 * symtab.h: Ditto.
8530 * symm-nat.c: Ditto.
8531 * sparc-tdep.c: Ditto.
8532 * source.c: Ditto.
8533 * serial.c: Ditto.
8534 * rs6000-tdep.c: Ditto.
8535 * rs6000-nat.c: Ditto.
8536 * remote.c: Ditto.
8537 * remote-vx.c: Ditto.
8538 * remote-sim.c: Ditto.
8539 * remote-mips.c: Ditto.
8540 * regcache.c: Ditto.
8541 * objfiles.h: Ditto.
8542 * objfiles.c: Ditto.
8543 * mn10300-tdep.c: Ditto.
8544 * mips-tdep.c: Ditto.
8545 * maint.c: Ditto.
8546 * m68k-tdep.c: Ditto.
8547 * m3-nat.c: Ditto.
8548 * language.c: Ditto.
8549 * infptrace.c: Ditto.
8550 * inferior.h: Ditto.
8551 * infcmd.c: Ditto.
8552 * ia64-tdep.c: Ditto.
8553 * i386-tdep.c: Ditto.
8554 * i386-linux-nat.c: Ditto.
8555 * hppah-nat.c: Ditto.
8556 * go32-nat.c: Ditto.
8557 * findvar.c: Ditto.
8558 * f-lang.c: Ditto.
8559 * elfread.c: Ditto.
8560 * event-loop.c: Ditto.
8561 * dwarf2read.c: Ditto.
8562 * dsrec.c: Ditto.
8563 * d30v-tdep.c: Ditto.
8564 * d10v-tdep.c: Ditto.
8565 * cli/cli-setshow.c: Ditto.
8566 * cli/cli-script.c: Ditto.
8567 * ch-exp.c: Ditto.
8568 * breakpoint.c: Ditto.
8569 * ax-gdb.c: Ditto.
8570 * arch-utils.c: Ditto.
8571 * a29k-tdep.c: Ditto.
8572 * gdb_assert.h: Ditto.
8573 * gdbarch.sh: Ditto.
8574 * gdbarch.h, gdbarch.c: Re-generate.
8575
8576 2001-02-07 Andrew Cagney <ac131313@redhat.com>
8577
8578 From Mark Kettenis <kettenis@gnu.org>:
8579 * event-top.h [!STOP_SIGNAL]: #include <signal.h>.
8580
8581 2001-02-07 Andrew Cagney <ac131313@redhat.com>
8582
8583 * remote-sim.c (dump_mem): Cleanup printf format argument.
8584 * MAINTAINERS: Update, mn10300-elf now builds.
8585
8586 2001-02-07 Mark Kettenis <kettenis@gnu.org>
8587
8588 * event-top.c: Remove duplicate #include <signal.h>.
8589
8590 2001-02-06 Andrew Cagney <ac131313@redhat.com>
8591
8592 * sol-thread.c (restore_inferior_pid): Save the PID in a freshly
8593 allocated buffer.
8594 (save_inferior_pid): Restore the PID from that tempoary
8595 buffer. Delete the buffer.
8596 * utils.c (make_cleanup_close, do_close_cleanup): Ditto for FD.
8597
8598 2001-02-06 Andrew Cagney <ac131313@redhat.com>
8599
8600 * MAINTAINERS: Add ``The Obvious Fix Rule''.
8601
8602 2001-02-06 Andrew Cagney <ac131313@redhat.com>
8603
8604 * MAINTAINERS: Add Michael Snyder to Solaris/SPARC list.
8605
8606 2001-02-06 Andrew Cagney <ac131313@cygnus.com>
8607
8608 * gdbarch.sh: Include "gdb_assert.h".
8609 (struct gdbarch): Change ``nr_data'' to unsigned.
8610 (alloc_gdbarch_data, free_gdbarch_data): New functions.
8611 (gdbarch_free): Free the data-pointer vector. Use xfree to delete
8612 architecture vector.
8613 (struct gdbarch_data, struct gdbarch_data_registration): Move init
8614 method to gdbarch_data. Add free method, make index unsigned.
8615 (struct gdbarch_data_registry): Make nr unsigned.
8616 (register_gdbarch_data): Add free parameter. Store in
8617 gdbarch_data.
8618 (init_gdbarch_data): Use set_gdbarch_data.
8619 (set_gdbarch_data): New function.
8620
8621 * gdbarch.h, gdbarch.c: Re-generate.
8622
8623 2001-02-06 Michael Sokolov <msokolov@ivan.Harhan.ORG>
8624
8625 * ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
8626 fprintf_filtered with correct arguments.
8627
8628 2001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
8629 Submitted by Paul Hilfinger (hilfingr@gnat.com)
8630 and Andrei Petrov (and@genesyslab.com).
8631 * findvar.c: Buffers of size MAX_REGISTER_RAW_SIZE or REGISTER_BYTES
8632 must be allocated dynamically, since these are no longer constants.
8633 * infcmd.c: Ditto.
8634 * regcache.c: Ditto.
8635 * remote.c: Ditto.
8636 * sol-thread.c: Ditto.
8637 * valops.c: Ditto.
8638 * config/sparc/sun4sol2.mh (MH_CFLAGS): Add -I/usr/include/v9, as a
8639 work-around for a missing Sun header file in solaris for sparc64.
8640
8641 2001-02-04 Philip Blundell <philb@gnu.org>
8642
8643 * config/arm/linux.mh (NATDEPFILES): Add proc-service.o,
8644 thread-db.o, lin-lwp.o; remove lin-thread.o, linux-thread.o.
8645 * config/arm/nm-linux.h (PREPARE_TO_PROCEED, ATTACH_LWP,
8646 GET_THREAD_SIGNALS): Define.
8647 * arm-linux-nat.c (fill_gregset): Correct type of argument.
8648 (supply_gregset): Likewise.
8649 (fill_fpregset): Likewise.
8650 (supply_fpregset): Likewise.
8651
8652 Tue Feb 6 11:58:57 2001 David Taylor <taylor@redhat.com>
8653
8654 * valops.c (value_cast): If casting a scalar to a pointer, do not
8655 issue a message about truncation unless it exceeds the length of
8656 an address, not the length of a pointer. This is because what the
8657 user gives us is an address, not a pointer, and we will ultimately
8658 convert it (via ADDRESS_TO_POINTER) to a pointer, not truncate it
8659 to a pointer. This allows things like "print *(int *)0x01000234"
8660 to work without generating a misleading message on a target having
8661 two byte pointers and four byte addresses.
8662
8663 2001-02-05 Christopher Faylor <cgf@cygnus.com>
8664
8665 * win32-nat.c: Change PTR to void * throughout.
8666
8667 2001-02-05 J.T. Conklin <jtc@redback.com>
8668
8669 * signals.h: Removed.
8670 * event-top.c (#include <signal.h>): Changed from signals.h.
8671 * inflow.c: Likewise.
8672 * mac-xdep.c: Likewise.
8673 * ser-pipe.c: Likewise.
8674 * ser-tcp.c: Likewise.
8675 * standalone.c: Likewise.
8676 * top.c: Likewise.
8677 * utils.c: Likewise.
8678 * Makefile.in: Removed signals.h from dependencies.
8679
8680 2001-02-05 Christopher Faylor <cgf@cygnus.com>
8681
8682 Change suggested by Dean Luick <luick@cray.com>
8683 * inferior.h (step_over_calls_kind): Remove trailing comma from
8684 last enum element.
8685 (step_over_calls): Declare as extern rather than global.
8686
8687 2001-02-05 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
8688
8689 * sh-tdep.c: Update copyright.
8690 (sh_extract_return_value): Rewrite.
8691 (sh3e_sh4_extract_return_value): New function.
8692 (sh_gdbarch_init): Initialize gdbarch_extract-return_value to new
8693 version of the function for sh3e and sh4 CPUs.
8694
8695 2001-02-05 Michael Chastain <chastain@redhat.com>
8696
8697 * hppah-nat.c (child_xfer_memory): Add parameter 'struct mem_attrib *'
8698 to conform with interface change.
8699
8700 2001-02-04 Eli Zaretskii <eliz@is.elta.co.il>
8701
8702 * config/djgpp/fnchange.lst: Tweak to make consistent with the
8703 new files.
8704
8705 * config/djgpp/djconfig.sh: Use explicit absolute file name when
8706 invoking `find'.
8707
8708 * ser-go32.c (dos_write) [UART_FIFO_WORKS]: Use outportsb only if
8709 UART_FIFO_WORKS is defined. Otherwise use outportb.
8710 From Francisco Pastor <fpastor.etra-id@etra.es>
8711
8712 * go32-nat.c (go32_xfer_memory): Make the argument list consistent
8713 with target.h's `to_xfer_memory' member.
8714
8715 2001-02-02 J.T. Conklin <jtc@redback.com>
8716
8717 * ppc-bdm.c (#include <signal.h>): Removed.
8718 * remote-array.c: Likewise.
8719 * remote-bug.c: Likewise.
8720 * remote-e7000.c: Likewise.
8721 * remote-mips.c: Likewise.
8722 * remote-os9k.c: Likewise.
8723 * remote-st.c: Likewise.
8724 * remote-udi.c: Likewise.
8725 * remote-vx29k.c: Likewise.
8726 * remote-vx68.c: Likewise.
8727 * remote-vx960.c: Likewise.
8728 * remote-vxmips.c: Likewise.
8729 * remote-vxsparc.c: Likewise.
8730
8731 2001-02-02 John Moore <jmoore@redhat.com>
8732
8733 * remote-utils.h (sr_set_device): Changed free() to xfree() where
8734 appropriate. Also changed Copyright to include 2001.
8735 * symtab.h (obstack_chunk_free, SYMBOL_INIT_DEMANGLED_NAME): Likewise.
8736 * value.h (value_free): Likewise.
8737 * gdbarch.sh (gdbarch_free): Likewise.
8738 * gdbarch.c, gdbarch.h: Regenerated.
8739
8740 2001-02-02 John Moore <jmoore@redhat.com>
8741
8742 * cli/cli-cmds.c (apropos_command): Changed occurance of free() to
8743 xfree(). Also changed Copyright to include 2001.
8744
8745 2001-02-02 J.T. Conklin <jtc@redback.com>
8746
8747 * monitor.c (#include "gdb_wait.h"): Removed.
8748 * ocd.c: Likewise.
8749 * ppc-bdm.c: Likewise.
8750 * remote-adapt.c: Likewise.
8751 * remote-array.c: Likewise.
8752 * remote-bug.c: Likewise.
8753 * remote-e7000.c: Likewise.
8754 * remote-eb.c: Likewise.
8755 * remote-es.c: Likewise.
8756 * remote-mips.c: Likewise.
8757 * remote-mm.c: Likewise.
8758 * remote-nindy.c: Likewise.
8759 * remote-os9k.c: Likewise.
8760 * remote-rdi.c: Likewise.
8761 * remote-rdp.c: Likewise.
8762 * remote-sds.c: Likewise.
8763 * remote-sim.c: Likewise.
8764 * remote-st.c: Likewise.
8765 * remote-udi.c: Likewise.
8766 * remote-vx.c: Likewise.
8767 * remote-vx29k.c: Likewise.
8768 * remote-vx68.c: Likewise.
8769 * remote-vx960.c: Likewise.
8770 * remote-vxmips.c: Likewise.
8771 * remote-vxsparc.c: Likewise.
8772 * remote.c: Likewise.
8773 * ser-pipe.c: Likewise.
8774 * ser-unix.c: Likewise.
8775 * Makefile.in: Updated dependencies.
8776
8777 2001-01-31 David Smith <dsmith@redhat.com>
8778
8779 * event-loop.c: Change inclusion of string.h to gdb_string.h and
8780 updated the copyright notice.
8781 * ser-pipe.c: Ditto.
8782 * mi/mi-cmds.c: Ditto.
8783 * mi/mi-console.c: Ditto.
8784 * mi/mi-getopt.c: Ditto.
8785 * mi/mi-parse.c: Ditto.
8786
8787 2001-01-31 David Smith <dsmith@redhat.com>
8788
8789 * MAINTAINERS: Add David Smith to Write After Approval list.
8790
8791 Tue Jan 30 15:43:08 2001 Andrew Cagney <cagney@cygnus.com>
8792
8793 * cli/cli-utils.c (putchar_filtered): Move function from here.
8794 * utils.c (putchar_filtered): To here.
8795 * cli/cli-utils.h (putchar_filtered): Move declaration from here.
8796 * defs.h (putchar_filtered): To here.
8797
8798 Tue Jan 30 17:27:11 2001 Andrew Cagney <cagney@redhat.com>
8799
8800 * configure.in (AC_CHECK_FUNCS): Replace vfork test with
8801 AC_FUNC_VFORK macro.
8802 * config.in, configure: Re-generate.
8803
8804 * gdb_vfork.h: New file.
8805 * ser-pipe.c (pipe_open): Update. Include "gdb_vfork.h".
8806 * fork-child.c (fork_inferior): Ditto.
8807
8808 Tue Jan 30 17:09:07 2001 Andrew Cagney <cagney@redhat.com>
8809
8810 * defs.h (strsave): Delete declaration.
8811 * utils.c (strsave): Delete definition.
8812 * TODO (strsave): Update
8813
8814 * mac-xdep.c (tilde_expand): Replace strsave with xstrdup.
8815 * sparcl-tdep.c (sparclite_open): Ditto.
8816 * mips-tdep.c (mips_set_processor_type_command): Ditto.
8817 (_initialize_mips_tdep): Ditto.
8818 * solib.c (solib_open): Ditto.
8819 * symfile.c (add_filename_language): Ditto.
8820 (set_ext_lang_command): Ditto.
8821 * source.c (init_source_path): Ditto.
8822 (mod_path): Ditto.
8823 * sh3-rom.c (sh3_open): Ditto.
8824 (sh3e_open): Ditto.
8825 * serial.c (serial_open): Ditto.
8826 * remote-mips.c (common_open): Ditto.
8827 * monitor.c (monitor_open): Ditto.
8828 * m32r-rom.c (m32r_upload_command): Ditto.
8829 * infcmd.c (path_command): Ditto.
8830 * f-exp.y (parse_number): Ditto.
8831 * breakpoint.c (create_longjmp_breakpoint): Ditto.
8832 (create_thread_event_breakpoint): Ditto.
8833 * arc-tdep.c (arc_set_cpu_type_command): Ditto.
8834 (_initialize_arc_tdep): Ditto.
8835
8836 Tue Jan 30 15:14:26 2001 Andrew Cagney <cagney@skil>
8837
8838 * cli/cli-script.c (define_command): Check for a bad hook value in
8839 switch statement.
8840
8841 2001-01-30 J.T. Conklin <jtc@redback.com>
8842
8843 * configure/sh/embed.mt: New file.
8844 * configure/sh/linux.mt: New file.
8845 * configure/sh/sh.mt: Removed.
8846 * configure.tgt (sh-*-hms,sh-*-coff*,sh-*-elf*,sh-*-linux): New targets.
8847 (sh-*-*): Removed.
8848
8849 2001-01-29 Michael Chastain <chastain@redhat.com>
8850
8851 * symtab.c (lookup_block_symbol): Use 'namespace' parameter in
8852 symbol comparisons in binary search.
8853
8854 2001-01-27 Christopher Faylor <cgf@cygnus.com>
8855
8856 * win32-nat.c (child_xfer_memory): Add missing argument required by
8857 2001-01-23 change.
8858
8859 2001-01-27 Mark Kettenis <kettenis@gnu.org>
8860
8861 * ui-out.c (do_list_end): New function.
8862 (make_cleanup_ui_out_list_end): New function.
8863 * ui-out.h: Provide prototype for make_cleanup_ui_out_list_end.
8864 * stack.c (print_frame) [UI_OUT]: Call
8865 make_cleanup_ui_out_list_end to make sure we mark the end of the
8866 list if we do a non-local exit. At the end of the function,
8867 instead of calling ui_out_list_end directly, let do_cleanups
8868 handle it.
8869
8870 2001-01-26 Fernando Nasser <fnasser@redhat.com>
8871
8872 Fix double parsing of filenames passed as command line arguments
8873 to GDB (causes weird handling of escape characters).
8874 Also, remove dependencies on the CLI from libgdb.
8875 * call-cmds.h: Remove declaration of exec_file_command().
8876 * gdbcore.h: Remove declaration of exec_file_command().
8877 Add declarations for exec_open() and exec_file_clear().
8878 * symfile.h: Add declarations for symbol_file_add_main() and
8879 symbol_file_clear().
8880 * exec.c (exec_open): New function. Implements to_open for exec
8881 targets.
8882 (exec_file_clear): New function. Makes GDB forget about a previously
8883 specified executable file.
8884 (exec_file_attach): Move parsing of arguments from here ...
8885 (exec_file_command): ... to here.
8886 (init_exec_ops): Use exec_open(), not exec_file_command() to
8887 implement to_open for exec targets.
8888 * symfile.c (symbol_file_add_main): New function. Call symbol_file_add()
8889 with default values. Used when the file name has already been parsed.
8890 (symbol_file_clear): New function. Makes GDB forget about previously
8891 read symbols.
8892 (symbol_file_command): Call the above function instead of inline code.
8893 * main.c: Include "symfile.h" and "gdbcore.h" instead of the deprecated
8894 "call-cmds.h".
8895 (captured_main): Call exec_file_attach() and symbol_file_add_main()
8896 instead of exec_file_command() and symbol_file_command().
8897 (captured_main): Add comment.
8898 * corefile.c: Include "symfile.h".
8899 (core_file_command): Call symbol_file_add_main() instead of
8900 symbol_file_command().
8901 (reopen_exec_file): Call exec_open() instead of exec_file_command().
8902 * infcmd.c: Include "symfile.h".
8903 (attach_command): Call symbol_file_add_main() instead of
8904 symbol_file_command().
8905 * infrun.c: Remove comment about the inclusion of "symfile.h",
8906 not any longer appropriate.
8907 (follow_exec): Call symbol_file_add_main() instead of
8908 symbol_file_command().
8909 * remote-es.c: Include "symfile.h".
8910 (es1800_load): Call symbol_file_add_main() instead of
8911 symbol_file_command().
8912 * remote-vx.c: Remove comment about the inclusion of "symfile.h",
8913 not any longer appropriate.
8914 (vx-wait): Call symbol_file_add_main() instead of
8915 symbol_file_command().
8916 * solib-svr4.c (open_symbol_file_object): Call symbol_file_add_main()
8917 instead of symbol_file_command().
8918 * v850ice.c (ice_file): Call exec_open(), exec_file_attach() and
8919 symbol_file_add_main() instead of exec_file_command() and
8920 symbol_file_command().
8921 * Makefile.in: Update dependencies.
8922
8923 2001-01-26 Jeff Holcomb <jeffh@redhat.com>
8924
8925 * remote-udi.c (udi_open): Change strdup to xstrdup.
8926 * thread.c (thread_apply_all_command): Change strdup to xstrdup.
8927 Update copyright message.
8928 * varobj.c (delete_variable_1): Likewise.
8929
8930 * gdb_string.h: Remove declaration of strdup. Update copyright
8931 message.
8932 * config/xm-mpw.h: Likewise.
8933 * config/i386/xm-i386mach.h: Likewise.
8934 * config/m68k/xm-apollo68b.h: Likewise.
8935 * config/m68k/xm-hp300bsd.h: Likewise.
8936 * config/rs6000/xm-rs6000.h: Likewise.
8937 * config/vax/xm-vaxult.h: Remove declaration of strdup.
8938 * config/vax/xm-vaxult2.h: Likewise.
8939
8940 2001-01-26 Jeff Holcomb <jeffh@redhat.com>
8941
8942 * MAINTAINERS: Add Jeff Holcomb to Write After Approval list.
8943
8944 2001-01-25 J.T. Conklin <jtc@redback.com>
8945
8946 * target.c (target_xfer_memory_partial): Return -1 on failure due
8947 to invalid access mode attribute.
8948
8949 2001-01-25 Christopher Faylor <cgf@cygnus.com>
8950
8951 * win32-nat.c (_initialize_core_win32): Prototype correctly.
8952
8953 2001-01-25 Mark Kettenis <kettenis@gnu.org>
8954
8955 * config/alpha/tm-fbsd.h: Update copyright.
8956 (USE_STRUCT_CONVENTION): Define in terms of
8957 alphabsd_use_struct_convention.
8958 * config/alpha/fbsd.mt (TDEPFILES): Add alphafbsd-tdep.c.
8959 * alphafbsd-tdep.c: New file.
8960
8961 2001-01-24 Fernando Nasser <fnasser@redhat.com>
8962
8963 * top.c (print_gdb_version): Update Copyright year.
8964
8965 2001-01-24 J.T. Conklin <jtc@redback.com>
8966
8967 * dcache.c (dcache_write_line): Fix typo.
8968
8969 * memattr.c (delete_mem_region): Replace free() with xfree().
8970 (mem_number): Add explicit type.
8971
8972 * sol-thread.c (sol_thread_xfer_memory): Add attrib argument.
8973 (rw_common): Likewise.
8974
8975 2001-01-24 Fernando Nasser <fnasser@redhat.com>
8976
8977 * infcmd.c (get_inferior_args, set_inferior_args): Accessor functions
8978 for the inferior program arguments.
8979 (run_command, run_no_args_command, init_infcmd)): Use accessor
8980 functions to set the inferior program arguments.
8981 * inferior.h: Add definitions to the accessor functions above.
8982
8983 2001-01-23 Jim Blandy <jimb@redhat.com>
8984
8985 * dwarf2read.c (read_tag_const_type, read_tag_volatile_type):
8986 Implement these correctly, using make_cv_type.
8987
8988 2001-01-23 J.T. Conklin <jtc@redback.com>
8989
8990 * exec.c (xfer_memory): Add attrib argument.
8991 * infptrace.c (child_xfer_memory): Likewise.
8992 * lin-lwp.c (lin_lwp_xfer_memory): Likewise.
8993 * monitor.c (monitor_xfer_memory): Likewise.
8994 * remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
8995 * remote-array.c (array_xfer_memory): Likewise.
8996 * remote-bug.c (bug_xfer_memory): Likewise.
8997 * remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
8998 * remote-eb.c (eb_xfer_inferior_memory): Likewise.
8999 * remote-es.c (es1800_xfer_inferior_memory): Likewise.
9000 * remote-mips.c (mips_xfer_memory): Likewise.
9001 * remote-mm.c (mm_xfer_inferior_memory): Likewise.
9002 * remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
9003 * remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
9004 * remote-rdi.c (arm_rdi_xfer_memory): Likewise.
9005 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
9006 * remote-sds.c (sds_xfer_memory): Likewise.
9007 * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
9008 * remote-st.c (st2000_xfer_inferior_memory): Likewise.
9009 * remote-udi.c (udi_xfer_inferior_memory): Likewise.
9010 * remote-vx.c (vx_xfer_memory): Likewise.
9011 * remote.c (remote_xfer_memory): Likewise.
9012 * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
9013 * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
9014 * thread-db.c (thread_db_xfer_memory): Likewise.
9015
9016 * target.h (#include "memattr.h"): Added.
9017 (target_ops.to_xfer_memory): Add attrib argument.
9018
9019 * wince.c (_initialize_inftarg): Removed call to set_dcache_state.
9020 * dcache.h (set_dcache_state): Removed declaration.
9021 * dcache.c (set_dcache_state): Removed definition
9022
9023 * dcache.c: Update module comment, as dcache is now enabled and
9024 disabled with memory region attributes instead of by the global
9025 variable "remotecache". Add comment describing the interaction
9026 between dcache and memory region attributes.
9027 (dcache_xfer_memory): Add comment describing benefits of moving
9028 cache writeback to a higher level.
9029 (dcache_struct): Removed cache_has_stuff field. This was used to
9030 record whether the cache had been accessed in order to invalidate
9031 it when it was disabled. However, this is not needed because the
9032 cache is write through and the code that enables, disables, and
9033 deletes memory regions invalidate the cache. Add comment which
9034 suggests that we could be more selective and only invalidate those
9035 cache lines containing data from those memory regions.
9036 (dcache_invalidate): Updated.
9037 (dcache_xfer_memory): Updated.
9038
9039 (dcache_alloc): Don't abort() if dcache_enabled_p is clear.
9040 (dcache_xfer_memory): Removed code that called do_xfer_memory() to
9041 perform a uncached transfer if dcache_enabled_p was clear. This
9042 function is now only called if caching is enabled for the memory
9043 region.
9044 (dcache_info): Always print cache info.
9045
9046 * target.c (do_xfer_memory): Add attrib argument.
9047 (target_xfer_memory, target_xfer_memory_partial): Break transfer
9048 into chunks defined by memory regions, pass region attributes to
9049 do_xfer_memory().
9050 * dcache.c (dcache_read_line, dcache_write_line): Likewise.
9051
9052 * Makefile.in (SFILES): Add memattr.c.
9053 (COMMON_OBS): Add memattr.o.
9054 (dcache.o): Add target.h to dependencies.
9055 * memattr.c: New file.
9056 * memattr.h: Likewise.
9057
9058 * config/m32r/m32r.mt (GDBSERVER_LIBS): Added ../../intl/libintl.a.
9059 * config/mips/vr5000.mt (GDBSERVER_LIBS): Likewise.
9060 * config/tic80/tic80.mt (GDBSERVER_LIBS): Likewise.
9061 * gdbserver/low-sim.c (#include "defs.h"): Removed.
9062 (mygeneric_load): Rename from generic_load.
9063
9064 * gdbserver/low-hppabsd.c (#include "server.h"): Added.
9065 (#include "defs.h"): Removed.
9066 (inferior_pid, perror_with_name): Remove declarations.
9067 * gdbserver/low-linux.c: Likewise.
9068 * gdbserver/low-nbsd.c: Likewise.
9069 * gdbserver/low-sparc.c: Likewise.
9070 * gdbserver/low-sun3.c: Likewise.
9071
9072 * i386-stub.c: Re-indent.
9073 * m68k-stub.c: Re-indent.
9074
9075 2001-01-22 Nicholas Duffek <nsd@redhat.com>
9076
9077 * gdbarch.sh (PARM_BOUNDARY): Define.
9078 * gdbarch.c: Regenerate.
9079 * gdbarch.h: Regenerate.
9080
9081 2001-01-22 J.T. Conklin <jtc@redback.com>
9082
9083 * ns32k-tdep.c: #include "frame.h"
9084 * config/ns32k/tm-umax.h (FRAME_FIND_SAVED_REGS): Restore. It
9085 appears to have been inadvertantly removed sometime in May 1999.
9086
9087 * Revert 2000-11-09 changes where shared library objects were
9088 moved from NATDEPFILES to TDEPFILES on NetBSD targets. While
9089 we'd like to be able to debug dynamically linked executables,
9090 this makes it impossible to build a cross debugger on a many
9091 hosts.
9092
9093 * config/i386/nbsd.mt: Remove solib.o, solib-svr4.o from TDEPFILES.
9094 * config/i386/nbsdelf.mt: Likewise.
9095 * config/m68k/nbsd.mt: Likewise.
9096 * config/ns32k/nbsd.mt: Likewise.
9097 * config/powerpc/nbsd.mt: Likewise.
9098 * config/sparc/nbsd.mt: Likewise.
9099 * config/sparc/nbsdelf.mt: Likewise.
9100 * config/i386/nbsd.mh: Add solib.o, solib-svr4.o to NATDEPFILES.
9101 * config/i386/nbsdelf.mh: Likewise.
9102 * config/m68k/nbsd.mh: Likewise.
9103 * config/ns32k/nbsd.mh: Likewise.
9104 * config/powerpc/nbsd.mh: Likewise.
9105 * config/sparc/nbsd.mh: Likewise.
9106
9107 2001-01-19 Jason Merrill <jason@redhat.com>
9108
9109 * dbxread.c (read_ofile_symtab): Stay with AUTO_DEMANGLING for G++.
9110 (process_one_symbol): Likewise.
9111 * dwarfread.c (handle_producer): Likewise.
9112
9113 Thu Jan 18 12:08:57 2001 Andrew Cagney <cagney@b1.cygnus.com>
9114
9115 * configure.in (build_warnings): Disable -Wuninitialized until GDB
9116 compiles with -Wuninitialized,-Werror.
9117 * configure: Regenerate.
9118
9119 * MAINTAINERS: Add list of buildable targets.
9120
9121 Thu Jan 18 12:48:04 2001 Andrew Cagney <cagney@b1.cygnus.com>
9122
9123 * defs.h (STRCMP): Delete macro.
9124
9125 * objfiles.c (objfile_relocate): Replace STRCMP with call to
9126 strcmp.
9127 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
9128 * symfile.c (compare_symbols): Ditto.
9129 * standalone.c (open): Ditto.
9130 * remote-es.c (verify_break): Ditto.
9131 * cli/cli-decode.c (add_cmd, add_show_from_set): Ditto.
9132
9133 * symfile.c (compare_psymbols): Delete comment refering to STRCMP.
9134
9135 Thu Jan 18 12:25:06 2001 Andrew Cagney <cagney@b1.cygnus.com>
9136
9137 * varobj.c (FREEIF): Delete macro.
9138 (varobj_set_value, free_variable): Replace FREEIF with ``xfree''
9139 call.
9140
9141 2001-01-18 Nick Clifton <nickc@redhat.com>
9142
9143 * arc-tdep.c (arc_cpu_type_table): Add new arc core numbers.
9144 (arc_print_insn): No bfd available, so pass NULL to
9145 arc_get_disassembler.
9146
9147 2001-01-09 James Ingham <jingham@inghji.apple.com>
9148
9149 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux to lookup
9150 a mangled symbol rather than recursing into lookup_symbol, since
9151 this will just re-unmangle the name & call lookup_symbol_aux -
9152 leading to an infinite recursion.
9153
9154 2001-01-18 Mark Kettenis <kettenis@gnu.org>
9155
9156 * infcmd.c (print_return_value): Restore another space lost by
9157 switch to UIOUT. ``$NN='' should be ``$NN =''.
9158
9159 Fri Jan 19 02:31:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
9160
9161 * target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
9162 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
9163 definition in parenthesis.
9164
9165 Fri Jan 19 02:13:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
9166
9167 From 2000-10-27 Mark Salter <msalter@redhat.com>:
9168 * remote.c (remote_remove_hw_breakpoint): Add 'len' field to Z
9169 packet.
9170 (remote_insert_hw_breakpoint): Ditto.
9171
9172 2001-01-17 J.T. Conklin <jtc@redback.com>
9173
9174 * config/m68k/tm-nbsd.h (USE_STRUCT_CONVENTION): Define.
9175 (BPT_VECTOR, REMOTE_BPT_VECTOR): Change to 0xf.
9176 * config/m68k/nbsd.mt (TDEPFILES): Add m68knbsd-tdep.o.
9177 * m68knbsd-tdep.c: New file.
9178
9179 * i386nbsd-tdep.c: Remove #if 0'd out #includes.
9180
9181 * m68knbsd-nat.c: #include gdbcore.h.
9182
9183 Wed Jan 17 09:41:58 2001 Andrew Cagney <cagney@b1.cygnus.com>
9184
9185 * MAINTAINERS: Add J.T. Conklin to Blanket Write Privs.
9186
9187 2001-01-16 Michael Snyder <msnyder@cleaver.cygnus.com>
9188
9189 * procfs.c (procfs_stopped_by_watchpoint): Don't die if process
9190 goes away -- just return false (ie. not stopped by watchpoint).
9191 * source.c (openp): Fix typo in comment.
9192
9193 2001-01-12 Nicholas Duffek <nsd@redhat.com>
9194
9195 * blockframe.c (generic_get_saved_register): Spelling fix.
9196 * frame.h (FRAME_FP): Spelling fix.
9197
9198 Fri Jan 12 18:29:46 2001 Andrew Cagney <cagney@b1.cygnus.com>
9199
9200 * infcmd.c (print_return_value): Restore space lost by switch to
9201 UIOUT. ``$NN='' should be ``$NN =''.
9202
9203 2001-01-08 Nicholas Duffek <nsd@redhat.com>
9204
9205 * regcache.c (set_register_cached, register_buffer,
9206 real_register, pseudo_register fetch_register, store_register):
9207 New functions.
9208 (register_changed, read_relative_register_raw_bytes_for_frame,
9209 registers_changed, registers_fetched, read_register_bytes,
9210 read_register_gen, write_register_gen, read_register,
9211 read_signed_register, write_register, supply_register): Replace
9212 register_valid[] with register_cached() and
9213 set_register_cached().
9214 (read_register_bytes, read_register_gen, write_register_gen,
9215 read_register, read_signed_register, write_register,
9216 supply_register): Replace registers[] with register_buffer().
9217 (read_register_bytes, read_register_gen, read_register,
9218 read_signed_register): Call fetch_register().
9219 (write_register_gen, write_register): Call real_register() and
9220 store_register().
9221 (write_register_bytes): Call store_register().
9222 * value.h (set_register_cached, register_buffer): Prototype.
9223 * remote.c (remote_fetch_registers): Allocate regs[] with a
9224 run-time size. Replace register_valid[] with
9225 set_register_cached().
9226 (store_register_using_P, remote_store_registers): Replace
9227 registers[] with register_buffer().
9228
9229 2001-01-08 Nicholas Duffek <nsd@redhat.com>
9230
9231 * regcache.c: Change "write-back" comment to "write-through".
9232 Change "regno" to "regnum".
9233 (read_register, read_signed_register): Remove "raw" from return
9234 value description.
9235 (supply_register): Spelling fix.
9236 * value.h: Change "regno" to "regnum".
9237
9238 2001-01-08 Fernando Nasser <fnasser@redhat.com>
9239
9240 * Makefile.in (install-gdbtk): Add .itcl files to the list of files
9241 to be installed.
9242
9243 2001-01-04 Michael Snyder <msnyder@mvstp600e.cygnus.com>
9244
9245 * mips-tdep.c (mips_coerce_float_to_double): Fix typo in comment.
9246
9247 2001-01-04 Nicholas Duffek <nsd@redhat.com>
9248
9249 * valops.c (VALUE_SUBSTRING_START): Delete.
9250
9251 2001-01-04 Nicholas Duffek <nsd@redhat.com>
9252
9253 * Makefile.in (SUBDIR_CLI_OBS): Add cli/cli-utils.o.
9254 (SUBDIR_CLI_SRCS): Add cli/cli-utils.c.
9255 (cli_utils_h): New variable.
9256 (cli/cli-utils.o): New rule.
9257 * cli/cli-utils.c: New file.
9258 * cli/cli-utils.h: New file.
9259
9260 2001-01-04 Nicholas Duffek <nsd@redhat.com>
9261
9262 * config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
9263 REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
9264
9265 2001-01-03 J.T. Conklin <jtc@redback.com>
9266
9267 * alphabsd-nat.c, i386-linux-nat.c, i386bsd-nat.c: Fix typo in
9268 comment.
9269
9270 2001-01-02 Michael Snyder <msnyder@cleaver.cygnus.com>
9271
9272 * sh-tdep.c (sh_default_store_return_value): Allow for small return type.
9273 (sh3e_sh4_store_return_value): Call sh_default_store_return_value for
9274 non-float types.
9275 * sparc-tdep.c (sparc_frame_chain): Fix typo in comment.
9276 Update copyright notice.
9277
9278 For older changes see ChangeLog-2000
9279 \f
9280 Local Variables:
9281 mode: change-log
9282 left-margin: 8
9283 fill-column: 74
9284 version-control: never
9285 End:
This page took 0.22469 seconds and 4 git commands to generate.