Mention 5.2.1 on mainline.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-07-23 Andrew Cagney <ac131313@redhat.com>
2
3 GDB 5.2.1 released from 5.2 branch.
4 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
5 * README: Update to mention 5.2.1.
6
7 2002-07-23 Mark Salter <msalter@redhat.com>
8
9 * remote.c (remote_read_bytes): Fix check for error.
10
11 2002-07-22 Kevin Buettner <kevinb@redhat.com>
12
13 * aix-thread.c (language.h): Include.
14 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
15 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
16 Print newlines at end of debug messages.
17 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
18 (pdc_write_data): Use local_hex_string() instead of %llx formats.
19
20 2002-07-22 Kevin Buettner <kevinb@redhat.com>
21
22 * aix-thread.c (ppc-tdep.h): Include.
23 (special_register_p): New function.
24 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
25 (store_regs_user_thread): Use register number information from
26 gdbarch_tdep struct instead of hardcoded offsets relative to
27 FIRST_UISA_SP_REGNUM.
28 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
29 special_register_p() instead of using FPLAST_REGNUM and
30 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
31 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
32 will be MQ's register number.
33
34 2002-07-22 Michael Snyder <msnyder@redhat.com>
35
36 * aix-thread.c (ops): Rename to aix_thread_ops.
37 (base_ops): Rename to base_target.
38 (ops_attach): Rename to aix_thread_attach.
39 (ops_detach): Rename to aix_thread_detach.
40 (ops_resume): Rename to aix_thread_detach.
41 (ops_wait): Rename to aix_thread_wait.
42 (ops_kill): Rename to aix_thread_kill.
43 (init_ops): Rename to init_aix_thread_ops.
44 (ops_fetch_register): Rename to aix_thread_fetch_register.
45 (ops_store_register): Rename to aix_thread_store_register.
46 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
47 (ops_thread_alive): Rename to aix_thread_thread_alive.
48 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
49 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
50 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
51 (fetch_regs_lib): Rename to fetch_regs_user_thread.
52 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
53 (store_regs_lib): Rename to store_regs_user_thread.
54 (store_regs_kern): Rename to store_regs_kernel_thread.
55
56 2002-07-22 Michael Snyder <msnyder@redhat.com>
57
58 * aix-thread.c (ops_prepare_to_store): Eliminate.
59 (init_ops): Don't initialize ops.prepare_to_store.
60 (store_regs_kern): Pre-fetch register buffers from child,
61 because some registers may not be in the cache. Copy
62 regs from register cache only if they are cached.
63 (store_regs_lib): Copy regs from register cache only
64 if they are cached.
65 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
66 fill_gprs64): Ditto.
67
68 2002-07-22 Kevin Buettner <kevinb@redhat.com>
69
70 * aix-thread.c (gdb_assert.h): Include.
71 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
72 register sizes (from register cache) match size of buffer holding
73 register data.
74 (fill_sprs32): Change parameter types to match those in the ptrace()
75 buffer.
76 (store_regs_lib): Likewise, but for 32-bit temporary variables.
77 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
78
79 2002-07-22 Michael Snyder <msnyder@redhat.com>
80
81 * aix-thread.c (supply_sprs64): Cosmetic change.
82 (supply_sprs32): Cosmetic change.
83 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
84 (fill_sprs64): Use regcache_collect instead of read_register.
85 (store_regs_lib): Use regcache_collect instead of
86 read_register. Use fill_sprs32 instead of fill_sprs64,
87 if debugging a 32-bit architecture.
88 (store_regs_kern): Use fill_gprs64 etc. to pull the values
89 out of the register cache, instead of passing a pointer into
90 the register cache directly to ptrace. Use regcache_collect
91 insteaad of read_register.
92 (ops_prepare_to_store): Use target_read_registers instead
93 of read_register_bytes.
94
95 2002-07-20 Aidan Skinner <aidan@velvet.net>
96
97 * MAINTAINERS: Add self under write after approval.
98
99 2002-07-20 Aidan Skinner <aidan@velvet.net>
100
101 * ada-tasks.c: Change k&r style function definitions to prototyped
102 form.
103
104 2002-07-19 Andrew Cagney <ac131313@redhat.com>
105
106 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
107 * x86-64-tdep.c: Include "objfiles.h".
108 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
109 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
110
111 2002-07-17 Michal Ludvig <michal@suse.cz>
112
113 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
114 (update_context): Initialise cfa variable.
115
116 2002-07-17 Michael Snyder <msnyder@redhat.com>
117
118 * aix-thread.c: Shorten some long lines.
119 Bring comments into line with code spec.
120
121 2002-07-18 Joel Brobecker <brobecker@gnat.com>
122
123 * infrun.c: Re-indent using gdb_indent.sh.
124
125 2002-07-18 Joel Brobecker <brobecker@gnat.com>
126
127 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
128 Leave the indentation temporarily untouched, to minimize the diffs.
129
130 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
131
132 * stabsread.c: Make os9k sections of the code obsolete,
133 for real this time.
134 * stabsread.h: Make os9k sections of the code obsolete.
135
136 2002-07-18 Michal Ludvig <mludvig@suse.cz>
137
138 * linux-low.c (regsets_store_inferior_registers): Add free()
139 at the end of a loop to prevent memory leak.
140 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
141 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
142 * config/sparc/tm-sp64linux.h: Make the rest of #endif
143 line a comment.
144 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
145
146 2002-07-17 Jim Blandy <jimb@redhat.com>
147
148 * macrocmd.c (info_macro_command): Remove newline from error
149 message.
150
151 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
152
153 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
154 (sh_gdbarch_init): Use it for sh-dsp.
155
156 2002-07-16 Kevin Buettner <kevinb@redhat.com>
157
158 * dwarf2read.c (read_initial_length): Handle older, non-standard,
159 64-bit DWARF2 format.
160
161 2002-07-16 Joel Brobecker <brobecker@gnat.com>
162
163 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
164 <sys/proc.h> when not available.
165
166 2002-07-16 Andrew Cagney <ac131313@redhat.com>
167
168 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
169 * stabsread.c: Make os9k sections of the code obsolete.
170 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
171 * config/i386/i386os9k.mt: Make file obsolete.
172 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
173 (COMMON_OBS): Remove os9kread.o
174 (SFILES): Remove os9kread.c.
175 (os9kread.o, remote-os9k.o): Make target obsolete.
176 * remote-os9k.c: Make file obsolete.
177 * os9kread.c: Make file obsolete.
178 * Makefile.in
179
180 2002-07-16 Andrew Cagney <ac131313@redhat.com>
181
182 * NEWS: Mention that the FR30 has been made obsolete.
183 * fr30-tdep.c: Make file obsolete.
184 * config/fr30/tm-fr30.h: Ditto.
185 * config/fr30/fr30.mt: Ditto.
186 * configure.tgt: Make fr30-*-elf obsolete.
187 * MAINTAINERS: Make fr30-elf obsolete.
188
189 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
190
191 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
192 found is not inside a section.
193
194 2002-07-15 Kevin Buettner <kevinb@redhat.com>
195
196 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
197 strerror().
198 (pdc_realloc): Use xrealloc() instead of realloc().
199
200 2002-07-15 Kevin Buettner <kevinb@redhat.com>
201
202 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
203 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
204 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
205 macros.
206
207 2002-07-15 Kevin Buettner <kevinb@redhat.com>
208
209 * aix-thread.c (ptrace_check): Eliminate goto.
210 (sync_threadlists): Eliminate gotos. Also, fix array overrun
211 problem.
212
213 2002-07-15 Kevin Buettner <kevinb@redhat.com>
214
215 * aix-thread.c (gdbcmd.h): Include.
216 (DEBUG, DBG, DBG2, dbg): Eliminate.
217 (debug_aix_thread): New static global.
218 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
219 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
220 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
221 invocations to DBG and DBG2 macros to test against
222 ``debug_aix_thread'' and call fprintf_unfiltered().
223 (_initialize_aix_thread): Add new command "set debug aix-thread".
224
225 2002-07-15 Andrew Cagney <ac131313@redhat.com>
226
227 From Gerhard Tonn <TON@de.ibm.com>:
228 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
229 instead of supply_register.
230
231 2002-07-15 Andrew Cagney <ac131313@redhat.com>
232
233 * dwarf2cfi.c: Include "gdb_assert.h".
234 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
235 non-NULL.
236 (update_context): Do not use __func__. Add missing ``break''.
237 (update_context): Do not use __func__.
238
239 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
240
241 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
242 and its setting. Set gdbarch instruction printing functions
243 directly. For non-rs6000 case use new function
244 gdb_print_insn_powerpc.
245 (gdb_print_insn_powerpc): New function.
246
247 2002-07-13 Andrew Cagney <ac131313@redhat.com>
248
249 * NEWS: Mention that the d30v has been marked obsolete.
250 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
251 * configure.tgt: Mark d30v-*-* as obsolete.
252 * d30v-tdep.c: Mark file as obsolete.
253 * config/d30v/d30v.mt: Ditto.
254 * config/d30v/tm-d30v.h: Ditto.
255
256 >>>>>>> 1.2930
257 2002-07-13 Aidan Skinner <aidan@velvet.net>
258
259 * ada-tasks.c (add_task_entry): replace calls to
260 malloc() with xmalloc
261 * ada-tasks.c (init_task_list): replace calls to free with xfree()
262
263 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
264 ada_finish_decode_line_1, all_sals_for_line
265 ada_breakpoint_rewrite): replace calls to free() with xfree()
266
267 2002-07-12 Kevin Buettner <kevinb@redhat.com>
268
269 From Nicholas Duffek (with minor changes by Martin Hunt,
270 Louis Hamilton, and Kevin Buettner):
271 * aix-thread.c: New file.
272
273 2002-07-12 Petr Sorfa <petrs@caldera.com>
274
275 * dwarf2read.c (dwarf2_invalid_attrib_class): New
276 complaint for invalid attribute class or form.
277 (read_func_scope): DW_AT_frame_base
278 better handling of DW_AT_block*.
279 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
280 better handling of DW_AT_block*.
281 (read_common_block): DW_AT_location
282 better handling of DW_AT_block*.
283 (read_partial_die): DW_AT_location better handling
284 of DW_AT_block*.
285 (new_symbol): DW_AT_external better handling of
286 DW_AT_block*. Proper initialization of variable
287 "addr".
288 (attr_form_is_block): New function that returns true
289 if the attribute's form is of DW_FORM_block*.
290
291 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
292
293 * valops.c (find_method_list): Remove comment about
294 removed STATIC_MEMFUNCP argument.
295 (value_find_oload_method_list): Likewise.
296
297 2002-07-12 Kevin Buettner <kevinb@redhat.com>
298
299 From Nicholas Duffek:
300 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
301 target_new_objfile_hook.
302
303 2002-07-12 Kevin Buettner <kevinb@redhat.com>
304
305 From Nicholas Duffek:
306 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
307 csect.
308
309 2002-07-12 Andrew Cagney <cagney@redhat.com>
310
311 * MAINTAINERS: Mention --enable-sim-build-warnings.
312 (m68hc11-elf): Disable sim build warnings.
313 (m32r-elf): Mark as broken obsolete candidate.
314 (x86_64-linux-gnu): Mark as buildable with -Werror.
315 (arm-elf): Change -w to ``,'' which enables warnings but not
316 -Werror.
317
318 2002-07-12 Andrew Cagney <ac131313@redhat.com>
319
320 * bcache.h: Update copyright.
321 (struct bstring, struct bcache): Move definition to "bcache.c".
322 Replaced by opaque declaration.
323 (bcache_xfree): Replace free_bcache.
324 (bcache_xmalloc, bcache_memory_used): Declare.
325
326 * bcache.c: Update copyright.
327 (struct bstring, struct bcache): Moved to here from "bcache.h".
328 Update comments.
329 (bcache_xmalloc, bcache_memory_used): New functions.
330 (bcache_xfree): Replace function free_bcache.
331
332 * Makefile.in (objfiles.o): Add $(bcache_h).
333 (objfiles_h): Remove $(bcache_h).
334 (symfile.o): Add $(bcache_h).
335
336 * symmisc.c: Update copyright.
337 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
338 (print_objfile_statistics): Use bcache_memory_used.
339
340 * symfile.c: Include "bcache.h".
341 (reread_symbols): Use bcache_xfree.
342 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
343 (add_psymbol_to_list): Pass psymbol_cache by value.
344 (add_psymbol_with_dem_name_to_list): Ditto.
345
346 * objfiles.h: Update copyright.
347 (struct bcache): Declare opaque. Do not include "bcache.h".
348 (struct objfile): Change psymbol_cache and macro_cache to ``struct
349 bcache'' pointers.
350 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
351
352 * objfiles.c: Include "bcache.h". Update copyright.
353 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
354 macro_cache.
355 (free_objfile): Use bcache_xfree.
356
357 2002-07-11 Grace Sainsbury <graces@redhat.com>
358
359 * monitor.c (monitor_fetch_register): Make name a constant.
360 (monitor_store_register): Same.
361
362 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
363
364 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
365 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
366 (finish_block) For non-function blocks, hash the symbol table. For
367 function blocks, mark the symbol table as unhashed.
368 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
369 (msymbol_hash_iw): Likewise.
370 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
371 value.
372 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
373 (lookup_minimal_symbol): Likewise for both.
374 * symtab.h (struct block): Add `hashtable' flag. Comment the
375 hashtable.
376 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
377 (ALL_BLOCK_SYMBOLS): Update.
378 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
379 (struct symbol): Add `hash_next' pointer.
380 * symtab.c (lookup_block_symbol): Search using the hash table when
381 possible.
382 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
383 (search_symbols, find_addr_symbol): Likewise.
384
385 * dstread.c (process_dst_block): Clear hashtable bit for new block.
386 (read_dst_symtab): Likewise.
387 * jv-lang.c (get_java_class_symtab): Likewise.
388 * mdebugread.c: Include "gdb_assert.h".
389 (shrink_block): Assert that the block being modified is not hashed.
390 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
391 * symmisc.c (free_symtab_block): Walk the hash table when freeing
392 symbols.
393 (dump_symtab): Recognize hashed blocks.
394 * printcmd.c (print_frame_args): Assert that function blocks do not
395 have hashed symbol tables.
396 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
397 (fill_in_ada_prototype, debug_print_block): Likewise.
398 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
399
400 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
401
402 * stack.c (print_frame): Use result of frame_address_in_block()
403 instead of fi->pc when evaluating symbols.
404 (backtrace_command_1): Ditto.
405
406 2002-07-11 Andrew Cagney <cagney@redhat.com>
407
408 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
409 Make static.
410
411 * arm-tdep.c (arm_register_name): Make return type constant.
412
413 2002-07-10 Andrew Cagney <ac131313@redhat.com>
414
415 * win32-nat.c (has_detach_ability): Convert to strict ISO C
416 prototype.
417 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
418 * s390-tdep.c (s390_fp_regnum): Ditto.
419 (s390_read_fp): Ditto.
420 (s390_pop_frame): Ditto.
421 (_initialize_s390_tdep): Ditto.
422 * remote.c (get_remote_state): Ditto.
423 * procfs.c (mappingflags): Ditto.
424 * memattr.c (_initialize_mem): Ditto.
425 * mcore-tdep.c (mcore_pop_frame): Ditto.
426 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
427 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
428 * language.c (set_case_str): Ditto.
429 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
430 * frv-tdep.c (new_variant): Ditto.
431 (frv_stopped_data_address): Ditto.
432 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
433 (context_alloc): Ditto.
434 (frame_state_alloc): Ditto.
435 (unwind_tmp_obstack_init): Ditto.
436 (unwind_tmp_obstack_free): Ditto.
437 (cfi_read_fp): Ditto.
438 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
439 (cris_pop_frame): Ditto.
440 * c-lang.c (scanning_macro_expansion): Ditto.
441 (finished_macro_expansion): Ditto.
442 (c_preprocess_and_parse): Ditto.
443 * gdbarch.sh: Ditto.
444 * gdbarch.h, gdbarch.c: Regenerate.
445 * config/mn10200/tm-mn10200.h: Adjust indentation.
446 * target.c: Adjust indentation.
447 * symtab.h: Adjust indentation.
448 * stabsread.h: Adjust indentation.
449 * remote-es.c: Adjust indentation.
450 * os9kread.c: Adjust indentation.
451
452 2002-07-10 Andrew Cagney <ac131313@redhat.com>
453
454 * wince.c (_initialize_wince): Rename _initialize_inftarg.
455 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
456
457 2002-07-10 Grace Sainsbury <graces@redhat.com>
458
459 * NEWS: Mention m68k, mcore multi-arching.
460 * MAINTAINERS: Change status of m68k, mcore to reflect
461 multi-arching.
462
463 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
464
465 * valops.c (find_overload_match): Free oload_syms.
466
467 2002-07-09 Joel Brobecker <brobecker@gnat.com>
468
469 Define HAVE_SYS_PROC_H if sys/proc.h exists
470 * configure.in: Add check for sys/proc.h
471 * config.in: Regenerate.
472 * configure: Regenerate.
473
474 2002-07-09 Grace Sainsbury <graces@redhat.com>
475
476 * config/m68k/tm-m68k.h: Remove macros wrapped in
477 #if !GDB_MULTI_ARCH.
478
479 2002-07-09 David O'Brien <obrien@FreeBSD.org>
480
481 * gdbserver/gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
482 (perror_with_name, remote_close, remote_open, expect, play): Static.
483
484 2002-07-08 Andrew Cagney <ac131313@redhat.com>
485
486 * config.in, configure: Regenerate.
487
488 2002-07-08 Mark Kettenis <kettenis@gnu.org>
489
490 * dwarf2cfi.c: Include "gcore.h".
491 (execute_stack_op): Fix implementation of the
492 DW_OP_deref and DW_OP_deref_size operators by letting do their
493 lookup in the target.
494
495 2002-07-07 Mark Kettenis <kettenis@gnu.org>
496
497 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
498 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
499 tdep->sc_sp_offset.
500
501 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
502
503 Fix PR gdb/595, gdb/602
504 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
505 Don't call value_cast, just read the vtable pointer; update comments
506 to match.
507
508 2002-07-05 Grace Sainsbury <graces@redhat.com>
509
510 * config/mcore/tm-mcore.h: Remove file.
511 * config/mcore/mcore.mt: Remove definition of TM_FILE
512 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
513
514 2002-07-05 Mark Kettenis <kettenis@gnu.org>
515
516 * i386bsd-tdep.c: Include "gdb_string.h".
517
518 2002-07-04 Grace Sainsbury <graces@redhat.com>
519
520 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
521 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
522 mcore-tdep.
523 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
524 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
525 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
526 (RETVAL_REGNUM): Move macros from tm-mcore.h
527 (mcore_reg_struct_has_addr): New function.
528 (mcore_gdbarch_init): Added initializations for the macros removed
529 from tm-mcore.h.
530
531 2002-07-04 Mark Kettenis <kettenis@gnu.org>
532
533 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
534 traditonal string branding within the ELF header.
535
536 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
537
538 * symtab.c (remove_params): New function.
539 (make_symbol_overload_list): Use it instead of cplus_demangle.
540 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
541
542 2002-07-04 Mark Kettenis <kettenis@gnu.org>
543
544 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
545
546 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
547 New variables.
548 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
549 and tdep->sigtramp_end.
550 * i386obsd-nat.c: New file.
551 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
552
553 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
554 Don't call get_current_frame().
555
556 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
557
558 * i386-nat.c (child_post_startup_inferior): New function
559 calling i386_cleanup_dregs if
560 I386_USE_GENERIC_WATCHPOINTS is defined.
561 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
562 conditional to acknowledge that i386-nat.c has its
563 own child_post_startup_inferior function.
564
565 2002-07-04 Mark Kettenis <kettenis@gnu.org>
566
567 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
568 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
569 instead of MAX_REGISTER_RAW_SIZE.
570 (i386_extract_return_value, i386_extract_struct_value_address):
571 Convert to use regcache.
572 (i386_gdbarch_init): Set max_register_raw_size and
573 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
574 Set extract_return_value and extract_struct_value_address instead
575 of their deprecated variants.
576
577 Convert i386 target to generic dummy frames.
578 * i386-tdep.c: Include "symfile.h".
579 (i386_frameless_signal_p): Consider a function to be frameless if
580 the pc points at the first instruction of the function.
581 (i386_frame_chain): Handle (generic) call dummies.
582 (i386_frame_saved_pc): Likewise.
583 (i386_frame_init_saved_regs): Remove code dealing with call
584 dummies on the stack.
585 (i386_push_dummy_frame): Removed.
586 (i386_call_dummy_words): Removed.
587 (i386_fix_call_dummy): Removed.
588 (i386_push_return_address): New function.
589 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
590 parameter, and don't call get_current_frame.
591 (i386_pop_frame): New function.
592 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
593 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
594 entry_point_address, set call_dummy_breakpoint_offset to 0, set
595 call_dummy_length to 0, set call_dummy_words to NULL, set
596 sizeof_call_dummy_words to 0, set fix_call_dummy to
597 generic_fix_call_dummy, set pc_in_call_dummy to
598 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
599 generic_push_dummy_frame, set push_return_address to
600 i386_push_return_address and set frame_chain_valid to
601 generic_file_frame_chain_valid.
602
603 2002-07-04 Michal Ludvig <mludvig@suse.cz>
604
605 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Make it an array of
606 byte offsets instead of an array of indexes.
607 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
608
609 2002-07-03 Andrew Cagney <ac131313@redhat.com>
610
611 * gdbarch.sh (struct regcache): Add opaque declaration.
612 (EXTRACT_RETURN_VALUE): New architecture method.
613 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
614 * gdbarch.h, gdbarch.c: Regenerate.
615 * arch-utils.c (legacy_extract_return_value): New function.
616 * arch-utils.h (legacy_extract_return_value): Declare.
617 * values.c (value_being_returned): Re-enable code handling
618 EXTRACT_STRUCT_VALUE_ADDRESS. Move
619 deprecated_grub_regcache_for_registers call to block handling
620 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
621 (EXTRACT_RETURN_VALUE): Do not define.
622
623 2002-07-03 Grace Sainsbury <graces@redhat.com>
624
625 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
626 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
627 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
628 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
629 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
630 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
631 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
632 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
633 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
634 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
635 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
636 argument so the function fits the prototype in the architecture
637 vector.
638 (mcore_pop_frame): Remove argument so the function fits the
639 prototype. Use get_current_frame instead of the argument.
640 (mcore_push_arguments): Change type of struct_return so the
641 function can be used in the architecture vector.
642 (mcore_store_struct_return): Add.
643 (mcore_frame_init_saved_regs): Add.
644 (mcore_gdbarch_init): Add function calls to replace the macros
645 removed from tm-mcore.h
646
647 2002-07-03 Andrew Cagney <ac131313@redhat.com>
648
649 * infcmd.c (print_return_value): Remove compatibility code calling
650 deprecated_grub_regcache_for_registers.
651
652 * values.c: Include "regcache.h".
653 (value_being_returned): Update. Use
654 deprecated_grub_regcache_for_registers to extract the register
655 buffer address.
656 * value.h (value_being_returned): Change ``retbuf'' parameter to a
657 ``struct regcache''.
658 * Makefile.in (values.o): Add dependency on $(regcache_h).
659
660 * inferior.h (run_stack_dummy): Change type of second parameter to
661 a ``struct regcache''.
662 * valops.c (hand_function_call): Change type of retbuf to ``struct
663 regcache''. Allocate using regcache_xmalloc, clean using
664 make_cleanup_regcache_xfree.
665 * infcmd.c (run_stack_dummy): Update. Use
666 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
667
668 * regcache.c (do_regcache_xfree): New function.
669 (make_cleanup_regcache_xfree): New function.
670 * regcache.h (make_cleanup_regcache_xfree): Declare.
671
672 2002-07-03 Martin M. Hunt <hunt@redhat.com>
673
674 * event-top.c (command_line_handler): Don't read past
675 beginning of buffer.
676
677 2002-07-03 Martin M. Hunt <hunt@redhat.com>
678
679 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
680 struct frame_id.
681 (varobj_create): Store frame_id for root.
682 (varobj_gen_name): Use xasprintf.
683 (varobj_update): Save and restore frame using get_frame_id() and
684 frame_find_by_id().
685 (create_child): Use xasprintf.
686 (new_root_variable): Initialize frame_id.
687 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
688 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
689 to prevent memory leak.
690
691 2002-07-03 Andrew Cagney <ac131313@redhat.com>
692
693 * valops.c (hand_function_call): Move declaration of retbuf to
694 start of function, allocate using malloc, add a cleanup but before
695 the inf_status cleanup, cleanup the buffer. Rename local variable
696 old_chain to inf_status_cleanup.
697
698 2002-07-03 Martin M. Hunt <hunt@redhat.com>
699
700 * top.c (execute_command): Use cmd_func() and cmd_func_p().
701
702 * cli/cli-decode.c (cmd_func_p): New function.
703 (cmd_func): New function.
704
705 * command.h: Add cmd_func() and cmd_func_p().
706
707 2002-07-03 Grace Sainsbury <graces@redhat.com>
708
709 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
710 (REGISTER_SIZE): Remove.
711 (MAX_REGISTER_RAW_SIZE): Remove.
712 (REGISTER_VIRTUAL_TYPE): Remove.
713 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
714 (REGISTER_NAME): Remove.
715 (USE_GENERIC_DUMMY_FRAMES): Remove.
716 (CALL_DUMMY): Remove.
717 (CALL_DUMMY_START_OFFSET): Remove.
718 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
719 (CALL_DUMMY_LOCATION): Remove.
720 (FIX_CALL_DUMMY): Remove.
721 (CALL_DUMMY_ADDRESS): Remove.
722 (SIZEOF_CALL_DUMMY_WORDS): Remove.
723 (SAVE_DUMMY_FRAME_TOS): Remove.
724 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
725 (mcore_register_virtual_type): New function.
726 (mcore_register_byte): New function.
727 (mcore_register_size): New function.
728 (mcore_register_name): New function.
729 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
730 macros removed from tm-mcore.h.
731 (mcore_dump_tdep): Add.
732 (_initialize_mcore_tdep): Add gdbarch_register call.
733
734 2002-07-03 Mark Kettenis <kettenis@gnu.org>
735
736 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
737 frameless_look_for_prologue, such that we actually call this
738 function.
739
740 2002-07-02 Joel Brobecker <brobecker@gnat.com>
741
742 * frame.h (frame_address_in_block): New function.
743
744 * blockframe.c (frame_address_in_block): New function extracted
745 from get_frame_block().
746 (get_frame_block): Use frame_address_in_block().
747 (block_innermost_frame): Use frame_address_in_block() to match
748 the frame pc address against the block boundaries rather than
749 the frame pc directly. This prevents a failure when a frame pc
750 is actually a return-address pointing immediately after the end
751 of the given block.
752
753 2002-07-02 Grace Sainsbury <graces@redhat.com>
754
755 * MAINTAINERS: Add self under write after approval.
756
757 2002-07-02 Grace Sainsbury <graces@redhat.com>
758
759 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
760 used in architecture vector. The default is
761 m68k_local_breakpoint_from_pc.
762 (m68k_local_breakpoint_from_pc): Add.
763 (enum): Add register numbers from tm-m68k.h.
764 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
765 vector.
766 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
767 GDB_MULTI_ARCH_PARTIAL.
768 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
769 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
770 m68k-tdep.c.
771 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
772 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
773 to enum in m68k-tdep.c
774
775 2002-07-02 Joel Brobecker <brobecker@gnat.com>
776
777 * solib-osf.c (open_map): Compute the list of shared libraries
778 loaded by the inferior, rather than the list of libraries loaded
779 by GDB itself. Otherwise, GDB ends up reading the symbols from
780 the wrong shared libraries...
781
782 2002-07-02 Mark Kettenis <kettenis@gnu.org>
783
784 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
785 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
786 macros.
787 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
788 Remove functions.
789 (FRAMELESS_SIGNAL): Remove function.
790 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
791 i386_linux_saved_pc_after_call): Removed.
792 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
793 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
794 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
795
796 * i386-tdep.c (i386_frameless_signal_p): New function.
797 (i386_frame_chain): Deal with frameless signals.
798 (i386_sigtramp_saved_sp): New function.
799 (i386_frame_saved_pc): Deal with frameless signals.
800 (i386_saved_pc_after_call): Make sure the correct value is
801 returned just after entry into a sigtramp.
802 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
803 i386fbsd4_sc_sp_offset): New variables.
804 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
805 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
806 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
807 similiar to what we already did for sc_pc_offset.
808 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
809 tdep->sc_sp_offset.
810
811 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
812
813 2002-07-02 Michal Ludvig <mludvig@suse.cz>
814
815 * config/i386/tm-x86-64linux.h: New.
816 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
817 definitions.
818 * config/i386/nm-x86-64.h: Rename to ...
819 * config/i386/nm-x86-64linux.h: ... this one.
820 * config/i386/x86-64linux.mh: Reflect the above change.
821
822 2002-07-01 Mark Kettenis <kettenis@gnu.org>
823
824 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
825 with sigcontext_addr. Add sc_sp_offset.
826 (i386bsd_sigtramp_saved_pc): Remove prototype.
827 (i386bsd_sicontext_addr): Add prototype.
828 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
829 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
830 (i386_svr4_sigtramp_saved_pc): Removed.
831 (i386_svr4_sigcontext_addr): New function.
832 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
833 Initialize tdep->sigcontext_addr instead. Initialize
834 tdep->sc_pc_offset and tdep->sc_sp_offset.
835 (i386_gdbarch_init): Likewise.
836 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
837 any more.
838 (i386bsd_sigtramp_saved_pc): Remove function.
839 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
840 Initialize tdep->sigcontext_addr instead. Initialize
841 tdep->sc_pc_offset.
842 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
843 of tdep->sigtramp_saved_pc.
844 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
845 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
846 instead.
847
848 * i386-tdep.c (i386_frameless_function_invocation,
849 i386_frame_num_args, i386_frame_init_saved_regs,
850 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
851 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
852 i386_extract_return_value, i386_store_return_value,
853 i386_extract_struct_value_address, i386_register_virtual_type,
854 i386_register_convertible, i386_register_convert_to_virtual,
855 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
856 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
857 static.
858
859 2002-07-01 Mark Kettenis <kettenis@gnu.org>
860
861 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
862
863 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
864 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
865 this macro. Include "value.h".
866
867 2002-06-30 Aidan Skinner <aidan@velvet.net>
868
869 * ada-exp.tab.c: remove as it's a generated file
870 * ada-lex.c: remove as it's a generated file
871
872 2002-06-30 Mark Kettenis <kettenis@gnu.org>
873
874 * config/i386/tm-i386.h (struct frame_info, struct
875 frame_saved_regs, struct value, struct type): Remove forward
876 declarations.
877
878 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
879 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
880 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
881 (FILL_FPXREGSET): Define.
882
883 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
884
885 * configure.tgt (i[3456]86-*-openbsd*): Fold into
886 i[3456]86-*-netbsd* case.
887 * config/i386/tm-obsd.h: Removed.
888 * config/i386/obsd.mt: Removed.
889 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
890 core-aout.o.
891 (MH_CFLAGS): Add -DYYDEBUG=0.
892
893 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
894 i386nbsd_sc_pc_offset on OpenBSD too.
895
896 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
897 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
898 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
899 define.
900 * i386bsd-tdep.c: Include "arch-utils.h".
901 (i386bsd_aout_in_solib_call_trampoline): New function.
902 (i386bsd_init_abi): Set in_solib_call_trampoline to
903 i386bsd_aout_in_solib_call_trampoline.
904 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
905 in_solib_call_trampoline to generic_in_solib_call_trampoline.
906
907 2002-06-28 Andrew Cagney <ac131313@redhat.com>
908
909 * macrotab.h: Do not include "obstack.h" or "bcache.h".
910 (struct obstack, struct bcache): Add opaque declarations.
911 * Makefile.in (macrotab_h): Update
912
913 2002-06-28 Andrew Cagney <ac131313@redhat.com>
914
915 * blockframe.c (generic_find_dummy_frame): Change return type to
916 ``struct regcache''.
917 (struct dummy_frame): Replace field ``registers'' with regcache, a
918 struct regcache object.
919 (generic_find_dummy_frame): Update.
920 (generic_push_dummy_frame): Update. Use regcache_xfree,
921 regcache_xmalloc and regcache_cpy.
922 (generic_pop_dummy_frame): Update. Use regcache_cpy and
923 regcache_xfree.
924 (deprecated_generic_find_dummy_frame): Update.
925 (generic_read_register_dummy): Update. Use
926 regcache_read_as_address.
927 (generic_call_dummy_register_unwind): Update. Use regcache_read.
928 (generic_get_saved_register): Update. Use regcache_read.
929
930 2002-06-28 Andrew Cagney <ac131313@redhat.com>
931
932 * Makefile.in (objfiles_h): Add $(bcache_h).
933 * objfiles.h: Include "bcache.h".
934
935 * Makefile.in (symtab_h): Remove $(bcache_h).
936 * symtab.h: Do not include "bcache.h".
937
938 2002-06-28 Andrew Cagney <ac131313@redhat.com>
939
940 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
941 generic_func_frame_chain_valid.
942
943 2002-06-28 David O'Brien <obrien@FreeBSD.org>
944
945 * config/i386/nm-fbsd.h: Include <sys/param.h>.
946 * config/i386/tm-fbsd.h: Likewise.
947
948 2002-06-28 Andrew Cagney <ac131313@redhat.com>
949
950 * rs6000-tdep.c (rs6000_gdbarch_init): Use
951 generic_unwind_get_saved_register.
952
953 2002-06-27 Andrew Cagney <ac131313@redhat.com>
954
955 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
956 * regcache.c (supply_register): Add missing argument to
957 register_buffer call.
958
959 2002-06-27 Andrew Cagney <ac131313@redhat.com>
960
961 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
962 Solaris /bin/grep does not not like it. From Peter Schauer.
963
964 2002-06-26 Tom Tromey <tromey@redhat.com>
965
966 * command.h (add_setshow_cmd): Declare.
967 (add_setshow_cmd_full): Declare.
968 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
969 returns void. Use add_setshow_cmd_full.
970 (add_setshow_cmd_full): New function.
971 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
972 (add_setshow_boolean_cmd): Likewise.
973
974 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
975
976 * config/vax/tm-vax.h: Protect from multiple inclusion.
977 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
978 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
979 * config/vax/tm-vaxbsd.h: ...here. New file.
980 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
981
982 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
983
984 * config/vax/tm-vax.h (BREAKPOINT): Remove.
985 (BELIEVE_PCC_PROMOTION): Remove.
986 (AP_REGNUM): Move to...
987 * config/vax/nm-vax.h: ...here.
988 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
989 (vax_breakpoint_from_pc): New function.
990 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
991 and gdbarch_believe_pcc_promotion.
992
993 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
994
995 * Makefile.in (vax_tdep_h): Define.
996 (vax-tdep.o): Use $(vax_tdep_h).
997 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
998 (vax_dump_tdep): New function.
999 (_initialize_vax_tdep): Register vax_dump_tdep.
1000 * vax-tdep.h: Include osabi.h.
1001 (struct gdbarch_tdep): New.
1002
1003 2002-06-26 Andrew Cagney <cagney@redhat.com>
1004
1005 * frame.h (deprecated_generic_find_dummy_frame): Rename
1006 generic_find_dummy_frame.
1007 * blockframe.c (generic_find_dummy_frame): Make static.
1008 (deprecated_generic_find_dummy_frame): New function.
1009 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
1010 generic_find_dummy_frame with deprecated_find_dummy_frame.
1011 (sh64_nofp_frame_init_saved_regs): Ditto.
1012 (sh_fp_frame_init_saved_regs): Ditto.
1013 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
1014 (s390_frame_chain): Ditto.
1015 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
1016
1017 2002-06-26 Grace Sainsbury <graces@redhat.com>
1018
1019 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
1020 gdbarch vector are at the top.
1021 (NUM_REGS): Remove.
1022 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
1023 (FRAME_ARGS_ADDRESS): Remove.
1024 (FRAME_LOCALS_ADDRESS): Remove.
1025 (FRAME_NUM_ARGS): Remove.
1026 (FRAME_ARGS_SKIP): Remove.
1027 * m68k-tdep.c (enum): Add eumeration of special register numbers.
1028 (m68k_gdbarch_init): Add gdbarch initializations for macros
1029 undefined in tm-m68k.h
1030
1031 2002-06-26 Grace Sainsbury <graces@redhat.com>
1032
1033 * monitor.h: Add the function regname to monitor_ops
1034 structure. This way NUM_REGS does not have to be a constant.
1035 * monitor.c (monitor_fetch_register): Added support for regname
1036 function. The function is called if the array regnames is NULL.
1037 (monitor_store_register): Same.
1038 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
1039 regnames array.
1040 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
1041 cpu32bug_cmds.regname to point to new function.
1042 * abug-rom.c (abug_regname): Same as above.
1043 (init_abug_cmds): Same.
1044 * dbug-rom.c (dbug_regname): Same as above.
1045 (init_dbug_cmds): Same.
1046 * remote-est.c (est_regname): Same.
1047 (init_est_cmds): Same.
1048 * rom68k-rom.c (rom68k_regname): Same.
1049 (init_rom68k_cmds): Same.
1050
1051 2002-06-25 Tom Tromey <tromey@redhat.com>
1052
1053 * breakpoint.c (delete_command): Don't repeat `delete' commands.
1054
1055 2002-06-25 Andrew Cagney <cagney@redhat.com>
1056
1057 * infrun.c (stop_registers): Change variable's type to ``struct
1058 regcache'''.
1059 (xmalloc_inferior_status): Delete function.
1060 (free_inferior_status): Delete function.
1061 (normal_stop): Use regcache_cpy.
1062 (struct inferior_status): Change type of fields ``stop_registers''
1063 and ``registers'' to ``struct regcache''.
1064 (write_inferior_status_register): Use regcache_write.
1065 (save_inferior_status): Instead of calling
1066 xmalloc_inferior_status, allocate the inf_status buffer directly.
1067 Use regcache_dup_no_passthrough and regcache_dup to save the
1068 buffers.
1069 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
1070 Replace the stop_registers regcache instead of overriding it. Use
1071 regcache_xfree. Instead of calling free_inferior_status, xfree
1072 the buffer directly.
1073 (discard_inferior_status): Use regcache_xfree. Instead of calling
1074 free_inferior_status, xfree the buffer directly.
1075 (build_infrun): Use regcache_xmalloc.
1076 (_initialize_infrun): Delete redundant call to build_infrun.
1077
1078 * Makefile.in (infcmd.o): Add $(regcache_h).
1079
1080 * infcmd.c: Include "regcache.h".
1081 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
1082 obtain the address of `stop_registers' register buffer.
1083 (print_return_value): Ditto.
1084
1085 * inferior.h (struct regcache): Add opaque declaration.
1086 (stop_registers): Change variable's declared type to ``struct
1087 regcache''.
1088
1089 2002-06-24 Tom Tromey <tromey@redhat.com>
1090
1091 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
1092 * target.c (initialize_targets): Fixed typo in
1093 trust-readonly-sections `show' documentation.
1094
1095 * main.c: Marked all strings with _().
1096
1097 2002-06-24 Don Howard <dhoward@redhat.com>
1098
1099 * memattr.c (create_mem_region): Treat hi == 0 as a special case
1100 that means max CORE_ADDR+1.
1101 (lookup_mem_region): Ditto.
1102 (mem_info_command): Ditto.
1103
1104 2002-06-24 Grace Sainsbury <graces@redhat.com>
1105
1106 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
1107 (REGISTER_BYTES_OK): Remove.
1108 (REGISTER_BYTES): Remove.
1109 (STORE_STRUCT_RETURN): Remove.
1110 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
1111 (STORE_RETURN_VALUE): Remove.
1112 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
1113 (FRAME_CHAIN): Remove.
1114 (FRAMELESS_FUNCTION_INVOCATION): Remove.
1115 (FRAME_SAVED_PC): Remove.
1116 * m68k-tdep.c (m68k_register_bytes_ok):Add.
1117 (m68k_store_struct_return): Add.
1118 (m68k_deprecated_extract_return_value): Add.
1119 (m68k_deprecated_extract_struct_value_address): Add.
1120 (m68k_store_return_value): Add.
1121 (m68k_frame_chain): Add.
1122 (m68k_frameless_function_invocation): Add.
1123 (m68k_frame_saved_pc): Add.
1124 (m68k_gdbarch_init): added set_gdbarch calls for new
1125 functions and deleted macros.
1126
1127 2002-06-23 Tom Tromey <tromey@redhat.com>
1128
1129 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
1130 (ALLDEPFILES): Likewise.
1131 (udiheaders): Removed.
1132 (udip2soc.o): Likewise.
1133 (udi2go32.o): Likewise.
1134 (udr.o): Likewise.
1135 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
1136
1137 2002-06-22 Andrew Cagney <ac131313@redhat.com>
1138
1139 * infrun.c (_initialize_infrun): Delete unnecessary call to
1140 build_infrun.
1141
1142 * regcache.h: Update comments describing the regcache_cpy family
1143 of functions.
1144 (regcache_save, regcache_restore): Delete declaration.
1145 (regcache_save_no_passthrough): Delete declaration.
1146 (regcache_restore_no_passthrough): Delete declaration.
1147 * regcache.c (regcache_save): Delete function.
1148 (regcache_save_no_passthrough): Delete function.
1149 (regcache_restore): Delete function.
1150 (regcache_restore_no_passthrough): Delete function.
1151
1152 2002-06-21 Andrew Cagney <ac131313@redhat.com>
1153
1154 * config/m68k/tm-m68k.h: Fix typo.
1155 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
1156 (m68k_frame_init_saved_regs): Declare.
1157
1158 2002-06-21 Jim Blandy <jimb@redhat.com>
1159
1160 Remove some vestiges of Harris 88k support.
1161 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
1162 register numbering quirk.
1163 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
1164 odd symbols occurring in Harris 88k ELF targets.
1165
1166 2002-06-21 Tom Tromey <tromey@redhat.com>
1167
1168 * gdb_locale.h: New file.
1169 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
1170 (defs_h): Added gdb_locale.h.
1171 * configure, config.in: Rebuilt.
1172 * configure.in (PACKAGE): Define.
1173 * defs.h: Include gdb_locale.h.
1174 * main.c (captured_main): Call setlocale, bindtextdomain,
1175 textdomain.
1176
1177 2002-06-21 Dave Brolley <brolley@redhat.com>
1178
1179 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
1180 * config/frv/frv.mt: New file.
1181 * config/frv/tm-frv.h: New file.
1182 * configure.tgt: Support frv-*-*.
1183 * Makefile.in (frv-tdep.o): New target.
1184 * frv-tdep.c: New file.
1185 * NEWS: Mention frv.
1186
1187 2002-06-21 Dave Brolley <brolley@redhat.com>
1188
1189 * MAINTAINERS: Add self to "Write After Approval" list.
1190
1191 2002-06-21 Grace Sainsbury <graces@redhat.com>
1192
1193 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
1194 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
1195 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
1196 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
1197 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
1198
1199 * m68k-tdep.c: Include arch-utils.h
1200 (m68k_register_raw_size): Add.
1201 (m68k_register_virtual_size): Add.
1202 (m68k_register_virtual_type): Add.
1203 (m68k_register_name): Add.
1204 (m68k_stack_align): Add.
1205 (m68k_register_byte): Add.
1206 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
1207 tm-m68k.h.
1208
1209 2002-06-21 Grace Sainsbury <graces@redhat.com>
1210
1211 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
1212 m68k_find_saved_regs.
1213 (m68k_pop_frame): Removed saved_regs structure, and replaced
1214 references to it with frame->saved_regs.
1215 (m68k_gdbarch_init): Added function calls to initialize the
1216 gdbarch structure.
1217 (m68k_fix_call_dummy): Add.
1218 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
1219 (CALL_DUMMY): Remove.
1220 (CALL_DUMMY_LENGTH): Remove.
1221 (CALL_DUMMY_START_OFFSET): Remove.
1222 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
1223 (FIX_CALL_DUMMY): Remove.
1224 (PUSH_DUMMY_FRAME): Remove.
1225 (POP_FRAME): Remove.
1226
1227 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
1228
1229 * parse.c (parse_fprintf): New function used to avoid calls to
1230 fprintf in bison parser generated debug code.
1231 * parser-defs.h: Declaration of new parse_fprintf function.
1232 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
1233 Set YYDEBUG to 1 by default.
1234 Set YYFPRINTF as parse_fprintf.
1235
1236 2002-06-21 Michal Ludvig <mludvig@suse.cz>
1237
1238 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
1239 encoding anymore.
1240 (pointer_encoding, enum ptr_encoding): New.
1241 (execute_cfa_program): Take care about pointer encoding.
1242 (dwarf2_build_frame_info): Only call parse_frame_info for
1243 .debug_frame and .eh_frame.
1244 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
1245 fixed augmentation handling, added relative addressing,
1246 ignore duplicate FDEs. Added comments.
1247 * dwarf2cfi.c: Reindented.
1248
1249 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
1250
1251 * event-top.c (command_handler): Don't use space_at_cmd_start
1252 unless there is sbrk() on the host. Assign time and space data
1253 to union fields of the appropriate length.
1254
1255 2002-06-20 Michal Ludvig <mludvig@suse.cz>
1256
1257 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
1258 x86_64_register_name. Return type changed to 'const char *'.
1259 (x86_64_register_name2nr): Rename to x86_64_register_number.
1260 (x86_64_gdbarch_init): Update to reflect the change.
1261 * x86-64-tdep.h: Ditto.
1262 * x86-64-linux-nat.c (x86_64_fxsave_offset)
1263 (supply_fpregset): Ditto.
1264
1265 2002-06-19 Andrew Cagney <cagney@redhat.com>
1266
1267 * regcache.h: Update copyright.
1268 (struct regcache, struct gdbarch): Add opaque declarations.
1269 (current_regcache): Declare global variable.
1270 (regcache_read, regcache_write): Add gdbarch parameter.
1271 (regcache_save, regcache_save_no_passthrough)
1272 (regcache_restore, regcache_restore_no_passthrough)
1273 (regcache_dup, regcache_dup_no_passthrough)
1274 (regcache_cpy, regcache_cpy_no_passthrough)
1275 (deprecated_grub_regcache_for_registers)
1276 (deprecated_grub_regcache_for_register_valid)
1277 (regcache_valid_p): Add function declarations.
1278
1279 * regcache.c: Update copyright.
1280 (regcache_descr_handle): New global variable.
1281 (struct regcache_descr): Define.
1282 (init_legacy_regcache_descr, init_regcache_descr): New functions.
1283 (regcache_descr, xfree_regcache_descr): New functions.
1284 (struct regcache): Define.
1285 (regcache_xmalloc, regcache_xfree): New functions.
1286 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
1287 (regcache_dup, regcache_dup_no_passthrough): New functions.
1288 (regcache_valid_p, regcache_read_as_address): New functions.
1289 (deprecated_grub_regcache_for_registers): New function.
1290 (deprecated_grub_regcache_for_register_valid): New function.
1291 (current_regcache): New global variable.
1292 (register_buffer): Add regcache parameter. Update calls.
1293 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
1294 (read_register_gen, write_register_gen): Update register_buffer
1295 call. Test for legacy_p instead of gdbarch_register_read_p or
1296 gdbarch_register_write_p.
1297 (regcache_collect): Update register_buffer call.
1298 (build_regcache): Rewrite. Use deprecated grub functions.
1299 (regcache_save, regcache_save_no_passthrough): New functions.
1300 (regcache_restore, regcache_restore_no_passthrough): New
1301 functions.
1302 (_initialize_regcache): Create the regcache_data_handle. Swap
1303 current_regcache global variable.
1304
1305 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
1306 parameter to regcache_read and regcache_write calls.
1307 (sh4_register_read): Ditto.
1308 (sh64_pseudo_register_read): Ditto.
1309 (sh64_register_read): Ditto.
1310 (sh_pseudo_register_write): Ditto.
1311 (sh4_register_write): Ditto.
1312 (sh64_pseudo_register_write): Ditto.
1313 (sh64_register_write): Ditto.
1314
1315 * defs.h (XCALLOC): Define.
1316
1317 2002-06-19 Grace Sainsbury <graces@redhat.com>
1318
1319 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
1320 * m68k-tdep.c (m68k_gdbarch_init): Added.
1321 (m68k_dump_tdep): Added.
1322
1323 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
1324
1325 * ada-lang.c (fill_in_ada_prototype): Update comment.
1326
1327 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
1328
1329 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
1330 MIPS_ABI_LAST.
1331 (mips_abi_string, mips_abi_strings): New.
1332 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
1333 (mips_gdbarch_init): Set tdep->found_abi. Don't set
1334 tdep->mips_abi_string. Honor mips_abi_string. Default to
1335 O32 if no ABI is found.
1336 (mips_dump_tdep): Use mips_abi_strings.
1337 (mips_abi_update): New function.
1338 (_initialize_mips_tdep): Initialize mips_abi_string. Add
1339 ``set mips abi'' and ``show mips abi''. Check the size of
1340 mips_abi_strings.
1341
1342 2002-06-19 Andrew Cagney <cagney@redhat.com>
1343
1344 * i386-linux-tdep.c (i386_linux_register_name): Make return type
1345 constant.
1346
1347 2002-06-18 Joel Brobecker <brobecker@gnat.com>
1348
1349 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
1350 current frame using only the first stack size adjustment. All
1351 subsequent size adjustments are not considered to be part of
1352 the "static" part of the current frame.
1353 Compute the address of the saved registers relative to the
1354 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
1355 in use in this frame.
1356
1357 2002-06-18 Don Howard <dhoward@redhat.com>
1358
1359 * valops.c (value_ind): Use value_at_lazy() when dereferencing
1360 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
1361 suggesting this solution.
1362
1363 2002-06-18 Andrew Cagney <ac131313@redhat.com>
1364
1365 * config/romp/xm-rtbsd.h: Delete file.
1366 * config/romp/rtbsd.mh: Delete file.
1367
1368 2002-06-18 Keith Seitz <keiths@redhat.com>
1369
1370 * breakpoint.c (condition_command): Post breakpoint_modify
1371 when a condition is added to an existing breakpoint.
1372 (commands_command): Likewise for commands.
1373 (set_ignore_count): Likewise for ignore counts.
1374 If no tty, do not simply return, still need to send event
1375 notification.
1376 (ignore_command): Only print a newline if the command came
1377 from a tty.
1378 Don't call breakpoints_changed, since this is now properly
1379 handled by set_ignore_count.
1380
1381 2002-06-18 Andrew Cagney <cagney@redhat.com>
1382
1383 * MAINTAINERS: Note that cris-elf target can be compiled with
1384 -Werror.
1385 * cris-tdep.c (cris_register_name): Make return type constant.
1386 (cris_breakpoint_from_pc): Ditto.
1387
1388 2002-06-18 Michal Ludvig <mludvig@suse.cz>
1389
1390 * frame.h (struct frame_info): Change type of context to
1391 'struct context'.
1392
1393 2002-06-17 Andrew Cagney <cagney@redhat.com>
1394
1395 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
1396 pointer.
1397 * gdbarch.h, gdbarch.c: Regenerate.
1398 * config/mips/tm-mips.h (mips_register_name): Update.
1399 * i386-tdep.h (i386_register_name): Update.
1400 * mips-tdep.c (mips_register_name): Update
1401 * alpha-tdep.c (alpha_register_name): Update.
1402 * arch-utils.c (legacy_register_name): Update.
1403 * arch-utils.h (legacy_register_name): Update.
1404 * avr-tdep.c (avr_register_name): Update.
1405 * ia64-tdep.c (ia64_register_name): Update.
1406 * i386-tdep.c (i386_register_name): Update.
1407 * sparc-tdep.c (sparc32_register_name): Update.
1408 (sparc64_register_name): Update.
1409 (sparclite_register_name): Update.
1410 (sparclet_register_name): Update.
1411 * sh-tdep.c (sh_generic_register_name): Update.
1412 (sh_sh_register_name): Update.
1413 (sh_sh3_register_name): Update.
1414 (sh_sh3e_register_name): Update.
1415 (sh_sh_dsp_register_name): Update.
1416 (sh_sh3_dsp_register_name): Update.
1417 (sh_sh4_register_name): Update.
1418 (sh_sh64_register_name): Update.
1419 * s390-tdep.c (s390_register_name): Update.
1420 * rs6000-tdep.c (rs6000_register_name): Update.
1421 * ns32k-tdep.c (ns32k_register_name_32082): Update.
1422 (ns32k_register_name_32382): Update.
1423 * d10v-tdep.c (d10v_ts2_register_name): Update.
1424 (d10v_ts3_register_name): Update.
1425 * xstormy16-tdep.c (xstormy16_register_name): Update.
1426 * vax-tdep.c (vax_register_name): Update.
1427 * v850-tdep.c (v850_register_name): Update.
1428 * m68hc11-tdep.c (m68hc11_register_name): Update.
1429 * mn10300-tdep.c (mn10300_generic_register_name): Update.
1430 (am33_register_name): Update.
1431
1432 2002-06-17 Grace Sainsbury <graces@redhat.com>
1433
1434 * m68k-tdep.c: Reindented.
1435
1436 2002-06-17 Andrew Cagney <ac131313@redhat.com>
1437
1438 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
1439 list of predefined types.
1440
1441 2002-06-16 Mark Kettenis <kettenis@gnu.org>
1442
1443 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
1444 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
1445 REGISTER_CONVERT_TO_RAW): Remove defines.
1446 (i386_register_virtual_type, i386_register_convertible,
1447 i386_register_convert_to_virtual, i386_register_convert_to_raw):
1448 Remove prototypes.
1449 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
1450 macros mentioned above.
1451
1452 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
1453 (i386lynx_saved_pc_after_call): Remove prototype.
1454 * i386ly-tdep.c: Include "i386-tdep.h".
1455 (i386lynx_saved_pc_after_call): Make static. Use
1456 read_memory_nobpt instead of read_memory. Use
1457 read_memory_unsigned_integer instead of read_memory_integer.
1458 (i386lynx_init_abi): New function.
1459 (i386lynx_coff_osabi_sniffer): New function.
1460 (_initialize_i386bsd_tdep): New function.
1461
1462 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
1463 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
1464 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
1465 (i386_fix_call_dummy): Remove prototype.
1466 * i386-tdep.c (i386_call_dummy_words): New variable.
1467 (i386_gdbarch_init): Adjust for removal of the
1468 macros mentioned above.
1469
1470 2002-06-15 Andrew Cagney <ac131313@redhat.com>
1471
1472 * command.h (add_setshow_auto_boolean_cmd): Replace
1473 add_set_auto_boolean_cmd.
1474 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
1475 add_set_auto_boolean_cmd.
1476 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
1477 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
1478 mask-address'' command.
1479 (show_mask_address): Add cmd parameter.
1480 * remote.c (add_packet_config_cmd): Update. Change type of
1481 set_func and show_func to cmd_sfunc_ftype.
1482 (_initialize_remote): Update `set remote Z-packet'
1483 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
1484 (show_remote_protocol_e_packet_cmd): Ditto.
1485 (show_remote_protocol_E_packet_cmd): Ditto.
1486 (show_remote_protocol_P_packet_cmd): Ditto.
1487 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
1488 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
1489 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
1490 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
1491 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
1492 (show_remote_protocol_Z_packet_cmd): Ditto.
1493 (show_remote_protocol_binary_download_cmd): Ditto.
1494 (show_remote_cmd): Pass NULL to all of above.
1495
1496 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1497
1498 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
1499 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
1500 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
1501 POP_FRAME): Remove defines.
1502 (i386_push_arguments, i386_store_struct_return,
1503 i386_extract_return_value, i386_store_return_value,
1504 i386_extract_struct_value_address, i386_push_dummy_frame,
1505 i386_pop_frame): Renove prototypes.
1506 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
1507 macros mentioned above.
1508
1509 2002-06-15 Andrew Cagney <ac131313@redhat.com>
1510
1511 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
1512 add_set_boolean_cmd.
1513 (add_setshow_cmd): New function.
1514 * command.h (add_setshow_boolean_cmd): Replace
1515 add_set_boolean_cmd.
1516 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
1517 and ``set rdiromatzero''.
1518 * maint.c (_initialize_maint_cmds): Update commented out code.
1519 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
1520 * target.c (initialize_targets): Update `set
1521 trust-readonly-sections'.
1522 * remote.c (_initialize_remote): Update `set remotebreak'.
1523
1524 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1525
1526 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
1527 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
1528 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
1529 fit into multi-arch framework.
1530 (i386_breakpoint_from_pc): New function.
1531 (i386_gdbarch_init): Adjust for removal of the macros mentioned
1532 above.
1533
1534 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
1535 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
1536 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
1537 (i386_frameless_function_invocation, i386_frame_num_args,
1538 i386_frame_init_saved_regs): Remove prototypes.
1539 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
1540 macros mentioned above.
1541
1542 2002-06-15 Andrew Cagney <ac131313@redhat.com>
1543
1544 * cli/cli-decode.c (set_cmd_cfunc): Update.
1545 (set_cmd_sfunc): Update.
1546 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
1547 (set_cmd_sfunc, set_cmd_cfunc): Update.
1548 * cli/cli-decode.h: Update.
1549
1550 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1551
1552 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
1553 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
1554
1555 2002-06-15 Andrew Cagney <ac131313@redhat.com>
1556
1557 * defs.h (auto_boolean): Declare enum.
1558 * command.h (cmd_auto_boolean): Delete enum.
1559 * mips-tdep.c (mask_address_var): Update.
1560 (mips_mask_address_p): Update.
1561 (show_mask_address): Update.
1562 * remote.c (struct packet_config): Update.
1563 (update_packet_config): Update.
1564 (show_packet_config_cmd): Update.
1565 (packet_ok): Update.
1566 (add_packet_config_cmd): Update.
1567 (_initialize_remote):
1568 * command.h: Update.
1569 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
1570 (do_setshow_command): Update.
1571 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
1572 * cli/cli-decode.h: Update.
1573
1574 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1575
1576 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
1577 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
1578 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
1579 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
1580 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
1581 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
1582
1583 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
1584 list of DJGPP COFF targets.
1585
1586 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
1587 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
1588 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
1589 (FP0_REGNUM): Remove define.
1590 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
1591 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
1592 (i386_register_virtual_size): Remove protoype.
1593 * i386-tdep.c (i386_register_virtual_size): Removed.
1594 (i386_extract_return_value, i386_store_return_value): Use
1595 FP0_REGNUM instead of NUM_FREGS to determine whether the
1596 floating-point registers are available.
1597 (i386_gdbarch_init): Tweak FIXME about FPU registers.
1598 Adjust for removal of macros mentioned above.
1599
1600 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1601
1602 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
1603 comments.
1604 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
1605 Remove prototypes.
1606 (supply_gregset, fill_gregset): Remove use of register keyword and
1607 remove declaration for regmap. Use I386_NUM_GREGS instead of
1608 NUM_REGS and NUM_FREGS.
1609 (FPREGSET_FSAVE_OFFSET): Remove.
1610 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
1611 NUM_FREGS to determine whether the floating-point registers are
1612 available.
1613
1614 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
1615 gnu_store_registers): Replace usage of NUM_GREGS with
1616 I386_NUM_GREGS.
1617
1618 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
1619 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
1620 usage of NUM_GREGS with I386_NUM_GREGS.
1621
1622 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
1623
1624 * i386bsd-nat.c: Include "i386-tdep.h".
1625 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
1626 I386_NUM_GREGS.
1627
1628 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
1629 and associated comment. They no longer make any sense, since we
1630 don't use this file anymore on Linux.
1631
1632 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
1633 * i386-tdep.c (i386_register_offset, i386_register_size): Use
1634 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
1635 elements in these arrays.
1636 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
1637 MAX_NUM_REGS.
1638
1639 2002-06-15 Mark Kettenis <kettenis@gnu.org>
1640
1641 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
1642 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
1643
1644 2002-06-14 Andrew Cagney <cagney@redhat.com>
1645
1646 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
1647 EXTRACT_RETURN_VALUE.
1648 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
1649 EXTRACT_STRUCT_VALUE_ADDRESS.
1650 * gdbarch.h, gdbarch.c: Regenerate.
1651
1652 * values.c (value_being_returned): Handle
1653 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
1654 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
1655
1656 * arm-linux-tdep.c (arm_linux_init_abi): Update.
1657 * arm-tdep.c (arm_gdbarch_init): Update.
1658 * avr-tdep.c (avr_gdbarch_init): Update.
1659 * cris-tdep.c (cris_gdbarch_init): Update.
1660 * d10v-tdep.c (d10v_gdbarch_init): Update.
1661 * ia64-tdep.c (ia64_gdbarch_init): Update.
1662 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1663 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1664 * s390-tdep.c (s390_gdbarch_init): Update.
1665 * sh-tdep.c (sh_gdbarch_init): Update.
1666 * s390-tdep.c (s390_gdbarch_init): Update.
1667 * sparc-tdep.c (sparc_gdbarch_init): Update.
1668 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1669 * v850-tdep.c (v850_gdbarch_init): Update.
1670 * vax-tdep.c (vax_gdbarch_init): Update.
1671 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1672 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1673
1674 * config/arc/tm-arc.h: Update.
1675 * config/d30v/tm-d30v.h: Update.
1676 * config/fr30/tm-fr30.h: Update.
1677 * config/h8300/tm-h8300.h: Update.
1678 * config/h8500/tm-h8500.h: Update.
1679 * config/i386/tm-i386.h: Update.
1680 * config/i386/tm-ptx.h: Update.
1681 * config/i386/tm-symmetry.h: Update.
1682 * config/i960/tm-i960.h: Update.
1683 * config/m32r/tm-m32r.h: Update.
1684 * config/m68k/tm-delta68.h: Update.
1685 * config/m68k/tm-linux.h: Update.
1686 * config/m68k/tm-m68k.h: Update.
1687 * config/m88k/tm-m88k.h: Update.
1688 * config/mcore/tm-mcore.h: Update.
1689 * config/mips/tm-mips.h: Update.
1690 * config/mn10200/tm-mn10200.h: Update.
1691 * config/pa/tm-hppa.h: Update.
1692 * config/pa/tm-hppa64.h: Update.
1693 * config/sparc/tm-sp64.h: Update.
1694 * config/sparc/tm-sparc.h: Update.
1695 * config/sparc/tm-sparclet.h: Update.
1696 * config/z8k/tm-z8k.h: Update.
1697
1698 2002-06-14 Andrew Cagney <cagney@redhat.com>
1699
1700 * Makefile.in (i386_linux_tdep_h): Define.
1701 (i386_tdep_h, i387_tdep_h): Define.
1702 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
1703 $(i386_tdep_h) and $(i387_tdep_h).
1704 * i386-linux-nat.c: Include "i386-linux-tdep.h".
1705
1706 2002-06-14 Mark Kettenis <kettenis@gnu.org>
1707
1708 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
1709 Already covered by the default.
1710
1711 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
1712 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
1713 (i386_gdbarch_init): Initialize long_double_format and long_double
1714 bit.
1715
1716 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
1717 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
1718 Move these to ...
1719 * config/i386/i386sol2.mh: ... here.
1720 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
1721 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
1722 (SIGCONTEXT_PC_OFFSET): Remove define.
1723 (IN_SIGTRAMP): Remove define.
1724 * i386-sol2-tdep.c: New file.
1725
1726 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
1727 * config/i386/tm-i386nw.h: Removed.
1728
1729 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
1730 USE_STRUCT_CONVENTION): Remove defines.
1731 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1732 (get_longjmp_target): Remove prototype.
1733 (IN_SIGTRAMP): Remove define.
1734 (i386bsd_in_sigtramp): Remove prototype.
1735 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
1736 function. Update comment accordingly
1737 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
1738 (FRAME_SAVED_PC): Remove define.
1739 (i386bsd_frame_saved_pc): Remove prototype.
1740 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
1741 GET_LONGJMP_TARGET): Remove defines.
1742 (get_longjmp_target): Remove prototype.
1743 (IN_SIGTRAMP): Remove define.
1744 (i386bsd_in_sigtramp): Remove prototype.
1745 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
1746 function. Update comment accordingly
1747 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
1748 (FRAME_SAVED_PC): Remove define.
1749 (i386bsd_frame_saved_pc): Remove prototype.
1750 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
1751 Remove prototype.
1752 (USE_STRUCT_CONVENTION): Remove prototype.
1753 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
1754 declaration.
1755 (_initialize_i386bsd_nat): Revise logic to determine some
1756 constants at compile time when compiling a native GDB. Warn if
1757 things don't match up with what we expect.
1758 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
1759 Remove variables.
1760 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
1761 to use date stored in `struct gdbarch_tdep'.
1762 (i386bsd_sigcontext_offset): Remove varaible.
1763 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
1764 stored in `struct gdbarch_tdep'.
1765 (i386bsd_frame_saved_pc): Make static.
1766 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
1767 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
1768 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
1769 i386fbsd4_sc_pc_offset): New variables.
1770 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
1771 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
1772 functions.
1773 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
1774 functions.
1775 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
1776 Modify the value of i386fbsd_sigtramp_start and
1777 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
1778 i386fbsd_sigtramp_end.
1779 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
1780 function.
1781
1782 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
1783 define to i386-linux-tdep.h.
1784 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
1785 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
1786 defines.
1787 (i386_linux_register_name, i386_linux_register_byte,
1788 i386_linux_register_raw_size): Remove prototypes.
1789 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
1790 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
1791 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
1792 TARGET_WRITE_PC): Remove defines.
1793 (i386_linux_in_sigtramp, i386_linux_frame_chain,
1794 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
1795 i386_linux_write_pc): Remove prototypes.
1796 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1797 (get_longjmp_target): Remove prototype.
1798 * i386-linux-tdep.h: New file.
1799 * i386-linux-nat.c: Include "i386-linux-tdep.h".
1800 * i386-linux-tdep.c: Include "i386-tdep.h" and
1801 "i386-linux-tdep.h".
1802 (i386_linux_register_name, i386_linux_register_byte,
1803 i386_linux_register_raw_size, i386_linux_in_sigtramp,
1804 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
1805 Make static.
1806 (i386_linux_init_abi): New function.
1807 (_initialize_i386_linux_tdep): New function.
1808
1809 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
1810 (i386_saved_pc_after_call): Remove prototype.
1811 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
1812 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
1813 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
1814 (i386_register_name, i386_stab_reg_to_regnum,
1815 i386_dwarf_reg_to_regnum): Remove prototypes.
1816 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
1817 SIZEOF_SSE_REGS): Remove defines.
1818 (REGISTER_BYTES): Remove define.
1819 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
1820 (i386_register_byte, i386_register_raw_size): Remove prototypes.
1821 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
1822 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
1823 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
1824 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
1825 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
1826 (get_longjmp_target): Remove prototype.
1827 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
1828 (sigtramp_saved_pc): Remove define.
1829 (i386v4_sigtramp_saved_pc): Remove prototype.
1830 * config/i386/tm-go32.h (FRAME_CHAIN,
1831 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
1832 (i386go32_frame_saved_pc): Remove prototype.
1833 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1834 (get_longjmp_target): Remove prototype.
1835 * i386-tdep.h: Include "osabi.h".
1836 (enum i386_abi): Removed.
1837 (enum struct_return): New enum.
1838 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
1839 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
1840 sc_pc_offset members.
1841 (i386_gdbarch_register_os_abi): Remove prototype.
1842 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
1843 I386_SSE_NUM_REGS): New defines.
1844 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
1845 I386_SSE_SIZEOF_REGS): New defines.
1846 (i386_register_name, i386_register_byte, i386_register_raw_size):
1847 New prototypes.
1848 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
1849 (i386bsd_sigtramp_saved_pc): New prototype.
1850 * i386-tdep.c: Don't include "elf-bfd.h".
1851 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
1852 i386_frame_chain, i386_saved_pc_after_call): Make static.
1853 (i386_frame_saved_pc): Rewrite to call architecture dependent
1854 function to deal with signal handlers. Make static.
1855 (i386go32_frame_saved_pc): Removed.
1856 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
1857 Removed.
1858 (i386_get_longjmp_target): New function.
1859 (default_struct_convention, pcc_struct_convention,
1860 reg_struct_convention, valid_conventions, struct_convention): New
1861 variables.
1862 (i386_use_struct_convention): New function.
1863 (i386v4_sigtramp_saved_pc): Renamed to
1864 i386_svr4_sigtramp_saved_pc. Made static. Moved.
1865 (i386_pc_in_sigtramp): New function.
1866 (i386_abi_names): Removed.
1867 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
1868 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
1869 Removed.
1870 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
1871 i386_gdbarch_register_os_abi): Removed.
1872 (struct i386_abi_handler): Removed.
1873 (i386_abi_handler_list): Removed.
1874 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
1875 functions.
1876 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
1877 i386_nw_init_abi): New functions.
1878 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
1879 Use set_gdbarch_xxx() calls instead of relying on macros for a
1880 number of calls.
1881 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
1882 (_initialize_i386_tdep): Add new 'struct-convcention' command.
1883 Register the various architecture variants defined in this file.
1884
1885 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
1886
1887 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
1888 (struct main_type): Remove arg_types member. Update comments for
1889 struct field.
1890 (TYPE_ARG_TYPES): Remove.
1891 (TYPE_FN_FIELD_ARGS): Update.
1892 (smash_to_method_type): Update prototype.
1893
1894 * c-typeprint.c (cp_type_print_method_args): Take method type
1895 instead of argument list. Use new argument layout. Simplify.
1896 (c_type_print_args): Use new argument layout. Simplify.
1897 (c_type_print_base): Update call to cp_type_print_method_args.
1898 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
1899 argument; use die->type instead. Update call to
1900 smash_to_method_type.
1901 (read_structure_scope): Update call to dwarf2_add_member_fn.
1902 * gdbtypes.c (allocate_stub_method): Update comment.
1903 (smash_to_method_type): Take new NARGS and VARARGS arguments.
1904 Use new argument layout.
1905 (check_stub_method): Use new argument layout. Don't count
1906 void as an argument.
1907 (print_arg_types): Update comments. Use new argument layout.
1908 (recursive_dump_type): Don't print arg_types member.
1909 * hpread.c (hpread_read_struct_type): Use new argument layout.
1910 (fixup_class_method_type): Likewise.
1911 (hpread_type_lookup): Likewise.
1912 * stabsread.c (read_type): Update calls to read_args and
1913 smash_to_method_type.
1914 (read_args): Use new argument layout. Simplify.
1915 * valops.c (typecmp): Use new argument layout. Update parameters
1916 and comments. Simplify.
1917 (hand_function_call): Use new argument layout.
1918 (search_struct_method): Update call to typecmp.
1919 (find_overload_match): Use new argument layout.
1920
1921 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
1922
1923 * NEWS: Mention multithreaded debug support for gdbserver.
1924
1925 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
1926
1927 * MAINTAINERS: Mention NEWS.
1928
1929 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
1930
1931 * gdbserver/regcache.c: Add comment.
1932
1933 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
1934
1935 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
1936 (struct mips_objfile_private, compare_pdr_entries): New.
1937 (non_heuristic_proc_desc): Read the ".pdr" section if it
1938 is present.
1939
1940 2002-06-12 Andrew Cagney <ac131313@redhat.com>
1941
1942 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
1943 (arm_debug): New static variable.
1944 (_initialize_arm_tdep): Add ``set debug arm'' command.
1945
1946 2002-06-12 Andrew Cagney <ac131313@redhat.com>
1947
1948 * Makefile.in (sim_arm_h): Define.
1949 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
1950 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
1951 (arm_register_sim_regno): New function, map an internal REGNUM
1952 onto a simulator register number.
1953 (arm_gdbarch_init): Set register_sim_regno.
1954
1955 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
1956
1957 * MAINTAINERS: Add self.
1958
1959 2002-06-11 Jim Blandy <jimb@redhat.com>
1960
1961 * source.c (source_info): Mention whether the symtab has
1962 information about preprocessor macros.
1963
1964 Call the command `info macro', not `show macro'.
1965 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
1966 Fix error message.
1967 (_initialize_macrocmd): Register `info_macro_command' in
1968 `infolist', not `showlist'.
1969
1970 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
1971
1972 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
1973 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
1974 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
1975 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
1976 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
1977 unconditionally.
1978 (set_mipsfpu_single_command, set_mipsfpu_double_command)
1979 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
1980 (_initialize_mips_tdep): Remove dead code.
1981 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
1982 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
1983 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
1984 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
1985 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
1986 MIPS_LAST_FP_ARG_REGNUM): Remove.
1987
1988 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
1989
1990 * gdbserver/thread-db.c: New file.
1991 * gdbserver/proc-service.c: New file.
1992 * gdbserver/acinclude.m4: New file.
1993 * gdbserver/Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
1994 proc-service.o, and thread-db.o.
1995 (linux-low.o): Add USE_THREAD_DB.
1996 * gdbserver/acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
1997 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
1998 * gdbserver/aclocal.m4: Regenerated.
1999 * gdbserver/config.in: Regenerated.
2000 * gdbserver/configure: Regenerated.
2001 * gdbserver/configure.in: Check for proc_service.h, sys/procfs.h,
2002 thread_db.h, and linux/elf.h headrs.
2003 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
2004 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
2005 Check for -lthread_db and thread support.
2006 * gdbserver/configure.srv: Enable thread_db support for ARM, i386, MIPS,
2007 PowerPC, and SuperH.
2008 * gdbserver/i387-fp.c: Constify arguments.
2009 * gdbserver/i387-fp.h: Likewise.
2010 * gdbserver/inferiors.c: (struct thread_info): Renamed from
2011 `struct inferior_info'. Remove PID member. Use generic inferior
2012 list header. All uses updated.
2013 (inferiors, signal_pid): Removed.
2014 (all_threads): New variable.
2015 (get_thread): Define.
2016 (add_inferior_to_list): New function.
2017 (for_each_inferior): New function.
2018 (change_inferior_id): New function.
2019 (add_inferior): Removed.
2020 (remove_inferior): New function.
2021 (add_thread): New function.
2022 (free_one_thread): New function.
2023 (remove_thread): New function.
2024 (clear_inferiors): Use for_each_inferior and free_one_thread.
2025 (find_inferior): New function.
2026 (find_inferior_id): New function.
2027 (inferior_target_data): Update argument type.
2028 (set_inferior_target_data): Likewise.
2029 (inferior_regcache_data): Likewise.
2030 (set_inferior_regcache_data): Likewise.
2031 * gdbserver/linux-low.c (linux_bp_reinsert): Remove.
2032 (all_processes, stopping_threads, using_thrads)
2033 (struct pending_signals, debug_threads, pid_of): New.
2034 (inferior_pid): Replace with macro.
2035 (struct inferior_linux_data): Remove.
2036 (get_stop_pc, add_process): New functions.
2037 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
2038 Use add_process and add_thread.
2039 (linux_attach_lwp): New function, based on old linux_attach. Use
2040 add_process and add_thread. Set stop_expected for new threads.
2041 (linux_attach): New function.
2042 (linux_kill_one_process): New function.
2043 (linux_kill): Kill all LWPs.
2044 (linux_thread_alive): Use find_inferior_id.
2045 (check_removed_breakpoints, status_pending_p): New functions.
2046 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
2047 Update. Use WNOHANG. Wait for cloned processes also. Update process
2048 struct for the found process.
2049 (linux_wait_for_event): New function.
2050 (linux_wait): Use it. Support LWPs.
2051 (send_sigstop, wait_for_sigstop, stop_all_processes)
2052 (linux_resume_one_process, linux_continue_one_process): New functions.
2053 (linux_resume): Support LWPs.
2054 (REGISTER_RAW_SIZE): Remove.
2055 (fetch_register): Use register_size instead. Call supply_register.
2056 (usr_store_inferior_registers): Likewise. Call collect_register.
2057 Fix recursive case.
2058 (regsets_fetch_inferior_registers): Improve error message.
2059 (regsets_store_inferior_registers): Add debugging.
2060 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
2061 (unstopped_p, linux_signal_pid): New functions.
2062 (linux_target_ops): Add linux_signal_pid.
2063 (linux_init_signals): New function.
2064 (initialize_low): Call it. Initialize using_threads.
2065 * gdbserver/regcache.c (inferior_regcache_data): Add valid
2066 flag.
2067 (get_regcache): Fetch registers lazily. Add fetch argument
2068 and update all callers.
2069 (regcache_invalidate_one, regcache_invalidate): New
2070 functions.
2071 (new_register_cache): Renamed from create_register_cache.
2072 Return the new regcache.
2073 (free_register_cache): Change argument to a void *.
2074 (registers_to_string, registers_from_string): Call get_regcache
2075 with fetch flag set.
2076 (register_data): Make static. Pass fetch flag to get_regcache.
2077 (supply_register): Call get_regcache with fetch flag clear.
2078 (collect_register): Call get_regcache with fetch flag set.
2079 (collect_register_as_string): New function.
2080 * gdbserver/regcache.h: Update.
2081 * gdbserver/remote-utils.c (putpkt): Flush after debug output and use
2082 stderr.
2083 Handle input interrupts while waiting for an ACK.
2084 (input_interrupt): Use signal_pid method.
2085 (getpkt): Flush after debug output and use stderr.
2086 (outreg): Use collect_register_as_string.
2087 (new_thread_notify, dead_thread_notify): New functions.
2088 (prepare_resume_reply): Check using_threads. Set thread_from_wait
2089 and general_thread.
2090 (look_up_one_symbol): Flush after debug output.
2091 * gdbserver/server.c (step_thread, server_waiting): New variables.
2092 (start_inferior): Don't use signal_pid. Update call to mywait.
2093 (attach_inferior): Update call to mywait.
2094 (handle_query): Handle qfThreadInfo and qsThreadInfo.
2095 (main): Don't fetch/store registers explicitly. Use
2096 set_desired_inferior. Support proposed ``Hs'' packet. Update
2097 calls to mywait.
2098 * gdbserver/server.h: Update.
2099 (struct inferior_list, struct_inferior_list_entry): New.
2100 * gdbserver/target.c (set_desired_inferior): New.
2101 (write_inferior_memory): Constify.
2102 (mywait): New function.
2103 * gdbserver/target.h: Update.
2104 (struct target_ops): New signal_pid method.
2105 (mywait): Removed macro, added prototype.
2106
2107 * gdbserver/linux-low.h (regset_func): Removed.
2108 (regset_fill_func, regset_store_func): New.
2109 (enum regset_type): New.
2110 (struct regset_info): Add type field. Use new operation types.
2111 (struct linux_target_ops): stop_pc renamed to get_pc.
2112 Add decr_pc_after_break and breakpoint_at.
2113 (get_process, get_thread_proess, get_process_thread)
2114 (strut process_info, all_processes, linux_attach_lwp)
2115 (thread_db_init): New.
2116
2117 * gdbserver/linux-arm-low.c (arm_get_pc, arm_set_pc,
2118 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
2119 (the_low_target): Add new members.
2120 * gdbserver/linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
2121 (i386_store_fpxregset): Constify.
2122 (target_regsets): Add new kind identifier.
2123 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
2124 (i386_set_pc): Add debugging.
2125 (i386_breakpoint_at): New function.
2126 (the_low_target): Add new members.
2127 * gdbserver/linux-mips-low.c (mips_get_pc, mips_set_pc)
2128 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
2129 (mips_breakpoint_at): New.
2130 (the_low_target): Add new members.
2131 * gdbserver/linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
2132 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
2133 (the_low_target): Add new members.
2134 * gdbserver/linux-sh-low.c (sh_get_pc, sh_set_pc)
2135 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
2136 (the_low_target): Add new members.
2137 * gdbserver/linux-x86-64-low.c (target_regsets): Add new kind
2138 identifier.
2139
2140 2002-06-11 Michal Ludvig <mludvig@suse.cz>
2141
2142 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
2143 (unwind_tmp_obstack_free, parse_frame_info)
2144 (update_context, cfi_read_fp, cfi_write_fp)
2145 (cfi_frame_chain, cfi_init_extra_frame_info)
2146 (cfi_virtual_frame_pointer): Use the above function.
2147 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
2148
2149 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
2150
2151 * v850-tdep.c (v850_type_is_scalar): New function.
2152 (v850_use_struct_convention): Match current gcc implementation
2153 as close as possible.
2154 (v850_push_arguments): Fix stack_offset handling. Don't write
2155 struct_addr into register. This is done by v850_store_struct_return.
2156 (v850_extract_return_value): Care for structs.
2157 (v850_store_return_value): Ditto.
2158 (v850_store_struct_return): Actually write address.
2159
2160 2002-06-11 Michal Ludvig <mludvig@suse.cz>
2161
2162 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
2163 without debug information too.
2164
2165 2002-06-10 Andrew Cagney <ac131313@redhat.com>
2166
2167 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
2168 Make multi-arch pure.
2169 * gdbarch.h, gdbarch.c: Re-generate.
2170 * arm-tdep.c (arm_print_float_info): Update.
2171 * arch-utils.h (default_print_float_info): Update.
2172 * arch-utils.c (default_print_float_info): Update.
2173 * infcmd.c (float_info): Update call.
2174
2175 2002-06-10 Andrew Cagney <ac131313@redhat.com>
2176
2177 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
2178 the front of the initialize list.
2179
2180 2002-06-10 Andrew Cagney <ac131313@redhat.com>
2181
2182 * infrun.c (struct inferior_status): Replace fields
2183 selected_frame_address and selected_level with field
2184 selected_frame_id.
2185 (save_inferior_status): Update. Use get_frame_id.
2186 (struct restore_selected_frame_args): Delete.
2187 (restore_selected_frame): Update. Use frame_find_by_id.
2188 (restore_inferior_status): Update.
2189
2190 * breakpoint.h (struct breakpoint): Change type of
2191 watchpoint_frame to frame_id.
2192 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
2193 call to get_current_frame.
2194 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
2195 get_current_frame.
2196 (watchpoint_check): Use frame_find_by_id.
2197
2198 * frame.h (record_selected_frame): Delete declaration.
2199 * stack.c (record_selected_frame): Delete function.
2200
2201 * frame.h (struct frame_id): Define.
2202 (get_frame_id): Declare.
2203 (frame_find_by_id): Declare.
2204 * frame.c (frame_find_by_id): New function.
2205 (get_frame_id): New function.
2206
2207 2002-06-10 Andrey Volkov <avolkov@transas.com>
2208
2209 * ser-e7kpc.c: Fix duplicated define and call of
2210 _initialize_ser_e7000pc
2211
2212 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
2213
2214 * signals/signals.c (target_signal_from_host): Fix #ifdef
2215 SIGRTMIN case.
2216 (do_target_signal_to_host): Likewise.
2217
2218 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
2219
2220 * mips-tdep.c (mips_find_abi_section): New function.
2221 (mips_gdbarch_init): Call it.
2222
2223 2002-06-09 Mark Kettenis <kettenis@gnu.org>
2224
2225 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
2226 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
2227 after Andrew's 2002-06-08 gdbarch change.
2228
2229 2002-06-09 Mark Kettenis <kettenis@gnu.org>
2230
2231 * i386-linux-nat.c (suppy_gregset): Don't supply
2232 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
2233 register cache.
2234 (fill_gregset): Don't fetch it under the same circumstances.
2235
2236 2002-06-09 Andrew Cagney <cagney@redhat.com>
2237
2238 * Makefile.in (callback_h): Define.
2239 (remote_sim_h): Update path to remote-sim.h.
2240 (remote-rdp.o): Add $(callback_h).
2241 (remote-sim.o): Use $(callback_h).
2242 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
2243 * remote-rdp.c: Include "gdb/callback.h".
2244
2245 2002-06-09 Mark Kettenis <kettenis@gnu.org>
2246
2247 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
2248 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
2249
2250 2002-06-08 Andrew Cagney <ac131313@redhat.com>
2251
2252 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
2253 * rdi-share/serpardr.c: Ditto.
2254 * rdi-share/unixcomm.c: Ditto.
2255 * rdi-share/serdrv.c: Ditto.
2256 * rdi-share/hostchan.h: Ditto.
2257 * rdi-share/hostchan.c: Ditto.
2258 * rdi-share/host.h: Ditto.
2259 * rdi-share/devsw.c: Ditto.
2260
2261 * objfiles.h: Change type of obj_private to void pointer.
2262 * pa64solib.c: Update copyright. Don't include "assert.h", use
2263 strcmp instead of STREQ, use LONGEST, do not use PTR
2264 * somsolib.c: Ditto.
2265
2266 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
2267 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
2268 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
2269
2270 2002-06-08 Andrew Cagney <ac131313@redhat.com>
2271
2272 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
2273 (default_get_saved_register): Delete function.
2274 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
2275 generic_unwind_get_saved_register.
2276 * gdbarch.h, gdbarch.c: Re-generate.
2277
2278 2002-06-08 Andrew Cagney <ac131313@redhat.com>
2279
2280 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
2281 generic_func_frame_chain_valid.
2282 * gdbarch.h, gdbarch.c: Re-generate.
2283 * blockframe.c (generic_func_frame_chain_valid): Only check
2284 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
2285 passing FP to PC_IN_CALL_DUMMY.
2286 Fix PR gdb/360.
2287
2288 2002-06-08 Andrew Cagney <ac131313@redhat.com>
2289
2290 * gdbarch.sh (struct gdbarch_data): Add field init_p.
2291 (register_gdbarch_data): Initialize init_p.
2292 (gdbarch_data): Initialize data pointer using the init function.
2293 (init_gdbarch_data): Delete function.
2294 (gdbarch_update_p): Update.
2295 (initialize_non_multiarch): Update.
2296 (struct gdbarch): Add field initialized_p.
2297 * gdbarch.h, gdbarch.c: Re-generate.
2298
2299 2002-06-07 Michal Ludvig <mludvig@suse.cz>
2300
2301 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
2302 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
2303 better do the things actually here.
2304 * x86-64-tdep.c (x86_64_register_name2nr): New.
2305 (x86_64_register_name): Renamed to x86_64_register_nr2name.
2306 (x86_64_gdbarch_init): Respect the above change.
2307 * x86-64-tdep.h (x86_64_register_name2nr)
2308 (x86_64_register_nr2name): Add prototypes.
2309 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
2310
2311 2002-06-06 Michael Snyder <msnyder@redhat.com>
2312
2313 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
2314 Delete extra braces and re-indent.
2315 (d10v_store_return_value): Char return values
2316 must be shifted over by one byte in R0.
2317 (d10v_extract_return_value): Delete extra braces, re-indent.
2318
2319 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
2320
2321 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
2322 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
2323 (d10v_integer_to_address): Rewrite.
2324 (d10v_frame_init_saved_regs): When reading fp and sp registers use
2325 the d10v specific functions which take care of converting to the
2326 correct space.
2327
2328 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
2329
2330 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
2331 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
2332
2333 2002-06-02 Andrew Cagney <ac131313@redhat.com>
2334
2335 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
2336 includes.
2337 * config/tm-linux.h: Ditto.
2338 * config/alpha/tm-alphalinux.h: Ditto.
2339 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
2340 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
2341 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
2342 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
2343 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
2344 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
2345 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
2346 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
2347 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
2348 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
2349 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
2350 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
2351 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
2352 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
2353 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
2354 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
2355 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
2356 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
2357 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
2358 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
2359 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
2360 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
2361 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
2362 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
2363 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
2364 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
2365 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
2366 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
2367 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
2368 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
2369 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
2370 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
2371 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
2372 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
2373 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
2374 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
2375 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
2376
2377 2002-05-04 Aidan Skinner <aidan@velvet.net>
2378
2379 * ada-exp.tab.c: New file
2380 * ada-exp.y: New file
2381 * ada-lang.c: New file
2382 * ada-lang.h: New file
2383 * ada-lex.c: New file
2384 * ada-lex.l: New file
2385 * ada-tasks.c: New file
2386 * ada-typeprint.c: New file
2387 * ada-valprint.c: New file
2388
2389 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
2390
2391 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
2392 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
2393
2394 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
2395
2396 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
2397 insetead of ppc-linux-tdep.o.
2398 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
2399 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
2400
2401 2002-06-02 Andrew Cagney <ac131313@redhat.com>
2402
2403 2002-05-07 Christian Groessler <chris@groessler.org>
2404 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
2405 bit register contents for little endian hosts.
2406
2407 2002-06-01 Andrew Cagney <ac131313@redhat.com>
2408
2409 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
2410 any maintainer.
2411
2412 2002-06-01 Andrew Cagney <ac131313@redhat.com>
2413
2414 * gdbarch.h: Regenerate.
2415
2416 2002-06-01 Andrew Cagney <ac131313@redhat.com>
2417
2418 * MAINTAINERS: Add everyone to write-after-approval list.
2419
2420 2002-06-01 Andrew Cagney <ac131313@redhat.com>
2421
2422 * stack.c (frame_info): Use frame_register_unwind instead of
2423 saved_regs. Mention when the SP is on the stack or in a register.
2424
2425 * frame.h (frame_register_unwind_ftype): Define. Document.
2426 (struct frame_info): Add field register_unwind and
2427 register_unwind_cache.
2428 (frame_register_unwind): Declare.
2429 (generic_unwind_get_saved_register): Declare.
2430
2431 * frame.c (frame_register_unwind): New function.
2432 (generic_unwind_get_saved_register): New function.
2433
2434 * blockframe.c (generic_call_dummy_register_unwind): New function.
2435 (frame_saved_regs_register_unwind): New function.
2436 (set_unwind_by_pc): New function.
2437 (create_new_frame): New function.
2438 (get_prev_frame): New function.
2439
2440 2002-05-30 Andrew Cagney <ac131313@redhat.com>
2441
2442 * a29k-share/: Delete directory.
2443 * remote-vx29k.c: Delete file.
2444
2445 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
2446
2447 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
2448 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
2449
2450 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
2451
2452 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
2453 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
2454 (sparc64nbsd-nat.o)
2455 (sparcnbsd-nat.o)
2456 (sparcnbsd-tdep.o): New dependency lists.
2457 * NEWS: Note new UltraSPARC NetBSD native configuration.
2458 * configure.host (sparc64-*-netbsd*): New host.
2459 * configure.tgt (sparc-*-netbsdelf*)
2460 (sparc-*-netbsd*): Set gdb_target to nbsd.
2461 (sparc64-*-netbsd*): New target.
2462 * sparc64nbsd-nat.c: New file.
2463 * sparcnbsd-nat.c: New file.
2464 * sparcnbsd-tdep.c: New file.
2465 * sparcnbsd-tdep.h: New file.
2466 * config/sparc/nbsd.mt: New file.
2467 * config/sparc/nbsd64.mh: New file.
2468 * config/sparc/nbsd64.mt: New file.
2469 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
2470 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
2471 (HOST_IPC): Remove.
2472 * config/sparc/nbsdaout.mt: Remove.
2473 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
2474 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
2475 (HOST_IPC): Remove.
2476 * config/sparc/nbsdelf.mt: Remove.
2477 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
2478 sparc-nat.c compatiblity defines.
2479 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
2480 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
2481 * config/sparc/tm-nbsd64.h: New file.
2482 * config/sparc/tm-nbsdaout.h: Remove.
2483 * config/sparc/xm-nbsd.h: Remove.
2484
2485 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
2486
2487 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
2488 * sparc-tdep.c: Include osabi.h.
2489 (gdbarch_tdep): Add osabi member.
2490 (_initialize_sparc_tdep): Use gdbarch_register.
2491 (sparc_gdbarch_init): Use generic OS ABI framework.
2492 (sparc_dump_tdep): New function.
2493
2494 2002-05-30 Kevin Buettner <kevinb@redhat.com>
2495
2496 * corefile.c (do_captured_read_memory_integer): Return non-zero
2497 result.
2498 (safe_read_memory_integer): Copy result of memory read when
2499 status is non-zero. Also, add comments.
2500
2501 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
2502
2503 * Makefile.in (ppc_tdep_h): Define.
2504 (ppc-linux-nat.o)
2505 (ppc-linux-tdep.o)
2506 (rs6000-tdep.o): Use $(ppc_tdep_h).
2507 (ppc-sysv-tdep.o)
2508 (ppcnbsd-nat.o)
2509 (ppcnbsd-tdep.o): New dependency lists.
2510 * ppc-tdep.h: Use generic OS ABI framework.
2511 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
2512 (ppc_linux_init_abi): New functions.
2513 (ppc_sysv_abi_broken_use_struct_convention)
2514 (ppc_sysv_abi_use_struct_convention)
2515 (ppc_sysv_abi_push_arguments): Move to...
2516 * ppc-sysv-tdep.c: ...here.
2517 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
2518 * rs6000-tdep.c (process_note_abi_tag_sections)
2519 (get_elfosabi): Remove.
2520 (rs6000_gdbarch_init): Use generic OS ABI framework.
2521 (rs6000_dump_tdep): New function.
2522 (_initialize_rs6000_tdep): Use gdbarch_register.
2523 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
2524 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
2525 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
2526 of ppc-linux-tdep.o.
2527 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
2528 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
2529 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
2530 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
2531 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
2532 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
2533
2534 2002-05-29 Jim Blandy <jimb@redhat.com>
2535
2536 * macroscope.c (default_macro_scope): Put `void' in empty argument
2537 list.
2538
2539 2002-05-29 Andrew Cagney <ac131313@redhat.com>
2540
2541 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
2542 * arch-utils.c: Include "sim-regno.h".
2543 * gdbarch.sh: Don't include "sim-regno.h".
2544 * gdbarch.h, gdbarch.c: Regenerate.
2545 * sim-regno.h (legacy_register_sim_regno): Move declaration from
2546 here.
2547 * arch-utils.h (legacy_register_sim_regno): To here.
2548 * remote-sim.c (legacy_register_sim_regno): Move function from
2549 here.
2550 * arch-utils.c (legacy_register_sim_regno): To here.
2551
2552 2002-05-28 Andrew Cagney <ac131313@redhat.com>
2553
2554 * sim-regno.h: New file.
2555 * Makefile.in (sim_regno_h): Define.
2556 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
2557 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
2558 (legacy_register_sim_regno): New function.
2559 (one2one_register_sim_regno): New function.
2560 (gdbsim_fetch_register): Rewrite.
2561 (gdbsim_store_register): Only store a register when
2562 REGISTER_SIM_REGNO is valid.
2563 * d10v-tdep.c: Include "sim-regno.h".
2564 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
2565 (d10v_ts3_register_sim_regno): Ditto.
2566 * gdbarch.sh: Include "sim-regno.h".
2567 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
2568 * gdbarch.h, gdbarch.c: Regenerate.
2569 * arch-utils.h (default_register_sim_regno): Delete declaration.
2570 * arch-utils.c (default_register_sim_regno): Delete function.
2571
2572 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
2573
2574 * ppcnbsd-nat.c: Rewrite.
2575 * ppcnbsd-tdep.c: New file.
2576 * ppcnbsd-tdep.h: New file.
2577 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
2578 solib.o, and solib-svr4.o.
2579 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
2580 nbsd-tdep.o, and corelow.o.
2581
2582 2002-05-28 Andrew Cagney <ac131313@redhat.com>
2583
2584 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
2585 `tr' and `sed'. Mention that `broken' targets are not expected to
2586 build.
2587
2588 2002-05-27 Michal Ludvig <mludvig@suse.cz>
2589
2590 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
2591 Let PC point right after the prologue before looking up symbols.
2592
2593 2002-05-27 Martin M. Hunt <hunt@redhat.com>
2594
2595 * i386-tdep.c (i386_register_virtual_type): Return
2596 builtin_type_vec128i for SSE registers.
2597
2598 * gdbtypes.h (builtin_type_vec128i): Declare.
2599
2600 * gdbtypes.c (build_builtin_type_vec128i): New function.
2601 (builtin_type_v2_double, builtin_type_v4_int64): New types.
2602 (builtin_type_vec128i): New type for SSE2 128-bit registers.
2603 (build_gdbtypes): Initialize new builtin vector types.
2604 (_initialize_gdbtypes): Register new vector types with gdbarch.
2605
2606 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2607
2608 * MAINTAINERS: ns32k is not longer an obsolete candidate,
2609 since it has been multi-arch'd.
2610 * NEWS: Note that ns32k-*-* is now partial multi-arch.
2611 Move Alpha and VAX multi-arch news entries to same section
2612 as other multi-arch news.
2613
2614 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2615
2616 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
2617 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
2618 static. Rename some register numbers to put them in ns32k-tdep
2619 private namespace.
2620 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
2621 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
2622 functions.
2623 (_initialize_ns32k_tdep): Use gdbarch_register.
2624 * ns32k-tdep.h: New file.
2625 * ns32knbsd-tdep.c: New file.
2626 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
2627 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
2628 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
2629 REGISTER_BYTES, REGISTER_BYTE): Remove.
2630 * config/ns32k/tm-ns32k.h: New file.
2631 * config/ns32k/tm-umax.h: Remove.
2632
2633 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2634
2635 * ns32k-tdep.c (ns32k_saved_pc_after_call,
2636 ns32k_store_struct_return, ns32k_extract_return_value,
2637 ns32k_store_return_value, ns32k_extract_struct_value_address): New
2638 functions.
2639 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
2640 ns32k_saved_pc_after_call.
2641 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
2642 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
2643 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
2644 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
2645 ns32k_extract_struct_value_address.
2646
2647 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2648
2649 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
2650 ns32k_fix_call_dummy): New.
2651 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
2652 ns32k_call_dummy_words.
2653 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
2654 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
2655 CALL_DUMMY_NARGS): Remove.
2656 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
2657
2658 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2659
2660 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
2661 ns32k_frame_saved_pc, ns32k_frame_args_address,
2662 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
2663 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
2664 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
2665 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
2666 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
2667 (BREAKPOINT): Remove..
2668 (FRAME_CHAIN): Define as ns32k_frame_chain.
2669 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
2670 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
2671 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
2672 (FRAME_FIND_SAVED_REGS): Remove.
2673 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
2674 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
2675 (POP_FRAME): Define as ns32k_pop_frame.
2676
2677 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2678
2679 * ns32k-tdep.c (ns32k_register_byte_32082,
2680 ns32k_register_byte_32382, ns32k_register_raw_size,
2681 ns32k_register_virtual_size, ns32k_register_virtual_type): New
2682 functions.
2683 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
2684 ns32k_register_byte_32382.
2685 * config/ns32k/tm-umax.h: Update copyright years.
2686 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
2687 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
2688 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
2689 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
2690 (ns32k_get_enter_addr): Fix prototype.
2691
2692 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
2693
2694 * ns32k-tdep.c: Update copyright years.
2695 (ns32k_register_name_32082): New function.
2696 (ns32k_register_name_32382): Ditto.
2697 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
2698 (REGISTER_NAME): Define as ns32k_register_name_32382.
2699 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
2700 (REGISTER_NAME): Define as ns32k_register_name_32082.
2701
2702 2002-05-24 Jim Blandy <jimb@redhat.com>
2703
2704 * dwarf2read.c (free_line_header): Use xfree, not free.
2705
2706 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
2707
2708 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
2709 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
2710
2711 2002-05-23 Andrew Cagney <ac131313@redhat.com>
2712
2713 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
2714
2715 2002-05-23 Andrew Cagney <ac131313@redhat.com>
2716
2717 From Ross Alexander at NEC Europe:
2718 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
2719
2720 2002-05-23 Michael Snyder <msnyder@redhat.com>
2721
2722 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
2723 for input, rather than parse_and_eval_address.
2724
2725 2002-05-23 Andrew Cagney <ac131313@redhat.com>
2726
2727 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
2728 * Makefile.in (sim_d10v_h): Update definition.
2729
2730 2002-05-24 Andrew Cagney <cagney@redhat.com>
2731
2732 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
2733 change `2002-05-22 Michael Snyder' below.
2734 (d10v_push_arguments): Ditto.
2735 (d10v_extract_return_value): Ditto.
2736
2737 2002-05-23 Jim Blandy <jimb@redhat.com>
2738
2739 * macrotab.c (check_for_redefinition): Don't complain if the new
2740 definition is the same as the previous one. Take more arguments
2741 to allow the comparison.
2742 (macro_define_object, macro_define_function): Pass more arguments
2743 to check_for_redefinition.
2744
2745 2002-05-22 Michael Snyder <msnyder@redhat.com>
2746
2747 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
2748 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
2749 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
2750 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
2751 Don't bail if return_pc is PC_IN_CALL_DUMMY.
2752 Add a temp variable to save a call (and a memory read).
2753 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
2754 if possible (so that PC_IN_CALL_DUMMY will work).
2755
2756 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
2757
2758 * MAINTAINERS: Remove status `OBSOLETE' from v850.
2759
2760 2002-05-22 Michal Ludvig <mludvig@suse.cz>
2761
2762 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
2763 fde->cie_ptr.
2764 (dwarf2_build_frame_info): Corrected handling of eh_frame.
2765 (dwarf2_build_frame_info): Add offset to fde->initial_location
2766 so that frames of shared libraries are mapped correctly.
2767 (execute_stack_op): Change type of 'result' from ULONGEST to
2768 CORE_ADDR.
2769
2770 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
2771
2772 * config/alpha/tm-nbsd.h: Include solib.h.
2773
2774 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
2775
2776 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
2777 assumptions about the host's byte order.
2778
2779 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
2780
2781 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
2782 to dependency list.
2783 * alphanbsd-tdep.c: Include solib-svr4.h.
2784 * shnbsd-tdep.c: Ditto.
2785
2786 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
2787
2788 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
2789 nbsd-tdep.h to dependency list.
2790 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
2791 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
2792 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
2793 nbsdaout.mh and nbsdelf.mh consistently.
2794 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
2795 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
2796 nbsdaout.mt and nbsdelf.mh consistently.
2797 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
2798 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
2799 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2800 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
2801 a.out shared library stuff from here...
2802 * config/nm-nbsdaout.h: ...to here.
2803 * config/tm-nbsd.h: Remove.
2804 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
2805 * config/arm/nbsd.mh: Remove.
2806 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
2807 nbsd-tdep.o.
2808 * config/arm/nbsdaout.mh: New file.
2809 * config/arm/nbsdelf.mh: New file.
2810 * config/arm/nm-nbsdaout.h: New file.
2811 * config/i386/nbsd.mh: Remove.
2812 * config/i386/nbsd.mt: Remove.
2813 * config/i386/nbsdaout.mh: New file.
2814 * config/i386/nbsdaout.mt: New file.
2815 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
2816 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
2817 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
2818 i386_register_u_addr): Remove.
2819 * config/i386/nm-nbsdaout.h: New file.
2820 * config/i386/nm-nbsdelf.h: Remove.
2821 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
2822 (USE_STRUCT_CONVENTION): Remove.
2823 * config/i386/tm-nbsdaout.h: New file.
2824 * config/i386/tm-nbsdelf.h: Remove.
2825 * config/m68k/nbsd.mh: Remove.
2826 * config/m68k/nbsd.mt: Remove.
2827 * config/m68k/nbsdaout.mh: New file.
2828 * config/m68k/nbsdaout.mt: New file.
2829 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
2830 * config/m68k/nm-nbsdaout.h: New file.
2831 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
2832 (IN_SOLIB_CALL_TRAMPOLINE): Define.
2833 * config/ns32k/nbsd.mh: Remove.
2834 * config/ns32k/nbsd.mt: Remove.
2835 * config/ns32k/nbsdaout.mh: New file.
2836 * config/ns32k/nbsdaout.mt: New file.
2837 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
2838 * config/ns32k/nm-nbsdaout.h: New file.
2839 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
2840 (IN_SOLIB_CALL_TRAMPOLINE): Define.
2841 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
2842 (SVR4_SHARED_LIBS): Remove.
2843 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
2844 * config/sparc/nbsd.mh: Remove.
2845 * config/sparc/nbsd.mt: Remove.
2846 * config/sparc/nbsdaout.mh: New file.
2847 * config/sparc/nbsdaout.mt: New file.
2848 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
2849 * config/sparc/nbsdelf.mt: New file.
2850 * config/sparc/nm-nbsdaout.h: New file.
2851 * config/sparc/nm-nbsdelf.h: Remove.
2852 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
2853 * config/sparc/tm-nbsdaout.h: New file.
2854
2855 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
2856
2857 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
2858 mipsnbsd-tdep.c
2859 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
2860
2861 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
2862
2863 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
2864 shnbsd-nat.c.
2865 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
2866
2867 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
2868
2869 * NEWS: Note new MIPS NetBSD native configuration.
2870 * configure.host (mips*-*-netbsd*): New host.
2871 * configure.tgt (mips*-*-netbsd*): New target.
2872 * mipsnbsd-nat.c: New file.
2873 * mipsnbsd-tdep.c: New file.
2874 * mipsnbsd-tdep.h: New file.
2875 * config/mips/nbsd.mh: New file.
2876 * config/mips/nbsd.mt: New file.
2877 * config/mips/nm-nbsd.h: New file.
2878 * config/mips/tm-nbsd.h: New file.
2879
2880 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
2881
2882 * Makefile.in (SFILES): Add osabi.c.
2883 (COMMON_OBS): Add osabi.o.
2884 (osabi.o): New dependency list.
2885 * osabi.c: New file.
2886 * osabi.h: New file.
2887 * doc/gdbint.texinfo: Document new generic OS ABI framework.
2888
2889 * Makefile.in (alpha_tdep_h): Define and use instead of
2890 alpha-tdep.h.
2891 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
2892 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
2893 Remove.
2894 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
2895 * alpha-tdep.h: Include osabi.h.
2896 (alpha_abi): Remove.
2897 (gdbarch_tdep): Use generic OS ABI framework.
2898 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
2899 gdbarch_register_osabi.
2900 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
2901 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
2902 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
2903
2904 * Makefile.in (sh_tdep_h): Add osabi.h.
2905 * sh-tdep.h (sh_osabi): Remove.
2906 (gdbarch_tdep): Use generic OS ABI framework.
2907 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
2908 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
2909 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
2910 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
2911
2912 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
2913 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
2914 gdbarch_register_osabi.
2915 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
2916 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
2917 (get_elfosabi): Rename to...
2918 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
2919 ABI framework support routines.
2920 (arm_gdbarch_init): Use generic OS ABI framework.
2921 (arm_dump_tdep): Likewise.
2922 (_initialize_arm_tdep): Likewise.
2923 * arm-tdep.h: Include osabi.h.
2924 (arm_abi): Remove.
2925 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
2926 osabi member.
2927 (arm_gdbarch_register_os_abi): Remove prototype.
2928 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
2929 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
2930
2931 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
2932 * mips-tdep.c: Include osabi.h.
2933 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
2934 OS ABI framework.
2935
2936 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
2937
2938 * h8300-tdep.c: Fix formatting.
2939
2940 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
2941
2942 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
2943 printing vector registers.
2944
2945 2002-05-19 Andrew Cagney <ac131313@redhat.com>
2946
2947 From Fernando Nasser:
2948 * remote.c (remote_async_open_1): Re-throw the exception when the
2949 connection fails.
2950 (remote_cisco_open): Ditto.
2951 (remote_open_1): Ditto.
2952
2953 2002-05-19 Andrew Cagney <ac131313@redhat.com>
2954
2955 * remote.c (remote_start_remote_dummy): Add uiout parameter.
2956 (remote_start_remote): Add uiout parameter. Pass through to
2957 remote_start_remote_dummy.
2958 (remote_open_1): Use catch_exception instead of catch_errors.
2959 (remote_async_open_1): Ditto.
2960 (remote_cisco_open): Ditto.
2961
2962 2002-05-19 Andrew Cagney <ac131313@redhat.com>
2963
2964 * remote.c (remote_start_remote): Replace PTR with void pointer.
2965 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
2966 static.
2967
2968 2002-05-18 Andrew Cagney <ac131313@redhat.com>
2969
2970 * gdb_indent.sh: Allow the script to be run in the sim directory.
2971
2972 2002-05-18 Mark Kettenis <kettenis@gnu.org>
2973
2974 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
2975 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
2976
2977 * corelow.c (core_open): Only call set_gdbarch_from_file if
2978 exec_bfd is NULL.
2979
2980 2002-05-17 Andrey Volkov <avolkov@transas.com>
2981
2982 * h8300-tdep.c: Add support of EXR register
2983 * config/h8300/tm-h8300.h: Ditto.
2984
2985 2002-05-17 Andrey Volkov <avolkov@transas.com>
2986
2987 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
2988
2989 2002-05-17 Andrey Volkov <avolkov@transas.com>
2990
2991 * h8300-tdep.c: Change literal regnums to REGNO.
2992
2993 2002-05-17 Jim Blandy <jimb@redhat.com>
2994
2995 * NEWS: Note addition of macro support.
2996
2997 Expand preprocessor macros in C expressions.
2998 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
2999 (scan_macro_expansion, scanning_macro_expansion,
3000 finished_macro_expansion): New function declarations.
3001 (expression_macro_lookup_func, expression_macro_lookup_baton): New
3002 variable declarations.
3003 * parser-defs.h (expression_context_pc): New declaration.
3004 * parse.c (expression_context_pc): New variable.
3005 (parse_exp_1): Set expression_context_pc, as well as
3006 expression_context_block.
3007 * c-exp.y (yylex): If we're not already reading the result of a
3008 macro expansion, try to macro-expand the next token. When we're
3009 done scanning a macro expansion, switch back to the mainline text.
3010 Commas and `if's in a macro's expansion don't terminate the input.
3011 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
3012 (macro_original_text, macro_expanded_text,
3013 expression_macro_lookup_func, expression_macro_lookup_baton): New
3014 variables.
3015 (scan_macro_expansion, scanning_macro_expansion,
3016 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
3017 c_preprocess_and_parse): New functions.
3018 (c_language_defn, cplus_language_defn, asm_language_defn): Call
3019 c_preprocess_and_parse, instead of c_parse.
3020 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
3021 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
3022
3023 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
3024
3025 * sh-tdep.c (gdb_print_insn_sh64): Delete.
3026 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
3027 (sh_gdbarch_init): Always use gdb_print_insn_sh.
3028
3029 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
3030
3031 * NEWS: Add section for multi-arched targets. Add v850 to that section.
3032
3033 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
3034
3035 * Makefile.in (sh_tdep_h): Define and use.
3036 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
3037 register enum): Move to...
3038 * * sh-tdep.h: ...here.
3039 * sh-tdep.c: Include sh-tdep.h.
3040 * sh3-rom.c: Likewise.
3041 * shnbsd-tdep.c: Likewise.
3042
3043 2002-05-16 Michael Snyder <msnyder@redhat.com>
3044
3045 * arm-tdep.c: Spelling fix in comment.
3046
3047 2002-05-16 Jim Blandy <jimb@redhat.com>
3048
3049 Add commands for manually expanding macros and showing their
3050 definitions.
3051 * macrocmd.c, macroscope.c, macroscope.h: New files.
3052 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
3053 (macroscope_h): New variable.
3054 (HFILES_NO_SRCDIR): Add macroscope.h.
3055 (COMMON_OBS): Add macrocmd.o, macroscope.o.
3056 (macroscope.o, macrocmd.o): New rules.
3057
3058 Teach the Dwarf 2 reader to read macro information.
3059 * dwarf2read.c: #include "macrotab.h".
3060 (dwarf_macinfo_buffer): New variable.
3061 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
3062 dwarf_macinfo_size.
3063 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
3064 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
3065 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
3066 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
3067 dwarf2_macro_spaces_in_definition): New complaints.
3068 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
3069 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
3070 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
3071 the partial symbol table.
3072 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
3073 from what's recorded in the partial symbol table.
3074 (read_file_scope): If the compilation unit has a
3075 `DW_AT_macro_info' attribute, read its macro information.
3076 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
3077
3078 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
3079
3080 Fix PR gdb/546
3081 * ser-tcp.c: Don't include <netinet/udp.h>.
3082
3083 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
3084
3085 * MAINTAINERS: Update my email address.
3086
3087 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
3088
3089 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
3090 include file of the same name.
3091
3092 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
3093
3094 * configure.tgt: Mark v850 as multi-arched.
3095 * config/v850/tm-v850.h: Remove file.
3096 * config/v850/v850.mt: Eliminate TM_FILE.
3097
3098 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
3099
3100 * v850-tdep.c: Full multi-arch.
3101 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
3102 Define GDB_MULTI_ARCH to 2.
3103
3104 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
3105
3106 * p-exp.y (current_type): New static variable.
3107 Carries the type of the expression at the position that is parsed.
3108 (push_current_type, pop_current_type): Two new functions. Used
3109 to store/restore current_type in expression on specific tokens.
3110 (search_field): New static variable. Set to one after parsing a point
3111 as at that point only a FIELDNAME token should be searched.
3112 (FIELDNAME): New token. After a point only a token belonging to
3113 current_type type definition is allowed.
3114 (all over token rules): reset and change current_type according
3115 to rules.
3116 (exp '[' rule): insert implicit array index field if
3117 exp is a pascal string type.
3118
3119 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
3120
3121 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
3122 frame info. Use frame_info's saved_regs instead of matching member
3123 in extra_frame_info throughout.
3124 (v850_frame_init_saved_regs): New function.
3125 (v850_init_extra_frame_info): Move most functionality into
3126 v850_frame_init_saved_regs().
3127 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
3128 (v850_frame_find_saved_regs): Remove declaration.
3129 (FRAME_FIND_SAVED_REGS): Remove definition.
3130 (v850_frame_init_saved_regs): Add declaration.
3131 (FRAME_INIT_SAVED_REGS): Add definition.
3132
3133 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
3134
3135 * v850-tdep.c: Begin multi-arch'ing v850.
3136 (v850_target_architecture_hook): Remove function.
3137 (v850_gdbarch_init): New function. Add code previously in
3138 v850_target_architecture_hook().
3139 (_initialize_v850_tdep): Don't set target_architecture_hook.
3140 Call register_gdbarch_init() instead.
3141
3142 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
3143
3144 * gdbtypes.h (struct cplus_struct_type): Remove args field.
3145 * hpread.c (hpread_read_struct_type): Remove assignments to args.
3146 (fixup_class_method_type): Likewise.
3147
3148 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
3149
3150 From Martin Pool <mbp@samba.org>:
3151 * gdbserver/server.c (gdbserver_usage): New function.
3152 (main): Call it.
3153
3154 2002-05-15 Jim Blandy <jimb@redhat.com>
3155
3156 Add macro structures to GDB's symbol tables. Nobody puts anything
3157 in them yet.
3158 * symtab.h (struct symtab): New member: `macro_table'.
3159 * buildsym.h (pending_macros): New global variable.
3160 * buildsym.c: #include "macrotab.h".
3161 (buildsym_init): Initialize `pending_macros'.
3162 (end_symtab): If we found macro information while reading a CU's
3163 debugging info, do build a symtab structure for it. Make the
3164 symtab point to the macro information, and clear the
3165 `pending_macros' pointer which held it while we were reading the
3166 debug info.
3167 (really_free_pendings): Free any pending macro table.
3168 * objfiles.h (struct objfile): New member: `macro_cache'.
3169 * objfiles.c (allocate_objfile): Set allocate and free functions
3170 for the macro cache's objstack.
3171 (free_objfile): Empty the macro cache's obstack.
3172 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
3173 set new allocate and free functions for it.
3174 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
3175 free functions for the macro cache's objstack. (Why is this
3176 function building its own objfile?)
3177 * symmisc.c (print_objfile_statistics): Print statistics on the
3178 macro bcache.
3179 * Makefile.in: Note that buildsym.o depends on macrotab.h.
3180
3181 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
3182
3183 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
3184 (REGISTER_U_ADDR): Delete definition.
3185 (arm_register_u_addr): Delete declaration.
3186
3187 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
3188
3189 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
3190 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
3191
3192 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
3193
3194 * gdbserver/mem-break.c (reinsert_breakpoint_by_bp): Correct typo
3195 stop_at -> stop_pc.
3196
3197 2002-05-14 Andrew Cagney <ac131313@redhat.com>
3198
3199 * regcache.c (register_valid): Revise comments refering to "Not
3200 available" and "unavailable".
3201 * frame.c (frame_register_read): Ditto.
3202 * findvar.c (value_of_register): Ditto.
3203
3204 2002-05-15 Andrew Cagney <cagney@redhat.com>
3205
3206 * Makefile.in (remote_sim_h): Replace remote-sim_h.
3207 (remote-sim.o): Update dependencies.
3208 (d10v-tdep.o): Specify dependencies.
3209 (sim_d10v_h): Define.
3210
3211 2002-05-14 Jim Blandy <jimb@redhat.com>
3212
3213 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
3214 * macrotab.c (macro_lookup_inclusion, find_definition,
3215 new_macro_table): Same.
3216
3217 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
3218 not `! strcmp ()'. This is a dubious improvement.
3219 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
3220
3221 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
3222 although it's not necessary, to avoid a warning.
3223
3224 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
3225
3226 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
3227 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
3228 TYPE_INSTANCE_FLAGS.
3229 (struct main_type): New.
3230 (struct type): Move most members to struct main_type. Change
3231 cv_type and as_type to new type_chain member. Add instance_flags.
3232 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
3233 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
3234 (finish_cv_type): Remove prototype.
3235 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
3236 Set TYPE_CHAIN.
3237 (alloc_type_instance): New function.
3238 (smash_type): New function.
3239 (make_pointer_type, make_reference_type, make_function_type)
3240 (smash_to_member_type, smash_to_method_type): Call smash_type.
3241 (make_qualified_type): New function.
3242 (make_type_with_address_space): Call make_qualified_type.
3243 (make_cv_type): Likewise.
3244 (finish_cv_type): Remove unnecessary function.
3245 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
3246 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
3247 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
3248 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
3249 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
3250 * hpread.c (hpread_read_struct_type): Likewise.
3251 * stabsread.c (read_struct_type): Likewise.
3252
3253 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
3254
3255 * configure.tgt: Add a catch all sh* target, for cases like
3256 sh[2,3,4]-elf and sh-hms.
3257
3258 2002-05-14 Keith Seitz <keiths@redhat.com>
3259
3260 * event-loop.c (create_file_handler): Don't do anything but
3261 update data when we are given a fd which we are already
3262 monitoring.
3263
3264 2002-05-14 Michal Ludvig <mludvig@suse.cz>
3265
3266 * dwarf2cfi.c (context_cpy): Copy registers correctly.
3267 (update_context): Use __func__ in warnings.
3268
3269 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
3270
3271 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
3272 and tcp_close to net_open and net_close.
3273 (net_open): Accept "udp:" and "tcp:" specifications. Connect
3274 using UDP if requested. Don't try to disable Nagle on UDP
3275 sockets.
3276 * remote.c (remote_serial_open): New function. Warn about UDP.
3277 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
3278
3279 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
3280
3281 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
3282
3283 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
3284
3285 * configure.tgt: Remove sh-hms target.
3286 * MAINTAINERS: Don't list sh-hms as a separate target.
3287
3288 2002-05-13 Jim Blandy <jimb@redhat.com>
3289
3290 Add first preprocessor macro-expansion files.
3291 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
3292 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
3293 (splay_tree_h, macroexp_h, macrotab_h): New variable.
3294 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
3295 (COMMON_OBS): Add macrotab.o, macroexp.o.
3296 (macroexp.o, macrotab.o): New rules.
3297
3298 2002-05-13 Andrew Cagney <ac131313@redhat.com>
3299
3300 * config/m88k/tm-m88k.h: Update copyright.
3301 (m88k_target_write_pc): Declare
3302 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
3303 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
3304 (SHIFT_INST_REGS): Update definition.
3305 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
3306 using old definition of TARGET_WRITE_PC.
3307 * regcache.c (generic_target_write_pc): Delete code handling
3308 NNPC_REGNUM.
3309 * gdbarch.sh (NNPC_REGNUM): Delete.
3310 * gdbarch.h, gdbarch.c: Regenerate.
3311
3312 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
3313
3314 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
3315 builtin reg number.
3316
3317 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
3318
3319 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
3320 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
3321 (gen_address_of, gen_struct_ref, gen_repeat): Use type
3322 access macros.
3323 * c-typeprint.c (cp_type_print_method_args): Likewise.
3324 (c_type_print_args): Likewise.
3325 * d10v-tdep.c (d10v_push_arguments): Likewise.
3326 (d10v_extract_return_value): Likewise.
3327 * expprint.c (print_subexp): Likewise.
3328 * gdbtypes.c (lookup_primitive_typename): Likewise.
3329 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
3330 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
3331 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
3332 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
3333 (TYPE_VECTOR): Likewise.
3334 * hpread.c (hpread_read_struct_type)
3335 (fix_static_member_physnames, fixup_class_method_type)
3336 (hpread_type_lookup): Likewise.
3337 * mdebugread.c (parse_symbol, parse_type): Likewise.
3338 * p-lang.c (is_pascal_string_type): Likewise.
3339 * valops.c (hand_function_call): Likewise.
3340 * x86-64-tdep.c (classify_argument): Likewise.
3341
3342 * hpread.c (hpread_read_function_type)
3343 (hpread_read_doc_function_type): Call replace_type.
3344 * dstread.c (create_new_type): Delete.
3345 (decode_dst_structure, process_dst_function): Call alloc_type.
3346 Use type access macros.
3347
3348 2002-05-12 Mark Kettenis <kettenis@gnu.org>
3349
3350 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
3351 the're not supported by the current architecture.
3352 (i387_fill_fxsave): Likewise.
3353
3354 2002-05-12 Fred Fish <fnf@redhat.com>
3355
3356 * symfile.c (default_symfile_offsets): Arrange for uninitialized
3357 sect_index_xxx members to index the first slot in section_offsets
3358 if all of the section_offsets are zero.
3359
3360 2002-05-12 Mark Kettenis <kettenis@gnu.org>
3361
3362 * configure.tgt (sparc-*openbsd): Remove entry accidentially
3363 checked in with last change.
3364
3365 2002-05-12 Mark Kettenis <kettenis@gnu.org>
3366
3367 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
3368 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
3369 config.sub.
3370
3371 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
3372
3373 * Makefile.in: Update dependencies.
3374
3375 2002-05-11 Andrew Cagney <ac131313@redhat.com>
3376
3377 * language.c (local_hex_string_custom): Simplify. Do not depend
3378 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
3379
3380 * memattr.c (mem_info_command): Replace calls to
3381 longest_local_hex_string and longest_local_hex_string_custom.
3382 * buildsym.c (make_blockvector): Ditto.
3383 * solib.c (info_sharedlibrary_command): Ditto.
3384 * tracepoint.c (tracepoints_info): Ditto.
3385 * symtab.c (print_msymbol_info): Ditto.
3386
3387 * language.c (local_hex_string): Delete.
3388 (local_hex_string_custom): Delete.
3389 (longest_local_hex_string): Rename to local_hex_string.
3390 (longest_local_hex_string_custom): Rename to
3391 local_hex_string_custom.
3392 * language.h (local_hex_string): Change parameter type to LONGEST.
3393 (local_hex_string_custom): Ditto.
3394 (longest_local_hex_string): Delete declaration.
3395 (longest_local_hex_string_custom): Ditto.
3396
3397 * solib.c: Update copyright.
3398 * memattr.c: Update copyright.
3399
3400 2002-05-11 Andrew Cagney <ac131313@redhat.com>
3401
3402 * arch-utils.h (legacy_register_to_value): Declare.
3403 (legacy_value_to_register): Declare.
3404 (legacy_convert_register_p): Declare.
3405 * arch-utils.c (legacy_register_to_value): New function.
3406 (legacy_value_to_register): New function.
3407 (legacy_convert_register_p): New function.
3408
3409 * gdbarch.sh (REGISTER_TO_VALUE): Define.
3410 (VALUE_TO_REGISTER): Define.
3411 (CONVERT_REGISTER_P): Define.
3412 * gdbarch.h, gdbarch.c: Regenerate.
3413
3414 * valops.c (value_assign): Use CONVERT_REGISTER_P and
3415 VALUE_TO_REGISTER.
3416 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
3417 CONVERT_REGISTER_P.
3418
3419 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
3420 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3421
3422 * Makefile.in: Update dependencies for valops.c.
3423 * valops.c: Include "gdb_assert.h".
3424 (typecmp): Skip THIS parameter to methods.
3425 (find_method_list): Remove static_memfuncp argument,
3426 update callers. Check for stub methods.
3427 (find_value_oload_method_list): Don't set *static_memfuncp.
3428 (find_overload_match): Don't check for stub methods. Assert
3429 that methods are not stubbed. Handle static methods.
3430 (value_find_oload_method_list): Remove static_memfuncp argument.
3431 * gdbtypes.c (check_stub_method): Do not add THIS pointer
3432 to the argument list for static stub methods.
3433 * value.h (value_find_oload_method_list): Update prototype.
3434
3435 2002-05-11 Andrew Cagney <ac131313@redhat.com>
3436
3437 * arch-utils.h (generic_register_size): Declare.
3438 (generic_register_raw_size, generic_register_virtual_size): Delete
3439 declarations.
3440 * arch-utils.c (generic_register_raw_size): Delete.
3441 (generic_register_size): New function.
3442 (generic_register_virtual_size): Delete.
3443
3444 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
3445 default generic_register_size.
3446 * gdbarch.h, gdbarch.c: Re-generate.
3447
3448 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
3449 register_virtual_size.
3450 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
3451 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
3452
3453 2002-05-11 Andrew Cagney <ac131313@redhat.com>
3454
3455 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
3456 * gdbarch.h, gdbarch.c: Regenerate.
3457 * gnu-v3-abi.c: Update copyright.
3458 (vtable_address_point_offset): Update.
3459 (gnuv3_rtti_type): Update.
3460 (gnuv3_baseclass_offset): Update.
3461 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
3462 (init_fetch_link_map_offsets): Update.
3463 * remote.c (get_remote_state): Update.
3464
3465 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
3466
3467 * TODO: Remove value_headof/value_from_vtable_info comment.
3468 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
3469 * values.c (value_headof, value_from_vtable_info): Delete.
3470 * value.h (value_from_vtable_info): Delete prototype.
3471
3472 2002-05-11 Andrew Cagney <ac131313@redhat.com>
3473
3474 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
3475 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
3476 $(gdb_regex_h).
3477 (gdb_assert_h): Define.
3478 (gdb_wait_h): Define.
3479 (gdb_regex_h): Define.
3480
3481 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
3482
3483 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
3484 * linespec.c (find_methods): Handle GCC 3.x template constructors.
3485
3486 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3487
3488 * nbsd-tdep.c: Fix comment.
3489
3490 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3491
3492 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
3493 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
3494 (nbsd-tdep.o): New dependency list.
3495 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
3496 nbsd-tdep.h.
3497 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
3498 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
3499 * nbsd-tdep.c: New file.
3500 * nbsd-tdep.h: New file.
3501 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
3502 nbsd-tdep.h.
3503 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
3504 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
3505 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
3506 * config/sh/nbsd.mt (TDEPFILES): Ditto.
3507
3508 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3509
3510 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
3511 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
3512 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
3513 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
3514 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
3515 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
3516
3517 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3518
3519 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
3520 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3521 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
3522 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
3523 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
3524 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
3525 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
3526
3527 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3528
3529 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
3530 fetch_elfcore_registers to...
3531 * i386nbsd-tdep.c: ...here.
3532 (i386nbsd_use_struct_convention): Rename to...
3533 (i386nbsd_aout_use_struct_convention): ...this.
3534 (i386nbsd_supply_reg): New function.
3535 (i386nbsd_fill_reg): New function.
3536 (fetch_core_registers): Use i386nbsd_supply_reg.
3537 (fetch_elfcore_registers): Likewise.
3538 (_initialize_i386nbsd_tdep): New function.
3539 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
3540 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3541 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
3542 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
3543 (i386nbsd_aout_use_struct_convention): ...this.
3544
3545 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3546
3547 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
3548 (store_inferior_registers): Use shnbsd_fill_reg.
3549 * shnbsd-tdep.c (sh_nbsd_supply_registers,
3550 sh_nbsd_supply_register): Collapse into...
3551 (shnbsd_supply_reg): ...this.
3552 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
3553 (shnbsd_fill_reg): ...this.
3554 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
3555 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
3556 (fetch_core_registers): Use shnbsd_supply_reg.
3557 (fetch_elfcore_registers): Use shnbsd_supply_reg.
3558 (sh_nbsd_core_fns): Rename to...
3559 (shnbsd_core_fns): ...this.
3560 (sh_nbsd_elfcore_fns): Rename to...
3561 (shnbsd_elfcore_fns): ...this.
3562 (sh_nbsd_init_abi): Rename to...
3563 (shnbsd_init_abi): ...this.
3564 (_initialize_sh_nbsd_tdep): Rename to...
3565 (_initialize_shnbsd_tdep): ...this.
3566 * shnbsd-tdep.h (sh_nbsd_supply_registers,
3567 sh_nbsd_supply_register, sh_nbsd_fill_registers,
3568 sh_nbsd_fill_register): Remove prototypes.
3569 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
3570
3571 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3572
3573 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
3574 (i387-nat.o): Delete dependency list.
3575 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
3576 (x86-64-linux-nat.o): Likewise.
3577 * i387-nat.c: Delete file, moving contents to...
3578 * i387-tdep.c: ...here.
3579 * i387-nat.h: Rename...
3580 * i387-tdep.h: ...to this.
3581 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
3582 * i386-linux-nat.c: Likewise.
3583 * i386bsd-nat.c: Likewise.
3584 * i386gnu-nat.c: Likewise.
3585 * i386nbsd-nat.c: Likewise.
3586 * i386v4-nat.c: Likewise.
3587 * x86-64-linux-nat.c: Likewise.
3588 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
3589 * config/i386/go32.mh (NATDEPFILES): Likewise.
3590 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
3591 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
3592 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
3593 * config/i386/linux.mh (NATDEPFILES): Likewise.
3594 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
3595 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3596 * config/i386/obsd.mh (NATDEPFILES): Likewise.
3597 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
3598
3599 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3600
3601 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
3602 (alphanbsd-nat.o): Remove dependency list.
3603 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
3604 * alphanbsd-nat.c: Delete. Contents moved to...
3605 * alphanbsd-tdep.c: ...here.
3606 (_initialize_alphanbsd_tdep): Register core functions.
3607 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
3608
3609 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
3610
3611 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
3612 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
3613 (alphanbsd-nat.o): Likewise.
3614 (alphabsd-tdep.o): New dependency list.
3615 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
3616 (fill_gregset): Use alphabsd_fill_reg.
3617 (supply_fpregset): Use alphabsd_supply_fpreg.
3618 (fill_fpregset): Use alphabsd_fill_fpreg.
3619 (fetch_inferior_registers): Use struct reg and struct fpreg
3620 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
3621 and alphabsd_supply_fpreg.
3622 (store_inferior_registers): Use struct reg and struct fpreg
3623 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
3624 and alphabsd_fill_fpreg.
3625 * alphabsd-tdep.c: New file.
3626 * alphabsd-tdep.h: New file.
3627 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
3628 (fetch_elfcore_registers): Use alphabsd_supply_reg and
3629 alphabsd_supply_fpreg.
3630 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
3631 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
3632
3633 2002-05-11 Eric Christopher <echristo@redhat.com>
3634
3635 * mips-tdep.c (mips_double_register_type): Fix thinko.
3636 (mips_single_register_type): Ditto.
3637 * MAINTAINERS: Add self.
3638
3639 2002-05-11 Mark Kettenis <kettenis@gnu.org>
3640
3641 * i387-nat.c (i387_supply_register, i387_fill_fsave,
3642 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
3643 right thing on architectures with different endianness and/or
3644 integer sizes.
3645
3646 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
3647
3648 From Christian Limpach <chris@Pin.LU>
3649 * configure.in: Change sed expression which comments out
3650 NATDEPFILES to also comment out continuation lines.
3651 * configure: Regenerate.
3652
3653 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
3654
3655 * sh-tdep.c: Clean up code erroneously reintroduced by previous
3656 big patch.
3657
3658 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
3659
3660 * sh-tdep.c: Include correct file.
3661
3662 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
3663
3664 New support for sh64-elf (sh5) target.
3665
3666 * configure.tgt: For sh64-elf target, default to sh-elf.
3667
3668 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
3669 (struct gdbarch_tdep): Add new fields for new registers and ABI
3670 info.
3671
3672 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
3673 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
3674 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
3675 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
3676 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
3677 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
3678 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
3679 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
3680 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
3681 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
3682 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
3683 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
3684 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
3685 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
3686 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
3687 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
3688 sh64_get_gdb_regnum, sh64_media_reg_base_num,
3689 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
3690 sign_extend, sh64_nofp_frame_init_saved_regs,
3691 sh64_init_extra_frame_info, sh64_get_saved_register,
3692 sh64_extract_struct_value_address, sh64_pop_frame,
3693 sh64_push_arguments, sh64_extract_return_value,
3694 sh64_store_return_value, sh64_show_media_regs,
3695 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
3696 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
3697 sh_sh64_register_virtual_type,
3698 sh_sh64_register_convert_to_virtual,
3699 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
3700 sh64_register_read, sh64_pseudo_register_write,
3701 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
3702 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
3703 sh64_do_pseudo_register, sh_compact_do_registers_info,
3704 sh64_do_registers_info, sh_gdbarch_init): New functions.
3705
3706 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
3707
3708 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
3709
3710 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
3711
3712 * linespec.c (decode_line_1): Check for a double quote after
3713 a filename correctly.
3714
3715 2002-05-10 Jim Blandy <jimb@redhat.com>
3716
3717 Properly track the size of the current objfile's .debug_line section.
3718 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
3719 (DWARF_LINE_SIZE): New macro.
3720 (dwarf2_build_psymtabs_hard): Record the line section's size in
3721 the partial symbol table.
3722 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
3723 symbol table.
3724
3725 2002-05-10 Petr Sorfa <petrs@caldera.com>
3726
3727 * ia64-tdep.c: Handle breakpoints on L instruction type
3728 in MLX instruction bundle by moving the breakpoint to
3729 the third slot (X instruction type) as L holds only data.
3730
3731 2002-05-10 Kevin Buettner <kevinb@redhat.com>
3732
3733 * dbxread.c (discarding_local_symbols_complaint): New complaint.
3734 (process_one_symbol): Complain about discarding local symbols
3735 due to a misplaced N_LBRAC entry.
3736
3737 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
3738
3739 From Daniel Berlin <dan@cgsoftware.com>
3740 * linespec.c (find_toplevel_char): '<' and '>' also increase and
3741 decrease the depth we are at, in the case of templates.
3742
3743 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
3744
3745 * mips-tdep.c (mips_float_register_type): New function.
3746 (mips_double_register_type): New function.
3747 (mips_print_register): Use them.
3748 (do_fp_register_row): Likewise.
3749
3750 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
3751
3752 * signals/signals.c (signals): Remove conditional compilation around
3753 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
3754 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
3755
3756 2002-05-09 Michael Snyder <msnyder@redhat.com>
3757
3758 * remote-rdp.c (remote_rdp_can_run): Remove.
3759
3760 2002-05-09 Tom Tromey <tromey@redhat.com>
3761
3762 * jv-valprint.c (java_val_print): Handle `char' as a special case
3763 of TYPE_CODE_INT.
3764
3765 2002-05-09 Michael Snyder <msnyder@redhat.com>
3766
3767 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
3768 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
3769 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
3770 str r(0123),[sp,#nn].
3771 (arm_skip_prologue): Ditto. Also make disassembly
3772 order-independent by placing it in a loop.
3773
3774 2002-05-06 Michael Snyder <msnyder@redhat.com>
3775
3776 * stabsread.c (read_type): Add recognition for new attribute:
3777 "@V;" means that an array type is actually a vector.
3778 This is analogous to the vector flag that's been added to dwarf2.
3779
3780 2002-05-09 Mark Kettenis <kettenis@gnu.org>
3781
3782 * i386-tdep.h (i386_abi): New enum.
3783 (struct gdbarch_tdep): Replace os_ident member with abi.
3784 (i386_gdbarch_register_os_abi): New prototype.
3785 * i386-tdep.c (i386_abi_names): New array.
3786 (process_note_abi_tag_sections): Removed.
3787 (process_note_sections): New function.
3788 (i386_elf_abi_from_note, i386_elf_abi): New functions.
3789 (struct i386_abi_handler): New struct.
3790 (i386_abi_handler_list): New variable.
3791 (i386_gdbarch_register_os_abi): New function.
3792 (i386_gdbarch_init): Adapt for the changes given above.
3793
3794 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
3795
3796 * gregset.h: Say "GNU/Linux".
3797
3798 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
3799
3800 * gdbtypes.c : Add new builtin type for 64 bit vectors.
3801 (build_gdbtypes): Build builtin_type_v2_float.
3802 (_initialize_gdbtypes): Register new builtin type.
3803
3804 2002-05-08 Andrew Cagney <ac131313@redhat.com>
3805
3806 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
3807 (clear_gdbarch_swap): New function.
3808 (initialize_non_multiarch): Call.
3809 (gdbarch_update_p): Before calling init(), swap out and clear the
3810 existing architecture.
3811 * gdbarch.c: Regenerate.
3812
3813 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
3814
3815 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
3816 alphanbsd-tdep.c.
3817
3818 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
3819
3820 * sh-nbsd-nat.c: Rename to...
3821 * shnbsd-nat.c: ...this.
3822 * sh-nbsd-tdep.c: Rename to...
3823 * shnbsd-tdep.c: ...this.
3824 * sh-nbsd-tdep.h: Rename to...
3825 * shnbsd-tdep.h: ...this.
3826 * config/sh/nbsd.mh: Use shnbsd-nat.o.
3827 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
3828
3829 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
3830
3831 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
3832 concatenation for command help messages.
3833
3834 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
3835
3836 * NEWS: Note new sh*-*-netbsdelf* configuration.
3837 * configure.host: Set gdb_host_cpu to sh for all sh*.
3838 (sh*-*-netbsdelf*): New host.
3839 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
3840 (sh*-*-netbsdelf*): New target.
3841 * sh-nbsd-nat.c: New file.
3842 * sh-nbsd-tdep.c: New file.
3843 * sh-nbsd-tdep.h: New file.
3844 * config/sh/nbsd.mh: New file.
3845 * config/sh/nbsd.mt: New file.
3846 * config/sh/nm-nbsd.h: New file.
3847 * config/sh/tm-nbsd.h: New file.
3848
3849 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
3850
3851 * sh-tdep.c (sh_osabi_names): Declare.
3852 (process_note_abi_tag_sections): New function.
3853 (get_elfosabi): Ditto.
3854 (sh_gdbarch_register_os_abi): Ditto.
3855 (sh_dump_tdep): Ditto.
3856 _initialize_sh_tdep): Use gdbarch_register to register
3857 sh_gdbarch_init and sh_dump_tdep.
3858 * config/sh/tm-sh.h (sh_osabi): Declare.
3859 (gdbarch_tdep): Add sh_osabi and osabi_name members.
3860
3861 2002-05-07 Andrew Cagney <ac131313@redhat.com>
3862
3863 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
3864 (thumb_scan_prologue): Ditto.
3865 (arm_find_callers_reg): Ditto.
3866 (arm_frame_chain): Ditto.
3867 (arm_init_extra_frame_info): Ditto.
3868 (arm_frame_saved_pc): Ditto.
3869 (arm_pop_frame): Ditto.
3870 (arm_push_return_address): New function.
3871 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
3872 call_dummy_location, call_dummy_breakpoint_offset_p,
3873 call_dummy_breakpoint_offset, call_dummy_p,
3874 call_dummy_stack_adjust_p, call_dummy_words,
3875 sizeof_call_dummy_words, call_dummy_start_offset,
3876 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
3877 call_dummy_address, push_return_address and push_dummy_frame for
3878 generic dummy frames.
3879
3880 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
3881
3882 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
3883 size computation for alloca.
3884 (sh_fp_frame_init_saved_regs): Likewise.
3885
3886 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
3887
3888 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
3889 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
3890 * arm-tdep.c (arm_store_return_value): Use them.
3891 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
3892 * remote-rdp.c (remote_rdp_fetch_register): Use
3893 ARM_MAX_REGISTER_RAW_SIZE.
3894 (remote_rdp_store_register): Likewise.
3895
3896 2002-05-07 Michal Ludvig <mludvig@suse.cz>
3897
3898 * dwarf2cfi.c: Code cleanup, removed unused variables,
3899 added default labels to switch {} statements.
3900 * x86-64-tdep.c: Ditto.
3901 * x86-64-linux-nat.c: Ditto.
3902
3903 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
3904
3905 * solib.h: Protect against multiple inclusion.
3906
3907 2002-05-06 Jim Blandy <jimb@redhat.com>
3908
3909 Add first preprocessor macro-expansion files.
3910 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
3911 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
3912 (splay_tree_h, macroexp_h, macrotab_h): New variable.
3913 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
3914 (COMMON_OBS): Add macrotab.o, macroexp.o.
3915 (macroexp.o, macrotab.o): New rules.
3916
3917 Separate the job of reading the line number info statement program
3918 header (...expialidocious) out into its own function.
3919 * dwarf2read.c (struct line_head, struct filenames, struct
3920 directories): Replace with...
3921 (struct line_header): New structure, containing the full
3922 contents of the statement program header, including the
3923 include directory and file name tables.
3924 (read_file_scope): If we have line number info, instead of just
3925 calling dwarf_decode_lines to do all the work, call
3926 dwarf_decode_line_header first to get a `struct line_header'
3927 containing the data in the statement program header, and then
3928 pass that to dwarf_decode_lines, which will pick up where that
3929 left off. Be sure to clean up the `struct line_header' object.
3930 (dwarf_decode_line_header, free_line_header, add_include_dir,
3931 add_file_name): New functions.
3932 (dwarf_decode_lines): Move all the code to read the statement
3933 program header into dwarf_decode_line_header. Take the line
3934 header it built as the first argument, instead of the offset to
3935 the compilation unit's line number info. Use the new `struct
3936 line_header' type instead of the old structures. No need to do
3937 cleanups here now, since we don't allocate anything.
3938 (dwarf2_statement_list_fits_in_line_number_section,
3939 dwarf2_line_header_too_long): New complaints.
3940
3941 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
3942
3943 * gdbtypes.c (init_vector_type): New function.
3944 (build_builtin_type_vec128): Simplify the representation of SIMD
3945 registers.
3946 (build_gdbtypes): Initialize new builtin vector types.
3947 (_initialize_gdbtypes): Register new vector types with gdbarch.
3948 (builtin_type_v4_float, builtin_type_v4_int32,
3949 builtin_type_v8_int16, builtin_type_v16_int8,
3950 builtin_type_v2_int32, builtin_type_v4_int16,
3951 builtin_type_v8_int8): New (renamed) SIMD types.
3952
3953 2002-05-06 Mark Kettenis <kettenis@gnu.org>
3954
3955 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
3956 (i387_fill_fxsave): Likewise.
3957
3958 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
3959
3960 * alpha-tdep.c (alpha_extract_return_value): Don't use
3961 non-constant array size in prototype.
3962
3963 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3964
3965 From Brian Taylor <briant at model dot com>:
3966 * ui-out.c (ui_out_field_core_addr): Use the function
3967 longest_local_hex_string_custom'to format addresses > 32 bits
3968 wide.
3969
3970 * ui-out.c (ui_out_field_core_addr): Update comment.
3971
3972 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3973
3974 * stack.c (select_and_print_frame): Make static. Delete the
3975 parameter `level'.
3976 (func_command): Update call.
3977 (select_frame_command): Delete code computing the frame level.
3978 * frame.h (select_and_print_frame): Delete declaration.
3979
3980 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3981
3982 * sparc-tdep.c (sparc_get_saved_register): Comment why
3983 get_prev_frame call is safe.
3984
3985 2002-05-04 Andrew Cagney <ac131313@redhat.com>
3986
3987 * frame.h (select_frame): Delete level parameter.
3988 * stack.c (select_frame): Update. Use frame_relative_level to
3989 obtain the frame's level.
3990 (select_and_print_frame): Update call.
3991 (select_frame_command): Ditto.
3992 (up_silently_base): Ditto.
3993 (down_silently_base): Ditto.
3994 * ocd.c (ocd_start_remote): Ditto.
3995 * remote-rdp.c (remote_rdp_open): Ditto.
3996 * remote-mips.c (mips_initialize): Ditto.
3997 (common_open): Ditto.
3998 * remote-e7000.c (e7000_start_remote): Ditto.
3999 * m3-nat.c (select_thread): Ditto.
4000 * hppa-tdep.c (child_get_current_exception_event): Ditto.
4001 (child_get_current_exception_event): Ditto.
4002 * varobj.c (varobj_create): Ditto.
4003 (varobj_update): Ditto.
4004 (c_value_of_root): Ditto.
4005 * tracepoint.c (finish_tfind_command): Ditto.
4006 * corelow.c (core_open): Ditto.
4007 * arch-utils.c (generic_prepare_to_proceed): Ditto.
4008 * thread.c (info_threads_command): Ditto.
4009 (switch_to_thread): Ditto.
4010 * infrun.c (normal_stop): Ditto.
4011 (restore_selected_frame): Ditto.
4012 (restore_inferior_status): Ditto.
4013 * breakpoint.c (insert_breakpoints): Ditto.
4014 (watchpoint_check): Ditto.
4015 (bpstat_stop_status): Ditto.
4016 (do_enable_breakpoint): Ditto.
4017 * blockframe.c (flush_cached_frames): Ditto.
4018 (reinit_frame_cache): Ditto.
4019
4020 2002-05-04 Andrew Cagney <ac131313@redhat.com>
4021
4022 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
4023 maintainer.
4024
4025 2002-05-04 Jim Blandy <jimb@redhat.com>
4026
4027 * gdbtypes.c (replace_type): Doc fix.
4028
4029 2002-05-04 Andrew Cagney <ac131313@redhat.com>
4030
4031 * valprint.c (strcat_longest): Delete commented out function.
4032 Update copyright.
4033
4034 2002-05-04 Andrew Cagney <ac131313@redhat.com>
4035
4036 * MAINTAINERS: Mark a29k as deleted.
4037 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
4038 Move new configurations to the top.
4039 * configure.tgt: Remove a29k.
4040 * config/a29k/tm-vx29k.h: Delete.
4041 * config/a29k/vx29k.mt: Delete.
4042 * config/a29k/tm-a29k.h: Delete.
4043 * config/a29k/a29k-udi.mt: Delete.
4044 * config/a29k/a29k.mt: Delete.
4045 * a29k-tdep.c: Delete.
4046 * remote-udi.c: Delete.
4047 * remote-mm.c: Delete.
4048 * remote-eb.c: Delete.
4049 * remote-adapt.c: Delete.
4050 * Makefile.in: Remove obsolete code.
4051 * gdbserver/Makefile.in: Ditto.
4052 * config/s390/s390x.mt: Ditto.
4053 * config/s390/s390.mt: Ditto.
4054 * config/sparc/sparclynx.mh: Ditto.
4055 * config/sparc/linux.mh: Ditto.
4056 * config/pa/hppaosf.mh: Ditto.
4057 * config/pa/hppabsd.mh: Ditto.
4058 * config/ns32k/nbsd.mt: Ditto.
4059 * config/mips/vr5000.mt: Ditto.
4060 * config/m68k/sun3os4.mh: Ditto.
4061 * config/m68k/nbsd.mt: Ditto.
4062 * config/m68k/m68klynx.mh: Ditto.
4063 * config/m32r/m32r.mt: Ditto.
4064 * config/i386/x86-64linux.mt: Ditto.
4065 * config/i386/nbsdelf.mt: Ditto.
4066 * config/i386/nbsd.mt: Ditto.
4067 * config/i386/i386lynx.mh: Ditto.
4068
4069 2002-05-04 Andrew Cagney <ac131313@redhat.com>
4070
4071 * target.c (debug_print_register): New function. Handle oversize
4072 registers.
4073 (debug_to_fetch_registers): Call.
4074 (debug_to_store_registers): Call.
4075
4076 2002-05-03 Jim Blandy <jimb@redhat.com>
4077
4078 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
4079 (read_type): Doc fix.
4080 * gdbtypes.c (replace_type): Doc fix.
4081
4082 * stabsread.c (multiply_defined_struct): New complaint.
4083 (read_struct_type): If the type we were passed isn't empty, or
4084 incomplete, don't read the new struct type into it; complain,
4085 and return the original type unchanged. Take a new `type_code'
4086 argument, which is the type code for the new type.
4087 (read_type): Rather than storing the type's type code here, pass
4088 it as an argument to read_struct_type, and let that take care of
4089 storing it. That way, we don't overwrite the original type code,
4090 so read_struct_type can use it to decide whether we're overwriting
4091 something we shouldn't.
4092 (complain_about_struct_wipeout): New function.
4093
4094 2002-05-03 Andrew Cagney <ac131313@redhat.com>
4095
4096 * gdbarch.sh: Assert that gdbarch is non-NULL.
4097 * gdbarch.c: Regenerate.
4098
4099 2002-05-03 Jason Merrill <jason@redhat.com>
4100
4101 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
4102 and return NULL.
4103
4104 2002-05-03 Michal Ludvig <mludvig@suse.cz>
4105
4106 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
4107 (x86_64_dwarf2gdb_regno_map_length),
4108 (x86_64_dwarf2_reg_to_regnum): Added.
4109 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
4110 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
4111 (_initialize_x86_64_tdep): Synced with the change above.
4112 (x86_64_skip_prologue): Reformulated message.
4113
4114 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4115
4116 * f-exp.y: Also use new prev_lexptr variable
4117 to improve error reporting. Based on Michael Snyder
4118 2002-04-24 dated patch to c-exp.y.
4119 * jv-exp.y: Likewise.
4120 * m2-exp.y: Likewise.
4121
4122 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
4123
4124 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
4125 we are dealing with vectors.
4126
4127 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
4128
4129 * config/m68k/tm-nbsd.h: Obvious fix,
4130 correct machine name.
4131
4132 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
4133
4134 * p-typeprint.c (pascal_type_print_base): Add support
4135 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
4136
4137 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
4138
4139 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
4140 for fondamental pascal 'char' type.
4141
4142 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
4143
4144 * p-lang.h (is_pascal_string_type): Declaration changed,
4145 new sixth argument of type char ** added.
4146 * p-lang.c (is_pascal_string_type): Implementation
4147 changed. Args length_pos, length_size, string_pos, char_size
4148 can now be NULL. New argument arrayname set to the field
4149 name of the char array. Return value set to char array
4150 field index plus one.
4151 * p-valprint.c (pascal_val_print): Adapt to new declaration of
4152 is_pascal_string_type function.
4153
4154 2002-05-02 Andrew Cagney <cagney@redhat.com>
4155
4156 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
4157 <cagney@redhat.com> change.
4158 * gdbarch.c: Regenerate.
4159
4160 2002-05-02 Andrew Cagney <cagney@redhat.com>
4161
4162 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
4163 before probing for a new one. Detect errorenous gdbarch_init
4164 functions.
4165 * gdbarch.c: Regenerate.
4166
4167 2002-05-01 Andrew Cagney <cagney@redhat.com>
4168
4169 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
4170 * config/mcore/tm-mcore.h: Ditto. Update copyright.
4171 * config/v850/tm-v850.h: Ditto. Update copyright.
4172
4173 2002-04-30 Andrew Cagney <ac131313@redhat.com>
4174
4175 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
4176 current_gdbarch.
4177
4178 2002-04-30 Michael Snyder <msnyder@redhat.com>
4179
4180 * arm-tdep.c: Whitespace clean-ups.
4181 (arm_skip_prologue): Fix thinko; two lines
4182 should have been removed as part of 4/24 change.
4183
4184 2002-04-30 Kevin Buettner <kevinb@redhat.com>
4185
4186 * rs6000-tdep.c: Added comment describing how fpscr register
4187 numbers were chosen.
4188
4189 2002-04-30 Michael Snyder <msnyder@redhat.com>
4190
4191 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
4192
4193 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
4194
4195 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
4196 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
4197 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
4198
4199 2002-04-29 Kevin Buettner <kevinb@redhat.com>
4200
4201 From Louis Hamilton <hamilton@redhat.com>:
4202 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
4203 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
4204 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
4205 not bfd-private xcoff data, to determine wordsize.
4206 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
4207
4208 2002-04-29 Andrew Cagney <ac131313@redhat.com>
4209
4210 GDB 5.2 released from 5.2 branch.
4211
4212 2002-04-29 Michal Ludvig <mludvig@suse.cz>
4213
4214 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
4215 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
4216 (x86_64_register_info_table): Added comments with register numbers.
4217
4218 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
4219
4220 * rs6000-tdep.c (rs6000_extract_return_value,
4221 rs6000_store_return_value): Handle returning vectors.
4222 (rs6000_gdbarch_init): Use
4223 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
4224 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
4225 New function.
4226 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
4227 vectors.
4228 (ppc_sysv_abi_push_arguments): Handle vector parameters.
4229 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
4230
4231 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
4232
4233 * hpread.c (hpread_psymtab_to_symtab_1,
4234 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
4235 with fprintf_unfiltered (gdb_stderr,...).
4236
4237 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
4238
4239 * remote-array.c (printf_monitor, write_monitor,
4240 array_insert_breakpoint, array_remove_breakpoint ):
4241 Replace fprintf (stderr,...
4242 with fprintf_unfiltered (gdb_stderr,....
4243 * remote-es.c: Likewise.
4244 * remote-os9k.c: Likewise.
4245 * remote-st.c: Likewise.
4246
4247 2002-04-28 Andreas Schwab <schwab@suse.de>
4248
4249 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
4250 linux-proc.o and gcore.o.
4251
4252 2002-04-26 Michal Ludvig <mludvig@suse.cz>
4253
4254 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
4255 code without frame pointers.
4256
4257 2002-04-26 Andrew Cagney <ac131313@redhat.com>
4258
4259 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
4260 ON_STACK is needed.
4261
4262 2002-04-26 Ben Elliston <bje@redhat.com>
4263
4264 * target.c (do_xfer_memory): Correct reference to the new option
4265 "trust-readonly-sections".
4266
4267 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
4268
4269 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
4270 * gdbtypes.c (recursive_dump_type): Output the vector flag.
4271 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
4272 vectors.
4273 (read_array_type): Record the fact that this array type is really a
4274 vector (i.e. are passed in by value).
4275
4276 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
4277
4278 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
4279 * alpha-tdep.c (alpha_sigcontext_addr): New function.
4280 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
4281 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
4282 * alpha-linux-tdep.c: Include frame.h.
4283 (alpha_linux_sigcontext_addr): New function.
4284 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
4285 alpha_linux_sigcontext_addr.
4286 * alpha-osf1-tdep.c: Include gdbcore.h.
4287 (alpha_osf1_sigcontext_addr): New function.
4288 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
4289 alpha_osf1_sigcontext_addr.
4290 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
4291 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
4292
4293 2002-04-26 Andrew Cagney <ac131313@redhat.com>
4294
4295 * stack.c (selected_frame_level):
4296 (select_frame): Do not set selected_frame_level.
4297 * frame.h (selected_frame_level): Delete declaration.
4298
4299 2002-04-26 Andrew Cagney <ac131313@redhat.com>
4300
4301 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
4302 convert_from_func_ptr-addr when AIX / PowerOpen.
4303
4304 2002-04-25 Andrew Cagney <ac131313@redhat.com>
4305
4306 * valops.c (hand_function_call): Call
4307 generic_save_call_dummy_addr.
4308 * frame.h (generic_save_call_dummy_addr): Declare.
4309 * blockframe.c (struct dummy_frame): Add fields call_lo and
4310 call_hi.
4311 (generic_find_dummy_frame): Check for PC in range call_lo to
4312 call_hi instead of entry_point_address.
4313 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
4314 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
4315 (generic_save_call_dummy_addr): New function.
4316
4317 2002-04-24 David S. Miller <davem@redhat.com>
4318
4319 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
4320 sparc_skip_prologue.
4321 (sparc_skip_prologue): Kill frameless_p arg, and use line number
4322 information to find prologue when possible.
4323 (sparc_prologue_frameless_p): Call examine_prologue directly.
4324 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
4325 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
4326 second argument.
4327 (SKIP_PROLOGUE): Likewise.
4328
4329 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
4330
4331 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
4332 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
4333 indicate that the condition it was testing is always true.
4334 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
4335 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
4336 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
4337
4338 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
4339
4340 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
4341 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
4342 tdep->jb_pc and tdep->jb_elt_size.
4343 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
4344 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
4345 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
4346 * alpha-nat.c (get_longjmp_target): Remove.
4347 (JB_ELEMENT_SIZE): Ditto.
4348 (JB_PC): Ditto.
4349 * alpha-tdep.c (alpha_get_longjmp_target): New function.
4350 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
4351 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
4352 to alpha_get_longjmp_target.
4353 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
4354 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
4355 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
4356
4357 2002-04-25 Andrew Cagney <ac131313@redhat.com>
4358
4359 * README: Update to GDB 5.2.
4360
4361 2002-04-25 Andrew Cagney <ac131313@redhat.com>
4362
4363 * gdbarch.sh (LC_ALL): Set to `c'.
4364
4365 2002-04-25 Theodore A. Roth <troth@verinet.com>
4366
4367 * avr-tdep.c: Ran through gdb_indent.sh.
4368
4369 2002-04-25 Theodore A. Roth <troth@verinet.com>
4370
4371 * MAINTAINERS: Add myself as AVR maintainer.
4372 * NEWS: Note new target avr.
4373
4374 2002-04-25 Theodore A. Roth <troth@verinet.com>
4375
4376 * Makefile.in: Add support for AVR target.
4377 * configure.tgt: Add support for AVR target.
4378 * avr-tdep.c: New file
4379 * config/avr/avr.mt: New file.
4380
4381 2002-04-25 Theodore A. Roth <troth@verinet.com>
4382
4383 * MAINTAINERS: Add myself to write-after-approval.
4384
4385 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
4386
4387 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
4388 with fprintf_unfiltered (gdb_stderr,....
4389
4390 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
4391
4392 Fix PR gdb/508.
4393 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
4394
4395 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
4396
4397 * p-exp.y: Also use new prev_lexptr variable
4398 to improve error reporting. Based on Michael Snyder
4399 2002-04-24 dated patch to c-exp.y.
4400
4401 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
4402
4403 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
4404 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
4405 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
4406 to 0.
4407 * config/alpha/tm-alpha.h: Remove forward decls of struct type
4408 and struct value.
4409 (FUNCTION_START_OFFSET): Remove.
4410 (BREAKPOINT): Ditto.
4411
4412 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
4413
4414 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
4415 * NEWS: Ditto.
4416
4417 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
4418
4419 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
4420 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
4421 alpha_linux_pc_in_sigtramp.
4422 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
4423 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
4424 alpha_osf1_pc_in_sigtramp.
4425 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
4426 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
4427 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
4428 alphafbsd_pc_in_sigtramp.
4429 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
4430 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
4431 alphanbsd_pc_in_sigtramp.
4432 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
4433 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
4434
4435 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
4436
4437 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
4438
4439 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
4440
4441 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
4442 alphanbsd-tdep.c.
4443 (alphanbsd-nat.o): New dependency list.
4444 (alphanbsd-tdep.o): Ditto.
4445 * NEWS: Note new native NetBSD/alpha configuration.
4446 * alphanbsd-nat.c: New file.
4447 * alphanbsd-tdep.c: Ditto.
4448 * configure.host (alpha*-*-netbsd*): New host.
4449 * configure.tgt (alpha*-*-netbsd*): New target.
4450 * config/alpha/nbsd.mh: New file.
4451 * config/alpha/nbsd.mt: Ditto.
4452 * config/alpha/nm-nbsd.h: Ditto.
4453 * config/alpha/tm-nbsd.h: Ditto.
4454
4455 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
4456
4457 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
4458 (alpha-osf1-tdep.o): New dependency list.
4459 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
4460 and skip_sigtramp_frame members.
4461 * alpha-linux-tdep.c: Include gdbcore.h.
4462 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
4463 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
4464 * alpha-osf1-tdep.c: New file.
4465 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
4466 alpha-osf1-dep.c.
4467 (alpha_frame_past_sigtramp_frame): New function.
4468 (alpha_dynamic_sigtramp_offset): Ditto.
4469 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
4470 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
4471 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
4472 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
4473 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
4474 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
4475 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
4476 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
4477 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
4478 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
4479 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
4480 to find_solib_trampoline_target.
4481 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
4482 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
4483 (SKIP_TRAMPOLINE_CODE): Remove.
4484 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
4485 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
4486 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
4487 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
4488 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
4489 (PROC_SIGTRAMP_MAGIC): Ditto.
4490 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
4491 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
4492 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
4493 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
4494 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
4495
4496 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
4497
4498 * NEWS: Note that Alpha targets are now multi-arch.
4499
4500 2002-04-24 Michael Snyder <msnyder@redhat.com>
4501
4502 * parser-defs.h (prev_lexptr): New external variable.
4503 * parse.c (parse_exp_1): Set prev_lexptr to null before
4504 calling the language-specific parser.
4505 * c-exp.y (yylex): Set prev_lexptr to start of current token.
4506 (yyerror): Use prev_lexptr in error reporting.
4507
4508 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
4509
4510 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
4511 * gregset.h: If FILL_FPXREGSET is defined, provide
4512 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
4513 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
4514 is defined, call fill_fpxregset.
4515
4516 2002-04-24 Roland McGrath <roland@frob.com>
4517
4518 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
4519 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
4520 (supply_gregset, supply_fpregset): New functions.
4521
4522 * gnu-nat.c (gnu_find_memory_regions): New function.
4523 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
4524 (gnu_xfer_memory): Add a cast.
4525
4526 2002-04-24 Michael Snyder <msnyder@redhat.com>
4527
4528 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
4529 loop. Add handling for "str lr, [sp, #-4]!" and for saves
4530 of argument regs ("str r(0123), [r11, #-nn"]).
4531 (arm_skip_prologue): Better handling for frameless functions.
4532 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
4533 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
4534
4535 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
4536
4537 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
4538 NUM_PSEUDO_REGS can be used.
4539
4540 2002-04-24 Andrew Cagney <ac131313@redhat.com>
4541
4542 * arch-utils.h: Update copyright.
4543
4544 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
4545 * gdbarch.h, gdbarch.c: Re-generate.
4546
4547 * inferior.h (IN_SIGTRAMP): Delete definition.
4548 * arch-utils.c (legacy_pc_in_sigtramp): New function.
4549 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
4550
4551 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
4552 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
4553 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
4554 (find_proc_framesize): Ditto.
4555 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
4556 (alpha_init_extra_frame_info): Ditto.
4557 * infrun.c (handle_inferior_event): Ditto.
4558 (handle_inferior_event): Ditto.
4559 (check_sigtramp2): Ditto.
4560 * blockframe.c (create_new_frame): Ditto.
4561 (get_prev_frame): Ditto.
4562 * ppc-linux-tdep.c: Update comments.
4563 * i386-linux-tdep.c: Update comments.
4564 * breakpoint.c (bpstat_what): Update comment.
4565
4566 2002-04-24 Michal Ludvig <mludvig@suse.cz>
4567
4568 * gdbserver/linux-low.c (regsets_fetch_inferior_registers),
4569 (regsets_store_inferior_registers): Removed cast to int from
4570 ptrace() calls.
4571 * gdbserver/regcache.h: Added declaration of struct inferior_info.
4572
4573 2002-04-24 David S. Miller <davem@redhat.com>
4574
4575 * i960-tdep.c (register_in_window_p): New function.
4576 (i960_find_saved_register): Use it instead of
4577 REGISTER_IN_WINDOW_P.
4578 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
4579
4580 * symtab.h (find_stab_function_addr): Kill extern.
4581 * minsyms.c (find_stab_function_addr): Remove from here...
4582 * dbxread.c: ... to here, and mark it static.
4583
4584 2002-04-20 David S. Miller <davem@redhat.com>
4585
4586 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
4587 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
4588
4589 2002-04-21 David S. Miller <davem@redhat.com>
4590
4591 * remote-vxsparc.c (vx_read_register): Fix typo, we want
4592 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
4593 (vx_write_register): Likewise.
4594
4595 2002-04-23 J. Brobecker <brobecker@gnat.com>
4596
4597 * source.c (is_regular_file): New function.
4598 (openp): Check wether file to open is a regular file
4599 to avoid opening directories.
4600
4601 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4602
4603 * findvar.c (extract_signed_integer): Cast printf argument
4604 to suppress format warning.
4605 (extract_unsigned_integer): Likewise.
4606 * infcmd.c (registers_info): Likewise.
4607 * top.c (get_prompt_1): Likewise.
4608 * valops.c (value_assign): Likewise.
4609 * valprint.c (print_decimal): Likewise.
4610
4611 2002-04-22 H.J. Lu (hjl@gnu.org)
4612
4613 * c-exp.y (typebase): Support
4614
4615 [long|long long|short] [signed|unsigned] [int|]
4616
4617 and
4618
4619 signed [long|long long|short] int
4620
4621 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4622
4623 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
4624 and vax-tdep.h.
4625 * vax-tdep.h: New file.
4626 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
4627 Make several routines static.
4628 (vax_get_saved_register): New function.
4629 (vax_gdbarch_init): New function.
4630 (_initialize_vax_tdep): Register vax_gdbarch_init.
4631 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
4632 Remove macros now under the control of gdbarch.
4633
4634 2002-04-22 Michael Snyder <msnyder@redhat.com>
4635
4636 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
4637 Some whitespace and coding standards tweaks.
4638
4639 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4640
4641 * vax-tdep.c: Include regcache.h.
4642 (vax_call_dummy_words): New.
4643 (sizeof_vax_call_dummy_words): New.
4644 (vax_fix_call_dummy): New function.
4645 (vax_saved_pc_after_call): Ditto.
4646 * config/vax/tm-vax.h: Don't include regcache.h.
4647 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
4648 (CALL_DUMMY): Remove.
4649 (CALL_DUMMY_WORDS): Define.
4650 (SIZEOF_CALL_DUMMY_WORDS): Define.
4651 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
4652
4653 2002-04-18 Michael Snyder <msnyder@redhat.com>
4654
4655 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
4656
4657 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4658
4659 * vax-tdep.c (vax_frame_chain): New function.
4660 (vax_push_dummy_frame): Ditto.
4661 (vax_pop_frame): Ditto.
4662 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
4663 (FRAMELESS_FUNCTION_INVOCATION): Use
4664 generic_frameless_function_invocation_not.
4665 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
4666 (POP_FRAME): Use vax_pop_frame.
4667
4668 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4669
4670 * vax-tdep.c (vax_store_struct_return): New function.
4671 (vax_extract_return_value): Ditto.
4672 (vax_store_return_value): Ditto.
4673 (vax_extract_struct_value_address): Ditto.
4674 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
4675 vax_store_struct_return.
4676 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
4677 (STORE_RETURN_VALUE): Use vax_store_return_value.
4678 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
4679
4680 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4681
4682 * vax-tdep.c (vax_frame_saved_pc): New function.
4683 (vax_frame_args_address_correct): Ditto.
4684 (vax_frame_args_address): Ditto.
4685 (vax_frame_locals_address): Ditto.
4686 (vax_frame_num_args): Move code to be in proximity to
4687 other frame-related functions.
4688 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
4689 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
4690 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
4691 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
4692 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
4693
4694 2002-04-22 H.J. Lu (hjl@gnu.org)
4695
4696 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
4697 includedir.
4698
4699 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4700
4701 * vax-tdep.c (vax_frame_init_saved_regs): New function.
4702 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
4703 (FRAME_INIT_SAVED_REGS): New macro.
4704
4705 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4706
4707 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
4708
4709 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4710
4711 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
4712 where needed.
4713 (fetch_osf_core_registers): Likewise.
4714 (supply_gregset): Likewise.
4715
4716 2002-04-22 J. Brobecker <brobecker@gnat.com>
4717
4718 * symfile.h (get_section_index): Define.
4719 * symfile.c (get_section_index): New function.
4720 * mdebugread.c (SC_IS_SBSS): New macro.
4721 (SC_IS_BSS): Return true for the scBss storage class only, as
4722 the scSBss storage class refers to the .sbss section.
4723 (parse_partial_symbols): Discard the symbols which associated
4724 section does not exist.
4725 Make sure to use the .sbss section index for symbols which
4726 storage class is scBss, rather than using the .bss section index.
4727
4728 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
4729
4730 * vax-tdep.c: Update copyright years.
4731 (vax_register_name): New function.
4732 (vax_register_byte): Ditto.
4733 (vax_register_raw_size): Ditto.
4734 (vax_register_virtual_size): Ditto.
4735 (vax_register_virtual_type): Ditto.
4736 * config/vax/tm-vax.h: Update copyright years.
4737 (REGISTER_NAMES): Remove.
4738 (REGISTER_NAME): Define.
4739 (REGISTER_BYTE): Use vax_register_byte.
4740 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
4741 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
4742 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
4743
4744 2002-04-21 Andrew Cagney <ac131313@redhat.com>
4745
4746 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
4747 declaration
4748 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
4749
4750 2002-04-21 David S. Miller <davem@redhat.com>
4751
4752 * arch-utils.c (generic_prologue_frameless_p): Kill
4753 SKIP_PROLOGUE_FRAMELESS_P code.
4754 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
4755 references.
4756 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
4757 * arc-tdep.c (arc_prologue_frameless_p): Implement.
4758 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
4759 references.
4760 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
4761 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
4762 (sparc_gdbarch_init): Pass it to
4763 set_gdbarch_prologue_frameless_p.
4764
4765 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4766
4767 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
4768 (alphabsd-nat.o): New dependency list.
4769
4770 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4771
4772 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
4773 alphafbsd-tdep.c.
4774 (alpha-linux-tdep.o): New dependency list.
4775 (alphafbsd-tdep.o): Likewise.
4776
4777 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4778
4779 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
4780 to here...
4781 * alpha-tdep.c: ...from here.
4782 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
4783
4784 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4785
4786 * config/alpha/tm-alpha.h: Move alpha_software_single_step
4787 prototype from here...
4788 * alpha-tdep.h: ...to here.
4789
4790 2002-04-21 Andrew Cagney <ac131313@redhat.com>
4791
4792 * frame.h (selected_frame_level): Document as deprecated.
4793 (frame_relative_level): Declare.
4794 * stack.c (frame_relative_level): New function.
4795 (selected_frame_level): Document as deprecated.
4796 (select_frame): Do not set the selected_frame_level.
4797
4798 * stack.c (frame_info, record_selected_frame): Update.
4799 (frame_command, current_frame_command): Update.
4800 (up_silently_base, up_command, down_silently_base): Update.
4801 (down_command): Update.
4802 * inflow.c (kill_command): Update.
4803 * tracepoint.c (finish_tfind_command): Update.
4804 * corelow.c (core_open): Update.
4805 * thread.c (info_threads_command): Update.
4806 (do_captured_thread_select): Update.
4807 * infcmd.c (finish_command): Update.
4808 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
4809
4810 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4811
4812 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
4813
4814 2002-04-21 Andrew Cagney <ac131313@redhat.com>
4815
4816 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
4817 type const.
4818
4819 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4820
4821 * alphafbsd-tdep.c: Update copyright years. Include
4822 alpha-tdep.h.
4823 (alphafbsd_use_struct_convention): Make static.
4824 (alphafbsd_init_abi): New function.
4825 (_initialize_alphafbsd_tdep): New function.
4826 * config/alpha/tm-fbsd.h: Update copyright years.
4827 (USE_STRUCT_CONVENTION): Remove.
4828
4829 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4830
4831 * alpha-tdep.c (alpha_abi_handler): New structure to describe
4832 an Alpha ABI variant.
4833 (alpha_abi_handler_list): Declare.
4834 (alpha_gdbarch_register_os_abi): New function.
4835 (alpha_gdbarch_init): Give registered ABI variant handlers a
4836 chance to tweak the gdbarch once we have set up defaults.
4837 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
4838
4839 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4840
4841 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
4842 to standard_coerce_float_to_double.
4843 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
4844
4845 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4846
4847 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
4848 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
4849 from gdbarch_tdep rather than a constant.
4850 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
4851 the default text address for all Alpha Unix ABIs.
4852 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
4853 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
4854
4855 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
4856
4857 * alpha-tdep.h: New file. Includes several Alpha target constants
4858 taken from...
4859 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
4860 let gdbarch deal with.
4861 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
4862 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
4863 to dependency list.
4864 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
4865 Alpha target register names.
4866 * alphabsd-nat.c: Likewise.
4867 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
4868 Alpha target register names. Make serveral routines static.
4869 (alpha_get_saved_register): New function.
4870 (alpha_abi_names): New.
4871 (process_note_abi_tag_sections): New function.
4872 (get_elfosabi): New function.
4873 (alpha_gdbarch_init): New function.
4874 (alpha_dump_tdep): New function.
4875 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
4876
4877 2002-04-21 Andrew Cagney <ac131313@redhat.com>
4878
4879 * frame.c (find_saved_register): Delete #ifdef
4880 HAVE_REGISTER_WINDOWS code.
4881 * config/sparc/tm-sparc.h: Update comments.
4882 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
4883
4884 2002-04-21 Andrew Cagney <ac131313@redhat.com>
4885
4886 * i960-tdep.c (i960_find_saved_register): New function.
4887 (i960_get_saved_register): New function.
4888 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
4889 (i960_get_saved_register): Declare.
4890 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
4891
4892 2002-04-20 David S. Miller <davem@redhat.com>
4893
4894 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
4895
4896 2002-04-20 Andrew Cagney <ac131313@redhat.com>
4897
4898 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
4899 instead of NUM_PSEUDO_REGS.
4900
4901 2002-04-20 David S. Miller <davem@redhat.com>
4902
4903 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
4904 GDB_MULTI_ARCH_PARTIAL
4905 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
4906 define, let tm-sp64.h do it.
4907
4908 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
4909
4910 * frame.c (find_saved_register): Avoid a NULL pointer
4911 dereference and actually walk the frame list.
4912
4913 2002-04-20 Andrew Cagney <ac131313@redhat.com>
4914
4915 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
4916 sorted in most most-recent-used order. Document.
4917 * gdbarch.h, gdbarch.c: Regenerate.
4918
4919 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
4920
4921 * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
4922 (add_inferior): Call create_register_cache.
4923 (clear_inferiors): Call free_register_cache.
4924 (inferior_regcache_data, set_inferior_regcache_data): New functions.
4925 * gdbserver/regcache.c (struct inferior_regcache_data): New.
4926 (registers): Remove.
4927 (get_regcache): New function.
4928 (create_register_cache, free_register_cache): New functions.
4929 (set_register_cache): Don't initialize the register cache here.
4930 (registers_to_string, registers_from_string, register_data): Call
4931 get_regcache.
4932 * gdbserver/regcache.h: Add prototypes.
4933 * gdbserver/server.h: Likewise.
4934
4935 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
4936
4937 * gdbserver/mem-break.c: New file.
4938 * gdbserver/mem-break.h: New file.
4939 * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
4940 dependencies.
4941 * gdbserver/inferiors.c (struct inferior_info): Add target_data
4942 member.
4943 (clear_inferiors): Free target_data member if set.
4944 (inferior_target_data, set_inferior_target_data): New functions.
4945 * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
4946 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
4947 * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
4948 (struct inferior_linux_data): New.
4949 (linux_create_inferior): Use set_inferior_target_data.
4950 (linux_attach): Likewise. Call add_inferior.
4951 (linux_wait_for_one_inferior): New function.
4952 (linux_wait): Call it.
4953 (linux_write_memory): Add const.
4954 (initialize_low): Call set_breakpoint_data.
4955 * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
4956 handling members.
4957 * gdbserver/server.c (attach_inferior): Remove extra add_inferior
4958 call.
4959 * gdbserver/server.h: Include mem-break.h. Update inferior.c
4960 prototypes.
4961 * gdbserver/target.c (read_inferior_memory)
4962 (write_inferior_memory): New functions.
4963 * gdbserver/target.h (read_inferior_memory)
4964 (write_inferior_memory): Change macros to prototypes.
4965 (struct target_ops): Update comments. Add const to write_memory
4966 definition.
4967
4968 2002-04-19 Andrew Cagney <ac131313@redhat.com>
4969
4970 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
4971 instead of ->prev.
4972 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
4973 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
4974 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
4975 instead of ->prev.
4976
4977 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
4978
4979 Fix PR gdb/471.
4980 * gdbtypes.c (init_simd_type): Rewrite using new functions.
4981 (build_builtin_type_vec128): Ditto.
4982 (append_composite_type_field): Fix calculation of type length in
4983 union case.
4984
4985 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
4986
4987 * config/djgpp/README: Update.
4988
4989 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
4990 compiler warnings.
4991
4992 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
4993
4994 * alpha-tdep.c (setup_arbitrary_frame): Rename...
4995 (alpha_setup_arbitrary_frame): ...to this.
4996 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
4997 for alpha_setup_arbitrary_frame.
4998
4999 2002-04-18 Andrew Cagney <cagney@redhat.com>
5000
5001 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
5002 * gdbarch.h, gdbarch.c: Regenerate.
5003
5004 * defs.h (breakpoint_from_pc_fn): Delete type definition.
5005 * target.h (memory_breakpoint_from_pc): Update declaration.
5006 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
5007
5008 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
5009 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
5010 * mem-break.c (memory_breakpoint_from_pc): Ditto.
5011 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
5012 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
5013 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
5014 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
5015 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
5016 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
5017 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
5018 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
5019 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
5020
5021 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
5022 const pointer.
5023 * monitor.c (monitor_insert_breakpoint): Ditto.
5024 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
5025
5026 * config/mcore/tm-mcore.h: Update copyright.
5027 * mem-break.c: Ditto.
5028 * xstormy16-tdep.c: Ditto.
5029
5030 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
5031
5032 * p-exp.y: Add precedence rule for '^' token.
5033 This removes the shift/reduce conflicts.
5034 Remove the comment concerning these shift/reduce conflicts.
5035
5036 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
5037
5038 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
5039 (registers_powerpc_nofp): New register set for processors
5040 without floating point unit.
5041
5042 2002-04-18 David S. Miller <davem@redhat.com>
5043
5044 * MAINTAINERS: Add myself to write-after-approval.
5045
5046 2002-04-17 Michael Snyder <msnyder@redhat.com>
5047
5048 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
5049
5050 2002-04-17 Andrew Cagney <ac131313@redhat.com>
5051
5052 * rs6000-tdep.c (frame_initial_stack_address): Use
5053 frame_register_read to read the alloca_reg.
5054
5055 2002-04-17 Andrew Cagney <ac131313@redhat.com>
5056
5057 * frame.c (find_saved_register): Find saved registers in the next
5058 not prev frame.
5059 Fix PR gdb/365.
5060
5061 2002-04-17 Andrew Cagney <ac131313@redhat.com>
5062
5063 * gdbarch.sh (LANG): Set to ``c''.
5064
5065 2002-04-15 Andrew Cagney <ac131313@redhat.com>
5066
5067 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
5068
5069 2002-04-15 Andrew Cagney <ac131313@redhat.com>
5070
5071 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
5072 Update copyright.
5073
5074 * hpread.c (hpread_get_lntt): Add declaration.
5075 Also fix PR gdb/391.
5076
5077 2002-04-14 Andrew Cagney <ac131313@redhat.com>
5078
5079 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
5080 * aclocal.m4, configure: Re-generate.
5081 Fix PR gdb/391.
5082
5083 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
5084
5085 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
5086 instead of tm_print_insn.
5087
5088 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
5089
5090 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
5091
5092 2002-04-14 Andrew Cagney <ac131313@redhat.com>
5093
5094 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
5095 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
5096 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
5097
5098 2002-04-12 Don Howard <dhoward@redhat.com>
5099
5100 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
5101 max_user_call_depth.
5102 (init_cmd_lists): Initialize the new value;
5103 * cli/cli-script.c (execute_user_command): Limit the call depth of
5104 user defined commands. This avoids a core-dump when user commands
5105 are infinitly recursive.
5106
5107 2002-04-12 Kevin Buettner <kevinb@redhat.com>
5108
5109 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
5110 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
5111 from tdep struct instead of DEFAULT_LR_SAVE.
5112 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
5113 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
5114 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
5115
5116 2002-04-12 Michael Snyder <msnyder@redhat.com>
5117
5118 * Remote.c: Spelling fix.
5119 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
5120 If no symbol found for "sbrk", try "_sbrk".
5121 (make_output_phdrs): Use bfd_section_name.
5122 (gcore_copy_callback): Use bfd_section_name.
5123 * eval.c: Indentation fix-ups.
5124 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
5125 in case it gets applied to an address that is already
5126 in the instruction space.
5127 * cli/cli-decode.c (help_list): Allow long lines to wrap.
5128 * symfile.c: Fix indentation, long lines.
5129 * source.c: White space fix-up.
5130
5131 2002-04-12 Andrew Cagney <cagney@redhat.com>
5132
5133 * defs.h (read_relative_register_raw_bytes): Delete declaration.
5134 * frame.c (frame_register_read): New function. Return non-zero on
5135 success.
5136 (read_relative_register_raw_bytes_for_frame): Delete.
5137 (read_relative_register_raw_bytes): Delete.
5138 * frame.h (frame_register_read): Declare.
5139 * d30v-tdep.c: Update Copyright. Use frame_register_read.
5140 * sh-tdep.c: Ditto.
5141 * infcmd.c (do_registers_info): Ditto.
5142 * hppa-tdep.c: Ditto.
5143 * rs6000-tdep.c: Ditto.
5144 * h8500-tdep.c: Ditto.
5145 * mips-tdep.c: Ditto.
5146 * h8300-tdep.c: Ditto.
5147 * z8k-tdep.c: Ditto.
5148
5149 2002-04-12 Kevin Buettner <kevinb@redhat.com>
5150
5151 From Jimi X <jimix@watson.ibm.com>:
5152 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
5153 64-bit SysV ABI.
5154
5155 2002-04-12 Kevin Buettner <kevinb@redhat.com>
5156
5157 From Jimi X <jimix@watson.ibm.com>:
5158 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
5159 bfd info.
5160
5161 2002-04-12 Kevin Buettner <kevinb@redhat.com>
5162
5163 From Jimi X <jimix@watson.ibm.com>:
5164 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
5165 register sets for these processor variants.
5166
5167 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
5168
5169 * gdbserver/linux-low.c (usr_store_inferior_registers): Support
5170 registers which are allowed to fail to store.
5171 * gdbserver/linux-low.h (linux_target_ops): Likewise.
5172 * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
5173 (ppc_cannot_store_register): FPSCR may not be storable.
5174 * regformats/reg-ppc.dat: Support FPSCR.
5175
5176 2002-04-11 Kevin Buettner <kevinb@redhat.com>
5177
5178 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
5179 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
5180 Add fpscr as an invalid/unfetchable register.
5181 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
5182 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
5183 (fill_fpregset): Add support for register fpscr.
5184 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
5185 (fill_gregset): Account for the fact that register ``mq'' might
5186 not exist.
5187 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
5188 (registers_power): Add fpscr to register set at slot 71.
5189 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
5190 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
5191
5192 2002-04-11 Michael Snyder <msnyder@redhat.com>
5193
5194 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
5195 * configure: Regenerate.
5196 * config.in: Regenerate.
5197 * acconfig.h: Add define for _SYSCALL32.
5198 * core-sol2.c: Remove #define _SYSCALL32.
5199 * solib-legacy.c: Remove #define _SYSCALL32.
5200
5201 2002-04-10 Andrew Cagney <ac131313@redhat.com>
5202
5203 * stack.c (select_frame): Cleanup internal error message, do not
5204 use %p.
5205
5206 2002-04-10 Andrew Cagney <ac131313@redhat.com>
5207
5208 * stack.c (select_frame): Check that selected_frame and the
5209 specified level are as expected.
5210 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
5211 Update copyright.
5212 * frame.h (struct frame_info): Add field `level'. Update
5213 copyright.
5214 Work-in-progress PR gdb/464.
5215
5216 2002-04-10 Andrew Cagney <ac131313@redhat.com>
5217
5218 * maint.c (maint_print_section_info): Rename print_section_info.
5219 (print_bfd_section_info, print_objfile_section_info): Update.
5220 * inferior.h (struct gdbarch): Add opaque declaration.
5221 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
5222 * gdbarch.h: Regenerate.
5223
5224 2002-04-10 Michal Ludvig <mludvig@suse.cz>
5225
5226 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
5227 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
5228 (kernel_u_size): Added.
5229 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
5230 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
5231
5232 2002-04-04 Jim Ingham <jingham@apple.com>
5233
5234 * valarith.c (find_size_for_pointer_math): New function, either returns
5235 the size for a pointer's target, returns 1 for void *, or errors for
5236 incomplete types.
5237 (value_add, value_sub): use find_size_for_pointer_math.
5238
5239 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5240
5241 * linux-low.c (linux_look_up_symbols): New hook.
5242 (linux_target_ops): Add linux_look_up_symbols.
5243 * remote-utils.c (decode_address): New function.
5244 (look_up_one_symbol): New function.
5245 * server.c (handle_query): Call target look_up_symbols hook.
5246 * server.h (look_up_one_symbol): Add prototype.
5247 * target.h (struct target_ops): Add look_up_symbols hook.
5248
5249 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5250
5251 * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
5252 * ChangeLog: Correct paths in last ChangeLog entry.
5253
5254 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5255
5256 * gdbserver/linux-low.h: Remove obsolete prototypes.
5257 (struct linux_target_ops): New.
5258 (extern the_low_target): New.
5259 * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
5260 (register_addr): Use the_low_target explicitly.
5261 (fetch_register): Likewise.
5262 (usr_fetch_inferior_registers): Likewise.
5263 (usr_store_inferior_registers): Likewise.
5264 * gdbserver/linux-arm-low.c (num_regs): Remove.
5265 (arm_num_regs): Define.
5266 (arm_regmap): Renamed from regmap, made static.
5267 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
5268 made static.
5269 (arm_cannot_store_register): Renamed from cannot_store_register,
5270 made static.
5271 (the_low_target): New.
5272 * gdbserver/linux-i386-low.c (num_regs): Remove.
5273 (i386_num_regs): Define.
5274 (i386_regmap): Renamed from regmap, made static.
5275 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
5276 made static.
5277 (i386_cannot_store_register): Renamed from cannot_store_register,
5278 made static.
5279 (the_low_target): New.
5280 * gdbserver/linux-ia64-low.c (num_regs): Remove.
5281 (ia64_num_regs): Define.
5282 (ia64_regmap): Renamed from regmap, made static.
5283 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
5284 made static.
5285 (ia64_cannot_store_register): Renamed from cannot_store_register,
5286 made static.
5287 (the_low_target): New.
5288 * gdbserver/linux-m68k-low.c (num_regs): Remove.
5289 (m68k_num_regs): Define.
5290 (m68k_regmap): Renamed from regmap, made static.
5291 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
5292 made static.
5293 (m68k_cannot_store_register): Renamed from cannot_store_register,
5294 made static.
5295 (the_low_target): New.
5296 * gdbserver/linux-mips-low.c (num_regs): Remove.
5297 (mips_num_regs): Define.
5298 (mips_regmap): Renamed from regmap, made static.
5299 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
5300 made static.
5301 (mips_cannot_store_register): Renamed from cannot_store_register,
5302 made static.
5303 (the_low_target): New.
5304 * gdbserver/linux-ppc-low.c (num_regs): Remove.
5305 (ppc_num_regs): Define.
5306 (ppc_regmap): Renamed from regmap, made static.
5307 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
5308 made static.
5309 (ppc_cannot_store_register): Renamed from cannot_store_register,
5310 made static.
5311 (the_low_target): New.
5312 * gdbserver/linux-s390-low.c (num_regs): Remove.
5313 (s390_num_regs): Define.
5314 (s390_regmap): Renamed from regmap, made static.
5315 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
5316 made static.
5317 (s390_cannot_store_register): Renamed from cannot_store_register,
5318 made static.
5319 (the_low_target): New.
5320 * gdbserver/linux-sh-low.c (num_regs): Remove.
5321 (sh_num_regs): Define.
5322 (sh_regmap): Renamed from regmap, made static.
5323 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
5324 made static.
5325 (sh_cannot_store_register): Renamed from cannot_store_register,
5326 made static.
5327 (the_low_target): New.
5328 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
5329 (the_low_target): New.
5330
5331 2002-04-09 Andrew Cagney <ac131313@redhat.com>
5332
5333 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
5334 override FP_REGNUM with frame->fp. Update copyright.
5335 * parse.c (num_std_regs, std_regs): Delete.
5336 (target_map_name_to_register): Do not search std_regs. Update
5337 function description.
5338 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
5339 declarations. Update copyright.
5340 Fix PR gdb/251.
5341
5342 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5343
5344 * gdbserver/Makefile.in: Add stamp-h target.
5345 * gdbserver/configure.in: Create stamp-h.
5346 * gdbserver/configure: Regenerated.
5347
5348 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5349
5350 * gdbserver/inferiors.c: New file.
5351 * gdbserver/target.c: New file.
5352 * gdbserver/target.h: New file.
5353 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
5354 dependencies.
5355 * gdbserver/linux-low.c (inferior_pid): New static variable,
5356 moved from server.c.
5357 (linux_create_inferior): Renamed from create_inferior.
5358 Call add_inferior. Return 0 on success instead of a PID.
5359 (linux_attach): Renamed from myattach.
5360 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
5361 (linux_thread_alive): Renamed from mythread_alive.
5362 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
5363 child dies.
5364 (linux_resume): Renamed from myresume. Add missing ``return 0''.
5365 (regsets_store_inferior_registers): Correct error message.
5366 Add missing ``return 0''.
5367 (linux_fetch_registers): Renamed from fetch_inferior_registers.
5368 (linux_store_registers): Renamed from store_inferior_registers.
5369 (linux_read_memory): Renamed from read_inferior_memory.
5370 (linux_write_memory): Renamed from write_inferior_memory.
5371 (linux_target_ops): New structure.
5372 (initialize_low): Call set_target_ops ().
5373 * gdbserver/remote-utils.c (unhexify): New function.
5374 (hexify): New function.
5375 (input_interrupt): Send signals to ``signal_pid''.
5376 * gdbserver/server.c (inferior_pid): Remove.
5377 (start_inferior): Update create_inferior call.
5378 (attach_inferior): Call add_inferior.
5379 (handle_query): New function.
5380 (main): Call handle_query for `q' packets.
5381 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
5382 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
5383
5384 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5385
5386 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
5387 dependencies.
5388 * gdbserver/configure.in: Check for <string.h>
5389 * gdbserver/configure: Regenerate.
5390 * gdbserver/config.in: Regenerate.
5391 * gdbserver/gdbreplay.c: Include needed system headers.
5392 (remote_open): Remove strchr prototype.
5393 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
5394 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
5395 (supply_register_by_name): Likewise.
5396 (collect_register): Change buf argument to void *.
5397 (collect_register_by_name): Likewise.
5398 * gdbserver/regcache.h: Add missing prototypes.
5399 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
5400 * gdbserver/server.c (handle_query): New function.
5401 (attached): New static variable, moved out of main.
5402 (main): Quiet longjmp clobber warnings.
5403 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
5404 * gdbserver/utils.c (error): Remove NORETURN.
5405 (fatal): Likewise.
5406
5407 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5408
5409 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
5410 after the last symbol in a block.
5411
5412 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
5413
5414 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
5415 is non zero as a found symbol.
5416
5417 2002-04-08 Andrew Cagney <ac131313@redhat.com>
5418
5419 * findvar.c: Include "builtin-regs.h".
5420 (value_of_register): Call value_of_builtin_reg when applicable.
5421 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
5422 (target_map_name_to_register): Call
5423 builtin_reg_map_name_to_regnum.
5424 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
5425 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
5426 (builtin_regs_h): Define.
5427 (builtin-regs.o): New target.
5428 (findvar.o): Add $(builtin_regs_h).
5429 * builtin-regs.c, builtin-regs.h: New files.
5430 * std-regs.c: New file.
5431 Partial fix for PR gdb/251.
5432
5433 2002-04-08 Kevin Buettner <kevinb@redhat.com>
5434
5435 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
5436 it's no longer required.
5437
5438 2002-04-08 Andrew Cagney <ac131313@redhat.com>
5439
5440 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
5441
5442 2002-04-08 Kevin Buettner <kevinb@redhat.com>
5443
5444 From Jimi X <jimix@watson.ibm.com>:
5445 * rs6000-tdep.c (rs6000_software_single_step): Use
5446 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
5447 and size. Use target_insert_breakpoint() and
5448 target_remove_breakpoint() to insert and remove breakpoints
5449 instead of explicit memory reads and writes.
5450
5451 2002-04-08 Kevin Buettner <kevinb@redhat.com>
5452
5453 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
5454 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
5455 ELF_OBJECT_FORMAT ifdef.
5456
5457 2002-04-08 Kevin Buettner <kevinb@redhat.com>
5458
5459 From Jimi X <jimix@watson.ibm.com>:
5460 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
5461
5462 2002-04-08 Kevin Buettner <kevinb@redhat.com>
5463
5464 From Jimi X <jimix@watson.ibm.com>:
5465 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
5466 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
5467
5468 2002-04-07 Mark Kettenis <kettenis@gnu.org>
5469
5470 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
5471 s/asprintf/xasprintf/.
5472 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
5473
5474 2002-04-07 Andrew Cagney <ac131313@redhat.com>
5475
5476 I believe Jeff Law denies responsability for this one:
5477 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
5478 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
5479 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
5480 Work-around for PR gdb/366.
5481
5482 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
5483
5484 * remote-e7000.c (write_small, e7000_read_inferior_memory,
5485 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
5486 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
5487
5488 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
5489
5490 * sh-tdep.c (sh_fp_frame_init_saved_regs,
5491 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
5492 information.
5493
5494 2002-04-07 Andrew Cagney <ac131313@redhat.com>
5495
5496 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
5497 maintainer.
5498
5499 2002-04-07 Andrew Cagney <ac131313@redhat.com>
5500
5501 * README (Reporting Bugs in GDB): Document the bug web page as the
5502 prefered way of submitting bugs.
5503 Fix PR gdb/402.
5504
5505 2002-04-06 Andrew Cagney <ac131313@redhat.com>
5506
5507 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
5508 -1. Update comment.
5509 * gdbarch.h, gdbarch.c: Re-generate.
5510
5511 2002-04-07 Andreas Schwab <schwab@suse.de>
5512
5513 * m68klinux-nat.c (fill_fpregset): Properly pass address of
5514 buffer to regcache_collect.
5515
5516 2002-04-06 Andrew Cagney <ac131313@redhat.com>
5517
5518 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
5519 * gdbarch.c, gdbarch.h: Re-generate.
5520
5521 2002-04-06 Andrew Cagney <ac131313@redhat.com>
5522
5523 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
5524 declaration. Fix -Werror.
5525
5526 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
5527
5528 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
5529 * gdbarch.c: Regenerate.
5530
5531 2002-04-05 Michael Snyder <msnyder@redhat.com>
5532
5533 * breakpoint.c (clear_command): Rewrite middle section to
5534 combine two loops with identical control conditions.
5535 Add a cleanup to eliminate a memory leak.
5536 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
5537
5538 2002-04-05 H.J. Lu (hjl@gnu.org)
5539
5540 * solib-svr4.c (bkpt_names): Add "__start".
5541
5542 2002-04-04 Andrew Cagney <ac131313@redhat.com>
5543
5544 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
5545 as test for 64 bit target.
5546
5547 2002-04-05 Andrew Cagney <ac131313@redhat.com>
5548
5549 * h8500-tdep.c (h8500_write_fp): Delete function.
5550 * dwarf2cfi.c (cfi_write_fp): Document as not used.
5551 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
5552 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
5553 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
5554 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
5555 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
5556 (s390_write_fp):
5557 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
5558 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
5559 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
5560 (d10v_write_fp): Delete function.
5561 * inferior.h (write_fp, generic_target_write_fp): Delete
5562 declarations.
5563 * regcache.c (generic_target_write_fp): Delete function.
5564 (write_fp): Delete function.
5565 * gdbarch.sh (TARGET_WRITE_FP): Delete.
5566 * gdbarch.h, gdbarch.c: Regenerate.
5567 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
5568 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
5569 (sparc64_write_fp): Delete declaration.
5570 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
5571 (h8500_write_fp): Delete declaration.
5572
5573 2002-04-04 Andrew Cagney <ac131313@redhat.com>
5574
5575 * sparc-tdep.c (sparc64_write_fp): Delete.
5576 (sparc_push_dummy_frame): Replace write_fp call with code to store
5577 the FP directly.
5578 (sparc_gdbarch_init): Do not initialize write_fp.
5579
5580 2002-04-05 Kevin Buettner <kevinb@redhat.com>
5581
5582 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
5583 clause.
5584
5585 2002-03-29 Jim Blandy <jimb@redhat.com>
5586
5587 * stack.c (get_selected_block): Add new argument `addr_in_block',
5588 used to return the exact code address we used to select the block,
5589 not just the block.
5590 * blockframe.c (get_frame_block, get_current_block): Same.
5591 * frame.h (get_frame_block, get_current_block,
5592 get_selected_block): Update declarations.
5593 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
5594 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
5595
5596 2002-04-05 Michael Snyder <msnyder@redhat.com>
5597
5598 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
5599 warning message.
5600
5601 2002-04-05 J. Brobecker <brobecker@gnat.com>
5602
5603 * utils.c (xfullpath): New function.
5604 * defs.h (xfullpath): Add declaration.
5605 * source.c (openp): Use xfullpath in place of gdb_realpath to
5606 avoid resolving the basename part of filenames when the
5607 associated file is a symbolic link. This fixes a potential
5608 inconsistency between the filenames known to GDB and the
5609 filenames it prints in the annotations.
5610 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
5611 to be able to match a filename with either the real filename, or
5612 the name of any symbolic link to this file.
5613 (lookup_partial_symtab): Ditto.
5614
5615 2002-04-04 Michael Snyder <msnyder@redhat.com>
5616
5617 * breakpoint.c: Add support for hardware breakpoints in overlays.
5618 (overlay_events_enabled): New state variable.
5619 (insert_breakpoints): Use overlay_events_enabled to decide
5620 whether to attempt to set a breakpoint at the overlay load addr.
5621 Handle bp_hardware_breakpoint as well as bp_breakpoint.
5622 (remove_breakpoint): Use overlay_events_enabled to decide
5623 whether breakpoints need to be removed from overlay load addr.
5624 Handle bp_hardware_breakpoint as well as bp_breakpoint.
5625 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
5626 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
5627 disable_overlay_breakpoints): Update overlay_events_enabled.
5628
5629 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
5630
5631 * dwarf2read.c (struct function_range): New.
5632 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
5633 (check_cu_functions): New.
5634 (read_file_scope): Initialize global function lists.
5635 Call dwarf_decode_line after processing children.
5636 (read_func_scope): Add to global function list.
5637 (dwarf_decode_lines): Call check_cu_functions everywhere
5638 record_line is called. Call record_line with a linenumber
5639 of 0 to mark sequence ends.
5640
5641 2002-04-04 Michal Ludvig <mludvig@suse.cz>
5642
5643 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
5644 change sync with glibc.
5645
5646 2002-04-03 Jim Blandy <jimb@redhat.com>
5647
5648 * configure.in: Call AC_C_INLINE.
5649 * configure: Regenerated.
5650
5651 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
5652
5653 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
5654 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
5655
5656 2002-03-31 Mark Kettenis <kettenis@gnu.org>
5657
5658 * NEWS: Mention gcore support on FreeBSD/i386.
5659
5660 * fbsd-proc.c: New file.
5661 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
5662 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
5663
5664 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
5665 while statement.
5666
5667 2002-03-29 Jim Blandy <jimb@redhat.com>
5668
5669 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
5670 unescaped newlines in string literals, but newer ones don't. So
5671 escape them.
5672
5673 2002-03-26 Michael Snyder <msnyder@redhat.com>
5674 Andrew Cagney <cagney@redhat.com>
5675
5676 * cli/cli-dump.c: New file. Dump memory to file,
5677 restore file to memory.
5678 * cli/cli-dump.h: New file.
5679 * Makefile.in: Add rules, dependencies for cli-dump.o.
5680 * NEWS: Mention new commands.
5681
5682 2002-03-28 Michael Snyder <msnyder@redhat.com>
5683
5684 * symfile.c (symbol_file_add): Move test for null symbols to later.
5685
5686 2002-03-27 Andrew Cagney <ac131313@redhat.com>
5687
5688 From veksler at il.ibm.com:
5689 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
5690 the xstrduped original path.
5691 Fix PR gdb/417.
5692
5693 2002-03-27 Michael Snyder <msnyder@redhat.com>
5694
5695 * breakpoint.c (_initialize_breakpoint): Clean up help string.
5696 * infcmd.c (_initialize_infcmd): Ditto.
5697 * language.c (_initialize_language): Ditto.
5698 * symfile.c (_initialize_symfile): Ditto.
5699 * top.c (_init_main): Ditto.
5700 * cli/cli-cmds.c (init_cli_cmds): Ditto.
5701
5702 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
5703
5704 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
5705 vector registers handling.
5706 (skip_prologue): Handle new AltiVec instructions. Fill in new
5707 fields of frame data.
5708 (frame_get_saved_regs): Fill in information for AltiVec registers.
5709
5710 2002-03-27 Jim Blandy <jimb@redhat.com>
5711
5712 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
5713 a function; leave this macro here to invoke that function.
5714 (symbol_init_mangled_name): Declaration for that function.
5715 * symtab.c (symbol_init_mangled_name): New function.
5716
5717 2002-03-27 Andrew Cagney <ac131313@redhat.com>
5718
5719 * valarith.c: Replace strerror with safe_strerror.
5720 * tracepoint.c: Ditto.
5721 * lin-lwp.c: Ditto.
5722 * go32-nat.c: Ditto.
5723 * inflow.c: Ditto.
5724 * gnu-nat.c: Ditto.
5725
5726 2002-03-27 Andreas Schwab <schwab@suse.de>
5727
5728 * event-top.c (command_line_handler): Remove useless if.
5729
5730 2002-03-27 Andreas Jaeger <aj@suse.de>
5731
5732 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
5733 comment.
5734
5735 2002-03-27 Michal Ludvig <mludvig@suse.cz>
5736
5737 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
5738 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
5739 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
5740 (x86_64_linux_dr_get_status, supply_gregset),
5741 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
5742 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
5743 (x86_64_register_info_table): Add.
5744 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
5745 (x86_64_register_raw_size, x86_64_register_virtual_type),
5746 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
5747 general x86_64_register_info_table.
5748 (i386_gdbarch_init): gdbarch_register_bytes is now set
5749 dynamicaly during initialization.
5750 * regformats/reg-x86-64.dat: Synced with changes to registers above.
5751 * gdbserver/linux-x86-64-low.c: Ditto.
5752
5753 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
5754
5755 * gdbserver/server.c (main): Call target_signal_to_host_p
5756 and target_signal_to_host on signals received from the remote.
5757 * gdbserver/remote-utils.c (prepare_resume_reply): Call
5758 target_signal_from_host on signals sent to the remote.
5759 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
5760 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
5761
5762 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
5763
5764 * signals/signals.c: Include "server.h" in gdbserver build.
5765 (target_signal_from_name): Don't use STREQ.
5766 (_initialize_signals): Likewise. Don't include function in
5767 gdbserver build.
5768
5769 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
5770
5771 * signals.c: Moved to...
5772 * signals/signals.c: Here.
5773 * Makefile (signals.o): Update.
5774
5775 2002-03-26 Jeff Law (law@redhat.com)
5776
5777 * somread.c (som_symtab_read): Remove some commented out code and
5778 updated related comments. Do not set the minimal symbol table to
5779 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
5780 in a dynamic executable.
5781 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
5782 where we are unable to find the minimal symbol for the given
5783 PC value.
5784
5785 2002-03-25 Jeff Law (law@redhat.com)
5786
5787 * linux-proc.c (read_mapping): Scan up to end of line for filename.
5788
5789 2002-03-25 Michal Ludvig <mludvig@suse.cz>
5790
5791 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
5792
5793 2002-03-23 Andrew Cagney <ac131313@redhat.com>
5794
5795 * command.h: Update copyright.
5796 (struct cmd_list_element): Replace definition with opaque
5797 declaration.
5798 (enum cmd_types): Document that it will eventually be moved to
5799 cli/cli-decode.h
5800 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
5801 (MALLOCED_REPLACEMENT): Delete macro.
5802 * Makefile.in (cli_decode_h): Add $(command_h).
5803 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
5804 * top.c: Include "cli/cli-decode.h".
5805 * completer.c: Include "cli/cli-decode.h".
5806 * maint.c: Include "cli/cli-decode.h".
5807 * cli/cli-decode.h: Include "command.h".
5808 (enum command_class): Delete.
5809 (enum cmd_types): Comment out.
5810 (enum cmd_auto_boolean): Delete.
5811 (enum var_types): Delete.
5812
5813 2002-03-23 Andrew Cagney <ac131313@redhat.com>
5814
5815 * cli/cli-decode.c: Include "gdb_assert.h".
5816 (add_set_or_show_cmd): New static function.
5817 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
5818 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
5819 all fields, such as func, from the set command.
5820
5821 2002-03-23 Andrew Cagney <ac131313@redhat.com>
5822
5823 * MAINTAINERS (sh-elf): Change warning flag to -w.
5824
5825 2002-03-23 Andrew Cagney <cagney@redhat.com>
5826
5827 * defs.h (error): Add printf format attribute.
5828 * thread-db.c (thread_from_lwp): Fix error format string.
5829 * stack.c (parse_frame_specification): Ditto.
5830 * cli/cli-decode.c (undef_cmd_error): Ditto.
5831 * scm-lang.c (scm_lookup_name): Ditto.
5832 * tracepoint.c (trace_error): Ditto.
5833 * remote-utils.c (usage): Ditto.
5834 * remote.c (compare_sections_command): Ditto.
5835 Fix PR gdb/328.
5836
5837 2002-03-22 Andrew Cagney <ac131313@redhat.com>
5838
5839 * gdbtypes.c (append_composite_type_field): New function.
5840 (init_composite_type): New function.
5841 * gdbtypes.h (append_composite_type_field): Declare.
5842 (init_composite_type): Ditto.
5843
5844 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
5845
5846 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
5847 function.
5848 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
5849 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
5850 structure returning convention for SYSV ABI case, but not
5851 for GNU/Linux, FreeBSD, or NetBSD.
5852
5853 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
5854
5855 * symtab.h (lookup_block_symbol): Add mangled_name argument
5856 to prototype.
5857
5858 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
5859 with new mangled_name argument.
5860 * linespec.c (decode_line_1): Likewise.
5861 * valops (value_of_this): Likewise.
5862 * symtab.c (lookup_transparent_type): Likewise.
5863 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
5864 (lookup_symbol): If we are given a mangled name, pass it down
5865 to lookup_symbol_aux.
5866 (lookup_block_symbol): If we are given a mangled name to check
5867 against, only return symbols which match it.
5868
5869 2002-03-22 Christopher Faylor <cgf@redhat.com>
5870
5871 * win32-nat.c (child_create_inferior): Check for proper shell to use
5872 here, in case the user changes it on the fly.
5873 (_initialize_inftarg): Remove shell path considerations.
5874
5875 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
5876
5877 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
5878 for gdbarch_max_register_raw_size and max_register_virtual_size.
5879 Adjust copyright year.
5880
5881 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
5882
5883 * dbxread.c (process_one_symbol): Extend the first N_SLINE
5884 in a function to cover the entire beginning of the function
5885 as well if it does not already.
5886
5887 2002-03-21 Tom Rix <trix@redhat.com>
5888
5889 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
5890 (rs6000_ptrace64): Renamed from ptrace64.
5891
5892 2002-03-20 Martin M. Hunt <hunt@redhat.com>
5893
5894 * gdbserver/remote-utils.c (remote_open): Don't call
5895 getprotobyname, we're all using TCP here so just use
5896 IPPROTO_TCP.
5897 * gdbserver/gdbreplay.c (remote_open): Ditto.
5898
5899 2002-03-20 Martin M. Hunt <hunt@redhat.com>
5900
5901 * regcache.c (_initialize_regcache): No need to call
5902 build_regcache() at this time; it gets called whenever
5903 the gdbarch changes.
5904
5905 2002-03-20 David O'Brien <obrien@FreeBSD.org>
5906
5907 * sparc-nat.c: Include sys/param.h where possible.
5908
5909 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
5910
5911 Fix PR gdb/422.
5912 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
5913 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
5914 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
5915 complex types.
5916 * stabsread.c (rs6000_builtin_type): Likewise.
5917 (read_sun_floating_type): Likewise.
5918
5919 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
5920
5921 * stabsread.c (read_member_functions): Remove skip code for duplicate
5922 constructor/destructor methods. Use standard parsing for these
5923 methods and just do not chain them to the list of methods after
5924 parsing.
5925
5926 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
5927
5928 * coffread.c: Remove redundant static declarations. Replace
5929 occurrences of `PTR' with `void *'.
5930 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
5931 * top.h (quit_cover): Likewise.
5932 * defs.h (catch_errors): Likewise.
5933
5934 2002-03-18 Andrew Cagney <ac131313@redhat.com>
5935
5936 * defs.h (XMALLOC): Define.
5937 * gdb-events.sh (XMALLOC): Delete macro.
5938 * gdb-events.c, gdb-events.h: Regenerate.
5939 * gdbarch.sh (XMALLOC): Delete macro.
5940 * gdbarch.c: Regenerate.
5941 * serial.c (XMALLOC): Delete macro.
5942 * ui-file.c (XMALLOC): Ditto.
5943 * ser-unix.h (XMALLOC): Ditto.
5944 * sh-tdep.c (XMALLOC): Ditto.
5945 * ui-out.c (XMALLOC): Ditto.
5946 * utils.c (XMALLOC): Ditto.
5947 * i386-tdep.c (XMALLOC): Ditto.
5948 * gdb-events.c (XMALLOC): Ditto.
5949 * d10v-tdep.c (XMALLOC): Ditto.
5950 * cli-out.c (XMALLOC): Ditto.
5951
5952 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
5953 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
5954 * ui-file.c, ui-out.c: Ditto.
5955
5956 2002-03-18 Andrew Cagney <ac131313@redhat.com>
5957
5958 * command.h (struct cmd_list_element): Add field context.
5959 (set_cmd_context, get_cmd_context): Declare.
5960 * cli/cli-decode.h: Ditto.
5961 * cli/cli-decode.c (get_cmd_context): New function.
5962 (set_cmd_context): New function.
5963 (add_cmd): Initialize context.
5964 Part of fixing PR gdb/145 and PR gdb/146.
5965
5966 2002-03-17 Andrew Cagney <ac131313@redhat.com>
5967
5968 * cli/cli-decode.c (cmd_type): New function.
5969 * command.h (cmd_type): Declare.
5970 * infrun.c (set_schedlock_func): Call function cmd_type.
5971 * kod.c (kod_set_os): Call cmd_type.
5972 * cris-tdep.c (cris_version_update): Use function cmd_type.
5973 (cris_mode_update, cris_abi_update): Ditto.
5974
5975 * command.h: (execute_cmd_post_hook): Declare.
5976 (execute_cmd_pre_hook): Declare.
5977 * cli/cli-script.c (clear_hook_in_cleanup): New function.
5978 (execute_cmd_post_hook, execute_cmd_pre_hook): New
5979 functions. Execute pre/post hook while ensuring that afterwords
5980 hook_in is cleared.
5981 * top.c (execute_command): Use execute_cmd_post_hook, and
5982 execute_cmd_pre_hook to execute pre/post commands.
5983 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
5984 hook_stop_stub.
5985 (hook_stop_stub): Call execute_cmd_pre_hook.
5986
5987 2002-03-17 Andrew Cagney <ac131313@redhat.com>
5988
5989 * kod.c (kod_set_os): Revert previous change. Is called by ``info
5990 set'' and this leads to a core dump. Move xstrdup of
5991 operating_system to after check that it is not NULL.
5992
5993 2002-03-17 Andrew Cagney <ac131313@redhat.com>
5994
5995 * kod.c (kod_set_os): Remove unnecessary check that
5996 ``command->type'' is set_cmd.
5997
5998 * valprint.c (set_input_radix): Use input_radix.
5999 (set_output_radix): Use output_radix.
6000 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
6001 isn't reverted.
6002
6003 2002-03-16 Andrew Cagney <ac131313@redhat.com>
6004
6005 * value.h (struct value): Delete field ``substring_addr''. Change
6006 aligner fields to force_doublest_align, force_longest_align,
6007 force_core_addr_align and force_pointer_aligh.
6008
6009 * value.h (struct value): Fix typo in above change.
6010
6011 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6012
6013 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
6014 to fix internal_error from ``maintenance print architecture''.
6015
6016 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6017
6018 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
6019 for gcc versions after gcc-2.8.1.
6020
6021 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6022
6023 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
6024 for method resolution. Restore adjustment of ``this'' pointer after
6025 calling value_struct_elt, which was accidentally removed during the
6026 HP merge.
6027
6028 2002-03-15 Andrew Cagney <ac131313@redhat.com>
6029
6030 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
6031 value_of_register.
6032 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
6033 get_saved_register.
6034 * value.h (value_of_register): Update.
6035
6036 2002-03-14 Richard Henderson <rth@redhat.com>
6037
6038 * configure.in: Detect declaration for canonicalize_file_name.
6039 * utils.c (canonicalize_file_name): Declare, if needed.
6040 (gdb_realpath): Prefer realpath if available and usable.
6041 * config.in, configure: Rebuild.
6042
6043 2002-03-14 Richard Henderson <rth@redhat.com>
6044
6045 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
6046 a constant array bound.
6047
6048 * MAINTAINERS: Add myself to write-after-approval.
6049
6050 2002-03-14 Michael Snyder <msnyder@redhat.com>
6051
6052 * symfile.c (syms_from_objfile): Return immediately if no syms.
6053 (symbol_file_add): Return immediately if no syms.
6054 (find_sym_fns): Return immediately if no syms.
6055
6056 2002-03-13 Michal Ludvig <mludvig@suse.cz>
6057
6058 * gdbserver/remote-util.c (remote_open): Print remote-side's
6059 IP address when remote debugging over the network.
6060
6061 2002-03-12 David O'Brien <obrien@FreeBSD.org>
6062
6063 * config/sparc/fbsd.mh: Fix copyright.
6064 * config/sparc/fbsd.mt: Likewise.
6065
6066 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
6067
6068 * MAINTAINERS: Fix typo in name of gdb warnings option.
6069 (x86-64): Fix formating so that this can be parsed by awk.
6070
6071 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
6072
6073 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
6074 * defs.h: Include "gdb/signals.h".
6075 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
6076
6077 2002-03-10 Michal Ludvig <mludvig@suse.cz>
6078
6079 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
6080 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
6081 from x86-64-tdep.h
6082
6083 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
6084 Don Howard <dhoward@redhat.com>
6085
6086 * mips-tdep.c (ST0_FR): Define.
6087 (mips2_fp_compat): New function, temporarily disabled.
6088 (mips_read_fp_register_single): New function.
6089 (mips_read_fp_register_double): New function.
6090 (mips_print_register): Use them.
6091 (do_fp_register_row): Likewise.
6092
6093 2002-03-09 Andrew Cagney <ac131313@redhat.com>
6094
6095 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
6096 approval''.
6097
6098 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6099
6100 * stabsread.c (read_member_functions): Fix is_stub test for
6101 static member functions, improve comment.
6102
6103 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
6104
6105 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
6106 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
6107 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
6108 commands that set boolean values.
6109 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
6110 (arm_rdi_resume): Always initialize PC.
6111 (arm_rdi_open): Don't use rslt as a boolean.
6112 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
6113 (arm_rdi_fetch_registers, arm_rdi_store_registers)
6114 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
6115 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
6116
6117 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
6118
6119 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
6120 * configure: Rebuilt.
6121
6122 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
6123
6124 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
6125 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
6126
6127 2002-03-06 Andrew Cagney <ac131313@redhat.com>
6128
6129 * cli/cli-decode.c (set_cmd_completer): New function.
6130 * command.h (set_cmd_completer): Declare.
6131 * cli/cli-decode.h (set_cmd_completer): Ditto.
6132
6133 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
6134 * cli/cli-cmds.c (init_cli_cmds): Ditto.
6135 * win32-nat.c (_initialize_inftarg): Ditto.
6136 * remote-rdi.c (_initialize_remote_rdi): Ditto.
6137 * proc-api.c (_initialize_proc_api): Ditto.
6138 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
6139 * source.c (_initialize_source): Ditto.
6140 * exec.c (_initialize_exec): Ditto.
6141 * solib.c (_initialize_solib): Ditto.
6142 * top.c (init_main): Ditto.
6143 * tracepoint.c (_initialize_tracepoint): Ditto.
6144 * symfile.c (_initialize_symfile): Ditto.
6145 * printcmd.c (_initialize_printcmd): Ditto.
6146 * infcmd.c (_initialize_infcmd): Ditto.
6147 * corefile.c (_initialize_core): Ditto.
6148
6149 2002-03-05 Andrew Cagney <ac131313@redhat.com>
6150
6151 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
6152
6153 2002-03-05 Andrew Cagney <ac131313@redhat.com>
6154
6155 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
6156
6157 2002-03-05 Andrew Cagney <ac131313@redhat.com>
6158
6159 * NEWS: Update headings, 5.2 has branched.
6160
6161 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
6162
6163 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
6164 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
6165 (register_addr, REGISTER_RAW_SIZE): Likewise.
6166 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
6167 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
6168
6169 2002-03-03 Michal Ludvig <mludvig@suse.cz>
6170
6171 * MAINTAINERS (x86-64): Add myself.
6172 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
6173 changed value_ptr -> struct value *
6174
6175 2002-03-01 David O'Brien <obrien@FreeBSD.org>
6176
6177 * configure.host (sparc64-*-freebsd): Add.
6178 * configure.tgt: Likewise.
6179 * config/sparc/fbsd.mh: New file.
6180 * config/sparc/fbsd.mt: Likewise.
6181 * config/sparc/nm-fbsd.h: Likewise.
6182 * config/sparc/tm-fbsd.h: Likewise.
6183
6184 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
6185
6186 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
6187 regformats/reg-s390x.dat.
6188
6189 2002-03-01 Andrew Cagney <ac131313@redhat.com>
6190
6191 * utils.c: Add FIXME explaining true/false problem.
6192
6193 2002-02-28 Andrew Cagney <ac131313@redhat.com>
6194
6195 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
6196
6197 2002-02-28 Michael Chastain <mec@shout.net>
6198
6199 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
6200
6201 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
6202
6203 * gdbserver/linux-s390-low.c: New file.
6204 * regformats/reg-s390.dat: New file.
6205 * regformats/reg-s390x.dat: New file.
6206 * gdbserver/configure.srv: Add S/390.
6207 * gdbserver/Makefile.in: Add S/390.
6208 * configure.tgt: Enable gdbserver for S/390.
6209
6210 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
6211
6212 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
6213 first line of the doc string for "info dos", except at the end of
6214 the sentence, since the short help stops at the first period.
6215
6216 2002-02-28 Jason Merrill <jason@redhat.com>
6217
6218 * dwarf2read.c (dwarf_cfi_name): Add new codes.
6219
6220 2002-02-27 Fred Fish <fnf@redhat.com>
6221
6222 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
6223 comment (dumy -> dummy).
6224
6225 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6226
6227 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
6228
6229 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
6230
6231 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
6232
6233 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
6234
6235 * gdbserver/acconfig.h: New file.
6236 * gdbserver/i387-fp.c: New file.
6237 * gdbserver/i387-fp.h: New file.
6238 * gdbserver/linux-x86-64.c: New file.
6239 * regformats/reg-x86-64.dat: New file.
6240 * configure.tgt: Add x86_64-*-linux* gdbserver support.
6241 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
6242 * gdbserver/configure.in: Add support for regsets.
6243 * gdbserver/config.in: Regenerate.
6244 * gdbserver/configure: Regenerate.
6245 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
6246 * gdbserver/linux-low.h: New file.
6247 * gdbserver/linux-low.c: Include "linux-low.h". Add support
6248 for regsets.
6249 * gdbserver/linux-arm-low.c: Include "linux-low.h".
6250 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
6251 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
6252 * gdbserver/linux-mips-low.c: Include "linux-low.h".
6253 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
6254 * gdbserver/linux-sh-low.c: Include "linux-low.h".
6255 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
6256 "i387-fp.h". Add PTRACE_GETREGS and friends.
6257 * gdbserver/regcache.c (supply_register): New function.
6258 (supply_register_by_name): New function.
6259 (collect_register): New function.
6260 (collect_register_by_name): New function.
6261
6262 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
6263
6264 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
6265 (config.status): Add configure.srv dependency.
6266 (server_h): Add config.h dependency.
6267
6268 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
6269
6270 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
6271 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
6272 * gdbserver/configure.srv: Change i386-*-linux* to use
6273 reg-i386-linux.o.
6274
6275 2002-02-26 Andrew Cagney <ac131313@redhat.com>
6276
6277 * x86-64-tdep.c: Re-indent. Update copyright date.
6278
6279 2002-02-26 Andrew Cagney <ac131313@redhat.com>
6280
6281 From Michal Ludvig <mludvig@suse.cz>:
6282 * x86-64-tdep.c (value.h): Delete.
6283 (gdb_assert.h): Include.
6284 (x86_64_register_convert_to_virtual,
6285 x86_64_register_convert_to_raw ): Add check which lets only
6286 floating-point values to be converted.
6287 (value_push): Delete.
6288 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
6289 (i386_gdbarch_init): Number of register_bytes fixed.
6290
6291 2002-02-26 Andrew Cagney <ac131313@redhat.com>
6292
6293 * MAINTAINERS: Add x86-64 target.
6294
6295 2002-02-26 Andrew Cagney <ac131313@redhat.com>
6296
6297 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
6298 * osfsolib.c (solib_map_sections): Ditto.
6299 * irix5-nat.c (solib_map_sections): Ditto.
6300 * corelow.c (gdb_check_format): Ditto.
6301 * symfile.c (symfile_bfd_open): Ditto.
6302 * solib.c (solib_map_sections): Ditto.
6303 Fix PR gdb/354.
6304
6305 2002-02-26 Andrew Cagney <ac131313@redhat.com>
6306
6307 * remote.c (_initialize_remote): By default, disable ``e'' and
6308 ``E'' step out-of-range packets.
6309
6310 2002-02-26 Andreas Schwab <schwab@suse.de>
6311
6312 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
6313 m68k_linux_frame_saved_pc.
6314 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
6315 in_sigtramp.
6316 (SIGCONTEXT_PC_OFFSET): Remove.
6317 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
6318 m68k_linux_sigtramp_saved_pc): New functions.
6319 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
6320 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
6321 (UCONTEXT_PC_OFFSET): Define.
6322 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
6323 non-RT and RT signal trampolines.
6324
6325 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
6326
6327 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
6328 (TARGET_NBPG, STACK_END_ADDR): Delete
6329 (VARIABLES_INSIDE_BLOCK): Delete.
6330
6331 2002-02-25 Andrew Cagney <ac131313@redhat.com>
6332
6333 * utils.c (perror_with_name): Make string parameter constant.
6334 (print_sys_errmsg): Ditto.
6335 (query): Ditto.
6336 * defs.h (perror_with_name): Update.
6337 (print_sys_errmsg): Update.
6338 (query): Update.
6339
6340 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
6341
6342 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
6343 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
6344
6345 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6346
6347 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
6348 if it already matches the current architecture from the exec file.
6349 Include arch-utils.h for gdbarch_info_init prototype.
6350 * Makefile.in (rs6000-nat.o): Update dependencies.
6351
6352 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
6353
6354 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
6355 list of exported variables.
6356
6357 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
6358
6359 * gdbserver/configure.srv: New file.
6360 * gdbserver/configure.in: Use configure.srv instead
6361 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
6362 from it.
6363 * gdbserver/configure: Regenerated.
6364 * gdbserver/terminal.h: New file.
6365 * gdbserver/Makefile.in: Update for configure changes. Remove
6366 more unneeded include paths.
6367
6368 2002-02-24 Andrew Cagney <ac131313@redhat.com>
6369
6370 From wiz at danbala:
6371 * config/sparc/tm-sp64.h: Fix grammar and typos.
6372 Fix PR gdb/287.
6373
6374 2002-02-24 Andrew Cagney <ac131313@redhat.com>
6375
6376 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
6377 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
6378 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
6379 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
6380 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
6381 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
6382 * s390-tdep.c: Ditto.
6383 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
6384 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
6385 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
6386 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
6387 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
6388 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
6389 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
6390 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
6391 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
6392 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
6393 Fix PR gdb/378.
6394
6395 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6396
6397 * lin-thread.c: Delete file.
6398 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
6399 to gdb_proc_service.h.
6400 * configure: Re-generate.
6401
6402 * ocd.c (ocd_open): Do not try to open the "ocd" device.
6403 * serial.c (serial_open): Delete check for "ocd".
6404 Fix PR gdb/349.
6405
6406 * Makefile.in (linux-thread.o): Delete target.
6407 * linux-thread.c: Delete file.
6408
6409 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
6410 renamed SH files to be consistent.
6411
6412 * symtab.c (sort_search_symbols): Use xfree.
6413
6414 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
6415
6416 * arm-linux-tdep.c (arm_linux_init_abi): Register
6417 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
6418 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
6419 definition with undef, since we don't want the sysvr4 definition.
6420 (SKIP_TRAMPOLINE_CODE): Likewise.
6421
6422 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6423
6424 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
6425
6426 * configure.in: (AC_CHECK_FUNCS) Added test for
6427 canonicalize_file_name Regenerated.
6428 * config.in, configure: Regenerated.
6429 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
6430 defined use canonicalize_file_name.
6431
6432 2002-02-23 Michael Chastain <mec@shout.net>
6433
6434 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
6435
6436 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6437
6438 * README: Remove references to cygnus.com.
6439 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
6440 dot com'' form. Remove references to cygnus.com and sourceware.
6441
6442 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6443
6444 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
6445 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
6446 1003.1-2001 no longer allows "head -1".
6447 * gdb/Makefile.in (version.c): Likewise.
6448 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
6449 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
6450 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
6451
6452 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6453
6454 * cli/cli-decode.c (cmd_cfunc_eq): New function.
6455 * command.h (cmd_cfunc_eq): Declare.
6456 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
6457
6458 * cli/cli-cmds.h (is_complete_command): Change parameter to a
6459 ``struct cmd_list_element *''.
6460 * cli/cli-cmds.c (is_complete_command): Update. Use
6461 cmd_cfunc_eq.
6462 * top.c (execute_command): Pass the command to
6463 is_complete_command.
6464 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
6465
6466 2002-02-23 Andrew Cagney <ac131313@redhat.com>
6467
6468 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
6469 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
6470 architecture defines.
6471 * s390-tdep.c (s390_gdbarch_init): Likewise.
6472
6473 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
6474
6475 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
6476 (arm_linux_push_arguments): Likewise.
6477 (arm_linux_init_abi): Register them. Also register linux-specific
6478 call_dummy_words.
6479 (find_minsym_and_objfile): Use strcmp, not STREQ.
6480 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
6481 (arm_linux_call_dummy_words): Delete declaration.
6482 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
6483 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
6484 declarations.
6485 (LOWEST_PC): Delete.
6486
6487 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6488
6489 * maint.c (print_section_info): Do not prepend `0x' to filepos
6490 output, it will be handled by local_hex_string_custom.
6491
6492 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
6493
6494 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
6495 (store_newfpe_double, store_newfpe_extended, store_fpregister)
6496 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
6497
6498 2002-02-22 Jim Blandy <jimb@redhat.com>
6499
6500 Indicate that the bcache functions don't change the strings
6501 they're passed.
6502 * bcache.h (bcache, hash): Add `const' keywords to declarations.
6503 * bcache.c (bcache, hash): Add `const' keywords to definitions.
6504
6505 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
6506
6507 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
6508
6509 2002-02-21 Christopher Faylor <cgf@redhat.com>
6510
6511 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
6512 find the complete path to a loaded DLL.
6513
6514 2002-02-21 Fred Fish <fnf@redhat.com>
6515
6516 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
6517 that marks the end of the range of a function, enter a line number
6518 entry that has a line number of zero and a PC offset that matches
6519 the end of the function. This starts a range of PC's for which no
6520 line number information is known.
6521 * symtab.c (find_pc_sect_line): If our best fit is in a range of
6522 PC's for which no line number info is found (line number is zero)
6523 then we didn't find any valid line information.
6524 * symtab.h: Document use of zero line number entry.
6525
6526 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
6527
6528 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
6529 (have_ptrace_getvrregs): Define for run time checks.
6530 (gdb_vrregset_t): New type for Altivec register handling.
6531 (fetch_register, store_register): Fetch/store altivec register
6532 when needed.
6533 (fetch_altivec_register, store_altivec_register): New functions.
6534 (supply_vrregset, fill_vrregset): New functions.
6535 (fetch_altivec_registers, store_altivec_registers): New functions.
6536 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
6537 registers as well.
6538
6539 2002-02-21 Jiri Smid <smid@suse.cz>
6540
6541 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
6542
6543 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
6544
6545 * Makefile.in (armnbsd-nat.o): Update dependencies.
6546 * armnbsd-nat.c (supply_gregset): New function. Common code to
6547 supply the integer register set.
6548 (supply_fparegset): New function. Similar for FPA registers.
6549 (fetch_regs, fetch_fp_regs): Use them.
6550 (fetch_core_registers): Likewise.
6551 (fetch_elfcore_registers): New function.
6552 (arm_netbsd_elfcore_fns): New core-file type specification.
6553 (_initialize_arm_netbsd_nat): Register it.
6554
6555 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
6556
6557 * armnbsd-nat.c: Include gdbcore.h.
6558 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
6559 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
6560 'void' to declaration, to shut up ARI.
6561 (fetch_core_registers): Make static. Rewrite using supply_register.
6562 (arm_netbsd_core_fns): New core-file type specification.
6563 (_initialize_arm_netbsd_nat): New function.
6564
6565 2002-02-21 Christopher Faylor <cgf@redhat.com>
6566
6567 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
6568 value.
6569
6570 2002-02-20 Christopher Faylor <cgf@redhat.com>
6571
6572 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
6573 fails.
6574
6575 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
6576
6577 * jv-exp.y (parse_number): Change type of implicit longs
6578 to builtin_type_uint64.
6579
6580 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
6581
6582 * gdbserver/linux-low.c (mywait): Change argument to waitpid
6583 to be an integer instead of a `union wait'.
6584
6585 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
6586
6587 * mips-linux-nat.c: Call the operating system GNU/Linux.
6588 * mips-linux-tdep.c: Likewise.
6589 * mips-tdep.c: Likewise.
6590
6591 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
6592
6593 Fix PR gdb/265.
6594 * jv-exp.y (parse_number): Handle 64-bit integers.
6595
6596 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
6597
6598 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
6599 AC_STDC_HEADERS to AC_HEADER_STDC.
6600 * gdbserver/configure: Regenerated.
6601
6602 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
6603
6604 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
6605 is defined.
6606 * sparc-tdep.c (get_longjmp_target): Likewise.
6607
6608 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
6609
6610 * News: Add news about ARM and Multi-arch. Mention the new target
6611 arm*-*-netbsd*.
6612
6613 2002-02-19 Jim Blandy <jimb@redhat.com>
6614
6615 * stabsread.c (error_type_complaint): Improve error message.
6616
6617 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
6618
6619 * gdbserver/README: Update documentation.
6620 * gdbserver/configure.in: Update configury to match documentation.
6621 * gdbserver/Makefile.in: Likewise.
6622 * gdbserver/configure: Regenerated.
6623 * gdbserver/aclocal.m4: New file, generated by aclocal.
6624 * gdbserver/config.in: New file, generated by autoheader.
6625
6626 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6627
6628 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
6629 armnbsd-nat.c.
6630
6631 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6632
6633 * arm-tdep.h (enum arm_float_model): New enum.
6634 (struct gdbarch_tdep): Add fp_model.
6635 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
6636 up floating-point conversions until we know the floating-point model
6637 in use by the inferior. Don't complain about being unable to
6638 determine the ABI of the inferior when we don't have one.
6639 (arm_extract_return_value): Support different floating-point models.
6640 (arm_store_return_value): Likewise.
6641 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
6642 ARM_FLOAT_SOFT.
6643 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
6644
6645 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6646
6647 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
6648 of ``current_gdbarch''.
6649
6650 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6651
6652 * armnbsd-nat.c : ANSIfy all function declarations.
6653 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
6654 (fetch_inferior_registers): Re-implement in terms of above.
6655 (store_register, store_regs, store_fp_register, store_fp_regs): New.
6656 (store_inferior_registers): Re-implement in terms of above.
6657
6658 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6659
6660 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
6661 kernel.
6662 * arm-linux-tdep.c: Likewise.
6663 * config/arm/tm-linux.h: Likewise.
6664
6665 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6666
6667 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
6668 * config/arm/nbsd.mt (TM_FILE): Delete.
6669 * config/arm/tm-nbsd.h: Delete.
6670
6671 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6672
6673 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
6674 Initialize CALL_DUMMY_LENGTH.
6675
6676 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
6677
6678 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
6679 function.
6680 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
6681 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
6682 defines one thing and that is incorrect for this port.
6683 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
6684
6685 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
6686
6687 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
6688
6689 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
6690
6691 * win32-nat.c (display_selector): New function. Displays information
6692 about the information returned by GetThreadSelectorEntry API function.
6693 (display_selectors): New function. Displays the infomation of
6694 the selector given as argument, or of CS, DS ans FS selectors
6695 if no argument is given.
6696 ( _initialize_inftarg): Add "w32" as info prefix command.
6697 Add "info w32 selector" as command calling display_selectors.
6698
6699 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
6700
6701 * i386-tdep.c (get_longjmp_target): Fix compilation failure
6702 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
6703 if not defined.
6704
6705 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
6706
6707 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
6708
6709 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
6710
6711 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
6712 (arm_fix_call_dummy): Call it.
6713 (arm_call_dummy_breakpoint_offset): Delete.
6714 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
6715 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
6716
6717 2002-02-18 Andrew Cagney <ac131313@redhat.com>
6718
6719 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
6720 Default to func_frame_chain_valid.
6721 * gdbarch.h, gdbarch.c: Re-generate.
6722 * frame.h (FRAME_CHAIN_VALID): Delete definition.
6723
6724 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
6725
6726 * ppc-linux-nat.c: Update copyright.
6727 (fetch_register, store_register): Add tid parameter, don't compute
6728 tid here.
6729 (fetch_ppc_registers, store_ppc_registers): Add tid
6730 parameter. Pass it along to callees.
6731 (fetch_inferior_registers, store_inferior_registers): Compute tid
6732 here, and pass it to calleed functions.
6733 (fill_gregset, supply_fpregset): Clean up formatting.
6734
6735 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
6736
6737 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
6738 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
6739
6740 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
6741
6742 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
6743 * gdbarch.c gdbarch.h: Regenerate.
6744 * breakpoint.c (create_longjmp_breakpoint): Always compile this
6745 function.
6746 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
6747 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
6748 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
6749
6750 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
6751 * arm-tdep.c (arm_get_longjmp_target): New function.
6752 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
6753 this to a positive value register arm_get_longjmp_target as the
6754 longjmp handler.
6755 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
6756 (arm_linux_init_abi): Set up longjmp description in tdep.
6757 * armnbsd-nat.c (get_longjmp_target): Delete.
6758 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
6759 description in tdep.
6760 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
6761 (get_longjmp_target): Delete declaration.
6762 (GET_LONGJMP_TARGET): Delete.
6763 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
6764 (GET_LONGJMP_TARGET): Delete.
6765
6766 2002-02-17 Kevin Buettner <kevinb@redhat.com>
6767
6768 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
6769 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
6770 of ``current_gdbarch''.
6771
6772 2002-02-17 Tom Tromey <tromey@redhat.com>
6773
6774 * cli/cli-cmds.c (compare_strings): New function.
6775 (complete_command): Only print each unique item once.
6776 * completer.h (complete_line): Declare.
6777 * completer.c (complete_line): New function.
6778 (line_completion_function): Use it.
6779
6780 2002-02-16 Andrew Cagney <ac131313@redhat.com>
6781
6782 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
6783 * gdbarch.h, gdbarch.c: Re-generate.
6784
6785 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
6786
6787 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
6788
6789 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
6790
6791 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6792 * valops.c (value_arg_coerce): Don't take the address of a reference
6793 to convert an argument to a reference.
6794
6795 2002-02-15 Christopher Faylor <cgf@redhat.com>
6796
6797 * win32-nat.c (get_image_name): New function.
6798 (handle_load_dll): Use get_image_name function.
6799 (get_child_debug_event): Avoid registering debug events until possibly
6800 execed process is started.
6801 (child_create_inferior): Allow invocation via shell so that command
6802 line redirection, etc. works ok.
6803 (_initialize_inftarg): Add new command: "set shell" to control whether
6804 a shell is used to start a process.
6805
6806 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
6807
6808 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
6809 instead of find_register_by_number.
6810 (cannot_store_register): Likewise.
6811
6812 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
6813
6814 * dwarf2read.c: Replace fprintf (stderr, ...) by
6815 fprintf_unfiltered (gdb_stderr, ...).
6816
6817 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
6818
6819 * gdbserver/gdbserver.1: Document --attach.
6820
6821 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
6822
6823 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
6824 descriptions.
6825 * arm-tdep.c (arm_default_arm_le_breakpoint)
6826 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
6827 (arm_default_thumb_be_breakpoint): New. Initialize them from
6828 traditional breakpoint defines.
6829 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
6830 (arm_gdbarch_init): Initialize new breakpoint variables.
6831 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
6832 (arm_linux_init_abi): Initialize linux-specific breakpoint.
6833 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
6834 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
6835 code out to ...
6836 (arm_netbsd_init_abi_common): ... here; new function.
6837 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
6838 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
6839 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
6840 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
6841
6842 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
6843
6844 * arm-tdep.h (enum arm_abi): New enum.
6845 (struct gdbarch_tdep): New structure.
6846 (LOWEST_PC): Provide a default.
6847 (arm_gdbarch_register_os_abi): Declare new function.
6848 * arm-tdep.c (arm_abi_names): New array.
6849 (process_note_abi_tag_sections): New function.
6850 (get_elfosabi): New function.
6851 (arm_gdbarch_register_os_abi): New function.
6852 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
6853 support for that ABI has been built in, then call the appropriate
6854 configuration routine. Use gdbarch_num_regs() to get the number
6855 of registers.
6856 (arm_dump_tdep): New function.
6857 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
6858 place-holder functions.
6859 (_initialize_arm_tdep): Register them.
6860 * config/arm/tm-arm.h (LOWEST_PC): Delete.
6861
6862 * armnbsd-tdep.c: New file.
6863 * Makefile.in (armnbsd-tdep.o): Add dependencies.
6864 * config/arm/nbsd.mt (TDEPFILES): Add it.
6865 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
6866
6867 * armnbsd-nat.c: Include regcache.h.
6868 * Makefile.in (armnbsd-nat.o): Update dependency list.
6869
6870 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
6871
6872 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
6873
6874 * gdbserver/Makefile.in: Fix typos in target rules.
6875
6876 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
6877
6878 Fix part of PR gdb/267.
6879 * linespec.c (find_methods): Handle constructors specially for now.
6880
6881 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
6882
6883 * arm-tdep.c (arm_push_arguments): Eliminate special float type
6884 handling.
6885 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
6886 standard_coerce_float_to_double().
6887
6888 2002-02-14 Christopher Faylor <cgf@redhat.com>
6889
6890 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
6891 GDBINIT_FILENAME.
6892
6893 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
6894
6895 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
6896 find_variant_by_name, because it confuses the multiarch
6897 framework. Return NULL if there isn't an architecture with the
6898 user supplied name, instead of forcing a different one without
6899 recording the change with the multiarch machinery.
6900 (find_variant_by_name): Delete.
6901
6902 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6903
6904 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
6905 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
6906
6907 2002-02-13 Martin M. Hunt <hunt@redhat.com>
6908
6909 * stack.c (print_frame_info_base): When calling
6910 print_frame_info_listing_hook, set current_source_symtab.
6911
6912 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
6913
6914 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
6915 and remove unused $(INCLUDE_DIR).
6916 Add regcache.c to OBS.
6917 Add generated register protocol files to clean target.
6918 Update dependencies for new objects, obsolete old target code.
6919
6920 * gdbserver/linux-low.c: Remove all platform-specific code to
6921 new files. Remove various dead code. Update to use regcache
6922 functionality.
6923 * gdbserver/remote-utils.c (fromhex): Add return statement
6924 to quiet warning.
6925 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
6926 constant.
6927 (input_interrupt): Add integer parameter to match prototype
6928 of a signal handler.
6929 (outreg): Use register_data ().
6930 (prepare_resume_reply): Use gdbserver_expedite_regs.
6931 * gdbserver/server.c (main): Dynamically allocate own_buf because
6932 PBUFSIZ is no longer constant. Use registers_to_string () and
6933 registers_from_string ().
6934 * gdbserver/server.h: No longer include "defs.h". Add prototypes
6935 for error (), fatal (), and warning (). Update definition of
6936 PBUFSIZ to use regcache functionality. Add include guard.
6937 * gdbserver/utils.c (fatal): Add missing ``const''.
6938 (warning): New function.
6939
6940 * regformats/regdat.sh: Include "regcache.h" in generated files.
6941 Provide init_registers () function.
6942 * regformats/regdef.h: Add prototype for set_register_cache ().
6943 Add include guard.
6944
6945 * gdbserver/linux-arm-low.c: New file.
6946 * gdbserver/linux-i386-low.c: New file.
6947 * gdbserver/linux-ia64-low.c: New file.
6948 * gdbserver/linux-m68k-low.c: New file.
6949 * gdbserver/linux-mips-low.c: New file.
6950 * gdbserver/linux-ppc-low.c: New file.
6951 * gdbserver/linux-sh-low.c: New file.
6952
6953 * gdbserver/regcache.c: New file.
6954 * gdbserver/regcache.h: New file.
6955
6956 * gdbserver/low-linux.c: Removed obsolete file.
6957
6958 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
6959
6960 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
6961 * config/i386/linux.mt: Likewise.
6962 * config/ia64/linux.mt: Likewise.
6963 * config/m68k/linux.mh: Likewise.
6964 * config/powerpc/linux.mh: Likewise.
6965 * config/mips/linux.mt: Likewise.
6966
6967 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
6968
6969 * config/i386/i386lynx.mh: Mark gdbserver variables
6970 as (currently) obsolete for this target.
6971 * config/i386/nbsd.mt: Likewise.
6972 * config/i386/nbsdelf.mt: Likewise.
6973 * config/m32r/m32r.mt: Likewise.
6974 * config/m68k/m68klynx.mh: Likewise.
6975 * config/m68k/nbsd.mt: Likewise.
6976 * config/m68k/sun3os4.mh: Likewise.
6977 * config/mips/vr5000.mt: Likewise.
6978 * config/ns32k/nbsd.mt: Likewise.
6979 * config/pa/hppabsd.mh: Likewise.
6980 * config/pa/hppaosf.mh: Likewise.
6981 * config/powerpc/nbsd.mt: Likewise.
6982 * config/rs6000/rs6000lynx.mh: Likewise.
6983 * config/s390/s390.mt: Likewise.
6984 * config/s390/s390x.mt: Likewise.
6985 * config/sparc/sparclynx.mh: Likewise.
6986 * config/sparc/sun4os4.mh: Likewise.
6987 * config/i386/x86-64linux.mt: Likewise.
6988 * config/sparc/linux.mh: Likewise.
6989
6990 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
6991
6992 * configure.tgt: Configure gdbserver only for known working
6993 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
6994 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
6995 SUBDIRS if it is configured. Update comment for ${nativefile}.
6996 * configure: Regenerated.
6997
6998 2002-02-13 Michael Snyder <msnyder@redhat.com>
6999
7000 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
7001
7002 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
7003 (default_gcore_mach): Just return 0, work around a problem in bfd.
7004 (default_gcore_target): OK to return NULL if exec_bfd is null.
7005 (make_mem_sec): Use a cast, avoid a warning.
7006
7007 * procfs.c (find_memory_regions_callback): Use a cast instead of
7008 calling host_pointer_to_address (which complains if
7009 sizeof (host pointer) != sizeof (target pointer)).
7010 (procfs_make_note_section): Avoid overflow in psargs string.
7011
7012 * procfs.c (procfs_make_note_section): Make the default
7013 implementation return an error.
7014
7015 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
7016
7017 * procfs.c (procfs_make_note_section): Provide a default definition
7018 (for alpha-dec-osf4.0f). Fix typos.
7019
7020 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
7021
7022 * linux-proc.c: Add include of regcache.h.
7023 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
7024
7025 2002-02-13 Andrew Cagney <ac131313@redhat.com>
7026
7027 From 2002-01-18 Greg McGary <greg@mcgary.org>:
7028 * memattr.c (create_mem_region): Disallow useless empty region.
7029 Regions are half-open intervals, so allow [A..B) [B..C) as
7030 non-overlapping.
7031
7032 2002-02-13 Michael Chastain <mec@shout.net>
7033
7034 * defs.h: Kill CONST_PTR.
7035 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
7036 * c-lang.c (c_builtin_types): Likewise.
7037 * ch-lang.c (ch_builtin_types): Likewise.
7038 * f-lang.c (f_builtin_types): Likewise.
7039 * language.c (unknown_builtin_types): Likewise.
7040 * m2-lang.c (m2_builtin_types): Likewise.
7041 * p-lang.c (pascal_builtin_types): Likewise.
7042 * scm-lang.c (c_builtin_types): Likewise.
7043
7044 2002-02-13 Keith Seitz <keiths@redhat.com>
7045
7046 * arm-tdep.h (arm_get_next_pc): Add declaration.
7047
7048 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
7049
7050 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
7051 with other related struct-returning functions.
7052 (arm_extract_struct_value_address): New function.
7053 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
7054 initialize float_format, double_format and long_double_format as
7055 appropriate to the endianness of the target.
7056 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
7057 (arm_use_struct_convention): Delete declaration.
7058 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
7059
7060 2002-02-13 Keith Seitz <keiths@redhat.com>
7061
7062 * defs.h (core_addr_to_string_nz): New function.
7063
7064 2002-02-13 Mark Kettenis <kettenis@gnu.org>
7065
7066 Apply missing bits of 2002-01-15 patch.
7067 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
7068 (fill_fpregset): Use i387_fill_fsave.
7069
7070 2002-02-12 Keith Seitz <keiths@redhat.com>
7071
7072 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
7073 (core_addr_to_string_nz): New function.
7074
7075 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
7076
7077 * arm-linux-nat.c: Really include arm-tdep.h.
7078 * config/arm/tm-linux.h (struct type, struct value): Declare.
7079
7080 2002-02-11 Michael Snyder <msnyder@redhat.com>
7081
7082 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
7083 (gcore section): Ifdef for Solaris and Unixware only.
7084 (procfs_do_thread_registers): Unixware needs one lwpstatus
7085 per thread (not one prstatus or pstatus).
7086 (procfs_make_note_section): Iterate only over kernel threads (lwps),
7087 not over all gdb threads. For unixware, call elfcore_write_pstatus
7088 once before iterating over threads.
7089
7090 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
7091
7092 * arm-tdep.h: New file.
7093 * arm-tdep.c: Include arm-tdep.h.
7094 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
7095 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
7096 (arm_print_float_info, arm_register_type, convert_to_extended)
7097 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
7098 (arm_extract_return_value, arm_register_name): Make static.
7099 (arm_software_single_step): Similarly. Fix types in declaration.
7100 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
7101 (arm_store_return_value, arm_store_struct_return): New functions.
7102 (arm_gdbarch_init): Register the above functions. Also register
7103 call_dummy_start_offset, sizeof_call_dummy_words,
7104 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
7105 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
7106 max_register_virtual_size, register_size. Set up
7107 prologue_cache.saved_regs here, rather than ...
7108 (_initialize_arm_tdep): ... here.
7109 * config/arm/tm-arm.h (struct type, struct value): Delete forward
7110 declarations.
7111 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
7112 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
7113 (arm_print_float_info, arm_register_type, convert_to_extended)
7114 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
7115 (arm_extract_return_value, arm_register_name): Delete declarations.
7116 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
7117 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
7118 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
7119 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
7120 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
7121 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
7122 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
7123 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
7124 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
7125 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
7126 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
7127 (arm_get_next_pc): No-longer static -- these are needed by the RDI
7128 interface.
7129 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
7130 * remote-rdi.c remote-rdp.c: Likewise.
7131 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
7132 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
7133 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
7134 definition.
7135
7136 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
7137 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
7138 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
7139 from non-ARM_ prefixed definitions.
7140 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
7141 all uses of above.
7142 * remote-rdi.c remote-rdp.c: Likewise.
7143 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
7144
7145 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
7146
7147 * arm-tdep.c (arm_frameless_function_invocation)
7148 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
7149 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
7150 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
7151 (arm_pop_frame, arm_get_next_pc): Make static.
7152 (arm_gdbarch_init): Register above in gdbarch structure.
7153 (arm_read_fp): Renamed from arm_target_read_fp.
7154 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
7155 * config/arm/tm-arm.h (arm_frameless_function_invocation)
7156 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
7157 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
7158 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
7159 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
7160 (arm_pc_is_thumb_dummy): Delete declarations.
7161 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
7162 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
7163 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
7164 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
7165
7166 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
7167
7168 * symtab.c (compare_search_syms): New function.
7169 (sort_search_symbols): New function.
7170 (search_symbols): Sort symbols after searching rather than
7171 before.
7172
7173 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7174
7175 * NEWS: Linux -> GNU/Linux.
7176
7177 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7178
7179 * gdbarch.sh: For for level one methods, disallow a definition
7180 when partially multi-arched. Add comments explaining rationale.
7181 * gdbarch.h: Re-generate.
7182
7183 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7184
7185 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
7186 multi-arch partial.
7187
7188 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7189
7190 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
7191 field. Use diff -u.
7192 * gdbarch.c: Re-generate.
7193
7194 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7195
7196 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
7197 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
7198 partial.
7199
7200 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7201
7202 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
7203 multi-arch partial.
7204 (PUSH_ARGUMENTS): Switch to using predefault.
7205 * gdbarch.c: Regenerate.
7206
7207 2002-02-10 Andrew Cagney <ac131313@redhat.com>
7208
7209 * valops.c (PUSH_ARGUMENTS): Delete definition.
7210 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
7211 partial. Default to default_push_arguments.
7212 * gdbarch.h, gdbarch.c: Regenerate.
7213
7214 2002-02-09 Andrew Cagney <ac131313@redhat.com>
7215
7216 * defs.h (throw_exception): Rename return_to_top_level. Update
7217 comments.
7218 * utils.c (error_stream, internal_verror, quit): Ditto.
7219 * top.c (throw_exception, catcher): Ditto.
7220 * sparclet-rom.c (sparclet_load): Ditto.
7221 * remote.c (interrupt_query, minitelnet): Ditto.
7222 * remote-sds.c (interrupt_query): Ditto.
7223 * remote-mips.c (mips_error, mips_kill): Ditto.
7224 * ocd.c (interrupt_query): Ditto.
7225 * monitor.c (monitor_interrupt_query): Ditto.
7226 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
7227 * target.h: Update comment.
7228
7229 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
7230
7231 2002-02-09 Andrew Cagney <ac131313@redhat.com>
7232
7233 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
7234 default_double_format.
7235 * gdbarch.h, gdbarch.c: Re-generate.
7236 * findvar.c (floatformat_unknown): Delete variable definition.
7237 * doublest.h (floatformat_unknown): Delete variable declaration.
7238
7239 2002-02-09 Jim Blandy <jimb@redhat.com>
7240
7241 * stabsread.c (read_type): Add code to parse Sun's syntax for
7242 prototyped function types.
7243
7244 2002-02-09 Andrew Cagney <ac131313@redhat.com>
7245
7246 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
7247 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
7248
7249 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7250
7251 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
7252 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
7253 now _initialize_xcoffsolib gets called again and overrides the
7254 commands from solib.c in a native configuration.
7255
7256 2002-02-09 Mark Kettenis <kettenis@gnu.org>
7257
7258 * doublest.c (store_typed_floating): Don't try to return a value.
7259 Fixes PR gdb/290.
7260
7261 2002-02-08 Jim Blandy <jimb@redhat.com>
7262
7263 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
7264 is prototyped and has no arguments, print its argument list as
7265 `(void)'.
7266
7267 2002-02-08 Chris Demetriou <cgd@broadcom.com>
7268
7269 * MAINTAINERS (write-after-approval): Add myself.
7270 (paper-trail): I've escaped!
7271
7272 2002-02-08 Christopher Faylor <cgf@redhat.com>
7273
7274 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
7275 changes.
7276 (_initialize_check_for_gdb_ini): Ditto.
7277
7278 2002-02-08 Martin M. Hunt <hunt@redhat.com>
7279
7280 * win32-nat.c (cygwin_pid_to_str): Fix typo.
7281 xaprintf -> xasprintf.
7282
7283 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
7284
7285 * win32-nat.c: Remove use of printf and sprintf functions.
7286
7287 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
7288
7289 * arm-tdep.c (arm_frame_chain_valid): Make static.
7290 (arm_push_arguments): Likewise.
7291 (arm_gdbarch_init): New function.
7292 (_initialize_arm_tdep): Call it.
7293 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
7294 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
7295 (FRAME_CHAIN_VALID): Delete.
7296 (arm_frame_chain_valid): Delete declaration.
7297 (PUSH_ARGUMENTS): Delete.
7298 (arm_push_arguments): Delete declaration.
7299 (CALL_DUMMY_P): Delete.
7300
7301 2002-02-08 Andrew Cagney <ac131313@redhat.com>
7302 Corinna Vinschen <vinschen@redhat.com>
7303
7304 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
7305 on builtin float types.
7306
7307 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
7308
7309 * utils.c: Include <curses.h> before "bfd.h".
7310 * tui/tui-hooks.c: Likewise.
7311 * tui/tui.c: Likewise.
7312 * tui/tuiCommand.c: Likewise.
7313 * tui/tuiData.c: Likewise.
7314 * tui/tuiDataWin.c: Likewise.
7315 * tui/tuiDisassem.c: Likewise.
7316 * tui/tuiGeneralWin.c: Likewise.
7317 * tui/tuiIO.c: Likewise.
7318 * tui/tuiLayout.c: Likewise.
7319 * tui/tuiRegs.c: Likewise.
7320 * tui/tuiSource.c: Likewise.
7321 * tui/tuiSourceWin.c: Likewise.
7322 * tui/tuiStack.c: Likewise.
7323 * tui/tuiWin.c: Likewise.
7324
7325 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
7326
7327 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
7328 to include space for pseudoregs as well. Update loops accordingly.
7329 (sh_fp_frame_init_saved_regs): Ditto.
7330 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
7331
7332 2002-02-07 Andrew Cagney <ac131313@redhat.com>
7333
7334 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
7335 Add Richard Earnshaw to Arm maintainers.
7336
7337 2002-02-07 Andrew Cagney <ac131313@redhat.com>
7338
7339 * defs.h (warning_begin): Delete declaration.
7340
7341 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
7342 Delete macro.
7343
7344 2002-02-07 Michael Snyder <msnyder@redhat.com>
7345
7346 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
7347 Logic bug, remove misplaced else.
7348
7349 2002-02-07 Klee Dienes <klee@apple.com>
7350
7351 * fork-inferior.c (fork_inferior): Add '!' to the list of
7352 characters that need to be quoted when building a string for the
7353 shell. Quote '!' specifically with a backslash, since CSH chokes
7354 when trying to evaluate "str!str".
7355
7356 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
7357
7358 * rdi-share/host.h: Only provide a typedef for bool if it is not
7359 defined.
7360
7361 2002-02-04 Michael Snyder <msnyder@redhat.com>
7362
7363 * breakpoint.h (enum bptype): Add new overlay event bp type.
7364 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
7365
7366 * breakpoint.c (create_internal_breakpoint): New function.
7367 (internal_breakpoint_number): Moved into create_internal_breakpoint.
7368 (create_longjmp_breakpoint): Use create_internal_breakpoint.
7369 (create_thread_event_breakpoint): Ditto.
7370 (create_solib_event_breakpoint): Ditto.
7371 (create_overlay_event_breakpoint): New function.
7372 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
7373 (update_breakpoints_after_exec): Delete and re-initialize
7374 overlay event breakpoints after an exec. Add FIXME comment
7375 about longjmp breakpoint.
7376 (print_it_typical): Ignore overlay event breakpoints.
7377 (print_one_breakpoint): Ditto.
7378 (mention): Ditto.
7379 (bpstat_what): Do not stop for overlay event breakpoints.
7380 (delete_breakpoint): Don't delete overlay event breakpoints.
7381 (breakpoint_re_set_one): Delete the overlay event breakpoint.
7382 (breakpoint_re_set): Re-create overlay event breakpoint.
7383
7384 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
7385 (overlay_manual_command): Disable overlay breakpoints.
7386 (overlay_off_command): Disable overlay breakpoints.
7387
7388 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
7389
7390 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
7391 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
7392 to here from config/tm-arm.h.
7393 (coff_sym_is_thumb): Make static.
7394 (arm_elf_make_msymbol_special): New function.
7395 (arm_coff_make_msymbol_special): New function.
7396 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
7397 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
7398 (coff_sym_is_thumb): Delete declaration.
7399 (arm_elf_make_msymbol_special): Declare.
7400 (arm_coff_make_msymbol_special): Declare.
7401 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
7402 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
7403
7404 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
7405
7406 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
7407
7408 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
7409
7410 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
7411 * gdbarch.c gdbarch.h: Regenerate.
7412 * arch-utils.c (default_print_float_info): New function.
7413 * arch-utils.h (default_print_float_info): Prototype it.
7414 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
7415 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
7416 (PRINT_FLOAT_INFO): Document it.
7417
7418 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
7419 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
7420 (PRINT_FLOAT_INFO): Define.
7421
7422 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
7423
7424 * win32-nat.c (_initialize_check_for_gdb_ini):
7425 Add typecast to sprintf argument to suppress a warning.
7426
7427 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
7428
7429 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7430 to allow easier handling of pass state.
7431 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
7432 that gives exception name and address.
7433 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
7434 and set last_sig value to ourstatus->value.sig. Some missing
7435 exceptions added.
7436 (child_continue): Correctly report continue_status.
7437 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7438 TARGET_SIGNAL_0 (new default value).
7439 (child_resume): consider sig argument passed to decide if
7440 the exception should be passed to debuggee or not.
7441
7442 2002-02-05 Michael Snyder <msnyder@redhat.com>
7443
7444 * regcache.c (fetch_register): Call target_fetch_register
7445 only if we don't call FETCH_PSEUDO_REGISTER.
7446 (store_register): Call target_store_register only if we
7447 don't call STORE_PSEUDO_REGISTER.
7448
7449 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
7450
7451 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
7452 ELF_MAKE_MSYMBOL_SPECIAL.
7453 * gdbarch.c, gdbarch.h: Regenerate.
7454 * arch-utils.c (default_make_msymbol_special): New function.
7455 * arch-utils.h (default_make_msymbol_special): Export.
7456 * elfread.c (elf_symtab_read): Compile use of
7457 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
7458 multiarched.
7459 * coffread.c (coff_symtab_read): Ditto, for
7460 COFF_MAKE_MSYMBOL_SPECIAL.
7461
7462 2002-02-05 Jim Blandy <jimb@redhat.com>
7463
7464 * solib-svr4.c (svr4_truncate_ptr): New function.
7465 (svr4_relocate_section_addresses): Do the address arithmetic with
7466 the appropriate truncation for target addresses, even when
7467 CORE_ADDR is larger than a target address.
7468
7469 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7470
7471 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
7472 to (int *).
7473
7474 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7475
7476 * gdbserver/linux-low.c (kill_inferior): Remove commented out
7477 code.
7478
7479 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7480
7481 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
7482
7483 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7484
7485 * gdbserver/linux-low.c: Remove unused include files.
7486
7487 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7488
7489 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
7490 (read_inferior_memory): Use it.
7491 (write_inferior_memory): Likewise.
7492
7493 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7494
7495 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
7496 grubbing through sys_errlist.
7497
7498 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
7499
7500 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
7501
7502 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
7503 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
7504
7505 2002-02-04 Andrew Cagney <ac131313@redhat.com>
7506
7507 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
7508 (do_sfunc, set_cmd_sfunc): New functions.
7509
7510 * command.h (struct cmd_list_element): Add field func.
7511 * cli/cli-decode.h (struct cmd_list_element): Ditto.
7512 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
7513 * cli/cli-decode.h: Ditto.
7514
7515 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
7516 (help_all, help_cmd_list): Ditto.
7517 (find_cmd, complete_on_cmdlist): Ditto.
7518 * top.c (execute_command): Ditto.
7519
7520 * cli/cli-setshow.c (do_setshow_command): Call func instead of
7521 function.sfunc.
7522
7523 * infcmd.c (notice_args_read): Fix function signature.
7524
7525 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
7526 * cli/cli-decode.c (add_set_cmd): Ditto.
7527 * utils.c (initialize_utils): Ditto.
7528 * maint.c (_initialize_maint_cmds): Ditto.
7529 * infrun.c (_initialize_infrun): Ditto.
7530 * demangle.c (_initialize_demangler): Ditto.
7531 * remote.c (add_packet_config_cmd): Ditto.
7532 * mips-tdep.c (_initialize_mips_tdep): Ditto.
7533 * cris-tdep.c (_initialize_cris_tdep): Ditto.
7534 * proc-api.c (_initialize_proc_api): Ditto.
7535 * kod.c (_initialize_kod): Ditto.
7536 * valprint.c (_initialize_valprint): Ditto.
7537 * top.c (init_main): Ditto.
7538 * infcmd.c (_initialize_infcmd): Ditto.
7539 * corefile.c (_initialize_core): Ditto.
7540 * arm-tdep.c (_initialize_arm_tdep): Ditto.
7541 * arch-utils.c (initialize_current_architecture): Ditto.
7542 (_initialize_gdbarch_utils): Ditto.
7543 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
7544
7545 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
7546 * wince.c (_initialize_inftarg): Ditto.
7547 * symfile.c (_initialize_symfile): Ditto.
7548 * mips-tdep.c (_initialize_mips_tdep): Ditto.
7549 * language.c (_initialize_language): Ditto.
7550 * arc-tdep.c (_initialize_arc_tdep): Ditto.
7551
7552 2002-02-04 Michael Snyder <msnyder@redhat.com>
7553
7554 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
7555
7556 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
7557
7558 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
7559 Add rules for building the register data files.
7560
7561 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
7562
7563 * regformats/regdat.sh: Add braces to the definition of
7564 expedite_regs_${arch}.
7565
7566 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
7567
7568 * regformats/regdef.h (struct reg): Add comment describing the
7569 requirements for offset and size fields.
7570
7571 2002-02-04 Andreas Schwab <schwab@suse.de>
7572
7573 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
7574 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
7575
7576 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
7577
7578 * gdbarch.sh (copyright): Update years in generated header.
7579 (SMASH_TEXT_ADDRESS): Add rule.
7580 * gdbarch.h, gdbarch.c: Re-generate.
7581 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
7582 * dbxread.c: Likewise.
7583 * dwarfread.c: Likewise.
7584 * elfread.c: Likewise.
7585 * somread.c: Likewise.
7586
7587 * arm-tdep.c (arm_smash_text_address): New function.
7588 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
7589
7590 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
7591
7592 Add support for hardware watchpoints on win32 native.
7593 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
7594 CONTEXT_DEBUG_REGISTERS.
7595 (dr variable): New variable. Static array containing a local copy
7596 of debug registers.
7597 (debug_registers_changed): New variable. Reflects when debug registers
7598 are changed and need to be written to inferior.
7599 (debug_registers_used): New variable. Reflects when any debug register
7600 was set, used when new threads are created.
7601 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
7602 i386-nat code.
7603 (thread_rec): Set dr array if id is the thread of current_event .
7604 (child_continue, child_resume): Change the debug registers for all
7605 threads if debug_registers_changed.
7606 (child_add_thread): Change the debug registers if debug_registers_used.
7607 * config/i386/cygwin.mh: Add use of i386-nat.o file.
7608 Link nm.h to new nm-cygwin.h file.
7609 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
7610 of hardware registers.
7611
7612 2002-02-03 Andrew Cagney <ac131313@redhat.com>
7613
7614 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
7615 Restore behavour broken by 2002-01-20 Andrew Cagney
7616 <ac131313@redhat.com> IEEE_FLOAT removal.
7617
7618 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
7619
7620 * c-valprint.c (c_val_print): Pass a proper valaddr to
7621 cp_print_class_method.
7622 * valops.c (search_struct_method): If there is only one method
7623 and args is NULL, return that method.
7624
7625 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
7626
7627 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
7628 accessing tag_name directly.
7629
7630 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
7631
7632 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
7633 of accessing tag_name directly.
7634
7635 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
7636
7637 PR gdb/280
7638 * gdbtypes.c (replace_type): New function.
7639 * gdbtypes.h (replace_type): Add prototype.
7640 * stabsread.c (read_type): Use replace_type.
7641
7642 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
7643
7644 * Makefile.in (memattr.o): Add missing dependencies rule.
7645
7646 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7647
7648 * breakpoint.c (break_at_finish_command): Really export.
7649 (break_at_finish_at_depth_command): Ditto.
7650 (tbreak_at_finish_command): Ditto.
7651 * hppa-tdep.c: Include completer.h.
7652 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
7653 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
7654
7655 2002-02-01 Andrew Cagney <ac131313@redhat.com>
7656
7657 * utils.c (do_write): New function.
7658 (error_stream): Rewrite combining the code from error_begin and
7659 verror.
7660 (verror): Rewrite using error_stream.
7661 (error_begin): Delete function.
7662
7663 2002-02-01 Andrew Cagney <ac131313@redhat.com>
7664
7665 * utils.c (error_begin): Make static.
7666 * defs.h (error_begin): Delete declaration.
7667
7668 * linespec.c (cplusplus_error): Replace cplusplus_hint.
7669 (decode_line_1): Use cplusplus_error instead of error_begin,
7670 cplusplus_hint and return_to_top_level.
7671 * coffread.c (coff_symfile_read): Use error instead of error_begin
7672 and return_to_top_level.
7673 * infrun.c (default_skip_permanent_breakpoint): Ditto.
7674
7675 2002-02-01 Andrew Cagney <ac131313@redhat.com>
7676
7677 * language.h (type_error, range_error): Make string parameter
7678 constant.
7679 * language.c (warning_pre_print): Delete extern declaration.
7680 * dwarfread.c (warning_pre_print): Ditto.
7681 * language.c (type_error, range_error): Rewrite to use verror and
7682 vwarning instead of warning_begin.
7683
7684 2002-02-01 Michael Snyder <msnyder@redhat.com>
7685
7686 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
7687 (set_ignore_count): Move misplaced comment back where it belongs.
7688
7689 2002-02-01 Andrew Cagney <ac131313@redhat.com>
7690
7691 * command.h (NO_FUNCTION): Delete macro.
7692 * cli/cli-decode.h (NO_FUNCTION): Ditto.
7693 * top.c (execute_command): Replace NO_FUNCTION with NULL.
7694 * tracepoint.c (_initialize_tracepoint): Ditto.
7695 * cli/cli-decode.c (add_set_cmd): Ditto.
7696 * cli/cli-cmds.c (init_cli_cmds): Ditto.
7697
7698 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
7699
7700 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
7701 Update ``this'' pointer when calling virtual functions.
7702
7703 2002-02-01 Michael Snyder <msnyder@redhat.com>
7704
7705 * breakpoint.c (create_temp_exception_breakpoint): Delete.
7706 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
7707
7708 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
7709
7710 * regformats/reg-arm.dat: New file.
7711 * regformats/reg-i386.dat: New file.
7712 * regformats/reg-ia64.dat: New file.
7713 * regformats/reg-m68k.dat: New file.
7714 * regformats/reg-mips.dat: New file.
7715 * regformats/reg-ppc.dat: New file.
7716 * regformats/reg-sh.dat: New file.
7717 * regformats/regdef.h: New file.
7718 * regformats/regdat.sh: New file.
7719
7720 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
7721
7722 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
7723 (arm_frame_args_address, arm_frame_locals_address): New functions.
7724 (arm_frame_num_args): New function.
7725 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
7726 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
7727 (FRMA_NUM_ARGS): Call arm_frame_num_args.
7728
7729 2002-01-31 Michael Snyder <msnyder@redhat.com>
7730
7731 * breakpoint.c (break_at_finish_command): Export.
7732 (break_at_finish_at_depth_command): Export.
7733 (tbreak_at_finish_command): Export.
7734 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
7735 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
7736 "tbreak" commands, which are HPPA specific.
7737
7738 * printcmd.c (disassemble_command): Remove an ancient
7739 artifact of an old merge.
7740
7741 * symfile.h (enum overlay_debugging_state):
7742 Define enum constant values for overlay mode.
7743 * symfile.c (overlay_debugging): Use enums instead of literals.
7744 (overlay_is_mapped, overlay_auto_command,
7745 overlay_manual_command): Ditto.
7746
7747 * breakpoint.c (insert_breakpoints, remove_breakpoint,
7748 breakpoint_here_p, breakpoint_inserted_here_p,
7749 breakpoint_thread_match, bpstat_stop_status,
7750 describe_other_breakpoints, check_duplicates, clear_command):
7751 Coding standard fixes.
7752
7753 * target.c (target_xfer_memory): Add spaces, coding standard.
7754 (do_xfer_memory): Add missing line to trust-readonly
7755 code: check bfd SEC_READONLY flag for section.
7756
7757 2002-01-31 Andrew Cagney <ac131313@redhat.com>
7758
7759 * PROBLEMS: Fix typo, 5.1->5.1.1.
7760
7761 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
7762
7763 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
7764 data symbols, since we search based on textlow and texthigh.
7765 (find_pc_sect_symtab): Likewise.
7766
7767 2002-01-30 Andrew Cagney <ac131313@redhat.com>
7768
7769 * defs.h (vwarning): Declare.
7770 * utils.c (vwarning): New function.
7771 (warning): Call vwarning.
7772 (warning_begin): Delete function.
7773
7774 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
7775 the warning message.
7776 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
7777 warning_begin.
7778
7779 2002-01-30 Michael Snyder <msnyder@redhat.com>
7780
7781 * NEWS: Mention "set trust-readonly-sections" command.
7782 Mention generate-core-file command.
7783
7784 2002-01-15 Michael Snyder <msnyder@redhat.com>
7785
7786 * target.c: New command, "set trust-readonly-sections on".
7787 (do_xfer_memory): Honor the suggestion to trust readonly sections
7788 by reading them from the object file instead of from the target.
7789 (initialize_targets): Register command "set trust-readonly-sections".
7790
7791 2002-01-29 Andrew Cagney <ac131313@redhat.com>
7792
7793 * parse.c (target_map_name_to_register): Simplify, search regs and
7794 pseudo-regs using a single loop.
7795
7796 2002-01-30 Andrew Cagney <ac131313@redhat.com>
7797
7798 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
7799
7800 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
7801
7802 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
7803 * config/i386/i386v42mp.mh: Add i387-nat.o .
7804 * i386v4-nat.c: Include i387-nat.h.
7805 (supply_fpregset): Use i387_supply_fsave.
7806 (fill_fpregset): Use i387_fill_fsave.
7807
7808 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
7809
7810 * arm-tdep.c (arm_call_dummy_words): Define.
7811 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
7812 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
7813 (CALL_DUMMY_WORDS): Define.
7814 (arm_call_dummy_words): Declare.
7815 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
7816 (arm_linux_call_dummy_words): Declare.
7817
7818 2002-01-30 Andreas Schwab <schwab@suse.de>
7819
7820 * m68klinux-nat.c: Fix last change to use regcache_collect
7821 instead of referencing registers[] directly.
7822
7823 2002-01-29 Andrew Cagney <ac131313@redhat.com>
7824
7825 * parse.c (target_map_name_to_register): Delete code wrapped in
7826 #ifdef REGISTER_NAME_ALIAS_HOOK.
7827
7828 2002-01-28 Michael Snyder <msnyder@redhat.com>
7829
7830 * regcache.c (legacy_read_register_gen): Need to be able to
7831 read pseudo-register as well as real register.
7832 (legacy_write_register_gen): Ditto.
7833
7834 2002-01-28 Andrew Cagney <ac131313@redhat.com>
7835
7836 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
7837 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
7838 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
7839 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
7840 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
7841 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
7842 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
7843 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
7844 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
7845 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
7846 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
7847 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
7848 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
7849 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
7850 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
7851 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
7852 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
7853 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
7854 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
7855 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
7856
7857 2002-01-28 Andrew Cagney <ac131313@redhat.com>
7858
7859 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
7860 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
7861 (initialize_current_architecture): Update target_byte_order using
7862 information from BFD.
7863 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
7864 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
7865
7866 2002-01-28 Andrew Cagney <ac131313@redhat.com>
7867
7868 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
7869 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
7870
7871 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
7872 #ifdef INVALID_FLOAT.
7873 * infcmd.c (do_registers_info): Ditto.
7874 * values.c (unpack_double): Ditto. Add comment.
7875
7876 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
7877 already commented out.
7878
7879 2002-01-26 Andreas Schwab <schwab@suse.de>
7880
7881 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
7882 * m68klinux-nat.c: Update ptrace interface for fetching/storing
7883 registers and add support for PTRACE_GETREGS.
7884
7885 2002-01-24 Andrew Cagney <ac131313@redhat.com>
7886
7887 GDB 5.1.1 released from 5.1 branch.
7888 * NEWS: Add 5.1.1 news.
7889 * README: Sync with 5.1 branch.
7890
7891 2002-01-23 Fred Fish <fnf@redhat.com>
7892
7893 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
7894 stabstring on initial malloc. Reallocing will copy it for us,
7895 if necessary.
7896
7897 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
7898
7899 * Makefile.in (hpread_h): Delete.
7900 (HFILES_NO_SRCDIR): Remove hpread.h.
7901 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
7902 (hpread.o): Update dependencies.
7903 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
7904
7905 * hp-psymtab-read.c: Remove file.
7906 * hp-symtab-read.c: Remove file.
7907 * hpread.h: Remove file.
7908
7909 * hpread.c: Merge all contents of hp-psymtab-read.c,
7910 hp-symtab-read.c and hpread.h into this file, as it was prior to
7911 January 1999.
7912
7913 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
7914 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
7915 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
7916 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
7917
7918 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
7919
7920 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
7921 fill_gregset): Call gdbarch_tdep() just once, assign result to
7922 variable and use that, instead of calling the function several
7923 times.
7924
7925 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
7926
7927 * configure.host: Accept sparcv9 as alias for sparc64.
7928 * configure.tgt: Likewise.
7929
7930 2002-01-22 Kevin Buettner <kevinb@redhat.com>
7931
7932 * solib-aix5.c (build_so_list_from_mapfile)
7933 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
7934 arguments is not reversed.
7935 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
7936 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
7937
7938 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
7939
7940 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
7941 modified version of obsolete sh_fetch_pseudo_register.
7942 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
7943 (sh4_register_read): New function.
7944 (sh_pseudo_register_write): New function. Renamed and modified
7945 version of obsolete sh_store_pseudo_register.
7946 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
7947 (sh4_register_write): New function.
7948 (sh_gdbarch_init): Remove setting of gdbarch function
7949 fetch_pseudo_register and store_pseudo_register. Remove setting of
7950 register_convert_to_raw, register_convert_to_virtual,
7951 register_convertible.
7952 (sh_sh4_register_convertible): Delete. No longer needed. All is
7953 taken care by architecture specific functions
7954 register_read/register_write.
7955 (sh_sh4_register_convert_to_virtual): Make static.
7956 (sh_sh4_register_convert_to_raw): Ditto.
7957
7958 2002-01-22 Andrew Cagney <ac131313@redhat.com>
7959
7960 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
7961 (floatformat_is_nan, floatformat_mantissa): Ditto.
7962
7963 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
7964 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
7965 builtin_type_ieee_double_little,
7966 builtin_type_ieee_double_littlebyte_bigword,
7967 builtin_type_m68881_ext, builtin_type_i960_ext,
7968 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
7969 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
7970 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
7971 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
7972
7973 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
7974
7975 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
7976 parameter. Set frameless flag if it exists and depended of
7977 whether the scanned function is frameless or not.
7978 (xstormy16_skip_prologue): If function is frameless, return
7979 result of xstormy16_scan_prologue().
7980 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
7981 call.
7982
7983 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
7984
7985 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
7986 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
7987 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
7988 sh_sh4_register_byte, sh_sh4_register_raw_size,
7989 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
7990 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
7991 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
7992 sh_store_pseudo_register, sh_do_pseudo_register): Call
7993 gdbarch_tdep() just once, assign result to variable and use that,
7994 instead of calling the function several times.
7995
7996 2002-01-20 Mark Kettenis <kettenis@gnu.org>
7997
7998 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
7999 macros instead of LAST_FPU_CTRL_REGNUM.
8000 (store_register): Likewise.
8001
8002 2002-01-21 Jim Blandy <jimb@redhat.com>
8003
8004 * infcmd.c (run_command): Check that the `exec' target layer's BFD
8005 is up-to-date before running the program, not just when a program
8006 exits.
8007
8008 2002-01-21 Fred Fish <fnf@redhat.com>
8009
8010 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
8011 when we have found all instructions we are looking for.
8012
8013 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
8014
8015 * arm-tdep.c (arm_register_name): New function.
8016 (arm_registers_names): Make static.
8017 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
8018 (arm_register_name): Declare.
8019 (REGISTER_NAME): Use it.
8020
8021 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
8022 Kevin Buettner <kevinb@redhat.com>
8023
8024 Convert arm targets to new FRAME interface.
8025 * arm-tdep.c (struct frame_extra_info): Remove fsr.
8026 (arm_frame_find_save_regs): Delete.
8027 (arm_frame_init_saved_regs): New.
8028 (arm_init_extra_frame_info): Alloacte saved_regs as required.
8029 Allocate extra_info as required. Convert all uses of fsr.regs
8030 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
8031 to use extra_info.
8032 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
8033 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
8034 (check_prologue_cache, save_prologue_cache): Likewise.
8035 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
8036 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
8037 (FRAME_FIND_SAVED_REGS): Delete.
8038 (arm_frame_find_saved_regs): Delete prototype.
8039 (arm_frame_init_saved_regs): New prototype.
8040 (FRAME_INIT_SAVED_REGS): Define.
8041
8042 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8043
8044 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
8045
8046 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8047
8048 From Jeff Law <law@redhat.com>:
8049 * infttrace.c: Include <sys/pstat.h>.
8050 (child_pid_to_exec_file): Revamp. Use pstat call to get the
8051 exec file if the ttrace equivalent fails.
8052
8053 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8054
8055 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
8056 (closeLogFile): Ditto.
8057
8058 2002-01-20 Michael Chastain <mec@shout.net>
8059
8060 * top.c (print_gdb_version): Bump copyright year to 2002.
8061
8062 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8063
8064 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
8065 Zannoni and Eli Zaretskii.
8066
8067 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
8068
8069 * buildsym.c: Update copyright years.
8070 * c-typeprint.c: Likewise.
8071 * dwarf2read.c: Likewise.
8072 * f-typeprint.c: Likewise.
8073 * gdbtypes.c: Likewise.
8074 * gdbtypes.h: Likewise.
8075 * hp-symtab-read.c: Likewise.
8076 * hpread.c: Likewise.
8077 * mdebugread.c: Likewise.
8078 * p-typeprint.c: Likewise.
8079
8080 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8081
8082 * remote-sim.c (gdbsim_open): Simplify code testing the macro
8083 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
8084 byte-order selectable.
8085 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
8086 * arch-utils.c: Ditto.
8087 (set_endian): Ditto.
8088 (set_endian_from_file): Ditto.
8089 * gdbserver/low-sim.c (create_inferior): Ditto.
8090 * gdbarch.sh: Ditto.
8091 * gdbarch.h: Re-generate.
8092 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
8093 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
8094 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
8095 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
8096 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
8097 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
8098 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
8099 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
8100 macro definition.
8101 * config/mips/tm-wince.h: Remove #undef of macro
8102 TARGET_BYTE_ORDER_SELECTABLE.
8103 * config/sh/tm-wince.h: Ditto.
8104
8105 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
8106
8107 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
8108 member function fields. Add accessor macro
8109 TYPE_FN_FIELD_ARTIFICIAL.
8110 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
8111 * c-typeprint.c (c_type_print_base): Skip artificial member
8112 functions.
8113
8114 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
8115
8116 * f-typeprint.c: Delete unused function f_type_print_args.
8117 * p-typeprint.c: Delete unused function pascal_type_print_args.
8118
8119 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
8120
8121 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
8122 comment. Add ``artificial'' to ``union field_location''.
8123
8124 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
8125
8126 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
8127 * mdebugread.c (parse_symbol): Likewise.
8128 * stabsread.c (define_symbol): Likewise.
8129 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
8130 initializing TYPE_FIELD_BITPOS to n (obsolete).
8131 (hpread_doc_function_type): Likewise.
8132 * hpread.c (hpread_function_type): Likewise.
8133
8134 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8135
8136 * configure.in (host_makefile_frag): Only require a host makefile
8137 fragment when a native build.
8138 * configure: Re-generate.
8139
8140 2002-01-20 Andrew Cagney <ac131313@redhat.com>
8141
8142 * doublest.h (floatformat_from_type): Declare.
8143 * doublest.c (floatformat_from_type): New function.
8144 (convert_typed_floating): Use.
8145
8146 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
8147 call to function floatformat_from_type.
8148
8149 * gdbarch.sh (IEEE_FLOAT): Delete.
8150 * gdbarch.h, gdbarch.c: Re-generate.
8151 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
8152 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
8153 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
8154 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
8155 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
8156 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
8157 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
8158 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
8159 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
8160 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
8161 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
8162 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
8163
8164 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
8165 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8166 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
8167 * sh-tdep.c (sh_gdbarch_init): Ditto.
8168 * mips-tdep.c (mips_gdbarch_init): Ditto.
8169 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
8170 * cris-tdep.c (cris_gdbarch_init): Ditto.
8171
8172 2002-01-20 Jiri Smid <smid@suse.cz>
8173
8174 * configure.host, configure.tgt: Support x86-64.
8175 * NEWS: Note new target x86-64.
8176
8177 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
8178 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
8179 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
8180 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
8181 x86-64-linux-nat.o): Fix dependencies.
8182
8183 2002-01-19 Andrew Cagney <ac131313@redhat.com>
8184
8185 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
8186 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
8187 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
8188 * config/sparc/xm-sun4os4.h: Delete file.
8189 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
8190
8191 2002-01-19 Andrew Cagney <ac131313@redhat.com>
8192
8193 * config/sparc/sparclynx.mh (XM_FILE): Delete.
8194 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
8195 * config/m68k/m68klynx.mh (XM_FILE): Delete.
8196 * config/i386/i386lynx.mh (XM_FILE): Delete.
8197 * config/rs6000/xm-rs6000ly.h: Delete file.
8198 * config/sparc/xm-sparclynx.h: Delete file.
8199 * config/m68k/xm-m68klynx.h: Delete file.
8200 * config/i386/xm-i386lynx.h: Delete file.
8201 * config/xm-lynx.h: Delete file.
8202 * config/djgpp/fnchange.lst: Update.
8203
8204 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
8205
8206 * alpha-tdep.c (alpha_register_byte): New function.
8207 (alpha_register_raw_size): Ditto.
8208 (alpha_register_virtual_size): Ditto.
8209 (alpha_skip_prologue_internal): Renamed from
8210 alpha_skip_prologue.
8211 (alpha_skip_prologue): New version that calls
8212 alpha_skip_prologue_internal.
8213 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
8214 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
8215 second argument from alpha_skip_prologue.
8216 (REGISTER_BYTE): Use alpha_register_byte.
8217 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
8218 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
8219 (FRAMELESS_FUNCTION_INVOCATION): Use
8220 generic_frameless_function_invocation_not.
8221 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
8222 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
8223
8224 2002-01-19 Andrew Cagney <ac131313@redhat.com>
8225
8226 * config/mips/xm-news-mips.h: Delete file.
8227 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
8228
8229 * config/m88k/xm-m88k.h: Delete file.
8230 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
8231 * config/m88k/xm-delta88v4.h: Ditto.
8232 * config/m88k/xm-delta88.h: Ditto.
8233
8234 * config/alpha/xm-fbsd.h: Delete file.
8235 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
8236
8237 * config/sparc/xm-sparc.h: Delete file.
8238 * Makefile.in (xm-sun4os4.h): Delete dependency.
8239 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
8240 * config/sparc/xm-sun4os4.h: Ditto.
8241 * config/sparc/xm-linux.h: Ditto.
8242
8243 * config/i386/xm-windows.h: Delete file.
8244
8245 2002-01-19 Andrew Cagney <ac131313@redhat.com>
8246
8247 * utils.c: Include <sys/param.h> for MAXPATHLEN.
8248 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
8249
8250 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
8251
8252 * alpha-tdep.c (alpha_call_dummy_words): New.
8253 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
8254 (CALL_DUMMY_P): Define.
8255 (CALL_DUMMY_WORDS): Define.
8256 (SIZEOF_CALL_DUMMY_WORDS): Define.
8257
8258 2002-01-19 Per Bothner <per@bothner.com>
8259
8260 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
8261 isn't NULL, which can happen with some gcj-3.x-produced code.
8262
8263 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
8264
8265 * alpha-tdep.c (alpha_register_virtual_type): New function.
8266 (alpha_init_frame_pc_first): Ditto.
8267 (alpha_fix_call_dummy): Ditto.
8268 (alpha_store_struct_return): Ditto.
8269 (alpha_extract_struct_value_address): Ditto.
8270 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
8271 alpha_register_virtual_type.
8272 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
8273 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
8274 alpha_extract_struct_value_address.
8275 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
8276 (INIT_FRAME_PC): Use init_frame_pc_noop.
8277 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
8278
8279 2002-01-19 Mark Kettenis <kettenis@gnu.org>
8280
8281 * i386gnu-nat.c: Include "i386-tdep.h".
8282 (fetch_fpregs): Simplify code dealing with uninitialized floating
8283 point states such that it doesn't require FP7_REGNUM.
8284
8285 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8286
8287 * alpha-tdep.c (frame_extra_info): New.
8288 (alpha_find_saved_regs): Make static. Use
8289 frame->extra_info.
8290 (alpha_frame_init_saved_regs): New function.
8291 (alpha_frame_saved_pc): Use frame->extra_info.
8292 (temp_saved_regs): Don't declare as struct frame_saved_regs.
8293 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
8294 (init_extra_frame_info): Rename to...
8295 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
8296 (alpha_print_extra_frame_info): New function.
8297 (alpha_frame_locals_address): Ditto.
8298 (alpha_frame_args_address): Ditto.
8299 (alpha_pop_frame): Use frame->extra_info.
8300 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
8301 alpha_frame_args_address.
8302 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
8303 (alpha_find_saved_regs): Remove prototype.
8304 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
8305 (EXTRA_FRAME_INFO): Remove.
8306 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
8307 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
8308
8309 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8310
8311 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
8312 (alpha_cannot_fetch_register): Ditto.
8313 (alpha_cannot_store_register): Ditto.
8314 (alpha_register_convertible): Ditto.
8315 (alpha_use_struct_convention): Ditto.
8316 * config/alpha/tm-alpha.h: Update copyright years.
8317 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
8318 (INNER_THAN): Use core_addr_lessthan.
8319 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
8320 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
8321 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
8322 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
8323 (FRAME_CHAIN): Remove unnecessary cast.
8324
8325 2002-01-18 Andrew Cagney <ac131313@redhat.com>
8326
8327 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
8328 obsolete.
8329
8330 2002-01-18 Andrew Cagney <ac131313@redhat.com>
8331
8332 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
8333 * monitor.c, remote-array.c, remote-bug.c: Ditto.
8334 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
8335 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
8336 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
8337 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
8338 * x86-64-linux-nat.c: Ditto.
8339
8340 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8341
8342 * alpha-tdep.c (alpha_register_name): New function.
8343 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
8344 (REGISTER_NAME): Define.
8345
8346 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8347
8348 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
8349
8350 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8351
8352 * alpha-tdep.c: Update copyright years.
8353 (alpha_next_pc): New function.
8354 (alpha_software_single_step): Ditto.
8355 * config/alpha/tm-alpha.h: Add prototype for
8356 alpha_software_single_step.
8357
8358 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
8359
8360 * alphabsd-nat.c: Update copyright years.
8361 (fill_gregset): Use regcache_collect.
8362 (fill_fpregset): Likewise.
8363 (fetch_inferior_registers): Only fetch integer registers
8364 if requested to do so.
8365 (store_inferior_registers): Only store integer registers
8366 if requested to do so.
8367
8368 2002-01-17 Andrew Cagney <ac131313@redhat.com>
8369
8370 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
8371 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
8372 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
8373 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
8374 * config/alpha/fbsd.mh (XDEPFILES): Delete.
8375 * config/arm/linux.mh (XDEPFILES): Delete.
8376 * config/arm/nbsd.mh (XDEPFILES): Delete.
8377 * config/i386/i386dgux.mh (XDEPFILES): Delete.
8378 * config/i386/i386sol2.mh (XDEPFILES): Delete.
8379 * config/i386/i386m3.mh (XDEPFILES): Delete.
8380 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
8381 * config/i386/i386gnu.mh (XDEPFILES): Delete.
8382 * config/i386/fbsd.mh (XDEPFILES): Delete.
8383 * config/i386/i386bsd.mh (XDEPFILES): Delete.
8384 * config/i386/i386sco5.mh (XDEPFILES): Delete.
8385 * config/i386/i386v4.mh (XDEPFILES): Delete.
8386 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
8387 * config/i386/i386sco4.mh (XDEPFILES): Delete.
8388 * config/i386/i386aix.mh (XDEPFILES): Delete.
8389 * config/i386/go32.mh (XDEPFILES): Delete.
8390 * config/i386/cygwin.mh (XDEPFILES): Delete.
8391 * config/i386/i386lynx.mh (XDEPFILES): Delete.
8392 * config/i386/i386mach.mh (XDEPFILES): Delete.
8393 * config/i386/i386v32.mh (XDEPFILES): Delete.
8394 * config/i386/linux.mh (XDEPFILES): Delete.
8395 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
8396 * config/i386/ncr3000.mh (XDEPFILES): Delete.
8397 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
8398 * config/i386/i386sco.mh (XDEPFILES): Delete.
8399 * config/i386/i386v.mh (XDEPFILES): Delete.
8400 * config/i386/nbsd.mh (XDEPFILES): Delete.
8401 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
8402 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
8403 * config/i386/symmetry.mh (XDEPFILES): Delete.
8404 * config/i386/obsd.mh (XDEPFILES): Delete.
8405 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
8406 * config/ia64/linux.mh (XDEPFILES): Delete.
8407 * config/ia64/aix.mh (XDEPFILES): Delete.
8408 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
8409 * config/m68k/dpx2.mh (XDEPFILES): Delete.
8410 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
8411 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
8412 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
8413 * config/m68k/linux.mh (XDEPFILES): Delete.
8414 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
8415 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
8416 * config/m68k/nbsd.mh (XDEPFILES): Delete.
8417 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
8418 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
8419 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
8420 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
8421 * config/m88k/delta88.mh (XDEPFILES): Delete.
8422 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
8423 * config/m88k/m88k.mh (XDEPFILES): Delete.
8424 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
8425 * config/mips/linux.mh (XDEPFILES): Delete.
8426 * config/mips/irix6.mh (XDEPFILES): Delete.
8427 * config/mips/irix5.mh (XDEPFILES): Delete.
8428 * config/mips/irix4.mh (XDEPFILES): Delete.
8429 * config/mips/irix3.mh (XDEPFILES): Delete.
8430 * config/mips/decstation.mh (XDEPFILES): Delete.
8431 * config/mips/mipsm3.mh (XDEPFILES): Delete.
8432 (NATDEPFILES): Move core-aout.o to here.
8433 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
8434 * config/pa/hpux1020.mh (XDEPFILES): Delete.
8435 * config/pa/hppabsd.mh (XDEPFILES): Delete.
8436 * config/pa/hppahpux.mh (XDEPFILES): Delete.
8437 * config/pa/hpux11w.mh (XDEPFILES): Delete.
8438 * config/pa/hppaosf.mh (XDEPFILES): Delete.
8439 * config/pa/hpux11.mh (XDEPFILES): Delete.
8440 * config/powerpc/aix.mh (XDEPFILES): Delete.
8441 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
8442 * config/powerpc/linux.mh (XDEPFILES): Delete.
8443 * config/romp/rtbsd.mh: Rename XDEPFILES.
8444 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
8445 * config/rs6000/aix4.mh (XDEPFILES): Delete.
8446 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
8447 * config/s390/s390.mh (XDEPFILES): Delete.
8448 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
8449 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
8450 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
8451 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
8452 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
8453 * config/sparc/nbsd.mh (XDEPFILES): Delete.
8454 * config/sparc/linux.mh (XDEPFILES): Delete.
8455 * config/vax/vaxult.mh (XDEPFILES): Delete.
8456 * config/vax/vaxult2.mh (XDEPFILES): Delete.
8457 * Makefile.in (DEPFILES): Remove XDEPFILES.
8458
8459 2002-01-17 Andrew Cagney <ac131313@redhat.com>
8460
8461 * utils.c (internal_verror): Fix comments, default is yes not no.
8462 Update queries to match. Default to quit and dump core.
8463
8464 2002-01-17 Andrew Cagney <ac131313@redhat.com>
8465
8466 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
8467 copyright.
8468 * defs.h, event-top.c, gdbcmd.h: Ditto.
8469 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
8470 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
8471 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
8472 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
8473 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
8474 * mi/mi-main.c:Ditto.
8475
8476 * stack.c, symfile.c: Update copyright.
8477
8478 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
8479
8480 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
8481 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
8482 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
8483 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
8484
8485 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
8486
8487 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
8488 * gdbserver/low-lynx.c (myattach): Likewise.
8489 * gdbserver/low-nbsd.c (myattach): Likewise.
8490 * gdbserver/low-sim.c (myattach): Likewise.
8491 * gdbserver/low-sparc.c (myattach): Likewise.
8492 * gdbserver/low-sun3.c (myattach): Likewise.
8493
8494 * gdbserver/low-linux.c (myattach): New function.
8495
8496 * gdbserver/server.c (attach_inferior): New function.
8497 (main): Handle "--attach".
8498
8499 2002-01-16 Andrew Cagney <ac131313@redhat.com>
8500
8501 * MAINTAINERS (language support): Daniel Jacobwitz is C++
8502 maintainer.
8503
8504 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
8505
8506 * c-typeprint.c (is_type_conversion_operator): Add additional
8507 check for non-conversion operators.
8508
8509 2002-01-15 Michael Snyder <msnyder@redhat.com>
8510
8511 * linux-proc.c: Add "info proc" command, a la procfs.c.
8512 (read_mapping): New function, abstract and re-use code.
8513 (linux_find_memory_regions): Use new func read_mapping.
8514 (linux_info_proc_cmd): New function, implement "info proc".
8515 (_initialize_linux_proc): Add new command "info proc".
8516
8517 2002-01-15 Michael Snyder <msnyder@redhat.com>
8518
8519 * symfile.c (generic_load): Use bfd_map_over_sections method
8520 instead of manipulating bfd structure members directly.
8521 (add_section_size_callback): New function, bfd sections callback
8522 used by generic_load.
8523 (load_sections_callback): New function, bfd sections callback
8524 used by generic_load.
8525
8526 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
8527
8528 [Based on work by Jim Blandy]
8529 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
8530 (builtin_type_vec128): Export.
8531 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
8532 types.
8533 (builtin_type_vec128): New builtin type for 128 bit vector
8534 registers.
8535 (build_gdbtypes): Initialize builtin_type_v16qi and
8536 builtin_type_v8hi. Create the vec128 register builtin type
8537 structure.
8538 (build_builtin_type_vec128): New function.
8539 (_initialize_gdbtypes): Register builtin_type_v16qi and
8540 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
8541 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
8542 AltiVec register to new builtin type.
8543
8544 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
8545
8546 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
8547 to make_cv_type.
8548
8549 2002-01-14 Andrew Cagney <ac131313@redhat.com>
8550
8551 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
8552 CLEAN_UP_REGISTER_VALUE.
8553 * regcache.c (supply_register): Update only call.
8554
8555 2002-01-14 Andrew Cagney <ac131313@redhat.com>
8556
8557 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
8558 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
8559 a29k-*-vxworks* targets as obsolete.
8560
8561 2002-01-14 Michael Snyder <msnyder@redhat.com>
8562
8563 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
8564 until we can resolve portability issues.
8565 * gregset.h: Remove references to fpxregs.
8566 * gcore.c (gcore_command): Initialize note_sec to NULL.
8567
8568 2002-01-13 Andrew Cagney <ac131313@redhat.com>
8569
8570 * signals.c (target_signal_to_name): Rewrite. Only use
8571 signals[].name when in bounds and non-NULL.
8572
8573 2002-01-13 Andrew Cagney <ac131313@redhat.com>
8574
8575 From Petr Ledvina <ledvinap@kae.zcu.cz>:
8576 * signals.c (target_signal_to_name): Verify that SIG is within the
8577 bounds of the signals array.
8578
8579 2002-01-13 Andrew Cagney <ac131313@redhat.com>
8580
8581 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
8582
8583 2002-01-13 Keith Seitz <keiths@redhat.com>
8584
8585 * stack.c (print_frame_info_base): Print the frame's pc
8586 only if when print_frame_info_listing_hook is not defined.
8587
8588 2002-01-13 Keith Seitz <keiths@redhat.com>
8589
8590 * varobj.c (varobj_set_value): Make sure that there were no
8591 errors evaluating the object before attempting to set its
8592 value.
8593 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
8594 so this offset adjustment is no longer necessary.
8595 (create_child): Don't set the error flag if the child is
8596 a CPLUS_FAKE_CHILD.
8597 (value_of_child): If value_fetch_lazy fails, return NULL
8598 so that callers will be notified that an error occurred.
8599 (c_value_of_variable): Delay check of variable's validity
8600 until later. We actually want all structs and unions to have
8601 the value "{...}".
8602 Do not return "???" for variables which could not be evaluated.
8603 This error condition must be returned to the caller so that it
8604 can get the error condition from gdb.
8605 (cplus_name_of_child): Adjust index for vptr before figuring
8606 out the name of the child.
8607 (cplus_value_of_child): If a child's (real) parent is not valid,
8608 don't even bother trying to give a value for it. Just return
8609 an error. Change all instances in this function.
8610 (cplus_type_of_child): If our parent is one of the "fake"
8611 parents, we need to get at the type of the real parent, and
8612 derive the child's true type using this information.
8613
8614 2002-01-13 Andrew Cagney <ac131313@redhat.com>
8615
8616 From 2002-01-09 John Marshall <johnm@falch.net>:
8617 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
8618 sources.redhat.com, and tweak some related URLs which had
8619 suffered from linkrot.
8620
8621 2002-01-13 Andrew Cagney <ac131313@redhat.com>
8622
8623 From Jeff law:
8624 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
8625 structures passed in registers.
8626
8627 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
8628
8629 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
8630 white space which prevented compilation. Reported by DSK
8631 <dsk@student.unsw.edu.au>.
8632
8633 2002-01-11 Michael Snyder <msnyder@redhat.com>
8634
8635 * symfile.c (build_section_addr_info_from_section_tab):
8636 Use bfd access method instead of manipulating bfd directly.
8637 (syms_from_objfile): Ditto.
8638 (simple_overlay_update_1): Ditto.
8639 (simple_overlay_update): Ditto.
8640 (generic_load): Ditto.
8641 (overlay_unmapped_address): FIXME comment, bfd access methods.
8642 (sections_overlap): FIXME comment, bfd access methods.
8643 (pc_in_mapped_range): FIXME comment, bfd access methods.
8644 (pc_in_unmapped_range): FIXME comment, bfd access methods.
8645 (section_is_mapped): FIXME comment, bfd access methods.
8646 (section_is_overlay): FIXME comment, bfd access methods.
8647
8648 * symfile.c (generic_load): Whitespace and long line cleanups.
8649 Remove duplicate variable, change several local variables to
8650 more appropriate data types.
8651 (print_transfer_performance): Use %lu instead of %ld for ulongs.
8652
8653 2002-01-12 Andrew Cagney <ac131313@redhat.com>
8654
8655 From Peter Schauer:
8656 * language.c (longest_local_hex_string_custom): Use phex_nz to
8657 convert NUM to a hex string.
8658
8659 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
8660
8661 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
8662 the function.
8663 Update Copyright year.
8664
8665 2002-01-12 Andrew Cagney <ac131313@redhat.com>
8666
8667 * language.c (longest_raw_hex_string): Delete unused function.
8668
8669 2002-01-11 Petr Sorfa <petrs@caldera.com>
8670
8671 * MAINTAINERS (write-after-approval): Add myself.
8672 * dwarf2read.c (read_tag_string_type): Handling of
8673 DW_AT_byte_size.
8674 (read_tag_string_type): FORTRAN fix to prevent propagation of
8675 first string size.
8676 (set_cu_language): Handling of DW_LANG_Fortran95
8677
8678 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
8679
8680 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
8681 GETPID(inferior_ptid).
8682 (store_inferior_registers): Likewise.
8683
8684 2002-01-10 Jason Merrill <jason@redhat.com>
8685
8686 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
8687 Fix DW_OP_minus.
8688
8689 2002-01-10 Andrew Cagney <ac131313@redhat.com>
8690
8691 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
8692 and bfd/elf32-sh-nbsd.c.
8693
8694 2002-01-10 Michael Snyder <msnyder@redhat.com>
8695
8696 * NEWS: Mention --pid and corefile/proc-id behavior change.
8697
8698 * Makefile.in: Add rules for gcore.o and linux-proc.o.
8699 * gcore.c: Include cli/cli-decode.h instead of command.h.
8700
8701 * main.c (captured_main): Add new command line option "--pid".
8702 If the second command line argument (following the symbol-file)
8703 begins with a digit, try to attach to it before trying to open
8704 it as a corefile.
8705 (print_gdb_help): Document the "--pid" argument.
8706
8707 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
8708
8709 * completer.c (command_completer): New function.
8710
8711 * completer.h <command_completer>: Add prototype.
8712
8713 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
8714 completer for the "help" command.
8715
8716 2002-01-09 Jason Merrill <jason@redhat.com>
8717
8718 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
8719
8720 2002-01-09 Michael Snyder <msnyder@redhat.com>
8721
8722 * i386-linux-nat.c (fill_fpxregset): Make global.
8723 (store_fpxregset): Ditto.
8724
8725 * gregset.h (gdb_fpxregset_t): Define.
8726 (supply_fpxregset): Prototype.
8727 (fill_fpxregset): Prototype.
8728
8729 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
8730
8731 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
8732
8733 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
8734 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
8735 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
8736
8737 2002-01-09 Andrew Cagney <ac131313@redhat.com>
8738
8739 * MAINTAINERS: Update target maintainer rules so that any
8740 Maintainer can approve a tested patch for a maintenance-only
8741 target.
8742
8743 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
8744
8745 * MAINTAINERS (write-after-approval): Add myself.
8746
8747 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
8748 IN_SIGTRAMP.
8749
8750 2002-01-08 Michael Snyder <msnyder@redhat.com>
8751
8752 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
8753 real name of the executable, rather than the /proc name.
8754
8755 2002-01-03 Michael Snyder <msnyder@redhat.com>
8756
8757 Implement a "generate-core-file" command in gdb, save target state.
8758 * gcore.c: New file. Implement new command 'generate-core-file'.
8759 Save a corefile image of the current state of the inferior.
8760 * linux-proc.c: Add linux-specific code for saving corefiles.
8761 * target.h (struct target_ops): Add new target vectors for saving
8762 corefiles; to_find_memory_regions and to_make_corefile_notes.
8763 (target_find_memory_regions): New macro.
8764 (target_make_corefile_notes): New macro.
8765 * target.c (update_current_target): Inherit new target methods.
8766 (dummy_find_memory_regions): New place-holder method.
8767 (dummy_make_corefile_notes): New place-holder method.
8768 (init_dummy_target): Initialize new dummy target vectors.
8769 * exec.c (exec_set_find_memory_regions): New function.
8770 Allow the exec_ops vector for memory regions to be taken over.
8771 (exec_make_note_section): New function, target vector method.
8772 * defs.h (exec_set_find_memory_regions): Export prototype.
8773 * procfs.c (proc_find_memory_regions): New function, corefile method.
8774 (procfs_make_note_section): New function, corefile method.
8775 (init_procfs_ops): Set new target vector pointers.
8776 (find_memory_regions_callback): New function.
8777 (procfs_do_thread_registers): New function.
8778 (procfs_corefile_thread_callback): New function.
8779 * sol-thread.c (sol_find_memory_regions): New function.
8780 (sol_make_note_section): New function.
8781 (init_sol_thread_ops): Initialize new target vectors.
8782 * inftarg.c (inftarg_set_find_memory_regions): New function.
8783 Allow to_find_memory_regions vector to be taken over.
8784 (inftarg_set_make_corefile_notes): New function.
8785 Allow to_make_corefile_notes vector to be taken over.
8786 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
8787 interface layer if not target_has_execution (may be a corefile).
8788 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
8789 * config/sparc/sun4sol2.mh: Ditto.
8790 * config/alpha/alpha-linux.mh: Ditto.
8791 * config/arm/linux.mh: Ditto.
8792 * config/i386/x86-64linux.mh: Ditto.
8793 * config/ia64/linux.mh: Ditto.
8794 * config/m68k/linux.mh: Ditto.
8795 * config/mips/linux.mh: Ditto.
8796 * config/powerpc/linux.mh: Ditto.
8797 * config/sparc/linux.mh: Ditto.
8798
8799 2002-01-07 Michael Snyder <msnyder@redhat.com>
8800
8801 * arm-linux-nat.c: Remove references to regcache.c internal data
8802 (registers[] and register_valid[]).
8803
8804 2002-01-07 Michael Snyder <msnyder@redhat.com>
8805
8806 * linux-proc.c: New file. Implement child_pid_to_exec_file,
8807 so that attaching to a pid will automatically read the process's
8808 symbol file and shlibs.
8809 * Makefile.in: Add rule for linux-proc.o.
8810 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
8811 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
8812 * config/arm/linux.mh: Ditto.
8813 * config/i386/linux.mh: Ditto.
8814 * config/i386/x86-64linux.mh: Ditto.
8815 * config/ia64/linux.mh: Ditto.
8816 * config/m68k/linux.mh: Ditto.
8817 * config/mips/linux.mh: Ditto.
8818 * config/powerpc/linux.mh: Ditto.
8819 * config/sparc/linux.mh: Ditto.
8820
8821 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
8822
8823 * win32-nat.c: Add i386-tdep.h dependency.
8824
8825 2002-01-07 Michael Snyder <msnyder@redhat.com>
8826
8827 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
8828 instead of bfd_get_arch_size. Don't bail out just because
8829 there's no exec_bfd.
8830
8831 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
8832 * p-valprint.c (pascal_object_print_value): Ditto.
8833 * somread.c (som_symtab_read): Ditto.
8834 * symfile.c (simple_free_overlay_region_table): Ditto.
8835 * valops.c (value_assign): Ditto.
8836
8837 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
8838 use tilde_expand and strerror for opening save-tracepoints file.
8839
8840 * thread-db.c (thread_db_new_objfile): Indendation fix.
8841
8842 * infptrace.c (GDB_MAX_ALLOCA): New define.
8843 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
8844 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
8845 can be overridden with whatever value is appropriate to the host).
8846 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
8847 alloca to allocate potentially large buffer.
8848 * rs6000-nat.c (child_xfer_memory): Ditto.
8849 * symm-nat.c (child_xfer_memory): Ditto.
8850 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
8851
8852 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
8853
8854 From Nick Clifton <nickc@redhat.com>
8855 * d10v-tdep.c: Set STACK_START to 0x200bffe.
8856
8857 2002-01-07 Michael Snyder <msnyder@redhat.com>
8858
8859 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
8860 Don't use exec_bfd if it's NULL.
8861
8862 2002-01-06 Mark Kettenis <kettenis@gnu.org>
8863
8864 * valops.c (value_arg_coerce): Fix formatting.
8865
8866 2002-01-06 Andrew Cagney <ac131313@redhat.com>
8867
8868 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
8869 * gnu-nat.c: Ditto.
8870
8871 2002-01-06 Andrew Cagney <ac131313@redhat.com>
8872
8873 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
8874 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
8875 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
8876 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
8877 z8k-coff have not been multi-arched. Update z8k-coff build
8878 status.
8879
8880 2002-01-06 Andrew Cagney <ac131313@redhat.com>
8881
8882 * MAINTAINERS: Mark a29k target as obsolete.
8883 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
8884 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
8885 comments.
8886 * NEWS: Note that a29k targets are obsolete.
8887 * a29k-tdep.c: Mark as obsolete.
8888 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
8889 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
8890 a29k-*-vxworks* targets as obsolete.
8891 * remote-adapt.c: Obsolete.
8892 * remote-eb.c: Obsolete.
8893 * remote-mm.c: Obsolete.
8894 * remote-udi.c: Obsolete.
8895 * config/a29k/a29k-udi.mt: Obsolete.
8896 * config/a29k/a29k.mt: Obsolete.
8897 * config/a29k/tm-a29k.h: Obsolete.
8898 * config/a29k/tm-vx29k.h: Obsolete.
8899 * config/a29k/vx29k.mt: Obsolete.
8900
8901 2002-01-05 Andrew Cagney <ac131313@redhat.com>
8902
8903 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
8904 with BFD_ENDIAN_BIG.
8905
8906 2002-01-05 Andrew Cagney <ac131313@redhat.com>
8907
8908 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
8909 * configure, config.in: Re-generate.
8910 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
8911 * defs.h: Do not include <endian.h>.
8912
8913 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
8914
8915 * acconfig.h (HAVE_PT_GETXMMREGS): New.
8916 * config.in: Regenerate.
8917 * configure.in: Update copyright years.
8918 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
8919 * configure: Regenerate.
8920 * i386bsd-nat.c: Update copyright years.
8921 (fill_gregset): Use regcache_collect.
8922 (fetch_inferior_registers): Only fetch integer registers
8923 if requested to do so. Add support for XMM registers
8924 using PT_GETXMMREGS.
8925 (store_inferior_registers): Only store integer registers
8926 if requested to do so. Add support for XMM registers
8927 using PT_SETXMMREGS.
8928 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
8929 (store_inferior_registers): Remove.
8930 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
8931 (fetch_elfcore_registers): New function.
8932 (i386nbsd_elfcore_fns): New.
8933 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
8934 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
8935 i386bsd-nat.o.
8936 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8937 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
8938 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
8939 * config/i386/tm-nbsd.h: Update copyright years.
8940 (HAVE_SSE_REGS): Define.
8941 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
8942 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
8943 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
8944 (SIGCONTEXT_PC_OFFSET): Remove.
8945 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
8946
8947 2002-01-05 Andrew Cagney <ac131313@redhat.com>
8948
8949 * configure.tgt: Remove powerpc-*-macos* target.
8950 * config/m68k/xm-mpw.h: Delete file.
8951 * config/xm-mpw.h: Delete file.
8952 * ser-mac.c: Delete file.
8953 * mpw-make.sed: Delete file.
8954 * mpw-config.in: Delete file.
8955 * mac-xdep.c: Delete file.
8956 * mac-gdb.r: Delete file.
8957 * mac-defs.h: Delete file.
8958 * mac-nat.c: Delete file.
8959 * config/powerpc/macos.mh: Delete file.
8960 * config/powerpc/macos.mt: Delete file.
8961 * config/powerpc/nm-macos.h: Delete file.
8962 * config/powerpc/tm-macos.h: Delete file.
8963 * source.c (openp, open_source_file): Remove obsolete code.
8964 * top.c (gdb_readline): Ditto.
8965 * utils.c (query): Ditto.
8966 * event-top.c (display_gdb_prompt): Ditto.
8967 * Makefile.in (ser-mac.o): Delete obsolete target.
8968 * NEWS: Update.
8969
8970 2002-01-04 Andrew Cagney <ac131313@redhat.com>
8971
8972 * defs.h (BIG_ENDIAN): Delete macro definition.
8973 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
8974 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
8975 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
8976 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
8977 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
8978 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
8979 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
8980 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
8981 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
8982 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
8983 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
8984 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
8985 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
8986 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
8987 * gdbarch.c: Re-generate.
8988
8989 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
8990
8991 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
8992 for core files.
8993
8994 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
8995
8996 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
8997
8998 2002-01-04 Andrew Cagney <ac131313@redhat.com>
8999
9000 * value.h (value_ptr): Delete typedef.
9001
9002 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
9003
9004 * i386nbsd-nat.c: Update copyright years.
9005 Include i386-tdep.h.
9006
9007 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
9008
9009 * stabsread.c: Update copyright years.
9010
9011 From Debashis Mahata <debashis.mahata@wipro.com>:
9012 (read_struct_fields): Deal with Sun C compiler erroneous stab
9013 output for structs and unions.
9014 Fix PR gdb/269.
9015
9016 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
9017
9018 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
9019 prototype.
9020
9021 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
9022
9023 * cp-abi.c: Fix whitespace.
9024 (baseclass_offset): New wrapper function.
9025 * cp-abi.h (baseclass_offset): Add prototype.
9026 (struct cp_abi_ops): Add baseclass_offset pointer.
9027
9028 * valops.c (vb_match): Move to...
9029 * gnu-v2-abi.c (vb_match): here.
9030 * valops.c (baseclass_offset): Move to...
9031 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
9032
9033 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
9034
9035 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
9036 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
9037 * hpacc-abi.c (init_hpacc_ops): Likewise.
9038
9039 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
9040
9041 * valops.c (find_overload_match): Accept obj as a
9042 reference parameter. Update it before returning.
9043 * value.h (find_overload_match): Update prototype.
9044 * eval.c (evaluate_subexp_standard): Pass object to
9045 find_overload_match by reference.
9046
9047 2002-01-03 Andrew Cagney <ac131313@redhat.com>
9048
9049 * valarith.c: Replace value_ptr with struct value pointer. Remove
9050 register attribute from value declarations.
9051 * valops.c: Ditto.
9052 * value.h: Ditto.
9053 * scm-lang.c (scm_lookup_name): Ditto.
9054
9055 2002-01-03 Michael Snyder <msnyder@redhat.com>
9056
9057 Abstract the functionality of iterating over mapped memory
9058 regions into a general purpose iterator function.
9059 * procfs.c (iterate_over_mappings): New function, general purpose
9060 iterator for memory sections.
9061 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
9062 (solib_mappings_callback): New function, callback for above.
9063 (info_proc_mappings): Reimpliment using iterate_over_mappings.
9064 (info_mappings_callback): New function, callback for above.
9065
9066 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
9067
9068 2002-01-01 Mark Kettenis <kettenis@gnu.org>
9069
9070 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
9071 * i386-tdep.c: Include "elf-bfd.h".
9072 (process_note_abi_tag_sections): New function.
9073 (i386_gdbarch_init): Add code to recognize various OS/ABI
9074 combinations.
9075
9076 * maint.c (_initialize_maint_cmds): Add missing \ in
9077 string-literal.
9078
9079 For older changes see ChangeLog-2001
9080 \f
9081 Local Variables:
9082 mode: change-log
9083 left-margin: 8
9084 fill-column: 74
9085 version-control: never
9086 End:
This page took 0.20776 seconds and 5 git commands to generate.