a2d38da2c520d34e1f70a73160851dcd148206c0
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-05-19 Andrew Cagney <ac131313@redhat.com>
2
3 * remote.c (remote_start_remote_dummy): Add uiout parameter.
4 (remote_start_remote): Add uiout parameter. Pass through to
5 remote_start_remote_dummy.
6 (remote_open_1): Use catch_exception instead of catch_errors.
7 (remote_async_open_1): Ditto.
8 (remote_cisco_open): Ditto.
9
10 2002-05-19 Andrew Cagney <ac131313@redhat.com>
11
12 * remote.c (remote_start_remote): Replace PTR with void pointer.
13 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
14 static.
15
16 2002-05-18 Andrew Cagney <ac131313@redhat.com>
17
18 * gdb_indent.sh: Allow the script to be run in the sim directory.
19
20 2002-05-18 Mark Kettenis <kettenis@gnu.org>
21
22 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
23 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
24
25 * corelow.c (core_open): Only call set_gdbarch_from_file if
26 exec_bfd is NULL.
27
28 2002-05-17 Andrey Volkov <avolkov@transas.com>
29
30 * h8300-tdep.c: Add support of EXR register
31 * config/h8300/tm-h8300.h: Ditto.
32
33 2002-05-17 Andrey Volkov <avolkov@transas.com>
34
35 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
36
37 2002-05-17 Andrey Volkov <avolkov@transas.com>
38
39 * h8300-tdep.c: Change literal regnums to REGNO.
40
41 2002-05-17 Jim Blandy <jimb@redhat.com>
42
43 * NEWS: Note addition of macro support.
44
45 Expand preprocessor macros in C expressions.
46 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
47 (scan_macro_expansion, scanning_macro_expansion,
48 finished_macro_expansion): New function declarations.
49 (expression_macro_lookup_func, expression_macro_lookup_baton): New
50 variable declarations.
51 * parser-defs.h (expression_context_pc): New declaration.
52 * parse.c (expression_context_pc): New variable.
53 (parse_exp_1): Set expression_context_pc, as well as
54 expression_context_block.
55 * c-exp.y (yylex): If we're not already reading the result of a
56 macro expansion, try to macro-expand the next token. When we're
57 done scanning a macro expansion, switch back to the mainline text.
58 Commas and `if's in a macro's expansion don't terminate the input.
59 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
60 (macro_original_text, macro_expanded_text,
61 expression_macro_lookup_func, expression_macro_lookup_baton): New
62 variables.
63 (scan_macro_expansion, scanning_macro_expansion,
64 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
65 c_preprocess_and_parse): New functions.
66 (c_language_defn, cplus_language_defn, asm_language_defn): Call
67 c_preprocess_and_parse, instead of c_parse.
68 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
69 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
70
71 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
72
73 * sh-tdep.c (gdb_print_insn_sh64): Delete.
74 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
75 (sh_gdbarch_init): Always use gdb_print_insn_sh.
76
77 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
78
79 * NEWS: Add section for multi-arched targets. Add v850 to that section.
80
81 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
82
83 * Makefile.in (sh_tdep_h): Define and use.
84 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
85 register enum): Move to...
86 * * sh-tdep.h: ...here.
87 * sh-tdep.c: Include sh-tdep.h.
88 * sh3-rom.c: Likewise.
89 * shnbsd-tdep.c: Likewise.
90
91 2002-05-16 Michael Snyder <msnyder@redhat.com>
92
93 * arm-tdep.c: Spelling fix in comment.
94
95 2002-05-16 Jim Blandy <jimb@redhat.com>
96
97 Add commands for manually expanding macros and showing their
98 definitions.
99 * macrocmd.c, macroscope.c, macroscope.h: New files.
100 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
101 (macroscope_h): New variable.
102 (HFILES_NO_SRCDIR): Add macroscope.h.
103 (COMMON_OBS): Add macrocmd.o, macroscope.o.
104 (macroscope.o, macrocmd.o): New rules.
105
106 Teach the Dwarf 2 reader to read macro information.
107 * dwarf2read.c: #include "macrotab.h".
108 (dwarf_macinfo_buffer): New variable.
109 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
110 dwarf_macinfo_size.
111 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
112 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
113 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
114 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
115 dwarf2_macro_spaces_in_definition): New complaints.
116 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
117 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
118 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
119 the partial symbol table.
120 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
121 from what's recorded in the partial symbol table.
122 (read_file_scope): If the compilation unit has a
123 `DW_AT_macro_info' attribute, read its macro information.
124 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
125
126 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
127
128 Fix PR gdb/546
129 * ser-tcp.c: Don't include <netinet/udp.h>.
130
131 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
132
133 * MAINTAINERS: Update my email address.
134
135 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
136
137 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
138 include file of the same name.
139
140 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
141
142 * configure.tgt: Mark v850 as multi-arched.
143 * config/v850/tm-v850.h: Remove file.
144 * config/v850/v850.mt: Eliminate TM_FILE.
145
146 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
147
148 * v850-tdep.c: Full multi-arch.
149 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
150 Define GDB_MULTI_ARCH to 2.
151
152 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
153
154 * p-exp.y (current_type): New static variable.
155 Carries the type of the expression at the position that is parsed.
156 (push_current_type, pop_current_type): Two new functions. Used
157 to store/restore current_type in expression on specific tokens.
158 (search_field): New static variable. Set to one after parsing a point
159 as at that point only a FIELDNAME token should be searched.
160 (FIELDNAME): New token. After a point only a token belonging to
161 current_type type definition is allowed.
162 (all over token rules): reset and change current_type according
163 to rules.
164 (exp '[' rule): insert implicit array index field if
165 exp is a pascal string type.
166
167 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
168
169 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
170 frame info. Use frame_info's saved_regs instead of matching member
171 in extra_frame_info throughout.
172 (v850_frame_init_saved_regs): New function.
173 (v850_init_extra_frame_info): Move most functionality into
174 v850_frame_init_saved_regs().
175 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
176 (v850_frame_find_saved_regs): Remove declaration.
177 (FRAME_FIND_SAVED_REGS): Remove definition.
178 (v850_frame_init_saved_regs): Add declaration.
179 (FRAME_INIT_SAVED_REGS): Add definition.
180
181 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
182
183 * v850-tdep.c: Begin multi-arch'ing v850.
184 (v850_target_architecture_hook): Remove function.
185 (v850_gdbarch_init): New function. Add code previously in
186 v850_target_architecture_hook().
187 (_initialize_v850_tdep): Don't set target_architecture_hook.
188 Call register_gdbarch_init() instead.
189
190 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
191
192 * gdbtypes.h (struct cplus_struct_type): Remove args field.
193 * hpread.c (hpread_read_struct_type): Remove assignments to args.
194 (fixup_class_method_type): Likewise.
195
196 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
197
198 From Martin Pool <mbp@samba.org>:
199 * gdbserver/server.c (gdbserver_usage): New function.
200 (main): Call it.
201
202 2002-05-15 Jim Blandy <jimb@redhat.com>
203
204 Add macro structures to GDB's symbol tables. Nobody puts anything
205 in them yet.
206 * symtab.h (struct symtab): New member: `macro_table'.
207 * buildsym.h (pending_macros): New global variable.
208 * buildsym.c: #include "macrotab.h".
209 (buildsym_init): Initialize `pending_macros'.
210 (end_symtab): If we found macro information while reading a CU's
211 debugging info, do build a symtab structure for it. Make the
212 symtab point to the macro information, and clear the
213 `pending_macros' pointer which held it while we were reading the
214 debug info.
215 (really_free_pendings): Free any pending macro table.
216 * objfiles.h (struct objfile): New member: `macro_cache'.
217 * objfiles.c (allocate_objfile): Set allocate and free functions
218 for the macro cache's objstack.
219 (free_objfile): Empty the macro cache's obstack.
220 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
221 set new allocate and free functions for it.
222 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
223 free functions for the macro cache's objstack. (Why is this
224 function building its own objfile?)
225 * symmisc.c (print_objfile_statistics): Print statistics on the
226 macro bcache.
227 * Makefile.in: Note that buildsym.o depends on macrotab.h.
228
229 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
230
231 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
232 (REGISTER_U_ADDR): Delete definition.
233 (arm_register_u_addr): Delete declaration.
234
235 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
236
237 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
238 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
239
240 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
241
242 * gdbserver/mem-break.c (reinsert_breakpoint_by_bp): Correct typo
243 stop_at -> stop_pc.
244
245 2002-05-14 Andrew Cagney <ac131313@redhat.com>
246
247 * regcache.c (register_valid): Revise comments refering to "Not
248 available" and "unavailable".
249 * frame.c (frame_register_read): Ditto.
250 * findvar.c (value_of_register): Ditto.
251
252 2002-05-15 Andrew Cagney <cagney@redhat.com>
253
254 * Makefile.in (remote_sim_h): Replace remote-sim_h.
255 (remote-sim.o): Update dependencies.
256 (d10v-tdep.o): Specify dependencies.
257 (sim_d10v_h): Define.
258
259 2002-05-14 Jim Blandy <jimb@redhat.com>
260
261 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
262 * macrotab.c (macro_lookup_inclusion, find_definition,
263 new_macro_table): Same.
264
265 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
266 not `! strcmp ()'. This is a dubious improvement.
267 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
268
269 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
270 although it's not necessary, to avoid a warning.
271
272 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
273
274 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
275 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
276 TYPE_INSTANCE_FLAGS.
277 (struct main_type): New.
278 (struct type): Move most members to struct main_type. Change
279 cv_type and as_type to new type_chain member. Add instance_flags.
280 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
281 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
282 (finish_cv_type): Remove prototype.
283 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
284 Set TYPE_CHAIN.
285 (alloc_type_instance): New function.
286 (smash_type): New function.
287 (make_pointer_type, make_reference_type, make_function_type)
288 (smash_to_member_type, smash_to_method_type): Call smash_type.
289 (make_qualified_type): New function.
290 (make_type_with_address_space): Call make_qualified_type.
291 (make_cv_type): Likewise.
292 (finish_cv_type): Remove unnecessary function.
293 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
294 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
295 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
296 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
297 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
298 * hpread.c (hpread_read_struct_type): Likewise.
299 * stabsread.c (read_struct_type): Likewise.
300
301 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
302
303 * configure.tgt: Add a catch all sh* target, for cases like
304 sh[2,3,4]-elf and sh-hms.
305
306 2002-05-14 Keith Seitz <keiths@redhat.com>
307
308 * event-loop.c (create_file_handler): Don't do anything but
309 update data when we are given a fd which we are already
310 monitoring.
311
312 2002-05-14 Michal Ludvig <mludvig@suse.cz>
313
314 * dwarf2cfi.c (context_cpy): Copy registers correctly.
315 (update_context): Use __func__ in warnings.
316
317 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
318
319 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
320 and tcp_close to net_open and net_close.
321 (net_open): Accept "udp:" and "tcp:" specifications. Connect
322 using UDP if requested. Don't try to disable Nagle on UDP
323 sockets.
324 * remote.c (remote_serial_open): New function. Warn about UDP.
325 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
326
327 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
328
329 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
330
331 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
332
333 * configure.tgt: Remove sh-hms target.
334 * MAINTAINERS: Don't list sh-hms as a separate target.
335
336 2002-05-13 Jim Blandy <jimb@redhat.com>
337
338 Add first preprocessor macro-expansion files.
339 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
340 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
341 (splay_tree_h, macroexp_h, macrotab_h): New variable.
342 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
343 (COMMON_OBS): Add macrotab.o, macroexp.o.
344 (macroexp.o, macrotab.o): New rules.
345
346 2002-05-13 Andrew Cagney <ac131313@redhat.com>
347
348 * config/m88k/tm-m88k.h: Update copyright.
349 (m88k_target_write_pc): Declare
350 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
351 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
352 (SHIFT_INST_REGS): Update definition.
353 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
354 using old definition of TARGET_WRITE_PC.
355 * regcache.c (generic_target_write_pc): Delete code handling
356 NNPC_REGNUM.
357 * gdbarch.sh (NNPC_REGNUM): Delete.
358 * gdbarch.h, gdbarch.c: Regenerate.
359
360 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
361
362 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
363 builtin reg number.
364
365 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
366
367 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
368 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
369 (gen_address_of, gen_struct_ref, gen_repeat): Use type
370 access macros.
371 * c-typeprint.c (cp_type_print_method_args): Likewise.
372 (c_type_print_args): Likewise.
373 * d10v-tdep.c (d10v_push_arguments): Likewise.
374 (d10v_extract_return_value): Likewise.
375 * expprint.c (print_subexp): Likewise.
376 * gdbtypes.c (lookup_primitive_typename): Likewise.
377 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
378 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
379 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
380 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
381 (TYPE_VECTOR): Likewise.
382 * hpread.c (hpread_read_struct_type)
383 (fix_static_member_physnames, fixup_class_method_type)
384 (hpread_type_lookup): Likewise.
385 * mdebugread.c (parse_symbol, parse_type): Likewise.
386 * p-lang.c (is_pascal_string_type): Likewise.
387 * valops.c (hand_function_call): Likewise.
388 * x86-64-tdep.c (classify_argument): Likewise.
389
390 * hpread.c (hpread_read_function_type)
391 (hpread_read_doc_function_type): Call replace_type.
392 * dstread.c (create_new_type): Delete.
393 (decode_dst_structure, process_dst_function): Call alloc_type.
394 Use type access macros.
395
396 2002-05-12 Mark Kettenis <kettenis@gnu.org>
397
398 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
399 the're not supported by the current architecture.
400 (i387_fill_fxsave): Likewise.
401
402 2002-05-12 Fred Fish <fnf@redhat.com>
403
404 * symfile.c (default_symfile_offsets): Arrange for uninitialized
405 sect_index_xxx members to index the first slot in section_offsets
406 if all of the section_offsets are zero.
407
408 2002-05-12 Mark Kettenis <kettenis@gnu.org>
409
410 * configure.tgt (sparc-*openbsd): Remove entry accidentially
411 checked in with last change.
412
413 2002-05-12 Mark Kettenis <kettenis@gnu.org>
414
415 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
416 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
417 config.sub.
418
419 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
420
421 * Makefile.in: Update dependencies.
422
423 2002-05-11 Andrew Cagney <ac131313@redhat.com>
424
425 * language.c (local_hex_string_custom): Simplify. Do not depend
426 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
427
428 * memattr.c (mem_info_command): Replace calls to
429 longest_local_hex_string and longest_local_hex_string_custom.
430 * buildsym.c (make_blockvector): Ditto.
431 * solib.c (info_sharedlibrary_command): Ditto.
432 * tracepoint.c (tracepoints_info): Ditto.
433 * symtab.c (print_msymbol_info): Ditto.
434
435 * language.c (local_hex_string): Delete.
436 (local_hex_string_custom): Delete.
437 (longest_local_hex_string): Rename to local_hex_string.
438 (longest_local_hex_string_custom): Rename to
439 local_hex_string_custom.
440 * language.h (local_hex_string): Change parameter type to LONGEST.
441 (local_hex_string_custom): Ditto.
442 (longest_local_hex_string): Delete declaration.
443 (longest_local_hex_string_custom): Ditto.
444
445 * solib.c: Update copyright.
446 * memattr.c: Update copyright.
447
448 2002-05-11 Andrew Cagney <ac131313@redhat.com>
449
450 * arch-utils.h (legacy_register_to_value): Declare.
451 (legacy_value_to_register): Declare.
452 (legacy_convert_register_p): Declare.
453 * arch-utils.c (legacy_register_to_value): New function.
454 (legacy_value_to_register): New function.
455 (legacy_convert_register_p): New function.
456
457 * gdbarch.sh (REGISTER_TO_VALUE): Define.
458 (VALUE_TO_REGISTER): Define.
459 (CONVERT_REGISTER_P): Define.
460 * gdbarch.h, gdbarch.c: Regenerate.
461
462 * valops.c (value_assign): Use CONVERT_REGISTER_P and
463 VALUE_TO_REGISTER.
464 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
465 CONVERT_REGISTER_P.
466
467 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
468 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
469
470 * Makefile.in: Update dependencies for valops.c.
471 * valops.c: Include "gdb_assert.h".
472 (typecmp): Skip THIS parameter to methods.
473 (find_method_list): Remove static_memfuncp argument,
474 update callers. Check for stub methods.
475 (find_value_oload_method_list): Don't set *static_memfuncp.
476 (find_overload_match): Don't check for stub methods. Assert
477 that methods are not stubbed. Handle static methods.
478 (value_find_oload_method_list): Remove static_memfuncp argument.
479 * gdbtypes.c (check_stub_method): Do not add THIS pointer
480 to the argument list for static stub methods.
481 * value.h (value_find_oload_method_list): Update prototype.
482
483 2002-05-11 Andrew Cagney <ac131313@redhat.com>
484
485 * arch-utils.h (generic_register_size): Declare.
486 (generic_register_raw_size, generic_register_virtual_size): Delete
487 declarations.
488 * arch-utils.c (generic_register_raw_size): Delete.
489 (generic_register_size): New function.
490 (generic_register_virtual_size): Delete.
491
492 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
493 default generic_register_size.
494 * gdbarch.h, gdbarch.c: Re-generate.
495
496 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
497 register_virtual_size.
498 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
499 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
500
501 2002-05-11 Andrew Cagney <ac131313@redhat.com>
502
503 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
504 * gdbarch.h, gdbarch.c: Regenerate.
505 * gnu-v3-abi.c: Update copyright.
506 (vtable_address_point_offset): Update.
507 (gnuv3_rtti_type): Update.
508 (gnuv3_baseclass_offset): Update.
509 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
510 (init_fetch_link_map_offsets): Update.
511 * remote.c (get_remote_state): Update.
512
513 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
514
515 * TODO: Remove value_headof/value_from_vtable_info comment.
516 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
517 * values.c (value_headof, value_from_vtable_info): Delete.
518 * value.h (value_from_vtable_info): Delete prototype.
519
520 2002-05-11 Andrew Cagney <ac131313@redhat.com>
521
522 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
523 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
524 $(gdb_regex_h).
525 (gdb_assert_h): Define.
526 (gdb_wait_h): Define.
527 (gdb_regex_h): Define.
528
529 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
530
531 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
532 * linespec.c (find_methods): Handle GCC 3.x template constructors.
533
534 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
535
536 * nbsd-tdep.c: Fix comment.
537
538 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
539
540 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
541 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
542 (nbsd-tdep.o): New dependency list.
543 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
544 nbsd-tdep.h.
545 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
546 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
547 * nbsd-tdep.c: New file.
548 * nbsd-tdep.h: New file.
549 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
550 nbsd-tdep.h.
551 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
552 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
553 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
554 * config/sh/nbsd.mt (TDEPFILES): Ditto.
555
556 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
557
558 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
559 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
560 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
561 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
562 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
563 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
564
565 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
566
567 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
568 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
569 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
570 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
571 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
572 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
573 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
574
575 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
576
577 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
578 fetch_elfcore_registers to...
579 * i386nbsd-tdep.c: ...here.
580 (i386nbsd_use_struct_convention): Rename to...
581 (i386nbsd_aout_use_struct_convention): ...this.
582 (i386nbsd_supply_reg): New function.
583 (i386nbsd_fill_reg): New function.
584 (fetch_core_registers): Use i386nbsd_supply_reg.
585 (fetch_elfcore_registers): Likewise.
586 (_initialize_i386nbsd_tdep): New function.
587 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
588 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
589 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
590 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
591 (i386nbsd_aout_use_struct_convention): ...this.
592
593 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
594
595 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
596 (store_inferior_registers): Use shnbsd_fill_reg.
597 * shnbsd-tdep.c (sh_nbsd_supply_registers,
598 sh_nbsd_supply_register): Collapse into...
599 (shnbsd_supply_reg): ...this.
600 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
601 (shnbsd_fill_reg): ...this.
602 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
603 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
604 (fetch_core_registers): Use shnbsd_supply_reg.
605 (fetch_elfcore_registers): Use shnbsd_supply_reg.
606 (sh_nbsd_core_fns): Rename to...
607 (shnbsd_core_fns): ...this.
608 (sh_nbsd_elfcore_fns): Rename to...
609 (shnbsd_elfcore_fns): ...this.
610 (sh_nbsd_init_abi): Rename to...
611 (shnbsd_init_abi): ...this.
612 (_initialize_sh_nbsd_tdep): Rename to...
613 (_initialize_shnbsd_tdep): ...this.
614 * shnbsd-tdep.h (sh_nbsd_supply_registers,
615 sh_nbsd_supply_register, sh_nbsd_fill_registers,
616 sh_nbsd_fill_register): Remove prototypes.
617 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
618
619 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
620
621 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
622 (i387-nat.o): Delete dependency list.
623 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
624 (x86-64-linux-nat.o): Likewise.
625 * i387-nat.c: Delete file, moving contents to...
626 * i387-tdep.c: ...here.
627 * i387-nat.h: Rename...
628 * i387-tdep.h: ...to this.
629 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
630 * i386-linux-nat.c: Likewise.
631 * i386bsd-nat.c: Likewise.
632 * i386gnu-nat.c: Likewise.
633 * i386nbsd-nat.c: Likewise.
634 * i386v4-nat.c: Likewise.
635 * x86-64-linux-nat.c: Likewise.
636 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
637 * config/i386/go32.mh (NATDEPFILES): Likewise.
638 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
639 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
640 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
641 * config/i386/linux.mh (NATDEPFILES): Likewise.
642 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
643 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
644 * config/i386/obsd.mh (NATDEPFILES): Likewise.
645 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
646
647 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
648
649 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
650 (alphanbsd-nat.o): Remove dependency list.
651 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
652 * alphanbsd-nat.c: Delete. Contents moved to...
653 * alphanbsd-tdep.c: ...here.
654 (_initialize_alphanbsd_tdep): Register core functions.
655 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
656
657 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
658
659 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
660 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
661 (alphanbsd-nat.o): Likewise.
662 (alphabsd-tdep.o): New dependency list.
663 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
664 (fill_gregset): Use alphabsd_fill_reg.
665 (supply_fpregset): Use alphabsd_supply_fpreg.
666 (fill_fpregset): Use alphabsd_fill_fpreg.
667 (fetch_inferior_registers): Use struct reg and struct fpreg
668 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
669 and alphabsd_supply_fpreg.
670 (store_inferior_registers): Use struct reg and struct fpreg
671 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
672 and alphabsd_fill_fpreg.
673 * alphabsd-tdep.c: New file.
674 * alphabsd-tdep.h: New file.
675 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
676 (fetch_elfcore_registers): Use alphabsd_supply_reg and
677 alphabsd_supply_fpreg.
678 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
679 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
680
681 2002-05-11 Eric Christopher <echristo@redhat.com>
682
683 * mips-tdep.c (mips_double_register_type): Fix thinko.
684 (mips_single_register_type): Ditto.
685 * MAINTAINERS: Add self.
686
687 2002-05-11 Mark Kettenis <kettenis@gnu.org>
688
689 * i387-nat.c (i387_supply_register, i387_fill_fsave,
690 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
691 right thing on architectures with different endianness and/or
692 integer sizes.
693
694 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
695
696 From Christian Limpach <chris@Pin.LU>
697 * configure.in: Change sed expression which comments out
698 NATDEPFILES to also comment out continuation lines.
699 * configure: Regenerate.
700
701 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
702
703 * sh-tdep.c: Clean up code erroneously reintroduced by previous
704 big patch.
705
706 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
707
708 * sh-tdep.c: Include correct file.
709
710 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
711
712 New support for sh64-elf (sh5) target.
713
714 * configure.tgt: For sh64-elf target, default to sh-elf.
715
716 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
717 (struct gdbarch_tdep): Add new fields for new registers and ABI
718 info.
719
720 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
721 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
722 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
723 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
724 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
725 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
726 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
727 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
728 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
729 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
730 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
731 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
732 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
733 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
734 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
735 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
736 sh64_get_gdb_regnum, sh64_media_reg_base_num,
737 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
738 sign_extend, sh64_nofp_frame_init_saved_regs,
739 sh64_init_extra_frame_info, sh64_get_saved_register,
740 sh64_extract_struct_value_address, sh64_pop_frame,
741 sh64_push_arguments, sh64_extract_return_value,
742 sh64_store_return_value, sh64_show_media_regs,
743 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
744 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
745 sh_sh64_register_virtual_type,
746 sh_sh64_register_convert_to_virtual,
747 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
748 sh64_register_read, sh64_pseudo_register_write,
749 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
750 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
751 sh64_do_pseudo_register, sh_compact_do_registers_info,
752 sh64_do_registers_info, sh_gdbarch_init): New functions.
753
754 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
755
756 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
757
758 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
759
760 * linespec.c (decode_line_1): Check for a double quote after
761 a filename correctly.
762
763 2002-05-10 Jim Blandy <jimb@redhat.com>
764
765 Properly track the size of the current objfile's .debug_line section.
766 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
767 (DWARF_LINE_SIZE): New macro.
768 (dwarf2_build_psymtabs_hard): Record the line section's size in
769 the partial symbol table.
770 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
771 symbol table.
772
773 2002-05-10 Petr Sorfa <petrs@caldera.com>
774
775 * ia64-tdep.c: Handle breakpoints on L instruction type
776 in MLX instruction bundle by moving the breakpoint to
777 the third slot (X instruction type) as L holds only data.
778
779 2002-05-10 Kevin Buettner <kevinb@redhat.com>
780
781 * dbxread.c (discarding_local_symbols_complaint): New complaint.
782 (process_one_symbol): Complain about discarding local symbols
783 due to a misplaced N_LBRAC entry.
784
785 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
786
787 From Daniel Berlin <dan@cgsoftware.com>
788 * linespec.c (find_toplevel_char): '<' and '>' also increase and
789 decrease the depth we are at, in the case of templates.
790
791 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
792
793 * mips-tdep.c (mips_float_register_type): New function.
794 (mips_double_register_type): New function.
795 (mips_print_register): Use them.
796 (do_fp_register_row): Likewise.
797
798 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
799
800 * signals/signals.c (signals): Remove conditional compilation around
801 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
802 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
803
804 2002-05-09 Michael Snyder <msnyder@redhat.com>
805
806 * remote-rdp.c (remote_rdp_can_run): Remove.
807
808 2002-05-09 Tom Tromey <tromey@redhat.com>
809
810 * jv-valprint.c (java_val_print): Handle `char' as a special case
811 of TYPE_CODE_INT.
812
813 2002-05-09 Michael Snyder <msnyder@redhat.com>
814
815 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
816 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
817 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
818 str r(0123),[sp,#nn].
819 (arm_skip_prologue): Ditto. Also make disassembly
820 order-independent by placing it in a loop.
821
822 2002-05-06 Michael Snyder <msnyder@redhat.com>
823
824 * stabsread.c (read_type): Add recognition for new attribute:
825 "@V;" means that an array type is actually a vector.
826 This is analogous to the vector flag that's been added to dwarf2.
827
828 2002-05-09 Mark Kettenis <kettenis@gnu.org>
829
830 * i386-tdep.h (i386_abi): New enum.
831 (struct gdbarch_tdep): Replace os_ident member with abi.
832 (i386_gdbarch_register_os_abi): New prototype.
833 * i386-tdep.c (i386_abi_names): New array.
834 (process_note_abi_tag_sections): Removed.
835 (process_note_sections): New function.
836 (i386_elf_abi_from_note, i386_elf_abi): New functions.
837 (struct i386_abi_handler): New struct.
838 (i386_abi_handler_list): New variable.
839 (i386_gdbarch_register_os_abi): New function.
840 (i386_gdbarch_init): Adapt for the changes given above.
841
842 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
843
844 * gregset.h: Say "GNU/Linux".
845
846 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
847
848 * gdbtypes.c : Add new builtin type for 64 bit vectors.
849 (build_gdbtypes): Build builtin_type_v2_float.
850 (_initialize_gdbtypes): Register new builtin type.
851
852 2002-05-08 Andrew Cagney <ac131313@redhat.com>
853
854 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
855 (clear_gdbarch_swap): New function.
856 (initialize_non_multiarch): Call.
857 (gdbarch_update_p): Before calling init(), swap out and clear the
858 existing architecture.
859 * gdbarch.c: Regenerate.
860
861 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
862
863 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
864 alphanbsd-tdep.c.
865
866 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
867
868 * sh-nbsd-nat.c: Rename to...
869 * shnbsd-nat.c: ...this.
870 * sh-nbsd-tdep.c: Rename to...
871 * shnbsd-tdep.c: ...this.
872 * sh-nbsd-tdep.h: Rename to...
873 * shnbsd-tdep.h: ...this.
874 * config/sh/nbsd.mh: Use shnbsd-nat.o.
875 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
876
877 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
878
879 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
880 concatenation for command help messages.
881
882 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
883
884 * NEWS: Note new sh*-*-netbsdelf* configuration.
885 * configure.host: Set gdb_host_cpu to sh for all sh*.
886 (sh*-*-netbsdelf*): New host.
887 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
888 (sh*-*-netbsdelf*): New target.
889 * sh-nbsd-nat.c: New file.
890 * sh-nbsd-tdep.c: New file.
891 * sh-nbsd-tdep.h: New file.
892 * config/sh/nbsd.mh: New file.
893 * config/sh/nbsd.mt: New file.
894 * config/sh/nm-nbsd.h: New file.
895 * config/sh/tm-nbsd.h: New file.
896
897 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
898
899 * sh-tdep.c (sh_osabi_names): Declare.
900 (process_note_abi_tag_sections): New function.
901 (get_elfosabi): Ditto.
902 (sh_gdbarch_register_os_abi): Ditto.
903 (sh_dump_tdep): Ditto.
904 _initialize_sh_tdep): Use gdbarch_register to register
905 sh_gdbarch_init and sh_dump_tdep.
906 * config/sh/tm-sh.h (sh_osabi): Declare.
907 (gdbarch_tdep): Add sh_osabi and osabi_name members.
908
909 2002-05-07 Andrew Cagney <ac131313@redhat.com>
910
911 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
912 (thumb_scan_prologue): Ditto.
913 (arm_find_callers_reg): Ditto.
914 (arm_frame_chain): Ditto.
915 (arm_init_extra_frame_info): Ditto.
916 (arm_frame_saved_pc): Ditto.
917 (arm_pop_frame): Ditto.
918 (arm_push_return_address): New function.
919 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
920 call_dummy_location, call_dummy_breakpoint_offset_p,
921 call_dummy_breakpoint_offset, call_dummy_p,
922 call_dummy_stack_adjust_p, call_dummy_words,
923 sizeof_call_dummy_words, call_dummy_start_offset,
924 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
925 call_dummy_address, push_return_address and push_dummy_frame for
926 generic dummy frames.
927
928 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
929
930 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
931 size computation for alloca.
932 (sh_fp_frame_init_saved_regs): Likewise.
933
934 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
935
936 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
937 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
938 * arm-tdep.c (arm_store_return_value): Use them.
939 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
940 * remote-rdp.c (remote_rdp_fetch_register): Use
941 ARM_MAX_REGISTER_RAW_SIZE.
942 (remote_rdp_store_register): Likewise.
943
944 2002-05-07 Michal Ludvig <mludvig@suse.cz>
945
946 * dwarf2cfi.c: Code cleanup, removed unused variables,
947 added default labels to switch {} statements.
948 * x86-64-tdep.c: Ditto.
949 * x86-64-linux-nat.c: Ditto.
950
951 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
952
953 * solib.h: Protect against multiple inclusion.
954
955 2002-05-06 Jim Blandy <jimb@redhat.com>
956
957 Add first preprocessor macro-expansion files.
958 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
959 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
960 (splay_tree_h, macroexp_h, macrotab_h): New variable.
961 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
962 (COMMON_OBS): Add macrotab.o, macroexp.o.
963 (macroexp.o, macrotab.o): New rules.
964
965 Separate the job of reading the line number info statement program
966 header (...expialidocious) out into its own function.
967 * dwarf2read.c (struct line_head, struct filenames, struct
968 directories): Replace with...
969 (struct line_header): New structure, containing the full
970 contents of the statement program header, including the
971 include directory and file name tables.
972 (read_file_scope): If we have line number info, instead of just
973 calling dwarf_decode_lines to do all the work, call
974 dwarf_decode_line_header first to get a `struct line_header'
975 containing the data in the statement program header, and then
976 pass that to dwarf_decode_lines, which will pick up where that
977 left off. Be sure to clean up the `struct line_header' object.
978 (dwarf_decode_line_header, free_line_header, add_include_dir,
979 add_file_name): New functions.
980 (dwarf_decode_lines): Move all the code to read the statement
981 program header into dwarf_decode_line_header. Take the line
982 header it built as the first argument, instead of the offset to
983 the compilation unit's line number info. Use the new `struct
984 line_header' type instead of the old structures. No need to do
985 cleanups here now, since we don't allocate anything.
986 (dwarf2_statement_list_fits_in_line_number_section,
987 dwarf2_line_header_too_long): New complaints.
988
989 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
990
991 * gdbtypes.c (init_vector_type): New function.
992 (build_builtin_type_vec128): Simplify the representation of SIMD
993 registers.
994 (build_gdbtypes): Initialize new builtin vector types.
995 (_initialize_gdbtypes): Register new vector types with gdbarch.
996 (builtin_type_v4_float, builtin_type_v4_int32,
997 builtin_type_v8_int16, builtin_type_v16_int8,
998 builtin_type_v2_int32, builtin_type_v4_int16,
999 builtin_type_v8_int8): New (renamed) SIMD types.
1000
1001 2002-05-06 Mark Kettenis <kettenis@gnu.org>
1002
1003 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
1004 (i387_fill_fxsave): Likewise.
1005
1006 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
1007
1008 * alpha-tdep.c (alpha_extract_return_value): Don't use
1009 non-constant array size in prototype.
1010
1011 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1012
1013 From Brian Taylor <briant at model dot com>:
1014 * ui-out.c (ui_out_field_core_addr): Use the function
1015 longest_local_hex_string_custom'to format addresses > 32 bits
1016 wide.
1017
1018 * ui-out.c (ui_out_field_core_addr): Update comment.
1019
1020 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1021
1022 * stack.c (select_and_print_frame): Make static. Delete the
1023 parameter `level'.
1024 (func_command): Update call.
1025 (select_frame_command): Delete code computing the frame level.
1026 * frame.h (select_and_print_frame): Delete declaration.
1027
1028 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1029
1030 * sparc-tdep.c (sparc_get_saved_register): Comment why
1031 get_prev_frame call is safe.
1032
1033 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1034
1035 * frame.h (select_frame): Delete level parameter.
1036 * stack.c (select_frame): Update. Use frame_relative_level to
1037 obtain the frame's level.
1038 (select_and_print_frame): Update call.
1039 (select_frame_command): Ditto.
1040 (up_silently_base): Ditto.
1041 (down_silently_base): Ditto.
1042 * ocd.c (ocd_start_remote): Ditto.
1043 * remote-rdp.c (remote_rdp_open): Ditto.
1044 * remote-mips.c (mips_initialize): Ditto.
1045 (common_open): Ditto.
1046 * remote-e7000.c (e7000_start_remote): Ditto.
1047 * m3-nat.c (select_thread): Ditto.
1048 * hppa-tdep.c (child_get_current_exception_event): Ditto.
1049 (child_get_current_exception_event): Ditto.
1050 * varobj.c (varobj_create): Ditto.
1051 (varobj_update): Ditto.
1052 (c_value_of_root): Ditto.
1053 * tracepoint.c (finish_tfind_command): Ditto.
1054 * corelow.c (core_open): Ditto.
1055 * arch-utils.c (generic_prepare_to_proceed): Ditto.
1056 * thread.c (info_threads_command): Ditto.
1057 (switch_to_thread): Ditto.
1058 * infrun.c (normal_stop): Ditto.
1059 (restore_selected_frame): Ditto.
1060 (restore_inferior_status): Ditto.
1061 * breakpoint.c (insert_breakpoints): Ditto.
1062 (watchpoint_check): Ditto.
1063 (bpstat_stop_status): Ditto.
1064 (do_enable_breakpoint): Ditto.
1065 * blockframe.c (flush_cached_frames): Ditto.
1066 (reinit_frame_cache): Ditto.
1067
1068 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1069
1070 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
1071 maintainer.
1072
1073 2002-05-04 Jim Blandy <jimb@redhat.com>
1074
1075 * gdbtypes.c (replace_type): Doc fix.
1076
1077 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1078
1079 * valprint.c (strcat_longest): Delete commented out function.
1080 Update copyright.
1081
1082 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1083
1084 * MAINTAINERS: Mark a29k as deleted.
1085 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
1086 Move new configurations to the top.
1087 * configure.tgt: Remove a29k.
1088 * config/a29k/tm-vx29k.h: Delete.
1089 * config/a29k/vx29k.mt: Delete.
1090 * config/a29k/tm-a29k.h: Delete.
1091 * config/a29k/a29k-udi.mt: Delete.
1092 * config/a29k/a29k.mt: Delete.
1093 * a29k-tdep.c: Delete.
1094 * remote-udi.c: Delete.
1095 * remote-mm.c: Delete.
1096 * remote-eb.c: Delete.
1097 * remote-adapt.c: Delete.
1098 * Makefile.in: Remove obsolete code.
1099 * gdbserver/Makefile.in: Ditto.
1100 * config/s390/s390x.mt: Ditto.
1101 * config/s390/s390.mt: Ditto.
1102 * config/sparc/sparclynx.mh: Ditto.
1103 * config/sparc/linux.mh: Ditto.
1104 * config/pa/hppaosf.mh: Ditto.
1105 * config/pa/hppabsd.mh: Ditto.
1106 * config/ns32k/nbsd.mt: Ditto.
1107 * config/mips/vr5000.mt: Ditto.
1108 * config/m68k/sun3os4.mh: Ditto.
1109 * config/m68k/nbsd.mt: Ditto.
1110 * config/m68k/m68klynx.mh: Ditto.
1111 * config/m32r/m32r.mt: Ditto.
1112 * config/i386/x86-64linux.mt: Ditto.
1113 * config/i386/nbsdelf.mt: Ditto.
1114 * config/i386/nbsd.mt: Ditto.
1115 * config/i386/i386lynx.mh: Ditto.
1116
1117 2002-05-04 Andrew Cagney <ac131313@redhat.com>
1118
1119 * target.c (debug_print_register): New function. Handle oversize
1120 registers.
1121 (debug_to_fetch_registers): Call.
1122 (debug_to_store_registers): Call.
1123
1124 2002-05-03 Jim Blandy <jimb@redhat.com>
1125
1126 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
1127 (read_type): Doc fix.
1128 * gdbtypes.c (replace_type): Doc fix.
1129
1130 * stabsread.c (multiply_defined_struct): New complaint.
1131 (read_struct_type): If the type we were passed isn't empty, or
1132 incomplete, don't read the new struct type into it; complain,
1133 and return the original type unchanged. Take a new `type_code'
1134 argument, which is the type code for the new type.
1135 (read_type): Rather than storing the type's type code here, pass
1136 it as an argument to read_struct_type, and let that take care of
1137 storing it. That way, we don't overwrite the original type code,
1138 so read_struct_type can use it to decide whether we're overwriting
1139 something we shouldn't.
1140 (complain_about_struct_wipeout): New function.
1141
1142 2002-05-03 Andrew Cagney <ac131313@redhat.com>
1143
1144 * gdbarch.sh: Assert that gdbarch is non-NULL.
1145 * gdbarch.c: Regenerate.
1146
1147 2002-05-03 Jason Merrill <jason@redhat.com>
1148
1149 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
1150 and return NULL.
1151
1152 2002-05-03 Michal Ludvig <mludvig@suse.cz>
1153
1154 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
1155 (x86_64_dwarf2gdb_regno_map_length),
1156 (x86_64_dwarf2_reg_to_regnum): Added.
1157 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
1158 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
1159 (_initialize_x86_64_tdep): Synced with the change above.
1160 (x86_64_skip_prologue): Reformulated message.
1161
1162 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
1163
1164 * f-exp.y: Also use new prev_lexptr variable
1165 to improve error reporting. Based on Michael Snyder
1166 2002-04-24 dated patch to c-exp.y.
1167 * jv-exp.y: Likewise.
1168 * m2-exp.y: Likewise.
1169
1170 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
1171
1172 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
1173 we are dealing with vectors.
1174
1175 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
1176
1177 * config/m68k/tm-nbsd.h: Obvious fix,
1178 correct machine name.
1179
1180 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
1181
1182 * p-typeprint.c (pascal_type_print_base): Add support
1183 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
1184
1185 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
1186
1187 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
1188 for fondamental pascal 'char' type.
1189
1190 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
1191
1192 * p-lang.h (is_pascal_string_type): Declaration changed,
1193 new sixth argument of type char ** added.
1194 * p-lang.c (is_pascal_string_type): Implementation
1195 changed. Args length_pos, length_size, string_pos, char_size
1196 can now be NULL. New argument arrayname set to the field
1197 name of the char array. Return value set to char array
1198 field index plus one.
1199 * p-valprint.c (pascal_val_print): Adapt to new declaration of
1200 is_pascal_string_type function.
1201
1202 2002-05-02 Andrew Cagney <cagney@redhat.com>
1203
1204 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
1205 <cagney@redhat.com> change.
1206 * gdbarch.c: Regenerate.
1207
1208 2002-05-02 Andrew Cagney <cagney@redhat.com>
1209
1210 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
1211 before probing for a new one. Detect errorenous gdbarch_init
1212 functions.
1213 * gdbarch.c: Regenerate.
1214
1215 2002-05-01 Andrew Cagney <cagney@redhat.com>
1216
1217 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
1218 * config/mcore/tm-mcore.h: Ditto. Update copyright.
1219 * config/v850/tm-v850.h: Ditto. Update copyright.
1220
1221 2002-04-30 Andrew Cagney <ac131313@redhat.com>
1222
1223 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
1224 current_gdbarch.
1225
1226 2002-04-30 Michael Snyder <msnyder@redhat.com>
1227
1228 * arm-tdep.c: Whitespace clean-ups.
1229 (arm_skip_prologue): Fix thinko; two lines
1230 should have been removed as part of 4/24 change.
1231
1232 2002-04-30 Kevin Buettner <kevinb@redhat.com>
1233
1234 * rs6000-tdep.c: Added comment describing how fpscr register
1235 numbers were chosen.
1236
1237 2002-04-30 Michael Snyder <msnyder@redhat.com>
1238
1239 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
1240
1241 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
1242
1243 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
1244 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
1245 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
1246
1247 2002-04-29 Kevin Buettner <kevinb@redhat.com>
1248
1249 From Louis Hamilton <hamilton@redhat.com>:
1250 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
1251 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
1252 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
1253 not bfd-private xcoff data, to determine wordsize.
1254 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
1255
1256 2002-04-29 Andrew Cagney <ac131313@redhat.com>
1257
1258 GDB 5.2 released from 5.2 branch.
1259
1260 2002-04-29 Michal Ludvig <mludvig@suse.cz>
1261
1262 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
1263 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
1264 (x86_64_register_info_table): Added comments with register numbers.
1265
1266 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
1267
1268 * rs6000-tdep.c (rs6000_extract_return_value,
1269 rs6000_store_return_value): Handle returning vectors.
1270 (rs6000_gdbarch_init): Use
1271 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
1272 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
1273 New function.
1274 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
1275 vectors.
1276 (ppc_sysv_abi_push_arguments): Handle vector parameters.
1277 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
1278
1279 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
1280
1281 * hpread.c (hpread_psymtab_to_symtab_1,
1282 hpread_psymtab_to_symtab): Replace fprintf (stderr,...)
1283 with fprintf_unfiltered (gdb_stderr,...).
1284
1285 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
1286
1287 * remote-array.c (printf_monitor, write_monitor,
1288 array_insert_breakpoint, array_remove_breakpoint ):
1289 Replace fprintf (stderr,...
1290 with fprintf_unfiltered (gdb_stderr,....
1291 * remote-es.c: Likewise.
1292 * remote-os9k.c: Likewise.
1293 * remote-st.c: Likewise.
1294
1295 2002-04-28 Andreas Schwab <schwab@suse.de>
1296
1297 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
1298 linux-proc.o and gcore.o.
1299
1300 2002-04-26 Michal Ludvig <mludvig@suse.cz>
1301
1302 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
1303 code without frame pointers.
1304
1305 2002-04-26 Andrew Cagney <ac131313@redhat.com>
1306
1307 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
1308 ON_STACK is needed.
1309
1310 2002-04-26 Ben Elliston <bje@redhat.com>
1311
1312 * target.c (do_xfer_memory): Correct reference to the new option
1313 "trust-readonly-sections".
1314
1315 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
1316
1317 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
1318 * gdbtypes.c (recursive_dump_type): Output the vector flag.
1319 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
1320 vectors.
1321 (read_array_type): Record the fact that this array type is really a
1322 vector (i.e. are passed in by value).
1323
1324 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
1325
1326 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
1327 * alpha-tdep.c (alpha_sigcontext_addr): New function.
1328 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
1329 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
1330 * alpha-linux-tdep.c: Include frame.h.
1331 (alpha_linux_sigcontext_addr): New function.
1332 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
1333 alpha_linux_sigcontext_addr.
1334 * alpha-osf1-tdep.c: Include gdbcore.h.
1335 (alpha_osf1_sigcontext_addr): New function.
1336 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
1337 alpha_osf1_sigcontext_addr.
1338 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
1339 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
1340
1341 2002-04-26 Andrew Cagney <ac131313@redhat.com>
1342
1343 * stack.c (selected_frame_level):
1344 (select_frame): Do not set selected_frame_level.
1345 * frame.h (selected_frame_level): Delete declaration.
1346
1347 2002-04-26 Andrew Cagney <ac131313@redhat.com>
1348
1349 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
1350 convert_from_func_ptr-addr when AIX / PowerOpen.
1351
1352 2002-04-25 Andrew Cagney <ac131313@redhat.com>
1353
1354 * valops.c (hand_function_call): Call
1355 generic_save_call_dummy_addr.
1356 * frame.h (generic_save_call_dummy_addr): Declare.
1357 * blockframe.c (struct dummy_frame): Add fields call_lo and
1358 call_hi.
1359 (generic_find_dummy_frame): Check for PC in range call_lo to
1360 call_hi instead of entry_point_address.
1361 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
1362 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
1363 (generic_save_call_dummy_addr): New function.
1364
1365 2002-04-24 David S. Miller <davem@redhat.com>
1366
1367 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
1368 sparc_skip_prologue.
1369 (sparc_skip_prologue): Kill frameless_p arg, and use line number
1370 information to find prologue when possible.
1371 (sparc_prologue_frameless_p): Call examine_prologue directly.
1372 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
1373 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
1374 second argument.
1375 (SKIP_PROLOGUE): Likewise.
1376
1377 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
1378
1379 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
1380 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
1381 indicate that the condition it was testing is always true.
1382 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
1383 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
1384 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
1385
1386 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
1387
1388 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
1389 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
1390 tdep->jb_pc and tdep->jb_elt_size.
1391 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
1392 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
1393 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
1394 * alpha-nat.c (get_longjmp_target): Remove.
1395 (JB_ELEMENT_SIZE): Ditto.
1396 (JB_PC): Ditto.
1397 * alpha-tdep.c (alpha_get_longjmp_target): New function.
1398 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
1399 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
1400 to alpha_get_longjmp_target.
1401 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
1402 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
1403 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
1404
1405 2002-04-25 Andrew Cagney <ac131313@redhat.com>
1406
1407 * README: Update to GDB 5.2.
1408
1409 2002-04-25 Andrew Cagney <ac131313@redhat.com>
1410
1411 * gdbarch.sh (LC_ALL): Set to `c'.
1412
1413 2002-04-25 Theodore A. Roth <troth@verinet.com>
1414
1415 * avr-tdep.c: Ran through gdb_indent.sh.
1416
1417 2002-04-25 Theodore A. Roth <troth@verinet.com>
1418
1419 * MAINTAINERS: Add myself as AVR maintainer.
1420 * NEWS: Note new target avr.
1421
1422 2002-04-25 Theodore A. Roth <troth@verinet.com>
1423
1424 * Makefile.in: Add support for AVR target.
1425 * configure.tgt: Add support for AVR target.
1426 * avr-tdep.c: New file
1427 * config/avr/avr.mt: New file.
1428
1429 2002-04-25 Theodore A. Roth <troth@verinet.com>
1430
1431 * MAINTAINERS: Add myself to write-after-approval.
1432
1433 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
1434
1435 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
1436 with fprintf_unfiltered (gdb_stderr,....
1437
1438 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
1439
1440 Fix PR gdb/508.
1441 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
1442
1443 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
1444
1445 * p-exp.y: Also use new prev_lexptr variable
1446 to improve error reporting. Based on Michael Snyder
1447 2002-04-24 dated patch to c-exp.y.
1448
1449 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
1450
1451 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
1452 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
1453 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
1454 to 0.
1455 * config/alpha/tm-alpha.h: Remove forward decls of struct type
1456 and struct value.
1457 (FUNCTION_START_OFFSET): Remove.
1458 (BREAKPOINT): Ditto.
1459
1460 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
1461
1462 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
1463 * NEWS: Ditto.
1464
1465 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1466
1467 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
1468 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
1469 alpha_linux_pc_in_sigtramp.
1470 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
1471 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
1472 alpha_osf1_pc_in_sigtramp.
1473 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
1474 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
1475 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1476 alphafbsd_pc_in_sigtramp.
1477 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
1478 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1479 alphanbsd_pc_in_sigtramp.
1480 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
1481 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
1482
1483 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1484
1485 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
1486
1487 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1488
1489 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
1490 alphanbsd-tdep.c.
1491 (alphanbsd-nat.o): New dependency list.
1492 (alphanbsd-tdep.o): Ditto.
1493 * NEWS: Note new native NetBSD/alpha configuration.
1494 * alphanbsd-nat.c: New file.
1495 * alphanbsd-tdep.c: Ditto.
1496 * configure.host (alpha*-*-netbsd*): New host.
1497 * configure.tgt (alpha*-*-netbsd*): New target.
1498 * config/alpha/nbsd.mh: New file.
1499 * config/alpha/nbsd.mt: Ditto.
1500 * config/alpha/nm-nbsd.h: Ditto.
1501 * config/alpha/tm-nbsd.h: Ditto.
1502
1503 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1504
1505 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
1506 (alpha-osf1-tdep.o): New dependency list.
1507 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
1508 and skip_sigtramp_frame members.
1509 * alpha-linux-tdep.c: Include gdbcore.h.
1510 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
1511 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
1512 * alpha-osf1-tdep.c: New file.
1513 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
1514 alpha-osf1-dep.c.
1515 (alpha_frame_past_sigtramp_frame): New function.
1516 (alpha_dynamic_sigtramp_offset): Ditto.
1517 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
1518 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
1519 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
1520 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
1521 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
1522 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
1523 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
1524 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
1525 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
1526 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
1527 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
1528 to find_solib_trampoline_target.
1529 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
1530 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
1531 (SKIP_TRAMPOLINE_CODE): Remove.
1532 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1533 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1534 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
1535 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
1536 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
1537 (PROC_SIGTRAMP_MAGIC): Ditto.
1538 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1539 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1540 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1541 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
1542 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
1543
1544 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
1545
1546 * NEWS: Note that Alpha targets are now multi-arch.
1547
1548 2002-04-24 Michael Snyder <msnyder@redhat.com>
1549
1550 * parser-defs.h (prev_lexptr): New external variable.
1551 * parse.c (parse_exp_1): Set prev_lexptr to null before
1552 calling the language-specific parser.
1553 * c-exp.y (yylex): Set prev_lexptr to start of current token.
1554 (yyerror): Use prev_lexptr in error reporting.
1555
1556 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
1557
1558 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
1559 * gregset.h: If FILL_FPXREGSET is defined, provide
1560 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
1561 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
1562 is defined, call fill_fpxregset.
1563
1564 2002-04-24 Roland McGrath <roland@frob.com>
1565
1566 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
1567 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
1568 (supply_gregset, supply_fpregset): New functions.
1569
1570 * gnu-nat.c (gnu_find_memory_regions): New function.
1571 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
1572 (gnu_xfer_memory): Add a cast.
1573
1574 2002-04-24 Michael Snyder <msnyder@redhat.com>
1575
1576 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
1577 loop. Add handling for "str lr, [sp, #-4]!" and for saves
1578 of argument regs ("str r(0123), [r11, #-nn"]).
1579 (arm_skip_prologue): Better handling for frameless functions.
1580 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
1581 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
1582
1583 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
1584
1585 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
1586 NUM_PSEUDO_REGS can be used.
1587
1588 2002-04-24 Andrew Cagney <ac131313@redhat.com>
1589
1590 * arch-utils.h: Update copyright.
1591
1592 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
1593 * gdbarch.h, gdbarch.c: Re-generate.
1594
1595 * inferior.h (IN_SIGTRAMP): Delete definition.
1596 * arch-utils.c (legacy_pc_in_sigtramp): New function.
1597 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
1598
1599 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
1600 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
1601 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
1602 (find_proc_framesize): Ditto.
1603 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
1604 (alpha_init_extra_frame_info): Ditto.
1605 * infrun.c (handle_inferior_event): Ditto.
1606 (handle_inferior_event): Ditto.
1607 (check_sigtramp2): Ditto.
1608 * blockframe.c (create_new_frame): Ditto.
1609 (get_prev_frame): Ditto.
1610 * ppc-linux-tdep.c: Update comments.
1611 * i386-linux-tdep.c: Update comments.
1612 * breakpoint.c (bpstat_what): Update comment.
1613
1614 2002-04-24 Michal Ludvig <mludvig@suse.cz>
1615
1616 * gdbserver/linux-low.c (regsets_fetch_inferior_registers),
1617 (regsets_store_inferior_registers): Removed cast to int from
1618 ptrace() calls.
1619 * gdbserver/regcache.h: Added declaration of struct inferior_info.
1620
1621 2002-04-24 David S. Miller <davem@redhat.com>
1622
1623 * i960-tdep.c (register_in_window_p): New function.
1624 (i960_find_saved_register): Use it instead of
1625 REGISTER_IN_WINDOW_P.
1626 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
1627
1628 * symtab.h (find_stab_function_addr): Kill extern.
1629 * minsyms.c (find_stab_function_addr): Remove from here...
1630 * dbxread.c: ... to here, and mark it static.
1631
1632 2002-04-20 David S. Miller <davem@redhat.com>
1633
1634 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
1635 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
1636
1637 2002-04-21 David S. Miller <davem@redhat.com>
1638
1639 * remote-vxsparc.c (vx_read_register): Fix typo, we want
1640 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
1641 (vx_write_register): Likewise.
1642
1643 2002-04-23 J. Brobecker <brobecker@gnat.com>
1644
1645 * source.c (is_regular_file): New function.
1646 (openp): Check wether file to open is a regular file
1647 to avoid opening directories.
1648
1649 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1650
1651 * findvar.c (extract_signed_integer): Cast printf argument
1652 to suppress format warning.
1653 (extract_unsigned_integer): Likewise.
1654 * infcmd.c (registers_info): Likewise.
1655 * top.c (get_prompt_1): Likewise.
1656 * valops.c (value_assign): Likewise.
1657 * valprint.c (print_decimal): Likewise.
1658
1659 2002-04-22 H.J. Lu (hjl@gnu.org)
1660
1661 * c-exp.y (typebase): Support
1662
1663 [long|long long|short] [signed|unsigned] [int|]
1664
1665 and
1666
1667 signed [long|long long|short] int
1668
1669 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1670
1671 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
1672 and vax-tdep.h.
1673 * vax-tdep.h: New file.
1674 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
1675 Make several routines static.
1676 (vax_get_saved_register): New function.
1677 (vax_gdbarch_init): New function.
1678 (_initialize_vax_tdep): Register vax_gdbarch_init.
1679 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
1680 Remove macros now under the control of gdbarch.
1681
1682 2002-04-22 Michael Snyder <msnyder@redhat.com>
1683
1684 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
1685 Some whitespace and coding standards tweaks.
1686
1687 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1688
1689 * vax-tdep.c: Include regcache.h.
1690 (vax_call_dummy_words): New.
1691 (sizeof_vax_call_dummy_words): New.
1692 (vax_fix_call_dummy): New function.
1693 (vax_saved_pc_after_call): Ditto.
1694 * config/vax/tm-vax.h: Don't include regcache.h.
1695 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
1696 (CALL_DUMMY): Remove.
1697 (CALL_DUMMY_WORDS): Define.
1698 (SIZEOF_CALL_DUMMY_WORDS): Define.
1699 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
1700
1701 2002-04-18 Michael Snyder <msnyder@redhat.com>
1702
1703 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
1704
1705 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1706
1707 * vax-tdep.c (vax_frame_chain): New function.
1708 (vax_push_dummy_frame): Ditto.
1709 (vax_pop_frame): Ditto.
1710 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
1711 (FRAMELESS_FUNCTION_INVOCATION): Use
1712 generic_frameless_function_invocation_not.
1713 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
1714 (POP_FRAME): Use vax_pop_frame.
1715
1716 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1717
1718 * vax-tdep.c (vax_store_struct_return): New function.
1719 (vax_extract_return_value): Ditto.
1720 (vax_store_return_value): Ditto.
1721 (vax_extract_struct_value_address): Ditto.
1722 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
1723 vax_store_struct_return.
1724 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
1725 (STORE_RETURN_VALUE): Use vax_store_return_value.
1726 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
1727
1728 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1729
1730 * vax-tdep.c (vax_frame_saved_pc): New function.
1731 (vax_frame_args_address_correct): Ditto.
1732 (vax_frame_args_address): Ditto.
1733 (vax_frame_locals_address): Ditto.
1734 (vax_frame_num_args): Move code to be in proximity to
1735 other frame-related functions.
1736 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
1737 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
1738 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
1739 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
1740 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
1741
1742 2002-04-22 H.J. Lu (hjl@gnu.org)
1743
1744 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
1745 includedir.
1746
1747 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1748
1749 * vax-tdep.c (vax_frame_init_saved_regs): New function.
1750 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
1751 (FRAME_INIT_SAVED_REGS): New macro.
1752
1753 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1754
1755 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
1756
1757 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1758
1759 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
1760 where needed.
1761 (fetch_osf_core_registers): Likewise.
1762 (supply_gregset): Likewise.
1763
1764 2002-04-22 J. Brobecker <brobecker@gnat.com>
1765
1766 * symfile.h (get_section_index): Define.
1767 * symfile.c (get_section_index): New function.
1768 * mdebugread.c (SC_IS_SBSS): New macro.
1769 (SC_IS_BSS): Return true for the scBss storage class only, as
1770 the scSBss storage class refers to the .sbss section.
1771 (parse_partial_symbols): Discard the symbols which associated
1772 section does not exist.
1773 Make sure to use the .sbss section index for symbols which
1774 storage class is scBss, rather than using the .bss section index.
1775
1776 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
1777
1778 * vax-tdep.c: Update copyright years.
1779 (vax_register_name): New function.
1780 (vax_register_byte): Ditto.
1781 (vax_register_raw_size): Ditto.
1782 (vax_register_virtual_size): Ditto.
1783 (vax_register_virtual_type): Ditto.
1784 * config/vax/tm-vax.h: Update copyright years.
1785 (REGISTER_NAMES): Remove.
1786 (REGISTER_NAME): Define.
1787 (REGISTER_BYTE): Use vax_register_byte.
1788 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
1789 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
1790 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
1791
1792 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1793
1794 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
1795 declaration
1796 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
1797
1798 2002-04-21 David S. Miller <davem@redhat.com>
1799
1800 * arch-utils.c (generic_prologue_frameless_p): Kill
1801 SKIP_PROLOGUE_FRAMELESS_P code.
1802 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
1803 references.
1804 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
1805 * arc-tdep.c (arc_prologue_frameless_p): Implement.
1806 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
1807 references.
1808 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
1809 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
1810 (sparc_gdbarch_init): Pass it to
1811 set_gdbarch_prologue_frameless_p.
1812
1813 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1814
1815 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
1816 (alphabsd-nat.o): New dependency list.
1817
1818 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1819
1820 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
1821 alphafbsd-tdep.c.
1822 (alpha-linux-tdep.o): New dependency list.
1823 (alphafbsd-tdep.o): Likewise.
1824
1825 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1826
1827 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
1828 to here...
1829 * alpha-tdep.c: ...from here.
1830 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
1831
1832 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1833
1834 * config/alpha/tm-alpha.h: Move alpha_software_single_step
1835 prototype from here...
1836 * alpha-tdep.h: ...to here.
1837
1838 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1839
1840 * frame.h (selected_frame_level): Document as deprecated.
1841 (frame_relative_level): Declare.
1842 * stack.c (frame_relative_level): New function.
1843 (selected_frame_level): Document as deprecated.
1844 (select_frame): Do not set the selected_frame_level.
1845
1846 * stack.c (frame_info, record_selected_frame): Update.
1847 (frame_command, current_frame_command): Update.
1848 (up_silently_base, up_command, down_silently_base): Update.
1849 (down_command): Update.
1850 * inflow.c (kill_command): Update.
1851 * tracepoint.c (finish_tfind_command): Update.
1852 * corelow.c (core_open): Update.
1853 * thread.c (info_threads_command): Update.
1854 (do_captured_thread_select): Update.
1855 * infcmd.c (finish_command): Update.
1856 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
1857
1858 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1859
1860 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
1861
1862 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1863
1864 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
1865 type const.
1866
1867 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1868
1869 * alphafbsd-tdep.c: Update copyright years. Include
1870 alpha-tdep.h.
1871 (alphafbsd_use_struct_convention): Make static.
1872 (alphafbsd_init_abi): New function.
1873 (_initialize_alphafbsd_tdep): New function.
1874 * config/alpha/tm-fbsd.h: Update copyright years.
1875 (USE_STRUCT_CONVENTION): Remove.
1876
1877 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1878
1879 * alpha-tdep.c (alpha_abi_handler): New structure to describe
1880 an Alpha ABI variant.
1881 (alpha_abi_handler_list): Declare.
1882 (alpha_gdbarch_register_os_abi): New function.
1883 (alpha_gdbarch_init): Give registered ABI variant handlers a
1884 chance to tweak the gdbarch once we have set up defaults.
1885 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
1886
1887 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1888
1889 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
1890 to standard_coerce_float_to_double.
1891 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
1892
1893 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1894
1895 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
1896 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
1897 from gdbarch_tdep rather than a constant.
1898 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
1899 the default text address for all Alpha Unix ABIs.
1900 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
1901 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
1902
1903 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
1904
1905 * alpha-tdep.h: New file. Includes several Alpha target constants
1906 taken from...
1907 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
1908 let gdbarch deal with.
1909 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
1910 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
1911 to dependency list.
1912 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
1913 Alpha target register names.
1914 * alphabsd-nat.c: Likewise.
1915 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
1916 Alpha target register names. Make serveral routines static.
1917 (alpha_get_saved_register): New function.
1918 (alpha_abi_names): New.
1919 (process_note_abi_tag_sections): New function.
1920 (get_elfosabi): New function.
1921 (alpha_gdbarch_init): New function.
1922 (alpha_dump_tdep): New function.
1923 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
1924
1925 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1926
1927 * frame.c (find_saved_register): Delete #ifdef
1928 HAVE_REGISTER_WINDOWS code.
1929 * config/sparc/tm-sparc.h: Update comments.
1930 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
1931
1932 2002-04-21 Andrew Cagney <ac131313@redhat.com>
1933
1934 * i960-tdep.c (i960_find_saved_register): New function.
1935 (i960_get_saved_register): New function.
1936 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
1937 (i960_get_saved_register): Declare.
1938 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
1939
1940 2002-04-20 David S. Miller <davem@redhat.com>
1941
1942 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
1943
1944 2002-04-20 Andrew Cagney <ac131313@redhat.com>
1945
1946 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
1947 instead of NUM_PSEUDO_REGS.
1948
1949 2002-04-20 David S. Miller <davem@redhat.com>
1950
1951 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
1952 GDB_MULTI_ARCH_PARTIAL
1953 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
1954 define, let tm-sp64.h do it.
1955
1956 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
1957
1958 * frame.c (find_saved_register): Avoid a NULL pointer
1959 dereference and actually walk the frame list.
1960
1961 2002-04-20 Andrew Cagney <ac131313@redhat.com>
1962
1963 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
1964 sorted in most most-recent-used order. Document.
1965 * gdbarch.h, gdbarch.c: Regenerate.
1966
1967 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
1968
1969 * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
1970 (add_inferior): Call create_register_cache.
1971 (clear_inferiors): Call free_register_cache.
1972 (inferior_regcache_data, set_inferior_regcache_data): New functions.
1973 * gdbserver/regcache.c (struct inferior_regcache_data): New.
1974 (registers): Remove.
1975 (get_regcache): New function.
1976 (create_register_cache, free_register_cache): New functions.
1977 (set_register_cache): Don't initialize the register cache here.
1978 (registers_to_string, registers_from_string, register_data): Call
1979 get_regcache.
1980 * gdbserver/regcache.h: Add prototypes.
1981 * gdbserver/server.h: Likewise.
1982
1983 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
1984
1985 * gdbserver/mem-break.c: New file.
1986 * gdbserver/mem-break.h: New file.
1987 * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
1988 dependencies.
1989 * gdbserver/inferiors.c (struct inferior_info): Add target_data
1990 member.
1991 (clear_inferiors): Free target_data member if set.
1992 (inferior_target_data, set_inferior_target_data): New functions.
1993 * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
1994 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
1995 * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
1996 (struct inferior_linux_data): New.
1997 (linux_create_inferior): Use set_inferior_target_data.
1998 (linux_attach): Likewise. Call add_inferior.
1999 (linux_wait_for_one_inferior): New function.
2000 (linux_wait): Call it.
2001 (linux_write_memory): Add const.
2002 (initialize_low): Call set_breakpoint_data.
2003 * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
2004 handling members.
2005 * gdbserver/server.c (attach_inferior): Remove extra add_inferior
2006 call.
2007 * gdbserver/server.h: Include mem-break.h. Update inferior.c
2008 prototypes.
2009 * gdbserver/target.c (read_inferior_memory)
2010 (write_inferior_memory): New functions.
2011 * gdbserver/target.h (read_inferior_memory)
2012 (write_inferior_memory): Change macros to prototypes.
2013 (struct target_ops): Update comments. Add const to write_memory
2014 definition.
2015
2016 2002-04-19 Andrew Cagney <ac131313@redhat.com>
2017
2018 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
2019 instead of ->prev.
2020 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
2021 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
2022 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
2023 instead of ->prev.
2024
2025 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
2026
2027 Fix PR gdb/471.
2028 * gdbtypes.c (init_simd_type): Rewrite using new functions.
2029 (build_builtin_type_vec128): Ditto.
2030 (append_composite_type_field): Fix calculation of type length in
2031 union case.
2032
2033 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
2034
2035 * config/djgpp/README: Update.
2036
2037 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
2038 compiler warnings.
2039
2040 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
2041
2042 * alpha-tdep.c (setup_arbitrary_frame): Rename...
2043 (alpha_setup_arbitrary_frame): ...to this.
2044 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
2045 for alpha_setup_arbitrary_frame.
2046
2047 2002-04-18 Andrew Cagney <cagney@redhat.com>
2048
2049 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
2050 * gdbarch.h, gdbarch.c: Regenerate.
2051
2052 * defs.h (breakpoint_from_pc_fn): Delete type definition.
2053 * target.h (memory_breakpoint_from_pc): Update declaration.
2054 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
2055
2056 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
2057 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
2058 * mem-break.c (memory_breakpoint_from_pc): Ditto.
2059 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
2060 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
2061 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
2062 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
2063 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
2064 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
2065 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
2066 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
2067 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
2068
2069 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
2070 const pointer.
2071 * monitor.c (monitor_insert_breakpoint): Ditto.
2072 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
2073
2074 * config/mcore/tm-mcore.h: Update copyright.
2075 * mem-break.c: Ditto.
2076 * xstormy16-tdep.c: Ditto.
2077
2078 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
2079
2080 * p-exp.y: Add precedence rule for '^' token.
2081 This removes the shift/reduce conflicts.
2082 Remove the comment concerning these shift/reduce conflicts.
2083
2084 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
2085
2086 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
2087 (registers_powerpc_nofp): New register set for processors
2088 without floating point unit.
2089
2090 2002-04-18 David S. Miller <davem@redhat.com>
2091
2092 * MAINTAINERS: Add myself to write-after-approval.
2093
2094 2002-04-17 Michael Snyder <msnyder@redhat.com>
2095
2096 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
2097
2098 2002-04-17 Andrew Cagney <ac131313@redhat.com>
2099
2100 * rs6000-tdep.c (frame_initial_stack_address): Use
2101 frame_register_read to read the alloca_reg.
2102
2103 2002-04-17 Andrew Cagney <ac131313@redhat.com>
2104
2105 * frame.c (find_saved_register): Find saved registers in the next
2106 not prev frame.
2107 Fix PR gdb/365.
2108
2109 2002-04-17 Andrew Cagney <ac131313@redhat.com>
2110
2111 * gdbarch.sh (LANG): Set to ``c''.
2112
2113 2002-04-15 Andrew Cagney <ac131313@redhat.com>
2114
2115 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
2116
2117 2002-04-15 Andrew Cagney <ac131313@redhat.com>
2118
2119 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
2120 Update copyright.
2121
2122 * hpread.c (hpread_get_lntt): Add declaration.
2123 Also fix PR gdb/391.
2124
2125 2002-04-14 Andrew Cagney <ac131313@redhat.com>
2126
2127 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
2128 * aclocal.m4, configure: Re-generate.
2129 Fix PR gdb/391.
2130
2131 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
2132
2133 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
2134 instead of tm_print_insn.
2135
2136 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
2137
2138 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
2139
2140 2002-04-14 Andrew Cagney <ac131313@redhat.com>
2141
2142 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
2143 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
2144 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
2145
2146 2002-04-12 Don Howard <dhoward@redhat.com>
2147
2148 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
2149 max_user_call_depth.
2150 (init_cmd_lists): Initialize the new value;
2151 * cli/cli-script.c (execute_user_command): Limit the call depth of
2152 user defined commands. This avoids a core-dump when user commands
2153 are infinitly recursive.
2154
2155 2002-04-12 Kevin Buettner <kevinb@redhat.com>
2156
2157 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
2158 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
2159 from tdep struct instead of DEFAULT_LR_SAVE.
2160 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
2161 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
2162 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
2163
2164 2002-04-12 Michael Snyder <msnyder@redhat.com>
2165
2166 * Remote.c: Spelling fix.
2167 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
2168 If no symbol found for "sbrk", try "_sbrk".
2169 (make_output_phdrs): Use bfd_section_name.
2170 (gcore_copy_callback): Use bfd_section_name.
2171 * eval.c: Indentation fix-ups.
2172 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
2173 in case it gets applied to an address that is already
2174 in the instruction space.
2175 * cli/cli-decode.c (help_list): Allow long lines to wrap.
2176 * symfile.c: Fix indentation, long lines.
2177 * source.c: White space fix-up.
2178
2179 2002-04-12 Andrew Cagney <cagney@redhat.com>
2180
2181 * defs.h (read_relative_register_raw_bytes): Delete declaration.
2182 * frame.c (frame_register_read): New function. Return non-zero on
2183 success.
2184 (read_relative_register_raw_bytes_for_frame): Delete.
2185 (read_relative_register_raw_bytes): Delete.
2186 * frame.h (frame_register_read): Declare.
2187 * d30v-tdep.c: Update Copyright. Use frame_register_read.
2188 * sh-tdep.c: Ditto.
2189 * infcmd.c (do_registers_info): Ditto.
2190 * hppa-tdep.c: Ditto.
2191 * rs6000-tdep.c: Ditto.
2192 * h8500-tdep.c: Ditto.
2193 * mips-tdep.c: Ditto.
2194 * h8300-tdep.c: Ditto.
2195 * z8k-tdep.c: Ditto.
2196
2197 2002-04-12 Kevin Buettner <kevinb@redhat.com>
2198
2199 From Jimi X <jimix@watson.ibm.com>:
2200 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
2201 64-bit SysV ABI.
2202
2203 2002-04-12 Kevin Buettner <kevinb@redhat.com>
2204
2205 From Jimi X <jimix@watson.ibm.com>:
2206 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
2207 bfd info.
2208
2209 2002-04-12 Kevin Buettner <kevinb@redhat.com>
2210
2211 From Jimi X <jimix@watson.ibm.com>:
2212 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
2213 register sets for these processor variants.
2214
2215 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
2216
2217 * gdbserver/linux-low.c (usr_store_inferior_registers): Support
2218 registers which are allowed to fail to store.
2219 * gdbserver/linux-low.h (linux_target_ops): Likewise.
2220 * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
2221 (ppc_cannot_store_register): FPSCR may not be storable.
2222 * regformats/reg-ppc.dat: Support FPSCR.
2223
2224 2002-04-11 Kevin Buettner <kevinb@redhat.com>
2225
2226 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
2227 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
2228 Add fpscr as an invalid/unfetchable register.
2229 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
2230 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
2231 (fill_fpregset): Add support for register fpscr.
2232 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
2233 (fill_gregset): Account for the fact that register ``mq'' might
2234 not exist.
2235 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
2236 (registers_power): Add fpscr to register set at slot 71.
2237 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
2238 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
2239
2240 2002-04-11 Michael Snyder <msnyder@redhat.com>
2241
2242 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
2243 * configure: Regenerate.
2244 * config.in: Regenerate.
2245 * acconfig.h: Add define for _SYSCALL32.
2246 * core-sol2.c: Remove #define _SYSCALL32.
2247 * solib-legacy.c: Remove #define _SYSCALL32.
2248
2249 2002-04-10 Andrew Cagney <ac131313@redhat.com>
2250
2251 * stack.c (select_frame): Cleanup internal error message, do not
2252 use %p.
2253
2254 2002-04-10 Andrew Cagney <ac131313@redhat.com>
2255
2256 * stack.c (select_frame): Check that selected_frame and the
2257 specified level are as expected.
2258 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
2259 Update copyright.
2260 * frame.h (struct frame_info): Add field `level'. Update
2261 copyright.
2262 Work-in-progress PR gdb/464.
2263
2264 2002-04-10 Andrew Cagney <ac131313@redhat.com>
2265
2266 * maint.c (maint_print_section_info): Rename print_section_info.
2267 (print_bfd_section_info, print_objfile_section_info): Update.
2268 * inferior.h (struct gdbarch): Add opaque declaration.
2269 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
2270 * gdbarch.h: Regenerate.
2271
2272 2002-04-10 Michal Ludvig <mludvig@suse.cz>
2273
2274 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
2275 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
2276 (kernel_u_size): Added.
2277 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
2278 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
2279
2280 2002-04-04 Jim Ingham <jingham@apple.com>
2281
2282 * valarith.c (find_size_for_pointer_math): New function, either returns
2283 the size for a pointer's target, returns 1 for void *, or errors for
2284 incomplete types.
2285 (value_add, value_sub): use find_size_for_pointer_math.
2286
2287 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2288
2289 * linux-low.c (linux_look_up_symbols): New hook.
2290 (linux_target_ops): Add linux_look_up_symbols.
2291 * remote-utils.c (decode_address): New function.
2292 (look_up_one_symbol): New function.
2293 * server.c (handle_query): Call target look_up_symbols hook.
2294 * server.h (look_up_one_symbol): Add prototype.
2295 * target.h (struct target_ops): Add look_up_symbols hook.
2296
2297 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2298
2299 * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
2300 * ChangeLog: Correct paths in last ChangeLog entry.
2301
2302 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2303
2304 * gdbserver/linux-low.h: Remove obsolete prototypes.
2305 (struct linux_target_ops): New.
2306 (extern the_low_target): New.
2307 * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
2308 (register_addr): Use the_low_target explicitly.
2309 (fetch_register): Likewise.
2310 (usr_fetch_inferior_registers): Likewise.
2311 (usr_store_inferior_registers): Likewise.
2312 * gdbserver/linux-arm-low.c (num_regs): Remove.
2313 (arm_num_regs): Define.
2314 (arm_regmap): Renamed from regmap, made static.
2315 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
2316 made static.
2317 (arm_cannot_store_register): Renamed from cannot_store_register,
2318 made static.
2319 (the_low_target): New.
2320 * gdbserver/linux-i386-low.c (num_regs): Remove.
2321 (i386_num_regs): Define.
2322 (i386_regmap): Renamed from regmap, made static.
2323 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
2324 made static.
2325 (i386_cannot_store_register): Renamed from cannot_store_register,
2326 made static.
2327 (the_low_target): New.
2328 * gdbserver/linux-ia64-low.c (num_regs): Remove.
2329 (ia64_num_regs): Define.
2330 (ia64_regmap): Renamed from regmap, made static.
2331 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
2332 made static.
2333 (ia64_cannot_store_register): Renamed from cannot_store_register,
2334 made static.
2335 (the_low_target): New.
2336 * gdbserver/linux-m68k-low.c (num_regs): Remove.
2337 (m68k_num_regs): Define.
2338 (m68k_regmap): Renamed from regmap, made static.
2339 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
2340 made static.
2341 (m68k_cannot_store_register): Renamed from cannot_store_register,
2342 made static.
2343 (the_low_target): New.
2344 * gdbserver/linux-mips-low.c (num_regs): Remove.
2345 (mips_num_regs): Define.
2346 (mips_regmap): Renamed from regmap, made static.
2347 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
2348 made static.
2349 (mips_cannot_store_register): Renamed from cannot_store_register,
2350 made static.
2351 (the_low_target): New.
2352 * gdbserver/linux-ppc-low.c (num_regs): Remove.
2353 (ppc_num_regs): Define.
2354 (ppc_regmap): Renamed from regmap, made static.
2355 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
2356 made static.
2357 (ppc_cannot_store_register): Renamed from cannot_store_register,
2358 made static.
2359 (the_low_target): New.
2360 * gdbserver/linux-s390-low.c (num_regs): Remove.
2361 (s390_num_regs): Define.
2362 (s390_regmap): Renamed from regmap, made static.
2363 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
2364 made static.
2365 (s390_cannot_store_register): Renamed from cannot_store_register,
2366 made static.
2367 (the_low_target): New.
2368 * gdbserver/linux-sh-low.c (num_regs): Remove.
2369 (sh_num_regs): Define.
2370 (sh_regmap): Renamed from regmap, made static.
2371 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
2372 made static.
2373 (sh_cannot_store_register): Renamed from cannot_store_register,
2374 made static.
2375 (the_low_target): New.
2376 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
2377 (the_low_target): New.
2378
2379 2002-04-09 Andrew Cagney <ac131313@redhat.com>
2380
2381 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
2382 override FP_REGNUM with frame->fp. Update copyright.
2383 * parse.c (num_std_regs, std_regs): Delete.
2384 (target_map_name_to_register): Do not search std_regs. Update
2385 function description.
2386 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
2387 declarations. Update copyright.
2388 Fix PR gdb/251.
2389
2390 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2391
2392 * gdbserver/Makefile.in: Add stamp-h target.
2393 * gdbserver/configure.in: Create stamp-h.
2394 * gdbserver/configure: Regenerated.
2395
2396 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2397
2398 * gdbserver/inferiors.c: New file.
2399 * gdbserver/target.c: New file.
2400 * gdbserver/target.h: New file.
2401 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
2402 dependencies.
2403 * gdbserver/linux-low.c (inferior_pid): New static variable,
2404 moved from server.c.
2405 (linux_create_inferior): Renamed from create_inferior.
2406 Call add_inferior. Return 0 on success instead of a PID.
2407 (linux_attach): Renamed from myattach.
2408 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
2409 (linux_thread_alive): Renamed from mythread_alive.
2410 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
2411 child dies.
2412 (linux_resume): Renamed from myresume. Add missing ``return 0''.
2413 (regsets_store_inferior_registers): Correct error message.
2414 Add missing ``return 0''.
2415 (linux_fetch_registers): Renamed from fetch_inferior_registers.
2416 (linux_store_registers): Renamed from store_inferior_registers.
2417 (linux_read_memory): Renamed from read_inferior_memory.
2418 (linux_write_memory): Renamed from write_inferior_memory.
2419 (linux_target_ops): New structure.
2420 (initialize_low): Call set_target_ops ().
2421 * gdbserver/remote-utils.c (unhexify): New function.
2422 (hexify): New function.
2423 (input_interrupt): Send signals to ``signal_pid''.
2424 * gdbserver/server.c (inferior_pid): Remove.
2425 (start_inferior): Update create_inferior call.
2426 (attach_inferior): Call add_inferior.
2427 (handle_query): New function.
2428 (main): Call handle_query for `q' packets.
2429 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
2430 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
2431
2432 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2433
2434 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
2435 dependencies.
2436 * gdbserver/configure.in: Check for <string.h>
2437 * gdbserver/configure: Regenerate.
2438 * gdbserver/config.in: Regenerate.
2439 * gdbserver/gdbreplay.c: Include needed system headers.
2440 (remote_open): Remove strchr prototype.
2441 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
2442 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
2443 (supply_register_by_name): Likewise.
2444 (collect_register): Change buf argument to void *.
2445 (collect_register_by_name): Likewise.
2446 * gdbserver/regcache.h: Add missing prototypes.
2447 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
2448 * gdbserver/server.c (handle_query): New function.
2449 (attached): New static variable, moved out of main.
2450 (main): Quiet longjmp clobber warnings.
2451 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
2452 * gdbserver/utils.c (error): Remove NORETURN.
2453 (fatal): Likewise.
2454
2455 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2456
2457 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
2458 after the last symbol in a block.
2459
2460 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
2461
2462 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
2463 is non zero as a found symbol.
2464
2465 2002-04-08 Andrew Cagney <ac131313@redhat.com>
2466
2467 * findvar.c: Include "builtin-regs.h".
2468 (value_of_register): Call value_of_builtin_reg when applicable.
2469 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
2470 (target_map_name_to_register): Call
2471 builtin_reg_map_name_to_regnum.
2472 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
2473 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
2474 (builtin_regs_h): Define.
2475 (builtin-regs.o): New target.
2476 (findvar.o): Add $(builtin_regs_h).
2477 * builtin-regs.c, builtin-regs.h: New files.
2478 * std-regs.c: New file.
2479 Partial fix for PR gdb/251.
2480
2481 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2482
2483 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
2484 it's no longer required.
2485
2486 2002-04-08 Andrew Cagney <ac131313@redhat.com>
2487
2488 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
2489
2490 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2491
2492 From Jimi X <jimix@watson.ibm.com>:
2493 * rs6000-tdep.c (rs6000_software_single_step): Use
2494 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
2495 and size. Use target_insert_breakpoint() and
2496 target_remove_breakpoint() to insert and remove breakpoints
2497 instead of explicit memory reads and writes.
2498
2499 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2500
2501 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
2502 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
2503 ELF_OBJECT_FORMAT ifdef.
2504
2505 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2506
2507 From Jimi X <jimix@watson.ibm.com>:
2508 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
2509
2510 2002-04-08 Kevin Buettner <kevinb@redhat.com>
2511
2512 From Jimi X <jimix@watson.ibm.com>:
2513 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
2514 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
2515
2516 2002-04-07 Mark Kettenis <kettenis@gnu.org>
2517
2518 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
2519 s/asprintf/xasprintf/.
2520 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
2521
2522 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2523
2524 I believe Jeff Law denies responsability for this one:
2525 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
2526 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
2527 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
2528 Work-around for PR gdb/366.
2529
2530 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
2531
2532 * remote-e7000.c (write_small, e7000_read_inferior_memory,
2533 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
2534 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
2535
2536 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
2537
2538 * sh-tdep.c (sh_fp_frame_init_saved_regs,
2539 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
2540 information.
2541
2542 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2543
2544 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
2545 maintainer.
2546
2547 2002-04-07 Andrew Cagney <ac131313@redhat.com>
2548
2549 * README (Reporting Bugs in GDB): Document the bug web page as the
2550 prefered way of submitting bugs.
2551 Fix PR gdb/402.
2552
2553 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2554
2555 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
2556 -1. Update comment.
2557 * gdbarch.h, gdbarch.c: Re-generate.
2558
2559 2002-04-07 Andreas Schwab <schwab@suse.de>
2560
2561 * m68klinux-nat.c (fill_fpregset): Properly pass address of
2562 buffer to regcache_collect.
2563
2564 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2565
2566 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
2567 * gdbarch.c, gdbarch.h: Re-generate.
2568
2569 2002-04-06 Andrew Cagney <ac131313@redhat.com>
2570
2571 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
2572 declaration. Fix -Werror.
2573
2574 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
2575
2576 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
2577 * gdbarch.c: Regenerate.
2578
2579 2002-04-05 Michael Snyder <msnyder@redhat.com>
2580
2581 * breakpoint.c (clear_command): Rewrite middle section to
2582 combine two loops with identical control conditions.
2583 Add a cleanup to eliminate a memory leak.
2584 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
2585
2586 2002-04-05 H.J. Lu (hjl@gnu.org)
2587
2588 * solib-svr4.c (bkpt_names): Add "__start".
2589
2590 2002-04-04 Andrew Cagney <ac131313@redhat.com>
2591
2592 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
2593 as test for 64 bit target.
2594
2595 2002-04-05 Andrew Cagney <ac131313@redhat.com>
2596
2597 * h8500-tdep.c (h8500_write_fp): Delete function.
2598 * dwarf2cfi.c (cfi_write_fp): Document as not used.
2599 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
2600 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
2601 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
2602 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
2603 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
2604 (s390_write_fp):
2605 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
2606 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
2607 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
2608 (d10v_write_fp): Delete function.
2609 * inferior.h (write_fp, generic_target_write_fp): Delete
2610 declarations.
2611 * regcache.c (generic_target_write_fp): Delete function.
2612 (write_fp): Delete function.
2613 * gdbarch.sh (TARGET_WRITE_FP): Delete.
2614 * gdbarch.h, gdbarch.c: Regenerate.
2615 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
2616 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
2617 (sparc64_write_fp): Delete declaration.
2618 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
2619 (h8500_write_fp): Delete declaration.
2620
2621 2002-04-04 Andrew Cagney <ac131313@redhat.com>
2622
2623 * sparc-tdep.c (sparc64_write_fp): Delete.
2624 (sparc_push_dummy_frame): Replace write_fp call with code to store
2625 the FP directly.
2626 (sparc_gdbarch_init): Do not initialize write_fp.
2627
2628 2002-04-05 Kevin Buettner <kevinb@redhat.com>
2629
2630 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
2631 clause.
2632
2633 2002-03-29 Jim Blandy <jimb@redhat.com>
2634
2635 * stack.c (get_selected_block): Add new argument `addr_in_block',
2636 used to return the exact code address we used to select the block,
2637 not just the block.
2638 * blockframe.c (get_frame_block, get_current_block): Same.
2639 * frame.h (get_frame_block, get_current_block,
2640 get_selected_block): Update declarations.
2641 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
2642 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
2643
2644 2002-04-05 Michael Snyder <msnyder@redhat.com>
2645
2646 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
2647 warning message.
2648
2649 2002-04-05 J. Brobecker <brobecker@gnat.com>
2650
2651 * utils.c (xfullpath): New function.
2652 * defs.h (xfullpath): Add declaration.
2653 * source.c (openp): Use xfullpath in place of gdb_realpath to
2654 avoid resolving the basename part of filenames when the
2655 associated file is a symbolic link. This fixes a potential
2656 inconsistency between the filenames known to GDB and the
2657 filenames it prints in the annotations.
2658 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
2659 to be able to match a filename with either the real filename, or
2660 the name of any symbolic link to this file.
2661 (lookup_partial_symtab): Ditto.
2662
2663 2002-04-04 Michael Snyder <msnyder@redhat.com>
2664
2665 * breakpoint.c: Add support for hardware breakpoints in overlays.
2666 (overlay_events_enabled): New state variable.
2667 (insert_breakpoints): Use overlay_events_enabled to decide
2668 whether to attempt to set a breakpoint at the overlay load addr.
2669 Handle bp_hardware_breakpoint as well as bp_breakpoint.
2670 (remove_breakpoint): Use overlay_events_enabled to decide
2671 whether breakpoints need to be removed from overlay load addr.
2672 Handle bp_hardware_breakpoint as well as bp_breakpoint.
2673 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
2674 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
2675 disable_overlay_breakpoints): Update overlay_events_enabled.
2676
2677 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
2678
2679 * dwarf2read.c (struct function_range): New.
2680 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
2681 (check_cu_functions): New.
2682 (read_file_scope): Initialize global function lists.
2683 Call dwarf_decode_line after processing children.
2684 (read_func_scope): Add to global function list.
2685 (dwarf_decode_lines): Call check_cu_functions everywhere
2686 record_line is called. Call record_line with a linenumber
2687 of 0 to mark sequence ends.
2688
2689 2002-04-04 Michal Ludvig <mludvig@suse.cz>
2690
2691 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
2692 change sync with glibc.
2693
2694 2002-04-03 Jim Blandy <jimb@redhat.com>
2695
2696 * configure.in: Call AC_C_INLINE.
2697 * configure: Regenerated.
2698
2699 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
2700
2701 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
2702 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
2703
2704 2002-03-31 Mark Kettenis <kettenis@gnu.org>
2705
2706 * NEWS: Mention gcore support on FreeBSD/i386.
2707
2708 * fbsd-proc.c: New file.
2709 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
2710 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
2711
2712 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
2713 while statement.
2714
2715 2002-03-29 Jim Blandy <jimb@redhat.com>
2716
2717 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
2718 unescaped newlines in string literals, but newer ones don't. So
2719 escape them.
2720
2721 2002-03-26 Michael Snyder <msnyder@redhat.com>
2722 Andrew Cagney <cagney@redhat.com>
2723
2724 * cli/cli-dump.c: New file. Dump memory to file,
2725 restore file to memory.
2726 * cli/cli-dump.h: New file.
2727 * Makefile.in: Add rules, dependencies for cli-dump.o.
2728 * NEWS: Mention new commands.
2729
2730 2002-03-28 Michael Snyder <msnyder@redhat.com>
2731
2732 * symfile.c (symbol_file_add): Move test for null symbols to later.
2733
2734 2002-03-27 Andrew Cagney <ac131313@redhat.com>
2735
2736 From veksler at il.ibm.com:
2737 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
2738 the xstrduped original path.
2739 Fix PR gdb/417.
2740
2741 2002-03-27 Michael Snyder <msnyder@redhat.com>
2742
2743 * breakpoint.c (_initialize_breakpoint): Clean up help string.
2744 * infcmd.c (_initialize_infcmd): Ditto.
2745 * language.c (_initialize_language): Ditto.
2746 * symfile.c (_initialize_symfile): Ditto.
2747 * top.c (_init_main): Ditto.
2748 * cli/cli-cmds.c (init_cli_cmds): Ditto.
2749
2750 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
2751
2752 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
2753 vector registers handling.
2754 (skip_prologue): Handle new AltiVec instructions. Fill in new
2755 fields of frame data.
2756 (frame_get_saved_regs): Fill in information for AltiVec registers.
2757
2758 2002-03-27 Jim Blandy <jimb@redhat.com>
2759
2760 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
2761 a function; leave this macro here to invoke that function.
2762 (symbol_init_mangled_name): Declaration for that function.
2763 * symtab.c (symbol_init_mangled_name): New function.
2764
2765 2002-03-27 Andrew Cagney <ac131313@redhat.com>
2766
2767 * valarith.c: Replace strerror with safe_strerror.
2768 * tracepoint.c: Ditto.
2769 * lin-lwp.c: Ditto.
2770 * go32-nat.c: Ditto.
2771 * inflow.c: Ditto.
2772 * gnu-nat.c: Ditto.
2773
2774 2002-03-27 Andreas Schwab <schwab@suse.de>
2775
2776 * event-top.c (command_line_handler): Remove useless if.
2777
2778 2002-03-27 Andreas Jaeger <aj@suse.de>
2779
2780 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
2781 comment.
2782
2783 2002-03-27 Michal Ludvig <mludvig@suse.cz>
2784
2785 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
2786 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
2787 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
2788 (x86_64_linux_dr_get_status, supply_gregset),
2789 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
2790 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
2791 (x86_64_register_info_table): Add.
2792 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
2793 (x86_64_register_raw_size, x86_64_register_virtual_type),
2794 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
2795 general x86_64_register_info_table.
2796 (i386_gdbarch_init): gdbarch_register_bytes is now set
2797 dynamicaly during initialization.
2798 * regformats/reg-x86-64.dat: Synced with changes to registers above.
2799 * gdbserver/linux-x86-64-low.c: Ditto.
2800
2801 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2802
2803 * gdbserver/server.c (main): Call target_signal_to_host_p
2804 and target_signal_to_host on signals received from the remote.
2805 * gdbserver/remote-utils.c (prepare_resume_reply): Call
2806 target_signal_from_host on signals sent to the remote.
2807 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
2808 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
2809
2810 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2811
2812 * signals/signals.c: Include "server.h" in gdbserver build.
2813 (target_signal_from_name): Don't use STREQ.
2814 (_initialize_signals): Likewise. Don't include function in
2815 gdbserver build.
2816
2817 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
2818
2819 * signals.c: Moved to...
2820 * signals/signals.c: Here.
2821 * Makefile (signals.o): Update.
2822
2823 2002-03-26 Jeff Law (law@redhat.com)
2824
2825 * somread.c (som_symtab_read): Remove some commented out code and
2826 updated related comments. Do not set the minimal symbol table to
2827 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
2828 in a dynamic executable.
2829 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
2830 where we are unable to find the minimal symbol for the given
2831 PC value.
2832
2833 2002-03-25 Jeff Law (law@redhat.com)
2834
2835 * linux-proc.c (read_mapping): Scan up to end of line for filename.
2836
2837 2002-03-25 Michal Ludvig <mludvig@suse.cz>
2838
2839 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
2840
2841 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2842
2843 * command.h: Update copyright.
2844 (struct cmd_list_element): Replace definition with opaque
2845 declaration.
2846 (enum cmd_types): Document that it will eventually be moved to
2847 cli/cli-decode.h
2848 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
2849 (MALLOCED_REPLACEMENT): Delete macro.
2850 * Makefile.in (cli_decode_h): Add $(command_h).
2851 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
2852 * top.c: Include "cli/cli-decode.h".
2853 * completer.c: Include "cli/cli-decode.h".
2854 * maint.c: Include "cli/cli-decode.h".
2855 * cli/cli-decode.h: Include "command.h".
2856 (enum command_class): Delete.
2857 (enum cmd_types): Comment out.
2858 (enum cmd_auto_boolean): Delete.
2859 (enum var_types): Delete.
2860
2861 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2862
2863 * cli/cli-decode.c: Include "gdb_assert.h".
2864 (add_set_or_show_cmd): New static function.
2865 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
2866 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
2867 all fields, such as func, from the set command.
2868
2869 2002-03-23 Andrew Cagney <ac131313@redhat.com>
2870
2871 * MAINTAINERS (sh-elf): Change warning flag to -w.
2872
2873 2002-03-23 Andrew Cagney <cagney@redhat.com>
2874
2875 * defs.h (error): Add printf format attribute.
2876 * thread-db.c (thread_from_lwp): Fix error format string.
2877 * stack.c (parse_frame_specification): Ditto.
2878 * cli/cli-decode.c (undef_cmd_error): Ditto.
2879 * scm-lang.c (scm_lookup_name): Ditto.
2880 * tracepoint.c (trace_error): Ditto.
2881 * remote-utils.c (usage): Ditto.
2882 * remote.c (compare_sections_command): Ditto.
2883 Fix PR gdb/328.
2884
2885 2002-03-22 Andrew Cagney <ac131313@redhat.com>
2886
2887 * gdbtypes.c (append_composite_type_field): New function.
2888 (init_composite_type): New function.
2889 * gdbtypes.h (append_composite_type_field): Declare.
2890 (init_composite_type): Ditto.
2891
2892 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
2893
2894 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
2895 function.
2896 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
2897 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
2898 structure returning convention for SYSV ABI case, but not
2899 for GNU/Linux, FreeBSD, or NetBSD.
2900
2901 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
2902
2903 * symtab.h (lookup_block_symbol): Add mangled_name argument
2904 to prototype.
2905
2906 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
2907 with new mangled_name argument.
2908 * linespec.c (decode_line_1): Likewise.
2909 * valops (value_of_this): Likewise.
2910 * symtab.c (lookup_transparent_type): Likewise.
2911 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
2912 (lookup_symbol): If we are given a mangled name, pass it down
2913 to lookup_symbol_aux.
2914 (lookup_block_symbol): If we are given a mangled name to check
2915 against, only return symbols which match it.
2916
2917 2002-03-22 Christopher Faylor <cgf@redhat.com>
2918
2919 * win32-nat.c (child_create_inferior): Check for proper shell to use
2920 here, in case the user changes it on the fly.
2921 (_initialize_inftarg): Remove shell path considerations.
2922
2923 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
2924
2925 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
2926 for gdbarch_max_register_raw_size and max_register_virtual_size.
2927 Adjust copyright year.
2928
2929 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
2930
2931 * dbxread.c (process_one_symbol): Extend the first N_SLINE
2932 in a function to cover the entire beginning of the function
2933 as well if it does not already.
2934
2935 2002-03-21 Tom Rix <trix@redhat.com>
2936
2937 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
2938 (rs6000_ptrace64): Renamed from ptrace64.
2939
2940 2002-03-20 Martin M. Hunt <hunt@redhat.com>
2941
2942 * gdbserver/remote-utils.c (remote_open): Don't call
2943 getprotobyname, we're all using TCP here so just use
2944 IPPROTO_TCP.
2945 * gdbserver/gdbreplay.c (remote_open): Ditto.
2946
2947 2002-03-20 Martin M. Hunt <hunt@redhat.com>
2948
2949 * regcache.c (_initialize_regcache): No need to call
2950 build_regcache() at this time; it gets called whenever
2951 the gdbarch changes.
2952
2953 2002-03-20 David O'Brien <obrien@FreeBSD.org>
2954
2955 * sparc-nat.c: Include sys/param.h where possible.
2956
2957 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
2958
2959 Fix PR gdb/422.
2960 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
2961 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
2962 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
2963 complex types.
2964 * stabsread.c (rs6000_builtin_type): Likewise.
2965 (read_sun_floating_type): Likewise.
2966
2967 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2968
2969 * stabsread.c (read_member_functions): Remove skip code for duplicate
2970 constructor/destructor methods. Use standard parsing for these
2971 methods and just do not chain them to the list of methods after
2972 parsing.
2973
2974 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
2975
2976 * coffread.c: Remove redundant static declarations. Replace
2977 occurrences of `PTR' with `void *'.
2978 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
2979 * top.h (quit_cover): Likewise.
2980 * defs.h (catch_errors): Likewise.
2981
2982 2002-03-18 Andrew Cagney <ac131313@redhat.com>
2983
2984 * defs.h (XMALLOC): Define.
2985 * gdb-events.sh (XMALLOC): Delete macro.
2986 * gdb-events.c, gdb-events.h: Regenerate.
2987 * gdbarch.sh (XMALLOC): Delete macro.
2988 * gdbarch.c: Regenerate.
2989 * serial.c (XMALLOC): Delete macro.
2990 * ui-file.c (XMALLOC): Ditto.
2991 * ser-unix.h (XMALLOC): Ditto.
2992 * sh-tdep.c (XMALLOC): Ditto.
2993 * ui-out.c (XMALLOC): Ditto.
2994 * utils.c (XMALLOC): Ditto.
2995 * i386-tdep.c (XMALLOC): Ditto.
2996 * gdb-events.c (XMALLOC): Ditto.
2997 * d10v-tdep.c (XMALLOC): Ditto.
2998 * cli-out.c (XMALLOC): Ditto.
2999
3000 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
3001 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
3002 * ui-file.c, ui-out.c: Ditto.
3003
3004 2002-03-18 Andrew Cagney <ac131313@redhat.com>
3005
3006 * command.h (struct cmd_list_element): Add field context.
3007 (set_cmd_context, get_cmd_context): Declare.
3008 * cli/cli-decode.h: Ditto.
3009 * cli/cli-decode.c (get_cmd_context): New function.
3010 (set_cmd_context): New function.
3011 (add_cmd): Initialize context.
3012 Part of fixing PR gdb/145 and PR gdb/146.
3013
3014 2002-03-17 Andrew Cagney <ac131313@redhat.com>
3015
3016 * cli/cli-decode.c (cmd_type): New function.
3017 * command.h (cmd_type): Declare.
3018 * infrun.c (set_schedlock_func): Call function cmd_type.
3019 * kod.c (kod_set_os): Call cmd_type.
3020 * cris-tdep.c (cris_version_update): Use function cmd_type.
3021 (cris_mode_update, cris_abi_update): Ditto.
3022
3023 * command.h: (execute_cmd_post_hook): Declare.
3024 (execute_cmd_pre_hook): Declare.
3025 * cli/cli-script.c (clear_hook_in_cleanup): New function.
3026 (execute_cmd_post_hook, execute_cmd_pre_hook): New
3027 functions. Execute pre/post hook while ensuring that afterwords
3028 hook_in is cleared.
3029 * top.c (execute_command): Use execute_cmd_post_hook, and
3030 execute_cmd_pre_hook to execute pre/post commands.
3031 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
3032 hook_stop_stub.
3033 (hook_stop_stub): Call execute_cmd_pre_hook.
3034
3035 2002-03-17 Andrew Cagney <ac131313@redhat.com>
3036
3037 * kod.c (kod_set_os): Revert previous change. Is called by ``info
3038 set'' and this leads to a core dump. Move xstrdup of
3039 operating_system to after check that it is not NULL.
3040
3041 2002-03-17 Andrew Cagney <ac131313@redhat.com>
3042
3043 * kod.c (kod_set_os): Remove unnecessary check that
3044 ``command->type'' is set_cmd.
3045
3046 * valprint.c (set_input_radix): Use input_radix.
3047 (set_output_radix): Use output_radix.
3048 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
3049 isn't reverted.
3050
3051 2002-03-16 Andrew Cagney <ac131313@redhat.com>
3052
3053 * value.h (struct value): Delete field ``substring_addr''. Change
3054 aligner fields to force_doublest_align, force_longest_align,
3055 force_core_addr_align and force_pointer_aligh.
3056
3057 * value.h (struct value): Fix typo in above change.
3058
3059 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3060
3061 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
3062 to fix internal_error from ``maintenance print architecture''.
3063
3064 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3065
3066 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
3067 for gcc versions after gcc-2.8.1.
3068
3069 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3070
3071 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
3072 for method resolution. Restore adjustment of ``this'' pointer after
3073 calling value_struct_elt, which was accidentally removed during the
3074 HP merge.
3075
3076 2002-03-15 Andrew Cagney <ac131313@redhat.com>
3077
3078 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
3079 value_of_register.
3080 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
3081 get_saved_register.
3082 * value.h (value_of_register): Update.
3083
3084 2002-03-14 Richard Henderson <rth@redhat.com>
3085
3086 * configure.in: Detect declaration for canonicalize_file_name.
3087 * utils.c (canonicalize_file_name): Declare, if needed.
3088 (gdb_realpath): Prefer realpath if available and usable.
3089 * config.in, configure: Rebuild.
3090
3091 2002-03-14 Richard Henderson <rth@redhat.com>
3092
3093 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
3094 a constant array bound.
3095
3096 * MAINTAINERS: Add myself to write-after-approval.
3097
3098 2002-03-14 Michael Snyder <msnyder@redhat.com>
3099
3100 * symfile.c (syms_from_objfile): Return immediately if no syms.
3101 (symbol_file_add): Return immediately if no syms.
3102 (find_sym_fns): Return immediately if no syms.
3103
3104 2002-03-13 Michal Ludvig <mludvig@suse.cz>
3105
3106 * gdbserver/remote-util.c (remote_open): Print remote-side's
3107 IP address when remote debugging over the network.
3108
3109 2002-03-12 David O'Brien <obrien@FreeBSD.org>
3110
3111 * config/sparc/fbsd.mh: Fix copyright.
3112 * config/sparc/fbsd.mt: Likewise.
3113
3114 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
3115
3116 * MAINTAINERS: Fix typo in name of gdb warnings option.
3117 (x86-64): Fix formating so that this can be parsed by awk.
3118
3119 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
3120
3121 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
3122 * defs.h: Include "gdb/signals.h".
3123 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
3124
3125 2002-03-10 Michal Ludvig <mludvig@suse.cz>
3126
3127 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
3128 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
3129 from x86-64-tdep.h
3130
3131 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
3132 Don Howard <dhoward@redhat.com>
3133
3134 * mips-tdep.c (ST0_FR): Define.
3135 (mips2_fp_compat): New function, temporarily disabled.
3136 (mips_read_fp_register_single): New function.
3137 (mips_read_fp_register_double): New function.
3138 (mips_print_register): Use them.
3139 (do_fp_register_row): Likewise.
3140
3141 2002-03-09 Andrew Cagney <ac131313@redhat.com>
3142
3143 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
3144 approval''.
3145
3146 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3147
3148 * stabsread.c (read_member_functions): Fix is_stub test for
3149 static member functions, improve comment.
3150
3151 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
3152
3153 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
3154 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
3155 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
3156 commands that set boolean values.
3157 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
3158 (arm_rdi_resume): Always initialize PC.
3159 (arm_rdi_open): Don't use rslt as a boolean.
3160 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
3161 (arm_rdi_fetch_registers, arm_rdi_store_registers)
3162 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
3163 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
3164
3165 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
3166
3167 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
3168 * configure: Rebuilt.
3169
3170 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3171
3172 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
3173 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
3174
3175 2002-03-06 Andrew Cagney <ac131313@redhat.com>
3176
3177 * cli/cli-decode.c (set_cmd_completer): New function.
3178 * command.h (set_cmd_completer): Declare.
3179 * cli/cli-decode.h (set_cmd_completer): Ditto.
3180
3181 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
3182 * cli/cli-cmds.c (init_cli_cmds): Ditto.
3183 * win32-nat.c (_initialize_inftarg): Ditto.
3184 * remote-rdi.c (_initialize_remote_rdi): Ditto.
3185 * proc-api.c (_initialize_proc_api): Ditto.
3186 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
3187 * source.c (_initialize_source): Ditto.
3188 * exec.c (_initialize_exec): Ditto.
3189 * solib.c (_initialize_solib): Ditto.
3190 * top.c (init_main): Ditto.
3191 * tracepoint.c (_initialize_tracepoint): Ditto.
3192 * symfile.c (_initialize_symfile): Ditto.
3193 * printcmd.c (_initialize_printcmd): Ditto.
3194 * infcmd.c (_initialize_infcmd): Ditto.
3195 * corefile.c (_initialize_core): Ditto.
3196
3197 2002-03-05 Andrew Cagney <ac131313@redhat.com>
3198
3199 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
3200
3201 2002-03-05 Andrew Cagney <ac131313@redhat.com>
3202
3203 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
3204
3205 2002-03-05 Andrew Cagney <ac131313@redhat.com>
3206
3207 * NEWS: Update headings, 5.2 has branched.
3208
3209 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
3210
3211 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
3212 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
3213 (register_addr, REGISTER_RAW_SIZE): Likewise.
3214 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
3215 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
3216
3217 2002-03-03 Michal Ludvig <mludvig@suse.cz>
3218
3219 * MAINTAINERS (x86-64): Add myself.
3220 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
3221 changed value_ptr -> struct value *
3222
3223 2002-03-01 David O'Brien <obrien@FreeBSD.org>
3224
3225 * configure.host (sparc64-*-freebsd): Add.
3226 * configure.tgt: Likewise.
3227 * config/sparc/fbsd.mh: New file.
3228 * config/sparc/fbsd.mt: Likewise.
3229 * config/sparc/nm-fbsd.h: Likewise.
3230 * config/sparc/tm-fbsd.h: Likewise.
3231
3232 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
3233
3234 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
3235 regformats/reg-s390x.dat.
3236
3237 2002-03-01 Andrew Cagney <ac131313@redhat.com>
3238
3239 * utils.c: Add FIXME explaining true/false problem.
3240
3241 2002-02-28 Andrew Cagney <ac131313@redhat.com>
3242
3243 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
3244
3245 2002-02-28 Michael Chastain <mec@shout.net>
3246
3247 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
3248
3249 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
3250
3251 * gdbserver/linux-s390-low.c: New file.
3252 * regformats/reg-s390.dat: New file.
3253 * regformats/reg-s390x.dat: New file.
3254 * gdbserver/configure.srv: Add S/390.
3255 * gdbserver/Makefile.in: Add S/390.
3256 * configure.tgt: Enable gdbserver for S/390.
3257
3258 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
3259
3260 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
3261 first line of the doc string for "info dos", except at the end of
3262 the sentence, since the short help stops at the first period.
3263
3264 2002-02-28 Jason Merrill <jason@redhat.com>
3265
3266 * dwarf2read.c (dwarf_cfi_name): Add new codes.
3267
3268 2002-02-27 Fred Fish <fnf@redhat.com>
3269
3270 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
3271 comment (dumy -> dummy).
3272
3273 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3274
3275 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
3276
3277 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
3278
3279 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
3280
3281 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
3282
3283 * gdbserver/acconfig.h: New file.
3284 * gdbserver/i387-fp.c: New file.
3285 * gdbserver/i387-fp.h: New file.
3286 * gdbserver/linux-x86-64.c: New file.
3287 * regformats/reg-x86-64.dat: New file.
3288 * configure.tgt: Add x86_64-*-linux* gdbserver support.
3289 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
3290 * gdbserver/configure.in: Add support for regsets.
3291 * gdbserver/config.in: Regenerate.
3292 * gdbserver/configure: Regenerate.
3293 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
3294 * gdbserver/linux-low.h: New file.
3295 * gdbserver/linux-low.c: Include "linux-low.h". Add support
3296 for regsets.
3297 * gdbserver/linux-arm-low.c: Include "linux-low.h".
3298 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
3299 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
3300 * gdbserver/linux-mips-low.c: Include "linux-low.h".
3301 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
3302 * gdbserver/linux-sh-low.c: Include "linux-low.h".
3303 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
3304 "i387-fp.h". Add PTRACE_GETREGS and friends.
3305 * gdbserver/regcache.c (supply_register): New function.
3306 (supply_register_by_name): New function.
3307 (collect_register): New function.
3308 (collect_register_by_name): New function.
3309
3310 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
3311
3312 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
3313 (config.status): Add configure.srv dependency.
3314 (server_h): Add config.h dependency.
3315
3316 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
3317
3318 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
3319 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
3320 * gdbserver/configure.srv: Change i386-*-linux* to use
3321 reg-i386-linux.o.
3322
3323 2002-02-26 Andrew Cagney <ac131313@redhat.com>
3324
3325 * x86-64-tdep.c: Re-indent. Update copyright date.
3326
3327 2002-02-26 Andrew Cagney <ac131313@redhat.com>
3328
3329 From Michal Ludvig <mludvig@suse.cz>:
3330 * x86-64-tdep.c (value.h): Delete.
3331 (gdb_assert.h): Include.
3332 (x86_64_register_convert_to_virtual,
3333 x86_64_register_convert_to_raw ): Add check which lets only
3334 floating-point values to be converted.
3335 (value_push): Delete.
3336 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
3337 (i386_gdbarch_init): Number of register_bytes fixed.
3338
3339 2002-02-26 Andrew Cagney <ac131313@redhat.com>
3340
3341 * MAINTAINERS: Add x86-64 target.
3342
3343 2002-02-26 Andrew Cagney <ac131313@redhat.com>
3344
3345 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
3346 * osfsolib.c (solib_map_sections): Ditto.
3347 * irix5-nat.c (solib_map_sections): Ditto.
3348 * corelow.c (gdb_check_format): Ditto.
3349 * symfile.c (symfile_bfd_open): Ditto.
3350 * solib.c (solib_map_sections): Ditto.
3351 Fix PR gdb/354.
3352
3353 2002-02-26 Andrew Cagney <ac131313@redhat.com>
3354
3355 * remote.c (_initialize_remote): By default, disable ``e'' and
3356 ``E'' step out-of-range packets.
3357
3358 2002-02-26 Andreas Schwab <schwab@suse.de>
3359
3360 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
3361 m68k_linux_frame_saved_pc.
3362 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
3363 in_sigtramp.
3364 (SIGCONTEXT_PC_OFFSET): Remove.
3365 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
3366 m68k_linux_sigtramp_saved_pc): New functions.
3367 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
3368 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
3369 (UCONTEXT_PC_OFFSET): Define.
3370 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
3371 non-RT and RT signal trampolines.
3372
3373 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
3374
3375 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
3376 (TARGET_NBPG, STACK_END_ADDR): Delete
3377 (VARIABLES_INSIDE_BLOCK): Delete.
3378
3379 2002-02-25 Andrew Cagney <ac131313@redhat.com>
3380
3381 * utils.c (perror_with_name): Make string parameter constant.
3382 (print_sys_errmsg): Ditto.
3383 (query): Ditto.
3384 * defs.h (perror_with_name): Update.
3385 (print_sys_errmsg): Update.
3386 (query): Update.
3387
3388 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
3389
3390 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
3391 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
3392
3393 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3394
3395 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
3396 if it already matches the current architecture from the exec file.
3397 Include arch-utils.h for gdbarch_info_init prototype.
3398 * Makefile.in (rs6000-nat.o): Update dependencies.
3399
3400 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
3401
3402 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
3403 list of exported variables.
3404
3405 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
3406
3407 * gdbserver/configure.srv: New file.
3408 * gdbserver/configure.in: Use configure.srv instead
3409 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
3410 from it.
3411 * gdbserver/configure: Regenerated.
3412 * gdbserver/terminal.h: New file.
3413 * gdbserver/Makefile.in: Update for configure changes. Remove
3414 more unneeded include paths.
3415
3416 2002-02-24 Andrew Cagney <ac131313@redhat.com>
3417
3418 From wiz at danbala:
3419 * config/sparc/tm-sp64.h: Fix grammar and typos.
3420 Fix PR gdb/287.
3421
3422 2002-02-24 Andrew Cagney <ac131313@redhat.com>
3423
3424 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
3425 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
3426 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
3427 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
3428 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
3429 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
3430 * s390-tdep.c: Ditto.
3431 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
3432 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
3433 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
3434 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
3435 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
3436 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
3437 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
3438 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
3439 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
3440 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
3441 Fix PR gdb/378.
3442
3443 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3444
3445 * lin-thread.c: Delete file.
3446 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
3447 to gdb_proc_service.h.
3448 * configure: Re-generate.
3449
3450 * ocd.c (ocd_open): Do not try to open the "ocd" device.
3451 * serial.c (serial_open): Delete check for "ocd".
3452 Fix PR gdb/349.
3453
3454 * Makefile.in (linux-thread.o): Delete target.
3455 * linux-thread.c: Delete file.
3456
3457 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
3458 renamed SH files to be consistent.
3459
3460 * symtab.c (sort_search_symbols): Use xfree.
3461
3462 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
3463
3464 * arm-linux-tdep.c (arm_linux_init_abi): Register
3465 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
3466 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
3467 definition with undef, since we don't want the sysvr4 definition.
3468 (SKIP_TRAMPOLINE_CODE): Likewise.
3469
3470 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3471
3472 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
3473
3474 * configure.in: (AC_CHECK_FUNCS) Added test for
3475 canonicalize_file_name Regenerated.
3476 * config.in, configure: Regenerated.
3477 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
3478 defined use canonicalize_file_name.
3479
3480 2002-02-23 Michael Chastain <mec@shout.net>
3481
3482 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
3483
3484 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3485
3486 * README: Remove references to cygnus.com.
3487 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
3488 dot com'' form. Remove references to cygnus.com and sourceware.
3489
3490 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3491
3492 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
3493 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
3494 1003.1-2001 no longer allows "head -1".
3495 * gdb/Makefile.in (version.c): Likewise.
3496 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
3497 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
3498 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
3499
3500 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3501
3502 * cli/cli-decode.c (cmd_cfunc_eq): New function.
3503 * command.h (cmd_cfunc_eq): Declare.
3504 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
3505
3506 * cli/cli-cmds.h (is_complete_command): Change parameter to a
3507 ``struct cmd_list_element *''.
3508 * cli/cli-cmds.c (is_complete_command): Update. Use
3509 cmd_cfunc_eq.
3510 * top.c (execute_command): Pass the command to
3511 is_complete_command.
3512 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
3513
3514 2002-02-23 Andrew Cagney <ac131313@redhat.com>
3515
3516 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
3517 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
3518 architecture defines.
3519 * s390-tdep.c (s390_gdbarch_init): Likewise.
3520
3521 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
3522
3523 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
3524 (arm_linux_push_arguments): Likewise.
3525 (arm_linux_init_abi): Register them. Also register linux-specific
3526 call_dummy_words.
3527 (find_minsym_and_objfile): Use strcmp, not STREQ.
3528 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
3529 (arm_linux_call_dummy_words): Delete declaration.
3530 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
3531 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
3532 declarations.
3533 (LOWEST_PC): Delete.
3534
3535 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3536
3537 * maint.c (print_section_info): Do not prepend `0x' to filepos
3538 output, it will be handled by local_hex_string_custom.
3539
3540 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
3541
3542 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
3543 (store_newfpe_double, store_newfpe_extended, store_fpregister)
3544 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
3545
3546 2002-02-22 Jim Blandy <jimb@redhat.com>
3547
3548 Indicate that the bcache functions don't change the strings
3549 they're passed.
3550 * bcache.h (bcache, hash): Add `const' keywords to declarations.
3551 * bcache.c (bcache, hash): Add `const' keywords to definitions.
3552
3553 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
3554
3555 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
3556
3557 2002-02-21 Christopher Faylor <cgf@redhat.com>
3558
3559 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
3560 find the complete path to a loaded DLL.
3561
3562 2002-02-21 Fred Fish <fnf@redhat.com>
3563
3564 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
3565 that marks the end of the range of a function, enter a line number
3566 entry that has a line number of zero and a PC offset that matches
3567 the end of the function. This starts a range of PC's for which no
3568 line number information is known.
3569 * symtab.c (find_pc_sect_line): If our best fit is in a range of
3570 PC's for which no line number info is found (line number is zero)
3571 then we didn't find any valid line information.
3572 * symtab.h: Document use of zero line number entry.
3573
3574 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
3575
3576 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
3577 (have_ptrace_getvrregs): Define for run time checks.
3578 (gdb_vrregset_t): New type for Altivec register handling.
3579 (fetch_register, store_register): Fetch/store altivec register
3580 when needed.
3581 (fetch_altivec_register, store_altivec_register): New functions.
3582 (supply_vrregset, fill_vrregset): New functions.
3583 (fetch_altivec_registers, store_altivec_registers): New functions.
3584 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
3585 registers as well.
3586
3587 2002-02-21 Jiri Smid <smid@suse.cz>
3588
3589 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
3590
3591 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
3592
3593 * Makefile.in (armnbsd-nat.o): Update dependencies.
3594 * armnbsd-nat.c (supply_gregset): New function. Common code to
3595 supply the integer register set.
3596 (supply_fparegset): New function. Similar for FPA registers.
3597 (fetch_regs, fetch_fp_regs): Use them.
3598 (fetch_core_registers): Likewise.
3599 (fetch_elfcore_registers): New function.
3600 (arm_netbsd_elfcore_fns): New core-file type specification.
3601 (_initialize_arm_netbsd_nat): Register it.
3602
3603 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
3604
3605 * armnbsd-nat.c: Include gdbcore.h.
3606 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
3607 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
3608 'void' to declaration, to shut up ARI.
3609 (fetch_core_registers): Make static. Rewrite using supply_register.
3610 (arm_netbsd_core_fns): New core-file type specification.
3611 (_initialize_arm_netbsd_nat): New function.
3612
3613 2002-02-21 Christopher Faylor <cgf@redhat.com>
3614
3615 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
3616 value.
3617
3618 2002-02-20 Christopher Faylor <cgf@redhat.com>
3619
3620 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
3621 fails.
3622
3623 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3624
3625 * jv-exp.y (parse_number): Change type of implicit longs
3626 to builtin_type_uint64.
3627
3628 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3629
3630 * gdbserver/linux-low.c (mywait): Change argument to waitpid
3631 to be an integer instead of a `union wait'.
3632
3633 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3634
3635 * mips-linux-nat.c: Call the operating system GNU/Linux.
3636 * mips-linux-tdep.c: Likewise.
3637 * mips-tdep.c: Likewise.
3638
3639 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3640
3641 Fix PR gdb/265.
3642 * jv-exp.y (parse_number): Handle 64-bit integers.
3643
3644 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3645
3646 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
3647 AC_STDC_HEADERS to AC_HEADER_STDC.
3648 * gdbserver/configure: Regenerated.
3649
3650 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
3651
3652 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
3653 is defined.
3654 * sparc-tdep.c (get_longjmp_target): Likewise.
3655
3656 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
3657
3658 * News: Add news about ARM and Multi-arch. Mention the new target
3659 arm*-*-netbsd*.
3660
3661 2002-02-19 Jim Blandy <jimb@redhat.com>
3662
3663 * stabsread.c (error_type_complaint): Improve error message.
3664
3665 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
3666
3667 * gdbserver/README: Update documentation.
3668 * gdbserver/configure.in: Update configury to match documentation.
3669 * gdbserver/Makefile.in: Likewise.
3670 * gdbserver/configure: Regenerated.
3671 * gdbserver/aclocal.m4: New file, generated by aclocal.
3672 * gdbserver/config.in: New file, generated by autoheader.
3673
3674 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3675
3676 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
3677 armnbsd-nat.c.
3678
3679 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3680
3681 * arm-tdep.h (enum arm_float_model): New enum.
3682 (struct gdbarch_tdep): Add fp_model.
3683 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
3684 up floating-point conversions until we know the floating-point model
3685 in use by the inferior. Don't complain about being unable to
3686 determine the ABI of the inferior when we don't have one.
3687 (arm_extract_return_value): Support different floating-point models.
3688 (arm_store_return_value): Likewise.
3689 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
3690 ARM_FLOAT_SOFT.
3691 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
3692
3693 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3694
3695 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
3696 of ``current_gdbarch''.
3697
3698 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3699
3700 * armnbsd-nat.c : ANSIfy all function declarations.
3701 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
3702 (fetch_inferior_registers): Re-implement in terms of above.
3703 (store_register, store_regs, store_fp_register, store_fp_regs): New.
3704 (store_inferior_registers): Re-implement in terms of above.
3705
3706 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3707
3708 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
3709 kernel.
3710 * arm-linux-tdep.c: Likewise.
3711 * config/arm/tm-linux.h: Likewise.
3712
3713 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3714
3715 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
3716 * config/arm/nbsd.mt (TM_FILE): Delete.
3717 * config/arm/tm-nbsd.h: Delete.
3718
3719 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3720
3721 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
3722 Initialize CALL_DUMMY_LENGTH.
3723
3724 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
3725
3726 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
3727 function.
3728 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
3729 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
3730 defines one thing and that is incorrect for this port.
3731 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
3732
3733 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
3734
3735 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
3736
3737 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
3738
3739 * win32-nat.c (display_selector): New function. Displays information
3740 about the information returned by GetThreadSelectorEntry API function.
3741 (display_selectors): New function. Displays the infomation of
3742 the selector given as argument, or of CS, DS ans FS selectors
3743 if no argument is given.
3744 ( _initialize_inftarg): Add "w32" as info prefix command.
3745 Add "info w32 selector" as command calling display_selectors.
3746
3747 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
3748
3749 * i386-tdep.c (get_longjmp_target): Fix compilation failure
3750 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
3751 if not defined.
3752
3753 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3754
3755 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
3756
3757 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3758
3759 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
3760 (arm_fix_call_dummy): Call it.
3761 (arm_call_dummy_breakpoint_offset): Delete.
3762 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
3763 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
3764
3765 2002-02-18 Andrew Cagney <ac131313@redhat.com>
3766
3767 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
3768 Default to func_frame_chain_valid.
3769 * gdbarch.h, gdbarch.c: Re-generate.
3770 * frame.h (FRAME_CHAIN_VALID): Delete definition.
3771
3772 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
3773
3774 * ppc-linux-nat.c: Update copyright.
3775 (fetch_register, store_register): Add tid parameter, don't compute
3776 tid here.
3777 (fetch_ppc_registers, store_ppc_registers): Add tid
3778 parameter. Pass it along to callees.
3779 (fetch_inferior_registers, store_inferior_registers): Compute tid
3780 here, and pass it to calleed functions.
3781 (fill_gregset, supply_fpregset): Clean up formatting.
3782
3783 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3784
3785 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
3786 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
3787
3788 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
3789
3790 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
3791 * gdbarch.c gdbarch.h: Regenerate.
3792 * breakpoint.c (create_longjmp_breakpoint): Always compile this
3793 function.
3794 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
3795 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
3796 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
3797
3798 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
3799 * arm-tdep.c (arm_get_longjmp_target): New function.
3800 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
3801 this to a positive value register arm_get_longjmp_target as the
3802 longjmp handler.
3803 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
3804 (arm_linux_init_abi): Set up longjmp description in tdep.
3805 * armnbsd-nat.c (get_longjmp_target): Delete.
3806 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
3807 description in tdep.
3808 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
3809 (get_longjmp_target): Delete declaration.
3810 (GET_LONGJMP_TARGET): Delete.
3811 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
3812 (GET_LONGJMP_TARGET): Delete.
3813
3814 2002-02-17 Kevin Buettner <kevinb@redhat.com>
3815
3816 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
3817 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
3818 of ``current_gdbarch''.
3819
3820 2002-02-17 Tom Tromey <tromey@redhat.com>
3821
3822 * cli/cli-cmds.c (compare_strings): New function.
3823 (complete_command): Only print each unique item once.
3824 * completer.h (complete_line): Declare.
3825 * completer.c (complete_line): New function.
3826 (line_completion_function): Use it.
3827
3828 2002-02-16 Andrew Cagney <ac131313@redhat.com>
3829
3830 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
3831 * gdbarch.h, gdbarch.c: Re-generate.
3832
3833 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
3834
3835 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
3836
3837 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
3838
3839 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
3840 * valops.c (value_arg_coerce): Don't take the address of a reference
3841 to convert an argument to a reference.
3842
3843 2002-02-15 Christopher Faylor <cgf@redhat.com>
3844
3845 * win32-nat.c (get_image_name): New function.
3846 (handle_load_dll): Use get_image_name function.
3847 (get_child_debug_event): Avoid registering debug events until possibly
3848 execed process is started.
3849 (child_create_inferior): Allow invocation via shell so that command
3850 line redirection, etc. works ok.
3851 (_initialize_inftarg): Add new command: "set shell" to control whether
3852 a shell is used to start a process.
3853
3854 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
3855
3856 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
3857 instead of find_register_by_number.
3858 (cannot_store_register): Likewise.
3859
3860 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
3861
3862 * dwarf2read.c: Replace fprintf (stderr, ...) by
3863 fprintf_unfiltered (gdb_stderr, ...).
3864
3865 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
3866
3867 * gdbserver/gdbserver.1: Document --attach.
3868
3869 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
3870
3871 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
3872 descriptions.
3873 * arm-tdep.c (arm_default_arm_le_breakpoint)
3874 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
3875 (arm_default_thumb_be_breakpoint): New. Initialize them from
3876 traditional breakpoint defines.
3877 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
3878 (arm_gdbarch_init): Initialize new breakpoint variables.
3879 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
3880 (arm_linux_init_abi): Initialize linux-specific breakpoint.
3881 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
3882 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
3883 code out to ...
3884 (arm_netbsd_init_abi_common): ... here; new function.
3885 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
3886 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
3887 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
3888 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
3889
3890 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
3891
3892 * arm-tdep.h (enum arm_abi): New enum.
3893 (struct gdbarch_tdep): New structure.
3894 (LOWEST_PC): Provide a default.
3895 (arm_gdbarch_register_os_abi): Declare new function.
3896 * arm-tdep.c (arm_abi_names): New array.
3897 (process_note_abi_tag_sections): New function.
3898 (get_elfosabi): New function.
3899 (arm_gdbarch_register_os_abi): New function.
3900 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
3901 support for that ABI has been built in, then call the appropriate
3902 configuration routine. Use gdbarch_num_regs() to get the number
3903 of registers.
3904 (arm_dump_tdep): New function.
3905 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
3906 place-holder functions.
3907 (_initialize_arm_tdep): Register them.
3908 * config/arm/tm-arm.h (LOWEST_PC): Delete.
3909
3910 * armnbsd-tdep.c: New file.
3911 * Makefile.in (armnbsd-tdep.o): Add dependencies.
3912 * config/arm/nbsd.mt (TDEPFILES): Add it.
3913 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
3914
3915 * armnbsd-nat.c: Include regcache.h.
3916 * Makefile.in (armnbsd-nat.o): Update dependency list.
3917
3918 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
3919
3920 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3921
3922 * gdbserver/Makefile.in: Fix typos in target rules.
3923
3924 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3925
3926 Fix part of PR gdb/267.
3927 * linespec.c (find_methods): Handle constructors specially for now.
3928
3929 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
3930
3931 * arm-tdep.c (arm_push_arguments): Eliminate special float type
3932 handling.
3933 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
3934 standard_coerce_float_to_double().
3935
3936 2002-02-14 Christopher Faylor <cgf@redhat.com>
3937
3938 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
3939 GDBINIT_FILENAME.
3940
3941 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
3942
3943 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
3944 find_variant_by_name, because it confuses the multiarch
3945 framework. Return NULL if there isn't an architecture with the
3946 user supplied name, instead of forcing a different one without
3947 recording the change with the multiarch machinery.
3948 (find_variant_by_name): Delete.
3949
3950 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3951
3952 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
3953 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
3954
3955 2002-02-13 Martin M. Hunt <hunt@redhat.com>
3956
3957 * stack.c (print_frame_info_base): When calling
3958 print_frame_info_listing_hook, set current_source_symtab.
3959
3960 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
3961
3962 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
3963 and remove unused $(INCLUDE_DIR).
3964 Add regcache.c to OBS.
3965 Add generated register protocol files to clean target.
3966 Update dependencies for new objects, obsolete old target code.
3967
3968 * gdbserver/linux-low.c: Remove all platform-specific code to
3969 new files. Remove various dead code. Update to use regcache
3970 functionality.
3971 * gdbserver/remote-utils.c (fromhex): Add return statement
3972 to quiet warning.
3973 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
3974 constant.
3975 (input_interrupt): Add integer parameter to match prototype
3976 of a signal handler.
3977 (outreg): Use register_data ().
3978 (prepare_resume_reply): Use gdbserver_expedite_regs.
3979 * gdbserver/server.c (main): Dynamically allocate own_buf because
3980 PBUFSIZ is no longer constant. Use registers_to_string () and
3981 registers_from_string ().
3982 * gdbserver/server.h: No longer include "defs.h". Add prototypes
3983 for error (), fatal (), and warning (). Update definition of
3984 PBUFSIZ to use regcache functionality. Add include guard.
3985 * gdbserver/utils.c (fatal): Add missing ``const''.
3986 (warning): New function.
3987
3988 * regformats/regdat.sh: Include "regcache.h" in generated files.
3989 Provide init_registers () function.
3990 * regformats/regdef.h: Add prototype for set_register_cache ().
3991 Add include guard.
3992
3993 * gdbserver/linux-arm-low.c: New file.
3994 * gdbserver/linux-i386-low.c: New file.
3995 * gdbserver/linux-ia64-low.c: New file.
3996 * gdbserver/linux-m68k-low.c: New file.
3997 * gdbserver/linux-mips-low.c: New file.
3998 * gdbserver/linux-ppc-low.c: New file.
3999 * gdbserver/linux-sh-low.c: New file.
4000
4001 * gdbserver/regcache.c: New file.
4002 * gdbserver/regcache.h: New file.
4003
4004 * gdbserver/low-linux.c: Removed obsolete file.
4005
4006 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
4007
4008 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
4009 * config/i386/linux.mt: Likewise.
4010 * config/ia64/linux.mt: Likewise.
4011 * config/m68k/linux.mh: Likewise.
4012 * config/powerpc/linux.mh: Likewise.
4013 * config/mips/linux.mt: Likewise.
4014
4015 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
4016
4017 * config/i386/i386lynx.mh: Mark gdbserver variables
4018 as (currently) obsolete for this target.
4019 * config/i386/nbsd.mt: Likewise.
4020 * config/i386/nbsdelf.mt: Likewise.
4021 * config/m32r/m32r.mt: Likewise.
4022 * config/m68k/m68klynx.mh: Likewise.
4023 * config/m68k/nbsd.mt: Likewise.
4024 * config/m68k/sun3os4.mh: Likewise.
4025 * config/mips/vr5000.mt: Likewise.
4026 * config/ns32k/nbsd.mt: Likewise.
4027 * config/pa/hppabsd.mh: Likewise.
4028 * config/pa/hppaosf.mh: Likewise.
4029 * config/powerpc/nbsd.mt: Likewise.
4030 * config/rs6000/rs6000lynx.mh: Likewise.
4031 * config/s390/s390.mt: Likewise.
4032 * config/s390/s390x.mt: Likewise.
4033 * config/sparc/sparclynx.mh: Likewise.
4034 * config/sparc/sun4os4.mh: Likewise.
4035 * config/i386/x86-64linux.mt: Likewise.
4036 * config/sparc/linux.mh: Likewise.
4037
4038 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
4039
4040 * configure.tgt: Configure gdbserver only for known working
4041 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
4042 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
4043 SUBDIRS if it is configured. Update comment for ${nativefile}.
4044 * configure: Regenerated.
4045
4046 2002-02-13 Michael Snyder <msnyder@redhat.com>
4047
4048 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
4049
4050 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
4051 (default_gcore_mach): Just return 0, work around a problem in bfd.
4052 (default_gcore_target): OK to return NULL if exec_bfd is null.
4053 (make_mem_sec): Use a cast, avoid a warning.
4054
4055 * procfs.c (find_memory_regions_callback): Use a cast instead of
4056 calling host_pointer_to_address (which complains if
4057 sizeof (host pointer) != sizeof (target pointer)).
4058 (procfs_make_note_section): Avoid overflow in psargs string.
4059
4060 * procfs.c (procfs_make_note_section): Make the default
4061 implementation return an error.
4062
4063 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
4064
4065 * procfs.c (procfs_make_note_section): Provide a default definition
4066 (for alpha-dec-osf4.0f). Fix typos.
4067
4068 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
4069
4070 * linux-proc.c: Add include of regcache.h.
4071 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
4072
4073 2002-02-13 Andrew Cagney <ac131313@redhat.com>
4074
4075 From 2002-01-18 Greg McGary <greg@mcgary.org>:
4076 * memattr.c (create_mem_region): Disallow useless empty region.
4077 Regions are half-open intervals, so allow [A..B) [B..C) as
4078 non-overlapping.
4079
4080 2002-02-13 Michael Chastain <mec@shout.net>
4081
4082 * defs.h: Kill CONST_PTR.
4083 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
4084 * c-lang.c (c_builtin_types): Likewise.
4085 * ch-lang.c (ch_builtin_types): Likewise.
4086 * f-lang.c (f_builtin_types): Likewise.
4087 * language.c (unknown_builtin_types): Likewise.
4088 * m2-lang.c (m2_builtin_types): Likewise.
4089 * p-lang.c (pascal_builtin_types): Likewise.
4090 * scm-lang.c (c_builtin_types): Likewise.
4091
4092 2002-02-13 Keith Seitz <keiths@redhat.com>
4093
4094 * arm-tdep.h (arm_get_next_pc): Add declaration.
4095
4096 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
4097
4098 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
4099 with other related struct-returning functions.
4100 (arm_extract_struct_value_address): New function.
4101 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
4102 initialize float_format, double_format and long_double_format as
4103 appropriate to the endianness of the target.
4104 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
4105 (arm_use_struct_convention): Delete declaration.
4106 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
4107
4108 2002-02-13 Keith Seitz <keiths@redhat.com>
4109
4110 * defs.h (core_addr_to_string_nz): New function.
4111
4112 2002-02-13 Mark Kettenis <kettenis@gnu.org>
4113
4114 Apply missing bits of 2002-01-15 patch.
4115 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
4116 (fill_fpregset): Use i387_fill_fsave.
4117
4118 2002-02-12 Keith Seitz <keiths@redhat.com>
4119
4120 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
4121 (core_addr_to_string_nz): New function.
4122
4123 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
4124
4125 * arm-linux-nat.c: Really include arm-tdep.h.
4126 * config/arm/tm-linux.h (struct type, struct value): Declare.
4127
4128 2002-02-11 Michael Snyder <msnyder@redhat.com>
4129
4130 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
4131 (gcore section): Ifdef for Solaris and Unixware only.
4132 (procfs_do_thread_registers): Unixware needs one lwpstatus
4133 per thread (not one prstatus or pstatus).
4134 (procfs_make_note_section): Iterate only over kernel threads (lwps),
4135 not over all gdb threads. For unixware, call elfcore_write_pstatus
4136 once before iterating over threads.
4137
4138 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
4139
4140 * arm-tdep.h: New file.
4141 * arm-tdep.c: Include arm-tdep.h.
4142 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
4143 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
4144 (arm_print_float_info, arm_register_type, convert_to_extended)
4145 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
4146 (arm_extract_return_value, arm_register_name): Make static.
4147 (arm_software_single_step): Similarly. Fix types in declaration.
4148 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
4149 (arm_store_return_value, arm_store_struct_return): New functions.
4150 (arm_gdbarch_init): Register the above functions. Also register
4151 call_dummy_start_offset, sizeof_call_dummy_words,
4152 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
4153 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
4154 max_register_virtual_size, register_size. Set up
4155 prologue_cache.saved_regs here, rather than ...
4156 (_initialize_arm_tdep): ... here.
4157 * config/arm/tm-arm.h (struct type, struct value): Delete forward
4158 declarations.
4159 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
4160 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
4161 (arm_print_float_info, arm_register_type, convert_to_extended)
4162 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
4163 (arm_extract_return_value, arm_register_name): Delete declarations.
4164 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
4165 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
4166 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
4167 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
4168 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
4169 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
4170 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
4171 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
4172 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
4173 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
4174 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
4175 (arm_get_next_pc): No-longer static -- these are needed by the RDI
4176 interface.
4177 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
4178 * remote-rdi.c remote-rdp.c: Likewise.
4179 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
4180 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
4181 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
4182 definition.
4183
4184 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
4185 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
4186 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
4187 from non-ARM_ prefixed definitions.
4188 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
4189 all uses of above.
4190 * remote-rdi.c remote-rdp.c: Likewise.
4191 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
4192
4193 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
4194
4195 * arm-tdep.c (arm_frameless_function_invocation)
4196 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
4197 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
4198 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
4199 (arm_pop_frame, arm_get_next_pc): Make static.
4200 (arm_gdbarch_init): Register above in gdbarch structure.
4201 (arm_read_fp): Renamed from arm_target_read_fp.
4202 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
4203 * config/arm/tm-arm.h (arm_frameless_function_invocation)
4204 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
4205 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
4206 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
4207 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
4208 (arm_pc_is_thumb_dummy): Delete declarations.
4209 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
4210 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
4211 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
4212 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
4213
4214 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
4215
4216 * symtab.c (compare_search_syms): New function.
4217 (sort_search_symbols): New function.
4218 (search_symbols): Sort symbols after searching rather than
4219 before.
4220
4221 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4222
4223 * NEWS: Linux -> GNU/Linux.
4224
4225 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4226
4227 * gdbarch.sh: For for level one methods, disallow a definition
4228 when partially multi-arched. Add comments explaining rationale.
4229 * gdbarch.h: Re-generate.
4230
4231 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4232
4233 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
4234 multi-arch partial.
4235
4236 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4237
4238 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
4239 field. Use diff -u.
4240 * gdbarch.c: Re-generate.
4241
4242 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4243
4244 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
4245 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
4246 partial.
4247
4248 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4249
4250 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
4251 multi-arch partial.
4252 (PUSH_ARGUMENTS): Switch to using predefault.
4253 * gdbarch.c: Regenerate.
4254
4255 2002-02-10 Andrew Cagney <ac131313@redhat.com>
4256
4257 * valops.c (PUSH_ARGUMENTS): Delete definition.
4258 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
4259 partial. Default to default_push_arguments.
4260 * gdbarch.h, gdbarch.c: Regenerate.
4261
4262 2002-02-09 Andrew Cagney <ac131313@redhat.com>
4263
4264 * defs.h (throw_exception): Rename return_to_top_level. Update
4265 comments.
4266 * utils.c (error_stream, internal_verror, quit): Ditto.
4267 * top.c (throw_exception, catcher): Ditto.
4268 * sparclet-rom.c (sparclet_load): Ditto.
4269 * remote.c (interrupt_query, minitelnet): Ditto.
4270 * remote-sds.c (interrupt_query): Ditto.
4271 * remote-mips.c (mips_error, mips_kill): Ditto.
4272 * ocd.c (interrupt_query): Ditto.
4273 * monitor.c (monitor_interrupt_query): Ditto.
4274 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
4275 * target.h: Update comment.
4276
4277 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
4278
4279 2002-02-09 Andrew Cagney <ac131313@redhat.com>
4280
4281 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
4282 default_double_format.
4283 * gdbarch.h, gdbarch.c: Re-generate.
4284 * findvar.c (floatformat_unknown): Delete variable definition.
4285 * doublest.h (floatformat_unknown): Delete variable declaration.
4286
4287 2002-02-09 Jim Blandy <jimb@redhat.com>
4288
4289 * stabsread.c (read_type): Add code to parse Sun's syntax for
4290 prototyped function types.
4291
4292 2002-02-09 Andrew Cagney <ac131313@redhat.com>
4293
4294 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
4295 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
4296
4297 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
4298
4299 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
4300 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
4301 now _initialize_xcoffsolib gets called again and overrides the
4302 commands from solib.c in a native configuration.
4303
4304 2002-02-09 Mark Kettenis <kettenis@gnu.org>
4305
4306 * doublest.c (store_typed_floating): Don't try to return a value.
4307 Fixes PR gdb/290.
4308
4309 2002-02-08 Jim Blandy <jimb@redhat.com>
4310
4311 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
4312 is prototyped and has no arguments, print its argument list as
4313 `(void)'.
4314
4315 2002-02-08 Chris Demetriou <cgd@broadcom.com>
4316
4317 * MAINTAINERS (write-after-approval): Add myself.
4318 (paper-trail): I've escaped!
4319
4320 2002-02-08 Christopher Faylor <cgf@redhat.com>
4321
4322 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
4323 changes.
4324 (_initialize_check_for_gdb_ini): Ditto.
4325
4326 2002-02-08 Martin M. Hunt <hunt@redhat.com>
4327
4328 * win32-nat.c (cygwin_pid_to_str): Fix typo.
4329 xaprintf -> xasprintf.
4330
4331 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
4332
4333 * win32-nat.c: Remove use of printf and sprintf functions.
4334
4335 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
4336
4337 * arm-tdep.c (arm_frame_chain_valid): Make static.
4338 (arm_push_arguments): Likewise.
4339 (arm_gdbarch_init): New function.
4340 (_initialize_arm_tdep): Call it.
4341 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
4342 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
4343 (FRAME_CHAIN_VALID): Delete.
4344 (arm_frame_chain_valid): Delete declaration.
4345 (PUSH_ARGUMENTS): Delete.
4346 (arm_push_arguments): Delete declaration.
4347 (CALL_DUMMY_P): Delete.
4348
4349 2002-02-08 Andrew Cagney <ac131313@redhat.com>
4350 Corinna Vinschen <vinschen@redhat.com>
4351
4352 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
4353 on builtin float types.
4354
4355 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
4356
4357 * utils.c: Include <curses.h> before "bfd.h".
4358 * tui/tui-hooks.c: Likewise.
4359 * tui/tui.c: Likewise.
4360 * tui/tuiCommand.c: Likewise.
4361 * tui/tuiData.c: Likewise.
4362 * tui/tuiDataWin.c: Likewise.
4363 * tui/tuiDisassem.c: Likewise.
4364 * tui/tuiGeneralWin.c: Likewise.
4365 * tui/tuiIO.c: Likewise.
4366 * tui/tuiLayout.c: Likewise.
4367 * tui/tuiRegs.c: Likewise.
4368 * tui/tuiSource.c: Likewise.
4369 * tui/tuiSourceWin.c: Likewise.
4370 * tui/tuiStack.c: Likewise.
4371 * tui/tuiWin.c: Likewise.
4372
4373 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
4374
4375 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
4376 to include space for pseudoregs as well. Update loops accordingly.
4377 (sh_fp_frame_init_saved_regs): Ditto.
4378 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
4379
4380 2002-02-07 Andrew Cagney <ac131313@redhat.com>
4381
4382 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
4383 Add Richard Earnshaw to Arm maintainers.
4384
4385 2002-02-07 Andrew Cagney <ac131313@redhat.com>
4386
4387 * defs.h (warning_begin): Delete declaration.
4388
4389 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
4390 Delete macro.
4391
4392 2002-02-07 Michael Snyder <msnyder@redhat.com>
4393
4394 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
4395 Logic bug, remove misplaced else.
4396
4397 2002-02-07 Klee Dienes <klee@apple.com>
4398
4399 * fork-inferior.c (fork_inferior): Add '!' to the list of
4400 characters that need to be quoted when building a string for the
4401 shell. Quote '!' specifically with a backslash, since CSH chokes
4402 when trying to evaluate "str!str".
4403
4404 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
4405
4406 * rdi-share/host.h: Only provide a typedef for bool if it is not
4407 defined.
4408
4409 2002-02-04 Michael Snyder <msnyder@redhat.com>
4410
4411 * breakpoint.h (enum bptype): Add new overlay event bp type.
4412 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
4413
4414 * breakpoint.c (create_internal_breakpoint): New function.
4415 (internal_breakpoint_number): Moved into create_internal_breakpoint.
4416 (create_longjmp_breakpoint): Use create_internal_breakpoint.
4417 (create_thread_event_breakpoint): Ditto.
4418 (create_solib_event_breakpoint): Ditto.
4419 (create_overlay_event_breakpoint): New function.
4420 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
4421 (update_breakpoints_after_exec): Delete and re-initialize
4422 overlay event breakpoints after an exec. Add FIXME comment
4423 about longjmp breakpoint.
4424 (print_it_typical): Ignore overlay event breakpoints.
4425 (print_one_breakpoint): Ditto.
4426 (mention): Ditto.
4427 (bpstat_what): Do not stop for overlay event breakpoints.
4428 (delete_breakpoint): Don't delete overlay event breakpoints.
4429 (breakpoint_re_set_one): Delete the overlay event breakpoint.
4430 (breakpoint_re_set): Re-create overlay event breakpoint.
4431
4432 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
4433 (overlay_manual_command): Disable overlay breakpoints.
4434 (overlay_off_command): Disable overlay breakpoints.
4435
4436 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
4437
4438 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
4439 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
4440 to here from config/tm-arm.h.
4441 (coff_sym_is_thumb): Make static.
4442 (arm_elf_make_msymbol_special): New function.
4443 (arm_coff_make_msymbol_special): New function.
4444 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
4445 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
4446 (coff_sym_is_thumb): Delete declaration.
4447 (arm_elf_make_msymbol_special): Declare.
4448 (arm_coff_make_msymbol_special): Declare.
4449 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
4450 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
4451
4452 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
4453
4454 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
4455
4456 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
4457
4458 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
4459 * gdbarch.c gdbarch.h: Regenerate.
4460 * arch-utils.c (default_print_float_info): New function.
4461 * arch-utils.h (default_print_float_info): Prototype it.
4462 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
4463 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
4464 (PRINT_FLOAT_INFO): Document it.
4465
4466 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
4467 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
4468 (PRINT_FLOAT_INFO): Define.
4469
4470 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
4471
4472 * win32-nat.c (_initialize_check_for_gdb_ini):
4473 Add typecast to sprintf argument to suppress a warning.
4474
4475 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
4476
4477 * win32-nat.c (last_sig): Changed type of variable to target_signal,
4478 to allow easier handling of pass state.
4479 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
4480 that gives exception name and address.
4481 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
4482 and set last_sig value to ourstatus->value.sig. Some missing
4483 exceptions added.
4484 (child_continue): Correctly report continue_status.
4485 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
4486 TARGET_SIGNAL_0 (new default value).
4487 (child_resume): consider sig argument passed to decide if
4488 the exception should be passed to debuggee or not.
4489
4490 2002-02-05 Michael Snyder <msnyder@redhat.com>
4491
4492 * regcache.c (fetch_register): Call target_fetch_register
4493 only if we don't call FETCH_PSEUDO_REGISTER.
4494 (store_register): Call target_store_register only if we
4495 don't call STORE_PSEUDO_REGISTER.
4496
4497 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
4498
4499 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
4500 ELF_MAKE_MSYMBOL_SPECIAL.
4501 * gdbarch.c, gdbarch.h: Regenerate.
4502 * arch-utils.c (default_make_msymbol_special): New function.
4503 * arch-utils.h (default_make_msymbol_special): Export.
4504 * elfread.c (elf_symtab_read): Compile use of
4505 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
4506 multiarched.
4507 * coffread.c (coff_symtab_read): Ditto, for
4508 COFF_MAKE_MSYMBOL_SPECIAL.
4509
4510 2002-02-05 Jim Blandy <jimb@redhat.com>
4511
4512 * solib-svr4.c (svr4_truncate_ptr): New function.
4513 (svr4_relocate_section_addresses): Do the address arithmetic with
4514 the appropriate truncation for target addresses, even when
4515 CORE_ADDR is larger than a target address.
4516
4517 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4518
4519 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
4520 to (int *).
4521
4522 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4523
4524 * gdbserver/linux-low.c (kill_inferior): Remove commented out
4525 code.
4526
4527 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4528
4529 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
4530
4531 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4532
4533 * gdbserver/linux-low.c: Remove unused include files.
4534
4535 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4536
4537 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
4538 (read_inferior_memory): Use it.
4539 (write_inferior_memory): Likewise.
4540
4541 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4542
4543 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
4544 grubbing through sys_errlist.
4545
4546 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
4547
4548 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
4549
4550 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
4551 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
4552
4553 2002-02-04 Andrew Cagney <ac131313@redhat.com>
4554
4555 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
4556 (do_sfunc, set_cmd_sfunc): New functions.
4557
4558 * command.h (struct cmd_list_element): Add field func.
4559 * cli/cli-decode.h (struct cmd_list_element): Ditto.
4560 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
4561 * cli/cli-decode.h: Ditto.
4562
4563 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
4564 (help_all, help_cmd_list): Ditto.
4565 (find_cmd, complete_on_cmdlist): Ditto.
4566 * top.c (execute_command): Ditto.
4567
4568 * cli/cli-setshow.c (do_setshow_command): Call func instead of
4569 function.sfunc.
4570
4571 * infcmd.c (notice_args_read): Fix function signature.
4572
4573 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
4574 * cli/cli-decode.c (add_set_cmd): Ditto.
4575 * utils.c (initialize_utils): Ditto.
4576 * maint.c (_initialize_maint_cmds): Ditto.
4577 * infrun.c (_initialize_infrun): Ditto.
4578 * demangle.c (_initialize_demangler): Ditto.
4579 * remote.c (add_packet_config_cmd): Ditto.
4580 * mips-tdep.c (_initialize_mips_tdep): Ditto.
4581 * cris-tdep.c (_initialize_cris_tdep): Ditto.
4582 * proc-api.c (_initialize_proc_api): Ditto.
4583 * kod.c (_initialize_kod): Ditto.
4584 * valprint.c (_initialize_valprint): Ditto.
4585 * top.c (init_main): Ditto.
4586 * infcmd.c (_initialize_infcmd): Ditto.
4587 * corefile.c (_initialize_core): Ditto.
4588 * arm-tdep.c (_initialize_arm_tdep): Ditto.
4589 * arch-utils.c (initialize_current_architecture): Ditto.
4590 (_initialize_gdbarch_utils): Ditto.
4591 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
4592
4593 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
4594 * wince.c (_initialize_inftarg): Ditto.
4595 * symfile.c (_initialize_symfile): Ditto.
4596 * mips-tdep.c (_initialize_mips_tdep): Ditto.
4597 * language.c (_initialize_language): Ditto.
4598 * arc-tdep.c (_initialize_arc_tdep): Ditto.
4599
4600 2002-02-04 Michael Snyder <msnyder@redhat.com>
4601
4602 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
4603
4604 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4605
4606 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
4607 Add rules for building the register data files.
4608
4609 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4610
4611 * regformats/regdat.sh: Add braces to the definition of
4612 expedite_regs_${arch}.
4613
4614 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
4615
4616 * regformats/regdef.h (struct reg): Add comment describing the
4617 requirements for offset and size fields.
4618
4619 2002-02-04 Andreas Schwab <schwab@suse.de>
4620
4621 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
4622 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
4623
4624 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
4625
4626 * gdbarch.sh (copyright): Update years in generated header.
4627 (SMASH_TEXT_ADDRESS): Add rule.
4628 * gdbarch.h, gdbarch.c: Re-generate.
4629 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
4630 * dbxread.c: Likewise.
4631 * dwarfread.c: Likewise.
4632 * elfread.c: Likewise.
4633 * somread.c: Likewise.
4634
4635 * arm-tdep.c (arm_smash_text_address): New function.
4636 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
4637
4638 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
4639
4640 Add support for hardware watchpoints on win32 native.
4641 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
4642 CONTEXT_DEBUG_REGISTERS.
4643 (dr variable): New variable. Static array containing a local copy
4644 of debug registers.
4645 (debug_registers_changed): New variable. Reflects when debug registers
4646 are changed and need to be written to inferior.
4647 (debug_registers_used): New variable. Reflects when any debug register
4648 was set, used when new threads are created.
4649 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
4650 i386-nat code.
4651 (thread_rec): Set dr array if id is the thread of current_event .
4652 (child_continue, child_resume): Change the debug registers for all
4653 threads if debug_registers_changed.
4654 (child_add_thread): Change the debug registers if debug_registers_used.
4655 * config/i386/cygwin.mh: Add use of i386-nat.o file.
4656 Link nm.h to new nm-cygwin.h file.
4657 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
4658 of hardware registers.
4659
4660 2002-02-03 Andrew Cagney <ac131313@redhat.com>
4661
4662 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
4663 Restore behavour broken by 2002-01-20 Andrew Cagney
4664 <ac131313@redhat.com> IEEE_FLOAT removal.
4665
4666 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4667
4668 * c-valprint.c (c_val_print): Pass a proper valaddr to
4669 cp_print_class_method.
4670 * valops.c (search_struct_method): If there is only one method
4671 and args is NULL, return that method.
4672
4673 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4674
4675 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
4676 accessing tag_name directly.
4677
4678 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4679
4680 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
4681 of accessing tag_name directly.
4682
4683 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
4684
4685 PR gdb/280
4686 * gdbtypes.c (replace_type): New function.
4687 * gdbtypes.h (replace_type): Add prototype.
4688 * stabsread.c (read_type): Use replace_type.
4689
4690 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
4691
4692 * Makefile.in (memattr.o): Add missing dependencies rule.
4693
4694 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
4695
4696 * breakpoint.c (break_at_finish_command): Really export.
4697 (break_at_finish_at_depth_command): Ditto.
4698 (tbreak_at_finish_command): Ditto.
4699 * hppa-tdep.c: Include completer.h.
4700 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
4701 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
4702
4703 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4704
4705 * utils.c (do_write): New function.
4706 (error_stream): Rewrite combining the code from error_begin and
4707 verror.
4708 (verror): Rewrite using error_stream.
4709 (error_begin): Delete function.
4710
4711 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4712
4713 * utils.c (error_begin): Make static.
4714 * defs.h (error_begin): Delete declaration.
4715
4716 * linespec.c (cplusplus_error): Replace cplusplus_hint.
4717 (decode_line_1): Use cplusplus_error instead of error_begin,
4718 cplusplus_hint and return_to_top_level.
4719 * coffread.c (coff_symfile_read): Use error instead of error_begin
4720 and return_to_top_level.
4721 * infrun.c (default_skip_permanent_breakpoint): Ditto.
4722
4723 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4724
4725 * language.h (type_error, range_error): Make string parameter
4726 constant.
4727 * language.c (warning_pre_print): Delete extern declaration.
4728 * dwarfread.c (warning_pre_print): Ditto.
4729 * language.c (type_error, range_error): Rewrite to use verror and
4730 vwarning instead of warning_begin.
4731
4732 2002-02-01 Michael Snyder <msnyder@redhat.com>
4733
4734 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
4735 (set_ignore_count): Move misplaced comment back where it belongs.
4736
4737 2002-02-01 Andrew Cagney <ac131313@redhat.com>
4738
4739 * command.h (NO_FUNCTION): Delete macro.
4740 * cli/cli-decode.h (NO_FUNCTION): Ditto.
4741 * top.c (execute_command): Replace NO_FUNCTION with NULL.
4742 * tracepoint.c (_initialize_tracepoint): Ditto.
4743 * cli/cli-decode.c (add_set_cmd): Ditto.
4744 * cli/cli-cmds.c (init_cli_cmds): Ditto.
4745
4746 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
4747
4748 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
4749 Update ``this'' pointer when calling virtual functions.
4750
4751 2002-02-01 Michael Snyder <msnyder@redhat.com>
4752
4753 * breakpoint.c (create_temp_exception_breakpoint): Delete.
4754 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
4755
4756 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
4757
4758 * regformats/reg-arm.dat: New file.
4759 * regformats/reg-i386.dat: New file.
4760 * regformats/reg-ia64.dat: New file.
4761 * regformats/reg-m68k.dat: New file.
4762 * regformats/reg-mips.dat: New file.
4763 * regformats/reg-ppc.dat: New file.
4764 * regformats/reg-sh.dat: New file.
4765 * regformats/regdef.h: New file.
4766 * regformats/regdat.sh: New file.
4767
4768 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
4769
4770 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
4771 (arm_frame_args_address, arm_frame_locals_address): New functions.
4772 (arm_frame_num_args): New function.
4773 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
4774 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
4775 (FRMA_NUM_ARGS): Call arm_frame_num_args.
4776
4777 2002-01-31 Michael Snyder <msnyder@redhat.com>
4778
4779 * breakpoint.c (break_at_finish_command): Export.
4780 (break_at_finish_at_depth_command): Export.
4781 (tbreak_at_finish_command): Export.
4782 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
4783 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
4784 "tbreak" commands, which are HPPA specific.
4785
4786 * printcmd.c (disassemble_command): Remove an ancient
4787 artifact of an old merge.
4788
4789 * symfile.h (enum overlay_debugging_state):
4790 Define enum constant values for overlay mode.
4791 * symfile.c (overlay_debugging): Use enums instead of literals.
4792 (overlay_is_mapped, overlay_auto_command,
4793 overlay_manual_command): Ditto.
4794
4795 * breakpoint.c (insert_breakpoints, remove_breakpoint,
4796 breakpoint_here_p, breakpoint_inserted_here_p,
4797 breakpoint_thread_match, bpstat_stop_status,
4798 describe_other_breakpoints, check_duplicates, clear_command):
4799 Coding standard fixes.
4800
4801 * target.c (target_xfer_memory): Add spaces, coding standard.
4802 (do_xfer_memory): Add missing line to trust-readonly
4803 code: check bfd SEC_READONLY flag for section.
4804
4805 2002-01-31 Andrew Cagney <ac131313@redhat.com>
4806
4807 * PROBLEMS: Fix typo, 5.1->5.1.1.
4808
4809 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
4810
4811 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
4812 data symbols, since we search based on textlow and texthigh.
4813 (find_pc_sect_symtab): Likewise.
4814
4815 2002-01-30 Andrew Cagney <ac131313@redhat.com>
4816
4817 * defs.h (vwarning): Declare.
4818 * utils.c (vwarning): New function.
4819 (warning): Call vwarning.
4820 (warning_begin): Delete function.
4821
4822 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
4823 the warning message.
4824 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
4825 warning_begin.
4826
4827 2002-01-30 Michael Snyder <msnyder@redhat.com>
4828
4829 * NEWS: Mention "set trust-readonly-sections" command.
4830 Mention generate-core-file command.
4831
4832 2002-01-15 Michael Snyder <msnyder@redhat.com>
4833
4834 * target.c: New command, "set trust-readonly-sections on".
4835 (do_xfer_memory): Honor the suggestion to trust readonly sections
4836 by reading them from the object file instead of from the target.
4837 (initialize_targets): Register command "set trust-readonly-sections".
4838
4839 2002-01-29 Andrew Cagney <ac131313@redhat.com>
4840
4841 * parse.c (target_map_name_to_register): Simplify, search regs and
4842 pseudo-regs using a single loop.
4843
4844 2002-01-30 Andrew Cagney <ac131313@redhat.com>
4845
4846 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
4847
4848 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
4849
4850 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
4851 * config/i386/i386v42mp.mh: Add i387-nat.o .
4852 * i386v4-nat.c: Include i387-nat.h.
4853 (supply_fpregset): Use i387_supply_fsave.
4854 (fill_fpregset): Use i387_fill_fsave.
4855
4856 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
4857
4858 * arm-tdep.c (arm_call_dummy_words): Define.
4859 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
4860 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
4861 (CALL_DUMMY_WORDS): Define.
4862 (arm_call_dummy_words): Declare.
4863 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
4864 (arm_linux_call_dummy_words): Declare.
4865
4866 2002-01-30 Andreas Schwab <schwab@suse.de>
4867
4868 * m68klinux-nat.c: Fix last change to use regcache_collect
4869 instead of referencing registers[] directly.
4870
4871 2002-01-29 Andrew Cagney <ac131313@redhat.com>
4872
4873 * parse.c (target_map_name_to_register): Delete code wrapped in
4874 #ifdef REGISTER_NAME_ALIAS_HOOK.
4875
4876 2002-01-28 Michael Snyder <msnyder@redhat.com>
4877
4878 * regcache.c (legacy_read_register_gen): Need to be able to
4879 read pseudo-register as well as real register.
4880 (legacy_write_register_gen): Ditto.
4881
4882 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4883
4884 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
4885 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
4886 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
4887 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
4888 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
4889 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
4890 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
4891 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
4892 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
4893 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
4894 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
4895 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
4896 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
4897 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
4898 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
4899 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
4900 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
4901 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
4902 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
4903 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
4904
4905 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4906
4907 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
4908 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
4909 (initialize_current_architecture): Update target_byte_order using
4910 information from BFD.
4911 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
4912 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
4913
4914 2002-01-28 Andrew Cagney <ac131313@redhat.com>
4915
4916 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
4917 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
4918
4919 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
4920 #ifdef INVALID_FLOAT.
4921 * infcmd.c (do_registers_info): Ditto.
4922 * values.c (unpack_double): Ditto. Add comment.
4923
4924 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
4925 already commented out.
4926
4927 2002-01-26 Andreas Schwab <schwab@suse.de>
4928
4929 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
4930 * m68klinux-nat.c: Update ptrace interface for fetching/storing
4931 registers and add support for PTRACE_GETREGS.
4932
4933 2002-01-24 Andrew Cagney <ac131313@redhat.com>
4934
4935 GDB 5.1.1 released from 5.1 branch.
4936 * NEWS: Add 5.1.1 news.
4937 * README: Sync with 5.1 branch.
4938
4939 2002-01-23 Fred Fish <fnf@redhat.com>
4940
4941 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
4942 stabstring on initial malloc. Reallocing will copy it for us,
4943 if necessary.
4944
4945 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
4946
4947 * Makefile.in (hpread_h): Delete.
4948 (HFILES_NO_SRCDIR): Remove hpread.h.
4949 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
4950 (hpread.o): Update dependencies.
4951 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
4952
4953 * hp-psymtab-read.c: Remove file.
4954 * hp-symtab-read.c: Remove file.
4955 * hpread.h: Remove file.
4956
4957 * hpread.c: Merge all contents of hp-psymtab-read.c,
4958 hp-symtab-read.c and hpread.h into this file, as it was prior to
4959 January 1999.
4960
4961 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
4962 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
4963 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
4964 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
4965
4966 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
4967
4968 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
4969 fill_gregset): Call gdbarch_tdep() just once, assign result to
4970 variable and use that, instead of calling the function several
4971 times.
4972
4973 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
4974
4975 * configure.host: Accept sparcv9 as alias for sparc64.
4976 * configure.tgt: Likewise.
4977
4978 2002-01-22 Kevin Buettner <kevinb@redhat.com>
4979
4980 * solib-aix5.c (build_so_list_from_mapfile)
4981 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
4982 arguments is not reversed.
4983 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
4984 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
4985
4986 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
4987
4988 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
4989 modified version of obsolete sh_fetch_pseudo_register.
4990 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
4991 (sh4_register_read): New function.
4992 (sh_pseudo_register_write): New function. Renamed and modified
4993 version of obsolete sh_store_pseudo_register.
4994 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
4995 (sh4_register_write): New function.
4996 (sh_gdbarch_init): Remove setting of gdbarch function
4997 fetch_pseudo_register and store_pseudo_register. Remove setting of
4998 register_convert_to_raw, register_convert_to_virtual,
4999 register_convertible.
5000 (sh_sh4_register_convertible): Delete. No longer needed. All is
5001 taken care by architecture specific functions
5002 register_read/register_write.
5003 (sh_sh4_register_convert_to_virtual): Make static.
5004 (sh_sh4_register_convert_to_raw): Ditto.
5005
5006 2002-01-22 Andrew Cagney <ac131313@redhat.com>
5007
5008 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
5009 (floatformat_is_nan, floatformat_mantissa): Ditto.
5010
5011 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
5012 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
5013 builtin_type_ieee_double_little,
5014 builtin_type_ieee_double_littlebyte_bigword,
5015 builtin_type_m68881_ext, builtin_type_i960_ext,
5016 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
5017 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
5018 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
5019 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
5020
5021 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
5022
5023 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
5024 parameter. Set frameless flag if it exists and depended of
5025 whether the scanned function is frameless or not.
5026 (xstormy16_skip_prologue): If function is frameless, return
5027 result of xstormy16_scan_prologue().
5028 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
5029 call.
5030
5031 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
5032
5033 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
5034 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
5035 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
5036 sh_sh4_register_byte, sh_sh4_register_raw_size,
5037 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
5038 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
5039 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
5040 sh_store_pseudo_register, sh_do_pseudo_register): Call
5041 gdbarch_tdep() just once, assign result to variable and use that,
5042 instead of calling the function several times.
5043
5044 2002-01-20 Mark Kettenis <kettenis@gnu.org>
5045
5046 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
5047 macros instead of LAST_FPU_CTRL_REGNUM.
5048 (store_register): Likewise.
5049
5050 2002-01-21 Jim Blandy <jimb@redhat.com>
5051
5052 * infcmd.c (run_command): Check that the `exec' target layer's BFD
5053 is up-to-date before running the program, not just when a program
5054 exits.
5055
5056 2002-01-21 Fred Fish <fnf@redhat.com>
5057
5058 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
5059 when we have found all instructions we are looking for.
5060
5061 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
5062
5063 * arm-tdep.c (arm_register_name): New function.
5064 (arm_registers_names): Make static.
5065 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
5066 (arm_register_name): Declare.
5067 (REGISTER_NAME): Use it.
5068
5069 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
5070 Kevin Buettner <kevinb@redhat.com>
5071
5072 Convert arm targets to new FRAME interface.
5073 * arm-tdep.c (struct frame_extra_info): Remove fsr.
5074 (arm_frame_find_save_regs): Delete.
5075 (arm_frame_init_saved_regs): New.
5076 (arm_init_extra_frame_info): Alloacte saved_regs as required.
5077 Allocate extra_info as required. Convert all uses of fsr.regs
5078 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
5079 to use extra_info.
5080 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
5081 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
5082 (check_prologue_cache, save_prologue_cache): Likewise.
5083 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
5084 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
5085 (FRAME_FIND_SAVED_REGS): Delete.
5086 (arm_frame_find_saved_regs): Delete prototype.
5087 (arm_frame_init_saved_regs): New prototype.
5088 (FRAME_INIT_SAVED_REGS): Define.
5089
5090 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5091
5092 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
5093
5094 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5095
5096 From Jeff Law <law@redhat.com>:
5097 * infttrace.c: Include <sys/pstat.h>.
5098 (child_pid_to_exec_file): Revamp. Use pstat call to get the
5099 exec file if the ttrace equivalent fails.
5100
5101 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5102
5103 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
5104 (closeLogFile): Ditto.
5105
5106 2002-01-20 Michael Chastain <mec@shout.net>
5107
5108 * top.c (print_gdb_version): Bump copyright year to 2002.
5109
5110 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5111
5112 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
5113 Zannoni and Eli Zaretskii.
5114
5115 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
5116
5117 * buildsym.c: Update copyright years.
5118 * c-typeprint.c: Likewise.
5119 * dwarf2read.c: Likewise.
5120 * f-typeprint.c: Likewise.
5121 * gdbtypes.c: Likewise.
5122 * gdbtypes.h: Likewise.
5123 * hp-symtab-read.c: Likewise.
5124 * hpread.c: Likewise.
5125 * mdebugread.c: Likewise.
5126 * p-typeprint.c: Likewise.
5127
5128 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5129
5130 * remote-sim.c (gdbsim_open): Simplify code testing the macro
5131 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
5132 byte-order selectable.
5133 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
5134 * arch-utils.c: Ditto.
5135 (set_endian): Ditto.
5136 (set_endian_from_file): Ditto.
5137 * gdbserver/low-sim.c (create_inferior): Ditto.
5138 * gdbarch.sh: Ditto.
5139 * gdbarch.h: Re-generate.
5140 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
5141 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
5142 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
5143 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
5144 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
5145 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
5146 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
5147 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
5148 macro definition.
5149 * config/mips/tm-wince.h: Remove #undef of macro
5150 TARGET_BYTE_ORDER_SELECTABLE.
5151 * config/sh/tm-wince.h: Ditto.
5152
5153 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
5154
5155 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
5156 member function fields. Add accessor macro
5157 TYPE_FN_FIELD_ARTIFICIAL.
5158 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
5159 * c-typeprint.c (c_type_print_base): Skip artificial member
5160 functions.
5161
5162 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
5163
5164 * f-typeprint.c: Delete unused function f_type_print_args.
5165 * p-typeprint.c: Delete unused function pascal_type_print_args.
5166
5167 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
5168
5169 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
5170 comment. Add ``artificial'' to ``union field_location''.
5171
5172 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
5173
5174 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
5175 * mdebugread.c (parse_symbol): Likewise.
5176 * stabsread.c (define_symbol): Likewise.
5177 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
5178 initializing TYPE_FIELD_BITPOS to n (obsolete).
5179 (hpread_doc_function_type): Likewise.
5180 * hpread.c (hpread_function_type): Likewise.
5181
5182 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5183
5184 * configure.in (host_makefile_frag): Only require a host makefile
5185 fragment when a native build.
5186 * configure: Re-generate.
5187
5188 2002-01-20 Andrew Cagney <ac131313@redhat.com>
5189
5190 * doublest.h (floatformat_from_type): Declare.
5191 * doublest.c (floatformat_from_type): New function.
5192 (convert_typed_floating): Use.
5193
5194 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
5195 call to function floatformat_from_type.
5196
5197 * gdbarch.sh (IEEE_FLOAT): Delete.
5198 * gdbarch.h, gdbarch.c: Re-generate.
5199 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
5200 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
5201 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
5202 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
5203 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
5204 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
5205 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
5206 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
5207 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
5208 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
5209 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
5210 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
5211
5212 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
5213 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
5214 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
5215 * sh-tdep.c (sh_gdbarch_init): Ditto.
5216 * mips-tdep.c (mips_gdbarch_init): Ditto.
5217 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5218 * cris-tdep.c (cris_gdbarch_init): Ditto.
5219
5220 2002-01-20 Jiri Smid <smid@suse.cz>
5221
5222 * configure.host, configure.tgt: Support x86-64.
5223 * NEWS: Note new target x86-64.
5224
5225 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
5226 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
5227 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
5228 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
5229 x86-64-linux-nat.o): Fix dependencies.
5230
5231 2002-01-19 Andrew Cagney <ac131313@redhat.com>
5232
5233 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
5234 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
5235 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
5236 * config/sparc/xm-sun4os4.h: Delete file.
5237 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
5238
5239 2002-01-19 Andrew Cagney <ac131313@redhat.com>
5240
5241 * config/sparc/sparclynx.mh (XM_FILE): Delete.
5242 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
5243 * config/m68k/m68klynx.mh (XM_FILE): Delete.
5244 * config/i386/i386lynx.mh (XM_FILE): Delete.
5245 * config/rs6000/xm-rs6000ly.h: Delete file.
5246 * config/sparc/xm-sparclynx.h: Delete file.
5247 * config/m68k/xm-m68klynx.h: Delete file.
5248 * config/i386/xm-i386lynx.h: Delete file.
5249 * config/xm-lynx.h: Delete file.
5250 * config/djgpp/fnchange.lst: Update.
5251
5252 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
5253
5254 * alpha-tdep.c (alpha_register_byte): New function.
5255 (alpha_register_raw_size): Ditto.
5256 (alpha_register_virtual_size): Ditto.
5257 (alpha_skip_prologue_internal): Renamed from
5258 alpha_skip_prologue.
5259 (alpha_skip_prologue): New version that calls
5260 alpha_skip_prologue_internal.
5261 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
5262 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
5263 second argument from alpha_skip_prologue.
5264 (REGISTER_BYTE): Use alpha_register_byte.
5265 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
5266 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
5267 (FRAMELESS_FUNCTION_INVOCATION): Use
5268 generic_frameless_function_invocation_not.
5269 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
5270 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
5271
5272 2002-01-19 Andrew Cagney <ac131313@redhat.com>
5273
5274 * config/mips/xm-news-mips.h: Delete file.
5275 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
5276
5277 * config/m88k/xm-m88k.h: Delete file.
5278 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
5279 * config/m88k/xm-delta88v4.h: Ditto.
5280 * config/m88k/xm-delta88.h: Ditto.
5281
5282 * config/alpha/xm-fbsd.h: Delete file.
5283 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
5284
5285 * config/sparc/xm-sparc.h: Delete file.
5286 * Makefile.in (xm-sun4os4.h): Delete dependency.
5287 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
5288 * config/sparc/xm-sun4os4.h: Ditto.
5289 * config/sparc/xm-linux.h: Ditto.
5290
5291 * config/i386/xm-windows.h: Delete file.
5292
5293 2002-01-19 Andrew Cagney <ac131313@redhat.com>
5294
5295 * utils.c: Include <sys/param.h> for MAXPATHLEN.
5296 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
5297
5298 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
5299
5300 * alpha-tdep.c (alpha_call_dummy_words): New.
5301 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
5302 (CALL_DUMMY_P): Define.
5303 (CALL_DUMMY_WORDS): Define.
5304 (SIZEOF_CALL_DUMMY_WORDS): Define.
5305
5306 2002-01-19 Per Bothner <per@bothner.com>
5307
5308 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
5309 isn't NULL, which can happen with some gcj-3.x-produced code.
5310
5311 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
5312
5313 * alpha-tdep.c (alpha_register_virtual_type): New function.
5314 (alpha_init_frame_pc_first): Ditto.
5315 (alpha_fix_call_dummy): Ditto.
5316 (alpha_store_struct_return): Ditto.
5317 (alpha_extract_struct_value_address): Ditto.
5318 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
5319 alpha_register_virtual_type.
5320 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
5321 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
5322 alpha_extract_struct_value_address.
5323 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
5324 (INIT_FRAME_PC): Use init_frame_pc_noop.
5325 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
5326
5327 2002-01-19 Mark Kettenis <kettenis@gnu.org>
5328
5329 * i386gnu-nat.c: Include "i386-tdep.h".
5330 (fetch_fpregs): Simplify code dealing with uninitialized floating
5331 point states such that it doesn't require FP7_REGNUM.
5332
5333 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5334
5335 * alpha-tdep.c (frame_extra_info): New.
5336 (alpha_find_saved_regs): Make static. Use
5337 frame->extra_info.
5338 (alpha_frame_init_saved_regs): New function.
5339 (alpha_frame_saved_pc): Use frame->extra_info.
5340 (temp_saved_regs): Don't declare as struct frame_saved_regs.
5341 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
5342 (init_extra_frame_info): Rename to...
5343 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
5344 (alpha_print_extra_frame_info): New function.
5345 (alpha_frame_locals_address): Ditto.
5346 (alpha_frame_args_address): Ditto.
5347 (alpha_pop_frame): Use frame->extra_info.
5348 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
5349 alpha_frame_args_address.
5350 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
5351 (alpha_find_saved_regs): Remove prototype.
5352 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
5353 (EXTRA_FRAME_INFO): Remove.
5354 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
5355 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
5356
5357 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5358
5359 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
5360 (alpha_cannot_fetch_register): Ditto.
5361 (alpha_cannot_store_register): Ditto.
5362 (alpha_register_convertible): Ditto.
5363 (alpha_use_struct_convention): Ditto.
5364 * config/alpha/tm-alpha.h: Update copyright years.
5365 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
5366 (INNER_THAN): Use core_addr_lessthan.
5367 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
5368 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
5369 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
5370 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
5371 (FRAME_CHAIN): Remove unnecessary cast.
5372
5373 2002-01-18 Andrew Cagney <ac131313@redhat.com>
5374
5375 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
5376 obsolete.
5377
5378 2002-01-18 Andrew Cagney <ac131313@redhat.com>
5379
5380 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
5381 * monitor.c, remote-array.c, remote-bug.c: Ditto.
5382 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
5383 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
5384 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
5385 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
5386 * x86-64-linux-nat.c: Ditto.
5387
5388 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5389
5390 * alpha-tdep.c (alpha_register_name): New function.
5391 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
5392 (REGISTER_NAME): Define.
5393
5394 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5395
5396 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
5397
5398 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5399
5400 * alpha-tdep.c: Update copyright years.
5401 (alpha_next_pc): New function.
5402 (alpha_software_single_step): Ditto.
5403 * config/alpha/tm-alpha.h: Add prototype for
5404 alpha_software_single_step.
5405
5406 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
5407
5408 * alphabsd-nat.c: Update copyright years.
5409 (fill_gregset): Use regcache_collect.
5410 (fill_fpregset): Likewise.
5411 (fetch_inferior_registers): Only fetch integer registers
5412 if requested to do so.
5413 (store_inferior_registers): Only store integer registers
5414 if requested to do so.
5415
5416 2002-01-17 Andrew Cagney <ac131313@redhat.com>
5417
5418 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
5419 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
5420 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
5421 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
5422 * config/alpha/fbsd.mh (XDEPFILES): Delete.
5423 * config/arm/linux.mh (XDEPFILES): Delete.
5424 * config/arm/nbsd.mh (XDEPFILES): Delete.
5425 * config/i386/i386dgux.mh (XDEPFILES): Delete.
5426 * config/i386/i386sol2.mh (XDEPFILES): Delete.
5427 * config/i386/i386m3.mh (XDEPFILES): Delete.
5428 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
5429 * config/i386/i386gnu.mh (XDEPFILES): Delete.
5430 * config/i386/fbsd.mh (XDEPFILES): Delete.
5431 * config/i386/i386bsd.mh (XDEPFILES): Delete.
5432 * config/i386/i386sco5.mh (XDEPFILES): Delete.
5433 * config/i386/i386v4.mh (XDEPFILES): Delete.
5434 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
5435 * config/i386/i386sco4.mh (XDEPFILES): Delete.
5436 * config/i386/i386aix.mh (XDEPFILES): Delete.
5437 * config/i386/go32.mh (XDEPFILES): Delete.
5438 * config/i386/cygwin.mh (XDEPFILES): Delete.
5439 * config/i386/i386lynx.mh (XDEPFILES): Delete.
5440 * config/i386/i386mach.mh (XDEPFILES): Delete.
5441 * config/i386/i386v32.mh (XDEPFILES): Delete.
5442 * config/i386/linux.mh (XDEPFILES): Delete.
5443 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
5444 * config/i386/ncr3000.mh (XDEPFILES): Delete.
5445 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
5446 * config/i386/i386sco.mh (XDEPFILES): Delete.
5447 * config/i386/i386v.mh (XDEPFILES): Delete.
5448 * config/i386/nbsd.mh (XDEPFILES): Delete.
5449 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
5450 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
5451 * config/i386/symmetry.mh (XDEPFILES): Delete.
5452 * config/i386/obsd.mh (XDEPFILES): Delete.
5453 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
5454 * config/ia64/linux.mh (XDEPFILES): Delete.
5455 * config/ia64/aix.mh (XDEPFILES): Delete.
5456 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
5457 * config/m68k/dpx2.mh (XDEPFILES): Delete.
5458 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
5459 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
5460 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
5461 * config/m68k/linux.mh (XDEPFILES): Delete.
5462 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
5463 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
5464 * config/m68k/nbsd.mh (XDEPFILES): Delete.
5465 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
5466 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
5467 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
5468 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
5469 * config/m88k/delta88.mh (XDEPFILES): Delete.
5470 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
5471 * config/m88k/m88k.mh (XDEPFILES): Delete.
5472 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
5473 * config/mips/linux.mh (XDEPFILES): Delete.
5474 * config/mips/irix6.mh (XDEPFILES): Delete.
5475 * config/mips/irix5.mh (XDEPFILES): Delete.
5476 * config/mips/irix4.mh (XDEPFILES): Delete.
5477 * config/mips/irix3.mh (XDEPFILES): Delete.
5478 * config/mips/decstation.mh (XDEPFILES): Delete.
5479 * config/mips/mipsm3.mh (XDEPFILES): Delete.
5480 (NATDEPFILES): Move core-aout.o to here.
5481 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
5482 * config/pa/hpux1020.mh (XDEPFILES): Delete.
5483 * config/pa/hppabsd.mh (XDEPFILES): Delete.
5484 * config/pa/hppahpux.mh (XDEPFILES): Delete.
5485 * config/pa/hpux11w.mh (XDEPFILES): Delete.
5486 * config/pa/hppaosf.mh (XDEPFILES): Delete.
5487 * config/pa/hpux11.mh (XDEPFILES): Delete.
5488 * config/powerpc/aix.mh (XDEPFILES): Delete.
5489 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
5490 * config/powerpc/linux.mh (XDEPFILES): Delete.
5491 * config/romp/rtbsd.mh: Rename XDEPFILES.
5492 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
5493 * config/rs6000/aix4.mh (XDEPFILES): Delete.
5494 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
5495 * config/s390/s390.mh (XDEPFILES): Delete.
5496 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
5497 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
5498 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
5499 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
5500 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
5501 * config/sparc/nbsd.mh (XDEPFILES): Delete.
5502 * config/sparc/linux.mh (XDEPFILES): Delete.
5503 * config/vax/vaxult.mh (XDEPFILES): Delete.
5504 * config/vax/vaxult2.mh (XDEPFILES): Delete.
5505 * Makefile.in (DEPFILES): Remove XDEPFILES.
5506
5507 2002-01-17 Andrew Cagney <ac131313@redhat.com>
5508
5509 * utils.c (internal_verror): Fix comments, default is yes not no.
5510 Update queries to match. Default to quit and dump core.
5511
5512 2002-01-17 Andrew Cagney <ac131313@redhat.com>
5513
5514 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
5515 copyright.
5516 * defs.h, event-top.c, gdbcmd.h: Ditto.
5517 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
5518 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
5519 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
5520 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
5521 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
5522 * mi/mi-main.c:Ditto.
5523
5524 * stack.c, symfile.c: Update copyright.
5525
5526 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
5527
5528 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
5529 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
5530 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
5531 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
5532
5533 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
5534
5535 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
5536 * gdbserver/low-lynx.c (myattach): Likewise.
5537 * gdbserver/low-nbsd.c (myattach): Likewise.
5538 * gdbserver/low-sim.c (myattach): Likewise.
5539 * gdbserver/low-sparc.c (myattach): Likewise.
5540 * gdbserver/low-sun3.c (myattach): Likewise.
5541
5542 * gdbserver/low-linux.c (myattach): New function.
5543
5544 * gdbserver/server.c (attach_inferior): New function.
5545 (main): Handle "--attach".
5546
5547 2002-01-16 Andrew Cagney <ac131313@redhat.com>
5548
5549 * MAINTAINERS (language support): Daniel Jacobwitz is C++
5550 maintainer.
5551
5552 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
5553
5554 * c-typeprint.c (is_type_conversion_operator): Add additional
5555 check for non-conversion operators.
5556
5557 2002-01-15 Michael Snyder <msnyder@redhat.com>
5558
5559 * linux-proc.c: Add "info proc" command, a la procfs.c.
5560 (read_mapping): New function, abstract and re-use code.
5561 (linux_find_memory_regions): Use new func read_mapping.
5562 (linux_info_proc_cmd): New function, implement "info proc".
5563 (_initialize_linux_proc): Add new command "info proc".
5564
5565 2002-01-15 Michael Snyder <msnyder@redhat.com>
5566
5567 * symfile.c (generic_load): Use bfd_map_over_sections method
5568 instead of manipulating bfd structure members directly.
5569 (add_section_size_callback): New function, bfd sections callback
5570 used by generic_load.
5571 (load_sections_callback): New function, bfd sections callback
5572 used by generic_load.
5573
5574 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
5575
5576 [Based on work by Jim Blandy]
5577 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
5578 (builtin_type_vec128): Export.
5579 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
5580 types.
5581 (builtin_type_vec128): New builtin type for 128 bit vector
5582 registers.
5583 (build_gdbtypes): Initialize builtin_type_v16qi and
5584 builtin_type_v8hi. Create the vec128 register builtin type
5585 structure.
5586 (build_builtin_type_vec128): New function.
5587 (_initialize_gdbtypes): Register builtin_type_v16qi and
5588 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
5589 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
5590 AltiVec register to new builtin type.
5591
5592 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
5593
5594 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
5595 to make_cv_type.
5596
5597 2002-01-14 Andrew Cagney <ac131313@redhat.com>
5598
5599 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
5600 CLEAN_UP_REGISTER_VALUE.
5601 * regcache.c (supply_register): Update only call.
5602
5603 2002-01-14 Andrew Cagney <ac131313@redhat.com>
5604
5605 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
5606 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
5607 a29k-*-vxworks* targets as obsolete.
5608
5609 2002-01-14 Michael Snyder <msnyder@redhat.com>
5610
5611 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
5612 until we can resolve portability issues.
5613 * gregset.h: Remove references to fpxregs.
5614 * gcore.c (gcore_command): Initialize note_sec to NULL.
5615
5616 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5617
5618 * signals.c (target_signal_to_name): Rewrite. Only use
5619 signals[].name when in bounds and non-NULL.
5620
5621 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5622
5623 From Petr Ledvina <ledvinap@kae.zcu.cz>:
5624 * signals.c (target_signal_to_name): Verify that SIG is within the
5625 bounds of the signals array.
5626
5627 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5628
5629 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
5630
5631 2002-01-13 Keith Seitz <keiths@redhat.com>
5632
5633 * stack.c (print_frame_info_base): Print the frame's pc
5634 only if when print_frame_info_listing_hook is not defined.
5635
5636 2002-01-13 Keith Seitz <keiths@redhat.com>
5637
5638 * varobj.c (varobj_set_value): Make sure that there were no
5639 errors evaluating the object before attempting to set its
5640 value.
5641 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
5642 so this offset adjustment is no longer necessary.
5643 (create_child): Don't set the error flag if the child is
5644 a CPLUS_FAKE_CHILD.
5645 (value_of_child): If value_fetch_lazy fails, return NULL
5646 so that callers will be notified that an error occurred.
5647 (c_value_of_variable): Delay check of variable's validity
5648 until later. We actually want all structs and unions to have
5649 the value "{...}".
5650 Do not return "???" for variables which could not be evaluated.
5651 This error condition must be returned to the caller so that it
5652 can get the error condition from gdb.
5653 (cplus_name_of_child): Adjust index for vptr before figuring
5654 out the name of the child.
5655 (cplus_value_of_child): If a child's (real) parent is not valid,
5656 don't even bother trying to give a value for it. Just return
5657 an error. Change all instances in this function.
5658 (cplus_type_of_child): If our parent is one of the "fake"
5659 parents, we need to get at the type of the real parent, and
5660 derive the child's true type using this information.
5661
5662 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5663
5664 From 2002-01-09 John Marshall <johnm@falch.net>:
5665 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
5666 sources.redhat.com, and tweak some related URLs which had
5667 suffered from linkrot.
5668
5669 2002-01-13 Andrew Cagney <ac131313@redhat.com>
5670
5671 From Jeff law:
5672 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
5673 structures passed in registers.
5674
5675 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
5676
5677 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
5678 white space which prevented compilation. Reported by DSK
5679 <dsk@student.unsw.edu.au>.
5680
5681 2002-01-11 Michael Snyder <msnyder@redhat.com>
5682
5683 * symfile.c (build_section_addr_info_from_section_tab):
5684 Use bfd access method instead of manipulating bfd directly.
5685 (syms_from_objfile): Ditto.
5686 (simple_overlay_update_1): Ditto.
5687 (simple_overlay_update): Ditto.
5688 (generic_load): Ditto.
5689 (overlay_unmapped_address): FIXME comment, bfd access methods.
5690 (sections_overlap): FIXME comment, bfd access methods.
5691 (pc_in_mapped_range): FIXME comment, bfd access methods.
5692 (pc_in_unmapped_range): FIXME comment, bfd access methods.
5693 (section_is_mapped): FIXME comment, bfd access methods.
5694 (section_is_overlay): FIXME comment, bfd access methods.
5695
5696 * symfile.c (generic_load): Whitespace and long line cleanups.
5697 Remove duplicate variable, change several local variables to
5698 more appropriate data types.
5699 (print_transfer_performance): Use %lu instead of %ld for ulongs.
5700
5701 2002-01-12 Andrew Cagney <ac131313@redhat.com>
5702
5703 From Peter Schauer:
5704 * language.c (longest_local_hex_string_custom): Use phex_nz to
5705 convert NUM to a hex string.
5706
5707 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
5708
5709 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
5710 the function.
5711 Update Copyright year.
5712
5713 2002-01-12 Andrew Cagney <ac131313@redhat.com>
5714
5715 * language.c (longest_raw_hex_string): Delete unused function.
5716
5717 2002-01-11 Petr Sorfa <petrs@caldera.com>
5718
5719 * MAINTAINERS (write-after-approval): Add myself.
5720 * dwarf2read.c (read_tag_string_type): Handling of
5721 DW_AT_byte_size.
5722 (read_tag_string_type): FORTRAN fix to prevent propagation of
5723 first string size.
5724 (set_cu_language): Handling of DW_LANG_Fortran95
5725
5726 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
5727
5728 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
5729 GETPID(inferior_ptid).
5730 (store_inferior_registers): Likewise.
5731
5732 2002-01-10 Jason Merrill <jason@redhat.com>
5733
5734 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
5735 Fix DW_OP_minus.
5736
5737 2002-01-10 Andrew Cagney <ac131313@redhat.com>
5738
5739 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
5740 and bfd/elf32-sh-nbsd.c.
5741
5742 2002-01-10 Michael Snyder <msnyder@redhat.com>
5743
5744 * NEWS: Mention --pid and corefile/proc-id behavior change.
5745
5746 * Makefile.in: Add rules for gcore.o and linux-proc.o.
5747 * gcore.c: Include cli/cli-decode.h instead of command.h.
5748
5749 * main.c (captured_main): Add new command line option "--pid".
5750 If the second command line argument (following the symbol-file)
5751 begins with a digit, try to attach to it before trying to open
5752 it as a corefile.
5753 (print_gdb_help): Document the "--pid" argument.
5754
5755 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
5756
5757 * completer.c (command_completer): New function.
5758
5759 * completer.h <command_completer>: Add prototype.
5760
5761 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
5762 completer for the "help" command.
5763
5764 2002-01-09 Jason Merrill <jason@redhat.com>
5765
5766 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
5767
5768 2002-01-09 Michael Snyder <msnyder@redhat.com>
5769
5770 * i386-linux-nat.c (fill_fpxregset): Make global.
5771 (store_fpxregset): Ditto.
5772
5773 * gregset.h (gdb_fpxregset_t): Define.
5774 (supply_fpxregset): Prototype.
5775 (fill_fpxregset): Prototype.
5776
5777 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
5778
5779 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
5780
5781 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
5782 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
5783 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
5784
5785 2002-01-09 Andrew Cagney <ac131313@redhat.com>
5786
5787 * MAINTAINERS: Update target maintainer rules so that any
5788 Maintainer can approve a tested patch for a maintenance-only
5789 target.
5790
5791 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
5792
5793 * MAINTAINERS (write-after-approval): Add myself.
5794
5795 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
5796 IN_SIGTRAMP.
5797
5798 2002-01-08 Michael Snyder <msnyder@redhat.com>
5799
5800 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
5801 real name of the executable, rather than the /proc name.
5802
5803 2002-01-03 Michael Snyder <msnyder@redhat.com>
5804
5805 Implement a "generate-core-file" command in gdb, save target state.
5806 * gcore.c: New file. Implement new command 'generate-core-file'.
5807 Save a corefile image of the current state of the inferior.
5808 * linux-proc.c: Add linux-specific code for saving corefiles.
5809 * target.h (struct target_ops): Add new target vectors for saving
5810 corefiles; to_find_memory_regions and to_make_corefile_notes.
5811 (target_find_memory_regions): New macro.
5812 (target_make_corefile_notes): New macro.
5813 * target.c (update_current_target): Inherit new target methods.
5814 (dummy_find_memory_regions): New place-holder method.
5815 (dummy_make_corefile_notes): New place-holder method.
5816 (init_dummy_target): Initialize new dummy target vectors.
5817 * exec.c (exec_set_find_memory_regions): New function.
5818 Allow the exec_ops vector for memory regions to be taken over.
5819 (exec_make_note_section): New function, target vector method.
5820 * defs.h (exec_set_find_memory_regions): Export prototype.
5821 * procfs.c (proc_find_memory_regions): New function, corefile method.
5822 (procfs_make_note_section): New function, corefile method.
5823 (init_procfs_ops): Set new target vector pointers.
5824 (find_memory_regions_callback): New function.
5825 (procfs_do_thread_registers): New function.
5826 (procfs_corefile_thread_callback): New function.
5827 * sol-thread.c (sol_find_memory_regions): New function.
5828 (sol_make_note_section): New function.
5829 (init_sol_thread_ops): Initialize new target vectors.
5830 * inftarg.c (inftarg_set_find_memory_regions): New function.
5831 Allow to_find_memory_regions vector to be taken over.
5832 (inftarg_set_make_corefile_notes): New function.
5833 Allow to_make_corefile_notes vector to be taken over.
5834 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
5835 interface layer if not target_has_execution (may be a corefile).
5836 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
5837 * config/sparc/sun4sol2.mh: Ditto.
5838 * config/alpha/alpha-linux.mh: Ditto.
5839 * config/arm/linux.mh: Ditto.
5840 * config/i386/x86-64linux.mh: Ditto.
5841 * config/ia64/linux.mh: Ditto.
5842 * config/m68k/linux.mh: Ditto.
5843 * config/mips/linux.mh: Ditto.
5844 * config/powerpc/linux.mh: Ditto.
5845 * config/sparc/linux.mh: Ditto.
5846
5847 2002-01-07 Michael Snyder <msnyder@redhat.com>
5848
5849 * arm-linux-nat.c: Remove references to regcache.c internal data
5850 (registers[] and register_valid[]).
5851
5852 2002-01-07 Michael Snyder <msnyder@redhat.com>
5853
5854 * linux-proc.c: New file. Implement child_pid_to_exec_file,
5855 so that attaching to a pid will automatically read the process's
5856 symbol file and shlibs.
5857 * Makefile.in: Add rule for linux-proc.o.
5858 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
5859 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
5860 * config/arm/linux.mh: Ditto.
5861 * config/i386/linux.mh: Ditto.
5862 * config/i386/x86-64linux.mh: Ditto.
5863 * config/ia64/linux.mh: Ditto.
5864 * config/m68k/linux.mh: Ditto.
5865 * config/mips/linux.mh: Ditto.
5866 * config/powerpc/linux.mh: Ditto.
5867 * config/sparc/linux.mh: Ditto.
5868
5869 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
5870
5871 * win32-nat.c: Add i386-tdep.h dependency.
5872
5873 2002-01-07 Michael Snyder <msnyder@redhat.com>
5874
5875 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
5876 instead of bfd_get_arch_size. Don't bail out just because
5877 there's no exec_bfd.
5878
5879 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
5880 * p-valprint.c (pascal_object_print_value): Ditto.
5881 * somread.c (som_symtab_read): Ditto.
5882 * symfile.c (simple_free_overlay_region_table): Ditto.
5883 * valops.c (value_assign): Ditto.
5884
5885 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
5886 use tilde_expand and strerror for opening save-tracepoints file.
5887
5888 * thread-db.c (thread_db_new_objfile): Indendation fix.
5889
5890 * infptrace.c (GDB_MAX_ALLOCA): New define.
5891 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
5892 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
5893 can be overridden with whatever value is appropriate to the host).
5894 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
5895 alloca to allocate potentially large buffer.
5896 * rs6000-nat.c (child_xfer_memory): Ditto.
5897 * symm-nat.c (child_xfer_memory): Ditto.
5898 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
5899
5900 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
5901
5902 From Nick Clifton <nickc@redhat.com>
5903 * d10v-tdep.c: Set STACK_START to 0x200bffe.
5904
5905 2002-01-07 Michael Snyder <msnyder@redhat.com>
5906
5907 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
5908 Don't use exec_bfd if it's NULL.
5909
5910 2002-01-06 Mark Kettenis <kettenis@gnu.org>
5911
5912 * valops.c (value_arg_coerce): Fix formatting.
5913
5914 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5915
5916 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
5917 * gnu-nat.c: Ditto.
5918
5919 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5920
5921 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
5922 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
5923 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
5924 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
5925 z8k-coff have not been multi-arched. Update z8k-coff build
5926 status.
5927
5928 2002-01-06 Andrew Cagney <ac131313@redhat.com>
5929
5930 * MAINTAINERS: Mark a29k target as obsolete.
5931 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
5932 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
5933 comments.
5934 * NEWS: Note that a29k targets are obsolete.
5935 * a29k-tdep.c: Mark as obsolete.
5936 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
5937 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
5938 a29k-*-vxworks* targets as obsolete.
5939 * remote-adapt.c: Obsolete.
5940 * remote-eb.c: Obsolete.
5941 * remote-mm.c: Obsolete.
5942 * remote-udi.c: Obsolete.
5943 * config/a29k/a29k-udi.mt: Obsolete.
5944 * config/a29k/a29k.mt: Obsolete.
5945 * config/a29k/tm-a29k.h: Obsolete.
5946 * config/a29k/tm-vx29k.h: Obsolete.
5947 * config/a29k/vx29k.mt: Obsolete.
5948
5949 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5950
5951 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
5952 with BFD_ENDIAN_BIG.
5953
5954 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5955
5956 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
5957 * configure, config.in: Re-generate.
5958 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
5959 * defs.h: Do not include <endian.h>.
5960
5961 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
5962
5963 * acconfig.h (HAVE_PT_GETXMMREGS): New.
5964 * config.in: Regenerate.
5965 * configure.in: Update copyright years.
5966 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
5967 * configure: Regenerate.
5968 * i386bsd-nat.c: Update copyright years.
5969 (fill_gregset): Use regcache_collect.
5970 (fetch_inferior_registers): Only fetch integer registers
5971 if requested to do so. Add support for XMM registers
5972 using PT_GETXMMREGS.
5973 (store_inferior_registers): Only store integer registers
5974 if requested to do so. Add support for XMM registers
5975 using PT_SETXMMREGS.
5976 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
5977 (store_inferior_registers): Remove.
5978 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
5979 (fetch_elfcore_registers): New function.
5980 (i386nbsd_elfcore_fns): New.
5981 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
5982 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
5983 i386bsd-nat.o.
5984 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5985 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
5986 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
5987 * config/i386/tm-nbsd.h: Update copyright years.
5988 (HAVE_SSE_REGS): Define.
5989 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
5990 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
5991 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
5992 (SIGCONTEXT_PC_OFFSET): Remove.
5993 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
5994
5995 2002-01-05 Andrew Cagney <ac131313@redhat.com>
5996
5997 * configure.tgt: Remove powerpc-*-macos* target.
5998 * config/m68k/xm-mpw.h: Delete file.
5999 * config/xm-mpw.h: Delete file.
6000 * ser-mac.c: Delete file.
6001 * mpw-make.sed: Delete file.
6002 * mpw-config.in: Delete file.
6003 * mac-xdep.c: Delete file.
6004 * mac-gdb.r: Delete file.
6005 * mac-defs.h: Delete file.
6006 * mac-nat.c: Delete file.
6007 * config/powerpc/macos.mh: Delete file.
6008 * config/powerpc/macos.mt: Delete file.
6009 * config/powerpc/nm-macos.h: Delete file.
6010 * config/powerpc/tm-macos.h: Delete file.
6011 * source.c (openp, open_source_file): Remove obsolete code.
6012 * top.c (gdb_readline): Ditto.
6013 * utils.c (query): Ditto.
6014 * event-top.c (display_gdb_prompt): Ditto.
6015 * Makefile.in (ser-mac.o): Delete obsolete target.
6016 * NEWS: Update.
6017
6018 2002-01-04 Andrew Cagney <ac131313@redhat.com>
6019
6020 * defs.h (BIG_ENDIAN): Delete macro definition.
6021 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
6022 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
6023 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
6024 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
6025 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
6026 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
6027 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
6028 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
6029 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
6030 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
6031 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
6032 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
6033 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
6034 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
6035 * gdbarch.c: Re-generate.
6036
6037 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
6038
6039 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
6040 for core files.
6041
6042 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
6043
6044 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
6045
6046 2002-01-04 Andrew Cagney <ac131313@redhat.com>
6047
6048 * value.h (value_ptr): Delete typedef.
6049
6050 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
6051
6052 * i386nbsd-nat.c: Update copyright years.
6053 Include i386-tdep.h.
6054
6055 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
6056
6057 * stabsread.c: Update copyright years.
6058
6059 From Debashis Mahata <debashis.mahata@wipro.com>:
6060 (read_struct_fields): Deal with Sun C compiler erroneous stab
6061 output for structs and unions.
6062 Fix PR gdb/269.
6063
6064 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
6065
6066 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
6067 prototype.
6068
6069 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
6070
6071 * cp-abi.c: Fix whitespace.
6072 (baseclass_offset): New wrapper function.
6073 * cp-abi.h (baseclass_offset): Add prototype.
6074 (struct cp_abi_ops): Add baseclass_offset pointer.
6075
6076 * valops.c (vb_match): Move to...
6077 * gnu-v2-abi.c (vb_match): here.
6078 * valops.c (baseclass_offset): Move to...
6079 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
6080
6081 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
6082
6083 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
6084 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
6085 * hpacc-abi.c (init_hpacc_ops): Likewise.
6086
6087 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
6088
6089 * valops.c (find_overload_match): Accept obj as a
6090 reference parameter. Update it before returning.
6091 * value.h (find_overload_match): Update prototype.
6092 * eval.c (evaluate_subexp_standard): Pass object to
6093 find_overload_match by reference.
6094
6095 2002-01-03 Andrew Cagney <ac131313@redhat.com>
6096
6097 * valarith.c: Replace value_ptr with struct value pointer. Remove
6098 register attribute from value declarations.
6099 * valops.c: Ditto.
6100 * value.h: Ditto.
6101 * scm-lang.c (scm_lookup_name): Ditto.
6102
6103 2002-01-03 Michael Snyder <msnyder@redhat.com>
6104
6105 Abstract the functionality of iterating over mapped memory
6106 regions into a general purpose iterator function.
6107 * procfs.c (iterate_over_mappings): New function, general purpose
6108 iterator for memory sections.
6109 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
6110 (solib_mappings_callback): New function, callback for above.
6111 (info_proc_mappings): Reimpliment using iterate_over_mappings.
6112 (info_mappings_callback): New function, callback for above.
6113
6114 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
6115
6116 2002-01-01 Mark Kettenis <kettenis@gnu.org>
6117
6118 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
6119 * i386-tdep.c: Include "elf-bfd.h".
6120 (process_note_abi_tag_sections): New function.
6121 (i386_gdbarch_init): Add code to recognize various OS/ABI
6122 combinations.
6123
6124 * maint.c (_initialize_maint_cmds): Add missing \ in
6125 string-literal.
6126
6127 For older changes see ChangeLog-2001
6128 \f
6129 Local Variables:
6130 mode: change-log
6131 left-margin: 8
6132 fill-column: 74
6133 version-control: never
6134 End:
This page took 0.235454 seconds and 4 git commands to generate.