2002-12-05 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-12-05 Andrew Cagney <ac131313@redhat.com>
2
3 * gdbarch.sh: Dump the predicate function and macro values.
4 (read): Print error on standard error.
5 * gdbarch.c: Regenerate.
6
7 2002-12-04 Kevin Buettner <kevinb@redhat.com>
8
9 * Makefile.in (mips_tdep_h): Define.
10 (mips-tdep.o): Add mips_tdep_h to dependency list.
11 * mips-tdep.h: New file.
12 * mips-tdep.c (mips-tdep.h): Include.
13 (enum mips_abi): Move to mips-tdep.h.
14 (mips_abi): New function.
15
16 2002-12-04 David Carlton <carlton@math.stanford.edu>
17
18 * Makefile.in (f-exp.tab.c): Don't depend on c-exp.tab.c.
19
20 2002-12-04 David Carlton <carlton@math.stanford.edu>
21
22 * symtab.c (lookup_symbol_aux): Move minsym code into a separate
23 function.
24 (lookup_symbol_aux_minsyms): New function.
25
26 2002-12-04 J. Brobecker <brobecker@gnat.com>
27
28 * pa64solib.c: s/boolean/int/. Fixes a build failure on hppa64-hpux.
29
30 2002-12-04 J. Brobecker <brobecker@gnat.com>
31
32 * config/pa/tm-hppah.h (PC_IN_SIGTRAMP): Renamed from IN_SIGTRAMP,
33 which is an obsolete macro name.
34
35 2002-12-04 Daniel Jacobowitz <drow@mvista.com>
36
37 * doublest.c (convert_floatformat_to_doublest): Cast exp_bias to int.
38 * config/alpha/alpha-linux.mh (MH_CFLAGS): Add -mieee.
39
40 2002-12-03 H.J. Lu (hjl@gnu.org)
41
42 * breakpoint.c (create_thread_event_breakpoint): Use xasprintf.
43 (create_breakpoints): Make sure the addr_string field is not
44 NULL.
45
46 2002-12-03 Andrew Cagney <ac131313@redhat.com>
47
48 * sparc-nat.c (fetch_inferior_registers)
49 (store_inferior_registers): Add comment on problem of LWP vs
50 threads.
51
52 From 2002-11-21 Daniel Jacobowitz <drow@mvista.com>
53 * lin-lwp.c (lin_lwp_fetch_registers): Remove.
54 (lin_lwp_store_registers): Remove.
55 (init_lin_lwp_ops): Use fetch_inferior_registers
56 and store_inferior_registers directly.
57 * sparc-nat.c (fetch_inferior_registers): Honor LWP ID.
58 (store_inferior_registers): Likewise.
59 Fix PR gdb/725.
60
61 2002-12-03 Andrew Cagney <ac131313@redhat.com>
62
63 * frame.h (get_frame_id): Convert to a function.
64 (null_frame_id, frame_id_p): Declare.
65 (frame_id_eq, frame_id_inner): Declare.
66 (frame_id_build): New function.
67 * frame.c (get_frame_id): Update. Use null_frame_id.
68 (frame_find_by_id): Rewrite using frame_id_p, frame_id_eq and
69 frame_id_inner.
70 (null_frame_id, frame_id_p): Define.
71 (frame_id_eq, frame_id_inner): Define.
72 (frame_id_build): New function.
73 * varobj.c (varobj_create): Update.
74 (varobj_update): Update.
75 * valops.c (value_assign): Update.
76 (new_root_variable): Update.
77 * infrun.c (save_inferior_status): Update.
78 * breakpoint.c (watch_command_1): Update.
79
80 2002-12-03 J. Brobecker <brobecker@gnat.com>
81
82 * config/pa/tm-hppah.h (SNAP1): Remove unused macro.
83 (SNAP2): Likewise.
84
85 2002-12-03 Andrew Cagney <cagney@redhat.com>
86
87 * NEWS: Mention Daniel Jacobowitz's multi-threaded shared library
88 patch.
89
90 * PROBLEMS: Mention PR gdb/725.
91
92 2002-12-03 Andreas Schwab <schwab@suse.de>
93
94 * infcmd.c (construct_inferior_arguments): Handle empty arguments.
95
96 2002-12-02 Adam Fedor <fedor@gnu.org>
97 Klee Dienes <kdienes@apple.com>
98
99 * objc-lang.c (objc_printstr): Add width arg to match
100 printstr prototype.
101 (compare_selectors): Add 'const' to arg types.
102 (compare_classes): Likewise.
103 (find_imps): Cast msym pointer to avoid compiler warning.
104 (print_object_command): Validate the address before
105 passing it to the print routine.
106 (find_objc_msgcall_submethod): Change function argument to
107 return an int.
108 * objc-lang.h: Add 'extern' to all function declarations.
109 (value_nsstring): Add declaration.
110
111 2002-12-02 J. Brobecker <brobecker@gnat.com>
112
113 * somsolib.c (dld_cache): Replace boolean by int for field is_valid.
114 Fixes a build failure on HP/UX.
115
116 * hpread.c (told_objfile): Replace boolean type by int. Fixes a build
117 failure on HP/UX.
118 (hpread_has_name): Advance declaration to avoid a compilation warning.
119 (pst_syms_count): Add missing variable type. By change, the compiler
120 was defaulting to int, which seems a good choice. Fixes a compilation
121 warning.
122 (pst_syms_size): Likewise.
123
124 2002-12-02 J. Brobecker <brobecker@gnat.com>
125
126 * hppa-tdep.c: Add #include "osabi.h" (for hppa_gdbarch_init).
127 (hppa_gdbarch_init): Detect osabi from objfile. Will be needed
128 later to set the proper gdbarch methods depending on the osabi.
129 * Makefile.in (hppa-tdep.o): Add dependency on osabi.h.
130
131 2002-12-02 J. Brobecker <brobecker@gnat.com>
132
133 * osabi.h (gdb_osabi): Add two new enum values for HPUX ELF and SOM.
134 * osabi.c (gdb_osabi_name): Add strings images for the two new
135 enum values.
136 (generic_elf_osabi_sniffer): Handle HPUX objfiles.
137
138 2002-12-02 Andrew Cagney <ac131313@redhat.com>
139
140 * MAINTAINERS (Java): Global maintainers are responible for Java.
141 (Past Maintainers): Mention both Anthony Green and Per Bothner as
142 part Java maintainers.
143
144 2002-12-02 J. Brobecker <brobecker@gnat.com>
145
146 * xcoffread.c (read_symbol_lineno): Replace boolean by int.
147 Fixes a compilation failure on AiX.
148
149 2002-12-02 J. Brobecker <brobecker@gnat.com>
150
151 * config/powerpc/aix432.mh (NATDEPFILES): Add a comment explaining
152 why aix-thread.o is not listed.
153
154 2002-12-01 Andrew Cagney <ac131313@redhat.com>
155
156 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Rename
157 PC_IN_CALL_DUMMY. Change to predicate. Always allow call.
158 * gdbarch.h, gdbarch.c: Re-generate.
159 * config/sparc/tm-sparc.h, config/sparc/tm-sp64.h: Update.
160 * config/mn10200/tm-mn10200.h, config/h8500/tm-h8500.h: Update.
161 * config/pa/tm-hppa.h, frame.h: Update.
162 * x86-64-tdep.c, vax-tdep.c, sparc-tdep.c: Update.
163 * s390-tdep.c, ns32k-tdep.c, mn10300-tdep.c: Update.
164 * m68k-tdep.c, i386-tdep.c, frv-tdep.c: Update.
165 * cris-tdep.c, alpha-tdep.c: Update.
166 * frame.c (set_unwind_by_pc, create_new_frame): Use either
167 DEPRECATED_PC_IN_CALL_DUMMY or pc_in_dummy_frame.
168 (get_prev_frame): Ditto.
169
170 2002-11-30 Andrew Cagney <cagney@redhat.com>
171
172 * exec.c (xfer_memory): Replace boolean with int.
173 * p-exp.y: Use 0 instead of false.
174 * corelow.c (gdb_check_format): Change return type to int from
175 boolean.
176 * utils.c: Don't include <curses.h> or <term.h> first.
177
178 2002-11-29 Stephane Carrez <stcarrez@nerim.fr>
179
180 * m68hc11-tdep.c (m68hc11_register_raw_size): Remove.
181 (m68hc11_register_byte): Remove.
182 (m68hc11_gdbarch_init): Don't set the above.
183
184 2002-11-29 Andrew Cagney <cagney@redhat.com>
185
186 * remote-mips.c (mips_initialize): Force a selected frame rebuild
187 by calling get_selected_frame.
188 * ocd.c (ocd_start_remote): Use get_selected frame instead of
189 set_current_frame, create_new_frame, select_frame and
190 get_current_frame.
191 * remote-e7000.c (e7000_start_remote): Ditto.
192 * remote-mips.c (common_open): Ditto
193 * remote-rdp.c (remote_rdp_open): Ditto.
194
195 2002-11-29 Andreas Schwab <schwab@suse.de>
196
197 * m68k-tdep.c (m68k_frame_chain, m68k_frame_saved_pc)
198 (altos_skip_prologue, delta68_frame_saved_pc, isi_frame_num_args)
199 (delta68_frame_num_args, news_frame_num_args, m68k_skip_prologue)
200 (m68k_frame_init_saved_regs, m68k_saved_pc_after_call): Use
201 read_memory_unsigned_integer instead of read_memory_integer when
202 dealing with addresses and instruction opcodes.
203 * m68klinux-tdep.c (m68k_linux_sigtramp_saved_pc)
204 (m68k_linux_frame_saved_pc): Likewise.
205
206 2002-11-29 Andrew Cagney <ac131313@redhat.com>
207
208 * stack.c (selected_frame, select_frame): Move from here ...
209 * frame.c (selected_frame, select_frame): ... to here. Include
210 "language.h".
211 * Makefile.in (frame.o): Update dependencies.
212 * frame.c (get_selected_frame): New function.
213 * frame.h (get_selected_frame): Declare.
214 (deprecated_selected_frame): Rename selected_frame.
215 * ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
216 * eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
217 * h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
218 * inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
219 * mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
220 * remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
221 * stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
222 * z8k-tdep.c, cli/cli-cmds.c: Update.
223
224 2002-11-29 Andrew Cagney <ac131313@redhat.com>
225
226 * frame.h (get_selected_block): Add comments.
227
228 2002-11-28 Andrew Cagney <ac131313@redhat.com>
229
230 * frame.c (pc_notcurrent): New function.
231 (find_frame_sal): New function.
232 * frame.h (find_frame_sal): Declare.
233 (struct symtab_and_line): Add opaque declaration.
234 * stack.c (print_frame_info_base): Use find_frame_sal instead of
235 find_pc_line.
236 (frame_info): Ditto.
237 * ada-lang.c (find_printable_frame): Ditto.
238
239 2002-11-28 J. Brobecker <brobecker@gnat.com>
240
241 * configure.in: Check that the pthdebug library is recent enough
242 before enabling thread support on native AiX.
243 * configure: Regenerate.
244
245 * config/powerpc/aix432.mh (NATDEPFILES): Remove aix-thread.o
246 from the list of object files as it is now appended by configure
247 if thread support is enabled.
248 (NAT_CLIBS): Removed as -lpthdebug is also appended by configure
249 if thread support is enabled.
250
251 2002-11-28 Andrew Cagney <cagney@redhat.com>
252
253 * stack.c (get_selected_block): In-line get_current_block.
254 * frame.h (get_current_block): Delete declaration.
255 * blockframe.c (get_current_block): Delete function.
256
257 2002-11-28 Andrew Cagney <ac131313@redhat.com>
258
259 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Rename
260 USE_GENERIC_DUMMY_FRAMES.
261 * gdbarch.h, gdbarch.c: Regenerate.
262 * valops.c, frame.c: Update.
263 * config/z8k/tm-z8k.h, config/mn10200/tm-mn10200.h: Update.
264 * config/m32r/tm-m32r.h, config/h8500/tm-h8500.h: Update.
265 * config/pa/tm-hppa.h, blockframe.c: Update.
266 * vax-tdep.c, sparc-tdep.c, ns32k-tdep.c: Ditto.
267 * m68k-tdep.c, alpha-tdep.c: Ditto.
268
269 * arm-tdep.c: Eliminate USE_GENERIC_DUMMY_FRAMES as always 1.
270 * mips-tdep.c: Ditto.
271
272 2002-11-27 Andrew Cagney <ac131313@redhat.com>
273
274 * gdbarch.sh (CALL_DUMMY_LOCATION): Default to AT_ENTRY_POINT.
275 (USE_GENERIC_DUMMY_FRAMES): Default to true.
276 (PC_IN_CALL_DUMMY): Default to generic_pc_in_call_dummy.
277 * gdbarch.c, gdbarch.h: Re-generate.
278 * inferior.h (USE_GENERIC_DUMMY_FRAMES): Delete macro definition.
279 (CALL_DUMMY_LOCATION): Delete macro definition.
280 (PC_IN_CALL_DUMMY): Delete macro definitions.
281
282 * arm-tdep.c (arm_gdbarch_init): Do not set pc_in_call_dummy,
283 default is already generic_pc_in_call_dummy.
284 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
285 * v850-tdep.c (v850_gdbarch_init): Ditto.
286 * sh-tdep.c (sh_gdbarch_init): Ditto.
287 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
288 * mips-tdep.c (mips_gdbarch_init): Ditto.
289 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
290 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
291 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
292 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
293 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
294 * avr-tdep.c (avr_gdbarch_init): Ditto.
295
296 * arm-tdep.c (arm_gdbarch_init): Do not set
297 use_generic_dummy_frames, default is already 1.
298 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
299 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
300 * v850-tdep.c (v850_gdbarch_init): Ditto.
301 * sh-tdep.c (sh_gdbarch_init): Ditto.
302 * s390-tdep.c (s390_gdbarch_init): Ditto.
303 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
304 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
305 * mips-tdep.c (mips_gdbarch_init): Ditto.
306 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
307 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
308 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
309 * i386-tdep.c (i386_gdbarch_init): Ditto.
310 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
311 * frv-tdep.c (frv_gdbarch_init): Ditto.
312 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
313 * cris-tdep.c (cris_gdbarch_init): Ditto.
314 * avr-tdep.c (avr_gdbarch_init): Ditto.
315
316 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
317 call_dummy_location, default is already AT_ENTRY_POINT.
318 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
319 * v850-tdep.c (v850_gdbarch_init): Ditto.
320 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
321 * sh-tdep.c (sh_gdbarch_init): Ditto.
322 * s390-tdep.c (s390_gdbarch_init): Ditto.
323 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
324 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
325 * mips-tdep.c (mips_gdbarch_init): Ditto.
326 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
327 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
328 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
329 * i386-tdep.c (i386_gdbarch_init): Ditto.
330 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
331 * frv-tdep.c (frv_gdbarch_init): Ditto.
332 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
333 * cris-tdep.c (cris_gdbarch_init): Ditto.
334 * avr-tdep.c (avr_gdbarch_init): Ditto.
335 * arm-tdep.c (arm_gdbarch_init): Ditto.
336 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
337
338 2002-11-28 Andrew Cagney <cagney@redhat.com>
339
340 * frame.h: Update comments on set_current_frame, create_new_frame,
341 flush_cached_frames, reinit_frame_cache, select_frame and
342 selected_frame.
343
344 2002-11-27 Andrew Cagney <cagney@redhat.com>
345
346 * config/z8k/tm-z8k.h (PC_IN_CALL_DUMMY): Update definition to use
347 deprecated pc_in_call_dummy function.
348 * config/sparc/tm-sparc.h (PC_IN_CALL_DUMMY): Ditto.
349 * config/sparc/tm-sp64.h (PC_IN_CALL_DUMMY): Ditto.
350 * config/pa/tm-hppa.h (PC_IN_CALL_DUMMY): Ditto.
351 * config/mn10200/tm-mn10200.h (PC_IN_CALL_DUMMY): Ditto.
352 * config/h8500/tm-h8500.h (PC_IN_CALL_DUMMY): Ditto.
353
354 2002-11-26 Martin M. Hunt <hunt@redhat.com>
355
356 * Makefile.in: Remove Tix dependencies.
357 * acinclude.m4: Ditto.
358 * aclocal.m4: Ditto.
359 * configure.in: Ditto.
360 * configure: Regenerated.
361
362 2002-11-26 Andrew Cagney <ac131313@redhat.com>
363
364 * gdbarch.sh (TARGET_FLOAT_FORMAT): Print the float format name.
365 (TARGET_DOUBLE_FORMAT, TARGET_LONG_DOUBLE_FORMAT): Ditto.
366 * gdbarch.c: Re-generate.
367
368 2002-11-26 Andrew Cagney <ac131313@redhat.com>
369
370 * config/h8500/tm-h8500.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
371 (USE_GENERIC_DUMMY_FRAMES): Define as zero.
372 (PC_IN_CALL_DUMMY): Define as pc_in_call_dummy_on_stack.
373 * config/mn10200/tm-mn10200.h (PC_IN_CALL_DUMMY): Define as
374 pc_in_call_dummy_at_entry_point.
375 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
376 (USE_GENERIC_DUMMY_FRAMES): Define as zero.
377 (PC_IN_CALL_DUMMY): Define as pc_in_call_dummy_on_stack.
378 * config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Delete undefine.
379 * config/sparc/tm-sparc.h (PC_IN_CALL_DUMMY): Define as
380 pc_in_call_dummy_on_stack.
381 * config/sparc/tm-sp64.h (PC_IN_CALL_DUMMY): Redefine as
382 pc_in_call_dummy_at_entry_point and pc_in_call_dummy_on_stack.
383 * config/z8k/tm-z8k.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
384 (USE_GENERIC_DUMMY_FRAMES): Define as zero.
385 (PC_IN_CALL_DUMMY): Defile as pc_in_call_dummy_on_stack.
386
387 2002-11-26 Andrew Cagney <ac131313@redhat.com>
388
389 * inferior.h (deprecated_pc_in_call_dummy_before_text_end): Rename
390 pc_in_call_dummy_before_text_end
391 (deprecated_pc_in_call_dummy_after_text_end): Rename
392 pc_in_call_dummy_after_text_end.
393 (deprecated_pc_in_call_dummy_on_stack): Rename
394 pc_in_call_dummy_on_stack.
395 (deprecated_pc_in_call_dummy_at_entry_point): Rename
396 pc_in_call_dummy_at_entry_point.
397 * m68k-tdep.c (m68k_gdbarch_init): Update.
398 * s390-tdep.c (s390_gdbarch_init): Update.
399 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
400 * vax-tdep.c (vax_gdbarch_init): Update.
401 * sparc-tdep.c (sparc_gdbarch_init): Update.
402 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
403 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
404 * i386-tdep.c (i386_gdbarch_init): Update.
405 * frv-tdep.c (frv_gdbarch_init): Update.
406 * cris-tdep.c (cris_gdbarch_init): Update.
407 * config/sparc/tm-sparc.h (PC_IN_CALL_DUMMY): Update.
408 * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
409 (deprecated_pc_in_call_dummy_after_text_end)
410 (deprecated_pc_in_call_dummy_on_stack)
411 (deprecated_pc_in_call_dummy_at_entry_point): Update.
412 * alpha-tdep.c (alpha_gdbarch_init): Update.
413
414 2002-11-25 Daniel Jacobowitz <drow@mvista.com>
415
416 * acconfig.h (HAVE_PREAD64): Add.
417 * configure.in: Check for pread64.
418 * config.in: Regenerated.
419 * configure: Regenerated.
420 * lin-lwp.c (lin_lwp_xfer_memory): Call linux_proc_xfer_memory.
421 * linux-proc.c (linux_proc_xfer_memory): New function.
422 * config/nm-linux.h (linux_proc_xfer_memory): Add prototype.
423
424 2002-11-25 David Carlton <carlton@math.stanford.edu>
425
426 * dwarf2read.c (scan_partial_symbols): Descend into namespace
427 pdi's with no name.
428
429 2002-11-25 Andrew Cagney <ac131313@redhat.com>
430
431 * MAINTAINERS: Mark h8500 as broken. Breakage occured Fri Nov 5
432 16:32:04 1999 Andrew Cagney <cagney@b1.cygnus.com>.
433
434 2002-11-25 Jim Blandy <jimb@redhat.com>
435
436 * symfile.c (init_objfile_sect_indices): New function.
437 (default_symfile_offsets): Move the section-index-initializing
438 stuff into init_objfile_sect_indices, and call that.
439
440 * symtab.h (SIZEOF_N_SECTION_OFFSETS): New macro.
441 (SIZEOF_SECTION_OFFSETS): Use SIZEOF_N_SECTION_OFFSETS.
442
443 * symfile.c (syms_from_objfile): Adjust indentation.
444
445 * symfile.c (symbol_file_add): Flush gdb_stdout even if from_tty
446 || info_verbose isn't true.
447
448 2002-11-24 Andrew Cagney <ac131313@redhat.com>
449
450 * gdbarch.sh (FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS): Change
451 default to get_frame_base.
452 * gdbarch.h, gdbarch.c: Regenerate.
453 * arch-utils.c (default_frame_address): Delete function.
454 * arch-utils.h (default_frame_address): Delete declaration
455
456 2002-11-24 Pierre Muller <muller@ics.u-strasbg.fr>
457
458 * varobj.c (find_frame_addr_in_frame_chain):
459 Use get_frame_base instead of FRAME_FP,
460 obvious fix.
461
462 2002-11-19 Andrew Cagney <ac131313@redhat.com>
463
464 * frame.h (FRAME_FP): Delete macro.
465 (get_frame_base): New function declaration.
466 * frame.c (get_frame_base): New function.
467 (get_frame_id): Use ->frame.
468 (frame_find_by_id): Rewrite to use get_frame_id.
469 * blockframe.c: Use get_frame_base instead of FRAME_FP.
470 * cris-tdep.c, d10v-tdep.c, findvar.c, h8500-tdep.c: Ditto.
471 * hppa-tdep.c, i386-tdep.c, infcmd.c, infrun.c: Ditto.
472 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
473 * mn10200-tdep.c, mn10300-tdep.c, rs6000-tdep.c: Ditto.
474 * sh-tdep.c, sparc-tdep.c, stack.c, tracepoint.c: Ditto.
475 * v850-tdep.c, valops.c, z8k-tdep.c: Ditto.
476
477 2002-11-24 Andrew Cagney <ac131313@redhat.com>
478
479 * arm-tdep.c (arm_gdbarch_init): Do not set get_saved_register.
480
481 2002-11-24 Andrew Cagney <ac131313@redhat.com>
482
483 * frame.c (set_unwind_by_pc): Revert change below, use
484 PC_IN_CALL_DUMMY.
485 (get_prev_frame): Ditto.
486
487 2002-11-24 Andrew Cagney <ac131313@redhat.com>
488
489 * dummy-frame.c (pc_in_dummy_frame): New function.
490 (generic_pc_in_call_dummy): Call pc_in_dummy_frame.
491 (find_dummy_frame): Update comment.
492 (generic_pop_current_frame): Use get_frame_type.
493 * dummy-frame.h (pc_in_dummy_frame): Declare.
494 * frame.c (set_unwind_by_pc): Use pc_in_dummy_frame.
495 (create_new_frame): Use pc_in_dummy_frame.
496 (get_prev_frame): Use pc_in_dummy_frame.
497 (frame_saved_regs_register_unwind): Use get_prev_frame.
498 (deprecated_generic_get_saved_register): Use get_prev_frame.
499
500 2002-11-23 Andrew Cagney <ac131313@redhat.com>
501
502 * blockframe.c (find_frame_addr_in_frame_chain): Move function
503 from here ...
504 * varobj.c (find_frame_addr_in_frame_chain): ... to here.
505 (varobj_create): Note that frame ID should be used.
506 * frame.h (find_frame_addr_in_frame_chain): Delete declaration.
507
508 2002-11-23 Andrew Cagney <ac131313@redhat.com>
509
510 * breakpoint.c: Include "gdb_assert.h".
511 (deprecated_frame_in_dummy): Assert that generic dummy frames are
512 not being used.
513 * Makefile.in (breakpoint.o): Update dependencies.
514 * ada-lang.c (find_printable_frame): Use get_frame_type instead of
515 deprecated_frame_in_dummy.
516 * stack.c (print_frame_info_base): Ditto.
517 (frame_info): Ditto.
518 (print_frame_info_base): Ditto. Delete dead code.
519
520 2002-11-23 Andreas Schwab <schwab@suse.de>
521
522 * Makefile.in (m68k_tdep_h): Define.
523 (abug-rom.o, cpu32bug-rom.o, dbug-rom.o, m68k-tdep.o, m68klinux-nat.o)
524 (remote-est.o, rom68k-rom.o): Add $(m68k_tdep_h).
525 * m68k-tdep.c: Move register number enum ...
526 * m68k-tdep.h: ... to this new file and rename the constants from
527 E_* to M68K_*. All uses changed.
528 * config/m68k/tm-m68k.h (D0_REGNUM, A0_REGNUM): Remove definitions.
529 * abug-rom.c: Include "m68k-tdep.h". Use
530 M68K_D0_REGNUM/M68K_A0_REGNUM instead of D0_REGNUM/A0_REGNUM.
531 * cpu32bug-rom.c: Likewise.
532 * dbug-rom.c: Likewise.
533 * m68k-tdep.c: Likewise.
534 * m68klinux-nat.c: Likewise.
535 * remote-est.c: Likewise.
536 * rom68k-rom.c: Likewise.
537 * config/m68k/tm-linux.h: Likewise.
538
539 2002-11-23 Andrew Cagney <ac131313@redhat.com>
540
541 * arm-tdep.c (arm_gdbarch_init): Remove old style non-generic
542 dummy frame initialization code.
543 * mips-tdep.c (mips_gdbarch_init): Ditto.
544
545 2002-11-22 Christopher Faylor <cgf@redhat.com>
546
547 * win32-nat.c (child_attach): Reset saw_create counter or subsequent
548 attach will hang.
549
550 2002-11-22 Andrew Cagney <ac131313@redhat.com>
551
552 * gdbarch.sh (FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS): Default
553 to default_frame_address.
554 * gdbarch.h, gdbarch.c: Re-generate.
555
556 * d10v-tdep.c (d10v_gdbarch_init): Do not set frame_args_address
557 or frame_locals_address to default_frame_address.
558 * m68k-tdep.c (m68k_gdbarch_init): Update.
559 * i386-tdep.c (i386_gdbarch_init): Update.
560 * frv-tdep.c (frv_gdbarch_init): Update.
561 * sh-tdep.c (sh_gdbarch_init): Update.
562 * v850-tdep.c (v850_gdbarch_init): Update.
563 * sparc-tdep.c (sparc_gdbarch_init): Update.
564 * mips-tdep.c (mips_gdbarch_init): Update.
565 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
566 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
567 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
568
569 * cris-tdep.c (cris_frame_args_address): Delete function.
570 (cris_frame_locals_address): Delete function.
571 (cris_gdbarch_init): Do not set frame_args_address or
572 frame_locals_address.
573
574 2002-11-22 Michael Snyder <msnyder@redhat.com>
575
576 * thread-db.c (thread_db_load): Tell the user what's going on
577 if dlopen fails on libthread_db.
578
579 2002-11-23 Andreas Schwab <schwab@suse.de>
580
581 * m68k-tdep.c (m68k_register_virtual_type): Use architecture
582 invariant return values.
583
584 2002-11-22 Andreas Schwab <schwab@suse.de>
585
586 * valops.c (value_slice): Move declaration of `offset' to avoid
587 warning.
588
589 2002-11-22 Christopher Faylor <cgf@redhat.com>
590
591 * win32-nat.c (psapi_get_dll_name): Fix a compiler warning.
592 (struct so_stuff): Add end_addr field.
593 (register_loaded_dll): Calculate and store end address of loaded dll.
594 (solib_address): New function.
595 (child_solib_loaded_library_pathname): Pass carefully constructed
596 section info to safe_symbol_file_add rather than ignoring it.
597 (get_child_debug_event): Call re_enable_breakpoints_in_shlibs when a
598 DLL is loaded.
599 (do_initial_child_stuff): Call disable_breakpoints_in_shlibs.
600 (child_create_inferior): Fix a compiler warning.
601 * config/i386/tm-cygwin.h (PC_SOLIB): Define new macro.
602 (solib_address): Declare new function.
603
604 2002-11-22 Andreas Schwab <schwab@suse.de>
605
606 * m68k-tdep.c (m68k_register_virtual_type): Return int for SR, FPC
607 and FPS registers.
608
609 2002-11-21 Daniel Jacobowitz <drow@mvista.com>
610
611 * maint.c (_initialize_maint_cmds): Fix typo. From
612 Francesco Potorti` <pot@gnu.org>.
613
614 2002-11-21 Andrew Cagney <cagney@redhat.com>
615
616 * mips-tdep.c (mips_dump_tdep): Delete references to
617 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
618 * config/mips/tm-mips.h (GDB_TARGET_MASK_DISAS_PC): Delete macro.
619 (GDB_TARGET_UNMASK_DISAS_PC): Delete macro.
620 * printcmd.c (build_address_symbolic): Delete calls to
621 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
622 (address_info): Ditto.
623 Fix PR gdb/773.
624
625 2002-11-19 Klee Dienes <kdienes@apple.com>
626 Adam Fedor <fedor@gnu.org>
627
628 * completer.c (skip_quoted_chars): Renamed from skip_chars. Add
629 the ability to explicitly specify the quote characters and word
630 break characters; if NULL is specified for either, use the old
631 behavior of using the characters used by the completer.
632 (skip_chars): New function. Convenience wrapper around
633 skip_quoted_chars to provide the original skip_chars behavior.
634 * completer.h (skip_quoted_chars): Add prototype.
635
636 2002-11-19 Andrew Cagney <ac131313@redhat.com>
637
638 Problems reported by Paul Eggert.
639 * gdbarch.sh: Use `sort -k 3`. Fix PR gdb/527.
640
641 2002-11-19 Andreas Schwab <schwab@suse.de>
642
643 * m68klinux-nat.c (IS_SIGTRAMP, IS_RT_SIGTRAMP)
644 (m68k_linux_in_sigtramp, SIGCONTEXT_PC_OFFSET)
645 (UCONTEXT_PC_OFFSET, m68k_linux_sigtramp_saved_pc)
646 (m68k_linux_frame_saved_pc): Move to ...
647 * m68klinux-tdep.c: ... here. New file.
648 * Makefile.in (m68klinux-tdep.o): Add dependencies.
649 * config/m68k/linux.mt (TDEPFILES): Add m68klinux-tdep.o.
650
651 2002-11-19 Adam Fedor <fedor@gnu.org>
652
653 * objc-exp.y: Revert to old skip_quoted usage.
654
655 2002-11-19 Adam Fedor <fedor@gnu.org>
656
657 * Makefile.in (SFILES): Add objc-exp.y objc-lang.c.
658 (objc_lang_h): Define.
659 (YYFILES): Add objc-exp.tab.c.
660 (local-maintainer-clean): Remove objc-exp.tab.c.
661 (objc-exp.tab.c, objc-exp.tab.o, objc-lang.o): New target.
662
663 2002-11-19 Pierre Muller <muller@ics.u-strasbg.fr>
664
665 * p-exp.y (typecast rule): Add automatic dereference of
666 pascal classes if needed.
667 (THIS): Set current_type.
668 Automatically dereference pascal classes.
669 (typebase rule): Add ^typebase recognition.
670
671 2002-11-18 Adam Fedor <fedor@gnu.org>
672
673 * expprint.c (print_subexp): Handle OP_OBJC_NSSTRING,
674 OP_OBJC_MSGCALL, and OP_OBJC_SELF.
675 (op_name): Handle OP_OBJC_SELF.
676 * Makefile.in (expprint.o): Add additional depends.
677
678 2002-11-18 Adam Fedor <fedor@gnu.org>
679
680 * expression.h: Rename ObjC ops to OP_OBJC_MSGCALL,
681 OP_OBJC_SELECTOR, OP_OBJC_NSSTRING, and OP_OBJC_SELF.
682 * parse.c (length_of_subexp, prefixify_subexp): Likewise.
683 * objc-exp.y: Likewise.
684
685 2002-11-18 Adam Fedor <fedor@gnu.org>
686
687 * gdb/parser-defs.h: (struct objc_class_str): New structure
688 for parsing ObjC classes.
689
690 2002-11-18 Andrew Cagney <ac131313@redhat.com>
691
692 * stack.c (frame_relative_level): Copy function from here ...
693 * frame.c (frame_relative_level): ...to here.
694
695 2002-11-18 Andrew Cagney <ac131313@redhat.com>
696
697 * frame.h (enum frame_type): Define.
698 (get_frame_type): Declare.
699 (struct frame_info): Add field `type'. Delete field
700 signal_handler_caller.
701 (deprecated_set_frame_signal_handler_caller): Declare.
702 * frame.c (get_frame_type): New function.
703 (deprecated_set_frame_type): New function.
704 (create_new_frame): Set the frame's type.
705 (get_prev_frame): Similar.
706 * sparc-tdep.c: Use get_frame_type instead of signal_handler_caller.
707 * s390-tdep.c: Ditto.
708 * m68klinux-nat.c: Ditto.
709 * ns32k-tdep.c: Ditto.
710 * x86-64-linux-tdep.c: Ditto.
711 * vax-tdep.c: Ditto.
712 * rs6000-tdep.c: Ditto.
713 * ppc-linux-tdep.c: Ditto.
714 * i386-interix-tdep.c: Ditto.
715 * mips-tdep.c: Ditto.
716 * m68k-tdep.c: Ditto.
717 * hppa-tdep.c: Ditto.
718 * ia64-tdep.c: Ditto.
719 * cris-tdep.c: Ditto.
720 * arm-tdep.c: Ditto.
721 * alpha-tdep.c: Ditto.
722 * i386-tdep.c: Ditto.
723 * stack.c: Ditto.
724 * ada-lang.c: Ditto.
725 * blockframe.c: Update.
726 * i386-interix-tdep.c (i386_interix_back_one_frame): Use
727 deprecated_set_frame_type instead of signal_handler_caller.
728 * ppc-linux-tdep.c (ppc_linux_init_extra_frame_info): Ditto.
729 * rs6000-tdep.c (rs6000_init_extra_frame_info): Ditto.
730 * breakpoint.h: Delete FIXME suggesting get_frame_type.
731
732 2002-11-18 Klee Dienes <kdienes@apple.com>
733
734 * Makefile.in (buildsym.o): Add dependency for gdb_assert.h.
735
736 2002-11-18 Klee Dienes <kdienes@apple.com>
737
738 * buildsym.c (pop_context): Add comment.
739
740 2002-11-18 Klee Dienes <kdienes@apple.com>
741
742 * buildsym.h (pop_context): Convert to function, defined in
743 buildsym.c.
744 * buildsym.c: Include gdb_assert.h.
745 (pop_context): Implement as C function. Add check for stack
746 underflow.
747 * dbxread.c (process_one_symbol): Complain and stop processing
748 that symbol if we are already at the top of the context stack for
749 a function-end N_FUN (this would imply an umatched RBRAC). Ditto
750 when processing N_RBRAC.
751
752 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
753
754 * config/pa/nm-hppah.h (CHILD_POST_FOLLOW_INFERIOR_BY_CLONE): Don't
755 define.
756 (struct target_waitstatus): Add opaque definition.
757 * corelow.c (init_core_ops): Don't set to_clone_and_follow_inferior.
758 * exec.c (init_exec_ops): Likewise.
759 * fork-child.c (clone_and_follow_inferior): Remove.
760 * hppah-nat.c (child_post_follow_inferior_by_clone): Remove.
761 * inferior.h (clone_and_follow_inferior): Remove prototype.
762 * infrun.c (follow_fork_mode_both): Remove.
763 (follow_fork_mode_kind_names): Remove commented out "both".
764 (follow_inferior_fork): Remove follow_fork_mode_both support.
765 * inftarg.c (child_clone_and_follow_inferior): Remove.
766 (child_post_follow_inferior_by_clone): Remove.
767 (init_child_ops): Don't set to_clone_and_follow_inferior
768 or to_post_follow_inferior_by_clone.
769 * target.c (default_clone_and_follow_inferior): Remove.
770 (cleanup_target): Don't set to_clone_and_follow_inferior
771 or to_post_follow_inferior_by_clone.
772 (find_default_clone_and_follow_inferior): Remove.
773 (init_dummy_target): Don't set to_clone_and_follow_inferior.
774 (debug_to_clone_and_follow_inferior): Remove.
775 (debug_to_post_follow_inferior_by_clone): Remove.
776 (setup_target_debug): Don't set to_clone_and_follow_inferior
777 or to_post_follow_inferior_by_clone.
778 * target.h (struct target_ops): Remove to_clone_and_follow_inferior
779 and to_post_follow_inferior_by_clone.
780 (child_clone_and_follow_inferior): Remove prototype.
781 (child_post_follow_inferior_by_clone): Remove prototype.
782 (target_clone_and_follow_inferior): Remove macro.
783 (target_post_follow_inferior_by_clone): Remove macro.
784 (find_default_clone_and_follow_inferior): Remove prototype.
785
786 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
787
788 * breakpoint.c (bpstat_stop_status): Call inferior_has_forked,
789 inferior_has_vforked, and inferior_has_execd instead of
790 target_has_forked, target_has_vforked, and target_has_execd.
791 * config/pa/nm-hppah.h (CHILD_HAS_FORKED, CHILD_HAS_VFORKED)
792 (CHILD_HAS_EXECD, CHILD_HAS_SYSCALL_EVENT): Don't define.
793 (CHILD_WAIT): Define.
794 (child_wait): Add prototype.
795 * hppah-nat.c (hpux_has_forked): Rename from child_has_forked.
796 Add prototype.
797 (hpux_has_vforked): Likewise, from child_has_vforked.
798 (hpux_has_execd): Likewise, from child_has_execd.
799 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
800 (not_same_real_pid, child_wait): New, copied from inftarg.c.
801 Call hpux_has_forked, hpux_has_vforked, hpux_has_execd,
802 and hpux_has_syscall_event instead of the target hooks.
803 * infrun.c (inferior_has_forked, inferior_has_vforked)
804 (inferior_has_execd): New functions.
805 * inftarg.c (not_same_real_pid): Remove.
806 (child_wait): Remove references to not_same_real_pid,
807 target_has_forked, target_has_vforked, target_has_execd,
808 and target_has_syscall_event.
809 (child_has_forked, child_has_vforked, child_has_execd)
810 (child_has_syscall_event): Remove.
811 (init_child_ops): Remove references to child_has_forked,
812 child_has_vforked, child_has_execd, and child_has_syscall_event.
813 * infttrace.c (hpux_has_forked): Rename from child_has_forked.
814 (hpux_has_vforked): Likewise, from child_has_vforked.
815 (hpux_has_execd): Likewise, from child_has_execd.
816 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
817 * target.c (cleanup_target): Remove references to
818 to_has_forked, to_has_vforked, to_has_execd, and
819 to_has_syscall_event.
820 (update_current_target): Likewise.
821 (setup_target_debug): Likewise.
822 (debug_to_has_forked): Remove.
823 (debug_to_has_vforked): Remove.
824 (debug_to_has_execd): Remove.
825 (debug_to_has_syscall_event): Remove.
826 * target.h (struct target_ops): Remove to_has_forked.
827 to_has_vforked, to_has_execd, and to_has_syscall_event.
828 (child_has_forked, child_has_vforked, child_has_execd)
829 (child_has_syscall_event): Remove prototypes.
830 (inferior_has_forked, inferior_has_vforked, inferior_has_execd): Add
831 prototypes.
832 (target_has_forked, target_has_vforked, target_has_execd)
833 (target_has_syscall_event): Remove macros.
834
835 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
836
837 * hppah-nat.c (child_can_follow_vfork_prior_to_exec): Remove.
838 * inftarg.c (child_can_follow_vfork_prior_to_exec): Remove.
839 (init_child_ops): Don't initialize to_can_follow_vfork_prior_to_exec.
840 * infttrace.c (child_can_follow_vfork_prior_to_exec): Remove.
841 * target.c (cleanup_target): Remove reference to
842 to_can_follow_vfork_prior_to_exec.
843 (update_current_target): Likewise.
844 (debug_to_can_follow_vfork_prior_to_exec): Remove.
845 (setup_target_debug): Remove reference to
846 to_can_follow_vfork_prior_to_exec.
847 * target.h (struct target_ops): Remove
848 to_can_follow_vfork_prior_to_exec.
849 (child_can_follow_vfork_prior_to_exec): Remove prototype.
850 (target_can_follow_vfork_prior_to_exec): Remove definition.
851 * config/pa/nm-hppah.h (CHILD_CAN_FOLLOW_VFORK_PRIOR_TO_EXEC): Don't
852 define.
853 * infrun.c (follow_vfork_when_exec): Remove.
854 (follow_inferior_fork): Remove references to follow_vfork_when_exec.
855 (follow_exec): Likewise.
856 (handle_inferior_event): Likewise.
857 (keep_going): Likewise.
858
859 2002-11-15 Andrew Cagney <cagney@redhat.com>
860
861 * frame.c (generic_unwind_get_saved_register): Make static.
862 * frame.h (generic_unwind_get_saved_register): Delete declaration.
863 * avr-tdep.c (avr_gdbarch_init): Do not set get_saved_register,
864 defaults to generic_unwind_get_saved_register.
865 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
866 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
867 * frv-tdep.c (frv_gdbarch_init): Ditto.
868 * i386-tdep.c (i386_gdbarch_init): Ditto.
869 * s390-tdep.c (s390_gdbarch_init): Ditto.
870 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
871 * v850-tdep.c (v850_gdbarch_init): Ditto.
872 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
873 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
874 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Delete macro.
875
876 2002-11-15 Andrew Cagney <cagney@redhat.com>
877
878 * x86-64-linux-nat.c (i386_sse_regnum_p): New function. Copy from
879 i386-tdep.c.
880
881 2002-11-15 Andrew Cagney <cagney@redhat.com>
882
883 * frame.h (sigtramp_saved_pc): Delete declaration.
884 * blockframe.c (sigtramp_saved_pc): Delete function.
885 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): New function.
886 (ns32k_frame_saved_pc): Call ns32k_sigtramp_saved_pc.
887 * vax-tdep.c (vax_sigtramp_saved_pc): New function.
888 (vax_frame_saved_pc): Call vax_sigtramp_saved_pc.
889
890 2002-11-15 Andrew Cagney <ac131313@redhat.com>
891
892 * frame.c (frame_pc_unwind): New function.
893 (frame_saved_regs_pc_unwind): New function.
894 (frame_register_unwind): Pass unwind_cache instead of
895 register_unwind_cache.
896 (set_unwind_by_pc): Add unwind_pc parameter, set.
897 (create_new_frame): Pass frame->pc_unwind to set_unwind_by_pc.
898 (get_prev_frame): Ditto.
899 * frame.h (frame_pc_unwind_ftype): Declare.
900 (struct frame_info): Add pc_unwind, pc_unwind_cache_p and
901 pc_unwind_cache. Rename register_unwind_cache to unwind_cache.
902 (frame_pc_unwind): Declare.
903 * dummy-frame.c (dummy_frame_pc_unwind): New function.
904 (struct dummy_frame): Add comment mentioning that values are for
905 previous frame.
906 * dummy-frame.h (dummy_frame_pc_unwind): Declare.
907 * blockframe.c (file_frame_chain_valid): Use frame_pc_unwind.
908 (generic_file_frame_chain_valid): Ditto.
909 * stack.c (frame_info): Ditto.
910
911 2002-11-15 David Carlton <carlton@math.stanford.edu>
912
913 * linespec.c (locate_first_half): New function.
914 (decode_line_1): Move code into locate_first_half.
915
916 2002-11-15 Andrew Cagney <ac131313@redhat.com>
917
918 * complaints.h: Add comment explaining how to eliminate a
919 deprecated_complain call.
920 * complaints.h: Fix spelling errors.
921
922 2002-11-15 David Carlton <carlton@math.stanford.edu>
923
924 * printcmd.c: Remove #include "disasm.h".
925
926 2002-11-14 Andrew Cagney <ac131313@redhat.com>
927
928 * frame.h: Move the most relevant interface functions to the start
929 of the file.
930
931 2002-11-14 Andrew Cagney <ac131313@redhat.com>
932
933 * regcache.h (deprecated_registers): Rename registers.
934 * a68v-nat.c, alpha-nat.c, arch-utils.c, core-sol2.c: Update.
935 * hp300ux-nat.c, hppab-nat.c, hppah-nat.c: Update.
936 * hppam3-nat.c, hpux-thread.c, i386gnu-nat.c: Update.
937 * ia64-aix-nat.c, ia64-linux-nat.c, ia64-tdep.c: Update.
938 * irix4-nat.c, irix5-nat.c, lynx-nat.c, m68k-tdep.c: Update.
939 * m68knbsd-nat.c, mips-linux-tdep.c, mipsm3-nat.c: Update.
940 * mipsv4-nat.c, ns32knbsd-nat.c, ppc-bdm.c: Update.
941 * ppc-sysv-tdep.c, ptx4-nat.c, regcache.c, remote-es.c: Update.
942 * remote-sds.c, remote-vx68.c, remote-vxmips.c: Update.
943 * remote-vxsparc.c, rs6000-tdep.c, sol-thread.c: Update.
944 * sparc-nat.c, sparc-tdep.c, sun3-nat.c, symm-nat.c: Update.
945 * v850ice.c: Update.
946
947 Wed Nov 13 19:51:05 2002 Andrew Cagney <cagney@redhat.com>
948
949 * utils.c (gdb_realpath): Add comment mentioning realpath with a
950 NULL buffer.
951
952 2002-11-13 Andrew Cagney <cagney@redhat.com>
953
954 * regcache.h (deprecated_read_register_bytes): Rename
955 read_register_bytes.
956 (deprecated_write_register_bytes): Rename write_register_bytes.
957 * alpha-tdep.c, arm-tdep.c, cris-tdep.c, d10v-tdep.c: Update.
958 * dwarf2cfi.c, frv-tdep.c, hppa-tdep.c, ia64-tdep.c: Update.
959 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Update.
960 * ns32k-tdep.c, regcache.c, remote-sds.c, remote-vx.c: Update.
961 * remote.c, rs6000-tdep.c, s390-tdep.c, sh-tdep.c: Update.
962 * sparc-tdep.c, v850-tdep.c, vax-tdep.c, x86-64-tdep.c: Update.
963 * xstormy16-tdep.c, z8k-tdep.c, config/nm-gnu.h: Update.
964 * config/nm-m3.h, config/h8500/tm-h8500.h: Update.
965 * config/i386/nm-ptx4.h, config/i386/nm-symmetry.h: Update.
966 * config/m32r/tm-m32r.h, config/m68k/nm-sun3.h: Update.
967 * config/m68k/tm-delta68.h, config/m68k/tm-linux.h: Update.
968 * config/mn10200/tm-mn10200.h, config/pa/tm-hppa64.h: Update.
969 * config/sparc/nm-nbsd.h, config/sparc/nm-sun4os4.h: Update.
970 * config/sparc/nm-sun4sol2.h, config/sparc/tm-sparclet.h: Update.
971
972 2002-11-13 Jim Blandy <jimb@redhat.com>
973
974 * findvar.c (read_var_value): Doc fix.
975
976 2002-11-13 Andrew Cagney <cagney@redhat.com>
977
978 * regcache.c (struct regcache): Replace passthough_p with
979 readonly_p.
980 (regcache_xmalloc): Initialize readonly_p.
981 (build_regcache): Initialize readonly_p.
982 (regcache_save): New function.
983 (regcache_restore): New function.
984 (regcache_cpy): Re-implement using regcache_save and
985 regcache_restore.
986 (regcache_raw_read): Update.
987 (regcache_cooked_read): When a read-only cache, checked for cached
988 pseudo register values.
989 (regcache_raw_write): Assert that the cache is not read-only.
990 Remove code handling a non-passthrough cache.
991 * regcache.h (regcache_save): Declare.
992 (regcache_restore): Declare.
993
994 2002-11-13 Andrew Cagney <cagney@redhat.com>
995
996 * regcache.c (struct regcache_descr): Add fields
997 sizeof_cooked_registers and sizeof_cooked_register_valid_p.
998 (init_legacy_regcache_descr): Compute the size of a cooked
999 register cache and then assign that to sizeof_raw_registers. Set
1000 sizeof_raw_register_valid_p to sizeof_cooked_register_valid_p
1001 (init_legacy_regcache_descr): Ditto.
1002
1003 2002-11-13 Andrew Cagney <cagney@redhat.com>
1004
1005 * regcache.c (register_buffer): Move to near start of file, update
1006 description.
1007 (regcache_raw_read): Use.
1008 (regcache_raw_write): Use.
1009 (struct regcache): Rename raw_registers to registers and
1010 raw_register_valid_p to register_valid_p.
1011 (regcache_xmalloc): Update.
1012 (regcache_xfree): Update.
1013 (register_buffer): Update.
1014 (regcache_cpy): Update.
1015 (regcache_cpy_no_passthrough): Update.
1016 (regcache_valid_p): Update.
1017 (deprecated_grub_regcache_for_registers): Update.
1018 (deprecated_grub_regcache_for_register_valid): Update.
1019 (set_register_cached): Update.
1020 (regcache_raw_write): Update.
1021
1022 2002-11-13 Pierre Muller <muller@ics.u-strasbg.fr>
1023
1024 * p-exp.y (name_not_typename): Use copy_name to
1025 set current_type variable for fields of THIS.
1026
1027 2002-11-12 Daniel Jacobowitz <drow@mvista.com>
1028
1029 * gnu-nat.c (init_gnu_ops): Remove NULL initializations.
1030 * monitor.c (init_base_monitor_ops): Likewise.
1031 * ppc-bdm.c (init_bdm_ppc_ops): Likewise.
1032 * remote-array.c (init_array_ops): Likewise.
1033 * remote-e7000.c (init_e7000_ops): Likewise.
1034 * remote-es.c (init_es1800_ops): Likewise.
1035 (init_es1800_child_ops): Likewise.
1036 * remote-rdp.c (init_remote_rdp_ops): Likewise.
1037 * remote-sim.c (init_gdbsim_ops): Likewise.
1038 * remote-st.c (init_st2000_ops): Likewise.
1039 * sol-thread.c (init_sol_core_ops): Likewise.
1040 (init_sol_thread_ops): Likewise.
1041 * v850ice.c (init_850ice_ops): Likewise.
1042 * win32-nat.c (init_child_ops): Likewise.
1043 * wince.c (init_child_ops): Likewise.
1044
1045 2002-11-12 Andrew Cagney <ac131313@redhat.com>
1046
1047 * utils.c (gdb_realpath): Make rp a constant pointer.
1048
1049 2002-11-12 Andrew Cagney <ac131313@redhat.com>
1050
1051 * utils.c (gdb_realpath): Rewrite. Try, in order: realpath() with
1052 a constant buffer; cannonicalize_file_name(); realpath() with a
1053 pathconf() defined buffer, xstrdup().
1054
1055 2002-11-12 Andrew Cagney <ac131313@redhat.com>
1056
1057 * config/djgpp/fnchange.lst: Fix typo, hang1.c to hang1.C; hang2.c
1058 to hang2.C; hang3.c to hang3.C.
1059
1060 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
1061
1062 * findvar.c (read_var_value): Reenable TLS code.
1063
1064 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
1065 Jim Blandy <jimb@redhat.com>
1066
1067 * gdb_thread_db.h (enum): Add TD_NOTALLOC.
1068 * target.c (update_current_target): Add
1069 to_get_thread_local_address.
1070 * target.h (to_get_thread_local_address): Export.
1071 (target_get_thread_local_address): Define.
1072 (target_get_thread_local_address_p): Define.
1073 * thread-db.c: Include solib-svr4.h.
1074 (td_thr_tls_get_addr_p): Define.
1075 (thread_db_load): Get a pointer to td_thr_tls_get_addr.
1076 (thread_db_get_thread_local_address): New function.
1077 (init_thread_db_ops): Initialize to_get_thread_local_address.
1078 * configure.in: Add test for TD_NOTALLOC in thread_db.h.
1079 * configure: Regenerate.
1080 * config.in: Regenerate.
1081
1082 2002-11-11 David Carlton <carlton@math.stanford.edu>
1083
1084 * linespec.c (set_flags): New function.
1085 (decode_line_1): Move code into set_flags.
1086
1087 2002-11-11 David Carlton <carlton@math.stanford.edu>
1088
1089 * linespec.c (decode_line_1): Move chunks of code to separate
1090 functions.
1091 (initialize_defaults): New function.
1092 (decode_indirect): New function.
1093
1094 2002-11-11 Andrew Cagney <ac131313@redhat.com>
1095
1096 * blockframe.c (sigtramp_saved_pc): Fix tipo. void_func_ptr
1097 instead of void_code_ptr.
1098 (sigtramp_saved_pc): Ditto.
1099
1100 * x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
1101 i386_fp_regnum_p.
1102
1103 2002-11-10 Daniel Jacobowitz <drow@mvista.com>
1104
1105 * gdbtypes.h (struct main_type): Move artificial flag out of
1106 loc. New member of ``struct field'' named static_kind. Reduce
1107 overloaded meaning of bitsize.
1108 (FIELD_ARTIFICIAL, SET_FIELD_PHYSNAME, SET_FIELD_PHYSADDR)
1109 (TYPE_FIELD_STATIC, TYPE_FIELD_STATIC_HAS_ADDR): Likewise.
1110 (FIELD_STATIC_KIND, TYPE_FIELD_STATIC_KIND): New macros.
1111
1112 * ada-lang.c (fill_in_ada_prototype): Initialize static_kind for
1113 new fields.
1114 (template_to_fixed_record_type, template_to_static_fixed_type)
1115 (to_record_with_fixed_variant_part): Likewise.
1116 * coffread.c (coff_read_struct_type, coff_read_enum_type): Likewise.
1117 * dwarf2read.c (dwarf2_add_field, read_enumeration): Likewise.
1118 * dwarfread.c (struct_type, enum_type): Likewise.
1119 * hpread.c (hpread_read_enum_type)
1120 (hpread_read_function_type, hpread_read_doc_function_type)
1121 (hpread_read_struct_type): Likewise.
1122 * mdebugread.c (parse_symbol): Likewise.
1123
1124 2002-11-10 Andrew Cagney <ac131313@redhat.com>
1125
1126 * breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy.
1127 * stack.c (print_frame_info_base): Update.
1128 (print_frame_info_base, frame_info): Update.
1129 * sparc-tdep.c (sparc_init_extra_frame_info): Update.
1130 (sparc_frame_saved_pc): Update.
1131 * ada-lang.c (find_printable_frame): Update.
1132 * breakpoint.c (deprecated_frame_in_dummy): Update.
1133
1134 2002-11-09 Mark Kettenis <kettenis@gnu.org>
1135
1136 * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already
1137 defined.
1138 (regmap): Extend to cover all registers.
1139 (PT_READ_U, PT_WRITE_U, PTRACE_XFER_TYPE,
1140 OLD_CANNOT_FETCH_REGISTERS, OLD_CANNOT_STORE_REGISTERS): Remove
1141 definitions.
1142 (fetch_register, sore_register): Simplify.
1143 (old_fetch_inferior_registers, old_store_inferior_registers):
1144 Remove functions.
1145 (cannot_fetch_register, cannot_store_register): Change
1146 implementation to use regmap array to decide which registers
1147 cannot be fetched/stored. This removes $orig_eax from the
1148 registers that cannot be fetched/stored.
1149 (fetch_inferior_registers): Call fetch_register directly instead
1150 of calling old_fetch_inferior_registers.
1151 (store_inferior_registers): Call store_register directly instead
1152 of calling old_store_inferior_registers.
1153 (i386_linux_dr_get): Replace PT_READ_U with PTRACE_PEEKUSER.
1154 (i386_linux_dr_set): Replace PT_WRITE_U with PTRACE_POKEUSER.
1155 * config/i386/nm-linux.h (U_REGS_OFFSET): Remove definition.
1156
1157 2002-11-09 Klee Dienes <kdienes@apple.com>
1158
1159 * i387-tdep.c (i387_supply_register): When called with NULL as a
1160 buffer, mark the register as not provided (to mirror the behavior
1161 of supply_register).
1162 (i387_supply_fxsave): Ditto.
1163 (i387_supply_fsave): Ditto (inherits the behavior from
1164 i387_supply_register).
1165
1166 2002-11-09 Klee Dienes <kdienes@apple.com>
1167
1168 * blockframe.c (sigtramp_saved_pc): Use
1169 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
1170 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
1171 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
1172
1173 2002-11-09 Andrew Cagney <ac131313@redhat.com>
1174
1175 * frame.c (get_prev_frame): Test prev_p to identify a previously
1176 unwound frame. Initialize prev_p.
1177 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
1178 comment.
1179
1180 2002-11-09 Andrew Cagney <ac131313@redhat.com>
1181
1182 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
1183 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
1184 more comments. Zap dead code.
1185
1186 2002-11-09 Mark Kettenis <kettenis@gnu.org>
1187
1188 * infcmd.c (print_vector_info, print_float_info): Move code that
1189 checks whether the target has any registers and whether there is a
1190 selected frame up, such that it is also used if a target provides
1191 multi-arch definitions of these functions.
1192
1193 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1194
1195 * Makefile.in (DESTDIR): Define.
1196 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
1197 prefix.
1198
1199 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
1200 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
1201
1202 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1203
1204 * i386-linux-tdep.c: Include "reggroups.h".
1205 (i386_linux_register_reggroup_p): New function.
1206 (i386_linux_init_abi): Set register_reggroup_p to
1207 i386_linux_register_reggroup_p.
1208 * i386-tdep.h (i386_register_reggroup_p): Declare.
1209 * i386-tdep.c: Include "reggroups.h".
1210 (i386_init_reggroups): New function.
1211 (i386_add_reggroups): New function.
1212 (i386_register_reggroup_p): New function.
1213 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
1214 (_initialize_i386_tdep): Call i386_init_reggroups.
1215 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
1216 specific reggroups.
1217
1218 2002-11-09 Mark Kettenis <kettenis@gnu.org>
1219
1220 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
1221 request that's available in *BSD.
1222
1223 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
1224
1225 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
1226 FDOFF_REGNUM.
1227
1228 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1229
1230 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
1231 * dummy-frame.c (find_dummy_frame): Rename
1232 generic_find_dummy_frame, make static. Return the dummy frame
1233 instead of the regcache.
1234 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
1235 (cached_find_dummy_frame): New function. Use find_dummy_frame.
1236 (dummy_frame_register_unwind): Rename
1237 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
1238 * dummy-frame.h (dummy_frame_register_unwind): Rename
1239 generic_call_dummy_register_unwind.
1240
1241 2002-11-08 Mark Kettenis <kettenis@gnu.org>
1242
1243 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
1244 except the inclusion of "i386/tm-i386.h", to...
1245 * config/i386/nm-i386v42mp.h: ...here.
1246 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
1247
1248 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1249
1250 * Makefile.in (frame.o): Update dependencies.
1251 * blockframe.c (current_frame, frame_obstack_alloc)
1252 (frame_saved_regs_zalloc, get_current_frame)
1253 (set_current_frame, create_new_frame)
1254 (set_unwind_by_pc, get_next_frame)
1255 (flush_cached_frames, reinit_frame_cache)
1256 (frame_saved_regs_register_unwind)
1257 (deprecated_generic_get_saved_register)
1258 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
1259 (_initialize_blockframe): Move frame code from here...
1260 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
1261 "annotate.h" and "dummy-frame.h".
1262 (_initialize_frame): New function.
1263
1264 2002-11-08 Jim Blandy <jimb@redhat.com>
1265
1266 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
1267 when we finish a function a context.
1268 * buildsym.h (outermost_context_p): New macro.
1269 (Bug analyzed by David Edelsohn.)
1270
1271 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1272
1273 * blockframe.c: Include "dummy-frame.h".
1274 (struct dummy_frame, dummy_frame_stack)
1275 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
1276 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
1277 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
1278 (generic_save_call_dummy_addr, generic_pop_current_frame)
1279 (generic_pop_dummy_frame, generic_fix_call_dummy)
1280 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
1281 dummy frame code from here...
1282 * dummy-frame.c: ...to here. New file.
1283 * dummy-frame.h: New file.
1284 (generic_call_dummy_register_unwind): Declare.
1285 (generic_find_dummy_frame): Declare.
1286 * Makefile.in (SFILES): Add dummy-frame.c.
1287 (dummy-frame.o): Specify dependencies.
1288 (dummy_frame_h): Define.
1289 (COMMON_OBS): Add dummy-frame.o.
1290 (blockframe.o): Update dependencies.
1291
1292 2002-11-08 Jim Blandy <jimb@redhat.com>
1293
1294 * dwarf2read.c (read_func_scope): Restore local_symbols and
1295 param_symbols after we finish the function context. (Based on a
1296 patch from David Edelsohn.)
1297
1298 2002-11-08 David Carlton <carlton@math.stanford.edu>
1299
1300 * linespec.c (symbol_found): New function.
1301 (minsym_found): New function.
1302 (decode_line_1): Separate out some code into separate functions.
1303
1304 2002-11-08 Joel Brobecker <brobecker@gnat.com>
1305
1306 * i386-tdep.c (i386_frameless_signal_p): Make non static for
1307 the benefit of the interix target.
1308 * i386-tdep.h (i386_frameless_signal_p): Declare.
1309
1310 2002-11-08 Andrew Cagney <ac131313@redhat.com>
1311
1312 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
1313 declaration that snuck in from change below.
1314
1315 2002-11-06 Andrew Cagney <cagney@redhat.com>
1316
1317 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
1318 all callers.
1319 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
1320 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
1321 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
1322 (i386_mxcsr_regnum_p): new function. Use instead of
1323 MXCSR_REGNUM_P.
1324 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
1325 (i386_sse_regnum_p): Declare.
1326 (i386_mxcsr_regnum_p): Declare.
1327 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
1328 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
1329 (IS_FP_REGNUM): Update definition.
1330 (IS_FPU_CTRL_REGNUM): Update definition..
1331 (IS_SSE_REGNUM): Update definition..
1332 * i386v-nat.c (register_u_addr): Update.
1333 * go32-nat.c (fetch_register): Update.
1334 (store_register): Update.
1335
1336 2002-11-07 Joel Brobecker <brobecker@gnat.com>
1337
1338 Preparation work to convert the hppa targets to multiarch partial.
1339
1340 * hppa-tdep.c: Add new functions replacing macro bodies from
1341 config/pa/tm-hppa.h. These function will be used to initialize
1342 the gdbarch structure. Import some comments from tm-hppa.h,
1343 and place them where appropriate, to avoid loosing them when
1344 we cleanup this file.
1345 (hppa_reg_struct_has_addr): New function.
1346 (hppa_inner_than): New function.
1347 (hppa_stack_align): New function.
1348 (hppa_pc_requires_run_before_use): New function.
1349 (hppa_instruction_nullified): New function.
1350 (hppa_register_byte): New function.
1351 (hppa_register_virtual_type): New function.
1352 (hppa_store_struct_return): New function.
1353 (hppa_cannot_store_register): New function.
1354 (hppa_frame_args_address): New function.
1355 (hppa_frame_locals_address): New function.
1356 (hppa_smash_text_address): New function.
1357 (hppa_coerce_float_to_double): New function. Requires the inclusion
1358 of "language.h".
1359
1360 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
1361
1362 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
1363 gdbarch-eligible macro to a call to the new associated function
1364 created in hppa-tdep.c.
1365 (INNER_THAN): Likewise.
1366 (STACK_ALIGN): Likewise.
1367 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
1368 (INSTRUCTION_NULLIFIED): Likewise.
1369 (REGISTER_BYTE): Likewise.
1370 (REGISTER_VIRTUAL_TYPE): Likewise.
1371 (STORE_STRUCT_RETURN): Likewise.
1372 (CANNOT_STORE_REGISTER): Likewise.
1373 (FRAME_ARGS_ADDRESS): Likewise.
1374 (FRAME_LOCALS_ADDRESS): Likewise.
1375 (SMASH_TEXT_ADDRESS): Likewise.
1376 (COERCE_FLOAT_TO_DOUBLE): Likewise.
1377 (ABOUT_TO_RETURN): Delete, as no longer used.
1378
1379 2002-11-07 Fernando Nasser <fnasser@redhat.com>
1380
1381 * printcmd.c (disassemble_command): Remove obsolete function.
1382 (_initialize_printcmd): Do not create disassemble command here.
1383 * cli/cli-cmds.c (disassemble_command): New function. Implements
1384 disassemble command.
1385 (init_cli_cmds): Create disassemble command here instead.
1386
1387 2002-11-07 Andrew Cagney <ac131313@redhat.com>
1388
1389 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
1390
1391 2002-11-07 Andrew Cagney <ac131313@redhat.com>
1392
1393 * regcache.h (regcache_cooked_read_using_offset_hack)
1394 (regcache_cooked_write_using_offset_hack): Delete declarations.
1395 (register_changed): Delete declaration.
1396 * regcache.c (regcache_cooked_read_using_offset_hack)
1397 (regcache_cooked_write_using_offset_hack): Delete functions.
1398 (cooked_xfer_using_offset_hack): Delete function.
1399 (register_changed): Delete function.
1400
1401 2002-11-07 Jim Blandy <jimb@redhat.com>
1402
1403 * macroscope.c: #include "complaints.h".
1404 (sal_macro_scope): Cope with filenames that appear in the symtabs,
1405 but not in the macro table.
1406 * Makefile.in (macroscope.o): Record dependency.
1407
1408 2002-11-07 Joel Brobecker <brobecker@gnat.com>
1409
1410 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
1411
1412 2002-11-07 Andrew Cagney <ac131313@redhat.com>
1413
1414 * regcache.c (deprecated_registers_fetched): Update.
1415 * regcache.h (deprecated_registers_fetched): Rename
1416 registers_fetched.
1417 * remote-vxsparc.c (vx_read_register): Update.
1418 * remote-vxmips.c (vx_read_register): Update.
1419 * remote-vx68.c (vx_read_register): Update.
1420 * irix5-nat.c (fetch_core_registers): Update.
1421 * mipsm3-nat.c (fetch_inferior_registers): Update.
1422 * sun3-nat.c (fetch_inferior_registers): Update.
1423 * symm-nat.c (fetch_inferior_registers): Update.
1424 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
1425 (fetch_core_registers): Update.
1426 (fetch_kcore_registers): Update.
1427 * mips-nat.c (fetch_inferior_registers): Update.
1428 * corelow.c (get_core_registers): Update.
1429 * a68v-nat.c (fetch_inferior_registers): Update.
1430
1431 2002-11-06 Joel Brobecker <brobecker@gnat.com>
1432
1433 Put in place the framework necessary for multiarching the hppa targets.
1434 * hppa-tdep.c (hppa_gdbarch_init): New function.
1435 (hppa_dump_tdep): New function.
1436 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
1437 tdep structure dumper.
1438 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
1439 until the multi-arching conversion has partially been completed.
1440
1441 2002-11-06 Andrew Cagney <ac131313@redhat.com>
1442
1443 * valops.c (value_assign): Merge lval_register case into
1444 lval_reg_frame_relative. Use frame_register and
1445 regcache_cooked_write instead of get_saved_register and
1446 write_register_bytes. After flushing the register cache, try to
1447 re-select the selected frame.
1448
1449 2002-11-06 Andrew Cagney <ac131313@redhat.com>
1450
1451 * regcache.h (deprecated_register_valid): Rename register_valid.
1452 * regcache.c: Update.
1453 * ia64-aix-nat.c: Update.
1454 * i386gnu-nat.c: Update.
1455 * alpha-nat.c: Update.
1456 * sparc-nat.c: Update.
1457 * lynx-nat.c: Update.
1458 * remote-mips.c: Update.
1459
1460 2002-11-06 Joel Brobecker <brobecker@gnat.com>
1461
1462 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
1463 to end of file, to be more consistent with the pratice followed
1464 by other targets.
1465
1466 2002-11-06 Andrew Cagney <ac131313@redhat.com>
1467
1468 * infcmd.c: Include "reggroups.h" and <ctype.h>.
1469 (print_float_info): Print registers in float_reggroup.
1470 (print_vector_info): Print registers in vector_reggroup.
1471 (default_print_registers_info): When all, print registers in
1472 all_reggroup. Otherwize, print registers in general_reggroup.
1473 (registers_info): Rewrite. Add support for register groups.
1474 Eliminate a goto.
1475
1476 2002-11-06 Elena Zannoni <ezannoni@redhat.com>
1477
1478 * symtab.c (methods_info): Delete. It has been ifdeffed out for
1479 ages.
1480 (symtab_symbol_info): Remove eons old ifdeffed out code.
1481 (_initialize_symtab): Remove prehistoric disabled 'info methods'
1482 command.
1483
1484 2002-11-06 Theodore A. Roth <troth@openavr.org>
1485
1486 * c-exp.y: Add missing semi-colons.
1487 * f-exp.y: Add missing semi-colons.
1488 * m2-exp.y: Add missing semi-colons.
1489 * p-exp.y: Add missing semi-colons.
1490 Add empty action to start rule to avoid a type clash error when
1491 building with bison >= 1.50.
1492
1493 2002-11-06 Jim Blandy <jimb@redhat.com>
1494
1495 * macrotab.h (struct macro_source_file): Doc fix.
1496
1497 2002-11-05 Jeff Johnston <jjohnstn@redhat.com>
1498
1499 * varobj.c (child_exists, cplus_number_of_children): Change
1500 STREQ macro references to strcmp.
1501 (cplus_name_of_child): Change code to handle the fact that
1502 fields are not necessarily contiguous with regards to their
1503 access control. This is a fix for PR gdb/792.
1504
1505 2002-11-05 Andrew Cagney <ac131313@redhat.com>
1506
1507 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
1508 * gdbarch.h, gdbarch.c: Regnerate.
1509 * frame.h (frame_register): Declare.
1510 * frame.c (frame_register): New function.
1511 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
1512 GET_SAVED_REGISTER, otherwize call
1513 generic_unwind_get_saved_register.
1514 (frame_register_read): Use frame_register instead of
1515 get_saved_register.
1516
1517 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
1518
1519 From Jim Ingham <jingham@apple.com>:
1520 * event-top.c (gdb_disable_readline): New function.
1521 (_initialize_event_loop): Move comment.
1522
1523 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
1524
1525 * event-loop.c (start_event_loop): Add comment.
1526 Update copyright.
1527
1528 2002-11-05 Andrew Cagney <ac131313@redhat.com>
1529
1530 * infcmd.c (default_print_registers_info): Do not call
1531 PRINT_REGISTER_HOOK.
1532
1533 2002-11-05 Andrew Cagney <ac131313@redhat.com>
1534
1535 * sparc-tdep.c (sparc_print_register_hook): Make static.
1536 (sparc_print_registers_info): New function.
1537 (sparc_do_registers_info): New function.
1538 (sparclet_print_registers_info): New function.
1539 (sparclet_do_registers_info): New function.
1540 (do_sparc_print_registers_info): New function.
1541 (sparc_print_registers): New static function, clone of infcmd.c's
1542 default_print_registers_info.
1543 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
1544 (sparclet_do_registers_info): Declare.
1545 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
1546 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
1547 Re-define.
1548 (sparc_do_registers_info): Declare.
1549 (PRINT_REGISTER_HOOK): Delete macro.
1550 (sparc_print_register_hook): Delete declaration.
1551
1552 2002-11-05 David Carlton <carlton@math.stanford.edu>
1553
1554 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
1555 functions.
1556 (lookup_symbol_aux_local): New function.
1557 (lookup_symbol_aux_symtabs): New function.
1558 (lookup_symbol_aux_psymtabs): New function.
1559
1560 2002-11-05 David Carlton <carlton@math.stanford.edu>
1561
1562 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
1563 previous values of 'objfile' and 'block'.
1564
1565 2002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
1566
1567 * values.c (value_change_enclosing_type): Set
1568 enclosing_type field correctly also for the case where
1569 more memory needs to be allocated.
1570
1571 2002-11-03 Mark Kettenis <kettenis@gnu.org>
1572
1573 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
1574 of puts_filtered.
1575
1576 * i387-tdep.c (i387_print_float_info): Replace calls to
1577 register_read and deprecated_read_register_gen with calls to
1578 frame_register_read, and make the necessary adjustments to the
1579 surrounding code.
1580
1581 2002-11-02 Andrew Cagney <ac131313@redhat.com>
1582
1583 * gdbarch.sh (register_reggroup_p): Allow default value.
1584 * gdbarch.h, gdbarch.c: Regenerate.
1585
1586 2002-11-02 Andrew Cagney <ac131313@redhat.com>
1587
1588 * regcache.h: Add coment indicating replacements for deprecated
1589 functions.
1590
1591 2002-11-02 Andrew Cagney <cagney@redhat.com>
1592
1593 * reggroups.h, reggroups.c: New files.
1594 * regcache.c: Include "reggroups.h".
1595 (enum regcache_dump_what): Add `regcache_dump_groups'.
1596 (regcache_dump): Contract size of the "Type" column. When
1597 specified, dump the register's groups.
1598 (maintenance_print_register_groups): New function.
1599 (_initialize_regcache): Add command `maint print register-groups'.
1600 * Makefile.in (COMMON_OBS): Add reggroups.o
1601 (SFILES): Add reggroups.c.
1602 (reggroups_h): Define.
1603 (regcache.o, gdbarch.o): Update dependencies.
1604 (reggroups.o): Specify dependencies.
1605 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
1606 Add opaque declaration for `struct reggroup' in generated .h file.
1607 Include "reggroups.h" in generated .c file.
1608 gdbarch.h, gdbarch.c: Re-generate.
1609
1610 2002-11-02 Andrew Cagney <cagney@redhat.com>
1611
1612 * regcache.h (deprecated_read_register_gen): Rename
1613 read_register_gen.
1614 (deprecated_write_register_gen): Rename write_register_gen.
1615 * i387-tdep.c: Update.
1616 * x86-64-linux-nat.c: Update
1617 * wince.c: Update.
1618 * thread-db.c: Update.
1619 * win32-nat.c: Update.
1620 * mips-tdep.c: Update.
1621 * d10v-tdep.c: Update.
1622 * cris-tdep.c: Update.
1623 * remote-sim.c: Update.
1624 * remote-rdi.c: Update.
1625 * remote-rdp.c: Update.
1626 * frame.c: Update.
1627 * target.c: Update.
1628 * blockframe.c: Update.
1629 * x86-64-tdep.c: Update.
1630 * xstormy16-tdep.c: Update.
1631 * sh-tdep.c: Update.
1632 * s390-tdep.c: Update.
1633 * rs6000-tdep.c: Update.
1634 * sparc-tdep.c: Update.
1635 * i386-tdep.c: Update.
1636 * dwarf2cfi.c: Update.
1637 * regcache.c: Update.
1638
1639 2002-11-01 Joel Brobecker <brobecker@gnat.com>
1640
1641 New interix-specific files:
1642 * config/i386/nm-interix.h: New file.
1643 * config/i386/interix.mh: New file.
1644 * config/i386/interix.mt: New file.
1645 * i386-interix-nat.c: New file.
1646 * i386-interix-tdep.c: New file.
1647
1648 2002-11-01 Andrew Cagney <cagney@redhat.com>
1649
1650 * frame.h (deprecated_generic_get_saved_register): Rename
1651 generic_get_saved_register.
1652 * blockframe.c (deprecated_generic_get_saved_register): Update.
1653 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
1654 (xstormy16_frame_saved_register): Update.
1655 * sh-tdep.c (sh_gdbarch_init): Update.
1656 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1657 * ia64-tdep.c (ia64_get_saved_register): Update.
1658 * cris-tdep.c (cris_gdbarch_init): Update.
1659 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
1660 * arm-tdep.c (arm_gdbarch_init): Update.
1661
1662 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1663
1664 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
1665
1666 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1667
1668 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
1669 trampolines in sigaction.
1670
1671 2002-10-31 Andrew Cagney <cagney@redhat.com>
1672
1673 * h8300-tdep.c: Include "gdb_assert.h".
1674 (h8300_print_register): Add gdbarch, file and frame parameters.
1675 Use frame_read_unsigned_register to read the register's value.
1676 Use fprintf_filtered to display output.
1677 (h8300_print_registers_info): Replace h8300_do_registers_info.
1678 (h8300_gdbarch_init): Set print_registers_info.
1679
1680 2002-10-31 Andrew Cagney <cagney@redhat.com>
1681
1682 * frame.c (frame_read_unsigned_register): New function.
1683 (frame_read_signed_register): New function.
1684 * frame.h (frame_read_unsigned_register): Declare.
1685 (frame_read_signed_register): Declare.
1686
1687 2002-10-31 Andrew Cagney <cagney@redhat.com>
1688
1689 * h8500-tdep.c (h8500_print_registers_info): New static function,
1690 clone of infcmd.c's default_print_registers_info.
1691 (h8500_do_registers_info): New funtion.
1692 (h8500_print_register_hook): Rename print_register_hook, make
1693 static.
1694
1695 * config/h8500/tm-h8500.h: Update copyright.
1696 (DEPRECATED_DO_REGISTERS_INFO): Define.
1697 (h8500_do_registers_info: Declare.
1698 (PRINT_REGISTER_HOOK): Delete macro.
1699 (print_register_hook): Delete function.
1700
1701 2002-10-31 Andrew Cagney <cagney@redhat.com>
1702
1703 * z8k-tdep.c (z8k_print_register_hook): Make static.
1704 (z8k_print_registers_info): New static function, clone of
1705 infcmd.c's default_print_registers_info.
1706 (z8k_do_registers_info): New function. Wrap
1707 z8k_print_registers_info.
1708 * config/z8k/tm-z8k.h: Update copyright.
1709 (PRINT_REGISTER_HOOK): Delete macro.
1710 (z8k_print_register_hook): Delete declaration.
1711 (DEPRECATED_DO_REGISTERS_INFO): Define.
1712 (z8k_do_registers_info): Declare.
1713
1714 2002-10-30 Joel Brobecker <brobecker@gnat.com>
1715
1716 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
1717 as this is already provided by value.h, and was actually causing
1718 a compilation error because of a conflict in parameter type
1719 declaration due to a missing const keyword.
1720 (low_text_segment_addres): Fix a compilation warning.
1721
1722 2002-10-29 Daniel Jacobowitz <drow@mvista.com>
1723
1724 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
1725 registers without a name.
1726 (mips_linux_cannot_store_register): Don't store registers without
1727 a name.
1728
1729 2002-10-28 David Carlton <carlton@math.stanford.edu>
1730
1731 * symtab.c (find_addr_symbol): Delete. (It was already commented
1732 out.)
1733 * symtab.h: Delete prototype for find_addr_symbol.
1734
1735 2002-10-26 Andrew Cagney <cagney@redhat.com>
1736
1737 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
1738 DO_REGISTERS_INFO.
1739 gdbarch.h, gdbarch.c: Re-generate.
1740 * infcmd.c (default_print_registers_info): Update reference.
1741 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
1742 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
1743 * sh-tdep.c (sh_gdbarch_init): Ditto.
1744 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1745 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1746
1747 2002-10-26 Mark Kettenis <kettenis@gnu.org>
1748
1749 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
1750 cfi_init_extra_frame_info.
1751 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
1752 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
1753
1754 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
1755 target where necessary. Add more comments and remove the ones
1756 that don't provide any useful information.
1757
1758 * i386-tdep.c (i386_frame_saved_pc): Replace call to
1759 deprecated_read_register_dummy with
1760 frame_unwind_unsigned_register.
1761
1762 * i386-tdep.c (i386_extract_struct_value_address): Use
1763 regcache_raw_read_unsigned instead of
1764 regcache_cooked_read_unsigned since we know that the register
1765 we're reading isn't a pseudo register. Rename variable 'val' into
1766 the more descriptive 'addr'.
1767
1768 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
1769 (x86_64_push_return_address): Add comment.
1770 (x86_64_pop_frame): Make static.
1771 (examine_argument): Clarify comment.
1772 (x86_64_skip_prologue): Make prolog_expact variable static.
1773
1774 * dwarf2cfi.c: Fix some formatting problems.
1775 (context_cpy, read_encoded_pointer): Clarify comments.
1776
1777 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
1778 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
1779 i386 target back into x86_64_gdbarch_init. Add some comments and
1780 remove meaningless ones.
1781
1782 2002-10-25 Andrew Cagney <cagney@redhat.com>
1783
1784 * complaints.h (struct deprecated_complaint): Rename `struct
1785 complaint'.
1786 * complaints.c (complain): Update.
1787 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
1788 incorrect comment indicating that "symfile.h" was being included
1789 for the `struct complaint' definition.
1790 * remote-vx.c: Update.
1791 * objc-lang.c: Update.
1792 * xcoffread.c: Update.
1793 * hpread.c: Update.
1794 * mdebugread.c: Update.
1795 * stabsread.c: Update.
1796 * dwarf2read.c: Update.
1797 * dwarfread.c: Update.
1798 * elfread.c: Update.
1799 * coffread.c: Update.
1800 * stabsread.h: Update.
1801 * dbxread.c: Update.
1802 * buildsym.c: Update.
1803 * gdbtypes.c: Update.
1804 * macrotab.c: Update.
1805
1806 2002-10-25 Mark Kettenis <kettenis@gnu.org>
1807
1808 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
1809 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
1810 (x86_64_init_abi): ...new function.
1811
1812 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
1813 * i386v-nat.c: Include "i386-tdep.h".
1814
1815 2002-10-25 Andrew Cagney <cagney@redhat.com>
1816
1817 * gdbtypes.c (address_space_name_to_int): Update.
1818 (address_space_int_to_name): Update.
1819 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
1820 multi-arch predicate.
1821 (address_class_name_to_type_flags): Ditto.
1822 * gdbarch.h, gdbarch.c: Re-generate.
1823
1824 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
1825
1826 2002-10-24 Martin M. Hunt <hunt@redhat.com>
1827
1828 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
1829
1830 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
1831
1832 * symtab.h (INIT_SAL): Delete macro.
1833 (init_sal): Export.
1834 * symtab.c (init_sal): New function.
1835
1836 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
1837 to init_sal function call.
1838 (find_sal_from_funcs_and_line): Ditto.
1839 (all_sals_for_line): Ditto.
1840 * breakpoint.c (create_internal_breakpoint): Ditto.
1841 (create_fork_vfork_event_catchpoint): Ditto.
1842 (create_exec_event_catchpoint): Ditto.
1843 (parse_breakpoint_sals): Ditto.
1844 (watch_command_1): Ditto.
1845 (handle_gnu_4_16_catch_command): Ditto.
1846 (clear_command): Ditto.
1847 * hppa-tdep.c (child_enable_exception_callback): Ditto.
1848 * infcmd.c (run_stack_dummy): Ditto.
1849 * infrun.c (process_event_stop_test): Ditto.
1850 (check_sigtramp2): Ditto.
1851 (step_over_function): Ditto.
1852 * linespec.c (decode_line_2): Ditto.
1853 (decode_line_1): Ditto.
1854 * source.c (line_info): Ditto.
1855 * symtab.c (find_pc_sect_line): Ditto.
1856
1857 2002-10-24 Michal Ludvig <mludvig@suse.cz>
1858
1859 * dwarf2cfi.c (struct context)
1860 (struct context_reg): Moved to dwarf2cfi.h
1861 (context_alloc, frame_state_alloc, context_cpy):
1862 Made extern instead of static, removed prototypes.
1863 * dwarf2cfi.h (struct context)
1864 (struct context_reg): New, moved from dwarf2cfi.c
1865 (context_alloc, frame_state_alloc, context_cpy):
1866 New prototypes.
1867 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
1868 Changed from static to extern.
1869 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
1870 (LINUX_SIGCONTEXT_FP_OFFSET)
1871 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
1872 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
1873 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
1874 * x86-64-tdep.c (x86_64_gdbarch_init): Several
1875 set_gdbarch_*() calls now use x86-64 specific functions
1876 instead of DWARF2 CFI ones.
1877 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
1878 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
1879 (x86_64_init_extra_frame_info): New prototypes.
1880
1881 2002-10-23 David Carlton <carlton@math.stanford.edu>
1882
1883 * linespec.c: #include "parser-defs.h".
1884 Delete prototype for find_template_name_end.
1885 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
1886
1887 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
1888
1889 * NEWS: add recent mi fixes.
1890 * varobj.c (struct varobj): Add new "updated" flag.
1891 (new_variable): Default "updated" flag to 0.
1892 (varobj_set_value): Set "updated" flag to 1 if value
1893 changes.
1894 (varobj_update): Check varobj "updated" flag before
1895 comparing old and refreshed values. Fix for
1896 PR gdb/702.
1897
1898 2002-10-23 David Carlton <carlton@math.stanford.edu>
1899
1900 * parse.c (parse_exp_1): Use BLOCK_START.
1901 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
1902 SYMBOL_BLOCK_VALUE.
1903 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
1904
1905 2002-10-23 David Carlton <carlton@math.stanford.edu>
1906
1907 * symtab.c: Delete cplusplus_hint.
1908 Delete prototype for find_template_name_end.
1909
1910 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1911
1912 * symtab.h: Update comment.
1913
1914 2002-10-23 Michael Snyder <msnyder@redhat.com>
1915
1916 * printcmd.c (address_info): Restore quotes in output.
1917 * valops.c (value_of_local): Restore quotes in error message.
1918
1919 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1920
1921 * symtab.c (symbol_demangled_name): New function.
1922 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
1923 turning most of it into a function.
1924 (symbol_demangled_name): Export.
1925
1926 2002-10-23 Michael Snyder <msnyder@redhat.com>
1927
1928 * valops.c (value_of_local): Restore quotes in error message.
1929
1930 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1931
1932 * symtab.c (symbol_init_language_specific): New function.
1933 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
1934 turning most of it into a function.
1935 (symbol_init_language_specific): Export.
1936
1937 2002-10-23 David Carlton <carlton@math.stanford.edu>
1938
1939 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
1940 (dwarf_attr_name): Ditto.
1941 (dwarf_type_encoding_name): Ditto.
1942 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
1943 (process_die): Handle DW_TAG_namespace,
1944 DW_TAG_imported_declaration, DW_TAG_imported_module.
1945 (read_namespace): New function.
1946
1947 2002-10-22 Joel Brobecker <brobecker@gnat.com>
1948
1949 * configure.in: Define NEW_PROC_API on Interix too.
1950 * configure: Regenerate.
1951
1952 2002-10-21 Joel Brobecker <brobecker@gnat.com>
1953
1954 * configure: Regenerate using the proper version of autoconf.
1955
1956 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1957
1958 * findvar.c (read_var_value): Temporarily disable TLS code, until
1959 complete TLS support is added.
1960
1961 2002-10-21 Jim Blandy <jimb@redhat.com>
1962 Elena Zannoni <ezannoni@redhat.com>
1963
1964 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
1965 for thread local storage locations.
1966 (struct symbol): Add objfile field.
1967 (SYMBOL_OBJFILE): Define.
1968 * dwarf2read.c (is_thread_local): New static variable.
1969 (new_symbol): If variable is in thread local fill in address class
1970 and objfile appropriately.
1971 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
1972 stack operation.
1973 * printcmd.c (address_info): Print the information for thread
1974 local storage variable.
1975 * findvar.c (read_var_value): In case of thread local variable,
1976 defer to the target vector code to compute address.
1977
1978 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1979
1980 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
1981 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
1982
1983 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1984
1985 * symtab.h (address_class): Rename
1986 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
1987 * hpread.c (hpread_process_one_debug_symbol): Ditto.
1988 * printcmd.c (address_info): Ditto.
1989 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
1990
1991 2002-10-20 Mark Kettenis <kettenis@gnu.org>
1992
1993 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
1994 DBREG_DRX macro to acces debug registers.
1995
1996 * Makefile.in (i386obsd-tdep.o): New target.
1997
1998 * solib-sunos.c: Include "bcache.h" and "regcache.h".
1999 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
2000
2001 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
2002 * config/i386/obsd.mt: New file.
2003 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
2004 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
2005 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
2006 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
2007 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
2008 * i386obsd-tdep.c: New file.
2009
2010 2002-10-19 Adam Fedor <fedor@gnu.org>
2011
2012 * objc-exp.y (name_not_typename): Fix invalid comment.
2013
2014 2002-10-20 Mark Kettenis <kettenis@gnu.org>
2015
2016 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
2017 to allocate partial syms and macro byte caches.
2018
2019 2002-10-18 David Carlton <carlton@math.stanford.edu>
2020
2021 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
2022
2023 2002-10-18 Adam Fedor <fedor@gnu.org>
2024
2025 * stabsread.c (find_name_end): New function.
2026 (define_symbol): Use it.
2027
2028 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
2029
2030 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
2031 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
2032 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
2033 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
2034
2035 2002-10-17 David Carlton <carlton@math.stanford.edu>
2036
2037 * symfile.h: Add opaque declaration for struct obstack.
2038 Declare obsavestring to take a const char *.
2039 * symfile.c (obsavestring): Make first argument a const char *.
2040
2041 2002-10-16 Adam Fedor <fedor@gnu.org>
2042
2043 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
2044 names when matching breakpoints in current file.
2045
2046 2002-10-16 Kevin Buettner <kevinb@redhat.com>
2047
2048 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
2049 (read_tag_pointer_type): Add address class support.
2050 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
2051 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
2052 New methods.
2053 * gdbarch.h, gdbarch.c: Regenerate.
2054 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
2055 (make_type_with_address_space, recursive_type_dump): Add address
2056 class support.
2057 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
2058 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
2059 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
2060
2061 2002-10-16 Klee Dienes <kdienes@apple.com>
2062
2063 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
2064 to get the last character of a char[] buffer, not
2065 name[sizeof(vptr_name)-1].
2066
2067 2002-10-14 Adam Fedor <fedor@gnu.org>
2068
2069 * symtab.h: New objc_specific struct.
2070 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
2071 (SYMBOL_DEMANGLED_NAME): Likewise.
2072
2073 2002-10-14 Adam Fedor <fedor@gnu.org>
2074
2075 * symfile.c (init_filename_language_table): Add ObjC file extension.
2076
2077 2002-10-14 Adam Fedor <fedor@gnu.org>
2078
2079 * utils.c (puts_filtered_tabular): New function.
2080 (fprintf_symbol_filtered): Get ObjC demangled name.
2081 * defs.h (puts_filtered_tabular): Declared.
2082
2083 2002-10-14 Kevin Buettner <kevinb@redhat.com>
2084
2085 * c-lang.h (c_type_print_varspec_prefix): Delete.
2086 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
2087 ``need_post_space'' parameter. Adjust all callers.
2088
2089 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
2090
2091 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
2092 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
2093 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
2094 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
2095
2096 2002-10-13 Adam Fedor <fedor@gnu.org>
2097
2098 * source.c (print_source_lines): Update comments.
2099
2100 2002-10-13 Adam Fedor <fedor@gnu.org>
2101
2102 * valops.c (value_of_local): New function.
2103 (value_of_this): Use it.
2104 * value.h (value_of_local): Declared.
2105
2106 2002-10-13 Adam Fedor <fedor@gnu.org>
2107
2108 * parse.c: (length_of_subexp, prefixify_subexp): Handle
2109 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
2110
2111 2002-10-12 Adam Fedor <fedor@gnu.org>
2112
2113 * language.c (binop_result_type): Add language_objc to case.
2114 (integral_type): Likewise.
2115 (character_type): Likewise.
2116 (string_type): Likewise.
2117 (boolean_type): Likewise.
2118 (structured_type): Likewise.
2119 (binop_type_check): Likewise.
2120
2121 2002-10-11 Adam Fedor <fedor@gnu.org>
2122
2123 * printcmd.c (address_info): Print 'self' for ObjC.
2124
2125 2002-10-11 Adam Fedor <fedor@gnu.org>
2126
2127 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
2128 OP_SELF.
2129
2130 2002-10-11 Adam Fedor <fedor@gnu.org>
2131
2132 * language.h (CAST_IS_CONVERSION): Add language_objc.
2133
2134 2002-10-11 Adam Fedor <fedor@gnu.org>
2135
2136 * defs.h (enum language): Add language_objc.
2137
2138 2002-10-11 Klee Dienes <kdienes@apple.com>
2139
2140 * corefile.c (read_memory_typed_address): New function.
2141 * gdbcore.h (read_memory_typed_address): Add prototype.
2142 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
2143 to read a value destined for a CORE_ADDR, not read_memory_integer.
2144 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
2145 (f77_get_dynamic_lowerbound): Ditto.
2146
2147 2002-10-11 Martin M. Hunt <hunt@redhat.com>
2148
2149 * utils.c (string_to_core_addr): After turning string into
2150 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
2151 which will do necessary sign-extension, etc.
2152
2153 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
2154
2155 * c-exp.y (THIS): Delete token and grammar rule.
2156 (yylex): Don't return THIS.
2157 * cp-valprint.c (vtbl_ptr_name_old): Delete.
2158 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
2159 * demangle.c (cplus_markers): Update comment. Put '$'
2160 first. Remove CPLUS_MARKER.
2161 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
2162 * jv-exp.y (THIS): Delete token and grammar rule.
2163 (yylex): Don't return THIS.
2164 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
2165 * objc-exp.y (THIS): Delete token and grammar rule.
2166 (yylex): Don't return THIS.
2167 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
2168 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
2169 (read_member_functions): Likewise for opname.
2170 (read_tilde_fields): Use is_cplus_marker.
2171
2172 * defs.h (CPLUS_MARKER): Don't define.
2173 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
2174 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
2175 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
2176 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
2177 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
2178
2179 * config/i386/tm-i386v4.h: Delete file.
2180 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
2181 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
2182 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
2183 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
2184 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
2185 * config/i386/i386sco5.mt (TM_FILE): Likewise.
2186 * config/i386/i386v4.mt (TM_FILE): Likewise.
2187 * config/i386/ncr3000.mt (TM_FILE): Likewise.
2188
2189 2002-10-10 Marko Mlinar <markom@opencores.org>
2190
2191 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
2192 accidentially not commited 2002-10-09
2193 * gdbarch.h, gdbarch.c: Re-generate.
2194
2195 2002-10-09 Marko Mlinar <markom@opencores.org>
2196
2197 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
2198 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
2199 * gdbarch.h, gdbarch.c: Re-generate.
2200
2201 2002-10-08 Petr Sorfa <petrs@caldera.com>
2202
2203 Revised and re-submitted by John Wolfe <jlw@caldera.com>
2204
2205 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
2206 so we can work on more than one compilation unit at a time. This
2207 helps prepare GDB to handle inter-CU die references.
2208 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
2209 the code to be defined before struct comp_unit_head.
2210 (comp_unit_head): Added new members - offset, cu_head,
2211 begin_die, next and dwarf2_abbrevs.
2212 (dwarf2_abbrevs): Removed single static var; now member of
2213 struct comp_unit_head.
2214 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
2215 members.
2216 (psymtab_to_symtab_1): Changed to work with the new
2217 struct comp_unit_head.
2218 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
2219 constructs the dwarf2_abbrevs[] inside the cu_header.
2220 (dwarf2_empty_abbrev_table): Now expects a ptr to a
2221 dwarf2_abbrev table to clean up.
2222 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
2223 handling of dwarf2_abbrevs inside the cu_header.
2224 (read_partial_die): Now supports the call to the new
2225 dwarf2_lookup_abbrev.
2226 (read_full_die): Now supports the call to the new
2227 dwarf2_lookup_abbrev.
2228
2229 2002-10-06 Christopher Faylor <cgf@redhat.com>
2230
2231 * Makefile.in (install-gdbtk): Add missing continuation backslash to
2232 insure that shell variables, such as "transformed_name" are propagated
2233 to later shell statements in rule.
2234
2235 2002-10-06 Mark Kettenis <kettenis@gnu.org>
2236
2237 * config/i386/nm-i386sco.h: Add protection against
2238 multiple-inclusion. Include "i386/nm-i386v.h".
2239 (REGISTER_U_ADDR): Remove define.
2240 (i386_register_u_addr): Remove prototype.
2241
2242 2002-10-04 Michael Snyder <msnyder@redhat.com>
2243
2244 * m32r-stub.c (handle_exception): Make sure exception is "trap"
2245 before treating it as a single-step event.
2246
2247 2002-10-03 Adam Fedor <fedor@gnu.org>
2248
2249 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
2250 (objc_demangle): Remove assignment in if statements, Replace
2251 free with xfree.
2252 (add_msglist): Likewise.
2253 (end_msglist): Likewise.
2254 (complare_selectors): Likewise.
2255 (selectors_info): Likewise.
2256 (compare_classes): Likewise.
2257 (classes_info): Likewise.
2258 (print_object_command): Likewise.
2259 (find_objc_msgcall_submethod): Replace PTR with void *.
2260 * objc-lang.h: Remove check for __STDC__.
2261
2262 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
2263
2264 * ui-out.h (ui_out_field_fmt_int): New prototype.
2265 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
2266 of field width and alignment.
2267 * stack.c (print_frame_info_base): When printing frame level, use
2268 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
2269 PR gdb/192
2270
2271 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
2272
2273 * MAINTAINERS: Add self to Write After Approval list.
2274
2275 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
2276
2277 * infcmd.c (interrupt_target_command_wrapper): Delete.
2278 (interrupt_target_command): Make non static.
2279 (nofp_registers_info): Make static.
2280 * stack.c (return_command_wrapper): Delete.
2281 (return_command): Make non static.
2282
2283 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
2284
2285 * event-top.c (gdb_setup_readline): New function. Code moved from
2286 _initialize_event_loop().
2287 (_initialize_event_loop): Call gdb_setup_readline().
2288
2289 2002-10-02 Andrew Cagney <ac131313@redhat.com>
2290
2291 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
2292 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
2293 * gdbarch.h, gdbarch.c: Re-generate.
2294
2295 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
2296
2297 Fix PR gdb/778
2298 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
2299 before recursing.
2300 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
2301 of fill_in_vptr_fieldno.
2302
2303 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
2304
2305 * inferior.h (registers_info, stepi_command, nexti_command,
2306 continue_command, interrupt_target_command): Export from infcmd.c.
2307 * frame.h (args_info, selected_frame_level_changed_hook,
2308 return_command): Export from stack.c.
2309 * v850ice.c (stepi_command, nexti_command, continue_command): use
2310 prototypes from inferior.h.
2311 * tracepoint.c (registers_info, args_info, locals_info): Use
2312 prototypes from frame.h and inferior.h.
2313 * Makefile.in (mi-main.o): Add dependency on frame.h.
2314
2315 2002-10-02 Andrew Cagney <ac131313@redhat.com>
2316
2317 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
2318 value in register 3 adjusted by ppc_gp0_regnum.
2319
2320 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
2321
2322 2002-10-02 Marko Mlinar <markom@opencores.org>
2323
2324 * MAINTAINERS: Add myself to the Write After Approval list.
2325
2326 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
2327
2328 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
2329 of the section for the N64 ABI, fixed.
2330
2331 * config/mips/tm-irix6.h: Include solib.h.
2332
2333 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
2334
2335 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
2336 GNU operators.
2337
2338 2002-10-01 Andrew Cagney <ac131313@redhat.com>
2339
2340 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
2341 and that "mi0" syntax has been removed.
2342
2343 2002-09-30 David Carlton <carlton@math.stanford.edu>
2344
2345 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
2346 * ppc-sysv-tdep.c: #include "gdb_string.h".
2347 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
2348 pacify GCC.
2349
2350 2002-10-01 Andrew Cagney <ac131313@redhat.com>
2351
2352 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
2353 "vrsave"'s register number.
2354
2355 2002-09-30 Andrew Cagney <ac131313@redhat.com>
2356
2357 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
2358 use frame_unwind_signed_register to obtain the PC.
2359 (mips_frame_chain): Handle a generic dummy frame.
2360 (mips_init_extra_frame_info): When a generic dummy frame, don't
2361 re-compute the frame base.
2362 (mips_pop_frame): Handle generic dummy frames.
2363 (mips_gdbarch_init): When generic dummy frames, set
2364 use_generic_dummy_frames, push_dummy_frame to
2365 generic_push_dummy_frame, pc_in_call_dummy to
2366 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
2367 generic_save_dummy_frame_tos.
2368
2369 2002-09-30 Andrew Cagney <ac131313@redhat.com>
2370
2371 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
2372 against TOP when TOP was explictly set.
2373 (generic_push_dummy_frame): Set TOP to zero.
2374
2375 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
2376
2377 * event-loop.c (start_event_loop): Rename variable 'result' to
2378 'gdb_result', to avoid conflicts with upcoming intepreters changes.
2379
2380 2002-09-30 Keith Seitz <keiths@redhat.com>
2381
2382 * gdb-events.sh (selected_thread_changed): New event.
2383 * gdb-events.c: Regenerated.
2384 * gdb-events.h: Regenerated.
2385
2386 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
2387
2388 * MAINTAINERS: Add self to Write After Approval list.
2389
2390 2002-09-30 Fernando Nasser <fnasser@redhat.com>
2391
2392 * disasm.c: New file.
2393 * disasm.h: New file.
2394 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
2395 (compare_lines): Ditto.
2396 (dump_insns): Ditto.
2397 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
2398 argument.
2399 (do_assembly_only): Ditto.
2400 (do_disassembly): Renamed to gdb_disassembly and moved to
2401 disasm.c. Sdded uiout argument.
2402 * Makefile.in: Add new files. Reorder SFILES list. Update
2403 dependencies. Include libgdb.a later in the insight executable.
2404
2405 2002-09-29 Andrew Cagney <ac131313@redhat.com>
2406
2407 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
2408 bfd/elf64-alpha-fbsd.c.
2409
2410 2002-09-29 Andrew Cagney <ac131313@redhat.com>
2411
2412 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
2413 i386gnu-tdep.c.
2414
2415 2002-09-29 Andrew Cagney <ac131313@redhat.com>
2416
2417 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
2418 __FUNCTION__.
2419 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
2420 function name.
2421 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
2422 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
2423 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
2424 (S_msg_sig_post_reply): Ditto.
2425
2426 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
2427
2428 * sh-tdep.c (sh_use_struct_convention): Use definition according
2429 to ABI.
2430 (sh_push_arguments): Store in register with correct endianess.
2431 (sh_default_store_return_value): Ditto.
2432 (sh_gdbarch_init): Set sizeof long double to 8.
2433
2434 2002-09-27 Mark Kettenis <kettenis@gnu.org>
2435
2436 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
2437 Fix some whitespace problems.
2438
2439 2002-09-27 David Carlton <carlton@math.stanford.edu>
2440
2441 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
2442 (mcore-tdep.o): Ditto.
2443 (ns32k-tdep.o): Ditto.
2444 (ns32knbsd-tdep.o): Ditto.
2445 (sh3-rom.o): Ditto.
2446 (vax-tdep.o): Ditto.
2447 * cris-tdep.c: #include "gdb_string.h"
2448 * mcore-tdep.c: Ditto.
2449 * ns32k-tdep.c: Ditto.
2450 * ns32knbsd-tdep.c: Ditto.
2451 * sh3-rom.c: Ditto.
2452 * vax-tdep.c: Ditto.
2453
2454 2002-09-27 David Carlton <carlton@math.stanford.edu>
2455
2456 * config/djgpp/fnchange.lst: Add entries for
2457 gdb/testsuite/gdb.c++/m-static files.
2458
2459 2002-09-27 Jim Wilson <wilson@redhat.com>
2460
2461 * MAINTAINERS: Add myself to the Write After Approval list.
2462
2463 2002-09-26 Martin M. Hunt <hunt@redhat.com>
2464
2465 * mips-tdep.c (find_proc_desc): Initialize startaddr.
2466
2467
2468 2002-09-26 Andrew Cagney <ac131313@redhat.com>
2469
2470 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
2471 frame.
2472
2473 2002-09-26 Andrew Cagney <ac131313@redhat.com>
2474
2475 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
2476 (rs6000_struct_return_address): Delete variable.
2477 (rs6000_store_struct_return): Update.
2478 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
2479 deprecated_extract_struct_value_address.
2480 (rs6000_frame_align): New function.
2481 (rs6000_gdbarch_init): Set frame_align.
2482
2483 2002-09-26 Andrew Cagney <ac131313@redhat.com>
2484
2485 From Grace Sainsbury <graces@redhat.com>:
2486 * Makefile.in (gdbtk-main.o): New target.
2487 (gdb.o): New target.
2488 (main_h): Define.
2489 (main.o): Update dependencies.
2490 (gdb$(EXEEXT)): Add gdb.o.
2491 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
2492 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
2493 (SUBDIR_GDBTK_CLEAN): Set.
2494 (install-gdbtk): Install the insight binary.
2495 (uninstall-gdbtk): New target.
2496 (all-gdbtk, clean-gdbtk): New rule.
2497 * top.c (use_windows): Default to zero.
2498 * main.c: Include "main.h".
2499 (main): Delete.
2500 (struct captured_main_args): Delete.
2501 (gdb_main): New function.
2502 * main.h: New file.
2503 * gdb.c: New File.
2504
2505 2002-09-25 Andrew Cagney <cagney@redhat.com>
2506
2507 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
2508 (frame_map_regnum_to_name): New function.
2509 (frame_map_name_to_regnum): New function.
2510 * frame.h (frame_map_name_to_regnum): Declare.
2511 (frame_map_regnum_to_name): Declare.
2512 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
2513 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
2514 * parse.c: Do not include "builtin-regs.h".
2515 (target_map_name_to_register): Delete function.
2516 (write_dollar_variable): Use frame_map_name_to_regnum.
2517 * parser-defs.h (target_map_name_to_register): Delete declaration.
2518 * expprint.c: Include "frame.h".
2519 (print_subexp): Use frame_map_regnum_to_name.
2520 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
2521 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
2522
2523 2002-09-25 Andrew Cagney <ac131313@redhat.com>
2524
2525 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
2526 wasn't saved, and the next innermost frame is a dummy, return the
2527 dummy frame's link register.
2528
2529 2002-09-24 Jim Blandy <jimb@redhat.com>
2530
2531 Fix from Paul Breed:
2532 * main.c (captured_main): Add a `break' after the case for 'b'.
2533
2534 2002-09-24 Keith Seitz <keiths@redhat.com>
2535
2536 * varobj.c (c_type_of_child): Use get_target_type instead
2537 of TYPE_TARGET_TYPE.
2538
2539 2002-09-22 Fernando Nasser <fnasser@redhat.com>
2540
2541 * source.c (get_current_or_default_source_symtab_and_line): Remove
2542 function.
2543 (set_default_source_symtab_and_line): New function. Attempts to
2544 determine a source file to list lines from if one is not currently
2545 defined.
2546 (get_current_source_symtab_and_line): Initialize sal.pc and
2547 sal.end fields.
2548 (set_current_source_symtab_and_line): Mark argument as const.
2549 * source.h: Update declarations and comments.
2550 * linespec.c (decode_line_1): Replace call to removed routine above.
2551 * stack.c (print_frame_info_base): Ditto.
2552 * cli/cli-cmds.c (edit_command): Ditto.
2553 (list_command): Ditto.
2554
2555 2002-09-22 Fernando Nasser <fnasser@redhat.com>
2556
2557 * source.c (get_current_or_default_source_symtab_and_line): Initialize
2558 sal.pc and sal.end fields.
2559 (get_current_or_default_source_symtab_and_line): Ditto.
2560 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
2561 so we do not cause a new source symtab to be searched for (reverting an
2562 unintentional change from the 2002-09-20 patch).
2563 * scm-lang.c (scm_unpac): Ditto.
2564
2565 2002-09-21 Andrew Cagney <cagney@redhat.com>
2566
2567 * complaints.c (symfile_explanations): Remove new-line from
2568 ``isolated_message''.
2569 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
2570 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
2571
2572 2002-09-20 Nick Clifton <nickc@redhat.com>
2573
2574 * NEWS: Announce that V850EA ISA is no longer supported.
2575 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
2576
2577 2002-09-20 David Carlton <carlton@math.stanford.edu>
2578
2579 * Makefile.in (c-lang.o): Correct dependencies.
2580 (utils.o): Gather dependencies.
2581 (charset.o): Move.
2582 * c-lang.c: #include "gdb_string.h"
2583
2584 2002-09-20 Fernando Nasser <fnasser@redhat.com>
2585
2586 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
2587 * cli/cli-cmds.c (list_command): New function. Implements the new
2588 cli edit command.
2589 (_init_cli_cmds): Add new command definition.
2590 * gdb.1: Document edit command.
2591 * doc/gdb.texinfo: Document edit command.
2592
2593 2002-09-20 Fernando Nasser <fnasser@redhat.com>
2594
2595 * source.c: Make global variables current_source_symtab and
2596 current_source_line static.
2597 (list_command): Moved to cli/cli-cmds.c.
2598 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
2599 (get_first_line_listed): New accessor function.
2600 (get_lines_to_list): New accessor function.
2601 (get_current_source_symtab_and_line): New function. Retrieves the
2602 position in the source code that we consider current.
2603 (get_current_or_default_source_symtab_and_line): New function.
2604 Like the above but attempts to determine a default position if one
2605 is not currently defined.
2606 (set_current_source_symtab_and_line): New function. Sets the source
2607 code position considered current and returns the previously set one.
2608 (clear_current_source_symtab_and_line): Reset stored information about
2609 a current source line.
2610 (_initialize_source): Remove registration for the "list" command and
2611 its alias.
2612 * source.h: Add declarations for the new functions above.
2613 * symtab.h: Remove declarations for the global variables mentioned
2614 above.
2615 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
2616 obtain current source line.
2617 * linespec.c (decode_line_1): Ditto.
2618 * macroscope.c (default_macro_scope): Ditto.
2619 * scm-lang.c (scm_unpac): Ditto.
2620 * stack.c (print_frame_info_base): Ditto.
2621 * symfile.c (clear_symtab_users): Ditto.
2622 * symtab.c (decode_line_spec): Ditto.
2623 * cli/cli-cmds.c (list_command): Moved here from source.c.
2624 (ambiguous_line_spec): Moved here from source.c.
2625 (_init_cli_cmds): Add definition for "list" and its alias.
2626 * Makefile.in: Update dependencies.
2627
2628 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2629
2630 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
2631 with what gcc thinks is correct.
2632
2633 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2634
2635 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
2636 multiple register push instruction.
2637
2638 2002-09-19 Jim Blandy <jimb@redhat.com>
2639
2640 Add support for distinct host and target character sets.
2641 * charset.c, charset.h: New files.
2642 * c-exp.y: #include "charset.h".
2643 (yylex): Convert character and string literals to the target
2644 character set, before returning them as the semantic value of the
2645 token.
2646 * c-lang.c: #include "charset.h".
2647 (c_emit_char): Use charset-specific methods to recognize
2648 characters with backslash escape forms, to decide which characters
2649 to print literally and which to print using numeric escape
2650 sequences, and to convert target characters to host characters
2651 before printing.
2652 * utils.c: #include "charset.h".
2653 (no_control_char_error): New function.
2654 (parse_escape): Use charset-specific methods to recognize
2655 backslash escapes, parse `control character' notation, and convert
2656 characters from the host character set to the target character set.
2657 * configure.in: Set the default host character set.
2658 Check where to find iconv, and what its argument types might be.
2659 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
2660 * Makefile.in (SFILES): List charset.c.
2661 (COMMON_OBS): List charset.o.
2662 (charset.o): New rule.
2663 (charset_h): New header dependency variable.
2664 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
2665 (LIBICONV): New variable, set by configure.
2666 (CLIBS): Include $(LIBICONV) here.
2667 * aclocal.m4, config.in, configure: Regenerated.
2668
2669 2002-09-19 Joel Brobecker <brobecker@gnat.com>
2670
2671 * ada-exp.y: Add missing semicolons to end rules. Fixes a
2672 bison 1.35 warning.
2673
2674 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
2675
2676 * gdb_mbuild.sh: New file.
2677
2678 2002-09-19 Andrew Cagney <ac131313@redhat.com>
2679
2680 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
2681
2682 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2683
2684 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
2685 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
2686 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
2687 valops.c, value.h: Revert previous change.
2688
2689 2002-09-18 Michael Snyder <msnyder@redhat.com>
2690
2691 Preliminary support for Objective-C:
2692 * defs.h (language_objc): New enum value.
2693 (puts_filtered_tabular): Declaration only, exported from utils.c.
2694 (skip_quoted): Delete, declared in completer.h.
2695 * c-exp.y: Include completer.h.
2696 * p-exp.y: Ditto.
2697 * jv-exp.y: Ditto.
2698 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
2699 New operator enum values.
2700 * language.h (CAST_IS_CONVERSION): Test for language_objc.
2701 * language.c (binop_result_type): Handle language_objc case.
2702 (integral_type, character_type, string_type, boolean_type,
2703 structured_type, binop_type_check): Ditto.
2704 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
2705 (struct objc_specific): Add to general_symbol_info.
2706 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
2707 (SYMBOL_DEMANGLED_NAME): Handle objc case.
2708 * parser-defs.h (struct objc_class_str): New struct type.
2709 (start_msglist, end_msglist, add_msglist): Declaration only,
2710 exported from objc-lang.c.
2711 * value.h (value_of_local, value_nsstring,
2712 call_function_by_hand_expecting_type): Exported from valops.c.
2713 * valops.c (find_function_addr): Export.
2714 (call_function_by_hand_expecting_type): New function.
2715 (value_of_local): New function.
2716 * symfile.c (init_filename_language_table): Add ".m" extension
2717 for Objective-C.
2718 * utils.c (puts_filtered_tabular): New function.
2719 (fprintf_symbol_filtered): Add objc demangling support (disabled).
2720 (set/show demangle): Extend help-string to refer to ObjC.
2721 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
2722 * stabsread.c (symbol_reference_defined): Objective-C symbols
2723 may contain colons: make allowances when scanning stabs strings
2724 for colons.
2725 (objc_find_colon): New function.
2726 * printcmd.c (address_info): If language == objc then print
2727 "self" instead of "this".
2728 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
2729 OP_NSSTRING, and OP_SELF.
2730 (prefixify_subexp): Ditto.
2731 * source.c (print_source_lines): Mention objc in comment.
2732 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
2733 method names.
2734
2735 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2736
2737 * complaints.h: Update copyright.
2738 (struct complaints): Declare.
2739 (struct complaint): Make `message' constant.
2740 (internal_complaint): Declare.
2741 (complaint): Declare.
2742 (complaint_root): Delete declaration.
2743 (symfile_complaints): Delete declaration.
2744 (struct complaints): Add opaque declaration.
2745 (clear_complaints): Add a complaints parameter.
2746 * complaints.c: Update copyright.
2747 (enum complaint_series): Define.
2748 (complaint_root): Delete.
2749 (struct complaints): Define.
2750 (complaint_sentinel, symfile_complaint_book): New variables.
2751 (symfile_explanations, symfile_complaints): New variables.
2752 New variables.
2753 (get_complaints): New function.
2754 (vcomplaint): New function.
2755 (complaint): New function.
2756 (internal_complaint): New function.
2757 (complain): Call vcomplain with symfile_complaint.
2758 (clear_complaints): Rewrite.
2759 (_initialize_complaints): Use add_setshow_command.
2760 * Makefile.in (complaints.o): Update dependencies.
2761 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
2762 to call to clear_complaints.
2763 (new_symfile_objfile, reread_symbols): Ditto.
2764 (oldsyms_complaint): Delete.
2765 (empty_symtab_complaint, unknown_option_complaint): Delete.
2766 (free_named_symtabs): Use complaint instead of complain.
2767
2768 2002-09-18 Michael Snyder <msnyder@redhat.com>
2769
2770 Contributed by Apple Computer, Inc. Merged with current sources
2771 by Adam Fedor <fedor@doc.com> [cagney].
2772
2773 * objc-lang.c: First clean-up round: comments, indentation.
2774 * objc-lang.h: Ditto.
2775 * objc-lang.y: Ditto.
2776
2777 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2778
2779 * maint.c (maintenance_internal_error): Print the parameter as the
2780 error message.
2781 (maintenance_internal_warning): New function.
2782 (_initialize_maint_cmds): Add command `maint internal-warning'.
2783
2784 * defs.h (internal_warning, internal_vwarning): Declare.
2785 * utils.c (struct internal_problem): Define.
2786 (internal_vproblem): New function.
2787 (internal_warning): New function.
2788 (internal_vwarning): New function.
2789 (internal_warning_problem, internal_error_problem): New variables.
2790 (internal_verror): Just call internal_vproblem.
2791
2792 2002-09-18 Michael Snyder <msnyder@redhat.com>
2793
2794 * objc-lang.c: New file, support for Objective-C.
2795 Preliminary check-in, not yet integrated into gdb.
2796 * objc-lang.h: New file.
2797 * objc-exp.y: New file.
2798
2799 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2800
2801 * infrun.c (signal_stop_update): Convert definition to ISO C.
2802 (signal_print_update): Ditto.
2803 (signal_pass_update): Ditto.
2804 * inflow.c (terminal_save_ours): Ditto.
2805
2806 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
2807 comments.
2808
2809 * config/djgpp/fnchange.lst: Handle name clashes between
2810 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
2811 bfd/coff-tic80.c.
2812
2813 * i386-linux-tdep.h: Fix tipo.
2814
2815 2002-09-18 Adam Fedor <fedor@gnu.org>
2816
2817 * MAINTAINERS: Add myself to the Write After Approval list.
2818
2819 2002-09-18 Jim Blandy <jimb@redhat.com>
2820
2821 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
2822 texthigh and textlow to reader-specific structs caused
2823 objfile_relocate to miss them. This is fixable, but the work that
2824 the change was supposed to prepare GDB for never got done anyway.
2825
2826 2002-09-18 David Carlton <carlton@math.stanford.edu>
2827
2828 * MAINTAINERS: Alphabetize Write After Approval list.
2829
2830 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
2831
2832 Fix PR gdb/709
2833 * values.c (value_static_field): Call read_var_value.
2834
2835 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2836
2837 * valops.c (hand_function_call): Align the initial stack pointer
2838 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
2839 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
2840 return value.
2841 * mips-tdep.c (mips_frame_align): New function.
2842 (mips_gdbarch_init): Set frame_align.
2843 * gdbarch.sh (FRAME_ALIGN): New method.
2844 * gdbarch.h, gdbarch.c: Re-generate.
2845
2846 2002-09-18 Michal Ludvig <mludvig@suse.cz>
2847
2848 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
2849 registers.
2850
2851 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2852
2853 * NEWS: Mention that MIPS $fp behavior changed.
2854 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
2855 reference to FP_REGNUM.
2856 (mipsnbsd_cannot_store_register): Ditto.
2857 * mips-linux-nat.c: Update copyright.
2858 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
2859 (mips_linux_cannot_store_register): Ditto.
2860 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
2861 * config/mips/tm-mips.h: Update copyright.
2862 (FP_REGNUM): Delete macro.
2863 (MIPS_REGISTER_NAMES): Replace "fp" with "".
2864 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
2865 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
2866 (mips_r3041_reg_names, mips_r3051_reg_names)
2867 (mips_r3081_reg_names): Replace "fp" with "".
2868 Fix PR gdb/480.
2869
2870 2002-09-17 Theodore A. Roth <troth@verinet.com>
2871
2872 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
2873 generic_read_register_dummy() (PR gdb/703).
2874 (avr_push_return_address): #if 0 out unused vars.
2875 (avr_gdbarch_init): Enable use of avr_push_return_address().
2876
2877 2002-09-17 Michael Snyder <msnyder@redhat.com>
2878
2879 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
2880 RTE will take care of it.
2881
2882 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2883
2884 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
2885 invalid, return SP_REGNUM.
2886
2887 2002-09-17 Michael Snyder <msnyder@redhat.com>
2888
2889 * mips-tdep.c (mips_pop_frame): Read saved values of floating
2890 point registers without sign extension.
2891
2892 2002-09-17 Andrew Cagney <cagney@redhat.com>
2893
2894 * blockframe.c (deprecated_read_register_dummy): Rename
2895 generic_read_register_dummy.
2896 * frame.c (frame_unwind_signed_register): New function.
2897 (frame_unwind_unsigned_register): New function.
2898 * frame.h (frame_unwind_signed_register): Declare.
2899 (frame_unwind_unsigned_register): Declare.
2900 (deprecated_read_register_dummy): Rename
2901 generic_read_register_dummy.
2902
2903 * h8300-tdep.c (h8300_frame_chain): Update.
2904 (h8300_frame_saved_pc): Update.
2905 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
2906 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
2907 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
2908 (s390_frame_chain): Update.
2909 * v850-tdep.c (v850_find_callers_reg): Update.
2910 (v850_frame_saved_pc): Update.
2911 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
2912 (m32r_find_callers_reg): Update.
2913 (m32r_frame_saved_pc): Update.
2914 * sh-tdep.c (sh_find_callers_reg): Update.
2915 (sh64_get_saved_pr): Update.
2916 (sh_init_extra_frame_info): Update.
2917 (sh_init_extra_frame_info): Update.
2918 (sh64_init_extra_frame_info): Update.
2919 (sh64_init_extra_frame_info): Update.
2920 * mcore-tdep.c (mcore_find_callers_reg): Update.
2921 (mcore_frame_saved_pc): Update.
2922 (mcore_init_extra_frame_info): Update.
2923 * i386-tdep.c (i386_frame_saved_pc): Update.
2924 * ia64-tdep.c (ia64_frame_saved_pc): Update.
2925 (ia64_init_extra_frame_info): Update.
2926 (ia64_init_extra_frame_info): Update.
2927 * d10v-tdep.c (d10v_frame_saved_pc): Update.
2928 * cris-tdep.c (cris_init_extra_frame_info): Update.
2929 * avr-tdep.c (avr_frame_chain): Update.
2930 (avr_init_extra_frame_info): Update.
2931 (avr_frame_saved_pc): Update.
2932 * arm-tdep.c (arm_find_callers_reg): Update.
2933 (arm_init_extra_frame_info): Update.
2934 (arm_frame_saved_pc): Update.
2935
2936 2002-09-17 Tom Tromey <tromey@redhat.com>
2937
2938 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
2939 is "'".
2940
2941 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
2942
2943 * MAINTAINERS: Remove "non multi-arched" text from h8300.
2944 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
2945 NEXT_PROLOGUE_INSN.
2946 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
2947 NEXT_PROLOGUE_INSN.
2948
2949 2002-09-16 Joel Brobecker <brobecker@gnat.com>
2950
2951 * osfsolib.c: Remove file, replaced by solib-osf.c.
2952 * Makefile.in: Remove compilation rules for osfsolib.c.
2953
2954 2002-09-16 David Carlton <carlton@math.stanford.edu>
2955
2956 * cp-valprint.c (cp_print_class_method): Correct args to
2957 check_stub_method_group.
2958
2959 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
2960
2961 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
2962 `set architecture'. Unify naming convention of functions.
2963 (h8300_skip_prologue): Improve prologue analysis.
2964 (h8300_push_arguments): Rewritten to more closely match GCC's
2965 bizarre argument-passing behavior, along with the comment describing
2966 said behavior.
2967 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
2968 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
2969 sim, remote-e7000.c, remote-hms.c and remote.c
2970
2971 2002-09-15 Mark Kettenis <kettenis@gnu.org>
2972
2973 * i386-tdep.c (gdb_print_insn_i386): Removed.
2974 (i386_print_insn): New function.
2975 (i386_gdbarch_init): Set print_insn to i386_print_insns.
2976 (_initialize_i386_tdep): Don't initialize tm_print_insn and
2977 tm_print_insn_info.
2978
2979 2002-09-14 Mark Kettenis <kettenis@gnu.org>
2980
2981 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
2982 zero.
2983
2984 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
2985
2986 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
2987 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
2988 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
2989
2990 2002-09-13 Christopher Faylor <cgf@redhat.com>
2991
2992 * win32-nat.c (child_create_inferior): Honor 'tty' command.
2993
2994 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
2995
2996 * gdbtypes.c (check_stub_method): Make static.
2997 (check_stub_method_group): New function.
2998 * gdbtypes.h: Update prototypes.
2999 * cp-support.c: New file.
3000 * cp-support.h: New file.
3001
3002 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
3003 (update_method_name_from_physname): New function.
3004 (read_member_functions): Correct method names for operators
3005 and v3 constructors/destructors. Separate v2 constructors and
3006 destructors.
3007 * Makefile.in (stabsread.o): Update dependencies.
3008 (SFILES): Add cp-support.c.
3009 (COMMON_OBS): Add cp-support.o.
3010 (cp_support_h, cp-support.o): Add.
3011
3012 * cp-valprint.c (cp_print_class_method): Call
3013 check_stub_method_group instead of check_stub_method. Remove
3014 extraneous QUITs.
3015 * p-valprint.c (pascal_object_print_class_method): Likewise.
3016 * valops.c (search_struct_method): Likewise.
3017 (find_method_list, value_struct_elt_for_reference): Likewise.
3018
3019 2002-09-13 Andrew Cagney <cagney@redhat.com>
3020
3021 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
3022 * gdbarch.h, gdbarch.c: Regenerate.
3023
3024 2002-09-13 Andrew Cagney <ac131313@redhat.com>
3025
3026 * frame.c (find_saved_register): Delete function.
3027 * frame.h (find_saved_register): Delete declaration.
3028 Fix PR gdb/631.
3029
3030 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
3031
3032 * mips-tdep.c (read_next_frame_reg): Re-hack using
3033 frame_register_unwind.
3034
3035 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
3036
3037 * mips-tdep.c (mips_get_saved_register): Re-hack using
3038 frame_register_unwind.
3039
3040 2002-09-12 Joel Brobecker <brobecker@gnat.com>
3041
3042 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
3043 vector. Will be useful for Interix.
3044 * gdbarch.h, gdbarch.c: Regenerate.
3045
3046 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
3047 name of the malloc function by NAME_OF_MALLOC.
3048
3049 2002-09-12 Joel Brobecker <brobecker@gnat.com>
3050
3051 * value.h (find_function_in_inferior): Add const keyword to
3052 one of the parameters. Allows us to invoke this function with
3053 a const char *.
3054 * valops.c (find_function_in_inferior): Likewise.
3055
3056 2002-09-12 Joel Brobecker <brobecker@gnat.com>
3057
3058 * exec.c (xfer_memory): Fix compilation warning with old versions
3059 of GCC.
3060 * tracepoint.c (trace_find_tracepoint_command): Likewise.
3061
3062 2002-09-12 David Carlton <carlton@math.stanford.edu>
3063
3064 * symtab.h: Run through gdb_indent.h.
3065 Add 2002 to Copyright year list.
3066
3067 2002-09-12 Alan Modra <amodra@bigpond.net.au>
3068
3069 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
3070 mach constants.
3071 * MAINTAINERS: Add myself to write after approval list.
3072
3073 2002-09-11 J. Brobecker <brobecker@gnat.com>
3074
3075 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
3076
3077 2002-09-11 J. Brobecker <brobecker@gnat.com>
3078
3079 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
3080 Interix.
3081
3082 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
3083
3084 * procfs.c (do_detach): Clear current signal, not just fault.
3085 Corrects problem with breakpoint trap signal leaking to detached
3086 process on Tru64.
3087
3088 2002-09-10 Michael Snyder <msnyder@redhat.com>
3089
3090 * buildsym.c (finish_block): Protect against null pointer.
3091
3092 2002-09-10 Andrew Cagney <cagney@redhat.com>
3093
3094 * infcmd.c (default_print_registers_info): Send all output to
3095 ``file'' instead of ``gdb_stdout''.
3096
3097 2002-09-10 Michael Snyder <msnyder@redhat.com>
3098
3099 * mips-tdep.c (mips_extract_struct_value_address): Make val a
3100 LONGEST, and use signed register read (addresses are sign-
3101 extended for mips).
3102
3103 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
3104
3105 * event-loop.c (gdb_do_one_event): Make public.
3106 * event-loop.h (gdb_do_one_event): Declare.
3107
3108 2002-09-10 Jeff Law <law@redhat.com>
3109
3110 * infttrace.c (child_resume): Simplify and rework to avoid
3111 TT_PROC_CONTINUE.
3112
3113 2002-09-09 Fred Fish <fnf@intrinsity.com>
3114
3115 * printcmd.c (print_scalar_formatted): "len" is the number of
3116 target bytes, NOT the number of target bits.
3117
3118 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
3119
3120 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
3121 * top.c (init_main): Set rl_terminal_name.
3122
3123 2002-09-08 Aidan Skinner <aidan@velvet.net>
3124
3125 * ada-lang.c (ada_array_bound, ada_type_match,
3126 _initialize_ada_language): Fix K&R definitions.
3127 * ada-tasks.c (get_current_task): Fix K&R definitions.
3128 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
3129
3130 2002-09-07 Christopher Faylor <cgf@redhat.com>
3131
3132 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
3133 Add XP.
3134
3135 2002-09-06 Mark Kettenis <kettenis@gnu.org>
3136
3137 * i386-tdep.c (i386_register_virtual_type,
3138 i386_register_convertible, i386_register_convert_to_virtual,
3139 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
3140 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
3141 (i386_gdbarch_init): Fix comment. Add comments on calls that set
3142 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
3143 Don't set push_arguments twice.
3144
3145 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
3146 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
3147 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
3148 sigtramp_end to NULL.
3149 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
3150 defines.
3151 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
3152
3153 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
3154 whitespace.
3155
3156 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
3157 * gdbarch.h, gdbarch.c: Re-generate.
3158 * blockframe.c (find_pc_sect_partial_function): Convert to use
3159 SIGTRAMP_START_P predicate.
3160
3161 2002-09-05 Michael Snyder <msnyder@redhat.com>
3162
3163 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
3164 generic_dummy_frame method and old method. Also distinguish
3165 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
3166 (arm_extract_return_value): Use new regcache method.
3167
3168 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
3169 adjustment that doesn't conform to the ABI.
3170 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
3171 saved regcache, not from current regcache.
3172
3173 2002-09-05 Andrew Cagney <ac131313@redhat.com>
3174
3175 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
3176 * README: Update.
3177
3178 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
3179
3180 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
3181 if arm_apcs_32 is false.
3182
3183 2002-09-04 Andrew Cagney <ac131313@redhat.com>
3184
3185 GDB 5.3 branch created.
3186
3187 2002-09-03 Theodore A. Roth <troth@verinet.com>
3188
3189 * gdb/avr-tdep.c (avr_gdbarch_init): Use
3190 generic_unwind_get_saved_register.
3191
3192 2002-09-03 David Carlton <carlton@math.stanford.edu>
3193
3194 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
3195 argument (PR gdb/653). Update call to smash_to_method_type.
3196 (read_structure_scope): Update call to dwarf2_add_member_fn.
3197
3198 2002-09-03 Michal Ludvig <mludvig@suse.cz>
3199
3200 * x86-64-linux-tdep.c: Include gdb_string.h
3201 * x86-64-linux-nat.c: Ditto.
3202
3203 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
3204
3205 * ada-exp.y (yyname, yyrule): Remap global variables that appear
3206 when YYDEBUG is set to 1.
3207 * c-exp.y: Likewise.
3208 * f-exp.y: Likewise.
3209 * jv-exp.y: Likewise.
3210 * m2-exp.y: Likewise.
3211 * p-exp.y: Likewise.
3212
3213 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
3214
3215 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
3216 dependency list.
3217 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
3218 solib_svr4_fetch_link_map_offsets to
3219 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
3220 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
3221 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
3222 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
3223 solib-svr4.o, and solib-legacy.o.
3224 * config/i386/tm-nbsd.h: Include solib.h.
3225
3226 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
3227
3228 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
3229 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
3230 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
3231 comment noting that this needs its own target configuration.
3232 * config/i386/nbsd.mt: New file.
3233 * config/i386/nbsdaout.mt: Remove.
3234 * config/i386/nbsdelf.mt: Ditto.
3235 * config/i386/tm-nbsdaout.h: Ditto.
3236
3237 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
3238
3239 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
3240 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
3241 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
3242 tdep->sigtramp_end.
3243 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
3244 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
3245 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
3246
3247 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
3248
3249 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
3250 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
3251 * i386-tdep.h (i386bsd_init_abi): New prototype.
3252 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
3253 function declaration.
3254 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
3255 for NetBSD-a.out or NetBSD-ELF.
3256 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
3257 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
3258 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
3259 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
3260 and nbsd-tdep.h.
3261 (i386nbsd_pc_in_sigtramp): New function.
3262 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
3263 i386nbsd_pc_in_sigtramp.
3264 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
3265 and i386nbsdelf_init_abi OS ABI handlers.
3266 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
3267 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
3268
3269 2002-09-02 Mark Kettenis <kettenis@gnu.org>
3270
3271 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
3272 registers if the target really has them.
3273
3274 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
3275
3276 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
3277 than nbsd-tdep.h.
3278
3279 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
3280
3281 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
3282 list.
3283 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
3284 (alphanbsd_skip_sigtramp_frame): New functions.
3285 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
3286 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
3287 to alphanbsd_sigcontext_addr.
3288
3289 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
3290
3291 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
3292 list.
3293 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
3294 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
3295 nbsd_pc_in_sigtramp.
3296 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
3297 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
3298 * nbsd-tdep.c: Include gdb_string.h.
3299 (nbsd_pc_in_sigtramp): New function.
3300 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
3301 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
3302 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
3303 ppcnbsd_pc_in_sigtramp.
3304 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
3305 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
3306 shnbsd_pc_in_sigtramp.
3307 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
3308 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
3309 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
3310
3311 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
3312
3313 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
3314 watchpoints to NULL.
3315 (insert_breakpoints): set val field of watchpoints if NULL.
3316
3317
3318 2002-08-29 Jim Blandy <jimb@redhat.com>
3319
3320 * symtab.c (lookup_symbol_aux): In the cases where we find a
3321 minimal symbol of an appropriate name and use its address to
3322 select a symtab to read and search, use `name' (as passed to us)
3323 as the demangled name when searching the symtab's global and
3324 static blocks, not the minsym's name.
3325
3326 2002-08-29 Keith Seitz <keiths@redhat.com>
3327
3328 * stack.c (print_frame_info_base): Always set current_source_symtab
3329 and current_source_line.
3330
3331 2002-08-29 Donn Terry <donnte@microsoft.com>
3332
3333 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
3334
3335 2002-08-28 Keith Seitz <keiths@redhat.com>
3336
3337 * stack.c (select_frame): Add FIXME concerning selected-frame
3338 events.
3339 (select_frame_command): Send selected-frame-level-changed
3340 event notification, but only if the level actually changed.
3341 (up_silently_base): Add selected-frame-level-changed event
3342 notification.
3343 (down_silently_base): Likewise.
3344
3345 2002-08-28 Andrew Cagney <ac131313@redhat.com>
3346
3347 * Makefile.in: Update dependencies for all gdb/*.c files.
3348
3349 2002-08-27 Tom Tromey <tromey@redhat.com>
3350
3351 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
3352 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
3353 Update dependencies.
3354 * i387-tdep.c: Include gdb_string.h.
3355 * osabi.c: Likewise.
3356 * i386-linux-nat.c: Likewise.
3357 * lin-lwp.c: Likewise.
3358 * ax-gdb.c: Likewise.
3359 * signals/signals.c: Likewise.
3360 * jv-valprint.c: Likewise.
3361 * p-lang.c: Likewise.
3362 * c-valprint.c: Likewise.
3363 * cp-abi.c: Likewise.
3364
3365 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
3366
3367 * cli/cli-script.h (copy_command_lines): Export.
3368 * breakpoint.c: Include cli/cli-script.h.
3369 * Makefile.in (breakpoint.o): Update dependencies.
3370
3371 2002-08-26 Michael Snyder <msnyder@redhat.com>
3372
3373 * breakpoint.c (insert_breakpoints): Protect all references
3374 to 'process_warning'. Shorten long lines.
3375
3376 2002-08-26 Joel Brobecker <brobecker@gnat.com>
3377
3378 * cli/cli-script.c (copy_command_lines): New function.
3379 * defs.h (copy_command_lines): Export.
3380 * testsuite/gdb.base/commands.exp: New tests for commands
3381 attached to a temporary breakpoint, and for commands that
3382 delete the breakpoint they are attached to.
3383
3384 2002-08-26 Michael Snyder <msnyder@redhat.com>
3385
3386 * breakpoint.c (bpstat_stop_status): Instead of copying the
3387 pointer to the breakpoint commands struct, make a new copy
3388 of the struct and point to that.
3389 (bpstat_clear): Free the commands struct.
3390 (bpstat_clear_actions): Free the commands struct.
3391 (bpstat_do_actions): Free the command actions. Also execute
3392 the local cleanups, instead of deleting them.
3393 (delete_breakpoint): Leave the commands field of the bpstat
3394 chain alone -- it will be freed later.
3395
3396 2002-08-26 Kevin Buettner <kevinb@redhat.com>
3397
3398 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
3399 deleted in 2002-08-20 commit. This function is still used by
3400 ppc-linux-nat.c.
3401
3402 2002-08-26 Keith Seitz <keiths@redhat.com>
3403
3404 * gdb-events.sh: Add selected-frame-level-changed event.
3405 * gdb-events.c: Regenerated.
3406 * gdb-events.h: Regenerated.
3407
3408 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
3409
3410 Fix PR gdb/393:
3411 * inflow.c (terminal_save_ours): New function to save terminal
3412 settings.
3413 * inferior.h (terminal_save_ours): Declare.
3414 * target.c (debug_to_terminal_save_ours): New function.
3415 (cleanup_target): Defaults to_terminal_save_ours.
3416 (update_current_target): Inherit to_terminal_save_ours.
3417 (setup_target_debug): Set to_terminal_save_ours.
3418 * target.h (target_terminal_save_ours): New to save terminal settings.
3419 (target_ops): New member to_terminal_save_ours.
3420 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
3421 * hpux-thread.c (init_hpux_thread_ops): Likewise.
3422 * inftarg.c (init_child_ops): Likewise.
3423 * m3-nat.c (init_m3_ops): Likewise.
3424 * procfs.c (init_procfs_ops): Likewise.
3425 * wince.c (init_child_ops): Likewise.
3426 * win32-nat.c (init_child_ops): Likewise.
3427 * sol-thread.c (init_sol_thread_ops): Likewise.
3428
3429 2002-08-26 Mark Kettenis <kettenis@gnu.org>
3430
3431 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
3432 use regcache_* functions.
3433 (i386_gdbarch_init): Set store_return_value instead of
3434 deprecated_store_return_value.
3435
3436 * regcache.c (regcache_raw_write_signed,
3437 regcache_raw_write_unsigned): New functions.
3438 * regcache.h (regcache_raw_write_signed,
3439 regcache_raw_write_unsigned): New prototypes.
3440
3441 2002-08-25 Andrew Cagney <ac131313@redhat.com>
3442
3443 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
3444 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
3445 source file dependencies. Cleanup corresponding generator rules.
3446
3447 2002-08-25 Andrew Cagney <ac131313@redhat.com>
3448
3449 * regcache.h (register_offset_hack): Declare.
3450 (regcache_cooked_read_using_offset_hack): Declare.
3451 (regcache_cooked_write_using_offset_hack): Declare.
3452
3453 * regcache.c (register_offset_hack): New function.
3454 (regcache_cooked_read_using_offset_hack): New function.
3455 (regcache_cooked_write_using_offset_hack): New function.
3456 (regcache_dump): Check that the registers, according to their
3457 offset, are packed hard against each other.
3458 (cooked_xfer_using_offset_hack): New function.
3459
3460 2002-08-25 Andrew Cagney <ac131313@redhat.com>
3461
3462 * regcache.c (struct regcache_descr): Add field register_type.
3463 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
3464 in as a parameter
3465 (init_regcache_descr): Initialize register_type. Pass the descr
3466 to init_legacy_regcache_descr. Use register_type instead of
3467 REGISTER_VIRTUAL_TYPE.
3468 (register_type): New function.
3469 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
3470 * regcache.h (register_type): Declare.
3471
3472 2002-08-25 Andrew Cagney <ac131313@redhat.com>
3473
3474 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
3475 instead of deprecated_store_return_value. Fix fallout from
3476 2002-08-23 Andrew Cagney <cagney@redhat.com>.
3477
3478 2002-08-25 Andrew Cagney <ac131313@redhat.com>
3479
3480 * regcache.c (max_register_size): New function.
3481 (init_legacy_regcache_descr): Ensure that max_register_size is
3482 large enough for REGISTER_VIRTUAL_SIZE.
3483 * regcache.h (max_register_size): Declare.
3484
3485 2002-08-24 Andrew Cagney <ac131313@redhat.com>
3486
3487 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
3488 store_return_value.
3489 (e500_extract_return_value): Change type of valbuf pointer to
3490 void.
3491
3492 2002-08-24 Mark Kettenis <kettenis@gnu.org>
3493
3494 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
3495 workaround.
3496
3497 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
3498 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
3499 long long) to prevent compiler warning on 64-bit systems.
3500
3501 2002-08-23 Andrew Cagney <cagney@redhat.com>
3502
3503 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
3504 (DEPRECATED_STORE_RETURN_VALUE): New method.
3505 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
3506 * gdbarch.h, gdbarch.c: Re-generate.
3507
3508 * values.c (set_return_value): Pass current_regcache to
3509 STORE_RETURN_VALUE.
3510 * arch-utils.h (legacy_store_return_value): Declare.
3511 * arch-utils.c (legacy_store_return_value): New function.
3512 (legacy_extract_return_value): Update parameters.
3513
3514 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
3515 STORE_RETURN_VALUE.
3516 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3517 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3518 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3519 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3520 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3521 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3522 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3523 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3524 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3525 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
3526
3527 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
3528 * i386-tdep.c (i386_extract_return_value): Update.
3529 * arch-utils.c (legacy_extract_return_value): Update.
3530 * frv-tdep.c (frv_gdbarch_init): Update.
3531 * cris-tdep.c (cris_gdbarch_init): Update.
3532 * d10v-tdep.c (d10v_gdbarch_init): Update.
3533 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3534 * m68k-tdep.c (m68k_gdbarch_init): Update.
3535 * mcore-tdep.c (mcore_gdbarch_init): Update.
3536 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
3537 * s390-tdep.c (s390_gdbarch_init): Update.
3538 * sparc-tdep.c (sparc_gdbarch_init): Update.
3539 * sh-tdep.c (sh_gdbarch_init): Update.
3540 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
3541 * v850-tdep.c (v850_gdbarch_init): Update.
3542 * avr-tdep.c (avr_gdbarch_init): Update.
3543 * ia64-tdep.c (ia64_gdbarch_init): Update.
3544 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
3545 * vax-tdep.c (vax_gdbarch_init): Update.
3546 * alpha-tdep.c (alpha_gdbarch_init): Update.
3547 * arm-tdep.c (arm_gdbarch_init): Update.
3548 * mips-tdep.c (mips_gdbarch_init): Update.
3549 * i386-tdep.c (i386_gdbarch_init): Update.
3550
3551 2002-08-23 Andrew Cagney <ac131313@redhat.com>
3552
3553 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
3554 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
3555
3556 2002-08-24 Mark Kettenis <kettenis@gnu.org>
3557
3558 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
3559 problems.
3560
3561 2002-08-23 Joel Brobecker <brobecker@gnat.com>
3562
3563 * infrun.c (handle_inferior_event): Move a comment outside of a
3564 function call, in order to avoid indent reformatting this part
3565 of the code in an unreadable way.
3566
3567 2002-08-23 Grace Sainsbury <graces@redhat.com>
3568
3569 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
3570 when breakpoints fail. Move general breakpoint error messages to
3571 insert_breakpoints.
3572 * breakpoint.c (insert_breakpoints): Change warnings when
3573 breakpoints are nto inserted to specify the type. Remove call to
3574 memory_error when hardware breakpoints can't be inserted. Remove
3575 multiple calls to warning so all messages are sent to the user at
3576 once.
3577 (delete_breakpoints): Make insert error messsages more explicit.
3578
3579 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
3580
3581 * ChangeLog: Move gdbserver entries after GDB 5.2 to
3582 gdbserver/ChangeLog.
3583
3584 2002-08-23 Mark Kettenis <kettenis@gnu.org>
3585
3586 * i386-tdep.c: Include "objfiles.h".
3587 (i386_svr4_init_abi): Set in_solib_call_trampoline and
3588 skip_trampoline_code.
3589 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
3590 (CPLUS_MARKER): Define to '.'.
3591
3592 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
3593 member.
3594 (linux_corefile_thread_callback): Increase args->num_notes.
3595 (linux_make_note_section): Initialize thread_args.num_notes, and
3596 use it to determine whether notes for any threads were created.
3597
3598 2002-08-23 Donn Terry <donnte@microsoft.com>
3599
3600 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
3601 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
3602 and PCUNKILL.
3603 (write_with_trace): Conditionalize out the switch branch handling
3604 PCSHOLD if the corresponding macro is not defined. Likewise for
3605 PRSABORT and PRSTOP.
3606 This change will be needed by the Interix port.
3607
3608 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3609
3610 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
3611 write_register wherever possible instead of manipulating the
3612 register bytes directly.
3613 Assign VALUE_CONTENTS to a variable and use that.
3614 The GPR numbers are now dependent on the architecture.
3615
3616 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3617
3618 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
3619 ev_offset fields.
3620 (skip_prologue): Add support for BookE/e500 instructions.
3621 (e500_extract_return_value): New function.
3622 (frame_get_saved_regs): Add support for saving ev registers and
3623 pseudo gpr's.
3624 (e500_store_return_value): New function.
3625 (rs6000_gdbarch_init): Move up default intializations of
3626 deprecated_extract_return_value and store_return_value. Overwrite
3627 init of store_return_value with e500 specific version.
3628 Set extract_return_value for e500.
3629
3630 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3631
3632 * blockframe.c (generic_call_dummy_register_unwind): Use
3633 regcache_cooked_read to catch cases in which the variable is
3634 stored in a pseudo register.
3635
3636 2002-08-22 Andrew Cagney <cagney@redhat.com>
3637
3638 * NEWS: Mention that the i960 has been made obsolete.
3639 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
3640 i960-tdep.c
3641 (remote-nrom.o): Obsolete target.
3642 (remote-nindy.o, i960-tdep.o): Ditto.
3643 * remote-nrom.c: Make file obsolete.
3644 * remote-nindy.c, remote-vx960.c: Ditto.
3645 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
3646 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
3647 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
3648 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
3649 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
3650 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
3651 i960-*-vxworks* obsolete.
3652 * MAINTAINERS: Note that the i960 is obsolete.
3653
3654 2002-08-21 Corinna Vinschen <vinschen@redhat.com
3655
3656 * aix-thread.c (aix_thread_detach): Disable thread debugging on
3657 detach to allow reinitialization.
3658
3659 2002-08-22 Andrew Cagney <ac131313@redhat.com>
3660
3661 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
3662 attempt).
3663
3664 2002-08-22 Jim Blandy <jimb@redhat.com>
3665
3666 * coffread.c (coff_symfile_read): Don't try to read the line
3667 number table from disk if the image file doesn't have a symbol
3668 table; we'll never actually look at the info anyway, and Windows
3669 ships DLL's with bogus file offsets for the line number data.
3670
3671 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
3672
3673 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
3674 an e500 executable.
3675
3676 2002-08-21 Michael Snyder <msnyder@redhat.com>
3677
3678 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
3679 (MSYMBOL_SIZE): Replace macro with function.
3680 (DEFAULT_MIPS_TYPE): Delete unused macro.
3681 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3682 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3683
3684 2002-08-21 Jim Blandy <jimb@redhat.com>
3685
3686 * valops.c (value_cast): Simplify and correct logic for doing a
3687 static cast from a pointer to a base class to a pointer to a
3688 derived class.
3689
3690 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3691
3692 * infcmd.c (default_print_registers_info): Replace
3693 do_registers_info.
3694 (registers_info): Use gdbarch_print_registers_info instead of
3695 DO_REGISTERS_INFO.
3696 * inferior.h (default_print_registers_info): Replace
3697 do_registers_info.
3698 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
3699 (DO_REGISTERS_INFO): Change to a predicate function.
3700 * gdbarch.h, gdbarch.c: Regenerate.
3701
3702 2002-08-21 Keith Seitz <keiths@redhat.com>
3703
3704 * gdb-events.sh: Add target-changed event.
3705 * gdb-events.c: Regenerated.
3706 * gdb-events.c: Regenerated.
3707 * valops.c (value_assign): Add target-changed event notification
3708 to inlval_register, lval_memory, and lval_reg_frame_relative.
3709
3710 2002-08-21 Joel Brobecker <brobecker@gnat.com>
3711
3712 * NEWS: Add an entry regarding the improvement of the next/step
3713 operation on Alpha Tru64 multi-processor machines.
3714
3715 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3716
3717 * Makefile.in: Update dependencies for mi/ cli/ and tui/
3718 directores.
3719 * Makefile.in: Update all _h macro definitions.
3720 * Makefile.in (install-gdbtk): Move to install section.
3721 (rdi-share/libangsd.a): Move to end of file.
3722
3723 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3724
3725 * frame.c (frame_register_unwind): When a register, set addrp to
3726 the register's byte.
3727
3728 2002-08-20 Michael Snyder <msnyder@redhat.com>
3729
3730 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
3731 used locally, so move them from the target machine header to here.
3732 (mips_set_processor_type, mips_register_name, mips32_next_pc,
3733 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
3734 Make static.
3735 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
3736
3737 2002-08-20 Andrew Cagney <cagney@redhat.com>
3738
3739 * NEWS: Mention that the Apollo line was made obsolete.
3740 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
3741 m68*-hp-hpux* obsolete.
3742 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
3743 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
3744 * buildsym.c (make_blockvector): Make static.
3745 * buildsym.h (make_blockvector): Make extern declaration obsolete.
3746 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
3747 (ALLDEPFILES): Remove dstread.c.
3748 (dstread.o): Obsolete make rule.
3749 * dstread.c: Makefile obsolete.
3750 * dst.h: Ditto.
3751 * config/m68k/hp300hpux.mt: Ditto.
3752 * config/m68k/hp300hpux.mh: Ditto.
3753 * config/m68k/hp300bsd.mt: Ditto.
3754 * config/m68k/hp300bsd.mh: Ditto.
3755 * config/m68k/apollo68b.mt: Ditto.
3756 * config/m68k/apollo68v.mh: Ditto.
3757 * config/m68k/apollo68b.mh: Ditto.
3758
3759 2002-08-20 Michael Snyder <msnyder@redhat.com>
3760
3761 * mips-tdep.c (mips_in_return_stub): Make static.
3762 (mips_gdbarch_init): Set in_solib_return_trampoline.
3763 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
3764
3765 2002-08-20 Michael Snyder <msnyder@redhat.com>
3766
3767 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
3768 * gdbarch.c, gdbarch.h: Regenerate.
3769 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
3770 Add.
3771 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
3772
3773 2002-08-20 Michael Snyder <msnyder@redhat.com>
3774
3775 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
3776 (mips_gdbarch_init): Set skip_trampoline_code,
3777 in_solib_call_trampoline.
3778 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
3779 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
3780
3781 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3782
3783 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
3784
3785 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
3786 vector type for ev registers.
3787 (e500_pseudo_register_read): New function.
3788 (e500_pseudo_register_write): New function.
3789 (e500_dwarf2_reg_to_regnum): New function.
3790 (PPC_UISA_NOFP_SPRS): New macro.
3791 (PPC_EV_REGS): New macro.
3792 (PPC_GPRS_PSEUDO_REGS): New macro.
3793 (registers_e500): New register set for e500.
3794 (variants): Add e500 variant.
3795 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
3796 before setting architectural dependent variations. Initialize ev
3797 registers numbers. Add case for e500 architecture. Set the
3798 number of pseudo registers.
3799
3800 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3801
3802 * rs6000-tdep.c: Clean up comments.
3803
3804 2002-08-20 Andrew Cagney <cagney@redhat.com>
3805
3806 * h8300-tdep.c: Re-indent file.
3807
3808 2002-08-20 Jim Blandy <jimb@redhat.com>
3809
3810 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3811 default for this.
3812
3813 2002-08-20 Keith Seitz <keiths@redhat.com>
3814
3815 * breakpoints.c (watch_command_1): Use internal breakpoint
3816 when setting a watchpoint_scope breakpoint.
3817
3818 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3819
3820 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
3821 (build_builtin_type_vec64i): Ditto.
3822 (build_builtin_type_vec128): Ditto.
3823 (build_builtin_type_vec128i): Ditto.
3824
3825 2002-08-19 Michael Snyder <msnyder@redhat.com>
3826
3827 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
3828 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
3829 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
3830 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
3831 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
3832 CALL_DUMMY_ADDRESS): Delete.
3833 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
3834 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
3835 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
3836 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
3837 push_return_address.
3838 (mips_register_raw_size, mips_eabi_use_struct_convention,
3839 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
3840 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
3841 mips_init_extra_frame_info, mips_eabi_push_arguments,
3842 mips_n32n64_push_arguments, mips_push_return_address,
3843 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
3844 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
3845
3846 2002-08-19 Michael Snyder <msnyder@redhat.com>
3847
3848 * mips-tdep.c (mips_frame_num_args): New function.
3849 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
3850 frame_saved_pc, frame_args_address, frame_locals_address,
3851 frame_num_args, and frame_args_skip.
3852 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
3853 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
3854 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
3855 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
3856
3857 2002-08-20 Michael Snyder <msnyder@redhat.com>
3858
3859 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
3860 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
3861 * mips-tdep.c (mips_store_struct_return): New function.
3862 (mips_extract_struct_value_address): New function.
3863 (mips_gdbarch_init): Set store_struct_return and
3864 extract_struct_value_address.
3865
3866 2002-08-20 David Carlton <carlton@math.stanford.edu>
3867
3868 * dwarf2read.c (dwarf2_build_psymtabs): Check that
3869 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
3870 (read_file_scope): Check that line_header is nonzero before
3871 decoding macro information.
3872
3873 2002-08-20 Mark Kettenis <kettenis@gnu.org>
3874
3875 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
3876 flag the general-purpose registers as floating-point on targets
3877 that don't support the floating-point registers.
3878
3879 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3880
3881 * rs6000-tdep.c (altivec_register_p): Delete.
3882 (rs6000_do_altivec_registers): Delete.
3883 (rs6000_altivec_registers_info): Delete.
3884 (rs6000_do_registers_info): Delete.
3885 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
3886 (rs6000_gdbarch_init): Remove setting of do_registers_info.
3887
3888 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3889
3890 * infcmd.c (do_registers_info): Print vector registers in hex
3891 format only.
3892 (print_vector_info): Check that printing registers
3893 makes sense.
3894 (print_float_info): Ditto.
3895
3896 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3897
3898 * mips-tdep.c (mips_gdbarch_init): Update.
3899 (mips_o32_extract_return_value): Rewrite.
3900 (mips_o32_store_return_value): Rewrite.
3901 (mips_o32_xfer_return_value): New function.
3902 (mips_xfer_register): Tweak debug print message. Allow for
3903 buf_offset when dumping the value transfered.
3904
3905 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3906
3907 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
3908 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
3909 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
3910 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
3911 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
3912
3913 2002-08-14 Michael Snyder <msnyder@redhat.com>
3914
3915 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
3916
3917 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3918
3919 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
3920 register.
3921 (P): New macro to define a register as a pseudo register.
3922 (R, R4, R8, R16, FR32, R64, R0): Updated.
3923 (struct variant): Add new fields for number of pseudo registers
3924 and number of total registers.
3925 (tot_num_registers): New macro replacing....
3926 (num_registers): ...deleted macro.
3927 (num_registers): New function.
3928 (num_pseudo_registers): New function.
3929 (variants): Update all variants to intialize new fields correctly.
3930 Postpone initialization of number of pseudo regs and real regs.
3931 (init_variants): New function.
3932 (rs6000_gdbarch_init): Initialize variants. Update calculation of
3933 registers offsets.
3934
3935 2002-08-19 David Carlton <carlton@math.stanford.edu>
3936
3937 * valops.c (search_struct_field): Change error message to treat
3938 return value of 0 from value_static_field as meaning that field is
3939 optimized out.
3940 (value_struct_elt_for_reference): Ditto.
3941 * values.c (value_static_field): Treat an unresolved location the
3942 same as a nonexistent symbol. Fix PR gdb/635.
3943 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
3944 enclosed. Fix PR gdb/574.
3945 * MAINTAINERS: Add self to Write After Approval list.
3946
3947 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3948
3949 * mips-tdep.c (mips_xfer_register): New function.
3950 (mips_n32n64_extract_return_value): Rewrite.
3951 (mips_gdbarch_init): For N32 and N64, set extract_return_value
3952 instead of deprecated_extract_return_value.
3953
3954 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3955
3956 * rs6000-tdep.c (TDEP): Delete macro.
3957 (branch_dest): Replace use of TDEP macro with its body.
3958 (rs6000_pop_frame): Ditto.
3959 (rs6000_push_arguments): Ditto.
3960 (rs6000_skip_trampoline_code): Ditto.
3961 (rs6000_frame_saved_pc): Ditto.
3962 (rs6000_frame_chain): Ditto.
3963 (rs6000_register_name): Ditto.
3964 (rs6000_register_byte): Ditto.
3965 (rs6000_register_raw_size): Ditto.
3966 (rs6000_register_virtual_type): Ditto.
3967 (rs6000_register_convertible): Ditto.
3968 (rs6000_convert_from_func_ptr_addr): Ditto.
3969
3970 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
3971
3972 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
3973 conditionally.
3974 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
3975 MIPS_LINUX_JB_ELEMENT_SIZE.
3976 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
3977 for MAX_REGISTER_RAW_SIZE arrays.
3978 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
3979 MIPS_LINUX_JB_ELEMENT_SIZE.
3980
3981 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
3982
3983 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
3984
3985 2002-08-19 Aidan Skinner <aidan@velvet.net>
3986
3987 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
3988 ada-valprint.c ada-tasks.c.
3989 (YYFILES): Add ada-exp.y.
3990 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
3991 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
3992 (ada-exp.tab.o): New target.
3993
3994 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3995
3996 * regcache.c (regcache_xfer_part): New function.
3997 (regcache_raw_read_part): New function.
3998 (regcache_raw_write_part): New function.
3999 (regcache_cooked_read_part): New function.
4000 (regcache_cooked_write_part): New function.
4001 * regcache.h (regcache_raw_read_part): Declare.
4002 (regcache_raw_write_part): Declare.
4003 (regcache_cooked_read_part): Declare.
4004 (regcache_cooked_write_part): Declare.
4005
4006 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
4007
4008 * remote.c (remote_open_1): Add async_p.
4009 (remote_async_open_1): Delete.
4010 (open_remote_target): Delete.
4011 (remote_open, extended_remote_open): Update calls to remote_open_1.
4012 (remote_async_open, extended_remote_async_open): Call
4013 remote_open_1 instead of remote_async_open_1.
4014
4015 2002-08-19 Mark Kettenis <kettenis@gnu.org>
4016
4017 * blockframe.c: Fix a few coding standard violations.
4018
4019 2002-08-19 Mark Kettenis <kettenis@gnu.org>
4020
4021 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
4022 here from ...
4023 * config/i386/tm-i386sco5.h: ... here. File removed.
4024 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
4025
4026 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
4027 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
4028 (TM_FILE): Set to tm-i386.h.
4029 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
4030 * config/i386/tm-i386v.h: Remove file.
4031 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
4032 instead of "i386/tm-i386v.h".
4033 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
4034 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
4035 "i386/tm-i386v.h".
4036 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
4037 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
4038 "i386/tm-i386.h".
4039
4040 2002-08-18 Mark Kettenis <kettenis@gnu.org>
4041
4042 * config/i386/nm-i386v.h: Add protection against
4043 multiple-inclusion.
4044 (i386_register_u_addr): Remove prototype.
4045 (register_u_addr): New prototype.
4046 (REGISTER_U_ADDR): Redefine accordingly.
4047 * i386v-nat.c: Improve several comments.
4048 (i386_register_u_addr): Change signature and rename to
4049 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
4050 ubase variable.
4051
4052 2002-08-18 Andrew Cagney <ac131313@redhat.com>
4053
4054 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
4055 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
4056 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
4057 deprecated_extract_return_value.
4058 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
4059 rename mips_o32o64_push_arguments.
4060 (mips_gdbarch_init): Update.
4061 (mips_extract_return_value): Delete.
4062 (mips_o32_extract_return_value): Clone mips_extract_return_value.
4063 (mips_o64_extract_return_value): Clone mips_extract_return_value.
4064 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
4065 (mips_n32n64_extract_return_value): Clone
4066 mips_extract_return_value.
4067 (mips_store_return_value): Delete.
4068 (mips_o32_store_return_value): Clone mips_store_return_value.
4069 (mips_o64_store_return_value): Clone mips_store_return_value.
4070 (mips_eabi_store_return_value): Clone mips_store_return_value.
4071 (mips_n32n64_store_return_value): Clone mips_store_return_value.
4072
4073 2002-08-18 Aidan Skinner <aidan@velvet.net>
4074
4075 * ada-lang.c: Use gdb_string.h instead of <string.h>.
4076 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
4077
4078 2002-08-18 Aidan Skinner <aidan@velvet.net>
4079
4080 * ada-lang.c: Run through gdb_indent.sh.
4081 * ada-lang.h: Run through gdb_indent.sh.
4082 * ada-tasks.c: Run through gdb_indent.sh.
4083 * ada-typeprint.c: Run through gdb_indent.sh.
4084 * ada-valprint.c: Run through gdb_indent.sh.
4085
4086 2002-08-18 Andrew Cagney <ac131313@redhat.com>
4087
4088 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
4089 ABI.
4090
4091 2002-08-18 Mark Kettenis <kettenis@gnu.org>
4092
4093 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
4094
4095 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
4096 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
4097
4098 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
4099 write_register_gen instead of write_register_bytes.
4100
4101 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
4102 i[3456]-*-osf1mk* configurations have been made obsolete.
4103 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
4104 i[3456]86-*-osf1mk* hosts obsolete.
4105 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
4106 targets obsolete.
4107 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
4108 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
4109 config/i386/i386m3.mt, config/i386/nm-m3.h,
4110 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
4111 config/i386/i386mk.mh, config/i386/i386mk.mt,
4112 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
4113 obsolete.
4114 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
4115 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
4116 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
4117
4118 2002-08-18 Andrew Cagney <ac131313@redhat.com>
4119
4120 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
4121 (hppa_value_returned_from_stack): Declare.
4122 (hppa_extract_return_value): Declare.
4123 * config/pa/hppa.mt: New file.
4124 * configure.tgt: Recognize hppa*-*-*.
4125 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
4126
4127 2002-08-18 Mark Kettenis <kettenis@gnu.org>
4128
4129 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
4130 comment.
4131
4132 2002-08-17 Mark Kettenis <kettenis@gnu.org>
4133
4134 * top.c (gdb_rl_operate_and_get_next): Make sure
4135 operate-and-get-next functions correctly even when the history
4136 list is completely filled.
4137
4138 2002-08-18 Andrew Cagney <ac131313@redhat.com>
4139
4140 * MAINTAINERS (Target Instruction Set Architectures): Rename
4141 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
4142 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
4143 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
4144 already listed under Host/Native.
4145
4146 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
4147 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
4148 mips*-*-*.
4149
4150 2002-08-17 Andrew Cagney <ac131313@redhat.com>
4151
4152 * config/ia64/ia64.mt: New file.
4153 * config/alpha/alpha.mt: New file.
4154 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
4155 ia64-linux-gnu. Mention that ia64-elf is broken.
4156 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
4157
4158 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
4159
4160 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
4161 generic_func_frame_valid instead of func_frame_valid.
4162
4163 2002-08-16 Joel Brobecker <brobecker@gnat.com>
4164
4165 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
4166 procfs appears to be broken when debugging on multi-processor
4167 machines. So enable software single stepping in order to avoid
4168 using the procfs interface to do next/step operations, using
4169 internal breakpoints instead.
4170
4171 * infrun.c (handle_inferior_event): Readjust the stop_pc by
4172 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
4173 make this pc address equal to the value it would have if the
4174 system stepping capability was used. Also set a new flag used
4175 to ensure that we don't readjust the PC one more time later.
4176
4177 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
4178 address by DECR_PC_AFTER_BREAK when software single step is
4179 in use for this architecture, as this has already been taken
4180 care of in handle_inferior_event().
4181
4182 2002-08-16 Joel Brobecker <brobecker@gnat.com>
4183
4184 * infrun.c (handle_inferior_event): Minor reformatting, to make
4185 a rather long condition expression easier to read.
4186
4187 2002-08-16 Andrew Cagney <ac131313@redhat.com>
4188
4189 * Makefile.in (gdbtk.o): Move to end of file.
4190 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
4191 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
4192 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
4193 (gdbtk-wrapper.o, gdbres.o): Ditto.
4194
4195 2002-08-16 Andrew Cagney <ac131313@redhat.com>
4196
4197 * Makefile.in (copying.o): Separate out compile rule.
4198 (hpux-thread.o, procfs.o, signals.o): Ditto.
4199 (v850ice.o, z8k-tdep.o): Ditto.
4200 (tui-file.o): Move to TUI section.
4201 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
4202 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
4203
4204 2002-08-16 Joel Brobecker <brobecker@gnat.com>
4205
4206 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
4207 skip_trampoline_code, for better namespace-proofing.
4208
4209 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
4210
4211 2002-08-16 Joel Brobecker <brobecker@gnat.com>
4212
4213 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
4214
4215 2002-08-16 Joel Brobecker <brobecker@gnat.com>
4216
4217 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
4218 signal, check whether we hit a breakpoint before checking for a
4219 single step breakpoint. Otherwise, GDB fails to notice that a
4220 breakpoint has been hit when stepping onto a breakpoint.
4221
4222 2002-08-16 Keith Seitz <keiths@redhat.com>
4223
4224 * gdb-events.sh (clear_gdb_event_hooks): New function.
4225 * gdb-events.c: Regenerate.
4226 * gdb-events.h: Regenerate.
4227
4228 2002-08-16 Andrew Cagney <ac131313@redhat.com>
4229
4230 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
4231 not_a_sw_breakpoint.
4232 * breakpoint.h (bpstat_stop_status): Add parameter names.
4233
4234 2002-08-16 Grace Sainsbury <graces@redhat.com>
4235
4236 * remote.c (remote_insert_hw_breakpoint)
4237 (remote_remove_hw_breakpoint): Fix calculation of length field
4238 for Z-packet.
4239
4240 2002-08-15 Michael Snyder <msnyder@redhat.com>
4241
4242 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
4243 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
4244 (supply_fpregset): Ditto.
4245
4246 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
4247 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
4248 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
4249 (TARGET_READ_SP): Delete.
4250 (DO_REGISTERS_INFO): Delete.
4251 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
4252 Delete.
4253 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
4254 from macros to functions.
4255
4256 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
4257 (mips_register_convertible, mips_register_convert_to_virtual,
4258 mips_register_convert_to_raw): Make static.
4259 (mips_read_sp): New function.
4260 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
4261 (mips_do_registers_info): Make static.
4262 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
4263 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
4264 (mips_register_convert_from_type, mips_register_convert_to_type):
4265 New functions.
4266 (mips_gdbarch_init): Set up function_start_offset,
4267 register_virtual_size, pc_in_sigtramp.
4268
4269 2002-08-15 Andrew Cagney <ac131313@redhat.com>
4270
4271 * infcmd.c (vector_info): New function.
4272 (_initialize_infcmd): Add command "info vector".
4273 (print_vector_info): New function.
4274
4275 * gdbarch.sh (PRINT_VECTOR_INFO): New method
4276 * gdbarch.h, gdbarch.c: Regenerate.
4277
4278 2002-08-15 Andrew Cagney <ac131313@redhat.com>
4279
4280 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
4281 ``print_all''. Only print vector registers when ``print_all''.
4282
4283 2002-08-15 Andrew Cagney <ac131313@redhat.com>
4284
4285 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
4286 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
4287
4288 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
4289 Add `args' parameter.
4290 * gdbarch.h, gdbarch.c: Regenerate.
4291
4292 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
4293
4294 * infcmd.c (float_info): Call print_float_info.
4295 (print_float_info): New function. By default, print the
4296 floating-point registers.
4297
4298 * arch-utils.h (default_print_float_info): Delete declaration.
4299 * arch-utils.c (default_print_float_info): Delete function.
4300
4301 2002-08-16 Mark Kettenis <kettenis@gnu.org>
4302
4303 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
4304 out define.
4305
4306 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
4307 FRAME.
4308
4309 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
4310 * configure.host: Make i[3456]86-*-aix host obsolete.
4311 * configure.tgt: Make i[3456]86-*-aix target obsolete.
4312 * config/i386/i386aix.mh, config/i386/i386aix.mt,
4313 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
4314 config/i386/xm-i386aix.h: Make files obsolete.
4315 * i386aix-nat.c: Make file obsolete.
4316 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
4317 (i386aix-nat.o): Make target obsolete.
4318
4319 * config/i386/nm-gnu.h: Removed.
4320 * config/i386/nm-i386gnu.h: New file.
4321 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
4322 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
4323 Moved here from ...
4324 * config/i386/tm-i386gnu.h: ... here. Removed.
4325 * config/i386/xm-i386gnu.h: Removed.
4326 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
4327 (NAT_FILE): Set to nm-i386gnu.h.
4328 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
4329 * i386-tdep.c: New file.
4330 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
4331 (i386gnu-tdep.o): Specify dependencies.
4332
4333 2002-08-15 Mark Kettenis <kettenis@gnu.org>
4334
4335 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
4336 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
4337 Adjust a few comments to reflect reality a bit closer.
4338 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
4339 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
4340 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
4341 target_insert_watchpoint, target_remove_watchpoint):
4342 Move defines to ...
4343 * config/i386/nm-i386sco5.h: ... here.
4344 (kernel_u_size): Add prototype. Improve a few comments and add
4345 protection against multiple inclusion.
4346
4347 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
4348 out define.
4349
4350 * uw-thread.c (SP_ARG0): Define if not already defined.
4351 * config/i386/tm-i386.h (SO_ARG0): Remove define.
4352
4353 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
4354
4355 * config/i386/tm-i386.h: Don't include "regcache.h".
4356
4357 * i387-tdep.h (i387_print_float_info): New prototype.
4358 * i387-tdep.c (print_i387_value, print_i387_ext,
4359 print_i387_status_word, print_i387_control_word): Add `struct
4360 ui_file *' argument and use it for output.
4361 (i387_print_float_info): Renamed from i387_float_info. Add
4362 `struct gdbarch *' and `struct ui_file *' arguments and use the
4363 latter for output.
4364 * i386-tdep.c: Include "i387-tdep.h".
4365 (i386_gdbarch_init): Set print_float_info.
4366 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
4367 (FLOAT_INFO): Remove define.
4368
4369 2002-08-13 Michael Snyder <msnyder@redhat.com>
4370
4371 * mips-tdep.c (mips_push_arguments): Rename to
4372 mips_eabi_push_arguments, and tune for EABI.
4373 (MIPS_REGS_HAVE_HOME_P): Delete.
4374 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
4375 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
4376 Delete references to mips_regs_have_home_p.
4377
4378 2002-08-14 Keith Seitz <keiths@redhat.com>
4379
4380 * Makefile.in (install-gdbtk): Create insight plugin directory.
4381 Install plugins.tcl file.
4382
4383 2002-08-14 Keith Seitz <keiths@redhat.com>
4384
4385 * configure.in: Move SUBDIRS to near top of the file so that
4386 --enable options may add things to it.
4387 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
4388 * configure: Regenerate.
4389
4390 2002-08-13 Michael Snyder <msnyder@redhat.com>
4391
4392 * mips-tdep.c (mips_o32o64_push_arguments): New function,
4393 cloned from mips_push_arguments, tuned for o32/o64 ABI.
4394 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
4395
4396 2002-08-13 Andrew Cagney <ac131313@redhat.com>
4397
4398 * vax-tdep.c (vax_get_saved_register): Delete function.
4399 (vax_gdbarch_init): Update.
4400 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
4401 (ns32k_gdbarch_init): Update.
4402 * alpha-tdep.c (alpha_get_saved_register): Delete function.
4403 (alpha_gdbarch_init): Update.
4404
4405 2002-08-13 Andrew Cagney <cagney@redhat.com>
4406
4407 * regcache.c (init_regcache_descr): Overallocate the
4408 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
4409 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
4410 nr_raw_registers.
4411 (set_register_cached): Add range checking assertions. Use
4412 current_regcache.
4413
4414 2002-08-13 Mark Kettenis <kettenis@gnu.org>
4415
4416 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
4417 numbers for MMX registers.
4418
4419 2002-08-13 Andrew Cagney <cagney@redhat.com>
4420
4421 * i386-tdep.c (i386_gdbarch_init): Use
4422 generic_unwind_get_saved_register.
4423
4424 2002-08-13 Kevin Buettner <kevinb@redhat.com>
4425
4426 * procfs.c (procfs_can_use_hw_breakpoint): New function.
4427 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
4428 target vector.
4429 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
4430 Delete. Add comment regarding this now-deleted target method.
4431
4432 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
4433
4434 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
4435 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
4436 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
4437 real PC and the page number (if it's within the memory bank window).
4438 (m68hc11_pseudo_register_write): Likewise when saving.
4439 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
4440 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
4441 (m68hc11_register_raw_size): And use 32-bit for it.
4442 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
4443 16K memory bank is used by the prog; also use the virtual pc.
4444
4445 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
4446
4447 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
4448 (m68hc11_gdbarch_init): Install it in gdbarch.
4449 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
4450 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
4451 (MSYMBOL_SIZE): New for documentation.
4452 (insn_return_kind): Enum to specify how a function returns.
4453 (frame_extra_info): Cleanup and record the return mode.
4454 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
4455 register in address computation.
4456 (m68hc11_get_return_insn): New to obtain the return instruction used
4457 by the function.
4458 (m68hc11_frame_init_saved_regs): Take into account the return
4459 instruction used by the function for far and interrupt functions.
4460 (m68hc11_init_extra_frame_info): Take into account page register.
4461 (m68hc11_frame_args_address): Adjust according to the return mode.
4462 (show_regs): Print page register only when it's used.
4463
4464 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
4465
4466 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
4467 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
4468 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
4469 registers.
4470 (m68hc11_register_raw_size): Likewise.
4471
4472 2002-08-13 Andrew Cagney <cagney@redhat.com>
4473
4474 * i386-tdep.c (i386_register_name): Handle mmx registers.
4475 (mmx_regnum_p): New function.
4476 (i386_mmx_names): New array.
4477 (mmx_num_regs): New variable.
4478 (i386_pseudo_register_read): New function.
4479 (i386_pseudo_register_write): New function.
4480 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
4481
4482 * regcache.c (regcache_raw_read_unsigned): New function.
4483 (regcache_raw_read_signed): New function.
4484 * regcache.h (regcache_raw_read_unsigned): Declare.
4485 (regcache_raw_read_signed): Declare.
4486
4487 2002-08-13 Andrew Cagney <cagney@redhat.com>
4488
4489 * regcache.c (regcache_raw_read_as_address): Delete function.
4490 (regcache_cooked_read_signed): New function.
4491 (regcache_cooked_read_unsigned): New function.
4492 * regcache.h (regcache_cooked_read_signed): Declare.
4493 (regcache_cooked_read_unsigned): Declare.
4494 (regcache_raw_read_as_address): Delete declaration.
4495
4496 * blockframe.c (generic_read_register_dummy): Use
4497 regcache_cooked_read_unsigned.
4498 * i386-tdep.c (i386_extract_struct_value_address): Use
4499 regcache_cooked_read_unsigned.
4500
4501 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
4502
4503 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
4504 double sizes according to ELF ABI flags.
4505 (gdbarch_tdep): Record elf_flags.
4506
4507 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
4508
4509 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
4510 (m6812_prolog): They can appear in 68HC12 function prologue.
4511 (m68hc11_frame_chain): Cleanup.
4512
4513 2002-08-12 Andrew Cagney <cagney@redhat.com>
4514
4515 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
4516 declarations.
4517 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
4518 (i386_linux_register_raw_size): Delete function.
4519 (i386_linux_init_abi): Update.
4520 * i386-tdep.c (i386_register_raw_size): Delete function.
4521 (i386_register_byte): Delete function.
4522 (i386_gdbarch_init): Update.
4523 (i386_register_size): Delete array.
4524 (i386_register_offset): Delete array.
4525
4526 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
4527 (REGISTER_RAW_SIZE): Delete macro.
4528 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
4529 (REGISTER_BYTE): Delete macro.
4530
4531 2002-08-11 Aidan Skinner <aidan@velvet.net>
4532
4533 * ada-lang.c (ada_lookup_partial_symbol)
4534 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
4535 prototype names so that grep ^func works properly.
4536
4537 * ada-lang.c (ada_array_element_type)
4538 (ada_lookup_partial_symbol): Fix typos in parameter list.
4539
4540 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
4541 Fix prototype names so that grep ^func works properly.
4542
4543 2002-08-10 Andrew Cagney <cagney@redhat.com>
4544 Elena Zannoni <ezannoni@redhat.com>
4545 Martin M. Hunt <hunt@redhat.com>
4546
4547 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
4548 (build_builtin_type_vec128i): Set the vector bit.
4549 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
4550 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
4551 (build_builtin_type_vec64): New function.
4552 (build_builtin_type_vec64i): New function.
4553 (build_gdbtypes): Initialize builtin_type_vec64 and
4554 builtin_type_vec64i.
4555
4556 2002-08-09 Andrew Cagney <cagney@redhat.com>
4557
4558 * regcache.c (regcache_dump): Compare the register offset
4559 with REGISTER_BYTE.
4560 * arch-utils.c (generic_register_byte): New function.
4561 * arch-utils.h (generic_register_byte): Declare.
4562 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
4563 * gdbarch.h, gdbarch.c: Regenerate.
4564
4565 2002-08-09 Andrew Cagney <cagney@redhat.com>
4566
4567 * regcache.c: Include "gdbcmd.h"
4568 (_initialize_regcache): Add commands "maintenance print
4569 registers", "maintenance print raw-registers" and "maintenance
4570 print cooked-registers".
4571 (enum regcache_dump_what): Define.
4572 (dump_endian_bytes): New function.
4573 (regcache_dump): New function.
4574 (regcache_print): New function.
4575 (maintenance_print_registers): New function.
4576 (maintenance_print_raw_registers): New function.
4577 (maintenance_print_cooked_registers): New function.
4578 * Makefile.in (regcache.o): Update dependencies.
4579
4580 2002-08-09 Michael Snyder <msnyder@redhat.com>
4581
4582 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
4583 (mips_push_arguments): Correct some comments. Use paddr_nz
4584 for printing addresses in debug output. Replace static
4585 allocation using MAX_REGISTER_RAW_SIZE with alloca.
4586 (mips_n32n64_push_arguments): New function, cloned from
4587 mips_push_arguments and tuned for the n32/n64 ABI.
4588 (mips_push_register): Buffer needs dynamic allocation.
4589 (mips_print_register): Ditto.
4590 (do_gp_register_row): Ditto.
4591 (mips_store_return_value): Ditto.
4592 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
4593
4594 2002-08-09 Don Howard <dhoward@redhat.com>
4595
4596 * memattr.c (mem_info_command): Print special case of upper bound
4597 as max CORE_ADDR + 1.
4598
4599 2002-08-08 Michael Snyder <msnyder@redhat.com>
4600
4601 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
4602 returns structs by ref if they're too big to fit in two registers.
4603
4604 2002-08-09 Kevin Buettner <kevinb@redhat.com>
4605
4606 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
4607 saved regs value.
4608 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
4609 mips_find_saved_regs().
4610 (mips_pop_frame): Likewise.
4611
4612 2002-08-09 Kevin Buettner <kevinb@redhat.com>
4613
4614 * blockframe.c (frame_saved_regs_register_unwind): Revise
4615 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
4616 frames are in use.
4617
4618 2002-08-09 Grace Sainsbury <graces@redhat.com>
4619
4620 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
4621 T-packets; the 'a' is not taken as a register number.
4622 (remote_check_watch_resources, remote_stopped_by_watchpoint)
4623 (remote_stopped_data_address): New functions; add to target
4624 vector.
4625 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
4626 prototypes to match other implementations of this
4627 function. replace integer argument with pointer -- the length
4628 field in the Z-packet is the length of what is pointed to or 1 if
4629 pointer is null. Add to target vector.
4630 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
4631 target vector.
4632
4633 From Mark Salter:
4634 * remote.c (remote_wait): Add support to extract optional
4635 watchpoint information from T-packet. Ignore unrecognized
4636 optional info in T-packet.
4637 (remote_async_wait): Ditto.
4638
4639 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
4640
4641 * cli/cli-dump.c: Change fopen modes to use binary open modes
4642 as defined in include/fopen-bin.h throughout.
4643
4644 2002-08-08 Michael Snyder <msnyder@redhat.com>
4645
4646 * mips-tdep.c: Minor whitespace and indentation clean-ups.
4647
4648 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4649
4650 * doublest.c (store_floating): Avoid floatformat_from_doublest()
4651 assertion failure by returning early after a warning.
4652
4653 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4654
4655 * mips-tdep.c (mips_find_saved_regs): Make static.
4656 (mips_frame_init_saved_regs): New function.
4657 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
4658 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
4659 (mips_find_saved_regs): Delete declaration.
4660
4661 2002-08-08 Grace Sainsbury <graces@redhat.com>
4662
4663 * remote.c (remote_wait, remote_async_wait): Change
4664 thread_num from int to ULONGEST.
4665 (unpack_varlen_hex): Change result parameter from
4666 int * to ULONGEST *.
4667
4668 2002-08-08 Andrew Cagney <ac131313@redhat.com>
4669
4670 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
4671 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
4672 powerpc*-*-*.
4673 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
4674
4675 2002-08-08 Andrew Cagney <cagney@redhat.com>
4676
4677 * gcore.c (override_derive_stack_segment): Delete variable.
4678 (preempt_derive_stack_segment): Delete function.
4679 (derive_stack_segment): Delete function.
4680 (default_derive_stack_segment): Renamed to derive_stack_segment.
4681 (override_derive_heap_segment): Delete variable.
4682 (preempt_derive_heap_segment): Delete function.
4683 (derive_heap_segment): Delete function.
4684 (default_derive_heap_segment): Rename to derive_heap_segment.
4685
4686 2002-08-06 Michael Snyder <msnyder@redhat.com>
4687
4688 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
4689 * mips-tdep.c (mips_EABI_use_struct_convention,
4690 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
4691 New functions. (mips_use_struct_convention): Delete.
4692 (mips_gdbarch_init): set use_gdbarch_convention.
4693
4694 2002-08-06 Michael Snyder <msnyder@redhat.com>
4695
4696 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
4697 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
4698 mips_o32_reg_struct_has_addr): New functions.
4699 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
4700
4701 2002-08-07 Andrew Cagney <ac131313@redhat.com>
4702
4703 * regcache.c (pseudo_register): Delete function.
4704 (fetch_register): Delete function.
4705 (store_register): Delete function.
4706 (regcache_raw_read, legacy_read_register_gen): Use
4707 target_fetch_registers instead of fetch_register.
4708 (legacy_write_register_gen, regcache_raw_write): Use
4709 target_store_register instead of store_register.
4710 (write_register_bytes): Ditto.
4711
4712 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
4713 (STORE_PSEUDO_REGISTER): Delete.
4714 * gdbarch.h, gdbarch.c: Regenerate.
4715
4716 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
4717
4718 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
4719 write dump file binary.
4720
4721 2002-08-05 Michael Snyder <msnyder@redhat.com>
4722
4723 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
4724 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
4725 (mips_gdbarch_init): Set N32 target to be mips64.
4726
4727 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4728
4729 * frame.c (find_saved_register): Break out of loop once saved
4730 register address is found. Don't mention sparc in loop comment
4731 anymore.
4732
4733 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4734
4735 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
4736 mips_default_saved_regsize to 8.
4737
4738 2002-08-06 Andrew Cagney <ac131313@redhat.com>
4739
4740 * gcore.c: Do not include <sys/procfs.h>.
4741 * Makefile.in (gcore.o): Update dependencies.
4742
4743 2002-08-06 Andrew Cagney <cagney@redhat.com>
4744
4745 * configure.tgt: Make arc-*-* obsolete.
4746 * NEWS: Mention that arc-*-* has been identifed as obsolete.
4747 * MAINTAINERS: Make arc-elf obsolete.
4748 * arc-tdep.c: Make file obsolete.
4749 * config/arc/arc.mt: Ditto.
4750 * config/arc/tm-arc.h: Ditto.
4751
4752 2002-08-05 Theodore A. Roth <troth@verinet.com>
4753
4754 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
4755
4756 2002-08-05 Andrew Cagney <ac131313@redhat.com>
4757
4758 * mcore-tdep.c (mcore_gdbarch_init): Use
4759 generic_unwind_get_saved_register instead of
4760 generic_get_saved_register.
4761 * v850-tdep.c (v850_gdbarch_init): Ditto.
4762 * frv-tdep.c (frv_gdbarch_init): Ditto.
4763 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4764 * s390-tdep.c (s390_gdbarch_init): Ditto.
4765 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4766 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
4767 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
4768
4769 2002-08-05 Joel Brobecker <brobecker@gnat.com>
4770
4771 * objfiles.h: Add missing #include "symfile.h"
4772
4773 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
4774
4775 2002-08-04 Andrew Cagney <ac131313@redhat.com>
4776
4777 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
4778 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
4779 of FIELD_BITSIZE.
4780
4781 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
4782
4783 * NEWS: Cleanup and nitpick.
4784
4785 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4786
4787 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
4788
4789 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4790
4791 * Makefile.in (gdbtk-bp.o): Update dependencies.
4792 (gdbtk-register.o): Ditto.
4793 (gdbtk-varobj.o): Ditto.
4794
4795 2002-08-03 Andrew Cagney <cagney@redhat.com>
4796
4797 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
4798 m68hc11_fetch_pseudo_register.
4799 (m68hc11_pseudo_register_write): Replace
4800 m68hc11_store_pseudo_register.
4801 (m68hc11_gdbarch_init): Update.
4802
4803 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
4804
4805 * gdbarch.sh: Include "gdb_string.h".
4806 * gdbarch.c: Regenerate.
4807
4808 * regcache.c: Include "gdb_string.h".
4809 * ax-general.c: Ditto.
4810 * varobj.c: Ditto.
4811 * std-regs.c: Ditto.
4812 * fbsd-proc.c: Ditto.
4813 * thread.c: Ditto.
4814
4815 * Makefile.in (regcache.o): Update dependencies.
4816 (thread.o, gdbarch.o): Ditto.
4817 (ax-general.o, gdbarch.o): Ditto.
4818 (varobj.o, std-regs.o): Ditto.
4819 (fbsd-proc.o): Specify dependencies.
4820
4821 2002-08-02 Andrew Cagney <cagney@redhat.com>
4822
4823 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
4824 regnum.
4825 (regcache_cooked_write): Ditto.
4826
4827 2002-08-02 Andrew Cagney <ac131313@redhat.com>
4828
4829 * regcache.c (regcache_cooked_read): New function.
4830 (regcache_cooked_write): New function.
4831 (read_register_gen): Rewrite using regcache_cooked_read.
4832 (write_register_gen): Rewrite using regcache_cooked_write.
4833
4834 * regcache.h (regcache_cooked_read, regcache_cooked_write):
4835 Declare.
4836
4837 2002-08-02 Andrew Cagney <cagney@redhat.com>
4838
4839 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
4840 Replace the architecture methods register_read and register_write.
4841 * gdbarch.h, gdbarch.c: Regenerate.
4842 * regcache.c (init_regcache_descr): Update.
4843 (read_register_gen): Update.
4844 (write_register_gen): Update.
4845 (supply_register): Update comment.
4846
4847 * sh-tdep.c (sh_gdbarch_init): Update.
4848 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
4849 `regcache' and `gdbarch' parameters. Make `buffer' a void
4850 pointer. Update code.
4851 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
4852 `regcache' and `gdbarch' parameters. Make `buffer' a constant
4853 void pointer. Update code.
4854 (sh64_register_write): Delete.
4855 (sh4_register_read): Delete.
4856 (sh64_register_read): Delete.
4857 (sh4_register_write): Delete.
4858 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
4859 void pointer, `to' parameter a void pointer.
4860 (sh_sh64_register_convert_to_raw): Ditto.
4861
4862 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4863
4864 * mips-tdep.c (mips_register_virtual_type): Use architecture
4865 invariant return values.
4866
4867 2002-08-01 Andrew Cagney <cagney@redhat.com>
4868
4869 * linux-proc.c: Include "gdb_string.h".
4870 * Makefile.in (linux-proc.o): Update dependency list.
4871
4872 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4873
4874 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
4875 comment.
4876
4877 2002-08-01 Grace Sainsbury <graces@redhat.com>
4878
4879 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4880 to_insert_watchpoint, to_remove_watchpoint,
4881 to_stopped_by_watchpoint, to_stopped_data_address,
4882 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
4883 target vecctor. Define their corresponding macros so they call
4884 them.
4885
4886 * target.c: Add default and debug versions of for
4887 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4888 to_insert_watchpoint, to_remove_watchpoint,
4889 to_stopped_by_watchpoint, to_stopped_data_address,
4890 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
4891
4892 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4893
4894 * mips-tdep.c (mips_register_virtual_type): New function.
4895 (mips_gdbarch_init): Register mips_register_virtual_type()
4896 with gdbarch machinery.
4897 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
4898 this file instead of tm-bigmips.h.
4899 (MIPS_REGSIZE): Delete this macro.
4900 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
4901 multiarch version in mips-tdep.c will be found.
4902
4903 2002-08-01 Andrew Cagney <cagney@redhat.com>
4904
4905 * NEWS: Menion that CHILL has been made obsolete.
4906
4907 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
4908 * stabsread.c (read_range_type): Ditto.
4909 * gdbtypes.h: Ditto.
4910 * language.c (binop_type_check): Ditto.
4911 (binop_result_type): Ditto.
4912 (integral_type): Ditto.
4913 (character_type): Ditto.
4914 (string_type): Ditto.
4915 (boolean_type): Ditto.
4916 (structured_type): Ditto.
4917 (lang_bool_type): Ditto.
4918 (binop_type_check): Ditto.
4919 * language.h (_LANG_chill): Ditto.
4920 * dwarfread.c (set_cu_language): Ditto.
4921 * dwarfread.c (CHILL_PRODUCER): Ditto.
4922 * dwarfread.c (handle_producer): Ditto.
4923 * expression.h (enum exp_opcode): Ditto.
4924 * eval.c: Ditto for comments.
4925 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
4926 * expprint.c (print_subexp): Ditto.
4927 (print_subexp): Ditto.
4928 * valops.c (value_cast): Ditto.
4929 (search_struct_field): Ditto.
4930 * value.h (COERCE_VARYING_ARRAY): Ditto.
4931 * symfile.c (init_filename_language_table): Ditto.
4932 (add_psymbol_with_dem_name_to_list): Ditto.
4933 * valarith.c (value_binop): Ditto.
4934 (value_neg): Ditto.
4935 * valops.c (value_slice): Ditto.
4936 * symtab.h (union language_specific): Ditto.
4937 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
4938 (SYMBOL_DEMANGLED_NAME): Ditto.
4939 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
4940 * defs.h (enum language): Ditto.
4941 * symtab.c (got_symtab): Ditto.
4942 * utils.c (fprintf_symbol_filtered): Ditto.
4943
4944 * ch-typeprint.c: Make file obsolete.
4945 * ch-valprint.c: Make file obsolete.
4946 * ch-lang.h: Make file obsolete.
4947 * ch-exp.c: Make file obsolete.
4948 * ch-lang.c: Make file obsolete.
4949
4950 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
4951 CHILL_LIB.
4952 (TARGET_FLAGS_TO_PASS): Ditto.
4953 (CHILLFLAGS): Obsolete.
4954 (CHILL): Obsolete.
4955 (CHILL_FOR_TARGET): Obsolete.
4956 (CHILL_LIB): Obsolete.
4957 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
4958 ch-valprint.c.
4959 (HFILES_NO_SRCDIR): Remove ch-lang.h.
4960 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
4961 ch-lang.o.
4962 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
4963 targets.
4964
4965 2002-07-31 Joel Brobecker <brobecker@gnat.com>
4966
4967 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
4968 This does not change anything at the moment, but will be helpful
4969 later when full Ada support is integrated.
4970
4971 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4972
4973 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
4974 help message.
4975
4976 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4977
4978 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
4979 and save it in a local variable. Use variable in later test.
4980
4981 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4982
4983 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
4984 test. (Thanks to Daniel Jacobowitz.)
4985
4986 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4987
4988 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
4989 (mips_abi_strings): Add "n64".
4990 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
4991
4992 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4993
4994 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
4995 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
4996
4997 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4998
4999 * utils.c (host_pointer_to_address, address_to_host_pointer):
5000 Use gdb_assert() instead of explicit call to internal_error().
5001
5002 2002-07-30 Kevin Buettner <kevinb@redhat.com>
5003
5004 * Makefile.in (rs6000-nat.o): Update dependencies.
5005
5006 From Nicholas Duffek:
5007 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
5008 (aix-thread.o): New rule.
5009 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
5010 * config/powerpc/aix432.mh: New file.
5011
5012 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
5013
5014 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
5015 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
5016 (fetch_core_registers, ppc_linux_supply_gregset)
5017 (ppc_linux_supply_fpregset): New functions.
5018 (ppc_linux_regset_core_fns): New.
5019 (_initialize_ppc_linux_tdep): Call add_core_fns.
5020 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
5021 and ppc_linux_supply_gregset.
5022 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
5023 (supply_fpregset): Call ppc_linux_supply_fpregset.
5024 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
5025 corelow.o.
5026 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
5027
5028 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
5029
5030 * symtab.c (lookup_symbol): Demangle before lowercasing.
5031
5032 2002-07-30 Andrew Cagney <ac131313@redhat.com>
5033
5034 * symtab.h: Replace #include "gdb_obstack.h" with opaque
5035 declaration.
5036 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
5037 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
5038 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
5039 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
5040 "gdb_string.h".
5041 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
5042 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
5043 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
5044 (avr-tdep.o, mon960-rom.o): Ditto.
5045 (aout_stabs_gnu_h): Define.
5046 (symtab_h): Remove $(gdb_obstack_h).
5047
5048 2002-07-30 Jim Blandy <jimb@redhat.com>
5049
5050 Patch from David Carlton <carlton@math.stanford.edu>:
5051 * gdbinit.in: Move the `dir' commands that add GDB's own source
5052 directory to the search path to the end, so that the `gdb' source
5053 directory will be searched first.
5054
5055 2002-07-29 Andrew Cagney <ac131313@redhat.com>
5056
5057 * gdb_obstack.h: New file.
5058 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
5059 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
5060 * objfiles.h: Include "gdb_obstack.h".
5061 * Makefile.in (gdb_obstack_h): Define.
5062 (symtab_h): Add $(gdb_obstack_h).
5063 (objfiles_h): Add $(gdb_obstack_h).
5064
5065 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
5066 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
5067 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
5068 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
5069 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
5070 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
5071 * symfile.c, coffread.c, c-typeprint.c: Ditto.
5072 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
5073
5074 * Makefile.in (bcache.o): Update dependencies.
5075 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
5076 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
5077 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
5078 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
5079 (stabsread.o, symfile.o, symmisc.o): Ditto.
5080 (symtab.o, typeprint.o, macroexp.o): Ditto.
5081 (macrotab.o, mdebugread.o): Ditto.
5082 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
5083 (coff_ecoff_h, aout_aout64_h): Define.
5084 (aout_stabs_gnu_h, libaout_h): Define.
5085
5086 2002-07-29 Andrew Cagney <cagney@redhat.com>
5087
5088 * regcache.c (struct regcache_descr): Rename nr_registers to
5089 nr_cooked_registers. Revise comments describing the structure
5090 member fields.
5091 (init_regcache_descr): Update.
5092 (init_legacy_regcache_descr): Update.
5093 (read_register_gen, write_register_gen): When a cooked register in
5094 the raw register range, directly access the value from the raw
5095 register cache.
5096
5097 2002-07-29 Andrew Cagney <ac131313@redhat.com>
5098
5099 * z8k-tdep.c: Do not include "obstack.h".
5100 * h8300-tdep.c, h8500-tdep.c: Ditto.
5101 * m68hc11-tdep.c, sh-tdep.c: Ditto.
5102 * valprint.c, v850-tdep.c: Ditto.
5103 * d10v-tdep.c, mn10300-tdep.c: Ditto.
5104 * mn10200-tdep.c: Ditto.
5105
5106 * Makefile.in (z8k-tdep.o): Update dependencies.
5107 (m68hc11-tdep.o, valprint.o): Ditto.
5108 (v850-tdep.o, d10v-tdep.o): Ditto.
5109 (mn10300-tdep.o, sparc-tdep.o): Ditto.
5110 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
5111 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
5112 (sh_opc_h, gdb_sim_sh_h): Define.
5113 (elf_sh_h, elf_bfd_h): Define.
5114 (opcode_m68hc11_h): Define.
5115 (OPCODES_SRC, OPCODES_DIR): define.
5116 (OPCODES): Use $(OPCODES_DIR).
5117 (gdb_sim_d10v_h): Rename sim_d10v_h.
5118 (gdb_sim_arm_h): Rename sim_arm_h.
5119
5120 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5121
5122 * utils.c (host_pointer_to_address, address_to_host_pointer):
5123 Change internal_error() message to indicate function responsible
5124 for the error.
5125
5126 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5127
5128 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
5129 calls to local_hex_string_custom().
5130
5131 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5132
5133 * irix5-nat.c: Move IRIX shared library support from here...
5134 * solib-irix.c: ...to here. Revised substantially to work with
5135 generic solib framework.
5136
5137 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
5138 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
5139 * mips-irix-tdep.c: New file.
5140
5141 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
5142 (mips-irix-tdep.o, solib-irix.o): New rules.
5143 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
5144 solib-irix.o.
5145 * config/mips/irix6.mt (TDEPFILES): Likewise.
5146 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
5147
5148 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5149
5150 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
5151 disabled (via ``#if 0'') includes.
5152
5153 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5154
5155 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
5156 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
5157 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
5158 Add support for the fpscr register.
5159 * rs6000-nat.c (regmap, fetch_inferior_registers)
5160 (store_inferior_registers, fetch_core_registers): Likewise.
5161
5162 2002-07-26 Kevin Buettner <kevinb@redhat.com>
5163
5164 * rs6000-nat.c (language.h): Include.
5165 (special_regs): Delete this array.
5166 (regmap): New function.
5167 (fetch_register, store_register): Use regmap() to map gdb
5168 register numbers to ptrace register numbers. Also, use
5169 outputs from regmap() to make decisions regarding type of
5170 ptrace() call to make. In particular, don't compare against
5171 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
5172 (fetch_inferior_registers, store_inferior_registers): Where
5173 possible, obtain register numbers from tdep struct. Don't
5174 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
5175 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
5176 (LAST_UISA_SP_REGNUM): Delete.
5177
5178 2002-07-25 Kevin Buettner <kevinb@redhat.com>
5179
5180 * rs6000-nat.c (ppc-tdep.h): Include.
5181 (fetch_registers, store_register, fetch_core_registers): Don't
5182 access registers[] directly. Instead, use supply_register() or
5183 regcache_collect() as appropriate.
5184 (find_toc_address): Format hex address with local_hex_string().
5185
5186 2002-07-25 Andrew Cagney <ac131313@redhat.com>
5187
5188 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
5189 bfd/elf32-frv.c.
5190
5191 2002-07-24 Tom Tromey <tromey@redhat.com>
5192
5193 * jv-exp.y: Marked all strings with _().
5194 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
5195 internal_error.
5196 (MethodInvocation, CastExpression, parse_number, yyerror,
5197 java_type_from_name, push_expression_name, yylex): Typo fixes.
5198
5199 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
5200
5201 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
5202 (tee_file_flush, tee_file_write, tee_file_fputs)
5203 (tee_file_isatty): New.
5204 * ui-file.h (tee_file_new): Add prototype.
5205
5206 2002-07-24 Aidan Skinner <aidan@velvet.net>
5207
5208 * ada-lang.c: Change k&r style function definitions to prototyped
5209 form.
5210 * ada-typeprint.c: Change k&r style function definitions to prototyped
5211 form.
5212 * ada-valprint.c: Change k&r style function definitions to prototyped
5213 form.
5214
5215 2002-07-24 Andrew Cagney <cagney@redhat.com>
5216
5217 * README: Remove reference to remote-bug.
5218 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
5219 remote-bug.c.
5220 (m88k-nat.o): Delete rule.
5221 (m88k-tdep.o): Delete rule.
5222 (remote-bug.o): Delete rule.
5223 * MAINTAINERS: Mark as obsolete.
5224 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
5225 * m88k-tdep.c: Make file obsolete.
5226 * config/m88k/m88k.mh: Ditto.
5227 * config/m88k/delta88v4.mh: Ditto.
5228 * config/m88k/delta88v4.mt: Ditto.
5229 * config/m88k/delta88.mt: Ditto.
5230 * config/m88k/delta88.mh: Ditto.
5231 * remote-bug.c: Ditto.
5232 * config/m88k/tm-delta88.h: Ditto.
5233 * config/m88k/nm-delta88v4.h: Ditto.
5234 * config/m88k/xm-delta88.h: Ditto.
5235 * config/m88k/xm-dgux.h: Ditto.
5236 * config/m88k/tm-m88k.h: Ditto.
5237 * config/m88k/nm-m88k.h: Ditto.
5238 * config/m88k/tm-delta88v4.h: Ditto.
5239 * m88k-nat.c: Ditto.
5240 * cxux-nat.c: Ditto.
5241 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
5242 and m88*-*-* obsolete.
5243 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
5244 m88*-*-* obsolete.
5245
5246 2002-07-24 Andrew Cagney <cagney@redhat.com>
5247
5248 * findvar.c (extract_unsigned_integer): Make `addr' parameter
5249 constant. Same for local pointer variables.
5250 (extract_signed_integer): Ditto.
5251 * defs.h (extract_unsigned_integer): Update.
5252 (extract_signed_integer): Update.
5253
5254 2002-07-24 Andrew Cagney <cagney@redhat.com>
5255
5256 * regcache.c (regcache_raw_write): Change buf parameter to a
5257 constant void pointer.
5258 (regcache_raw_read): Change buf parameter to a void pointer.
5259 (legacy_write_register_gen): Change myaddr parameter a constant
5260 void pointer.
5261 (supply_register): Change val parameter to a const void pointer.
5262 * regcache.h (regcache_raw_write): Update declaration.
5263 (regcache_raw_read): Update declaration.
5264 (supply_register): Update declaration.
5265
5266 2002-07-24 Tom Tromey <tromey@redhat.com>
5267
5268 * defs.h (gdb_readline_wrapper): Declare.
5269 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
5270 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
5271 * top.c (gdb_readline_wrapper): New function.
5272 (command_line_input): Use it.
5273
5274 2002-07-24 Andrew Cagney <cagney@redhat.com>
5275
5276 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
5277 regcache_read and regcache_write.
5278 (regcache_raw_read_as_address): Replace regcache_read_as_address.
5279 * regcache.c: Update.
5280 * sh-tdep.c (sh64_push_arguments): Update comment.
5281 (sh_pseudo_register_read): Update.
5282 (sh_pseudo_register_write): Update.
5283 (sh4_register_read): Update.
5284 (sh4_register_write): Update.
5285 (sh64_pseudo_register_read): Update.
5286 (sh64_pseudo_register_write): Update.
5287 (sh64_register_read): Update.
5288 (sh64_register_write): Update.
5289 * i386-tdep.c (i386_extract_return_value): Update.
5290 (i386_extract_struct_value_address): Update.
5291 (i386_extract_return_value): Update.
5292 * blockframe.c (generic_read_register_dummy): Update.
5293 (generic_call_dummy_register_unwind): Update
5294 * infrun.c (write_inferior_status_register): Update.
5295
5296 2002-07-23 Jim Blandy <jimb@redhat.com>
5297
5298 * parser-defs.h (expression_context_pc): Make this extern.
5299 (Thanks to Michael Snyder.)
5300
5301 2002-07-23 Andrew Cagney <ac131313@redhat.com>
5302
5303 GDB 5.2.1 released from 5.2 branch.
5304 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
5305 * README: Update to mention 5.2.1.
5306
5307 2002-07-23 Mark Salter <msalter@redhat.com>
5308
5309 * remote.c (remote_read_bytes): Fix check for error.
5310
5311 2002-07-22 Kevin Buettner <kevinb@redhat.com>
5312
5313 * aix-thread.c (language.h): Include.
5314 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
5315 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
5316 Print newlines at end of debug messages.
5317 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
5318 (pdc_write_data): Use local_hex_string() instead of %llx formats.
5319
5320 2002-07-22 Kevin Buettner <kevinb@redhat.com>
5321
5322 * aix-thread.c (ppc-tdep.h): Include.
5323 (special_register_p): New function.
5324 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
5325 (store_regs_user_thread): Use register number information from
5326 gdbarch_tdep struct instead of hardcoded offsets relative to
5327 FIRST_UISA_SP_REGNUM.
5328 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
5329 special_register_p() instead of using FPLAST_REGNUM and
5330 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
5331 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
5332 will be MQ's register number.
5333
5334 2002-07-22 Michael Snyder <msnyder@redhat.com>
5335
5336 * aix-thread.c (ops): Rename to aix_thread_ops.
5337 (base_ops): Rename to base_target.
5338 (ops_attach): Rename to aix_thread_attach.
5339 (ops_detach): Rename to aix_thread_detach.
5340 (ops_resume): Rename to aix_thread_detach.
5341 (ops_wait): Rename to aix_thread_wait.
5342 (ops_kill): Rename to aix_thread_kill.
5343 (init_ops): Rename to init_aix_thread_ops.
5344 (ops_fetch_register): Rename to aix_thread_fetch_register.
5345 (ops_store_register): Rename to aix_thread_store_register.
5346 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
5347 (ops_thread_alive): Rename to aix_thread_thread_alive.
5348 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
5349 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
5350 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
5351 (fetch_regs_lib): Rename to fetch_regs_user_thread.
5352 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
5353 (store_regs_lib): Rename to store_regs_user_thread.
5354 (store_regs_kern): Rename to store_regs_kernel_thread.
5355
5356 2002-07-22 Michael Snyder <msnyder@redhat.com>
5357
5358 * aix-thread.c (ops_prepare_to_store): Eliminate.
5359 (init_ops): Don't initialize ops.prepare_to_store.
5360 (store_regs_kern): Pre-fetch register buffers from child,
5361 because some registers may not be in the cache. Copy
5362 regs from register cache only if they are cached.
5363 (store_regs_lib): Copy regs from register cache only
5364 if they are cached.
5365 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
5366 fill_gprs64): Ditto.
5367
5368 2002-07-22 Kevin Buettner <kevinb@redhat.com>
5369
5370 * aix-thread.c (gdb_assert.h): Include.
5371 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
5372 register sizes (from register cache) match size of buffer holding
5373 register data.
5374 (fill_sprs32): Change parameter types to match those in the ptrace()
5375 buffer.
5376 (store_regs_lib): Likewise, but for 32-bit temporary variables.
5377 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
5378
5379 2002-07-22 Michael Snyder <msnyder@redhat.com>
5380
5381 * aix-thread.c (supply_sprs64): Cosmetic change.
5382 (supply_sprs32): Cosmetic change.
5383 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
5384 (fill_sprs64): Use regcache_collect instead of read_register.
5385 (store_regs_lib): Use regcache_collect instead of
5386 read_register. Use fill_sprs32 instead of fill_sprs64,
5387 if debugging a 32-bit architecture.
5388 (store_regs_kern): Use fill_gprs64 etc. to pull the values
5389 out of the register cache, instead of passing a pointer into
5390 the register cache directly to ptrace. Use regcache_collect
5391 insteaad of read_register.
5392 (ops_prepare_to_store): Use target_read_registers instead
5393 of read_register_bytes.
5394
5395 2002-07-20 Aidan Skinner <aidan@velvet.net>
5396
5397 * MAINTAINERS: Add self under write after approval.
5398
5399 2002-07-20 Aidan Skinner <aidan@velvet.net>
5400
5401 * ada-tasks.c: Change k&r style function definitions to prototyped
5402 form.
5403
5404 2002-07-19 Andrew Cagney <ac131313@redhat.com>
5405
5406 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
5407 * x86-64-tdep.c: Include "objfiles.h".
5408 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
5409 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
5410
5411 2002-07-17 Michal Ludvig <michal@suse.cz>
5412
5413 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
5414 (update_context): Initialise cfa variable.
5415
5416 2002-07-17 Michael Snyder <msnyder@redhat.com>
5417
5418 * aix-thread.c: Shorten some long lines.
5419 Bring comments into line with code spec.
5420
5421 2002-07-18 Joel Brobecker <brobecker@gnat.com>
5422
5423 * infrun.c: Re-indent using gdb_indent.sh.
5424
5425 2002-07-18 Joel Brobecker <brobecker@gnat.com>
5426
5427 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
5428 Leave the indentation temporarily untouched, to minimize the diffs.
5429
5430 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
5431
5432 * stabsread.c: Make os9k sections of the code obsolete,
5433 for real this time.
5434 * stabsread.h: Make os9k sections of the code obsolete.
5435
5436 2002-07-18 Michal Ludvig <mludvig@suse.cz>
5437
5438 * linux-low.c (regsets_store_inferior_registers): Add free()
5439 at the end of a loop to prevent memory leak.
5440 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
5441 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
5442 * config/sparc/tm-sp64linux.h: Make the rest of #endif
5443 line a comment.
5444 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
5445
5446 2002-07-17 Jim Blandy <jimb@redhat.com>
5447
5448 * macrocmd.c (info_macro_command): Remove newline from error
5449 message.
5450
5451 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
5452
5453 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
5454 (sh_gdbarch_init): Use it for sh-dsp.
5455
5456 2002-07-16 Kevin Buettner <kevinb@redhat.com>
5457
5458 * dwarf2read.c (read_initial_length): Handle older, non-standard,
5459 64-bit DWARF2 format.
5460
5461 2002-07-16 Joel Brobecker <brobecker@gnat.com>
5462
5463 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
5464 <sys/proc.h> when not available.
5465
5466 2002-07-16 Andrew Cagney <ac131313@redhat.com>
5467
5468 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
5469 * stabsread.c: Make os9k sections of the code obsolete.
5470 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
5471 * config/i386/i386os9k.mt: Make file obsolete.
5472 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
5473 (COMMON_OBS): Remove os9kread.o
5474 (SFILES): Remove os9kread.c.
5475 (os9kread.o, remote-os9k.o): Make target obsolete.
5476 * remote-os9k.c: Make file obsolete.
5477 * os9kread.c: Make file obsolete.
5478 * Makefile.in
5479
5480 2002-07-16 Andrew Cagney <ac131313@redhat.com>
5481
5482 * NEWS: Mention that the FR30 has been made obsolete.
5483 * fr30-tdep.c: Make file obsolete.
5484 * config/fr30/tm-fr30.h: Ditto.
5485 * config/fr30/fr30.mt: Ditto.
5486 * configure.tgt: Make fr30-*-elf obsolete.
5487 * MAINTAINERS: Make fr30-elf obsolete.
5488
5489 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
5490
5491 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
5492 found is not inside a section.
5493
5494 2002-07-15 Kevin Buettner <kevinb@redhat.com>
5495
5496 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
5497 strerror().
5498 (pdc_realloc): Use xrealloc() instead of realloc().
5499
5500 2002-07-15 Kevin Buettner <kevinb@redhat.com>
5501
5502 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
5503 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
5504 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
5505 macros.
5506
5507 2002-07-15 Kevin Buettner <kevinb@redhat.com>
5508
5509 * aix-thread.c (ptrace_check): Eliminate goto.
5510 (sync_threadlists): Eliminate gotos. Also, fix array overrun
5511 problem.
5512
5513 2002-07-15 Kevin Buettner <kevinb@redhat.com>
5514
5515 * aix-thread.c (gdbcmd.h): Include.
5516 (DEBUG, DBG, DBG2, dbg): Eliminate.
5517 (debug_aix_thread): New static global.
5518 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
5519 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
5520 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
5521 invocations to DBG and DBG2 macros to test against
5522 ``debug_aix_thread'' and call fprintf_unfiltered().
5523 (_initialize_aix_thread): Add new command "set debug aix-thread".
5524
5525 2002-07-15 Andrew Cagney <ac131313@redhat.com>
5526
5527 From Gerhard Tonn <TON@de.ibm.com>:
5528 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
5529 instead of supply_register.
5530
5531 2002-07-15 Andrew Cagney <ac131313@redhat.com>
5532
5533 * dwarf2cfi.c: Include "gdb_assert.h".
5534 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
5535 non-NULL.
5536 (update_context): Do not use __func__. Add missing ``break''.
5537 (update_context): Do not use __func__.
5538
5539 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
5540
5541 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
5542 and its setting. Set gdbarch instruction printing functions
5543 directly. For non-rs6000 case use new function
5544 gdb_print_insn_powerpc.
5545 (gdb_print_insn_powerpc): New function.
5546
5547 2002-07-13 Andrew Cagney <ac131313@redhat.com>
5548
5549 * NEWS: Mention that the d30v has been marked obsolete.
5550 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
5551 * configure.tgt: Mark d30v-*-* as obsolete.
5552 * d30v-tdep.c: Mark file as obsolete.
5553 * config/d30v/d30v.mt: Ditto.
5554 * config/d30v/tm-d30v.h: Ditto.
5555
5556 2002-07-13 Aidan Skinner <aidan@velvet.net>
5557
5558 * ada-tasks.c (add_task_entry): replace calls to
5559 malloc() with xmalloc
5560 * ada-tasks.c (init_task_list): replace calls to free with xfree()
5561
5562 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
5563 ada_finish_decode_line_1, all_sals_for_line
5564 ada_breakpoint_rewrite): replace calls to free() with xfree()
5565
5566 2002-07-12 Kevin Buettner <kevinb@redhat.com>
5567
5568 From Nicholas Duffek (with minor changes by Martin Hunt,
5569 Louis Hamilton, and Kevin Buettner):
5570 * aix-thread.c: New file.
5571
5572 2002-07-12 Petr Sorfa <petrs@caldera.com>
5573
5574 * dwarf2read.c (dwarf2_invalid_attrib_class): New
5575 complaint for invalid attribute class or form.
5576 (read_func_scope): DW_AT_frame_base
5577 better handling of DW_AT_block*.
5578 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
5579 better handling of DW_AT_block*.
5580 (read_common_block): DW_AT_location
5581 better handling of DW_AT_block*.
5582 (read_partial_die): DW_AT_location better handling
5583 of DW_AT_block*.
5584 (new_symbol): DW_AT_external better handling of
5585 DW_AT_block*. Proper initialization of variable
5586 "addr".
5587 (attr_form_is_block): New function that returns true
5588 if the attribute's form is of DW_FORM_block*.
5589
5590 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
5591
5592 * valops.c (find_method_list): Remove comment about
5593 removed STATIC_MEMFUNCP argument.
5594 (value_find_oload_method_list): Likewise.
5595
5596 2002-07-12 Kevin Buettner <kevinb@redhat.com>
5597
5598 From Nicholas Duffek:
5599 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
5600 target_new_objfile_hook.
5601
5602 2002-07-12 Kevin Buettner <kevinb@redhat.com>
5603
5604 From Nicholas Duffek:
5605 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
5606 csect.
5607
5608 2002-07-12 Andrew Cagney <cagney@redhat.com>
5609
5610 * MAINTAINERS: Mention --enable-sim-build-warnings.
5611 (m68hc11-elf): Disable sim build warnings.
5612 (m32r-elf): Mark as broken obsolete candidate.
5613 (x86_64-linux-gnu): Mark as buildable with -Werror.
5614 (arm-elf): Change -w to ``,'' which enables warnings but not
5615 -Werror.
5616
5617 2002-07-12 Andrew Cagney <ac131313@redhat.com>
5618
5619 * bcache.h: Update copyright.
5620 (struct bstring, struct bcache): Move definition to "bcache.c".
5621 Replaced by opaque declaration.
5622 (bcache_xfree): Replace free_bcache.
5623 (bcache_xmalloc, bcache_memory_used): Declare.
5624
5625 * bcache.c: Update copyright.
5626 (struct bstring, struct bcache): Moved to here from "bcache.h".
5627 Update comments.
5628 (bcache_xmalloc, bcache_memory_used): New functions.
5629 (bcache_xfree): Replace function free_bcache.
5630
5631 * Makefile.in (objfiles.o): Add $(bcache_h).
5632 (objfiles_h): Remove $(bcache_h).
5633 (symfile.o): Add $(bcache_h).
5634
5635 * symmisc.c: Update copyright.
5636 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
5637 (print_objfile_statistics): Use bcache_memory_used.
5638
5639 * symfile.c: Include "bcache.h".
5640 (reread_symbols): Use bcache_xfree.
5641 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
5642 (add_psymbol_to_list): Pass psymbol_cache by value.
5643 (add_psymbol_with_dem_name_to_list): Ditto.
5644
5645 * objfiles.h: Update copyright.
5646 (struct bcache): Declare opaque. Do not include "bcache.h".
5647 (struct objfile): Change psymbol_cache and macro_cache to ``struct
5648 bcache'' pointers.
5649 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
5650
5651 * objfiles.c: Include "bcache.h". Update copyright.
5652 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
5653 macro_cache.
5654 (free_objfile): Use bcache_xfree.
5655
5656 2002-07-11 Grace Sainsbury <graces@redhat.com>
5657
5658 * monitor.c (monitor_fetch_register): Make name a constant.
5659 (monitor_store_register): Same.
5660
5661 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
5662
5663 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
5664 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
5665 (finish_block) For non-function blocks, hash the symbol table. For
5666 function blocks, mark the symbol table as unhashed.
5667 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
5668 (msymbol_hash_iw): Likewise.
5669 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
5670 value.
5671 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
5672 (lookup_minimal_symbol): Likewise for both.
5673 * symtab.h (struct block): Add `hashtable' flag. Comment the
5674 hashtable.
5675 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
5676 (ALL_BLOCK_SYMBOLS): Update.
5677 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
5678 (struct symbol): Add `hash_next' pointer.
5679 * symtab.c (lookup_block_symbol): Search using the hash table when
5680 possible.
5681 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
5682 (search_symbols, find_addr_symbol): Likewise.
5683
5684 * dstread.c (process_dst_block): Clear hashtable bit for new block.
5685 (read_dst_symtab): Likewise.
5686 * jv-lang.c (get_java_class_symtab): Likewise.
5687 * mdebugread.c: Include "gdb_assert.h".
5688 (shrink_block): Assert that the block being modified is not hashed.
5689 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
5690 * symmisc.c (free_symtab_block): Walk the hash table when freeing
5691 symbols.
5692 (dump_symtab): Recognize hashed blocks.
5693 * printcmd.c (print_frame_args): Assert that function blocks do not
5694 have hashed symbol tables.
5695 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
5696 (fill_in_ada_prototype, debug_print_block): Likewise.
5697 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
5698
5699 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
5700
5701 * stack.c (print_frame): Use result of frame_address_in_block()
5702 instead of fi->pc when evaluating symbols.
5703 (backtrace_command_1): Ditto.
5704
5705 2002-07-11 Andrew Cagney <cagney@redhat.com>
5706
5707 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
5708 Make static.
5709
5710 * arm-tdep.c (arm_register_name): Make return type constant.
5711
5712 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5713
5714 * win32-nat.c (has_detach_ability): Convert to strict ISO C
5715 prototype.
5716 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
5717 * s390-tdep.c (s390_fp_regnum): Ditto.
5718 (s390_read_fp): Ditto.
5719 (s390_pop_frame): Ditto.
5720 (_initialize_s390_tdep): Ditto.
5721 * remote.c (get_remote_state): Ditto.
5722 * procfs.c (mappingflags): Ditto.
5723 * memattr.c (_initialize_mem): Ditto.
5724 * mcore-tdep.c (mcore_pop_frame): Ditto.
5725 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
5726 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
5727 * language.c (set_case_str): Ditto.
5728 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
5729 * frv-tdep.c (new_variant): Ditto.
5730 (frv_stopped_data_address): Ditto.
5731 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
5732 (context_alloc): Ditto.
5733 (frame_state_alloc): Ditto.
5734 (unwind_tmp_obstack_init): Ditto.
5735 (unwind_tmp_obstack_free): Ditto.
5736 (cfi_read_fp): Ditto.
5737 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
5738 (cris_pop_frame): Ditto.
5739 * c-lang.c (scanning_macro_expansion): Ditto.
5740 (finished_macro_expansion): Ditto.
5741 (c_preprocess_and_parse): Ditto.
5742 * gdbarch.sh: Ditto.
5743 * gdbarch.h, gdbarch.c: Regenerate.
5744 * config/mn10200/tm-mn10200.h: Adjust indentation.
5745 * target.c: Adjust indentation.
5746 * symtab.h: Adjust indentation.
5747 * stabsread.h: Adjust indentation.
5748 * remote-es.c: Adjust indentation.
5749 * os9kread.c: Adjust indentation.
5750
5751 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5752
5753 * wince.c (_initialize_wince): Rename _initialize_inftarg.
5754 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
5755
5756 2002-07-10 Grace Sainsbury <graces@redhat.com>
5757
5758 * NEWS: Mention m68k, mcore multi-arching.
5759 * MAINTAINERS: Change status of m68k, mcore to reflect
5760 multi-arching.
5761
5762 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
5763
5764 * valops.c (find_overload_match): Free oload_syms.
5765
5766 2002-07-09 Joel Brobecker <brobecker@gnat.com>
5767
5768 Define HAVE_SYS_PROC_H if sys/proc.h exists
5769 * configure.in: Add check for sys/proc.h
5770 * config.in: Regenerate.
5771 * configure: Regenerate.
5772
5773 2002-07-09 Grace Sainsbury <graces@redhat.com>
5774
5775 * config/m68k/tm-m68k.h: Remove macros wrapped in
5776 #if !GDB_MULTI_ARCH.
5777
5778 2002-07-08 Andrew Cagney <ac131313@redhat.com>
5779
5780 * config.in, configure: Regenerate.
5781
5782 2002-07-08 Mark Kettenis <kettenis@gnu.org>
5783
5784 * dwarf2cfi.c: Include "gcore.h".
5785 (execute_stack_op): Fix implementation of the
5786 DW_OP_deref and DW_OP_deref_size operators by letting do their
5787 lookup in the target.
5788
5789 2002-07-07 Mark Kettenis <kettenis@gnu.org>
5790
5791 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
5792 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
5793 tdep->sc_sp_offset.
5794
5795 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
5796
5797 Fix PR gdb/595, gdb/602
5798 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
5799 Don't call value_cast, just read the vtable pointer; update comments
5800 to match.
5801
5802 2002-07-05 Grace Sainsbury <graces@redhat.com>
5803
5804 * config/mcore/tm-mcore.h: Remove file.
5805 * config/mcore/mcore.mt: Remove definition of TM_FILE
5806 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
5807
5808 2002-07-05 Mark Kettenis <kettenis@gnu.org>
5809
5810 * i386bsd-tdep.c: Include "gdb_string.h".
5811
5812 2002-07-04 Grace Sainsbury <graces@redhat.com>
5813
5814 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
5815 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
5816 mcore-tdep.
5817 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
5818 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
5819 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
5820 (RETVAL_REGNUM): Move macros from tm-mcore.h
5821 (mcore_reg_struct_has_addr): New function.
5822 (mcore_gdbarch_init): Added initializations for the macros removed
5823 from tm-mcore.h.
5824
5825 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5826
5827 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
5828 traditonal string branding within the ELF header.
5829
5830 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
5831
5832 * symtab.c (remove_params): New function.
5833 (make_symbol_overload_list): Use it instead of cplus_demangle.
5834 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
5835
5836 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5837
5838 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
5839
5840 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
5841 New variables.
5842 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
5843 and tdep->sigtramp_end.
5844 * i386obsd-nat.c: New file.
5845 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
5846
5847 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
5848 Don't call get_current_frame().
5849
5850 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
5851
5852 * i386-nat.c (child_post_startup_inferior): New function
5853 calling i386_cleanup_dregs if
5854 I386_USE_GENERIC_WATCHPOINTS is defined.
5855 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
5856 conditional to acknowledge that i386-nat.c has its
5857 own child_post_startup_inferior function.
5858
5859 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5860
5861 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
5862 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
5863 instead of MAX_REGISTER_RAW_SIZE.
5864 (i386_extract_return_value, i386_extract_struct_value_address):
5865 Convert to use regcache.
5866 (i386_gdbarch_init): Set max_register_raw_size and
5867 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
5868 Set extract_return_value and extract_struct_value_address instead
5869 of their deprecated variants.
5870
5871 Convert i386 target to generic dummy frames.
5872 * i386-tdep.c: Include "symfile.h".
5873 (i386_frameless_signal_p): Consider a function to be frameless if
5874 the pc points at the first instruction of the function.
5875 (i386_frame_chain): Handle (generic) call dummies.
5876 (i386_frame_saved_pc): Likewise.
5877 (i386_frame_init_saved_regs): Remove code dealing with call
5878 dummies on the stack.
5879 (i386_push_dummy_frame): Removed.
5880 (i386_call_dummy_words): Removed.
5881 (i386_fix_call_dummy): Removed.
5882 (i386_push_return_address): New function.
5883 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
5884 parameter, and don't call get_current_frame.
5885 (i386_pop_frame): New function.
5886 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
5887 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
5888 entry_point_address, set call_dummy_breakpoint_offset to 0, set
5889 call_dummy_length to 0, set call_dummy_words to NULL, set
5890 sizeof_call_dummy_words to 0, set fix_call_dummy to
5891 generic_fix_call_dummy, set pc_in_call_dummy to
5892 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
5893 generic_push_dummy_frame, set push_return_address to
5894 i386_push_return_address and set frame_chain_valid to
5895 generic_file_frame_chain_valid.
5896
5897 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5898
5899 * gdbarch.sh (struct regcache): Add opaque declaration.
5900 (EXTRACT_RETURN_VALUE): New architecture method.
5901 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
5902 * gdbarch.h, gdbarch.c: Regenerate.
5903 * arch-utils.c (legacy_extract_return_value): New function.
5904 * arch-utils.h (legacy_extract_return_value): Declare.
5905 * values.c (value_being_returned): Re-enable code handling
5906 EXTRACT_STRUCT_VALUE_ADDRESS. Move
5907 deprecated_grub_regcache_for_registers call to block handling
5908 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5909 (EXTRACT_RETURN_VALUE): Do not define.
5910
5911 2002-07-03 Grace Sainsbury <graces@redhat.com>
5912
5913 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
5914 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
5915 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
5916 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
5917 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
5918 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
5919 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
5920 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
5921 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
5922 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
5923 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
5924 argument so the function fits the prototype in the architecture
5925 vector.
5926 (mcore_pop_frame): Remove argument so the function fits the
5927 prototype. Use get_current_frame instead of the argument.
5928 (mcore_push_arguments): Change type of struct_return so the
5929 function can be used in the architecture vector.
5930 (mcore_store_struct_return): Add.
5931 (mcore_frame_init_saved_regs): Add.
5932 (mcore_gdbarch_init): Add function calls to replace the macros
5933 removed from tm-mcore.h
5934
5935 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5936
5937 * infcmd.c (print_return_value): Remove compatibility code calling
5938 deprecated_grub_regcache_for_registers.
5939
5940 * values.c: Include "regcache.h".
5941 (value_being_returned): Update. Use
5942 deprecated_grub_regcache_for_registers to extract the register
5943 buffer address.
5944 * value.h (value_being_returned): Change ``retbuf'' parameter to a
5945 ``struct regcache''.
5946 * Makefile.in (values.o): Add dependency on $(regcache_h).
5947
5948 * inferior.h (run_stack_dummy): Change type of second parameter to
5949 a ``struct regcache''.
5950 * valops.c (hand_function_call): Change type of retbuf to ``struct
5951 regcache''. Allocate using regcache_xmalloc, clean using
5952 make_cleanup_regcache_xfree.
5953 * infcmd.c (run_stack_dummy): Update. Use
5954 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
5955
5956 * regcache.c (do_regcache_xfree): New function.
5957 (make_cleanup_regcache_xfree): New function.
5958 * regcache.h (make_cleanup_regcache_xfree): Declare.
5959
5960 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5961
5962 * event-top.c (command_line_handler): Don't read past
5963 beginning of buffer.
5964
5965 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5966
5967 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
5968 struct frame_id.
5969 (varobj_create): Store frame_id for root.
5970 (varobj_gen_name): Use xasprintf.
5971 (varobj_update): Save and restore frame using get_frame_id() and
5972 frame_find_by_id().
5973 (create_child): Use xasprintf.
5974 (new_root_variable): Initialize frame_id.
5975 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
5976 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
5977 to prevent memory leak.
5978
5979 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5980
5981 * valops.c (hand_function_call): Move declaration of retbuf to
5982 start of function, allocate using malloc, add a cleanup but before
5983 the inf_status cleanup, cleanup the buffer. Rename local variable
5984 old_chain to inf_status_cleanup.
5985
5986 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5987
5988 * top.c (execute_command): Use cmd_func() and cmd_func_p().
5989
5990 * cli/cli-decode.c (cmd_func_p): New function.
5991 (cmd_func): New function.
5992
5993 * command.h: Add cmd_func() and cmd_func_p().
5994
5995 2002-07-03 Grace Sainsbury <graces@redhat.com>
5996
5997 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
5998 (REGISTER_SIZE): Remove.
5999 (MAX_REGISTER_RAW_SIZE): Remove.
6000 (REGISTER_VIRTUAL_TYPE): Remove.
6001 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
6002 (REGISTER_NAME): Remove.
6003 (USE_GENERIC_DUMMY_FRAMES): Remove.
6004 (CALL_DUMMY): Remove.
6005 (CALL_DUMMY_START_OFFSET): Remove.
6006 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
6007 (CALL_DUMMY_LOCATION): Remove.
6008 (FIX_CALL_DUMMY): Remove.
6009 (CALL_DUMMY_ADDRESS): Remove.
6010 (SIZEOF_CALL_DUMMY_WORDS): Remove.
6011 (SAVE_DUMMY_FRAME_TOS): Remove.
6012 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
6013 (mcore_register_virtual_type): New function.
6014 (mcore_register_byte): New function.
6015 (mcore_register_size): New function.
6016 (mcore_register_name): New function.
6017 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
6018 macros removed from tm-mcore.h.
6019 (mcore_dump_tdep): Add.
6020 (_initialize_mcore_tdep): Add gdbarch_register call.
6021
6022 2002-07-03 Mark Kettenis <kettenis@gnu.org>
6023
6024 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
6025 frameless_look_for_prologue, such that we actually call this
6026 function.
6027
6028 2002-07-02 Joel Brobecker <brobecker@gnat.com>
6029
6030 * frame.h (frame_address_in_block): New function.
6031
6032 * blockframe.c (frame_address_in_block): New function extracted
6033 from get_frame_block().
6034 (get_frame_block): Use frame_address_in_block().
6035 (block_innermost_frame): Use frame_address_in_block() to match
6036 the frame pc address against the block boundaries rather than
6037 the frame pc directly. This prevents a failure when a frame pc
6038 is actually a return-address pointing immediately after the end
6039 of the given block.
6040
6041 2002-07-02 Grace Sainsbury <graces@redhat.com>
6042
6043 * MAINTAINERS: Add self under write after approval.
6044
6045 2002-07-02 Grace Sainsbury <graces@redhat.com>
6046
6047 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
6048 used in architecture vector. The default is
6049 m68k_local_breakpoint_from_pc.
6050 (m68k_local_breakpoint_from_pc): Add.
6051 (enum): Add register numbers from tm-m68k.h.
6052 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
6053 vector.
6054 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
6055 GDB_MULTI_ARCH_PARTIAL.
6056 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
6057 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
6058 m68k-tdep.c.
6059 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
6060 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
6061 to enum in m68k-tdep.c
6062
6063 2002-07-02 Joel Brobecker <brobecker@gnat.com>
6064
6065 * solib-osf.c (open_map): Compute the list of shared libraries
6066 loaded by the inferior, rather than the list of libraries loaded
6067 by GDB itself. Otherwise, GDB ends up reading the symbols from
6068 the wrong shared libraries...
6069
6070 2002-07-02 Mark Kettenis <kettenis@gnu.org>
6071
6072 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
6073 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
6074 macros.
6075 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
6076 Remove functions.
6077 (FRAMELESS_SIGNAL): Remove function.
6078 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
6079 i386_linux_saved_pc_after_call): Removed.
6080 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
6081 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
6082 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
6083
6084 * i386-tdep.c (i386_frameless_signal_p): New function.
6085 (i386_frame_chain): Deal with frameless signals.
6086 (i386_sigtramp_saved_sp): New function.
6087 (i386_frame_saved_pc): Deal with frameless signals.
6088 (i386_saved_pc_after_call): Make sure the correct value is
6089 returned just after entry into a sigtramp.
6090 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
6091 i386fbsd4_sc_sp_offset): New variables.
6092 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
6093 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
6094 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
6095 similiar to what we already did for sc_pc_offset.
6096 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
6097 tdep->sc_sp_offset.
6098
6099 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
6100
6101 2002-07-02 Michal Ludvig <mludvig@suse.cz>
6102
6103 * config/i386/tm-x86-64linux.h: New.
6104 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
6105 definitions.
6106 * config/i386/nm-x86-64.h: Rename to ...
6107 * config/i386/nm-x86-64linux.h: ... this one.
6108 * config/i386/x86-64linux.mh: Reflect the above change.
6109
6110 2002-07-01 Mark Kettenis <kettenis@gnu.org>
6111
6112 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
6113 with sigcontext_addr. Add sc_sp_offset.
6114 (i386bsd_sigtramp_saved_pc): Remove prototype.
6115 (i386bsd_sicontext_addr): Add prototype.
6116 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
6117 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
6118 (i386_svr4_sigtramp_saved_pc): Removed.
6119 (i386_svr4_sigcontext_addr): New function.
6120 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
6121 Initialize tdep->sigcontext_addr instead. Initialize
6122 tdep->sc_pc_offset and tdep->sc_sp_offset.
6123 (i386_gdbarch_init): Likewise.
6124 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
6125 any more.
6126 (i386bsd_sigtramp_saved_pc): Remove function.
6127 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
6128 Initialize tdep->sigcontext_addr instead. Initialize
6129 tdep->sc_pc_offset.
6130 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
6131 of tdep->sigtramp_saved_pc.
6132 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
6133 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
6134 instead.
6135
6136 * i386-tdep.c (i386_frameless_function_invocation,
6137 i386_frame_num_args, i386_frame_init_saved_regs,
6138 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
6139 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
6140 i386_extract_return_value, i386_store_return_value,
6141 i386_extract_struct_value_address, i386_register_virtual_type,
6142 i386_register_convertible, i386_register_convert_to_virtual,
6143 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
6144 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
6145 static.
6146
6147 2002-07-01 Mark Kettenis <kettenis@gnu.org>
6148
6149 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
6150
6151 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
6152 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
6153 this macro. Include "value.h".
6154
6155 2002-06-30 Aidan Skinner <aidan@velvet.net>
6156
6157 * ada-exp.tab.c: remove as it's a generated file
6158 * ada-lex.c: remove as it's a generated file
6159
6160 2002-06-30 Mark Kettenis <kettenis@gnu.org>
6161
6162 * config/i386/tm-i386.h (struct frame_info, struct
6163 frame_saved_regs, struct value, struct type): Remove forward
6164 declarations.
6165
6166 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
6167 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
6168 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
6169 (FILL_FPXREGSET): Define.
6170
6171 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
6172
6173 * configure.tgt (i[3456]86-*-openbsd*): Fold into
6174 i[3456]86-*-netbsd* case.
6175 * config/i386/tm-obsd.h: Removed.
6176 * config/i386/obsd.mt: Removed.
6177 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
6178 core-aout.o.
6179 (MH_CFLAGS): Add -DYYDEBUG=0.
6180
6181 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
6182 i386nbsd_sc_pc_offset on OpenBSD too.
6183
6184 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
6185 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
6186 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
6187 define.
6188 * i386bsd-tdep.c: Include "arch-utils.h".
6189 (i386bsd_aout_in_solib_call_trampoline): New function.
6190 (i386bsd_init_abi): Set in_solib_call_trampoline to
6191 i386bsd_aout_in_solib_call_trampoline.
6192 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
6193 in_solib_call_trampoline to generic_in_solib_call_trampoline.
6194
6195 2002-06-28 Andrew Cagney <ac131313@redhat.com>
6196
6197 * macrotab.h: Do not include "obstack.h" or "bcache.h".
6198 (struct obstack, struct bcache): Add opaque declarations.
6199 * Makefile.in (macrotab_h): Update
6200
6201 2002-06-28 Andrew Cagney <ac131313@redhat.com>
6202
6203 * blockframe.c (generic_find_dummy_frame): Change return type to
6204 ``struct regcache''.
6205 (struct dummy_frame): Replace field ``registers'' with regcache, a
6206 struct regcache object.
6207 (generic_find_dummy_frame): Update.
6208 (generic_push_dummy_frame): Update. Use regcache_xfree,
6209 regcache_xmalloc and regcache_cpy.
6210 (generic_pop_dummy_frame): Update. Use regcache_cpy and
6211 regcache_xfree.
6212 (deprecated_generic_find_dummy_frame): Update.
6213 (generic_read_register_dummy): Update. Use
6214 regcache_read_as_address.
6215 (generic_call_dummy_register_unwind): Update. Use regcache_read.
6216 (generic_get_saved_register): Update. Use regcache_read.
6217
6218 2002-06-28 Andrew Cagney <ac131313@redhat.com>
6219
6220 * Makefile.in (objfiles_h): Add $(bcache_h).
6221 * objfiles.h: Include "bcache.h".
6222
6223 * Makefile.in (symtab_h): Remove $(bcache_h).
6224 * symtab.h: Do not include "bcache.h".
6225
6226 2002-06-28 Andrew Cagney <ac131313@redhat.com>
6227
6228 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
6229 generic_func_frame_chain_valid.
6230
6231 2002-06-28 David O'Brien <obrien@FreeBSD.org>
6232
6233 * config/i386/nm-fbsd.h: Include <sys/param.h>.
6234 * config/i386/tm-fbsd.h: Likewise.
6235
6236 2002-06-28 Andrew Cagney <ac131313@redhat.com>
6237
6238 * rs6000-tdep.c (rs6000_gdbarch_init): Use
6239 generic_unwind_get_saved_register.
6240
6241 2002-06-27 Andrew Cagney <ac131313@redhat.com>
6242
6243 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
6244 * regcache.c (supply_register): Add missing argument to
6245 register_buffer call.
6246
6247 2002-06-27 Andrew Cagney <ac131313@redhat.com>
6248
6249 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
6250 Solaris /bin/grep does not not like it. From Peter Schauer.
6251
6252 2002-06-26 Tom Tromey <tromey@redhat.com>
6253
6254 * command.h (add_setshow_cmd): Declare.
6255 (add_setshow_cmd_full): Declare.
6256 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
6257 returns void. Use add_setshow_cmd_full.
6258 (add_setshow_cmd_full): New function.
6259 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
6260 (add_setshow_boolean_cmd): Likewise.
6261
6262 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
6263
6264 * config/vax/tm-vax.h: Protect from multiple inclusion.
6265 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
6266 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
6267 * config/vax/tm-vaxbsd.h: ...here. New file.
6268 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
6269
6270 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
6271
6272 * config/vax/tm-vax.h (BREAKPOINT): Remove.
6273 (BELIEVE_PCC_PROMOTION): Remove.
6274 (AP_REGNUM): Move to...
6275 * config/vax/nm-vax.h: ...here.
6276 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
6277 (vax_breakpoint_from_pc): New function.
6278 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
6279 and gdbarch_believe_pcc_promotion.
6280
6281 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
6282
6283 * Makefile.in (vax_tdep_h): Define.
6284 (vax-tdep.o): Use $(vax_tdep_h).
6285 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
6286 (vax_dump_tdep): New function.
6287 (_initialize_vax_tdep): Register vax_dump_tdep.
6288 * vax-tdep.h: Include osabi.h.
6289 (struct gdbarch_tdep): New.
6290
6291 2002-06-26 Andrew Cagney <cagney@redhat.com>
6292
6293 * frame.h (deprecated_generic_find_dummy_frame): Rename
6294 generic_find_dummy_frame.
6295 * blockframe.c (generic_find_dummy_frame): Make static.
6296 (deprecated_generic_find_dummy_frame): New function.
6297 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
6298 generic_find_dummy_frame with deprecated_find_dummy_frame.
6299 (sh64_nofp_frame_init_saved_regs): Ditto.
6300 (sh_fp_frame_init_saved_regs): Ditto.
6301 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
6302 (s390_frame_chain): Ditto.
6303 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
6304
6305 2002-06-26 Grace Sainsbury <graces@redhat.com>
6306
6307 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
6308 gdbarch vector are at the top.
6309 (NUM_REGS): Remove.
6310 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
6311 (FRAME_ARGS_ADDRESS): Remove.
6312 (FRAME_LOCALS_ADDRESS): Remove.
6313 (FRAME_NUM_ARGS): Remove.
6314 (FRAME_ARGS_SKIP): Remove.
6315 * m68k-tdep.c (enum): Add eumeration of special register numbers.
6316 (m68k_gdbarch_init): Add gdbarch initializations for macros
6317 undefined in tm-m68k.h
6318
6319 2002-06-26 Grace Sainsbury <graces@redhat.com>
6320
6321 * monitor.h: Add the function regname to monitor_ops
6322 structure. This way NUM_REGS does not have to be a constant.
6323 * monitor.c (monitor_fetch_register): Added support for regname
6324 function. The function is called if the array regnames is NULL.
6325 (monitor_store_register): Same.
6326 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
6327 regnames array.
6328 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
6329 cpu32bug_cmds.regname to point to new function.
6330 * abug-rom.c (abug_regname): Same as above.
6331 (init_abug_cmds): Same.
6332 * dbug-rom.c (dbug_regname): Same as above.
6333 (init_dbug_cmds): Same.
6334 * remote-est.c (est_regname): Same.
6335 (init_est_cmds): Same.
6336 * rom68k-rom.c (rom68k_regname): Same.
6337 (init_rom68k_cmds): Same.
6338
6339 2002-06-25 Tom Tromey <tromey@redhat.com>
6340
6341 * breakpoint.c (delete_command): Don't repeat `delete' commands.
6342
6343 2002-06-25 Andrew Cagney <cagney@redhat.com>
6344
6345 * infrun.c (stop_registers): Change variable's type to ``struct
6346 regcache'''.
6347 (xmalloc_inferior_status): Delete function.
6348 (free_inferior_status): Delete function.
6349 (normal_stop): Use regcache_cpy.
6350 (struct inferior_status): Change type of fields ``stop_registers''
6351 and ``registers'' to ``struct regcache''.
6352 (write_inferior_status_register): Use regcache_write.
6353 (save_inferior_status): Instead of calling
6354 xmalloc_inferior_status, allocate the inf_status buffer directly.
6355 Use regcache_dup_no_passthrough and regcache_dup to save the
6356 buffers.
6357 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
6358 Replace the stop_registers regcache instead of overriding it. Use
6359 regcache_xfree. Instead of calling free_inferior_status, xfree
6360 the buffer directly.
6361 (discard_inferior_status): Use regcache_xfree. Instead of calling
6362 free_inferior_status, xfree the buffer directly.
6363 (build_infrun): Use regcache_xmalloc.
6364 (_initialize_infrun): Delete redundant call to build_infrun.
6365
6366 * Makefile.in (infcmd.o): Add $(regcache_h).
6367
6368 * infcmd.c: Include "regcache.h".
6369 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
6370 obtain the address of `stop_registers' register buffer.
6371 (print_return_value): Ditto.
6372
6373 * inferior.h (struct regcache): Add opaque declaration.
6374 (stop_registers): Change variable's declared type to ``struct
6375 regcache''.
6376
6377 2002-06-24 Tom Tromey <tromey@redhat.com>
6378
6379 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
6380 * target.c (initialize_targets): Fixed typo in
6381 trust-readonly-sections `show' documentation.
6382
6383 * main.c: Marked all strings with _().
6384
6385 2002-06-24 Don Howard <dhoward@redhat.com>
6386
6387 * memattr.c (create_mem_region): Treat hi == 0 as a special case
6388 that means max CORE_ADDR+1.
6389 (lookup_mem_region): Ditto.
6390 (mem_info_command): Ditto.
6391
6392 2002-06-24 Grace Sainsbury <graces@redhat.com>
6393
6394 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
6395 (REGISTER_BYTES_OK): Remove.
6396 (REGISTER_BYTES): Remove.
6397 (STORE_STRUCT_RETURN): Remove.
6398 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
6399 (STORE_RETURN_VALUE): Remove.
6400 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
6401 (FRAME_CHAIN): Remove.
6402 (FRAMELESS_FUNCTION_INVOCATION): Remove.
6403 (FRAME_SAVED_PC): Remove.
6404 * m68k-tdep.c (m68k_register_bytes_ok):Add.
6405 (m68k_store_struct_return): Add.
6406 (m68k_deprecated_extract_return_value): Add.
6407 (m68k_deprecated_extract_struct_value_address): Add.
6408 (m68k_store_return_value): Add.
6409 (m68k_frame_chain): Add.
6410 (m68k_frameless_function_invocation): Add.
6411 (m68k_frame_saved_pc): Add.
6412 (m68k_gdbarch_init): added set_gdbarch calls for new
6413 functions and deleted macros.
6414
6415 2002-06-23 Tom Tromey <tromey@redhat.com>
6416
6417 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
6418 (ALLDEPFILES): Likewise.
6419 (udiheaders): Removed.
6420 (udip2soc.o): Likewise.
6421 (udi2go32.o): Likewise.
6422 (udr.o): Likewise.
6423 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
6424
6425 2002-06-22 Andrew Cagney <ac131313@redhat.com>
6426
6427 * infrun.c (_initialize_infrun): Delete unnecessary call to
6428 build_infrun.
6429
6430 * regcache.h: Update comments describing the regcache_cpy family
6431 of functions.
6432 (regcache_save, regcache_restore): Delete declaration.
6433 (regcache_save_no_passthrough): Delete declaration.
6434 (regcache_restore_no_passthrough): Delete declaration.
6435 * regcache.c (regcache_save): Delete function.
6436 (regcache_save_no_passthrough): Delete function.
6437 (regcache_restore): Delete function.
6438 (regcache_restore_no_passthrough): Delete function.
6439
6440 2002-06-21 Andrew Cagney <ac131313@redhat.com>
6441
6442 * config/m68k/tm-m68k.h: Fix typo.
6443 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
6444 (m68k_frame_init_saved_regs): Declare.
6445
6446 2002-06-21 Jim Blandy <jimb@redhat.com>
6447
6448 Remove some vestiges of Harris 88k support.
6449 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
6450 register numbering quirk.
6451 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
6452 odd symbols occurring in Harris 88k ELF targets.
6453
6454 2002-06-21 Tom Tromey <tromey@redhat.com>
6455
6456 * gdb_locale.h: New file.
6457 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
6458 (defs_h): Added gdb_locale.h.
6459 * configure, config.in: Rebuilt.
6460 * configure.in (PACKAGE): Define.
6461 * defs.h: Include gdb_locale.h.
6462 * main.c (captured_main): Call setlocale, bindtextdomain,
6463 textdomain.
6464
6465 2002-06-21 Dave Brolley <brolley@redhat.com>
6466
6467 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
6468 * config/frv/frv.mt: New file.
6469 * config/frv/tm-frv.h: New file.
6470 * configure.tgt: Support frv-*-*.
6471 * Makefile.in (frv-tdep.o): New target.
6472 * frv-tdep.c: New file.
6473 * NEWS: Mention frv.
6474
6475 2002-06-21 Dave Brolley <brolley@redhat.com>
6476
6477 * MAINTAINERS: Add self to "Write After Approval" list.
6478
6479 2002-06-21 Grace Sainsbury <graces@redhat.com>
6480
6481 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
6482 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
6483 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
6484 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
6485 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
6486
6487 * m68k-tdep.c: Include arch-utils.h
6488 (m68k_register_raw_size): Add.
6489 (m68k_register_virtual_size): Add.
6490 (m68k_register_virtual_type): Add.
6491 (m68k_register_name): Add.
6492 (m68k_stack_align): Add.
6493 (m68k_register_byte): Add.
6494 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
6495 tm-m68k.h.
6496
6497 2002-06-21 Grace Sainsbury <graces@redhat.com>
6498
6499 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
6500 m68k_find_saved_regs.
6501 (m68k_pop_frame): Removed saved_regs structure, and replaced
6502 references to it with frame->saved_regs.
6503 (m68k_gdbarch_init): Added function calls to initialize the
6504 gdbarch structure.
6505 (m68k_fix_call_dummy): Add.
6506 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
6507 (CALL_DUMMY): Remove.
6508 (CALL_DUMMY_LENGTH): Remove.
6509 (CALL_DUMMY_START_OFFSET): Remove.
6510 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
6511 (FIX_CALL_DUMMY): Remove.
6512 (PUSH_DUMMY_FRAME): Remove.
6513 (POP_FRAME): Remove.
6514
6515 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
6516
6517 * parse.c (parse_fprintf): New function used to avoid calls to
6518 fprintf in bison parser generated debug code.
6519 * parser-defs.h: Declaration of new parse_fprintf function.
6520 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
6521 Set YYDEBUG to 1 by default.
6522 Set YYFPRINTF as parse_fprintf.
6523
6524 2002-06-21 Michal Ludvig <mludvig@suse.cz>
6525
6526 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
6527 encoding anymore.
6528 (pointer_encoding, enum ptr_encoding): New.
6529 (execute_cfa_program): Take care about pointer encoding.
6530 (dwarf2_build_frame_info): Only call parse_frame_info for
6531 .debug_frame and .eh_frame.
6532 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
6533 fixed augmentation handling, added relative addressing,
6534 ignore duplicate FDEs. Added comments.
6535 * dwarf2cfi.c: Reindented.
6536
6537 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
6538
6539 * event-top.c (command_handler): Don't use space_at_cmd_start
6540 unless there is sbrk() on the host. Assign time and space data
6541 to union fields of the appropriate length.
6542
6543 2002-06-20 Michal Ludvig <mludvig@suse.cz>
6544
6545 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
6546 x86_64_register_name. Return type changed to 'const char *'.
6547 (x86_64_register_name2nr): Rename to x86_64_register_number.
6548 (x86_64_gdbarch_init): Update to reflect the change.
6549 * x86-64-tdep.h: Ditto.
6550 * x86-64-linux-nat.c (x86_64_fxsave_offset)
6551 (supply_fpregset): Ditto.
6552
6553 2002-06-19 Andrew Cagney <cagney@redhat.com>
6554
6555 * regcache.h: Update copyright.
6556 (struct regcache, struct gdbarch): Add opaque declarations.
6557 (current_regcache): Declare global variable.
6558 (regcache_read, regcache_write): Add gdbarch parameter.
6559 (regcache_save, regcache_save_no_passthrough)
6560 (regcache_restore, regcache_restore_no_passthrough)
6561 (regcache_dup, regcache_dup_no_passthrough)
6562 (regcache_cpy, regcache_cpy_no_passthrough)
6563 (deprecated_grub_regcache_for_registers)
6564 (deprecated_grub_regcache_for_register_valid)
6565 (regcache_valid_p): Add function declarations.
6566
6567 * regcache.c: Update copyright.
6568 (regcache_descr_handle): New global variable.
6569 (struct regcache_descr): Define.
6570 (init_legacy_regcache_descr, init_regcache_descr): New functions.
6571 (regcache_descr, xfree_regcache_descr): New functions.
6572 (struct regcache): Define.
6573 (regcache_xmalloc, regcache_xfree): New functions.
6574 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
6575 (regcache_dup, regcache_dup_no_passthrough): New functions.
6576 (regcache_valid_p, regcache_read_as_address): New functions.
6577 (deprecated_grub_regcache_for_registers): New function.
6578 (deprecated_grub_regcache_for_register_valid): New function.
6579 (current_regcache): New global variable.
6580 (register_buffer): Add regcache parameter. Update calls.
6581 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
6582 (read_register_gen, write_register_gen): Update register_buffer
6583 call. Test for legacy_p instead of gdbarch_register_read_p or
6584 gdbarch_register_write_p.
6585 (regcache_collect): Update register_buffer call.
6586 (build_regcache): Rewrite. Use deprecated grub functions.
6587 (regcache_save, regcache_save_no_passthrough): New functions.
6588 (regcache_restore, regcache_restore_no_passthrough): New
6589 functions.
6590 (_initialize_regcache): Create the regcache_data_handle. Swap
6591 current_regcache global variable.
6592
6593 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
6594 parameter to regcache_read and regcache_write calls.
6595 (sh4_register_read): Ditto.
6596 (sh64_pseudo_register_read): Ditto.
6597 (sh64_register_read): Ditto.
6598 (sh_pseudo_register_write): Ditto.
6599 (sh4_register_write): Ditto.
6600 (sh64_pseudo_register_write): Ditto.
6601 (sh64_register_write): Ditto.
6602
6603 * defs.h (XCALLOC): Define.
6604
6605 2002-06-19 Grace Sainsbury <graces@redhat.com>
6606
6607 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
6608 * m68k-tdep.c (m68k_gdbarch_init): Added.
6609 (m68k_dump_tdep): Added.
6610
6611 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
6612
6613 * ada-lang.c (fill_in_ada_prototype): Update comment.
6614
6615 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
6616
6617 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
6618 MIPS_ABI_LAST.
6619 (mips_abi_string, mips_abi_strings): New.
6620 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
6621 (mips_gdbarch_init): Set tdep->found_abi. Don't set
6622 tdep->mips_abi_string. Honor mips_abi_string. Default to
6623 O32 if no ABI is found.
6624 (mips_dump_tdep): Use mips_abi_strings.
6625 (mips_abi_update): New function.
6626 (_initialize_mips_tdep): Initialize mips_abi_string. Add
6627 ``set mips abi'' and ``show mips abi''. Check the size of
6628 mips_abi_strings.
6629
6630 2002-06-19 Andrew Cagney <cagney@redhat.com>
6631
6632 * i386-linux-tdep.c (i386_linux_register_name): Make return type
6633 constant.
6634
6635 2002-06-18 Joel Brobecker <brobecker@gnat.com>
6636
6637 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
6638 current frame using only the first stack size adjustment. All
6639 subsequent size adjustments are not considered to be part of
6640 the "static" part of the current frame.
6641 Compute the address of the saved registers relative to the
6642 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
6643 in use in this frame.
6644
6645 2002-06-18 Don Howard <dhoward@redhat.com>
6646
6647 * valops.c (value_ind): Use value_at_lazy() when dereferencing
6648 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
6649 suggesting this solution.
6650
6651 2002-06-18 Andrew Cagney <ac131313@redhat.com>
6652
6653 * config/romp/xm-rtbsd.h: Delete file.
6654 * config/romp/rtbsd.mh: Delete file.
6655
6656 2002-06-18 Keith Seitz <keiths@redhat.com>
6657
6658 * breakpoint.c (condition_command): Post breakpoint_modify
6659 when a condition is added to an existing breakpoint.
6660 (commands_command): Likewise for commands.
6661 (set_ignore_count): Likewise for ignore counts.
6662 If no tty, do not simply return, still need to send event
6663 notification.
6664 (ignore_command): Only print a newline if the command came
6665 from a tty.
6666 Don't call breakpoints_changed, since this is now properly
6667 handled by set_ignore_count.
6668
6669 2002-06-18 Andrew Cagney <cagney@redhat.com>
6670
6671 * MAINTAINERS: Note that cris-elf target can be compiled with
6672 -Werror.
6673 * cris-tdep.c (cris_register_name): Make return type constant.
6674 (cris_breakpoint_from_pc): Ditto.
6675
6676 2002-06-18 Michal Ludvig <mludvig@suse.cz>
6677
6678 * frame.h (struct frame_info): Change type of context to
6679 'struct context'.
6680
6681 2002-06-17 Andrew Cagney <cagney@redhat.com>
6682
6683 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
6684 pointer.
6685 * gdbarch.h, gdbarch.c: Regenerate.
6686 * config/mips/tm-mips.h (mips_register_name): Update.
6687 * i386-tdep.h (i386_register_name): Update.
6688 * mips-tdep.c (mips_register_name): Update
6689 * alpha-tdep.c (alpha_register_name): Update.
6690 * arch-utils.c (legacy_register_name): Update.
6691 * arch-utils.h (legacy_register_name): Update.
6692 * avr-tdep.c (avr_register_name): Update.
6693 * ia64-tdep.c (ia64_register_name): Update.
6694 * i386-tdep.c (i386_register_name): Update.
6695 * sparc-tdep.c (sparc32_register_name): Update.
6696 (sparc64_register_name): Update.
6697 (sparclite_register_name): Update.
6698 (sparclet_register_name): Update.
6699 * sh-tdep.c (sh_generic_register_name): Update.
6700 (sh_sh_register_name): Update.
6701 (sh_sh3_register_name): Update.
6702 (sh_sh3e_register_name): Update.
6703 (sh_sh_dsp_register_name): Update.
6704 (sh_sh3_dsp_register_name): Update.
6705 (sh_sh4_register_name): Update.
6706 (sh_sh64_register_name): Update.
6707 * s390-tdep.c (s390_register_name): Update.
6708 * rs6000-tdep.c (rs6000_register_name): Update.
6709 * ns32k-tdep.c (ns32k_register_name_32082): Update.
6710 (ns32k_register_name_32382): Update.
6711 * d10v-tdep.c (d10v_ts2_register_name): Update.
6712 (d10v_ts3_register_name): Update.
6713 * xstormy16-tdep.c (xstormy16_register_name): Update.
6714 * vax-tdep.c (vax_register_name): Update.
6715 * v850-tdep.c (v850_register_name): Update.
6716 * m68hc11-tdep.c (m68hc11_register_name): Update.
6717 * mn10300-tdep.c (mn10300_generic_register_name): Update.
6718 (am33_register_name): Update.
6719
6720 2002-06-17 Grace Sainsbury <graces@redhat.com>
6721
6722 * m68k-tdep.c: Reindented.
6723
6724 2002-06-17 Andrew Cagney <ac131313@redhat.com>
6725
6726 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
6727 list of predefined types.
6728
6729 2002-06-16 Mark Kettenis <kettenis@gnu.org>
6730
6731 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
6732 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
6733 REGISTER_CONVERT_TO_RAW): Remove defines.
6734 (i386_register_virtual_type, i386_register_convertible,
6735 i386_register_convert_to_virtual, i386_register_convert_to_raw):
6736 Remove prototypes.
6737 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6738 macros mentioned above.
6739
6740 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
6741 (i386lynx_saved_pc_after_call): Remove prototype.
6742 * i386ly-tdep.c: Include "i386-tdep.h".
6743 (i386lynx_saved_pc_after_call): Make static. Use
6744 read_memory_nobpt instead of read_memory. Use
6745 read_memory_unsigned_integer instead of read_memory_integer.
6746 (i386lynx_init_abi): New function.
6747 (i386lynx_coff_osabi_sniffer): New function.
6748 (_initialize_i386bsd_tdep): New function.
6749
6750 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
6751 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
6752 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
6753 (i386_fix_call_dummy): Remove prototype.
6754 * i386-tdep.c (i386_call_dummy_words): New variable.
6755 (i386_gdbarch_init): Adjust for removal of the
6756 macros mentioned above.
6757
6758 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6759
6760 * command.h (add_setshow_auto_boolean_cmd): Replace
6761 add_set_auto_boolean_cmd.
6762 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
6763 add_set_auto_boolean_cmd.
6764 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
6765 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
6766 mask-address'' command.
6767 (show_mask_address): Add cmd parameter.
6768 * remote.c (add_packet_config_cmd): Update. Change type of
6769 set_func and show_func to cmd_sfunc_ftype.
6770 (_initialize_remote): Update `set remote Z-packet'
6771 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
6772 (show_remote_protocol_e_packet_cmd): Ditto.
6773 (show_remote_protocol_E_packet_cmd): Ditto.
6774 (show_remote_protocol_P_packet_cmd): Ditto.
6775 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
6776 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
6777 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
6778 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
6779 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
6780 (show_remote_protocol_Z_packet_cmd): Ditto.
6781 (show_remote_protocol_binary_download_cmd): Ditto.
6782 (show_remote_cmd): Pass NULL to all of above.
6783
6784 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6785
6786 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
6787 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
6788 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
6789 POP_FRAME): Remove defines.
6790 (i386_push_arguments, i386_store_struct_return,
6791 i386_extract_return_value, i386_store_return_value,
6792 i386_extract_struct_value_address, i386_push_dummy_frame,
6793 i386_pop_frame): Renove prototypes.
6794 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6795 macros mentioned above.
6796
6797 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6798
6799 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
6800 add_set_boolean_cmd.
6801 (add_setshow_cmd): New function.
6802 * command.h (add_setshow_boolean_cmd): Replace
6803 add_set_boolean_cmd.
6804 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
6805 and ``set rdiromatzero''.
6806 * maint.c (_initialize_maint_cmds): Update commented out code.
6807 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
6808 * target.c (initialize_targets): Update `set
6809 trust-readonly-sections'.
6810 * remote.c (_initialize_remote): Update `set remotebreak'.
6811
6812 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6813
6814 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
6815 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
6816 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
6817 fit into multi-arch framework.
6818 (i386_breakpoint_from_pc): New function.
6819 (i386_gdbarch_init): Adjust for removal of the macros mentioned
6820 above.
6821
6822 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
6823 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
6824 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
6825 (i386_frameless_function_invocation, i386_frame_num_args,
6826 i386_frame_init_saved_regs): Remove prototypes.
6827 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6828 macros mentioned above.
6829
6830 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6831
6832 * cli/cli-decode.c (set_cmd_cfunc): Update.
6833 (set_cmd_sfunc): Update.
6834 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
6835 (set_cmd_sfunc, set_cmd_cfunc): Update.
6836 * cli/cli-decode.h: Update.
6837
6838 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6839
6840 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
6841 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
6842
6843 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6844
6845 * defs.h (auto_boolean): Declare enum.
6846 * command.h (cmd_auto_boolean): Delete enum.
6847 * mips-tdep.c (mask_address_var): Update.
6848 (mips_mask_address_p): Update.
6849 (show_mask_address): Update.
6850 * remote.c (struct packet_config): Update.
6851 (update_packet_config): Update.
6852 (show_packet_config_cmd): Update.
6853 (packet_ok): Update.
6854 (add_packet_config_cmd): Update.
6855 (_initialize_remote):
6856 * command.h: Update.
6857 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
6858 (do_setshow_command): Update.
6859 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
6860 * cli/cli-decode.h: Update.
6861
6862 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6863
6864 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
6865 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
6866 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
6867 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
6868 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
6869 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
6870
6871 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
6872 list of DJGPP COFF targets.
6873
6874 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
6875 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
6876 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
6877 (FP0_REGNUM): Remove define.
6878 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
6879 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
6880 (i386_register_virtual_size): Remove protoype.
6881 * i386-tdep.c (i386_register_virtual_size): Removed.
6882 (i386_extract_return_value, i386_store_return_value): Use
6883 FP0_REGNUM instead of NUM_FREGS to determine whether the
6884 floating-point registers are available.
6885 (i386_gdbarch_init): Tweak FIXME about FPU registers.
6886 Adjust for removal of macros mentioned above.
6887
6888 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6889
6890 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
6891 comments.
6892 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
6893 Remove prototypes.
6894 (supply_gregset, fill_gregset): Remove use of register keyword and
6895 remove declaration for regmap. Use I386_NUM_GREGS instead of
6896 NUM_REGS and NUM_FREGS.
6897 (FPREGSET_FSAVE_OFFSET): Remove.
6898 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
6899 NUM_FREGS to determine whether the floating-point registers are
6900 available.
6901
6902 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
6903 gnu_store_registers): Replace usage of NUM_GREGS with
6904 I386_NUM_GREGS.
6905
6906 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
6907 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
6908 usage of NUM_GREGS with I386_NUM_GREGS.
6909
6910 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
6911
6912 * i386bsd-nat.c: Include "i386-tdep.h".
6913 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
6914 I386_NUM_GREGS.
6915
6916 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
6917 and associated comment. They no longer make any sense, since we
6918 don't use this file anymore on Linux.
6919
6920 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
6921 * i386-tdep.c (i386_register_offset, i386_register_size): Use
6922 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
6923 elements in these arrays.
6924 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
6925 MAX_NUM_REGS.
6926
6927 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6928
6929 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
6930 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
6931
6932 2002-06-14 Andrew Cagney <cagney@redhat.com>
6933
6934 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
6935 EXTRACT_RETURN_VALUE.
6936 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
6937 EXTRACT_STRUCT_VALUE_ADDRESS.
6938 * gdbarch.h, gdbarch.c: Regenerate.
6939
6940 * values.c (value_being_returned): Handle
6941 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
6942 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
6943
6944 * arm-linux-tdep.c (arm_linux_init_abi): Update.
6945 * arm-tdep.c (arm_gdbarch_init): Update.
6946 * avr-tdep.c (avr_gdbarch_init): Update.
6947 * cris-tdep.c (cris_gdbarch_init): Update.
6948 * d10v-tdep.c (d10v_gdbarch_init): Update.
6949 * ia64-tdep.c (ia64_gdbarch_init): Update.
6950 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6951 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6952 * s390-tdep.c (s390_gdbarch_init): Update.
6953 * sh-tdep.c (sh_gdbarch_init): Update.
6954 * s390-tdep.c (s390_gdbarch_init): Update.
6955 * sparc-tdep.c (sparc_gdbarch_init): Update.
6956 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6957 * v850-tdep.c (v850_gdbarch_init): Update.
6958 * vax-tdep.c (vax_gdbarch_init): Update.
6959 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
6960 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6961
6962 * config/arc/tm-arc.h: Update.
6963 * config/d30v/tm-d30v.h: Update.
6964 * config/fr30/tm-fr30.h: Update.
6965 * config/h8300/tm-h8300.h: Update.
6966 * config/h8500/tm-h8500.h: Update.
6967 * config/i386/tm-i386.h: Update.
6968 * config/i386/tm-ptx.h: Update.
6969 * config/i386/tm-symmetry.h: Update.
6970 * config/i960/tm-i960.h: Update.
6971 * config/m32r/tm-m32r.h: Update.
6972 * config/m68k/tm-delta68.h: Update.
6973 * config/m68k/tm-linux.h: Update.
6974 * config/m68k/tm-m68k.h: Update.
6975 * config/m88k/tm-m88k.h: Update.
6976 * config/mcore/tm-mcore.h: Update.
6977 * config/mips/tm-mips.h: Update.
6978 * config/mn10200/tm-mn10200.h: Update.
6979 * config/pa/tm-hppa.h: Update.
6980 * config/pa/tm-hppa64.h: Update.
6981 * config/sparc/tm-sp64.h: Update.
6982 * config/sparc/tm-sparc.h: Update.
6983 * config/sparc/tm-sparclet.h: Update.
6984 * config/z8k/tm-z8k.h: Update.
6985
6986 2002-06-14 Andrew Cagney <cagney@redhat.com>
6987
6988 * Makefile.in (i386_linux_tdep_h): Define.
6989 (i386_tdep_h, i387_tdep_h): Define.
6990 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
6991 $(i386_tdep_h) and $(i387_tdep_h).
6992 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6993
6994 2002-06-14 Mark Kettenis <kettenis@gnu.org>
6995
6996 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
6997 Already covered by the default.
6998
6999 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
7000 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
7001 (i386_gdbarch_init): Initialize long_double_format and long_double
7002 bit.
7003
7004 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
7005 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
7006 Move these to ...
7007 * config/i386/i386sol2.mh: ... here.
7008 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
7009 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
7010 (SIGCONTEXT_PC_OFFSET): Remove define.
7011 (IN_SIGTRAMP): Remove define.
7012 * i386-sol2-tdep.c: New file.
7013
7014 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
7015 * config/i386/tm-i386nw.h: Removed.
7016
7017 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
7018 USE_STRUCT_CONVENTION): Remove defines.
7019 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
7020 (get_longjmp_target): Remove prototype.
7021 (IN_SIGTRAMP): Remove define.
7022 (i386bsd_in_sigtramp): Remove prototype.
7023 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
7024 function. Update comment accordingly
7025 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
7026 (FRAME_SAVED_PC): Remove define.
7027 (i386bsd_frame_saved_pc): Remove prototype.
7028 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
7029 GET_LONGJMP_TARGET): Remove defines.
7030 (get_longjmp_target): Remove prototype.
7031 (IN_SIGTRAMP): Remove define.
7032 (i386bsd_in_sigtramp): Remove prototype.
7033 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
7034 function. Update comment accordingly
7035 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
7036 (FRAME_SAVED_PC): Remove define.
7037 (i386bsd_frame_saved_pc): Remove prototype.
7038 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
7039 Remove prototype.
7040 (USE_STRUCT_CONVENTION): Remove prototype.
7041 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
7042 declaration.
7043 (_initialize_i386bsd_nat): Revise logic to determine some
7044 constants at compile time when compiling a native GDB. Warn if
7045 things don't match up with what we expect.
7046 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
7047 Remove variables.
7048 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
7049 to use date stored in `struct gdbarch_tdep'.
7050 (i386bsd_sigcontext_offset): Remove varaible.
7051 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
7052 stored in `struct gdbarch_tdep'.
7053 (i386bsd_frame_saved_pc): Make static.
7054 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
7055 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
7056 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
7057 i386fbsd4_sc_pc_offset): New variables.
7058 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
7059 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
7060 functions.
7061 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
7062 functions.
7063 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
7064 Modify the value of i386fbsd_sigtramp_start and
7065 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
7066 i386fbsd_sigtramp_end.
7067 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
7068 function.
7069
7070 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
7071 define to i386-linux-tdep.h.
7072 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
7073 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
7074 defines.
7075 (i386_linux_register_name, i386_linux_register_byte,
7076 i386_linux_register_raw_size): Remove prototypes.
7077 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
7078 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
7079 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
7080 TARGET_WRITE_PC): Remove defines.
7081 (i386_linux_in_sigtramp, i386_linux_frame_chain,
7082 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
7083 i386_linux_write_pc): Remove prototypes.
7084 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
7085 (get_longjmp_target): Remove prototype.
7086 * i386-linux-tdep.h: New file.
7087 * i386-linux-nat.c: Include "i386-linux-tdep.h".
7088 * i386-linux-tdep.c: Include "i386-tdep.h" and
7089 "i386-linux-tdep.h".
7090 (i386_linux_register_name, i386_linux_register_byte,
7091 i386_linux_register_raw_size, i386_linux_in_sigtramp,
7092 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
7093 Make static.
7094 (i386_linux_init_abi): New function.
7095 (_initialize_i386_linux_tdep): New function.
7096
7097 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
7098 (i386_saved_pc_after_call): Remove prototype.
7099 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
7100 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
7101 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
7102 (i386_register_name, i386_stab_reg_to_regnum,
7103 i386_dwarf_reg_to_regnum): Remove prototypes.
7104 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
7105 SIZEOF_SSE_REGS): Remove defines.
7106 (REGISTER_BYTES): Remove define.
7107 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
7108 (i386_register_byte, i386_register_raw_size): Remove prototypes.
7109 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
7110 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
7111 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
7112 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
7113 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
7114 (get_longjmp_target): Remove prototype.
7115 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
7116 (sigtramp_saved_pc): Remove define.
7117 (i386v4_sigtramp_saved_pc): Remove prototype.
7118 * config/i386/tm-go32.h (FRAME_CHAIN,
7119 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
7120 (i386go32_frame_saved_pc): Remove prototype.
7121 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
7122 (get_longjmp_target): Remove prototype.
7123 * i386-tdep.h: Include "osabi.h".
7124 (enum i386_abi): Removed.
7125 (enum struct_return): New enum.
7126 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
7127 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
7128 sc_pc_offset members.
7129 (i386_gdbarch_register_os_abi): Remove prototype.
7130 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
7131 I386_SSE_NUM_REGS): New defines.
7132 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
7133 I386_SSE_SIZEOF_REGS): New defines.
7134 (i386_register_name, i386_register_byte, i386_register_raw_size):
7135 New prototypes.
7136 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
7137 (i386bsd_sigtramp_saved_pc): New prototype.
7138 * i386-tdep.c: Don't include "elf-bfd.h".
7139 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
7140 i386_frame_chain, i386_saved_pc_after_call): Make static.
7141 (i386_frame_saved_pc): Rewrite to call architecture dependent
7142 function to deal with signal handlers. Make static.
7143 (i386go32_frame_saved_pc): Removed.
7144 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
7145 Removed.
7146 (i386_get_longjmp_target): New function.
7147 (default_struct_convention, pcc_struct_convention,
7148 reg_struct_convention, valid_conventions, struct_convention): New
7149 variables.
7150 (i386_use_struct_convention): New function.
7151 (i386v4_sigtramp_saved_pc): Renamed to
7152 i386_svr4_sigtramp_saved_pc. Made static. Moved.
7153 (i386_pc_in_sigtramp): New function.
7154 (i386_abi_names): Removed.
7155 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
7156 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
7157 Removed.
7158 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
7159 i386_gdbarch_register_os_abi): Removed.
7160 (struct i386_abi_handler): Removed.
7161 (i386_abi_handler_list): Removed.
7162 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
7163 functions.
7164 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
7165 i386_nw_init_abi): New functions.
7166 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
7167 Use set_gdbarch_xxx() calls instead of relying on macros for a
7168 number of calls.
7169 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
7170 (_initialize_i386_tdep): Add new 'struct-convcention' command.
7171 Register the various architecture variants defined in this file.
7172
7173 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
7174
7175 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
7176 (struct main_type): Remove arg_types member. Update comments for
7177 struct field.
7178 (TYPE_ARG_TYPES): Remove.
7179 (TYPE_FN_FIELD_ARGS): Update.
7180 (smash_to_method_type): Update prototype.
7181
7182 * c-typeprint.c (cp_type_print_method_args): Take method type
7183 instead of argument list. Use new argument layout. Simplify.
7184 (c_type_print_args): Use new argument layout. Simplify.
7185 (c_type_print_base): Update call to cp_type_print_method_args.
7186 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
7187 argument; use die->type instead. Update call to
7188 smash_to_method_type.
7189 (read_structure_scope): Update call to dwarf2_add_member_fn.
7190 * gdbtypes.c (allocate_stub_method): Update comment.
7191 (smash_to_method_type): Take new NARGS and VARARGS arguments.
7192 Use new argument layout.
7193 (check_stub_method): Use new argument layout. Don't count
7194 void as an argument.
7195 (print_arg_types): Update comments. Use new argument layout.
7196 (recursive_dump_type): Don't print arg_types member.
7197 * hpread.c (hpread_read_struct_type): Use new argument layout.
7198 (fixup_class_method_type): Likewise.
7199 (hpread_type_lookup): Likewise.
7200 * stabsread.c (read_type): Update calls to read_args and
7201 smash_to_method_type.
7202 (read_args): Use new argument layout. Simplify.
7203 * valops.c (typecmp): Use new argument layout. Update parameters
7204 and comments. Simplify.
7205 (hand_function_call): Use new argument layout.
7206 (search_struct_method): Update call to typecmp.
7207 (find_overload_match): Use new argument layout.
7208
7209 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
7210
7211 * NEWS: Mention multithreaded debug support for gdbserver.
7212
7213 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
7214
7215 * MAINTAINERS: Mention NEWS.
7216
7217 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
7218
7219 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
7220 (struct mips_objfile_private, compare_pdr_entries): New.
7221 (non_heuristic_proc_desc): Read the ".pdr" section if it
7222 is present.
7223
7224 2002-06-12 Andrew Cagney <ac131313@redhat.com>
7225
7226 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
7227 (arm_debug): New static variable.
7228 (_initialize_arm_tdep): Add ``set debug arm'' command.
7229
7230 2002-06-12 Andrew Cagney <ac131313@redhat.com>
7231
7232 * Makefile.in (sim_arm_h): Define.
7233 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
7234 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
7235 (arm_register_sim_regno): New function, map an internal REGNUM
7236 onto a simulator register number.
7237 (arm_gdbarch_init): Set register_sim_regno.
7238
7239 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
7240
7241 * MAINTAINERS: Add self.
7242
7243 2002-06-11 Jim Blandy <jimb@redhat.com>
7244
7245 * source.c (source_info): Mention whether the symtab has
7246 information about preprocessor macros.
7247
7248 Call the command `info macro', not `show macro'.
7249 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
7250 Fix error message.
7251 (_initialize_macrocmd): Register `info_macro_command' in
7252 `infolist', not `showlist'.
7253
7254 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
7255
7256 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
7257 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
7258 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
7259 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
7260 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
7261 unconditionally.
7262 (set_mipsfpu_single_command, set_mipsfpu_double_command)
7263 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
7264 (_initialize_mips_tdep): Remove dead code.
7265 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
7266 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
7267 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
7268 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
7269 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
7270 MIPS_LAST_FP_ARG_REGNUM): Remove.
7271
7272 2002-06-11 Michal Ludvig <mludvig@suse.cz>
7273
7274 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
7275 (unwind_tmp_obstack_free, parse_frame_info)
7276 (update_context, cfi_read_fp, cfi_write_fp)
7277 (cfi_frame_chain, cfi_init_extra_frame_info)
7278 (cfi_virtual_frame_pointer): Use the above function.
7279 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
7280
7281 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
7282
7283 * v850-tdep.c (v850_type_is_scalar): New function.
7284 (v850_use_struct_convention): Match current gcc implementation
7285 as close as possible.
7286 (v850_push_arguments): Fix stack_offset handling. Don't write
7287 struct_addr into register. This is done by v850_store_struct_return.
7288 (v850_extract_return_value): Care for structs.
7289 (v850_store_return_value): Ditto.
7290 (v850_store_struct_return): Actually write address.
7291
7292 2002-06-11 Michal Ludvig <mludvig@suse.cz>
7293
7294 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
7295 without debug information too.
7296
7297 2002-06-10 Andrew Cagney <ac131313@redhat.com>
7298
7299 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
7300 Make multi-arch pure.
7301 * gdbarch.h, gdbarch.c: Re-generate.
7302 * arm-tdep.c (arm_print_float_info): Update.
7303 * arch-utils.h (default_print_float_info): Update.
7304 * arch-utils.c (default_print_float_info): Update.
7305 * infcmd.c (float_info): Update call.
7306
7307 2002-06-10 Andrew Cagney <ac131313@redhat.com>
7308
7309 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
7310 the front of the initialize list.
7311
7312 2002-06-10 Andrew Cagney <ac131313@redhat.com>
7313
7314 * infrun.c (struct inferior_status): Replace fields
7315 selected_frame_address and selected_level with field
7316 selected_frame_id.
7317 (save_inferior_status): Update. Use get_frame_id.
7318 (struct restore_selected_frame_args): Delete.
7319 (restore_selected_frame): Update. Use frame_find_by_id.
7320 (restore_inferior_status): Update.
7321
7322 * breakpoint.h (struct breakpoint): Change type of
7323 watchpoint_frame to frame_id.
7324 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
7325 call to get_current_frame.
7326 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
7327 get_current_frame.
7328 (watchpoint_check): Use frame_find_by_id.
7329
7330 * frame.h (record_selected_frame): Delete declaration.
7331 * stack.c (record_selected_frame): Delete function.
7332
7333 * frame.h (struct frame_id): Define.
7334 (get_frame_id): Declare.
7335 (frame_find_by_id): Declare.
7336 * frame.c (frame_find_by_id): New function.
7337 (get_frame_id): New function.
7338
7339 2002-06-10 Andrey Volkov <avolkov@transas.com>
7340
7341 * ser-e7kpc.c: Fix duplicated define and call of
7342 _initialize_ser_e7000pc
7343
7344 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
7345
7346 * signals/signals.c (target_signal_from_host): Fix #ifdef
7347 SIGRTMIN case.
7348 (do_target_signal_to_host): Likewise.
7349
7350 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
7351
7352 * mips-tdep.c (mips_find_abi_section): New function.
7353 (mips_gdbarch_init): Call it.
7354
7355 2002-06-09 Mark Kettenis <kettenis@gnu.org>
7356
7357 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
7358 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
7359 after Andrew's 2002-06-08 gdbarch change.
7360
7361 2002-06-09 Mark Kettenis <kettenis@gnu.org>
7362
7363 * i386-linux-nat.c (suppy_gregset): Don't supply
7364 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
7365 register cache.
7366 (fill_gregset): Don't fetch it under the same circumstances.
7367
7368 2002-06-09 Andrew Cagney <cagney@redhat.com>
7369
7370 * Makefile.in (callback_h): Define.
7371 (remote_sim_h): Update path to remote-sim.h.
7372 (remote-rdp.o): Add $(callback_h).
7373 (remote-sim.o): Use $(callback_h).
7374 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
7375 * remote-rdp.c: Include "gdb/callback.h".
7376
7377 2002-06-09 Mark Kettenis <kettenis@gnu.org>
7378
7379 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
7380 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
7381
7382 2002-06-08 Andrew Cagney <ac131313@redhat.com>
7383
7384 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
7385 * rdi-share/serpardr.c: Ditto.
7386 * rdi-share/unixcomm.c: Ditto.
7387 * rdi-share/serdrv.c: Ditto.
7388 * rdi-share/hostchan.h: Ditto.
7389 * rdi-share/hostchan.c: Ditto.
7390 * rdi-share/host.h: Ditto.
7391 * rdi-share/devsw.c: Ditto.
7392
7393 * objfiles.h: Change type of obj_private to void pointer.
7394 * pa64solib.c: Update copyright. Don't include "assert.h", use
7395 strcmp instead of STREQ, use LONGEST, do not use PTR
7396 * somsolib.c: Ditto.
7397
7398 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
7399 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
7400 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
7401
7402 2002-06-08 Andrew Cagney <ac131313@redhat.com>
7403
7404 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
7405 (default_get_saved_register): Delete function.
7406 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
7407 generic_unwind_get_saved_register.
7408 * gdbarch.h, gdbarch.c: Re-generate.
7409
7410 2002-06-08 Andrew Cagney <ac131313@redhat.com>
7411
7412 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
7413 generic_func_frame_chain_valid.
7414 * gdbarch.h, gdbarch.c: Re-generate.
7415 * blockframe.c (generic_func_frame_chain_valid): Only check
7416 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
7417 passing FP to PC_IN_CALL_DUMMY.
7418 Fix PR gdb/360.
7419
7420 2002-06-08 Andrew Cagney <ac131313@redhat.com>
7421
7422 * gdbarch.sh (struct gdbarch_data): Add field init_p.
7423 (register_gdbarch_data): Initialize init_p.
7424 (gdbarch_data): Initialize data pointer using the init function.
7425 (init_gdbarch_data): Delete function.
7426 (gdbarch_update_p): Update.
7427 (initialize_non_multiarch): Update.
7428 (struct gdbarch): Add field initialized_p.
7429 * gdbarch.h, gdbarch.c: Re-generate.
7430
7431 2002-06-07 Michal Ludvig <mludvig@suse.cz>
7432
7433 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
7434 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
7435 better do the things actually here.
7436 * x86-64-tdep.c (x86_64_register_name2nr): New.
7437 (x86_64_register_name): Renamed to x86_64_register_nr2name.
7438 (x86_64_gdbarch_init): Respect the above change.
7439 * x86-64-tdep.h (x86_64_register_name2nr)
7440 (x86_64_register_nr2name): Add prototypes.
7441 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
7442
7443 2002-06-06 Michael Snyder <msnyder@redhat.com>
7444
7445 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
7446 Delete extra braces and re-indent.
7447 (d10v_store_return_value): Char return values
7448 must be shifted over by one byte in R0.
7449 (d10v_extract_return_value): Delete extra braces, re-indent.
7450
7451 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
7452
7453 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
7454 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
7455 (d10v_integer_to_address): Rewrite.
7456 (d10v_frame_init_saved_regs): When reading fp and sp registers use
7457 the d10v specific functions which take care of converting to the
7458 correct space.
7459
7460 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
7461
7462 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
7463 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
7464
7465 2002-06-02 Andrew Cagney <ac131313@redhat.com>
7466
7467 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
7468 includes.
7469 * config/tm-linux.h: Ditto.
7470 * config/alpha/tm-alphalinux.h: Ditto.
7471 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
7472 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
7473 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
7474 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
7475 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
7476 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
7477 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
7478 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
7479 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
7480 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
7481 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
7482 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
7483 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
7484 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
7485 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
7486 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
7487 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
7488 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
7489 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
7490 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
7491 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
7492 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
7493 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
7494 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
7495 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
7496 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
7497 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
7498 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
7499 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
7500 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
7501 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
7502 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
7503 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
7504 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
7505 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
7506 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
7507 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
7508
7509 2002-05-04 Aidan Skinner <aidan@velvet.net>
7510
7511 * ada-exp.tab.c: New file
7512 * ada-exp.y: New file
7513 * ada-lang.c: New file
7514 * ada-lang.h: New file
7515 * ada-lex.c: New file
7516 * ada-lex.l: New file
7517 * ada-tasks.c: New file
7518 * ada-typeprint.c: New file
7519 * ada-valprint.c: New file
7520
7521 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
7522
7523 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
7524 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
7525
7526 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
7527
7528 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
7529 insetead of ppc-linux-tdep.o.
7530 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
7531 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
7532
7533 2002-06-02 Andrew Cagney <ac131313@redhat.com>
7534
7535 2002-05-07 Christian Groessler <chris@groessler.org>
7536 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
7537 bit register contents for little endian hosts.
7538
7539 2002-06-01 Andrew Cagney <ac131313@redhat.com>
7540
7541 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
7542 any maintainer.
7543
7544 2002-06-01 Andrew Cagney <ac131313@redhat.com>
7545
7546 * gdbarch.h: Regenerate.
7547
7548 2002-06-01 Andrew Cagney <ac131313@redhat.com>
7549
7550 * MAINTAINERS: Add everyone to write-after-approval list.
7551
7552 2002-06-01 Andrew Cagney <ac131313@redhat.com>
7553
7554 * stack.c (frame_info): Use frame_register_unwind instead of
7555 saved_regs. Mention when the SP is on the stack or in a register.
7556
7557 * frame.h (frame_register_unwind_ftype): Define. Document.
7558 (struct frame_info): Add field register_unwind and
7559 register_unwind_cache.
7560 (frame_register_unwind): Declare.
7561 (generic_unwind_get_saved_register): Declare.
7562
7563 * frame.c (frame_register_unwind): New function.
7564 (generic_unwind_get_saved_register): New function.
7565
7566 * blockframe.c (generic_call_dummy_register_unwind): New function.
7567 (frame_saved_regs_register_unwind): New function.
7568 (set_unwind_by_pc): New function.
7569 (create_new_frame): New function.
7570 (get_prev_frame): New function.
7571
7572 2002-05-30 Andrew Cagney <ac131313@redhat.com>
7573
7574 * a29k-share/: Delete directory.
7575 * remote-vx29k.c: Delete file.
7576
7577 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7578
7579 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
7580 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
7581
7582 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7583
7584 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
7585 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
7586 (sparc64nbsd-nat.o)
7587 (sparcnbsd-nat.o)
7588 (sparcnbsd-tdep.o): New dependency lists.
7589 * NEWS: Note new UltraSPARC NetBSD native configuration.
7590 * configure.host (sparc64-*-netbsd*): New host.
7591 * configure.tgt (sparc-*-netbsdelf*)
7592 (sparc-*-netbsd*): Set gdb_target to nbsd.
7593 (sparc64-*-netbsd*): New target.
7594 * sparc64nbsd-nat.c: New file.
7595 * sparcnbsd-nat.c: New file.
7596 * sparcnbsd-tdep.c: New file.
7597 * sparcnbsd-tdep.h: New file.
7598 * config/sparc/nbsd.mt: New file.
7599 * config/sparc/nbsd64.mh: New file.
7600 * config/sparc/nbsd64.mt: New file.
7601 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
7602 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
7603 (HOST_IPC): Remove.
7604 * config/sparc/nbsdaout.mt: Remove.
7605 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
7606 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
7607 (HOST_IPC): Remove.
7608 * config/sparc/nbsdelf.mt: Remove.
7609 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
7610 sparc-nat.c compatiblity defines.
7611 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
7612 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
7613 * config/sparc/tm-nbsd64.h: New file.
7614 * config/sparc/tm-nbsdaout.h: Remove.
7615 * config/sparc/xm-nbsd.h: Remove.
7616
7617 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7618
7619 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
7620 * sparc-tdep.c: Include osabi.h.
7621 (gdbarch_tdep): Add osabi member.
7622 (_initialize_sparc_tdep): Use gdbarch_register.
7623 (sparc_gdbarch_init): Use generic OS ABI framework.
7624 (sparc_dump_tdep): New function.
7625
7626 2002-05-30 Kevin Buettner <kevinb@redhat.com>
7627
7628 * corefile.c (do_captured_read_memory_integer): Return non-zero
7629 result.
7630 (safe_read_memory_integer): Copy result of memory read when
7631 status is non-zero. Also, add comments.
7632
7633 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
7634
7635 * Makefile.in (ppc_tdep_h): Define.
7636 (ppc-linux-nat.o)
7637 (ppc-linux-tdep.o)
7638 (rs6000-tdep.o): Use $(ppc_tdep_h).
7639 (ppc-sysv-tdep.o)
7640 (ppcnbsd-nat.o)
7641 (ppcnbsd-tdep.o): New dependency lists.
7642 * ppc-tdep.h: Use generic OS ABI framework.
7643 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
7644 (ppc_linux_init_abi): New functions.
7645 (ppc_sysv_abi_broken_use_struct_convention)
7646 (ppc_sysv_abi_use_struct_convention)
7647 (ppc_sysv_abi_push_arguments): Move to...
7648 * ppc-sysv-tdep.c: ...here.
7649 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
7650 * rs6000-tdep.c (process_note_abi_tag_sections)
7651 (get_elfosabi): Remove.
7652 (rs6000_gdbarch_init): Use generic OS ABI framework.
7653 (rs6000_dump_tdep): New function.
7654 (_initialize_rs6000_tdep): Use gdbarch_register.
7655 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
7656 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7657 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
7658 of ppc-linux-tdep.o.
7659 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
7660 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
7661 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
7662 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
7663 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
7664 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
7665
7666 2002-05-29 Jim Blandy <jimb@redhat.com>
7667
7668 * macroscope.c (default_macro_scope): Put `void' in empty argument
7669 list.
7670
7671 2002-05-29 Andrew Cagney <ac131313@redhat.com>
7672
7673 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
7674 * arch-utils.c: Include "sim-regno.h".
7675 * gdbarch.sh: Don't include "sim-regno.h".
7676 * gdbarch.h, gdbarch.c: Regenerate.
7677 * sim-regno.h (legacy_register_sim_regno): Move declaration from
7678 here.
7679 * arch-utils.h (legacy_register_sim_regno): To here.
7680 * remote-sim.c (legacy_register_sim_regno): Move function from
7681 here.
7682 * arch-utils.c (legacy_register_sim_regno): To here.
7683
7684 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7685
7686 * sim-regno.h: New file.
7687 * Makefile.in (sim_regno_h): Define.
7688 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
7689 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
7690 (legacy_register_sim_regno): New function.
7691 (one2one_register_sim_regno): New function.
7692 (gdbsim_fetch_register): Rewrite.
7693 (gdbsim_store_register): Only store a register when
7694 REGISTER_SIM_REGNO is valid.
7695 * d10v-tdep.c: Include "sim-regno.h".
7696 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
7697 (d10v_ts3_register_sim_regno): Ditto.
7698 * gdbarch.sh: Include "sim-regno.h".
7699 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
7700 * gdbarch.h, gdbarch.c: Regenerate.
7701 * arch-utils.h (default_register_sim_regno): Delete declaration.
7702 * arch-utils.c (default_register_sim_regno): Delete function.
7703
7704 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
7705
7706 * ppcnbsd-nat.c: Rewrite.
7707 * ppcnbsd-tdep.c: New file.
7708 * ppcnbsd-tdep.h: New file.
7709 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
7710 solib.o, and solib-svr4.o.
7711 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
7712 nbsd-tdep.o, and corelow.o.
7713
7714 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7715
7716 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
7717 `tr' and `sed'. Mention that `broken' targets are not expected to
7718 build.
7719
7720 2002-05-27 Michal Ludvig <mludvig@suse.cz>
7721
7722 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
7723 Let PC point right after the prologue before looking up symbols.
7724
7725 2002-05-27 Martin M. Hunt <hunt@redhat.com>
7726
7727 * i386-tdep.c (i386_register_virtual_type): Return
7728 builtin_type_vec128i for SSE registers.
7729
7730 * gdbtypes.h (builtin_type_vec128i): Declare.
7731
7732 * gdbtypes.c (build_builtin_type_vec128i): New function.
7733 (builtin_type_v2_double, builtin_type_v4_int64): New types.
7734 (builtin_type_vec128i): New type for SSE2 128-bit registers.
7735 (build_gdbtypes): Initialize new builtin vector types.
7736 (_initialize_gdbtypes): Register new vector types with gdbarch.
7737
7738 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7739
7740 * MAINTAINERS: ns32k is not longer an obsolete candidate,
7741 since it has been multi-arch'd.
7742 * NEWS: Note that ns32k-*-* is now partial multi-arch.
7743 Move Alpha and VAX multi-arch news entries to same section
7744 as other multi-arch news.
7745
7746 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7747
7748 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
7749 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
7750 static. Rename some register numbers to put them in ns32k-tdep
7751 private namespace.
7752 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
7753 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
7754 functions.
7755 (_initialize_ns32k_tdep): Use gdbarch_register.
7756 * ns32k-tdep.h: New file.
7757 * ns32knbsd-tdep.c: New file.
7758 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
7759 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
7760 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
7761 REGISTER_BYTES, REGISTER_BYTE): Remove.
7762 * config/ns32k/tm-ns32k.h: New file.
7763 * config/ns32k/tm-umax.h: Remove.
7764
7765 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7766
7767 * ns32k-tdep.c (ns32k_saved_pc_after_call,
7768 ns32k_store_struct_return, ns32k_extract_return_value,
7769 ns32k_store_return_value, ns32k_extract_struct_value_address): New
7770 functions.
7771 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
7772 ns32k_saved_pc_after_call.
7773 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
7774 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
7775 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
7776 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
7777 ns32k_extract_struct_value_address.
7778
7779 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7780
7781 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
7782 ns32k_fix_call_dummy): New.
7783 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
7784 ns32k_call_dummy_words.
7785 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
7786 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
7787 CALL_DUMMY_NARGS): Remove.
7788 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
7789
7790 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7791
7792 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
7793 ns32k_frame_saved_pc, ns32k_frame_args_address,
7794 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
7795 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
7796 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
7797 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
7798 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
7799 (BREAKPOINT): Remove..
7800 (FRAME_CHAIN): Define as ns32k_frame_chain.
7801 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
7802 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
7803 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
7804 (FRAME_FIND_SAVED_REGS): Remove.
7805 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
7806 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
7807 (POP_FRAME): Define as ns32k_pop_frame.
7808
7809 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7810
7811 * ns32k-tdep.c (ns32k_register_byte_32082,
7812 ns32k_register_byte_32382, ns32k_register_raw_size,
7813 ns32k_register_virtual_size, ns32k_register_virtual_type): New
7814 functions.
7815 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
7816 ns32k_register_byte_32382.
7817 * config/ns32k/tm-umax.h: Update copyright years.
7818 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
7819 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
7820 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
7821 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
7822 (ns32k_get_enter_addr): Fix prototype.
7823
7824 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7825
7826 * ns32k-tdep.c: Update copyright years.
7827 (ns32k_register_name_32082): New function.
7828 (ns32k_register_name_32382): Ditto.
7829 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
7830 (REGISTER_NAME): Define as ns32k_register_name_32382.
7831 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
7832 (REGISTER_NAME): Define as ns32k_register_name_32082.
7833
7834 2002-05-24 Jim Blandy <jimb@redhat.com>
7835
7836 * dwarf2read.c (free_line_header): Use xfree, not free.
7837
7838 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
7839
7840 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
7841 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
7842
7843 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7844
7845 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
7846
7847 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7848
7849 From Ross Alexander at NEC Europe:
7850 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
7851
7852 2002-05-23 Michael Snyder <msnyder@redhat.com>
7853
7854 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
7855 for input, rather than parse_and_eval_address.
7856
7857 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7858
7859 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
7860 * Makefile.in (sim_d10v_h): Update definition.
7861
7862 2002-05-24 Andrew Cagney <cagney@redhat.com>
7863
7864 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
7865 change `2002-05-22 Michael Snyder' below.
7866 (d10v_push_arguments): Ditto.
7867 (d10v_extract_return_value): Ditto.
7868
7869 2002-05-23 Jim Blandy <jimb@redhat.com>
7870
7871 * macrotab.c (check_for_redefinition): Don't complain if the new
7872 definition is the same as the previous one. Take more arguments
7873 to allow the comparison.
7874 (macro_define_object, macro_define_function): Pass more arguments
7875 to check_for_redefinition.
7876
7877 2002-05-22 Michael Snyder <msnyder@redhat.com>
7878
7879 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
7880 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
7881 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
7882 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
7883 Don't bail if return_pc is PC_IN_CALL_DUMMY.
7884 Add a temp variable to save a call (and a memory read).
7885 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
7886 if possible (so that PC_IN_CALL_DUMMY will work).
7887
7888 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
7889
7890 * MAINTAINERS: Remove status `OBSOLETE' from v850.
7891
7892 2002-05-22 Michal Ludvig <mludvig@suse.cz>
7893
7894 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
7895 fde->cie_ptr.
7896 (dwarf2_build_frame_info): Corrected handling of eh_frame.
7897 (dwarf2_build_frame_info): Add offset to fde->initial_location
7898 so that frames of shared libraries are mapped correctly.
7899 (execute_stack_op): Change type of 'result' from ULONGEST to
7900 CORE_ADDR.
7901
7902 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7903
7904 * config/alpha/tm-nbsd.h: Include solib.h.
7905
7906 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7907
7908 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
7909 assumptions about the host's byte order.
7910
7911 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7912
7913 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
7914 to dependency list.
7915 * alphanbsd-tdep.c: Include solib-svr4.h.
7916 * shnbsd-tdep.c: Ditto.
7917
7918 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7919
7920 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
7921 nbsd-tdep.h to dependency list.
7922 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
7923 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
7924 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
7925 nbsdaout.mh and nbsdelf.mh consistently.
7926 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
7927 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
7928 nbsdaout.mt and nbsdelf.mh consistently.
7929 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
7930 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
7931 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7932 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
7933 a.out shared library stuff from here...
7934 * config/nm-nbsdaout.h: ...to here.
7935 * config/tm-nbsd.h: Remove.
7936 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
7937 * config/arm/nbsd.mh: Remove.
7938 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
7939 nbsd-tdep.o.
7940 * config/arm/nbsdaout.mh: New file.
7941 * config/arm/nbsdelf.mh: New file.
7942 * config/arm/nm-nbsdaout.h: New file.
7943 * config/i386/nbsd.mh: Remove.
7944 * config/i386/nbsd.mt: Remove.
7945 * config/i386/nbsdaout.mh: New file.
7946 * config/i386/nbsdaout.mt: New file.
7947 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7948 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
7949 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
7950 i386_register_u_addr): Remove.
7951 * config/i386/nm-nbsdaout.h: New file.
7952 * config/i386/nm-nbsdelf.h: Remove.
7953 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
7954 (USE_STRUCT_CONVENTION): Remove.
7955 * config/i386/tm-nbsdaout.h: New file.
7956 * config/i386/tm-nbsdelf.h: Remove.
7957 * config/m68k/nbsd.mh: Remove.
7958 * config/m68k/nbsd.mt: Remove.
7959 * config/m68k/nbsdaout.mh: New file.
7960 * config/m68k/nbsdaout.mt: New file.
7961 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
7962 * config/m68k/nm-nbsdaout.h: New file.
7963 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7964 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7965 * config/ns32k/nbsd.mh: Remove.
7966 * config/ns32k/nbsd.mt: Remove.
7967 * config/ns32k/nbsdaout.mh: New file.
7968 * config/ns32k/nbsdaout.mt: New file.
7969 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
7970 * config/ns32k/nm-nbsdaout.h: New file.
7971 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7972 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7973 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
7974 (SVR4_SHARED_LIBS): Remove.
7975 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
7976 * config/sparc/nbsd.mh: Remove.
7977 * config/sparc/nbsd.mt: Remove.
7978 * config/sparc/nbsdaout.mh: New file.
7979 * config/sparc/nbsdaout.mt: New file.
7980 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7981 * config/sparc/nbsdelf.mt: New file.
7982 * config/sparc/nm-nbsdaout.h: New file.
7983 * config/sparc/nm-nbsdelf.h: Remove.
7984 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
7985 * config/sparc/tm-nbsdaout.h: New file.
7986
7987 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7988
7989 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
7990 mipsnbsd-tdep.c
7991 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
7992
7993 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7994
7995 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
7996 shnbsd-nat.c.
7997 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
7998
7999 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
8000
8001 * NEWS: Note new MIPS NetBSD native configuration.
8002 * configure.host (mips*-*-netbsd*): New host.
8003 * configure.tgt (mips*-*-netbsd*): New target.
8004 * mipsnbsd-nat.c: New file.
8005 * mipsnbsd-tdep.c: New file.
8006 * mipsnbsd-tdep.h: New file.
8007 * config/mips/nbsd.mh: New file.
8008 * config/mips/nbsd.mt: New file.
8009 * config/mips/nm-nbsd.h: New file.
8010 * config/mips/tm-nbsd.h: New file.
8011
8012 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
8013
8014 * Makefile.in (SFILES): Add osabi.c.
8015 (COMMON_OBS): Add osabi.o.
8016 (osabi.o): New dependency list.
8017 * osabi.c: New file.
8018 * osabi.h: New file.
8019 * doc/gdbint.texinfo: Document new generic OS ABI framework.
8020
8021 * Makefile.in (alpha_tdep_h): Define and use instead of
8022 alpha-tdep.h.
8023 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
8024 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
8025 Remove.
8026 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
8027 * alpha-tdep.h: Include osabi.h.
8028 (alpha_abi): Remove.
8029 (gdbarch_tdep): Use generic OS ABI framework.
8030 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
8031 gdbarch_register_osabi.
8032 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
8033 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
8034 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
8035
8036 * Makefile.in (sh_tdep_h): Add osabi.h.
8037 * sh-tdep.h (sh_osabi): Remove.
8038 (gdbarch_tdep): Use generic OS ABI framework.
8039 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
8040 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
8041 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
8042 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
8043
8044 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
8045 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
8046 gdbarch_register_osabi.
8047 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
8048 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
8049 (get_elfosabi): Rename to...
8050 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
8051 ABI framework support routines.
8052 (arm_gdbarch_init): Use generic OS ABI framework.
8053 (arm_dump_tdep): Likewise.
8054 (_initialize_arm_tdep): Likewise.
8055 * arm-tdep.h: Include osabi.h.
8056 (arm_abi): Remove.
8057 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
8058 osabi member.
8059 (arm_gdbarch_register_os_abi): Remove prototype.
8060 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
8061 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
8062
8063 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
8064 * mips-tdep.c: Include osabi.h.
8065 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
8066 OS ABI framework.
8067
8068 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
8069
8070 * h8300-tdep.c: Fix formatting.
8071
8072 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
8073
8074 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
8075 printing vector registers.
8076
8077 2002-05-19 Andrew Cagney <ac131313@redhat.com>
8078
8079 From Fernando Nasser:
8080 * remote.c (remote_async_open_1): Re-throw the exception when the
8081 connection fails.
8082 (remote_cisco_open): Ditto.
8083 (remote_open_1): Ditto.
8084
8085 2002-05-19 Andrew Cagney <ac131313@redhat.com>
8086
8087 * remote.c (remote_start_remote_dummy): Add uiout parameter.
8088 (remote_start_remote): Add uiout parameter. Pass through to
8089 remote_start_remote_dummy.
8090 (remote_open_1): Use catch_exception instead of catch_errors.
8091 (remote_async_open_1): Ditto.
8092 (remote_cisco_open): Ditto.
8093
8094 2002-05-19 Andrew Cagney <ac131313@redhat.com>
8095
8096 * remote.c (remote_start_remote): Replace PTR with void pointer.
8097 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
8098 static.
8099
8100 2002-05-18 Andrew Cagney <ac131313@redhat.com>
8101
8102 * gdb_indent.sh: Allow the script to be run in the sim directory.
8103
8104 2002-05-18 Mark Kettenis <kettenis@gnu.org>
8105
8106 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
8107 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
8108
8109 * corelow.c (core_open): Only call set_gdbarch_from_file if
8110 exec_bfd is NULL.
8111
8112 2002-05-17 Andrey Volkov <avolkov@transas.com>
8113
8114 * h8300-tdep.c: Add support of EXR register
8115 * config/h8300/tm-h8300.h: Ditto.
8116
8117 2002-05-17 Andrey Volkov <avolkov@transas.com>
8118
8119 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
8120
8121 2002-05-17 Andrey Volkov <avolkov@transas.com>
8122
8123 * h8300-tdep.c: Change literal regnums to REGNO.
8124
8125 2002-05-17 Jim Blandy <jimb@redhat.com>
8126
8127 * NEWS: Note addition of macro support.
8128
8129 Expand preprocessor macros in C expressions.
8130 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
8131 (scan_macro_expansion, scanning_macro_expansion,
8132 finished_macro_expansion): New function declarations.
8133 (expression_macro_lookup_func, expression_macro_lookup_baton): New
8134 variable declarations.
8135 * parser-defs.h (expression_context_pc): New declaration.
8136 * parse.c (expression_context_pc): New variable.
8137 (parse_exp_1): Set expression_context_pc, as well as
8138 expression_context_block.
8139 * c-exp.y (yylex): If we're not already reading the result of a
8140 macro expansion, try to macro-expand the next token. When we're
8141 done scanning a macro expansion, switch back to the mainline text.
8142 Commas and `if's in a macro's expansion don't terminate the input.
8143 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
8144 (macro_original_text, macro_expanded_text,
8145 expression_macro_lookup_func, expression_macro_lookup_baton): New
8146 variables.
8147 (scan_macro_expansion, scanning_macro_expansion,
8148 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
8149 c_preprocess_and_parse): New functions.
8150 (c_language_defn, cplus_language_defn, asm_language_defn): Call
8151 c_preprocess_and_parse, instead of c_parse.
8152 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
8153 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
8154
8155 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
8156
8157 * sh-tdep.c (gdb_print_insn_sh64): Delete.
8158 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
8159 (sh_gdbarch_init): Always use gdb_print_insn_sh.
8160
8161 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
8162
8163 * NEWS: Add section for multi-arched targets. Add v850 to that section.
8164
8165 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
8166
8167 * Makefile.in (sh_tdep_h): Define and use.
8168 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
8169 register enum): Move to...
8170 * * sh-tdep.h: ...here.
8171 * sh-tdep.c: Include sh-tdep.h.
8172 * sh3-rom.c: Likewise.
8173 * shnbsd-tdep.c: Likewise.
8174
8175 2002-05-16 Michael Snyder <msnyder@redhat.com>
8176
8177 * arm-tdep.c: Spelling fix in comment.
8178
8179 2002-05-16 Jim Blandy <jimb@redhat.com>
8180
8181 Add commands for manually expanding macros and showing their
8182 definitions.
8183 * macrocmd.c, macroscope.c, macroscope.h: New files.
8184 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
8185 (macroscope_h): New variable.
8186 (HFILES_NO_SRCDIR): Add macroscope.h.
8187 (COMMON_OBS): Add macrocmd.o, macroscope.o.
8188 (macroscope.o, macrocmd.o): New rules.
8189
8190 Teach the Dwarf 2 reader to read macro information.
8191 * dwarf2read.c: #include "macrotab.h".
8192 (dwarf_macinfo_buffer): New variable.
8193 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
8194 dwarf_macinfo_size.
8195 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
8196 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
8197 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
8198 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
8199 dwarf2_macro_spaces_in_definition): New complaints.
8200 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
8201 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
8202 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
8203 the partial symbol table.
8204 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
8205 from what's recorded in the partial symbol table.
8206 (read_file_scope): If the compilation unit has a
8207 `DW_AT_macro_info' attribute, read its macro information.
8208 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
8209
8210 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
8211
8212 Fix PR gdb/546
8213 * ser-tcp.c: Don't include <netinet/udp.h>.
8214
8215 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
8216
8217 * MAINTAINERS: Update my email address.
8218
8219 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
8220
8221 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
8222 include file of the same name.
8223
8224 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
8225
8226 * configure.tgt: Mark v850 as multi-arched.
8227 * config/v850/tm-v850.h: Remove file.
8228 * config/v850/v850.mt: Eliminate TM_FILE.
8229
8230 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
8231
8232 * v850-tdep.c: Full multi-arch.
8233 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
8234 Define GDB_MULTI_ARCH to 2.
8235
8236 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
8237
8238 * p-exp.y (current_type): New static variable.
8239 Carries the type of the expression at the position that is parsed.
8240 (push_current_type, pop_current_type): Two new functions. Used
8241 to store/restore current_type in expression on specific tokens.
8242 (search_field): New static variable. Set to one after parsing a point
8243 as at that point only a FIELDNAME token should be searched.
8244 (FIELDNAME): New token. After a point only a token belonging to
8245 current_type type definition is allowed.
8246 (all over token rules): reset and change current_type according
8247 to rules.
8248 (exp '[' rule): insert implicit array index field if
8249 exp is a pascal string type.
8250
8251 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
8252
8253 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
8254 frame info. Use frame_info's saved_regs instead of matching member
8255 in extra_frame_info throughout.
8256 (v850_frame_init_saved_regs): New function.
8257 (v850_init_extra_frame_info): Move most functionality into
8258 v850_frame_init_saved_regs().
8259 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
8260 (v850_frame_find_saved_regs): Remove declaration.
8261 (FRAME_FIND_SAVED_REGS): Remove definition.
8262 (v850_frame_init_saved_regs): Add declaration.
8263 (FRAME_INIT_SAVED_REGS): Add definition.
8264
8265 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
8266
8267 * v850-tdep.c: Begin multi-arch'ing v850.
8268 (v850_target_architecture_hook): Remove function.
8269 (v850_gdbarch_init): New function. Add code previously in
8270 v850_target_architecture_hook().
8271 (_initialize_v850_tdep): Don't set target_architecture_hook.
8272 Call register_gdbarch_init() instead.
8273
8274 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
8275
8276 * gdbtypes.h (struct cplus_struct_type): Remove args field.
8277 * hpread.c (hpread_read_struct_type): Remove assignments to args.
8278 (fixup_class_method_type): Likewise.
8279
8280 2002-05-15 Jim Blandy <jimb@redhat.com>
8281
8282 Add macro structures to GDB's symbol tables. Nobody puts anything
8283 in them yet.
8284 * symtab.h (struct symtab): New member: `macro_table'.
8285 * buildsym.h (pending_macros): New global variable.
8286 * buildsym.c: #include "macrotab.h".
8287 (buildsym_init): Initialize `pending_macros'.
8288 (end_symtab): If we found macro information while reading a CU's
8289 debugging info, do build a symtab structure for it. Make the
8290 symtab point to the macro information, and clear the
8291 `pending_macros' pointer which held it while we were reading the
8292 debug info.
8293 (really_free_pendings): Free any pending macro table.
8294 * objfiles.h (struct objfile): New member: `macro_cache'.
8295 * objfiles.c (allocate_objfile): Set allocate and free functions
8296 for the macro cache's objstack.
8297 (free_objfile): Empty the macro cache's obstack.
8298 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
8299 set new allocate and free functions for it.
8300 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
8301 free functions for the macro cache's objstack. (Why is this
8302 function building its own objfile?)
8303 * symmisc.c (print_objfile_statistics): Print statistics on the
8304 macro bcache.
8305 * Makefile.in: Note that buildsym.o depends on macrotab.h.
8306
8307 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
8308
8309 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
8310 (REGISTER_U_ADDR): Delete definition.
8311 (arm_register_u_addr): Delete declaration.
8312
8313 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
8314
8315 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
8316 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
8317
8318 2002-05-14 Andrew Cagney <ac131313@redhat.com>
8319
8320 * regcache.c (register_valid): Revise comments refering to "Not
8321 available" and "unavailable".
8322 * frame.c (frame_register_read): Ditto.
8323 * findvar.c (value_of_register): Ditto.
8324
8325 2002-05-15 Andrew Cagney <cagney@redhat.com>
8326
8327 * Makefile.in (remote_sim_h): Replace remote-sim_h.
8328 (remote-sim.o): Update dependencies.
8329 (d10v-tdep.o): Specify dependencies.
8330 (sim_d10v_h): Define.
8331
8332 2002-05-14 Jim Blandy <jimb@redhat.com>
8333
8334 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
8335 * macrotab.c (macro_lookup_inclusion, find_definition,
8336 new_macro_table): Same.
8337
8338 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
8339 not `! strcmp ()'. This is a dubious improvement.
8340 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
8341
8342 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
8343 although it's not necessary, to avoid a warning.
8344
8345 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
8346
8347 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
8348 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
8349 TYPE_INSTANCE_FLAGS.
8350 (struct main_type): New.
8351 (struct type): Move most members to struct main_type. Change
8352 cv_type and as_type to new type_chain member. Add instance_flags.
8353 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
8354 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
8355 (finish_cv_type): Remove prototype.
8356 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
8357 Set TYPE_CHAIN.
8358 (alloc_type_instance): New function.
8359 (smash_type): New function.
8360 (make_pointer_type, make_reference_type, make_function_type)
8361 (smash_to_member_type, smash_to_method_type): Call smash_type.
8362 (make_qualified_type): New function.
8363 (make_type_with_address_space): Call make_qualified_type.
8364 (make_cv_type): Likewise.
8365 (finish_cv_type): Remove unnecessary function.
8366 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
8367 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
8368 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
8369 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
8370 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
8371 * hpread.c (hpread_read_struct_type): Likewise.
8372 * stabsread.c (read_struct_type): Likewise.
8373
8374 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
8375
8376 * configure.tgt: Add a catch all sh* target, for cases like
8377 sh[2,3,4]-elf and sh-hms.
8378
8379 2002-05-14 Keith Seitz <keiths@redhat.com>
8380
8381 * event-loop.c (create_file_handler): Don't do anything but
8382 update data when we are given a fd which we are already
8383 monitoring.
8384
8385 2002-05-14 Michal Ludvig <mludvig@suse.cz>
8386
8387 * dwarf2cfi.c (context_cpy): Copy registers correctly.
8388 (update_context): Use __func__ in warnings.
8389
8390 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
8391
8392 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
8393 and tcp_close to net_open and net_close.
8394 (net_open): Accept "udp:" and "tcp:" specifications. Connect
8395 using UDP if requested. Don't try to disable Nagle on UDP
8396 sockets.
8397 * remote.c (remote_serial_open): New function. Warn about UDP.
8398 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
8399
8400 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
8401
8402 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
8403
8404 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
8405
8406 * configure.tgt: Remove sh-hms target.
8407 * MAINTAINERS: Don't list sh-hms as a separate target.
8408
8409 2002-05-13 Jim Blandy <jimb@redhat.com>
8410
8411 Add first preprocessor macro-expansion files.
8412 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
8413 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
8414 (splay_tree_h, macroexp_h, macrotab_h): New variable.
8415 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
8416 (COMMON_OBS): Add macrotab.o, macroexp.o.
8417 (macroexp.o, macrotab.o): New rules.
8418
8419 2002-05-13 Andrew Cagney <ac131313@redhat.com>
8420
8421 * config/m88k/tm-m88k.h: Update copyright.
8422 (m88k_target_write_pc): Declare
8423 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
8424 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
8425 (SHIFT_INST_REGS): Update definition.
8426 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
8427 using old definition of TARGET_WRITE_PC.
8428 * regcache.c (generic_target_write_pc): Delete code handling
8429 NNPC_REGNUM.
8430 * gdbarch.sh (NNPC_REGNUM): Delete.
8431 * gdbarch.h, gdbarch.c: Regenerate.
8432
8433 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
8434
8435 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
8436 builtin reg number.
8437
8438 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
8439
8440 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
8441 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
8442 (gen_address_of, gen_struct_ref, gen_repeat): Use type
8443 access macros.
8444 * c-typeprint.c (cp_type_print_method_args): Likewise.
8445 (c_type_print_args): Likewise.
8446 * d10v-tdep.c (d10v_push_arguments): Likewise.
8447 (d10v_extract_return_value): Likewise.
8448 * expprint.c (print_subexp): Likewise.
8449 * gdbtypes.c (lookup_primitive_typename): Likewise.
8450 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
8451 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
8452 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
8453 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
8454 (TYPE_VECTOR): Likewise.
8455 * hpread.c (hpread_read_struct_type)
8456 (fix_static_member_physnames, fixup_class_method_type)
8457 (hpread_type_lookup): Likewise.
8458 * mdebugread.c (parse_symbol, parse_type): Likewise.
8459 * p-lang.c (is_pascal_string_type): Likewise.
8460 * valops.c (hand_function_call): Likewise.
8461 * x86-64-tdep.c (classify_argument): Likewise.
8462
8463 * hpread.c (hpread_read_function_type)
8464 (hpread_read_doc_function_type): Call replace_type.
8465 * dstread.c (create_new_type): Delete.
8466 (decode_dst_structure, process_dst_function): Call alloc_type.
8467 Use type access macros.
8468
8469 2002-05-12 Mark Kettenis <kettenis@gnu.org>
8470
8471 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
8472 the're not supported by the current architecture.
8473 (i387_fill_fxsave): Likewise.
8474
8475 2002-05-12 Fred Fish <fnf@redhat.com>
8476
8477 * symfile.c (default_symfile_offsets): Arrange for uninitialized
8478 sect_index_xxx members to index the first slot in section_offsets
8479 if all of the section_offsets are zero.
8480
8481 2002-05-12 Mark Kettenis <kettenis@gnu.org>
8482
8483 * configure.tgt (sparc-*openbsd): Remove entry accidentially
8484 checked in with last change.
8485
8486 2002-05-12 Mark Kettenis <kettenis@gnu.org>
8487
8488 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
8489 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
8490 config.sub.
8491
8492 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
8493
8494 * Makefile.in: Update dependencies.
8495
8496 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8497
8498 * language.c (local_hex_string_custom): Simplify. Do not depend
8499 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
8500
8501 * memattr.c (mem_info_command): Replace calls to
8502 longest_local_hex_string and longest_local_hex_string_custom.
8503 * buildsym.c (make_blockvector): Ditto.
8504 * solib.c (info_sharedlibrary_command): Ditto.
8505 * tracepoint.c (tracepoints_info): Ditto.
8506 * symtab.c (print_msymbol_info): Ditto.
8507
8508 * language.c (local_hex_string): Delete.
8509 (local_hex_string_custom): Delete.
8510 (longest_local_hex_string): Rename to local_hex_string.
8511 (longest_local_hex_string_custom): Rename to
8512 local_hex_string_custom.
8513 * language.h (local_hex_string): Change parameter type to LONGEST.
8514 (local_hex_string_custom): Ditto.
8515 (longest_local_hex_string): Delete declaration.
8516 (longest_local_hex_string_custom): Ditto.
8517
8518 * solib.c: Update copyright.
8519 * memattr.c: Update copyright.
8520
8521 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8522
8523 * arch-utils.h (legacy_register_to_value): Declare.
8524 (legacy_value_to_register): Declare.
8525 (legacy_convert_register_p): Declare.
8526 * arch-utils.c (legacy_register_to_value): New function.
8527 (legacy_value_to_register): New function.
8528 (legacy_convert_register_p): New function.
8529
8530 * gdbarch.sh (REGISTER_TO_VALUE): Define.
8531 (VALUE_TO_REGISTER): Define.
8532 (CONVERT_REGISTER_P): Define.
8533 * gdbarch.h, gdbarch.c: Regenerate.
8534
8535 * valops.c (value_assign): Use CONVERT_REGISTER_P and
8536 VALUE_TO_REGISTER.
8537 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
8538 CONVERT_REGISTER_P.
8539
8540 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
8541 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8542
8543 * Makefile.in: Update dependencies for valops.c.
8544 * valops.c: Include "gdb_assert.h".
8545 (typecmp): Skip THIS parameter to methods.
8546 (find_method_list): Remove static_memfuncp argument,
8547 update callers. Check for stub methods.
8548 (find_value_oload_method_list): Don't set *static_memfuncp.
8549 (find_overload_match): Don't check for stub methods. Assert
8550 that methods are not stubbed. Handle static methods.
8551 (value_find_oload_method_list): Remove static_memfuncp argument.
8552 * gdbtypes.c (check_stub_method): Do not add THIS pointer
8553 to the argument list for static stub methods.
8554 * value.h (value_find_oload_method_list): Update prototype.
8555
8556 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8557
8558 * arch-utils.h (generic_register_size): Declare.
8559 (generic_register_raw_size, generic_register_virtual_size): Delete
8560 declarations.
8561 * arch-utils.c (generic_register_raw_size): Delete.
8562 (generic_register_size): New function.
8563 (generic_register_virtual_size): Delete.
8564
8565 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
8566 default generic_register_size.
8567 * gdbarch.h, gdbarch.c: Re-generate.
8568
8569 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
8570 register_virtual_size.
8571 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
8572 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
8573
8574 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8575
8576 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
8577 * gdbarch.h, gdbarch.c: Regenerate.
8578 * gnu-v3-abi.c: Update copyright.
8579 (vtable_address_point_offset): Update.
8580 (gnuv3_rtti_type): Update.
8581 (gnuv3_baseclass_offset): Update.
8582 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
8583 (init_fetch_link_map_offsets): Update.
8584 * remote.c (get_remote_state): Update.
8585
8586 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
8587
8588 * TODO: Remove value_headof/value_from_vtable_info comment.
8589 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
8590 * values.c (value_headof, value_from_vtable_info): Delete.
8591 * value.h (value_from_vtable_info): Delete prototype.
8592
8593 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8594
8595 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
8596 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
8597 $(gdb_regex_h).
8598 (gdb_assert_h): Define.
8599 (gdb_wait_h): Define.
8600 (gdb_regex_h): Define.
8601
8602 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
8603
8604 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
8605 * linespec.c (find_methods): Handle GCC 3.x template constructors.
8606
8607 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8608
8609 * nbsd-tdep.c: Fix comment.
8610
8611 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8612
8613 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
8614 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
8615 (nbsd-tdep.o): New dependency list.
8616 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
8617 nbsd-tdep.h.
8618 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
8619 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
8620 * nbsd-tdep.c: New file.
8621 * nbsd-tdep.h: New file.
8622 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
8623 nbsd-tdep.h.
8624 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
8625 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
8626 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
8627 * config/sh/nbsd.mt (TDEPFILES): Ditto.
8628
8629 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8630
8631 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
8632 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
8633 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
8634 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
8635 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
8636 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
8637
8638 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8639
8640 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
8641 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8642 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
8643 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
8644 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
8645 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
8646 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
8647
8648 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8649
8650 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
8651 fetch_elfcore_registers to...
8652 * i386nbsd-tdep.c: ...here.
8653 (i386nbsd_use_struct_convention): Rename to...
8654 (i386nbsd_aout_use_struct_convention): ...this.
8655 (i386nbsd_supply_reg): New function.
8656 (i386nbsd_fill_reg): New function.
8657 (fetch_core_registers): Use i386nbsd_supply_reg.
8658 (fetch_elfcore_registers): Likewise.
8659 (_initialize_i386nbsd_tdep): New function.
8660 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
8661 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8662 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
8663 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
8664 (i386nbsd_aout_use_struct_convention): ...this.
8665
8666 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8667
8668 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
8669 (store_inferior_registers): Use shnbsd_fill_reg.
8670 * shnbsd-tdep.c (sh_nbsd_supply_registers,
8671 sh_nbsd_supply_register): Collapse into...
8672 (shnbsd_supply_reg): ...this.
8673 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
8674 (shnbsd_fill_reg): ...this.
8675 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
8676 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
8677 (fetch_core_registers): Use shnbsd_supply_reg.
8678 (fetch_elfcore_registers): Use shnbsd_supply_reg.
8679 (sh_nbsd_core_fns): Rename to...
8680 (shnbsd_core_fns): ...this.
8681 (sh_nbsd_elfcore_fns): Rename to...
8682 (shnbsd_elfcore_fns): ...this.
8683 (sh_nbsd_init_abi): Rename to...
8684 (shnbsd_init_abi): ...this.
8685 (_initialize_sh_nbsd_tdep): Rename to...
8686 (_initialize_shnbsd_tdep): ...this.
8687 * shnbsd-tdep.h (sh_nbsd_supply_registers,
8688 sh_nbsd_supply_register, sh_nbsd_fill_registers,
8689 sh_nbsd_fill_register): Remove prototypes.
8690 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
8691
8692 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8693
8694 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
8695 (i387-nat.o): Delete dependency list.
8696 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
8697 (x86-64-linux-nat.o): Likewise.
8698 * i387-nat.c: Delete file, moving contents to...
8699 * i387-tdep.c: ...here.
8700 * i387-nat.h: Rename...
8701 * i387-tdep.h: ...to this.
8702 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
8703 * i386-linux-nat.c: Likewise.
8704 * i386bsd-nat.c: Likewise.
8705 * i386gnu-nat.c: Likewise.
8706 * i386nbsd-nat.c: Likewise.
8707 * i386v4-nat.c: Likewise.
8708 * x86-64-linux-nat.c: Likewise.
8709 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
8710 * config/i386/go32.mh (NATDEPFILES): Likewise.
8711 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
8712 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
8713 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
8714 * config/i386/linux.mh (NATDEPFILES): Likewise.
8715 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
8716 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8717 * config/i386/obsd.mh (NATDEPFILES): Likewise.
8718 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
8719
8720 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8721
8722 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
8723 (alphanbsd-nat.o): Remove dependency list.
8724 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
8725 * alphanbsd-nat.c: Delete. Contents moved to...
8726 * alphanbsd-tdep.c: ...here.
8727 (_initialize_alphanbsd_tdep): Register core functions.
8728 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
8729
8730 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8731
8732 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
8733 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
8734 (alphanbsd-nat.o): Likewise.
8735 (alphabsd-tdep.o): New dependency list.
8736 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
8737 (fill_gregset): Use alphabsd_fill_reg.
8738 (supply_fpregset): Use alphabsd_supply_fpreg.
8739 (fill_fpregset): Use alphabsd_fill_fpreg.
8740 (fetch_inferior_registers): Use struct reg and struct fpreg
8741 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
8742 and alphabsd_supply_fpreg.
8743 (store_inferior_registers): Use struct reg and struct fpreg
8744 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
8745 and alphabsd_fill_fpreg.
8746 * alphabsd-tdep.c: New file.
8747 * alphabsd-tdep.h: New file.
8748 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
8749 (fetch_elfcore_registers): Use alphabsd_supply_reg and
8750 alphabsd_supply_fpreg.
8751 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
8752 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
8753
8754 2002-05-11 Eric Christopher <echristo@redhat.com>
8755
8756 * mips-tdep.c (mips_double_register_type): Fix thinko.
8757 (mips_single_register_type): Ditto.
8758 * MAINTAINERS: Add self.
8759
8760 2002-05-11 Mark Kettenis <kettenis@gnu.org>
8761
8762 * i387-nat.c (i387_supply_register, i387_fill_fsave,
8763 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
8764 right thing on architectures with different endianness and/or
8765 integer sizes.
8766
8767 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
8768
8769 From Christian Limpach <chris@Pin.LU>
8770 * configure.in: Change sed expression which comments out
8771 NATDEPFILES to also comment out continuation lines.
8772 * configure: Regenerate.
8773
8774 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8775
8776 * sh-tdep.c: Clean up code erroneously reintroduced by previous
8777 big patch.
8778
8779 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8780
8781 * sh-tdep.c: Include correct file.
8782
8783 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8784
8785 New support for sh64-elf (sh5) target.
8786
8787 * configure.tgt: For sh64-elf target, default to sh-elf.
8788
8789 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
8790 (struct gdbarch_tdep): Add new fields for new registers and ABI
8791 info.
8792
8793 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
8794 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
8795 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
8796 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
8797 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
8798 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
8799 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
8800 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
8801 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
8802 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
8803 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
8804 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
8805 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
8806 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
8807 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
8808 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
8809 sh64_get_gdb_regnum, sh64_media_reg_base_num,
8810 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
8811 sign_extend, sh64_nofp_frame_init_saved_regs,
8812 sh64_init_extra_frame_info, sh64_get_saved_register,
8813 sh64_extract_struct_value_address, sh64_pop_frame,
8814 sh64_push_arguments, sh64_extract_return_value,
8815 sh64_store_return_value, sh64_show_media_regs,
8816 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
8817 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
8818 sh_sh64_register_virtual_type,
8819 sh_sh64_register_convert_to_virtual,
8820 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
8821 sh64_register_read, sh64_pseudo_register_write,
8822 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
8823 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
8824 sh64_do_pseudo_register, sh_compact_do_registers_info,
8825 sh64_do_registers_info, sh_gdbarch_init): New functions.
8826
8827 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8828
8829 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
8830
8831 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
8832
8833 * linespec.c (decode_line_1): Check for a double quote after
8834 a filename correctly.
8835
8836 2002-05-10 Jim Blandy <jimb@redhat.com>
8837
8838 Properly track the size of the current objfile's .debug_line section.
8839 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
8840 (DWARF_LINE_SIZE): New macro.
8841 (dwarf2_build_psymtabs_hard): Record the line section's size in
8842 the partial symbol table.
8843 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
8844 symbol table.
8845
8846 2002-05-10 Petr Sorfa <petrs@caldera.com>
8847
8848 * ia64-tdep.c: Handle breakpoints on L instruction type
8849 in MLX instruction bundle by moving the breakpoint to
8850 the third slot (X instruction type) as L holds only data.
8851
8852 2002-05-10 Kevin Buettner <kevinb@redhat.com>
8853
8854 * dbxread.c (discarding_local_symbols_complaint): New complaint.
8855 (process_one_symbol): Complain about discarding local symbols
8856 due to a misplaced N_LBRAC entry.
8857
8858 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
8859
8860 From Daniel Berlin <dan@cgsoftware.com>
8861 * linespec.c (find_toplevel_char): '<' and '>' also increase and
8862 decrease the depth we are at, in the case of templates.
8863
8864 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8865
8866 * mips-tdep.c (mips_float_register_type): New function.
8867 (mips_double_register_type): New function.
8868 (mips_print_register): Use them.
8869 (do_fp_register_row): Likewise.
8870
8871 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8872
8873 * signals/signals.c (signals): Remove conditional compilation around
8874 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
8875 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
8876
8877 2002-05-09 Michael Snyder <msnyder@redhat.com>
8878
8879 * remote-rdp.c (remote_rdp_can_run): Remove.
8880
8881 2002-05-09 Tom Tromey <tromey@redhat.com>
8882
8883 * jv-valprint.c (java_val_print): Handle `char' as a special case
8884 of TYPE_CODE_INT.
8885
8886 2002-05-09 Michael Snyder <msnyder@redhat.com>
8887
8888 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
8889 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
8890 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
8891 str r(0123),[sp,#nn].
8892 (arm_skip_prologue): Ditto. Also make disassembly
8893 order-independent by placing it in a loop.
8894
8895 2002-05-06 Michael Snyder <msnyder@redhat.com>
8896
8897 * stabsread.c (read_type): Add recognition for new attribute:
8898 "@V;" means that an array type is actually a vector.
8899 This is analogous to the vector flag that's been added to dwarf2.
8900
8901 2002-05-09 Mark Kettenis <kettenis@gnu.org>
8902
8903 * i386-tdep.h (i386_abi): New enum.
8904 (struct gdbarch_tdep): Replace os_ident member with abi.
8905 (i386_gdbarch_register_os_abi): New prototype.
8906 * i386-tdep.c (i386_abi_names): New array.
8907 (process_note_abi_tag_sections): Removed.
8908 (process_note_sections): New function.
8909 (i386_elf_abi_from_note, i386_elf_abi): New functions.
8910 (struct i386_abi_handler): New struct.
8911 (i386_abi_handler_list): New variable.
8912 (i386_gdbarch_register_os_abi): New function.
8913 (i386_gdbarch_init): Adapt for the changes given above.
8914
8915 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
8916
8917 * gregset.h: Say "GNU/Linux".
8918
8919 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
8920
8921 * gdbtypes.c : Add new builtin type for 64 bit vectors.
8922 (build_gdbtypes): Build builtin_type_v2_float.
8923 (_initialize_gdbtypes): Register new builtin type.
8924
8925 2002-05-08 Andrew Cagney <ac131313@redhat.com>
8926
8927 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
8928 (clear_gdbarch_swap): New function.
8929 (initialize_non_multiarch): Call.
8930 (gdbarch_update_p): Before calling init(), swap out and clear the
8931 existing architecture.
8932 * gdbarch.c: Regenerate.
8933
8934 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8935
8936 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
8937 alphanbsd-tdep.c.
8938
8939 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8940
8941 * sh-nbsd-nat.c: Rename to...
8942 * shnbsd-nat.c: ...this.
8943 * sh-nbsd-tdep.c: Rename to...
8944 * shnbsd-tdep.c: ...this.
8945 * sh-nbsd-tdep.h: Rename to...
8946 * shnbsd-tdep.h: ...this.
8947 * config/sh/nbsd.mh: Use shnbsd-nat.o.
8948 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
8949
8950 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
8951
8952 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
8953 concatenation for command help messages.
8954
8955 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8956
8957 * NEWS: Note new sh*-*-netbsdelf* configuration.
8958 * configure.host: Set gdb_host_cpu to sh for all sh*.
8959 (sh*-*-netbsdelf*): New host.
8960 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
8961 (sh*-*-netbsdelf*): New target.
8962 * sh-nbsd-nat.c: New file.
8963 * sh-nbsd-tdep.c: New file.
8964 * sh-nbsd-tdep.h: New file.
8965 * config/sh/nbsd.mh: New file.
8966 * config/sh/nbsd.mt: New file.
8967 * config/sh/nm-nbsd.h: New file.
8968 * config/sh/tm-nbsd.h: New file.
8969
8970 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8971
8972 * sh-tdep.c (sh_osabi_names): Declare.
8973 (process_note_abi_tag_sections): New function.
8974 (get_elfosabi): Ditto.
8975 (sh_gdbarch_register_os_abi): Ditto.
8976 (sh_dump_tdep): Ditto.
8977 _initialize_sh_tdep): Use gdbarch_register to register
8978 sh_gdbarch_init and sh_dump_tdep.
8979 * config/sh/tm-sh.h (sh_osabi): Declare.
8980 (gdbarch_tdep): Add sh_osabi and osabi_name members.
8981
8982 2002-05-07 Andrew Cagney <ac131313@redhat.com>
8983
8984 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
8985 (thumb_scan_prologue): Ditto.
8986 (arm_find_callers_reg): Ditto.
8987 (arm_frame_chain): Ditto.
8988 (arm_init_extra_frame_info): Ditto.
8989 (arm_frame_saved_pc): Ditto.
8990 (arm_pop_frame): Ditto.
8991 (arm_push_return_address): New function.
8992 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
8993 call_dummy_location, call_dummy_breakpoint_offset_p,
8994 call_dummy_breakpoint_offset, call_dummy_p,
8995 call_dummy_stack_adjust_p, call_dummy_words,
8996 sizeof_call_dummy_words, call_dummy_start_offset,
8997 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
8998 call_dummy_address, push_return_address and push_dummy_frame for
8999 generic dummy frames.
9000
9001 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
9002
9003 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
9004 size computation for alloca.
9005 (sh_fp_frame_init_saved_regs): Likewise.
9006
9007 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
9008
9009 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
9010 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
9011 * arm-tdep.c (arm_store_return_value): Use them.
9012 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
9013 * remote-rdp.c (remote_rdp_fetch_register): Use
9014 ARM_MAX_REGISTER_RAW_SIZE.
9015 (remote_rdp_store_register): Likewise.
9016
9017 2002-05-07 Michal Ludvig <mludvig@suse.cz>
9018
9019 * dwarf2cfi.c: Code cleanup, removed unused variables,
9020 added default labels to switch {} statements.
9021 * x86-64-tdep.c: Ditto.
9022 * x86-64-linux-nat.c: Ditto.
9023
9024 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
9025
9026 * solib.h: Protect against multiple inclusion.
9027
9028 2002-05-06 Jim Blandy <jimb@redhat.com>
9029
9030 Add first preprocessor macro-expansion files.
9031 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
9032 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
9033 (splay_tree_h, macroexp_h, macrotab_h): New variable.
9034 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
9035 (COMMON_OBS): Add macrotab.o, macroexp.o.
9036 (macroexp.o, macrotab.o): New rules.
9037
9038 Separate the job of reading the line number info statement program
9039 header (...expialidocious) out into its own function.
9040 * dwarf2read.c (struct line_head, struct filenames, struct
9041 directories): Replace with...
9042 (struct line_header): New structure, containing the full
9043 contents of the statement program header, including the
9044 include directory and file name tables.
9045 (read_file_scope): If we have line number info, instead of just
9046 calling dwarf_decode_lines to do all the work, call
9047 dwarf_decode_line_header first to get a `struct line_header'
9048 containing the data in the statement program header, and then
9049 pass that to dwarf_decode_lines, which will pick up where that
9050 left off. Be sure to clean up the `struct line_header' object.
9051 (dwarf_decode_line_header, free_line_header, add_include_dir,
9052 add_file_name): New functions.
9053 (dwarf_decode_lines): Move all the code to read the statement
9054 program header into dwarf_decode_line_header. Take the line
9055 header it built as the first argument, instead of the offset to
9056 the compilation unit's line number info. Use the new `struct
9057 line_header' type instead of the old structures. No need to do
9058 cleanups here now, since we don't allocate anything.
9059 (dwarf2_statement_list_fits_in_line_number_section,
9060 dwarf2_line_header_too_long): New complaints.
9061
9062 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
9063
9064 * gdbtypes.c (init_vector_type): New function.
9065 (build_builtin_type_vec128): Simplify the representation of SIMD
9066 registers.
9067 (build_gdbtypes): Initialize new builtin vector types.
9068 (_initialize_gdbtypes): Register new vector types with gdbarch.
9069 (builtin_type_v4_float, builtin_type_v4_int32,
9070 builtin_type_v8_int16, builtin_type_v16_int8,
9071 builtin_type_v2_int32, builtin_type_v4_int16,
9072 builtin_type_v8_int8): New (renamed) SIMD types.
9073
9074 2002-05-06 Mark Kettenis <kettenis@gnu.org>
9075
9076 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
9077 (i387_fill_fxsave): Likewise.
9078
9079 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
9080
9081 * alpha-tdep.c (alpha_extract_return_value): Don't use
9082 non-constant array size in prototype.
9083
9084 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9085
9086 From Brian Taylor <briant at model dot com>:
9087 * ui-out.c (ui_out_field_core_addr): Use the function
9088 longest_local_hex_string_custom'to format addresses > 32 bits
9089 wide.
9090
9091 * ui-out.c (ui_out_field_core_addr): Update comment.
9092
9093 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9094
9095 * stack.c (select_and_print_frame): Make static. Delete the
9096 parameter `level'.
9097 (func_command): Update call.
9098 (select_frame_command): Delete code computing the frame level.
9099 * frame.h (select_and_print_frame): Delete declaration.
9100
9101 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9102
9103 * sparc-tdep.c (sparc_get_saved_register): Comment why
9104 get_prev_frame call is safe.
9105
9106 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9107
9108 * frame.h (select_frame): Delete level parameter.
9109 * stack.c (select_frame): Update. Use frame_relative_level to
9110 obtain the frame's level.
9111 (select_and_print_frame): Update call.
9112 (select_frame_command): Ditto.
9113 (up_silently_base): Ditto.
9114 (down_silently_base): Ditto.
9115 * ocd.c (ocd_start_remote): Ditto.
9116 * remote-rdp.c (remote_rdp_open): Ditto.
9117 * remote-mips.c (mips_initialize): Ditto.
9118 (common_open): Ditto.
9119 * remote-e7000.c (e7000_start_remote): Ditto.
9120 * m3-nat.c (select_thread): Ditto.
9121 * hppa-tdep.c (child_get_current_exception_event): Ditto.
9122 (child_get_current_exception_event): Ditto.
9123 * varobj.c (varobj_create): Ditto.
9124 (varobj_update): Ditto.
9125 (c_value_of_root): Ditto.
9126 * tracepoint.c (finish_tfind_command): Ditto.
9127 * corelow.c (core_open): Ditto.
9128 * arch-utils.c (generic_prepare_to_proceed): Ditto.
9129 * thread.c (info_threads_command): Ditto.
9130 (switch_to_thread): Ditto.
9131 * infrun.c (normal_stop): Ditto.
9132 (restore_selected_frame): Ditto.
9133 (restore_inferior_status): Ditto.
9134 * breakpoint.c (insert_breakpoints): Ditto.
9135 (watchpoint_check): Ditto.
9136 (bpstat_stop_status): Ditto.
9137 (do_enable_breakpoint): Ditto.
9138 * blockframe.c (flush_cached_frames): Ditto.
9139 (reinit_frame_cache): Ditto.
9140
9141 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9142
9143 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
9144 maintainer.
9145
9146 2002-05-04 Jim Blandy <jimb@redhat.com>
9147
9148 * gdbtypes.c (replace_type): Doc fix.
9149
9150 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9151
9152 * valprint.c (strcat_longest): Delete commented out function.
9153 Update copyright.
9154
9155 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9156
9157 * MAINTAINERS: Mark a29k as deleted.
9158 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
9159 Move new configurations to the top.
9160 * configure.tgt: Remove a29k.
9161 * config/a29k/tm-vx29k.h: Delete.
9162 * config/a29k/vx29k.mt: Delete.
9163 * config/a29k/tm-a29k.h: Delete.
9164 * config/a29k/a29k-udi.mt: Delete.
9165 * config/a29k/a29k.mt: Delete.
9166 * a29k-tdep.c: Delete.
9167 * remote-udi.c: Delete.
9168 * remote-mm.c: Delete.
9169 * remote-eb.c: Delete.
9170 * remote-adapt.c: Delete.
9171 * Makefile.in: Remove obsolete code.
9172 * config/s390/s390x.mt: Ditto.
9173 * config/s390/s390.mt: Ditto.
9174 * config/sparc/sparclynx.mh: Ditto.
9175 * config/sparc/linux.mh: Ditto.
9176 * config/pa/hppaosf.mh: Ditto.
9177 * config/pa/hppabsd.mh: Ditto.
9178 * config/ns32k/nbsd.mt: Ditto.
9179 * config/mips/vr5000.mt: Ditto.
9180 * config/m68k/sun3os4.mh: Ditto.
9181 * config/m68k/nbsd.mt: Ditto.
9182 * config/m68k/m68klynx.mh: Ditto.
9183 * config/m32r/m32r.mt: Ditto.
9184 * config/i386/x86-64linux.mt: Ditto.
9185 * config/i386/nbsdelf.mt: Ditto.
9186 * config/i386/nbsd.mt: Ditto.
9187 * config/i386/i386lynx.mh: Ditto.
9188
9189 2002-05-04 Andrew Cagney <ac131313@redhat.com>
9190
9191 * target.c (debug_print_register): New function. Handle oversize
9192 registers.
9193 (debug_to_fetch_registers): Call.
9194 (debug_to_store_registers): Call.
9195
9196 2002-05-03 Jim Blandy <jimb@redhat.com>
9197
9198 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
9199 (read_type): Doc fix.
9200 * gdbtypes.c (replace_type): Doc fix.
9201
9202 * stabsread.c (multiply_defined_struct): New complaint.
9203 (read_struct_type): If the type we were passed isn't empty, or
9204 incomplete, don't read the new struct type into it; complain,
9205 and return the original type unchanged. Take a new `type_code'
9206 argument, which is the type code for the new type.
9207 (read_type): Rather than storing the type's type code here, pass
9208 it as an argument to read_struct_type, and let that take care of
9209 storing it. That way, we don't overwrite the original type code,
9210 so read_struct_type can use it to decide whether we're overwriting
9211 something we shouldn't.
9212 (complain_about_struct_wipeout): New function.
9213
9214 2002-05-03 Andrew Cagney <ac131313@redhat.com>
9215
9216 * gdbarch.sh: Assert that gdbarch is non-NULL.
9217 * gdbarch.c: Regenerate.
9218
9219 2002-05-03 Jason Merrill <jason@redhat.com>
9220
9221 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
9222 and return NULL.
9223
9224 2002-05-03 Michal Ludvig <mludvig@suse.cz>
9225
9226 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
9227 (x86_64_dwarf2gdb_regno_map_length),
9228 (x86_64_dwarf2_reg_to_regnum): Added.
9229 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
9230 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
9231 (_initialize_x86_64_tdep): Synced with the change above.
9232 (x86_64_skip_prologue): Reformulated message.
9233
9234 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
9235
9236 * f-exp.y: Also use new prev_lexptr variable
9237 to improve error reporting. Based on Michael Snyder
9238 2002-04-24 dated patch to c-exp.y.
9239 * jv-exp.y: Likewise.
9240 * m2-exp.y: Likewise.
9241
9242 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
9243
9244 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
9245 we are dealing with vectors.
9246
9247 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
9248
9249 * config/m68k/tm-nbsd.h: Obvious fix,
9250 correct machine name.
9251
9252 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
9253
9254 * p-typeprint.c (pascal_type_print_base): Add support
9255 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
9256
9257 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
9258
9259 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
9260 for fondamental pascal 'char' type.
9261
9262 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
9263
9264 * p-lang.h (is_pascal_string_type): Declaration changed,
9265 new sixth argument of type char ** added.
9266 * p-lang.c (is_pascal_string_type): Implementation
9267 changed. Args length_pos, length_size, string_pos, char_size
9268 can now be NULL. New argument arrayname set to the field
9269 name of the char array. Return value set to char array
9270 field index plus one.
9271 * p-valprint.c (pascal_val_print): Adapt to new declaration of
9272 is_pascal_string_type function.
9273
9274 2002-05-02 Andrew Cagney <cagney@redhat.com>
9275
9276 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
9277 <cagney@redhat.com> change.
9278 * gdbarch.c: Regenerate.
9279
9280 2002-05-02 Andrew Cagney <cagney@redhat.com>
9281
9282 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
9283 before probing for a new one. Detect errorenous gdbarch_init
9284 functions.
9285 * gdbarch.c: Regenerate.
9286
9287 2002-05-01 Andrew Cagney <cagney@redhat.com>
9288
9289 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
9290 * config/mcore/tm-mcore.h: Ditto. Update copyright.
9291 * config/v850/tm-v850.h: Ditto. Update copyright.
9292
9293 2002-04-30 Andrew Cagney <ac131313@redhat.com>
9294
9295 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
9296 current_gdbarch.
9297
9298 2002-04-30 Michael Snyder <msnyder@redhat.com>
9299
9300 * arm-tdep.c: Whitespace clean-ups.
9301 (arm_skip_prologue): Fix thinko; two lines
9302 should have been removed as part of 4/24 change.
9303
9304 2002-04-30 Kevin Buettner <kevinb@redhat.com>
9305
9306 * rs6000-tdep.c: Added comment describing how fpscr register
9307 numbers were chosen.
9308
9309 2002-04-30 Michael Snyder <msnyder@redhat.com>
9310
9311 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
9312
9313 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
9314
9315 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
9316 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
9317 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
9318
9319 2002-04-29 Kevin Buettner <kevinb@redhat.com>
9320
9321 From Louis Hamilton <hamilton@redhat.com>:
9322 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
9323 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
9324 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
9325 not bfd-private xcoff data, to determine wordsize.
9326 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
9327
9328 2002-04-29 Andrew Cagney <ac131313@redhat.com>
9329
9330 GDB 5.2 released from 5.2 branch.
9331
9332 2002-04-29 Michal Ludvig <mludvig@suse.cz>
9333
9334 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
9335 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
9336 (x86_64_register_info_table): Added comments with register numbers.
9337
9338 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
9339
9340 * rs6000-tdep.c (rs6000_extract_return_value,
9341 rs6000_store_return_value): Handle returning vectors.
9342 (rs6000_gdbarch_init): Use
9343 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
9344 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
9345 New function.
9346 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
9347 vectors.
9348 (ppc_sysv_abi_push_arguments): Handle vector parameters.
9349 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
9350
9351 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
9352
9353 * hpread.c (hpread_psymtab_to_symtab_1,
9354 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
9355 with fprintf_unfiltered (gdb_stderr,...).
9356
9357 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
9358
9359 * remote-array.c (printf_monitor, write_monitor,
9360 array_insert_breakpoint, array_remove_breakpoint ):
9361 Replace fprintf (stderr,...
9362 with fprintf_unfiltered (gdb_stderr,....
9363 * remote-es.c: Likewise.
9364 * remote-os9k.c: Likewise.
9365 * remote-st.c: Likewise.
9366
9367 2002-04-28 Andreas Schwab <schwab@suse.de>
9368
9369 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
9370 linux-proc.o and gcore.o.
9371
9372 2002-04-26 Michal Ludvig <mludvig@suse.cz>
9373
9374 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
9375 code without frame pointers.
9376
9377 2002-04-26 Andrew Cagney <ac131313@redhat.com>
9378
9379 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
9380 ON_STACK is needed.
9381
9382 2002-04-26 Ben Elliston <bje@redhat.com>
9383
9384 * target.c (do_xfer_memory): Correct reference to the new option
9385 "trust-readonly-sections".
9386
9387 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
9388
9389 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
9390 * gdbtypes.c (recursive_dump_type): Output the vector flag.
9391 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
9392 vectors.
9393 (read_array_type): Record the fact that this array type is really a
9394 vector (i.e. are passed in by value).
9395
9396 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
9397
9398 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
9399 * alpha-tdep.c (alpha_sigcontext_addr): New function.
9400 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
9401 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
9402 * alpha-linux-tdep.c: Include frame.h.
9403 (alpha_linux_sigcontext_addr): New function.
9404 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
9405 alpha_linux_sigcontext_addr.
9406 * alpha-osf1-tdep.c: Include gdbcore.h.
9407 (alpha_osf1_sigcontext_addr): New function.
9408 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
9409 alpha_osf1_sigcontext_addr.
9410 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
9411 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
9412
9413 2002-04-26 Andrew Cagney <ac131313@redhat.com>
9414
9415 * stack.c (selected_frame_level):
9416 (select_frame): Do not set selected_frame_level.
9417 * frame.h (selected_frame_level): Delete declaration.
9418
9419 2002-04-26 Andrew Cagney <ac131313@redhat.com>
9420
9421 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
9422 convert_from_func_ptr-addr when AIX / PowerOpen.
9423
9424 2002-04-25 Andrew Cagney <ac131313@redhat.com>
9425
9426 * valops.c (hand_function_call): Call
9427 generic_save_call_dummy_addr.
9428 * frame.h (generic_save_call_dummy_addr): Declare.
9429 * blockframe.c (struct dummy_frame): Add fields call_lo and
9430 call_hi.
9431 (generic_find_dummy_frame): Check for PC in range call_lo to
9432 call_hi instead of entry_point_address.
9433 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
9434 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
9435 (generic_save_call_dummy_addr): New function.
9436
9437 2002-04-24 David S. Miller <davem@redhat.com>
9438
9439 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
9440 sparc_skip_prologue.
9441 (sparc_skip_prologue): Kill frameless_p arg, and use line number
9442 information to find prologue when possible.
9443 (sparc_prologue_frameless_p): Call examine_prologue directly.
9444 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
9445 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
9446 second argument.
9447 (SKIP_PROLOGUE): Likewise.
9448
9449 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
9450
9451 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
9452 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
9453 indicate that the condition it was testing is always true.
9454 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
9455 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
9456 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
9457
9458 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
9459
9460 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
9461 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
9462 tdep->jb_pc and tdep->jb_elt_size.
9463 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
9464 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
9465 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
9466 * alpha-nat.c (get_longjmp_target): Remove.
9467 (JB_ELEMENT_SIZE): Ditto.
9468 (JB_PC): Ditto.
9469 * alpha-tdep.c (alpha_get_longjmp_target): New function.
9470 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
9471 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
9472 to alpha_get_longjmp_target.
9473 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
9474 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
9475 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
9476
9477 2002-04-25 Andrew Cagney <ac131313@redhat.com>
9478
9479 * README: Update to GDB 5.2.
9480
9481 2002-04-25 Andrew Cagney <ac131313@redhat.com>
9482
9483 * gdbarch.sh (LC_ALL): Set to `c'.
9484
9485 2002-04-25 Theodore A. Roth <troth@verinet.com>
9486
9487 * avr-tdep.c: Ran through gdb_indent.sh.
9488
9489 2002-04-25 Theodore A. Roth <troth@verinet.com>
9490
9491 * MAINTAINERS: Add myself as AVR maintainer.
9492 * NEWS: Note new target avr.
9493
9494 2002-04-25 Theodore A. Roth <troth@verinet.com>
9495
9496 * Makefile.in: Add support for AVR target.
9497 * configure.tgt: Add support for AVR target.
9498 * avr-tdep.c: New file
9499 * config/avr/avr.mt: New file.
9500
9501 2002-04-25 Theodore A. Roth <troth@verinet.com>
9502
9503 * MAINTAINERS: Add myself to write-after-approval.
9504
9505 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
9506
9507 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
9508 with fprintf_unfiltered (gdb_stderr,....
9509
9510 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
9511
9512 Fix PR gdb/508.
9513 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
9514
9515 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
9516
9517 * p-exp.y: Also use new prev_lexptr variable
9518 to improve error reporting. Based on Michael Snyder
9519 2002-04-24 dated patch to c-exp.y.
9520
9521 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
9522
9523 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
9524 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
9525 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
9526 to 0.
9527 * config/alpha/tm-alpha.h: Remove forward decls of struct type
9528 and struct value.
9529 (FUNCTION_START_OFFSET): Remove.
9530 (BREAKPOINT): Ditto.
9531
9532 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
9533
9534 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
9535 * NEWS: Ditto.
9536
9537 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9538
9539 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
9540 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
9541 alpha_linux_pc_in_sigtramp.
9542 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
9543 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
9544 alpha_osf1_pc_in_sigtramp.
9545 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
9546 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
9547 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
9548 alphafbsd_pc_in_sigtramp.
9549 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
9550 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
9551 alphanbsd_pc_in_sigtramp.
9552 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
9553 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
9554
9555 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9556
9557 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
9558
9559 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9560
9561 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
9562 alphanbsd-tdep.c.
9563 (alphanbsd-nat.o): New dependency list.
9564 (alphanbsd-tdep.o): Ditto.
9565 * NEWS: Note new native NetBSD/alpha configuration.
9566 * alphanbsd-nat.c: New file.
9567 * alphanbsd-tdep.c: Ditto.
9568 * configure.host (alpha*-*-netbsd*): New host.
9569 * configure.tgt (alpha*-*-netbsd*): New target.
9570 * config/alpha/nbsd.mh: New file.
9571 * config/alpha/nbsd.mt: Ditto.
9572 * config/alpha/nm-nbsd.h: Ditto.
9573 * config/alpha/tm-nbsd.h: Ditto.
9574
9575 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9576
9577 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
9578 (alpha-osf1-tdep.o): New dependency list.
9579 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
9580 and skip_sigtramp_frame members.
9581 * alpha-linux-tdep.c: Include gdbcore.h.
9582 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
9583 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
9584 * alpha-osf1-tdep.c: New file.
9585 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
9586 alpha-osf1-dep.c.
9587 (alpha_frame_past_sigtramp_frame): New function.
9588 (alpha_dynamic_sigtramp_offset): Ditto.
9589 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
9590 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
9591 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
9592 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
9593 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
9594 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
9595 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
9596 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
9597 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
9598 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
9599 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
9600 to find_solib_trampoline_target.
9601 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
9602 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
9603 (SKIP_TRAMPOLINE_CODE): Remove.
9604 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9605 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9606 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
9607 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
9608 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
9609 (PROC_SIGTRAMP_MAGIC): Ditto.
9610 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9611 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9612 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9613 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
9614 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
9615
9616 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9617
9618 * NEWS: Note that Alpha targets are now multi-arch.
9619
9620 2002-04-24 Michael Snyder <msnyder@redhat.com>
9621
9622 * parser-defs.h (prev_lexptr): New external variable.
9623 * parse.c (parse_exp_1): Set prev_lexptr to null before
9624 calling the language-specific parser.
9625 * c-exp.y (yylex): Set prev_lexptr to start of current token.
9626 (yyerror): Use prev_lexptr in error reporting.
9627
9628 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
9629
9630 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
9631 * gregset.h: If FILL_FPXREGSET is defined, provide
9632 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
9633 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
9634 is defined, call fill_fpxregset.
9635
9636 2002-04-24 Roland McGrath <roland@frob.com>
9637
9638 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
9639 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
9640 (supply_gregset, supply_fpregset): New functions.
9641
9642 * gnu-nat.c (gnu_find_memory_regions): New function.
9643 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
9644 (gnu_xfer_memory): Add a cast.
9645
9646 2002-04-24 Michael Snyder <msnyder@redhat.com>
9647
9648 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
9649 loop. Add handling for "str lr, [sp, #-4]!" and for saves
9650 of argument regs ("str r(0123), [r11, #-nn"]).
9651 (arm_skip_prologue): Better handling for frameless functions.
9652 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
9653 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
9654
9655 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
9656
9657 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
9658 NUM_PSEUDO_REGS can be used.
9659
9660 2002-04-24 Andrew Cagney <ac131313@redhat.com>
9661
9662 * arch-utils.h: Update copyright.
9663
9664 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
9665 * gdbarch.h, gdbarch.c: Re-generate.
9666
9667 * inferior.h (IN_SIGTRAMP): Delete definition.
9668 * arch-utils.c (legacy_pc_in_sigtramp): New function.
9669 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
9670
9671 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
9672 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
9673 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
9674 (find_proc_framesize): Ditto.
9675 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
9676 (alpha_init_extra_frame_info): Ditto.
9677 * infrun.c (handle_inferior_event): Ditto.
9678 (handle_inferior_event): Ditto.
9679 (check_sigtramp2): Ditto.
9680 * blockframe.c (create_new_frame): Ditto.
9681 (get_prev_frame): Ditto.
9682 * ppc-linux-tdep.c: Update comments.
9683 * i386-linux-tdep.c: Update comments.
9684 * breakpoint.c (bpstat_what): Update comment.
9685
9686 2002-04-24 David S. Miller <davem@redhat.com>
9687
9688 * i960-tdep.c (register_in_window_p): New function.
9689 (i960_find_saved_register): Use it instead of
9690 REGISTER_IN_WINDOW_P.
9691 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
9692
9693 * symtab.h (find_stab_function_addr): Kill extern.
9694 * minsyms.c (find_stab_function_addr): Remove from here...
9695 * dbxread.c: ... to here, and mark it static.
9696
9697 2002-04-20 David S. Miller <davem@redhat.com>
9698
9699 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
9700 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
9701
9702 2002-04-21 David S. Miller <davem@redhat.com>
9703
9704 * remote-vxsparc.c (vx_read_register): Fix typo, we want
9705 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
9706 (vx_write_register): Likewise.
9707
9708 2002-04-23 J. Brobecker <brobecker@gnat.com>
9709
9710 * source.c (is_regular_file): New function.
9711 (openp): Check wether file to open is a regular file
9712 to avoid opening directories.
9713
9714 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9715
9716 * findvar.c (extract_signed_integer): Cast printf argument
9717 to suppress format warning.
9718 (extract_unsigned_integer): Likewise.
9719 * infcmd.c (registers_info): Likewise.
9720 * top.c (get_prompt_1): Likewise.
9721 * valops.c (value_assign): Likewise.
9722 * valprint.c (print_decimal): Likewise.
9723
9724 2002-04-22 H.J. Lu (hjl@gnu.org)
9725
9726 * c-exp.y (typebase): Support
9727
9728 [long|long long|short] [signed|unsigned] [int|]
9729
9730 and
9731
9732 signed [long|long long|short] int
9733
9734 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9735
9736 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
9737 and vax-tdep.h.
9738 * vax-tdep.h: New file.
9739 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
9740 Make several routines static.
9741 (vax_get_saved_register): New function.
9742 (vax_gdbarch_init): New function.
9743 (_initialize_vax_tdep): Register vax_gdbarch_init.
9744 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
9745 Remove macros now under the control of gdbarch.
9746
9747 2002-04-22 Michael Snyder <msnyder@redhat.com>
9748
9749 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
9750 Some whitespace and coding standards tweaks.
9751
9752 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9753
9754 * vax-tdep.c: Include regcache.h.
9755 (vax_call_dummy_words): New.
9756 (sizeof_vax_call_dummy_words): New.
9757 (vax_fix_call_dummy): New function.
9758 (vax_saved_pc_after_call): Ditto.
9759 * config/vax/tm-vax.h: Don't include regcache.h.
9760 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
9761 (CALL_DUMMY): Remove.
9762 (CALL_DUMMY_WORDS): Define.
9763 (SIZEOF_CALL_DUMMY_WORDS): Define.
9764 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
9765
9766 2002-04-18 Michael Snyder <msnyder@redhat.com>
9767
9768 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
9769
9770 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9771
9772 * vax-tdep.c (vax_frame_chain): New function.
9773 (vax_push_dummy_frame): Ditto.
9774 (vax_pop_frame): Ditto.
9775 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
9776 (FRAMELESS_FUNCTION_INVOCATION): Use
9777 generic_frameless_function_invocation_not.
9778 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
9779 (POP_FRAME): Use vax_pop_frame.
9780
9781 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9782
9783 * vax-tdep.c (vax_store_struct_return): New function.
9784 (vax_extract_return_value): Ditto.
9785 (vax_store_return_value): Ditto.
9786 (vax_extract_struct_value_address): Ditto.
9787 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
9788 vax_store_struct_return.
9789 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
9790 (STORE_RETURN_VALUE): Use vax_store_return_value.
9791 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
9792
9793 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9794
9795 * vax-tdep.c (vax_frame_saved_pc): New function.
9796 (vax_frame_args_address_correct): Ditto.
9797 (vax_frame_args_address): Ditto.
9798 (vax_frame_locals_address): Ditto.
9799 (vax_frame_num_args): Move code to be in proximity to
9800 other frame-related functions.
9801 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
9802 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
9803 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
9804 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
9805 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
9806
9807 2002-04-22 H.J. Lu (hjl@gnu.org)
9808
9809 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
9810 includedir.
9811
9812 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9813
9814 * vax-tdep.c (vax_frame_init_saved_regs): New function.
9815 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
9816 (FRAME_INIT_SAVED_REGS): New macro.
9817
9818 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9819
9820 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
9821
9822 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9823
9824 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
9825 where needed.
9826 (fetch_osf_core_registers): Likewise.
9827 (supply_gregset): Likewise.
9828
9829 2002-04-22 J. Brobecker <brobecker@gnat.com>
9830
9831 * symfile.h (get_section_index): Define.
9832 * symfile.c (get_section_index): New function.
9833 * mdebugread.c (SC_IS_SBSS): New macro.
9834 (SC_IS_BSS): Return true for the scBss storage class only, as
9835 the scSBss storage class refers to the .sbss section.
9836 (parse_partial_symbols): Discard the symbols which associated
9837 section does not exist.
9838 Make sure to use the .sbss section index for symbols which
9839 storage class is scBss, rather than using the .bss section index.
9840
9841 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9842
9843 * vax-tdep.c: Update copyright years.
9844 (vax_register_name): New function.
9845 (vax_register_byte): Ditto.
9846 (vax_register_raw_size): Ditto.
9847 (vax_register_virtual_size): Ditto.
9848 (vax_register_virtual_type): Ditto.
9849 * config/vax/tm-vax.h: Update copyright years.
9850 (REGISTER_NAMES): Remove.
9851 (REGISTER_NAME): Define.
9852 (REGISTER_BYTE): Use vax_register_byte.
9853 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
9854 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
9855 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
9856
9857 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9858
9859 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
9860 declaration
9861 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
9862
9863 2002-04-21 David S. Miller <davem@redhat.com>
9864
9865 * arch-utils.c (generic_prologue_frameless_p): Kill
9866 SKIP_PROLOGUE_FRAMELESS_P code.
9867 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9868 references.
9869 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
9870 * arc-tdep.c (arc_prologue_frameless_p): Implement.
9871 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9872 references.
9873 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
9874 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
9875 (sparc_gdbarch_init): Pass it to
9876 set_gdbarch_prologue_frameless_p.
9877
9878 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9879
9880 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
9881 (alphabsd-nat.o): New dependency list.
9882
9883 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9884
9885 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
9886 alphafbsd-tdep.c.
9887 (alpha-linux-tdep.o): New dependency list.
9888 (alphafbsd-tdep.o): Likewise.
9889
9890 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9891
9892 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
9893 to here...
9894 * alpha-tdep.c: ...from here.
9895 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
9896
9897 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9898
9899 * config/alpha/tm-alpha.h: Move alpha_software_single_step
9900 prototype from here...
9901 * alpha-tdep.h: ...to here.
9902
9903 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9904
9905 * frame.h (selected_frame_level): Document as deprecated.
9906 (frame_relative_level): Declare.
9907 * stack.c (frame_relative_level): New function.
9908 (selected_frame_level): Document as deprecated.
9909 (select_frame): Do not set the selected_frame_level.
9910
9911 * stack.c (frame_info, record_selected_frame): Update.
9912 (frame_command, current_frame_command): Update.
9913 (up_silently_base, up_command, down_silently_base): Update.
9914 (down_command): Update.
9915 * inflow.c (kill_command): Update.
9916 * tracepoint.c (finish_tfind_command): Update.
9917 * corelow.c (core_open): Update.
9918 * thread.c (info_threads_command): Update.
9919 (do_captured_thread_select): Update.
9920 * infcmd.c (finish_command): Update.
9921 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
9922
9923 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9924
9925 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
9926
9927 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9928
9929 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
9930 type const.
9931
9932 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9933
9934 * alphafbsd-tdep.c: Update copyright years. Include
9935 alpha-tdep.h.
9936 (alphafbsd_use_struct_convention): Make static.
9937 (alphafbsd_init_abi): New function.
9938 (_initialize_alphafbsd_tdep): New function.
9939 * config/alpha/tm-fbsd.h: Update copyright years.
9940 (USE_STRUCT_CONVENTION): Remove.
9941
9942 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9943
9944 * alpha-tdep.c (alpha_abi_handler): New structure to describe
9945 an Alpha ABI variant.
9946 (alpha_abi_handler_list): Declare.
9947 (alpha_gdbarch_register_os_abi): New function.
9948 (alpha_gdbarch_init): Give registered ABI variant handlers a
9949 chance to tweak the gdbarch once we have set up defaults.
9950 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
9951
9952 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9953
9954 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
9955 to standard_coerce_float_to_double.
9956 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
9957
9958 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9959
9960 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
9961 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
9962 from gdbarch_tdep rather than a constant.
9963 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
9964 the default text address for all Alpha Unix ABIs.
9965 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
9966 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
9967
9968 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9969
9970 * alpha-tdep.h: New file. Includes several Alpha target constants
9971 taken from...
9972 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
9973 let gdbarch deal with.
9974 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
9975 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
9976 to dependency list.
9977 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
9978 Alpha target register names.
9979 * alphabsd-nat.c: Likewise.
9980 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
9981 Alpha target register names. Make serveral routines static.
9982 (alpha_get_saved_register): New function.
9983 (alpha_abi_names): New.
9984 (process_note_abi_tag_sections): New function.
9985 (get_elfosabi): New function.
9986 (alpha_gdbarch_init): New function.
9987 (alpha_dump_tdep): New function.
9988 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
9989
9990 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9991
9992 * frame.c (find_saved_register): Delete #ifdef
9993 HAVE_REGISTER_WINDOWS code.
9994 * config/sparc/tm-sparc.h: Update comments.
9995 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
9996
9997 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9998
9999 * i960-tdep.c (i960_find_saved_register): New function.
10000 (i960_get_saved_register): New function.
10001 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
10002 (i960_get_saved_register): Declare.
10003 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
10004
10005 2002-04-20 David S. Miller <davem@redhat.com>
10006
10007 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
10008
10009 2002-04-20 Andrew Cagney <ac131313@redhat.com>
10010
10011 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
10012 instead of NUM_PSEUDO_REGS.
10013
10014 2002-04-20 David S. Miller <davem@redhat.com>
10015
10016 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
10017 GDB_MULTI_ARCH_PARTIAL
10018 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
10019 define, let tm-sp64.h do it.
10020
10021 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
10022
10023 * frame.c (find_saved_register): Avoid a NULL pointer
10024 dereference and actually walk the frame list.
10025
10026 2002-04-20 Andrew Cagney <ac131313@redhat.com>
10027
10028 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
10029 sorted in most most-recent-used order. Document.
10030 * gdbarch.h, gdbarch.c: Regenerate.
10031
10032 2002-04-19 Andrew Cagney <ac131313@redhat.com>
10033
10034 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
10035 instead of ->prev.
10036 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
10037 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
10038 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
10039 instead of ->prev.
10040
10041 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
10042
10043 Fix PR gdb/471.
10044 * gdbtypes.c (init_simd_type): Rewrite using new functions.
10045 (build_builtin_type_vec128): Ditto.
10046 (append_composite_type_field): Fix calculation of type length in
10047 union case.
10048
10049 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
10050
10051 * config/djgpp/README: Update.
10052
10053 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
10054 compiler warnings.
10055
10056 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
10057
10058 * alpha-tdep.c (setup_arbitrary_frame): Rename...
10059 (alpha_setup_arbitrary_frame): ...to this.
10060 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
10061 for alpha_setup_arbitrary_frame.
10062
10063 2002-04-18 Andrew Cagney <cagney@redhat.com>
10064
10065 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
10066 * gdbarch.h, gdbarch.c: Regenerate.
10067
10068 * defs.h (breakpoint_from_pc_fn): Delete type definition.
10069 * target.h (memory_breakpoint_from_pc): Update declaration.
10070 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
10071
10072 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
10073 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
10074 * mem-break.c (memory_breakpoint_from_pc): Ditto.
10075 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
10076 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
10077 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
10078 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
10079 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
10080 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
10081 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
10082 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
10083 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
10084
10085 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
10086 const pointer.
10087 * monitor.c (monitor_insert_breakpoint): Ditto.
10088 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
10089
10090 * config/mcore/tm-mcore.h: Update copyright.
10091 * mem-break.c: Ditto.
10092 * xstormy16-tdep.c: Ditto.
10093
10094 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
10095
10096 * p-exp.y: Add precedence rule for '^' token.
10097 This removes the shift/reduce conflicts.
10098 Remove the comment concerning these shift/reduce conflicts.
10099
10100 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
10101
10102 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
10103 (registers_powerpc_nofp): New register set for processors
10104 without floating point unit.
10105
10106 2002-04-18 David S. Miller <davem@redhat.com>
10107
10108 * MAINTAINERS: Add myself to write-after-approval.
10109
10110 2002-04-17 Michael Snyder <msnyder@redhat.com>
10111
10112 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
10113
10114 2002-04-17 Andrew Cagney <ac131313@redhat.com>
10115
10116 * rs6000-tdep.c (frame_initial_stack_address): Use
10117 frame_register_read to read the alloca_reg.
10118
10119 2002-04-17 Andrew Cagney <ac131313@redhat.com>
10120
10121 * frame.c (find_saved_register): Find saved registers in the next
10122 not prev frame.
10123 Fix PR gdb/365.
10124
10125 2002-04-17 Andrew Cagney <ac131313@redhat.com>
10126
10127 * gdbarch.sh (LANG): Set to ``c''.
10128
10129 2002-04-15 Andrew Cagney <ac131313@redhat.com>
10130
10131 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
10132
10133 2002-04-15 Andrew Cagney <ac131313@redhat.com>
10134
10135 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
10136 Update copyright.
10137
10138 * hpread.c (hpread_get_lntt): Add declaration.
10139 Also fix PR gdb/391.
10140
10141 2002-04-14 Andrew Cagney <ac131313@redhat.com>
10142
10143 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
10144 * aclocal.m4, configure: Re-generate.
10145 Fix PR gdb/391.
10146
10147 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
10148
10149 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
10150 instead of tm_print_insn.
10151
10152 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
10153
10154 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
10155
10156 2002-04-14 Andrew Cagney <ac131313@redhat.com>
10157
10158 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
10159 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
10160 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
10161
10162 2002-04-12 Don Howard <dhoward@redhat.com>
10163
10164 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
10165 max_user_call_depth.
10166 (init_cmd_lists): Initialize the new value;
10167 * cli/cli-script.c (execute_user_command): Limit the call depth of
10168 user defined commands. This avoids a core-dump when user commands
10169 are infinitly recursive.
10170
10171 2002-04-12 Kevin Buettner <kevinb@redhat.com>
10172
10173 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
10174 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
10175 from tdep struct instead of DEFAULT_LR_SAVE.
10176 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
10177 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
10178 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
10179
10180 2002-04-12 Michael Snyder <msnyder@redhat.com>
10181
10182 * Remote.c: Spelling fix.
10183 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
10184 If no symbol found for "sbrk", try "_sbrk".
10185 (make_output_phdrs): Use bfd_section_name.
10186 (gcore_copy_callback): Use bfd_section_name.
10187 * eval.c: Indentation fix-ups.
10188 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
10189 in case it gets applied to an address that is already
10190 in the instruction space.
10191 * cli/cli-decode.c (help_list): Allow long lines to wrap.
10192 * symfile.c: Fix indentation, long lines.
10193 * source.c: White space fix-up.
10194
10195 2002-04-12 Andrew Cagney <cagney@redhat.com>
10196
10197 * defs.h (read_relative_register_raw_bytes): Delete declaration.
10198 * frame.c (frame_register_read): New function. Return non-zero on
10199 success.
10200 (read_relative_register_raw_bytes_for_frame): Delete.
10201 (read_relative_register_raw_bytes): Delete.
10202 * frame.h (frame_register_read): Declare.
10203 * d30v-tdep.c: Update Copyright. Use frame_register_read.
10204 * sh-tdep.c: Ditto.
10205 * infcmd.c (do_registers_info): Ditto.
10206 * hppa-tdep.c: Ditto.
10207 * rs6000-tdep.c: Ditto.
10208 * h8500-tdep.c: Ditto.
10209 * mips-tdep.c: Ditto.
10210 * h8300-tdep.c: Ditto.
10211 * z8k-tdep.c: Ditto.
10212
10213 2002-04-12 Kevin Buettner <kevinb@redhat.com>
10214
10215 From Jimi X <jimix@watson.ibm.com>:
10216 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
10217 64-bit SysV ABI.
10218
10219 2002-04-12 Kevin Buettner <kevinb@redhat.com>
10220
10221 From Jimi X <jimix@watson.ibm.com>:
10222 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
10223 bfd info.
10224
10225 2002-04-12 Kevin Buettner <kevinb@redhat.com>
10226
10227 From Jimi X <jimix@watson.ibm.com>:
10228 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
10229 register sets for these processor variants.
10230
10231 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
10232
10233 * regformats/reg-ppc.dat: Support FPSCR.
10234
10235 2002-04-11 Kevin Buettner <kevinb@redhat.com>
10236
10237 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
10238 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
10239 Add fpscr as an invalid/unfetchable register.
10240 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
10241 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
10242 (fill_fpregset): Add support for register fpscr.
10243 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
10244 (fill_gregset): Account for the fact that register ``mq'' might
10245 not exist.
10246 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
10247 (registers_power): Add fpscr to register set at slot 71.
10248 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
10249 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
10250
10251 2002-04-11 Michael Snyder <msnyder@redhat.com>
10252
10253 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
10254 * configure: Regenerate.
10255 * config.in: Regenerate.
10256 * acconfig.h: Add define for _SYSCALL32.
10257 * core-sol2.c: Remove #define _SYSCALL32.
10258 * solib-legacy.c: Remove #define _SYSCALL32.
10259
10260 2002-04-10 Andrew Cagney <ac131313@redhat.com>
10261
10262 * stack.c (select_frame): Cleanup internal error message, do not
10263 use %p.
10264
10265 2002-04-10 Andrew Cagney <ac131313@redhat.com>
10266
10267 * stack.c (select_frame): Check that selected_frame and the
10268 specified level are as expected.
10269 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
10270 Update copyright.
10271 * frame.h (struct frame_info): Add field `level'. Update
10272 copyright.
10273 Work-in-progress PR gdb/464.
10274
10275 2002-04-10 Andrew Cagney <ac131313@redhat.com>
10276
10277 * maint.c (maint_print_section_info): Rename print_section_info.
10278 (print_bfd_section_info, print_objfile_section_info): Update.
10279 * inferior.h (struct gdbarch): Add opaque declaration.
10280 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
10281 * gdbarch.h: Regenerate.
10282
10283 2002-04-10 Michal Ludvig <mludvig@suse.cz>
10284
10285 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
10286 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
10287 (kernel_u_size): Added.
10288 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
10289 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
10290
10291 2002-04-04 Jim Ingham <jingham@apple.com>
10292
10293 * valarith.c (find_size_for_pointer_math): New function, either returns
10294 the size for a pointer's target, returns 1 for void *, or errors for
10295 incomplete types.
10296 (value_add, value_sub): use find_size_for_pointer_math.
10297
10298 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
10299
10300 * linux-low.c (linux_look_up_symbols): New hook.
10301 (linux_target_ops): Add linux_look_up_symbols.
10302 * remote-utils.c (decode_address): New function.
10303 (look_up_one_symbol): New function.
10304 * server.c (handle_query): Call target look_up_symbols hook.
10305 * server.h (look_up_one_symbol): Add prototype.
10306 * target.h (struct target_ops): Add look_up_symbols hook.
10307
10308 2002-04-09 Andrew Cagney <ac131313@redhat.com>
10309
10310 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
10311 override FP_REGNUM with frame->fp. Update copyright.
10312 * parse.c (num_std_regs, std_regs): Delete.
10313 (target_map_name_to_register): Do not search std_regs. Update
10314 function description.
10315 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
10316 declarations. Update copyright.
10317 Fix PR gdb/251.
10318
10319 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
10320
10321 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
10322 after the last symbol in a block.
10323
10324 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
10325
10326 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
10327 is non zero as a found symbol.
10328
10329 2002-04-08 Andrew Cagney <ac131313@redhat.com>
10330
10331 * findvar.c: Include "builtin-regs.h".
10332 (value_of_register): Call value_of_builtin_reg when applicable.
10333 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
10334 (target_map_name_to_register): Call
10335 builtin_reg_map_name_to_regnum.
10336 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
10337 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
10338 (builtin_regs_h): Define.
10339 (builtin-regs.o): New target.
10340 (findvar.o): Add $(builtin_regs_h).
10341 * builtin-regs.c, builtin-regs.h: New files.
10342 * std-regs.c: New file.
10343 Partial fix for PR gdb/251.
10344
10345 2002-04-08 Kevin Buettner <kevinb@redhat.com>
10346
10347 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
10348 it's no longer required.
10349
10350 2002-04-08 Andrew Cagney <ac131313@redhat.com>
10351
10352 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
10353
10354 2002-04-08 Kevin Buettner <kevinb@redhat.com>
10355
10356 From Jimi X <jimix@watson.ibm.com>:
10357 * rs6000-tdep.c (rs6000_software_single_step): Use
10358 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
10359 and size. Use target_insert_breakpoint() and
10360 target_remove_breakpoint() to insert and remove breakpoints
10361 instead of explicit memory reads and writes.
10362
10363 2002-04-08 Kevin Buettner <kevinb@redhat.com>
10364
10365 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
10366 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
10367 ELF_OBJECT_FORMAT ifdef.
10368
10369 2002-04-08 Kevin Buettner <kevinb@redhat.com>
10370
10371 From Jimi X <jimix@watson.ibm.com>:
10372 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
10373
10374 2002-04-08 Kevin Buettner <kevinb@redhat.com>
10375
10376 From Jimi X <jimix@watson.ibm.com>:
10377 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
10378 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
10379
10380 2002-04-07 Mark Kettenis <kettenis@gnu.org>
10381
10382 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
10383 s/asprintf/xasprintf/.
10384 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
10385
10386 2002-04-07 Andrew Cagney <ac131313@redhat.com>
10387
10388 I believe Jeff Law denies responsability for this one:
10389 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
10390 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
10391 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
10392 Work-around for PR gdb/366.
10393
10394 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
10395
10396 * remote-e7000.c (write_small, e7000_read_inferior_memory,
10397 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
10398 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
10399
10400 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
10401
10402 * sh-tdep.c (sh_fp_frame_init_saved_regs,
10403 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
10404 information.
10405
10406 2002-04-07 Andrew Cagney <ac131313@redhat.com>
10407
10408 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
10409 maintainer.
10410
10411 2002-04-07 Andrew Cagney <ac131313@redhat.com>
10412
10413 * README (Reporting Bugs in GDB): Document the bug web page as the
10414 prefered way of submitting bugs.
10415 Fix PR gdb/402.
10416
10417 2002-04-06 Andrew Cagney <ac131313@redhat.com>
10418
10419 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
10420 -1. Update comment.
10421 * gdbarch.h, gdbarch.c: Re-generate.
10422
10423 2002-04-07 Andreas Schwab <schwab@suse.de>
10424
10425 * m68klinux-nat.c (fill_fpregset): Properly pass address of
10426 buffer to regcache_collect.
10427
10428 2002-04-06 Andrew Cagney <ac131313@redhat.com>
10429
10430 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
10431 * gdbarch.c, gdbarch.h: Re-generate.
10432
10433 2002-04-06 Andrew Cagney <ac131313@redhat.com>
10434
10435 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
10436 declaration. Fix -Werror.
10437
10438 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
10439
10440 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
10441 * gdbarch.c: Regenerate.
10442
10443 2002-04-05 Michael Snyder <msnyder@redhat.com>
10444
10445 * breakpoint.c (clear_command): Rewrite middle section to
10446 combine two loops with identical control conditions.
10447 Add a cleanup to eliminate a memory leak.
10448 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
10449
10450 2002-04-05 H.J. Lu (hjl@gnu.org)
10451
10452 * solib-svr4.c (bkpt_names): Add "__start".
10453
10454 2002-04-04 Andrew Cagney <ac131313@redhat.com>
10455
10456 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
10457 as test for 64 bit target.
10458
10459 2002-04-05 Andrew Cagney <ac131313@redhat.com>
10460
10461 * h8500-tdep.c (h8500_write_fp): Delete function.
10462 * dwarf2cfi.c (cfi_write_fp): Document as not used.
10463 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
10464 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
10465 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
10466 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
10467 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
10468 (s390_write_fp):
10469 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
10470 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
10471 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
10472 (d10v_write_fp): Delete function.
10473 * inferior.h (write_fp, generic_target_write_fp): Delete
10474 declarations.
10475 * regcache.c (generic_target_write_fp): Delete function.
10476 (write_fp): Delete function.
10477 * gdbarch.sh (TARGET_WRITE_FP): Delete.
10478 * gdbarch.h, gdbarch.c: Regenerate.
10479 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
10480 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
10481 (sparc64_write_fp): Delete declaration.
10482 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
10483 (h8500_write_fp): Delete declaration.
10484
10485 2002-04-04 Andrew Cagney <ac131313@redhat.com>
10486
10487 * sparc-tdep.c (sparc64_write_fp): Delete.
10488 (sparc_push_dummy_frame): Replace write_fp call with code to store
10489 the FP directly.
10490 (sparc_gdbarch_init): Do not initialize write_fp.
10491
10492 2002-04-05 Kevin Buettner <kevinb@redhat.com>
10493
10494 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
10495 clause.
10496
10497 2002-03-29 Jim Blandy <jimb@redhat.com>
10498
10499 * stack.c (get_selected_block): Add new argument `addr_in_block',
10500 used to return the exact code address we used to select the block,
10501 not just the block.
10502 * blockframe.c (get_frame_block, get_current_block): Same.
10503 * frame.h (get_frame_block, get_current_block,
10504 get_selected_block): Update declarations.
10505 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
10506 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
10507
10508 2002-04-05 Michael Snyder <msnyder@redhat.com>
10509
10510 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
10511 warning message.
10512
10513 2002-04-05 J. Brobecker <brobecker@gnat.com>
10514
10515 * utils.c (xfullpath): New function.
10516 * defs.h (xfullpath): Add declaration.
10517 * source.c (openp): Use xfullpath in place of gdb_realpath to
10518 avoid resolving the basename part of filenames when the
10519 associated file is a symbolic link. This fixes a potential
10520 inconsistency between the filenames known to GDB and the
10521 filenames it prints in the annotations.
10522 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
10523 to be able to match a filename with either the real filename, or
10524 the name of any symbolic link to this file.
10525 (lookup_partial_symtab): Ditto.
10526
10527 2002-04-04 Michael Snyder <msnyder@redhat.com>
10528
10529 * breakpoint.c: Add support for hardware breakpoints in overlays.
10530 (overlay_events_enabled): New state variable.
10531 (insert_breakpoints): Use overlay_events_enabled to decide
10532 whether to attempt to set a breakpoint at the overlay load addr.
10533 Handle bp_hardware_breakpoint as well as bp_breakpoint.
10534 (remove_breakpoint): Use overlay_events_enabled to decide
10535 whether breakpoints need to be removed from overlay load addr.
10536 Handle bp_hardware_breakpoint as well as bp_breakpoint.
10537 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
10538 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
10539 disable_overlay_breakpoints): Update overlay_events_enabled.
10540
10541 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
10542
10543 * dwarf2read.c (struct function_range): New.
10544 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
10545 (check_cu_functions): New.
10546 (read_file_scope): Initialize global function lists.
10547 Call dwarf_decode_line after processing children.
10548 (read_func_scope): Add to global function list.
10549 (dwarf_decode_lines): Call check_cu_functions everywhere
10550 record_line is called. Call record_line with a linenumber
10551 of 0 to mark sequence ends.
10552
10553 2002-04-04 Michal Ludvig <mludvig@suse.cz>
10554
10555 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
10556 change sync with glibc.
10557
10558 2002-04-03 Jim Blandy <jimb@redhat.com>
10559
10560 * configure.in: Call AC_C_INLINE.
10561 * configure: Regenerated.
10562
10563 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
10564
10565 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
10566 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
10567
10568 2002-03-31 Mark Kettenis <kettenis@gnu.org>
10569
10570 * NEWS: Mention gcore support on FreeBSD/i386.
10571
10572 * fbsd-proc.c: New file.
10573 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
10574 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
10575
10576 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
10577 while statement.
10578
10579 2002-03-29 Jim Blandy <jimb@redhat.com>
10580
10581 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
10582 unescaped newlines in string literals, but newer ones don't. So
10583 escape them.
10584
10585 2002-03-26 Michael Snyder <msnyder@redhat.com>
10586 Andrew Cagney <cagney@redhat.com>
10587
10588 * cli/cli-dump.c: New file. Dump memory to file,
10589 restore file to memory.
10590 * cli/cli-dump.h: New file.
10591 * Makefile.in: Add rules, dependencies for cli-dump.o.
10592 * NEWS: Mention new commands.
10593
10594 2002-03-28 Michael Snyder <msnyder@redhat.com>
10595
10596 * symfile.c (symbol_file_add): Move test for null symbols to later.
10597
10598 2002-03-27 Andrew Cagney <ac131313@redhat.com>
10599
10600 From veksler at il.ibm.com:
10601 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
10602 the xstrduped original path.
10603 Fix PR gdb/417.
10604
10605 2002-03-27 Michael Snyder <msnyder@redhat.com>
10606
10607 * breakpoint.c (_initialize_breakpoint): Clean up help string.
10608 * infcmd.c (_initialize_infcmd): Ditto.
10609 * language.c (_initialize_language): Ditto.
10610 * symfile.c (_initialize_symfile): Ditto.
10611 * top.c (_init_main): Ditto.
10612 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10613
10614 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
10615
10616 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
10617 vector registers handling.
10618 (skip_prologue): Handle new AltiVec instructions. Fill in new
10619 fields of frame data.
10620 (frame_get_saved_regs): Fill in information for AltiVec registers.
10621
10622 2002-03-27 Jim Blandy <jimb@redhat.com>
10623
10624 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
10625 a function; leave this macro here to invoke that function.
10626 (symbol_init_mangled_name): Declaration for that function.
10627 * symtab.c (symbol_init_mangled_name): New function.
10628
10629 2002-03-27 Andrew Cagney <ac131313@redhat.com>
10630
10631 * valarith.c: Replace strerror with safe_strerror.
10632 * tracepoint.c: Ditto.
10633 * lin-lwp.c: Ditto.
10634 * go32-nat.c: Ditto.
10635 * inflow.c: Ditto.
10636 * gnu-nat.c: Ditto.
10637
10638 2002-03-27 Andreas Schwab <schwab@suse.de>
10639
10640 * event-top.c (command_line_handler): Remove useless if.
10641
10642 2002-03-27 Andreas Jaeger <aj@suse.de>
10643
10644 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
10645 comment.
10646
10647 2002-03-27 Michal Ludvig <mludvig@suse.cz>
10648
10649 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
10650 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
10651 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
10652 (x86_64_linux_dr_get_status, supply_gregset),
10653 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
10654 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
10655 (x86_64_register_info_table): Add.
10656 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
10657 (x86_64_register_raw_size, x86_64_register_virtual_type),
10658 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
10659 general x86_64_register_info_table.
10660 (i386_gdbarch_init): gdbarch_register_bytes is now set
10661 dynamicaly during initialization.
10662 * regformats/reg-x86-64.dat: Synced with changes to registers above.
10663 * gdbserver/linux-x86-64-low.c: Ditto.
10664
10665 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10666
10667 * gdbserver/server.c (main): Call target_signal_to_host_p
10668 and target_signal_to_host on signals received from the remote.
10669 * gdbserver/remote-utils.c (prepare_resume_reply): Call
10670 target_signal_from_host on signals sent to the remote.
10671 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
10672 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
10673
10674 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10675
10676 * signals/signals.c: Include "server.h" in gdbserver build.
10677 (target_signal_from_name): Don't use STREQ.
10678 (_initialize_signals): Likewise. Don't include function in
10679 gdbserver build.
10680
10681 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10682
10683 * signals.c: Moved to...
10684 * signals/signals.c: Here.
10685 * Makefile (signals.o): Update.
10686
10687 2002-03-26 Jeff Law (law@redhat.com)
10688
10689 * somread.c (som_symtab_read): Remove some commented out code and
10690 updated related comments. Do not set the minimal symbol table to
10691 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
10692 in a dynamic executable.
10693 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
10694 where we are unable to find the minimal symbol for the given
10695 PC value.
10696
10697 2002-03-25 Jeff Law (law@redhat.com)
10698
10699 * linux-proc.c (read_mapping): Scan up to end of line for filename.
10700
10701 2002-03-25 Michal Ludvig <mludvig@suse.cz>
10702
10703 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
10704
10705 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10706
10707 * command.h: Update copyright.
10708 (struct cmd_list_element): Replace definition with opaque
10709 declaration.
10710 (enum cmd_types): Document that it will eventually be moved to
10711 cli/cli-decode.h
10712 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
10713 (MALLOCED_REPLACEMENT): Delete macro.
10714 * Makefile.in (cli_decode_h): Add $(command_h).
10715 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
10716 * top.c: Include "cli/cli-decode.h".
10717 * completer.c: Include "cli/cli-decode.h".
10718 * maint.c: Include "cli/cli-decode.h".
10719 * cli/cli-decode.h: Include "command.h".
10720 (enum command_class): Delete.
10721 (enum cmd_types): Comment out.
10722 (enum cmd_auto_boolean): Delete.
10723 (enum var_types): Delete.
10724
10725 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10726
10727 * cli/cli-decode.c: Include "gdb_assert.h".
10728 (add_set_or_show_cmd): New static function.
10729 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
10730 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
10731 all fields, such as func, from the set command.
10732
10733 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10734
10735 * MAINTAINERS (sh-elf): Change warning flag to -w.
10736
10737 2002-03-23 Andrew Cagney <cagney@redhat.com>
10738
10739 * defs.h (error): Add printf format attribute.
10740 * thread-db.c (thread_from_lwp): Fix error format string.
10741 * stack.c (parse_frame_specification): Ditto.
10742 * cli/cli-decode.c (undef_cmd_error): Ditto.
10743 * scm-lang.c (scm_lookup_name): Ditto.
10744 * tracepoint.c (trace_error): Ditto.
10745 * remote-utils.c (usage): Ditto.
10746 * remote.c (compare_sections_command): Ditto.
10747 Fix PR gdb/328.
10748
10749 2002-03-22 Andrew Cagney <ac131313@redhat.com>
10750
10751 * gdbtypes.c (append_composite_type_field): New function.
10752 (init_composite_type): New function.
10753 * gdbtypes.h (append_composite_type_field): Declare.
10754 (init_composite_type): Ditto.
10755
10756 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
10757
10758 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
10759 function.
10760 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
10761 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
10762 structure returning convention for SYSV ABI case, but not
10763 for GNU/Linux, FreeBSD, or NetBSD.
10764
10765 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
10766
10767 * symtab.h (lookup_block_symbol): Add mangled_name argument
10768 to prototype.
10769
10770 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
10771 with new mangled_name argument.
10772 * linespec.c (decode_line_1): Likewise.
10773 * valops (value_of_this): Likewise.
10774 * symtab.c (lookup_transparent_type): Likewise.
10775 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
10776 (lookup_symbol): If we are given a mangled name, pass it down
10777 to lookup_symbol_aux.
10778 (lookup_block_symbol): If we are given a mangled name to check
10779 against, only return symbols which match it.
10780
10781 2002-03-22 Christopher Faylor <cgf@redhat.com>
10782
10783 * win32-nat.c (child_create_inferior): Check for proper shell to use
10784 here, in case the user changes it on the fly.
10785 (_initialize_inftarg): Remove shell path considerations.
10786
10787 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
10788
10789 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
10790 for gdbarch_max_register_raw_size and max_register_virtual_size.
10791 Adjust copyright year.
10792
10793 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
10794
10795 * dbxread.c (process_one_symbol): Extend the first N_SLINE
10796 in a function to cover the entire beginning of the function
10797 as well if it does not already.
10798
10799 2002-03-21 Tom Rix <trix@redhat.com>
10800
10801 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
10802 (rs6000_ptrace64): Renamed from ptrace64.
10803
10804 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10805
10806 * gdbserver/remote-utils.c (remote_open): Don't call
10807 getprotobyname, we're all using TCP here so just use
10808 IPPROTO_TCP.
10809 * gdbserver/gdbreplay.c (remote_open): Ditto.
10810
10811 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10812
10813 * regcache.c (_initialize_regcache): No need to call
10814 build_regcache() at this time; it gets called whenever
10815 the gdbarch changes.
10816
10817 2002-03-20 David O'Brien <obrien@FreeBSD.org>
10818
10819 * sparc-nat.c: Include sys/param.h where possible.
10820
10821 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
10822
10823 Fix PR gdb/422.
10824 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
10825 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
10826 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
10827 complex types.
10828 * stabsread.c (rs6000_builtin_type): Likewise.
10829 (read_sun_floating_type): Likewise.
10830
10831 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10832
10833 * stabsread.c (read_member_functions): Remove skip code for duplicate
10834 constructor/destructor methods. Use standard parsing for these
10835 methods and just do not chain them to the list of methods after
10836 parsing.
10837
10838 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
10839
10840 * coffread.c: Remove redundant static declarations. Replace
10841 occurrences of `PTR' with `void *'.
10842 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
10843 * top.h (quit_cover): Likewise.
10844 * defs.h (catch_errors): Likewise.
10845
10846 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10847
10848 * defs.h (XMALLOC): Define.
10849 * gdb-events.sh (XMALLOC): Delete macro.
10850 * gdb-events.c, gdb-events.h: Regenerate.
10851 * gdbarch.sh (XMALLOC): Delete macro.
10852 * gdbarch.c: Regenerate.
10853 * serial.c (XMALLOC): Delete macro.
10854 * ui-file.c (XMALLOC): Ditto.
10855 * ser-unix.h (XMALLOC): Ditto.
10856 * sh-tdep.c (XMALLOC): Ditto.
10857 * ui-out.c (XMALLOC): Ditto.
10858 * utils.c (XMALLOC): Ditto.
10859 * i386-tdep.c (XMALLOC): Ditto.
10860 * gdb-events.c (XMALLOC): Ditto.
10861 * d10v-tdep.c (XMALLOC): Ditto.
10862 * cli-out.c (XMALLOC): Ditto.
10863
10864 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
10865 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
10866 * ui-file.c, ui-out.c: Ditto.
10867
10868 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10869
10870 * command.h (struct cmd_list_element): Add field context.
10871 (set_cmd_context, get_cmd_context): Declare.
10872 * cli/cli-decode.h: Ditto.
10873 * cli/cli-decode.c (get_cmd_context): New function.
10874 (set_cmd_context): New function.
10875 (add_cmd): Initialize context.
10876 Part of fixing PR gdb/145 and PR gdb/146.
10877
10878 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10879
10880 * cli/cli-decode.c (cmd_type): New function.
10881 * command.h (cmd_type): Declare.
10882 * infrun.c (set_schedlock_func): Call function cmd_type.
10883 * kod.c (kod_set_os): Call cmd_type.
10884 * cris-tdep.c (cris_version_update): Use function cmd_type.
10885 (cris_mode_update, cris_abi_update): Ditto.
10886
10887 * command.h: (execute_cmd_post_hook): Declare.
10888 (execute_cmd_pre_hook): Declare.
10889 * cli/cli-script.c (clear_hook_in_cleanup): New function.
10890 (execute_cmd_post_hook, execute_cmd_pre_hook): New
10891 functions. Execute pre/post hook while ensuring that afterwords
10892 hook_in is cleared.
10893 * top.c (execute_command): Use execute_cmd_post_hook, and
10894 execute_cmd_pre_hook to execute pre/post commands.
10895 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
10896 hook_stop_stub.
10897 (hook_stop_stub): Call execute_cmd_pre_hook.
10898
10899 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10900
10901 * kod.c (kod_set_os): Revert previous change. Is called by ``info
10902 set'' and this leads to a core dump. Move xstrdup of
10903 operating_system to after check that it is not NULL.
10904
10905 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10906
10907 * kod.c (kod_set_os): Remove unnecessary check that
10908 ``command->type'' is set_cmd.
10909
10910 * valprint.c (set_input_radix): Use input_radix.
10911 (set_output_radix): Use output_radix.
10912 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
10913 isn't reverted.
10914
10915 2002-03-16 Andrew Cagney <ac131313@redhat.com>
10916
10917 * value.h (struct value): Delete field ``substring_addr''. Change
10918 aligner fields to force_doublest_align, force_longest_align,
10919 force_core_addr_align and force_pointer_aligh.
10920
10921 * value.h (struct value): Fix typo in above change.
10922
10923 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10924
10925 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
10926 to fix internal_error from ``maintenance print architecture''.
10927
10928 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10929
10930 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
10931 for gcc versions after gcc-2.8.1.
10932
10933 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10934
10935 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
10936 for method resolution. Restore adjustment of ``this'' pointer after
10937 calling value_struct_elt, which was accidentally removed during the
10938 HP merge.
10939
10940 2002-03-15 Andrew Cagney <ac131313@redhat.com>
10941
10942 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
10943 value_of_register.
10944 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
10945 get_saved_register.
10946 * value.h (value_of_register): Update.
10947
10948 2002-03-14 Richard Henderson <rth@redhat.com>
10949
10950 * configure.in: Detect declaration for canonicalize_file_name.
10951 * utils.c (canonicalize_file_name): Declare, if needed.
10952 (gdb_realpath): Prefer realpath if available and usable.
10953 * config.in, configure: Rebuild.
10954
10955 2002-03-14 Richard Henderson <rth@redhat.com>
10956
10957 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
10958 a constant array bound.
10959
10960 * MAINTAINERS: Add myself to write-after-approval.
10961
10962 2002-03-14 Michael Snyder <msnyder@redhat.com>
10963
10964 * symfile.c (syms_from_objfile): Return immediately if no syms.
10965 (symbol_file_add): Return immediately if no syms.
10966 (find_sym_fns): Return immediately if no syms.
10967
10968 2002-03-13 Michal Ludvig <mludvig@suse.cz>
10969
10970 * gdbserver/remote-util.c (remote_open): Print remote-side's
10971 IP address when remote debugging over the network.
10972
10973 2002-03-12 David O'Brien <obrien@FreeBSD.org>
10974
10975 * config/sparc/fbsd.mh: Fix copyright.
10976 * config/sparc/fbsd.mt: Likewise.
10977
10978 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
10979
10980 * MAINTAINERS: Fix typo in name of gdb warnings option.
10981 (x86-64): Fix formating so that this can be parsed by awk.
10982
10983 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10984
10985 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
10986 * defs.h: Include "gdb/signals.h".
10987 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
10988
10989 2002-03-10 Michal Ludvig <mludvig@suse.cz>
10990
10991 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
10992 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
10993 from x86-64-tdep.h
10994
10995 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10996 Don Howard <dhoward@redhat.com>
10997
10998 * mips-tdep.c (ST0_FR): Define.
10999 (mips2_fp_compat): New function, temporarily disabled.
11000 (mips_read_fp_register_single): New function.
11001 (mips_read_fp_register_double): New function.
11002 (mips_print_register): Use them.
11003 (do_fp_register_row): Likewise.
11004
11005 2002-03-09 Andrew Cagney <ac131313@redhat.com>
11006
11007 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
11008 approval''.
11009
11010 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11011
11012 * stabsread.c (read_member_functions): Fix is_stub test for
11013 static member functions, improve comment.
11014
11015 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
11016
11017 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
11018 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
11019 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
11020 commands that set boolean values.
11021 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
11022 (arm_rdi_resume): Always initialize PC.
11023 (arm_rdi_open): Don't use rslt as a boolean.
11024 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
11025 (arm_rdi_fetch_registers, arm_rdi_store_registers)
11026 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
11027 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
11028
11029 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
11030
11031 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
11032 * configure: Rebuilt.
11033
11034 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
11035
11036 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
11037 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
11038
11039 2002-03-06 Andrew Cagney <ac131313@redhat.com>
11040
11041 * cli/cli-decode.c (set_cmd_completer): New function.
11042 * command.h (set_cmd_completer): Declare.
11043 * cli/cli-decode.h (set_cmd_completer): Ditto.
11044
11045 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
11046 * cli/cli-cmds.c (init_cli_cmds): Ditto.
11047 * win32-nat.c (_initialize_inftarg): Ditto.
11048 * remote-rdi.c (_initialize_remote_rdi): Ditto.
11049 * proc-api.c (_initialize_proc_api): Ditto.
11050 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
11051 * source.c (_initialize_source): Ditto.
11052 * exec.c (_initialize_exec): Ditto.
11053 * solib.c (_initialize_solib): Ditto.
11054 * top.c (init_main): Ditto.
11055 * tracepoint.c (_initialize_tracepoint): Ditto.
11056 * symfile.c (_initialize_symfile): Ditto.
11057 * printcmd.c (_initialize_printcmd): Ditto.
11058 * infcmd.c (_initialize_infcmd): Ditto.
11059 * corefile.c (_initialize_core): Ditto.
11060
11061 2002-03-05 Andrew Cagney <ac131313@redhat.com>
11062
11063 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
11064
11065 2002-03-05 Andrew Cagney <ac131313@redhat.com>
11066
11067 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
11068
11069 2002-03-05 Andrew Cagney <ac131313@redhat.com>
11070
11071 * NEWS: Update headings, 5.2 has branched.
11072
11073 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
11074
11075 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
11076 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
11077 (register_addr, REGISTER_RAW_SIZE): Likewise.
11078 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
11079 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
11080
11081 2002-03-03 Michal Ludvig <mludvig@suse.cz>
11082
11083 * MAINTAINERS (x86-64): Add myself.
11084 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
11085 changed value_ptr -> struct value *
11086
11087 2002-03-01 David O'Brien <obrien@FreeBSD.org>
11088
11089 * configure.host (sparc64-*-freebsd): Add.
11090 * configure.tgt: Likewise.
11091 * config/sparc/fbsd.mh: New file.
11092 * config/sparc/fbsd.mt: Likewise.
11093 * config/sparc/nm-fbsd.h: Likewise.
11094 * config/sparc/tm-fbsd.h: Likewise.
11095
11096 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
11097
11098 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
11099 regformats/reg-s390x.dat.
11100
11101 2002-03-01 Andrew Cagney <ac131313@redhat.com>
11102
11103 * utils.c: Add FIXME explaining true/false problem.
11104
11105 2002-02-28 Andrew Cagney <ac131313@redhat.com>
11106
11107 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
11108
11109 2002-02-28 Michael Chastain <mec@shout.net>
11110
11111 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
11112
11113 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
11114
11115 * gdbserver/linux-s390-low.c: New file.
11116 * regformats/reg-s390.dat: New file.
11117 * regformats/reg-s390x.dat: New file.
11118 * gdbserver/configure.srv: Add S/390.
11119 * gdbserver/Makefile.in: Add S/390.
11120 * configure.tgt: Enable gdbserver for S/390.
11121
11122 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
11123
11124 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
11125 first line of the doc string for "info dos", except at the end of
11126 the sentence, since the short help stops at the first period.
11127
11128 2002-02-28 Jason Merrill <jason@redhat.com>
11129
11130 * dwarf2read.c (dwarf_cfi_name): Add new codes.
11131
11132 2002-02-27 Fred Fish <fnf@redhat.com>
11133
11134 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
11135 comment (dumy -> dummy).
11136
11137 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11138
11139 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
11140
11141 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
11142
11143 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
11144
11145 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
11146
11147 * gdbserver/acconfig.h: New file.
11148 * gdbserver/i387-fp.c: New file.
11149 * gdbserver/i387-fp.h: New file.
11150 * gdbserver/linux-x86-64.c: New file.
11151 * regformats/reg-x86-64.dat: New file.
11152 * configure.tgt: Add x86_64-*-linux* gdbserver support.
11153 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
11154 * gdbserver/configure.in: Add support for regsets.
11155 * gdbserver/config.in: Regenerate.
11156 * gdbserver/configure: Regenerate.
11157 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
11158 * gdbserver/linux-low.h: New file.
11159 * gdbserver/linux-low.c: Include "linux-low.h". Add support
11160 for regsets.
11161 * gdbserver/linux-arm-low.c: Include "linux-low.h".
11162 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
11163 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
11164 * gdbserver/linux-mips-low.c: Include "linux-low.h".
11165 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
11166 * gdbserver/linux-sh-low.c: Include "linux-low.h".
11167 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
11168 "i387-fp.h". Add PTRACE_GETREGS and friends.
11169 * gdbserver/regcache.c (supply_register): New function.
11170 (supply_register_by_name): New function.
11171 (collect_register): New function.
11172 (collect_register_by_name): New function.
11173
11174 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
11175
11176 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
11177 (config.status): Add configure.srv dependency.
11178 (server_h): Add config.h dependency.
11179
11180 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
11181
11182 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
11183 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
11184 * gdbserver/configure.srv: Change i386-*-linux* to use
11185 reg-i386-linux.o.
11186
11187 2002-02-26 Andrew Cagney <ac131313@redhat.com>
11188
11189 * x86-64-tdep.c: Re-indent. Update copyright date.
11190
11191 2002-02-26 Andrew Cagney <ac131313@redhat.com>
11192
11193 From Michal Ludvig <mludvig@suse.cz>:
11194 * x86-64-tdep.c (value.h): Delete.
11195 (gdb_assert.h): Include.
11196 (x86_64_register_convert_to_virtual,
11197 x86_64_register_convert_to_raw ): Add check which lets only
11198 floating-point values to be converted.
11199 (value_push): Delete.
11200 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
11201 (i386_gdbarch_init): Number of register_bytes fixed.
11202
11203 2002-02-26 Andrew Cagney <ac131313@redhat.com>
11204
11205 * MAINTAINERS: Add x86-64 target.
11206
11207 2002-02-26 Andrew Cagney <ac131313@redhat.com>
11208
11209 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
11210 * osfsolib.c (solib_map_sections): Ditto.
11211 * irix5-nat.c (solib_map_sections): Ditto.
11212 * corelow.c (gdb_check_format): Ditto.
11213 * symfile.c (symfile_bfd_open): Ditto.
11214 * solib.c (solib_map_sections): Ditto.
11215 Fix PR gdb/354.
11216
11217 2002-02-26 Andrew Cagney <ac131313@redhat.com>
11218
11219 * remote.c (_initialize_remote): By default, disable ``e'' and
11220 ``E'' step out-of-range packets.
11221
11222 2002-02-26 Andreas Schwab <schwab@suse.de>
11223
11224 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
11225 m68k_linux_frame_saved_pc.
11226 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
11227 in_sigtramp.
11228 (SIGCONTEXT_PC_OFFSET): Remove.
11229 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
11230 m68k_linux_sigtramp_saved_pc): New functions.
11231 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
11232 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
11233 (UCONTEXT_PC_OFFSET): Define.
11234 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
11235 non-RT and RT signal trampolines.
11236
11237 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
11238
11239 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
11240 (TARGET_NBPG, STACK_END_ADDR): Delete
11241 (VARIABLES_INSIDE_BLOCK): Delete.
11242
11243 2002-02-25 Andrew Cagney <ac131313@redhat.com>
11244
11245 * utils.c (perror_with_name): Make string parameter constant.
11246 (print_sys_errmsg): Ditto.
11247 (query): Ditto.
11248 * defs.h (perror_with_name): Update.
11249 (print_sys_errmsg): Update.
11250 (query): Update.
11251
11252 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
11253
11254 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
11255 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
11256
11257 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11258
11259 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
11260 if it already matches the current architecture from the exec file.
11261 Include arch-utils.h for gdbarch_info_init prototype.
11262 * Makefile.in (rs6000-nat.o): Update dependencies.
11263
11264 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
11265
11266 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
11267 list of exported variables.
11268
11269 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
11270
11271 * gdbserver/configure.srv: New file.
11272 * gdbserver/configure.in: Use configure.srv instead
11273 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
11274 from it.
11275 * gdbserver/configure: Regenerated.
11276 * gdbserver/terminal.h: New file.
11277 * gdbserver/Makefile.in: Update for configure changes. Remove
11278 more unneeded include paths.
11279
11280 2002-02-24 Andrew Cagney <ac131313@redhat.com>
11281
11282 From wiz at danbala:
11283 * config/sparc/tm-sp64.h: Fix grammar and typos.
11284 Fix PR gdb/287.
11285
11286 2002-02-24 Andrew Cagney <ac131313@redhat.com>
11287
11288 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
11289 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
11290 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
11291 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
11292 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
11293 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
11294 * s390-tdep.c: Ditto.
11295 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
11296 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
11297 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
11298 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
11299 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
11300 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
11301 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
11302 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
11303 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
11304 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
11305 Fix PR gdb/378.
11306
11307 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11308
11309 * lin-thread.c: Delete file.
11310 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
11311 to gdb_proc_service.h.
11312 * configure: Re-generate.
11313
11314 * ocd.c (ocd_open): Do not try to open the "ocd" device.
11315 * serial.c (serial_open): Delete check for "ocd".
11316 Fix PR gdb/349.
11317
11318 * Makefile.in (linux-thread.o): Delete target.
11319 * linux-thread.c: Delete file.
11320
11321 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
11322 renamed SH files to be consistent.
11323
11324 * symtab.c (sort_search_symbols): Use xfree.
11325
11326 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
11327
11328 * arm-linux-tdep.c (arm_linux_init_abi): Register
11329 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
11330 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
11331 definition with undef, since we don't want the sysvr4 definition.
11332 (SKIP_TRAMPOLINE_CODE): Likewise.
11333
11334 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11335
11336 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
11337
11338 * configure.in: (AC_CHECK_FUNCS) Added test for
11339 canonicalize_file_name Regenerated.
11340 * config.in, configure: Regenerated.
11341 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
11342 defined use canonicalize_file_name.
11343
11344 2002-02-23 Michael Chastain <mec@shout.net>
11345
11346 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
11347
11348 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11349
11350 * README: Remove references to cygnus.com.
11351 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
11352 dot com'' form. Remove references to cygnus.com and sourceware.
11353
11354 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11355
11356 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
11357 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
11358 1003.1-2001 no longer allows "head -1".
11359 * gdb/Makefile.in (version.c): Likewise.
11360 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
11361 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
11362 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
11363
11364 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11365
11366 * cli/cli-decode.c (cmd_cfunc_eq): New function.
11367 * command.h (cmd_cfunc_eq): Declare.
11368 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
11369
11370 * cli/cli-cmds.h (is_complete_command): Change parameter to a
11371 ``struct cmd_list_element *''.
11372 * cli/cli-cmds.c (is_complete_command): Update. Use
11373 cmd_cfunc_eq.
11374 * top.c (execute_command): Pass the command to
11375 is_complete_command.
11376 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
11377
11378 2002-02-23 Andrew Cagney <ac131313@redhat.com>
11379
11380 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
11381 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
11382 architecture defines.
11383 * s390-tdep.c (s390_gdbarch_init): Likewise.
11384
11385 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
11386
11387 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
11388 (arm_linux_push_arguments): Likewise.
11389 (arm_linux_init_abi): Register them. Also register linux-specific
11390 call_dummy_words.
11391 (find_minsym_and_objfile): Use strcmp, not STREQ.
11392 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
11393 (arm_linux_call_dummy_words): Delete declaration.
11394 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
11395 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
11396 declarations.
11397 (LOWEST_PC): Delete.
11398
11399 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11400
11401 * maint.c (print_section_info): Do not prepend `0x' to filepos
11402 output, it will be handled by local_hex_string_custom.
11403
11404 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
11405
11406 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
11407 (store_newfpe_double, store_newfpe_extended, store_fpregister)
11408 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
11409
11410 2002-02-22 Jim Blandy <jimb@redhat.com>
11411
11412 Indicate that the bcache functions don't change the strings
11413 they're passed.
11414 * bcache.h (bcache, hash): Add `const' keywords to declarations.
11415 * bcache.c (bcache, hash): Add `const' keywords to definitions.
11416
11417 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
11418
11419 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
11420
11421 2002-02-21 Christopher Faylor <cgf@redhat.com>
11422
11423 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
11424 find the complete path to a loaded DLL.
11425
11426 2002-02-21 Fred Fish <fnf@redhat.com>
11427
11428 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
11429 that marks the end of the range of a function, enter a line number
11430 entry that has a line number of zero and a PC offset that matches
11431 the end of the function. This starts a range of PC's for which no
11432 line number information is known.
11433 * symtab.c (find_pc_sect_line): If our best fit is in a range of
11434 PC's for which no line number info is found (line number is zero)
11435 then we didn't find any valid line information.
11436 * symtab.h: Document use of zero line number entry.
11437
11438 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
11439
11440 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
11441 (have_ptrace_getvrregs): Define for run time checks.
11442 (gdb_vrregset_t): New type for Altivec register handling.
11443 (fetch_register, store_register): Fetch/store altivec register
11444 when needed.
11445 (fetch_altivec_register, store_altivec_register): New functions.
11446 (supply_vrregset, fill_vrregset): New functions.
11447 (fetch_altivec_registers, store_altivec_registers): New functions.
11448 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
11449 registers as well.
11450
11451 2002-02-21 Jiri Smid <smid@suse.cz>
11452
11453 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
11454
11455 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
11456
11457 * Makefile.in (armnbsd-nat.o): Update dependencies.
11458 * armnbsd-nat.c (supply_gregset): New function. Common code to
11459 supply the integer register set.
11460 (supply_fparegset): New function. Similar for FPA registers.
11461 (fetch_regs, fetch_fp_regs): Use them.
11462 (fetch_core_registers): Likewise.
11463 (fetch_elfcore_registers): New function.
11464 (arm_netbsd_elfcore_fns): New core-file type specification.
11465 (_initialize_arm_netbsd_nat): Register it.
11466
11467 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
11468
11469 * armnbsd-nat.c: Include gdbcore.h.
11470 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
11471 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
11472 'void' to declaration, to shut up ARI.
11473 (fetch_core_registers): Make static. Rewrite using supply_register.
11474 (arm_netbsd_core_fns): New core-file type specification.
11475 (_initialize_arm_netbsd_nat): New function.
11476
11477 2002-02-21 Christopher Faylor <cgf@redhat.com>
11478
11479 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
11480 value.
11481
11482 2002-02-20 Christopher Faylor <cgf@redhat.com>
11483
11484 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
11485 fails.
11486
11487 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
11488
11489 * jv-exp.y (parse_number): Change type of implicit longs
11490 to builtin_type_uint64.
11491
11492 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
11493
11494 * gdbserver/linux-low.c (mywait): Change argument to waitpid
11495 to be an integer instead of a `union wait'.
11496
11497 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
11498
11499 * mips-linux-nat.c: Call the operating system GNU/Linux.
11500 * mips-linux-tdep.c: Likewise.
11501 * mips-tdep.c: Likewise.
11502
11503 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
11504
11505 Fix PR gdb/265.
11506 * jv-exp.y (parse_number): Handle 64-bit integers.
11507
11508 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
11509
11510 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
11511 AC_STDC_HEADERS to AC_HEADER_STDC.
11512 * gdbserver/configure: Regenerated.
11513
11514 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
11515
11516 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
11517 is defined.
11518 * sparc-tdep.c (get_longjmp_target): Likewise.
11519
11520 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
11521
11522 * News: Add news about ARM and Multi-arch. Mention the new target
11523 arm*-*-netbsd*.
11524
11525 2002-02-19 Jim Blandy <jimb@redhat.com>
11526
11527 * stabsread.c (error_type_complaint): Improve error message.
11528
11529 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
11530
11531 * gdbserver/README: Update documentation.
11532 * gdbserver/configure.in: Update configury to match documentation.
11533 * gdbserver/Makefile.in: Likewise.
11534 * gdbserver/configure: Regenerated.
11535 * gdbserver/aclocal.m4: New file, generated by aclocal.
11536 * gdbserver/config.in: New file, generated by autoheader.
11537
11538 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11539
11540 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
11541 armnbsd-nat.c.
11542
11543 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11544
11545 * arm-tdep.h (enum arm_float_model): New enum.
11546 (struct gdbarch_tdep): Add fp_model.
11547 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
11548 up floating-point conversions until we know the floating-point model
11549 in use by the inferior. Don't complain about being unable to
11550 determine the ABI of the inferior when we don't have one.
11551 (arm_extract_return_value): Support different floating-point models.
11552 (arm_store_return_value): Likewise.
11553 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
11554 ARM_FLOAT_SOFT.
11555 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
11556
11557 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11558
11559 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
11560 of ``current_gdbarch''.
11561
11562 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11563
11564 * armnbsd-nat.c : ANSIfy all function declarations.
11565 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
11566 (fetch_inferior_registers): Re-implement in terms of above.
11567 (store_register, store_regs, store_fp_register, store_fp_regs): New.
11568 (store_inferior_registers): Re-implement in terms of above.
11569
11570 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11571
11572 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
11573 kernel.
11574 * arm-linux-tdep.c: Likewise.
11575 * config/arm/tm-linux.h: Likewise.
11576
11577 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11578
11579 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
11580 * config/arm/nbsd.mt (TM_FILE): Delete.
11581 * config/arm/tm-nbsd.h: Delete.
11582
11583 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11584
11585 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
11586 Initialize CALL_DUMMY_LENGTH.
11587
11588 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11589
11590 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
11591 function.
11592 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
11593 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
11594 defines one thing and that is incorrect for this port.
11595 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
11596
11597 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
11598
11599 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
11600
11601 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
11602
11603 * win32-nat.c (display_selector): New function. Displays information
11604 about the information returned by GetThreadSelectorEntry API function.
11605 (display_selectors): New function. Displays the infomation of
11606 the selector given as argument, or of CS, DS ans FS selectors
11607 if no argument is given.
11608 ( _initialize_inftarg): Add "w32" as info prefix command.
11609 Add "info w32 selector" as command calling display_selectors.
11610
11611 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
11612
11613 * i386-tdep.c (get_longjmp_target): Fix compilation failure
11614 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
11615 if not defined.
11616
11617 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11618
11619 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
11620
11621 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11622
11623 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
11624 (arm_fix_call_dummy): Call it.
11625 (arm_call_dummy_breakpoint_offset): Delete.
11626 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
11627 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
11628
11629 2002-02-18 Andrew Cagney <ac131313@redhat.com>
11630
11631 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
11632 Default to func_frame_chain_valid.
11633 * gdbarch.h, gdbarch.c: Re-generate.
11634 * frame.h (FRAME_CHAIN_VALID): Delete definition.
11635
11636 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
11637
11638 * ppc-linux-nat.c: Update copyright.
11639 (fetch_register, store_register): Add tid parameter, don't compute
11640 tid here.
11641 (fetch_ppc_registers, store_ppc_registers): Add tid
11642 parameter. Pass it along to callees.
11643 (fetch_inferior_registers, store_inferior_registers): Compute tid
11644 here, and pass it to calleed functions.
11645 (fill_gregset, supply_fpregset): Clean up formatting.
11646
11647 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11648
11649 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
11650 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
11651
11652 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11653
11654 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
11655 * gdbarch.c gdbarch.h: Regenerate.
11656 * breakpoint.c (create_longjmp_breakpoint): Always compile this
11657 function.
11658 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
11659 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
11660 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
11661
11662 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
11663 * arm-tdep.c (arm_get_longjmp_target): New function.
11664 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
11665 this to a positive value register arm_get_longjmp_target as the
11666 longjmp handler.
11667 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
11668 (arm_linux_init_abi): Set up longjmp description in tdep.
11669 * armnbsd-nat.c (get_longjmp_target): Delete.
11670 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
11671 description in tdep.
11672 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
11673 (get_longjmp_target): Delete declaration.
11674 (GET_LONGJMP_TARGET): Delete.
11675 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
11676 (GET_LONGJMP_TARGET): Delete.
11677
11678 2002-02-17 Kevin Buettner <kevinb@redhat.com>
11679
11680 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
11681 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
11682 of ``current_gdbarch''.
11683
11684 2002-02-17 Tom Tromey <tromey@redhat.com>
11685
11686 * cli/cli-cmds.c (compare_strings): New function.
11687 (complete_command): Only print each unique item once.
11688 * completer.h (complete_line): Declare.
11689 * completer.c (complete_line): New function.
11690 (line_completion_function): Use it.
11691
11692 2002-02-16 Andrew Cagney <ac131313@redhat.com>
11693
11694 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
11695 * gdbarch.h, gdbarch.c: Re-generate.
11696
11697 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11698
11699 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
11700
11701 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11702
11703 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
11704 * valops.c (value_arg_coerce): Don't take the address of a reference
11705 to convert an argument to a reference.
11706
11707 2002-02-15 Christopher Faylor <cgf@redhat.com>
11708
11709 * win32-nat.c (get_image_name): New function.
11710 (handle_load_dll): Use get_image_name function.
11711 (get_child_debug_event): Avoid registering debug events until possibly
11712 execed process is started.
11713 (child_create_inferior): Allow invocation via shell so that command
11714 line redirection, etc. works ok.
11715 (_initialize_inftarg): Add new command: "set shell" to control whether
11716 a shell is used to start a process.
11717
11718 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11719
11720 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
11721 instead of find_register_by_number.
11722 (cannot_store_register): Likewise.
11723
11724 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
11725
11726 * dwarf2read.c: Replace fprintf (stderr, ...) by
11727 fprintf_unfiltered (gdb_stderr, ...).
11728
11729 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11730
11731 * gdbserver/gdbserver.1: Document --attach.
11732
11733 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11734
11735 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
11736 descriptions.
11737 * arm-tdep.c (arm_default_arm_le_breakpoint)
11738 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
11739 (arm_default_thumb_be_breakpoint): New. Initialize them from
11740 traditional breakpoint defines.
11741 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
11742 (arm_gdbarch_init): Initialize new breakpoint variables.
11743 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
11744 (arm_linux_init_abi): Initialize linux-specific breakpoint.
11745 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
11746 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
11747 code out to ...
11748 (arm_netbsd_init_abi_common): ... here; new function.
11749 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
11750 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
11751 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
11752 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
11753
11754 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11755
11756 * arm-tdep.h (enum arm_abi): New enum.
11757 (struct gdbarch_tdep): New structure.
11758 (LOWEST_PC): Provide a default.
11759 (arm_gdbarch_register_os_abi): Declare new function.
11760 * arm-tdep.c (arm_abi_names): New array.
11761 (process_note_abi_tag_sections): New function.
11762 (get_elfosabi): New function.
11763 (arm_gdbarch_register_os_abi): New function.
11764 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
11765 support for that ABI has been built in, then call the appropriate
11766 configuration routine. Use gdbarch_num_regs() to get the number
11767 of registers.
11768 (arm_dump_tdep): New function.
11769 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
11770 place-holder functions.
11771 (_initialize_arm_tdep): Register them.
11772 * config/arm/tm-arm.h (LOWEST_PC): Delete.
11773
11774 * armnbsd-tdep.c: New file.
11775 * Makefile.in (armnbsd-tdep.o): Add dependencies.
11776 * config/arm/nbsd.mt (TDEPFILES): Add it.
11777 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
11778
11779 * armnbsd-nat.c: Include regcache.h.
11780 * Makefile.in (armnbsd-nat.o): Update dependency list.
11781
11782 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
11783
11784 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11785
11786 * gdbserver/Makefile.in: Fix typos in target rules.
11787
11788 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11789
11790 Fix part of PR gdb/267.
11791 * linespec.c (find_methods): Handle constructors specially for now.
11792
11793 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
11794
11795 * arm-tdep.c (arm_push_arguments): Eliminate special float type
11796 handling.
11797 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
11798 standard_coerce_float_to_double().
11799
11800 2002-02-14 Christopher Faylor <cgf@redhat.com>
11801
11802 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
11803 GDBINIT_FILENAME.
11804
11805 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
11806
11807 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
11808 find_variant_by_name, because it confuses the multiarch
11809 framework. Return NULL if there isn't an architecture with the
11810 user supplied name, instead of forcing a different one without
11811 recording the change with the multiarch machinery.
11812 (find_variant_by_name): Delete.
11813
11814 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11815
11816 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
11817 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
11818
11819 2002-02-13 Martin M. Hunt <hunt@redhat.com>
11820
11821 * stack.c (print_frame_info_base): When calling
11822 print_frame_info_listing_hook, set current_source_symtab.
11823
11824 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11825
11826 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
11827 and remove unused $(INCLUDE_DIR).
11828 Add regcache.c to OBS.
11829 Add generated register protocol files to clean target.
11830 Update dependencies for new objects, obsolete old target code.
11831
11832 * gdbserver/linux-low.c: Remove all platform-specific code to
11833 new files. Remove various dead code. Update to use regcache
11834 functionality.
11835 * gdbserver/remote-utils.c (fromhex): Add return statement
11836 to quiet warning.
11837 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
11838 constant.
11839 (input_interrupt): Add integer parameter to match prototype
11840 of a signal handler.
11841 (outreg): Use register_data ().
11842 (prepare_resume_reply): Use gdbserver_expedite_regs.
11843 * gdbserver/server.c (main): Dynamically allocate own_buf because
11844 PBUFSIZ is no longer constant. Use registers_to_string () and
11845 registers_from_string ().
11846 * gdbserver/server.h: No longer include "defs.h". Add prototypes
11847 for error (), fatal (), and warning (). Update definition of
11848 PBUFSIZ to use regcache functionality. Add include guard.
11849 * gdbserver/utils.c (fatal): Add missing ``const''.
11850 (warning): New function.
11851
11852 * regformats/regdat.sh: Include "regcache.h" in generated files.
11853 Provide init_registers () function.
11854 * regformats/regdef.h: Add prototype for set_register_cache ().
11855 Add include guard.
11856
11857 * gdbserver/linux-arm-low.c: New file.
11858 * gdbserver/linux-i386-low.c: New file.
11859 * gdbserver/linux-ia64-low.c: New file.
11860 * gdbserver/linux-m68k-low.c: New file.
11861 * gdbserver/linux-mips-low.c: New file.
11862 * gdbserver/linux-ppc-low.c: New file.
11863 * gdbserver/linux-sh-low.c: New file.
11864
11865 * gdbserver/regcache.c: New file.
11866 * gdbserver/regcache.h: New file.
11867
11868 * gdbserver/low-linux.c: Removed obsolete file.
11869
11870 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11871
11872 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
11873 * config/i386/linux.mt: Likewise.
11874 * config/ia64/linux.mt: Likewise.
11875 * config/m68k/linux.mh: Likewise.
11876 * config/powerpc/linux.mh: Likewise.
11877 * config/mips/linux.mt: Likewise.
11878
11879 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
11880
11881 * config/i386/i386lynx.mh: Mark gdbserver variables
11882 as (currently) obsolete for this target.
11883 * config/i386/nbsd.mt: Likewise.
11884 * config/i386/nbsdelf.mt: Likewise.
11885 * config/m32r/m32r.mt: Likewise.
11886 * config/m68k/m68klynx.mh: Likewise.
11887 * config/m68k/nbsd.mt: Likewise.
11888 * config/m68k/sun3os4.mh: Likewise.
11889 * config/mips/vr5000.mt: Likewise.
11890 * config/ns32k/nbsd.mt: Likewise.
11891 * config/pa/hppabsd.mh: Likewise.
11892 * config/pa/hppaosf.mh: Likewise.
11893 * config/powerpc/nbsd.mt: Likewise.
11894 * config/rs6000/rs6000lynx.mh: Likewise.
11895 * config/s390/s390.mt: Likewise.
11896 * config/s390/s390x.mt: Likewise.
11897 * config/sparc/sparclynx.mh: Likewise.
11898 * config/sparc/sun4os4.mh: Likewise.
11899 * config/i386/x86-64linux.mt: Likewise.
11900 * config/sparc/linux.mh: Likewise.
11901
11902 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11903
11904 * configure.tgt: Configure gdbserver only for known working
11905 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
11906 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
11907 SUBDIRS if it is configured. Update comment for ${nativefile}.
11908 * configure: Regenerated.
11909
11910 2002-02-13 Michael Snyder <msnyder@redhat.com>
11911
11912 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
11913
11914 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
11915 (default_gcore_mach): Just return 0, work around a problem in bfd.
11916 (default_gcore_target): OK to return NULL if exec_bfd is null.
11917 (make_mem_sec): Use a cast, avoid a warning.
11918
11919 * procfs.c (find_memory_regions_callback): Use a cast instead of
11920 calling host_pointer_to_address (which complains if
11921 sizeof (host pointer) != sizeof (target pointer)).
11922 (procfs_make_note_section): Avoid overflow in psargs string.
11923
11924 * procfs.c (procfs_make_note_section): Make the default
11925 implementation return an error.
11926
11927 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
11928
11929 * procfs.c (procfs_make_note_section): Provide a default definition
11930 (for alpha-dec-osf4.0f). Fix typos.
11931
11932 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
11933
11934 * linux-proc.c: Add include of regcache.h.
11935 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
11936
11937 2002-02-13 Andrew Cagney <ac131313@redhat.com>
11938
11939 From 2002-01-18 Greg McGary <greg@mcgary.org>:
11940 * memattr.c (create_mem_region): Disallow useless empty region.
11941 Regions are half-open intervals, so allow [A..B) [B..C) as
11942 non-overlapping.
11943
11944 2002-02-13 Michael Chastain <mec@shout.net>
11945
11946 * defs.h: Kill CONST_PTR.
11947 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
11948 * c-lang.c (c_builtin_types): Likewise.
11949 * ch-lang.c (ch_builtin_types): Likewise.
11950 * f-lang.c (f_builtin_types): Likewise.
11951 * language.c (unknown_builtin_types): Likewise.
11952 * m2-lang.c (m2_builtin_types): Likewise.
11953 * p-lang.c (pascal_builtin_types): Likewise.
11954 * scm-lang.c (c_builtin_types): Likewise.
11955
11956 2002-02-13 Keith Seitz <keiths@redhat.com>
11957
11958 * arm-tdep.h (arm_get_next_pc): Add declaration.
11959
11960 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
11961
11962 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
11963 with other related struct-returning functions.
11964 (arm_extract_struct_value_address): New function.
11965 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
11966 initialize float_format, double_format and long_double_format as
11967 appropriate to the endianness of the target.
11968 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
11969 (arm_use_struct_convention): Delete declaration.
11970 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11971
11972 2002-02-13 Keith Seitz <keiths@redhat.com>
11973
11974 * defs.h (core_addr_to_string_nz): New function.
11975
11976 2002-02-13 Mark Kettenis <kettenis@gnu.org>
11977
11978 Apply missing bits of 2002-01-15 patch.
11979 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
11980 (fill_fpregset): Use i387_fill_fsave.
11981
11982 2002-02-12 Keith Seitz <keiths@redhat.com>
11983
11984 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
11985 (core_addr_to_string_nz): New function.
11986
11987 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11988
11989 * arm-linux-nat.c: Really include arm-tdep.h.
11990 * config/arm/tm-linux.h (struct type, struct value): Declare.
11991
11992 2002-02-11 Michael Snyder <msnyder@redhat.com>
11993
11994 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
11995 (gcore section): Ifdef for Solaris and Unixware only.
11996 (procfs_do_thread_registers): Unixware needs one lwpstatus
11997 per thread (not one prstatus or pstatus).
11998 (procfs_make_note_section): Iterate only over kernel threads (lwps),
11999 not over all gdb threads. For unixware, call elfcore_write_pstatus
12000 once before iterating over threads.
12001
12002 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
12003
12004 * arm-tdep.h: New file.
12005 * arm-tdep.c: Include arm-tdep.h.
12006 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
12007 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
12008 (arm_print_float_info, arm_register_type, convert_to_extended)
12009 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
12010 (arm_extract_return_value, arm_register_name): Make static.
12011 (arm_software_single_step): Similarly. Fix types in declaration.
12012 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
12013 (arm_store_return_value, arm_store_struct_return): New functions.
12014 (arm_gdbarch_init): Register the above functions. Also register
12015 call_dummy_start_offset, sizeof_call_dummy_words,
12016 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
12017 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
12018 max_register_virtual_size, register_size. Set up
12019 prologue_cache.saved_regs here, rather than ...
12020 (_initialize_arm_tdep): ... here.
12021 * config/arm/tm-arm.h (struct type, struct value): Delete forward
12022 declarations.
12023 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
12024 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
12025 (arm_print_float_info, arm_register_type, convert_to_extended)
12026 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
12027 (arm_extract_return_value, arm_register_name): Delete declarations.
12028 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
12029 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
12030 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
12031 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
12032 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
12033 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
12034 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
12035 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
12036 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
12037 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
12038 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
12039 (arm_get_next_pc): No-longer static -- these are needed by the RDI
12040 interface.
12041 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
12042 * remote-rdi.c remote-rdp.c: Likewise.
12043 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
12044 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
12045 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
12046 definition.
12047
12048 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
12049 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
12050 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
12051 from non-ARM_ prefixed definitions.
12052 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
12053 all uses of above.
12054 * remote-rdi.c remote-rdp.c: Likewise.
12055 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
12056
12057 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
12058
12059 * arm-tdep.c (arm_frameless_function_invocation)
12060 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
12061 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
12062 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
12063 (arm_pop_frame, arm_get_next_pc): Make static.
12064 (arm_gdbarch_init): Register above in gdbarch structure.
12065 (arm_read_fp): Renamed from arm_target_read_fp.
12066 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
12067 * config/arm/tm-arm.h (arm_frameless_function_invocation)
12068 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
12069 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
12070 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
12071 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
12072 (arm_pc_is_thumb_dummy): Delete declarations.
12073 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
12074 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
12075 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
12076 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
12077
12078 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
12079
12080 * symtab.c (compare_search_syms): New function.
12081 (sort_search_symbols): New function.
12082 (search_symbols): Sort symbols after searching rather than
12083 before.
12084
12085 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12086
12087 * NEWS: Linux -> GNU/Linux.
12088
12089 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12090
12091 * gdbarch.sh: For for level one methods, disallow a definition
12092 when partially multi-arched. Add comments explaining rationale.
12093 * gdbarch.h: Re-generate.
12094
12095 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12096
12097 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
12098 multi-arch partial.
12099
12100 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12101
12102 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
12103 field. Use diff -u.
12104 * gdbarch.c: Re-generate.
12105
12106 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12107
12108 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
12109 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
12110 partial.
12111
12112 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12113
12114 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
12115 multi-arch partial.
12116 (PUSH_ARGUMENTS): Switch to using predefault.
12117 * gdbarch.c: Regenerate.
12118
12119 2002-02-10 Andrew Cagney <ac131313@redhat.com>
12120
12121 * valops.c (PUSH_ARGUMENTS): Delete definition.
12122 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
12123 partial. Default to default_push_arguments.
12124 * gdbarch.h, gdbarch.c: Regenerate.
12125
12126 2002-02-09 Andrew Cagney <ac131313@redhat.com>
12127
12128 * defs.h (throw_exception): Rename return_to_top_level. Update
12129 comments.
12130 * utils.c (error_stream, internal_verror, quit): Ditto.
12131 * top.c (throw_exception, catcher): Ditto.
12132 * sparclet-rom.c (sparclet_load): Ditto.
12133 * remote.c (interrupt_query, minitelnet): Ditto.
12134 * remote-sds.c (interrupt_query): Ditto.
12135 * remote-mips.c (mips_error, mips_kill): Ditto.
12136 * ocd.c (interrupt_query): Ditto.
12137 * monitor.c (monitor_interrupt_query): Ditto.
12138 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
12139 * target.h: Update comment.
12140
12141 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
12142
12143 2002-02-09 Andrew Cagney <ac131313@redhat.com>
12144
12145 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
12146 default_double_format.
12147 * gdbarch.h, gdbarch.c: Re-generate.
12148 * findvar.c (floatformat_unknown): Delete variable definition.
12149 * doublest.h (floatformat_unknown): Delete variable declaration.
12150
12151 2002-02-09 Jim Blandy <jimb@redhat.com>
12152
12153 * stabsread.c (read_type): Add code to parse Sun's syntax for
12154 prototyped function types.
12155
12156 2002-02-09 Andrew Cagney <ac131313@redhat.com>
12157
12158 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
12159 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
12160
12161 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
12162
12163 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
12164 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
12165 now _initialize_xcoffsolib gets called again and overrides the
12166 commands from solib.c in a native configuration.
12167
12168 2002-02-09 Mark Kettenis <kettenis@gnu.org>
12169
12170 * doublest.c (store_typed_floating): Don't try to return a value.
12171 Fixes PR gdb/290.
12172
12173 2002-02-08 Jim Blandy <jimb@redhat.com>
12174
12175 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
12176 is prototyped and has no arguments, print its argument list as
12177 `(void)'.
12178
12179 2002-02-08 Chris Demetriou <cgd@broadcom.com>
12180
12181 * MAINTAINERS (write-after-approval): Add myself.
12182 (paper-trail): I've escaped!
12183
12184 2002-02-08 Christopher Faylor <cgf@redhat.com>
12185
12186 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
12187 changes.
12188 (_initialize_check_for_gdb_ini): Ditto.
12189
12190 2002-02-08 Martin M. Hunt <hunt@redhat.com>
12191
12192 * win32-nat.c (cygwin_pid_to_str): Fix typo.
12193 xaprintf -> xasprintf.
12194
12195 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
12196
12197 * win32-nat.c: Remove use of printf and sprintf functions.
12198
12199 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
12200
12201 * arm-tdep.c (arm_frame_chain_valid): Make static.
12202 (arm_push_arguments): Likewise.
12203 (arm_gdbarch_init): New function.
12204 (_initialize_arm_tdep): Call it.
12205 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
12206 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
12207 (FRAME_CHAIN_VALID): Delete.
12208 (arm_frame_chain_valid): Delete declaration.
12209 (PUSH_ARGUMENTS): Delete.
12210 (arm_push_arguments): Delete declaration.
12211 (CALL_DUMMY_P): Delete.
12212
12213 2002-02-08 Andrew Cagney <ac131313@redhat.com>
12214 Corinna Vinschen <vinschen@redhat.com>
12215
12216 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
12217 on builtin float types.
12218
12219 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
12220
12221 * utils.c: Include <curses.h> before "bfd.h".
12222 * tui/tui-hooks.c: Likewise.
12223 * tui/tui.c: Likewise.
12224 * tui/tuiCommand.c: Likewise.
12225 * tui/tuiData.c: Likewise.
12226 * tui/tuiDataWin.c: Likewise.
12227 * tui/tuiDisassem.c: Likewise.
12228 * tui/tuiGeneralWin.c: Likewise.
12229 * tui/tuiIO.c: Likewise.
12230 * tui/tuiLayout.c: Likewise.
12231 * tui/tuiRegs.c: Likewise.
12232 * tui/tuiSource.c: Likewise.
12233 * tui/tuiSourceWin.c: Likewise.
12234 * tui/tuiStack.c: Likewise.
12235 * tui/tuiWin.c: Likewise.
12236
12237 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
12238
12239 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
12240 to include space for pseudoregs as well. Update loops accordingly.
12241 (sh_fp_frame_init_saved_regs): Ditto.
12242 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
12243
12244 2002-02-07 Andrew Cagney <ac131313@redhat.com>
12245
12246 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
12247 Add Richard Earnshaw to Arm maintainers.
12248
12249 2002-02-07 Andrew Cagney <ac131313@redhat.com>
12250
12251 * defs.h (warning_begin): Delete declaration.
12252
12253 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
12254 Delete macro.
12255
12256 2002-02-07 Michael Snyder <msnyder@redhat.com>
12257
12258 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
12259 Logic bug, remove misplaced else.
12260
12261 2002-02-07 Klee Dienes <klee@apple.com>
12262
12263 * fork-inferior.c (fork_inferior): Add '!' to the list of
12264 characters that need to be quoted when building a string for the
12265 shell. Quote '!' specifically with a backslash, since CSH chokes
12266 when trying to evaluate "str!str".
12267
12268 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
12269
12270 * rdi-share/host.h: Only provide a typedef for bool if it is not
12271 defined.
12272
12273 2002-02-04 Michael Snyder <msnyder@redhat.com>
12274
12275 * breakpoint.h (enum bptype): Add new overlay event bp type.
12276 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
12277
12278 * breakpoint.c (create_internal_breakpoint): New function.
12279 (internal_breakpoint_number): Moved into create_internal_breakpoint.
12280 (create_longjmp_breakpoint): Use create_internal_breakpoint.
12281 (create_thread_event_breakpoint): Ditto.
12282 (create_solib_event_breakpoint): Ditto.
12283 (create_overlay_event_breakpoint): New function.
12284 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
12285 (update_breakpoints_after_exec): Delete and re-initialize
12286 overlay event breakpoints after an exec. Add FIXME comment
12287 about longjmp breakpoint.
12288 (print_it_typical): Ignore overlay event breakpoints.
12289 (print_one_breakpoint): Ditto.
12290 (mention): Ditto.
12291 (bpstat_what): Do not stop for overlay event breakpoints.
12292 (delete_breakpoint): Don't delete overlay event breakpoints.
12293 (breakpoint_re_set_one): Delete the overlay event breakpoint.
12294 (breakpoint_re_set): Re-create overlay event breakpoint.
12295
12296 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
12297 (overlay_manual_command): Disable overlay breakpoints.
12298 (overlay_off_command): Disable overlay breakpoints.
12299
12300 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
12301
12302 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
12303 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
12304 to here from config/tm-arm.h.
12305 (coff_sym_is_thumb): Make static.
12306 (arm_elf_make_msymbol_special): New function.
12307 (arm_coff_make_msymbol_special): New function.
12308 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
12309 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
12310 (coff_sym_is_thumb): Delete declaration.
12311 (arm_elf_make_msymbol_special): Declare.
12312 (arm_coff_make_msymbol_special): Declare.
12313 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
12314 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
12315
12316 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
12317
12318 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
12319
12320 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
12321
12322 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
12323 * gdbarch.c gdbarch.h: Regenerate.
12324 * arch-utils.c (default_print_float_info): New function.
12325 * arch-utils.h (default_print_float_info): Prototype it.
12326 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
12327 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
12328 (PRINT_FLOAT_INFO): Document it.
12329
12330 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
12331 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
12332 (PRINT_FLOAT_INFO): Define.
12333
12334 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
12335
12336 * win32-nat.c (_initialize_check_for_gdb_ini):
12337 Add typecast to sprintf argument to suppress a warning.
12338
12339 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
12340
12341 * win32-nat.c (last_sig): Changed type of variable to target_signal,
12342 to allow easier handling of pass state.
12343 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
12344 that gives exception name and address.
12345 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
12346 and set last_sig value to ourstatus->value.sig. Some missing
12347 exceptions added.
12348 (child_continue): Correctly report continue_status.
12349 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
12350 TARGET_SIGNAL_0 (new default value).
12351 (child_resume): consider sig argument passed to decide if
12352 the exception should be passed to debuggee or not.
12353
12354 2002-02-05 Michael Snyder <msnyder@redhat.com>
12355
12356 * regcache.c (fetch_register): Call target_fetch_register
12357 only if we don't call FETCH_PSEUDO_REGISTER.
12358 (store_register): Call target_store_register only if we
12359 don't call STORE_PSEUDO_REGISTER.
12360
12361 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
12362
12363 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
12364 ELF_MAKE_MSYMBOL_SPECIAL.
12365 * gdbarch.c, gdbarch.h: Regenerate.
12366 * arch-utils.c (default_make_msymbol_special): New function.
12367 * arch-utils.h (default_make_msymbol_special): Export.
12368 * elfread.c (elf_symtab_read): Compile use of
12369 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
12370 multiarched.
12371 * coffread.c (coff_symtab_read): Ditto, for
12372 COFF_MAKE_MSYMBOL_SPECIAL.
12373
12374 2002-02-05 Jim Blandy <jimb@redhat.com>
12375
12376 * solib-svr4.c (svr4_truncate_ptr): New function.
12377 (svr4_relocate_section_addresses): Do the address arithmetic with
12378 the appropriate truncation for target addresses, even when
12379 CORE_ADDR is larger than a target address.
12380
12381 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12382
12383 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
12384 to (int *).
12385
12386 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12387
12388 * gdbserver/linux-low.c (kill_inferior): Remove commented out
12389 code.
12390
12391 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12392
12393 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
12394
12395 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12396
12397 * gdbserver/linux-low.c: Remove unused include files.
12398
12399 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12400
12401 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
12402 (read_inferior_memory): Use it.
12403 (write_inferior_memory): Likewise.
12404
12405 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12406
12407 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
12408 grubbing through sys_errlist.
12409
12410 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
12411
12412 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
12413
12414 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
12415 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
12416
12417 2002-02-04 Andrew Cagney <ac131313@redhat.com>
12418
12419 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
12420 (do_sfunc, set_cmd_sfunc): New functions.
12421
12422 * command.h (struct cmd_list_element): Add field func.
12423 * cli/cli-decode.h (struct cmd_list_element): Ditto.
12424 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
12425 * cli/cli-decode.h: Ditto.
12426
12427 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
12428 (help_all, help_cmd_list): Ditto.
12429 (find_cmd, complete_on_cmdlist): Ditto.
12430 * top.c (execute_command): Ditto.
12431
12432 * cli/cli-setshow.c (do_setshow_command): Call func instead of
12433 function.sfunc.
12434
12435 * infcmd.c (notice_args_read): Fix function signature.
12436
12437 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
12438 * cli/cli-decode.c (add_set_cmd): Ditto.
12439 * utils.c (initialize_utils): Ditto.
12440 * maint.c (_initialize_maint_cmds): Ditto.
12441 * infrun.c (_initialize_infrun): Ditto.
12442 * demangle.c (_initialize_demangler): Ditto.
12443 * remote.c (add_packet_config_cmd): Ditto.
12444 * mips-tdep.c (_initialize_mips_tdep): Ditto.
12445 * cris-tdep.c (_initialize_cris_tdep): Ditto.
12446 * proc-api.c (_initialize_proc_api): Ditto.
12447 * kod.c (_initialize_kod): Ditto.
12448 * valprint.c (_initialize_valprint): Ditto.
12449 * top.c (init_main): Ditto.
12450 * infcmd.c (_initialize_infcmd): Ditto.
12451 * corefile.c (_initialize_core): Ditto.
12452 * arm-tdep.c (_initialize_arm_tdep): Ditto.
12453 * arch-utils.c (initialize_current_architecture): Ditto.
12454 (_initialize_gdbarch_utils): Ditto.
12455 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
12456
12457 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
12458 * wince.c (_initialize_inftarg): Ditto.
12459 * symfile.c (_initialize_symfile): Ditto.
12460 * mips-tdep.c (_initialize_mips_tdep): Ditto.
12461 * language.c (_initialize_language): Ditto.
12462 * arc-tdep.c (_initialize_arc_tdep): Ditto.
12463
12464 2002-02-04 Michael Snyder <msnyder@redhat.com>
12465
12466 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
12467
12468 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
12469
12470 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
12471 Add rules for building the register data files.
12472
12473 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
12474
12475 * regformats/regdat.sh: Add braces to the definition of
12476 expedite_regs_${arch}.
12477
12478 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
12479
12480 * regformats/regdef.h (struct reg): Add comment describing the
12481 requirements for offset and size fields.
12482
12483 2002-02-04 Andreas Schwab <schwab@suse.de>
12484
12485 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
12486 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
12487
12488 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
12489
12490 * gdbarch.sh (copyright): Update years in generated header.
12491 (SMASH_TEXT_ADDRESS): Add rule.
12492 * gdbarch.h, gdbarch.c: Re-generate.
12493 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
12494 * dbxread.c: Likewise.
12495 * dwarfread.c: Likewise.
12496 * elfread.c: Likewise.
12497 * somread.c: Likewise.
12498
12499 * arm-tdep.c (arm_smash_text_address): New function.
12500 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
12501
12502 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
12503
12504 Add support for hardware watchpoints on win32 native.
12505 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
12506 CONTEXT_DEBUG_REGISTERS.
12507 (dr variable): New variable. Static array containing a local copy
12508 of debug registers.
12509 (debug_registers_changed): New variable. Reflects when debug registers
12510 are changed and need to be written to inferior.
12511 (debug_registers_used): New variable. Reflects when any debug register
12512 was set, used when new threads are created.
12513 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
12514 i386-nat code.
12515 (thread_rec): Set dr array if id is the thread of current_event .
12516 (child_continue, child_resume): Change the debug registers for all
12517 threads if debug_registers_changed.
12518 (child_add_thread): Change the debug registers if debug_registers_used.
12519 * config/i386/cygwin.mh: Add use of i386-nat.o file.
12520 Link nm.h to new nm-cygwin.h file.
12521 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
12522 of hardware registers.
12523
12524 2002-02-03 Andrew Cagney <ac131313@redhat.com>
12525
12526 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
12527 Restore behavour broken by 2002-01-20 Andrew Cagney
12528 <ac131313@redhat.com> IEEE_FLOAT removal.
12529
12530 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
12531
12532 * c-valprint.c (c_val_print): Pass a proper valaddr to
12533 cp_print_class_method.
12534 * valops.c (search_struct_method): If there is only one method
12535 and args is NULL, return that method.
12536
12537 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
12538
12539 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
12540 accessing tag_name directly.
12541
12542 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
12543
12544 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
12545 of accessing tag_name directly.
12546
12547 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
12548
12549 PR gdb/280
12550 * gdbtypes.c (replace_type): New function.
12551 * gdbtypes.h (replace_type): Add prototype.
12552 * stabsread.c (read_type): Use replace_type.
12553
12554 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
12555
12556 * Makefile.in (memattr.o): Add missing dependencies rule.
12557
12558 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
12559
12560 * breakpoint.c (break_at_finish_command): Really export.
12561 (break_at_finish_at_depth_command): Ditto.
12562 (tbreak_at_finish_command): Ditto.
12563 * hppa-tdep.c: Include completer.h.
12564 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
12565 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
12566
12567 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12568
12569 * utils.c (do_write): New function.
12570 (error_stream): Rewrite combining the code from error_begin and
12571 verror.
12572 (verror): Rewrite using error_stream.
12573 (error_begin): Delete function.
12574
12575 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12576
12577 * utils.c (error_begin): Make static.
12578 * defs.h (error_begin): Delete declaration.
12579
12580 * linespec.c (cplusplus_error): Replace cplusplus_hint.
12581 (decode_line_1): Use cplusplus_error instead of error_begin,
12582 cplusplus_hint and return_to_top_level.
12583 * coffread.c (coff_symfile_read): Use error instead of error_begin
12584 and return_to_top_level.
12585 * infrun.c (default_skip_permanent_breakpoint): Ditto.
12586
12587 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12588
12589 * language.h (type_error, range_error): Make string parameter
12590 constant.
12591 * language.c (warning_pre_print): Delete extern declaration.
12592 * dwarfread.c (warning_pre_print): Ditto.
12593 * language.c (type_error, range_error): Rewrite to use verror and
12594 vwarning instead of warning_begin.
12595
12596 2002-02-01 Michael Snyder <msnyder@redhat.com>
12597
12598 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
12599 (set_ignore_count): Move misplaced comment back where it belongs.
12600
12601 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12602
12603 * command.h (NO_FUNCTION): Delete macro.
12604 * cli/cli-decode.h (NO_FUNCTION): Ditto.
12605 * top.c (execute_command): Replace NO_FUNCTION with NULL.
12606 * tracepoint.c (_initialize_tracepoint): Ditto.
12607 * cli/cli-decode.c (add_set_cmd): Ditto.
12608 * cli/cli-cmds.c (init_cli_cmds): Ditto.
12609
12610 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
12611
12612 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
12613 Update ``this'' pointer when calling virtual functions.
12614
12615 2002-02-01 Michael Snyder <msnyder@redhat.com>
12616
12617 * breakpoint.c (create_temp_exception_breakpoint): Delete.
12618 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
12619
12620 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
12621
12622 * regformats/reg-arm.dat: New file.
12623 * regformats/reg-i386.dat: New file.
12624 * regformats/reg-ia64.dat: New file.
12625 * regformats/reg-m68k.dat: New file.
12626 * regformats/reg-mips.dat: New file.
12627 * regformats/reg-ppc.dat: New file.
12628 * regformats/reg-sh.dat: New file.
12629 * regformats/regdef.h: New file.
12630 * regformats/regdat.sh: New file.
12631
12632 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
12633
12634 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
12635 (arm_frame_args_address, arm_frame_locals_address): New functions.
12636 (arm_frame_num_args): New function.
12637 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
12638 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
12639 (FRMA_NUM_ARGS): Call arm_frame_num_args.
12640
12641 2002-01-31 Michael Snyder <msnyder@redhat.com>
12642
12643 * breakpoint.c (break_at_finish_command): Export.
12644 (break_at_finish_at_depth_command): Export.
12645 (tbreak_at_finish_command): Export.
12646 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
12647 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
12648 "txbreak" commands, which are HPPA specific.
12649
12650 * printcmd.c (disassemble_command): Remove an ancient
12651 artifact of an old merge.
12652
12653 * symfile.h (enum overlay_debugging_state):
12654 Define enum constant values for overlay mode.
12655 * symfile.c (overlay_debugging): Use enums instead of literals.
12656 (overlay_is_mapped, overlay_auto_command,
12657 overlay_manual_command): Ditto.
12658
12659 * breakpoint.c (insert_breakpoints, remove_breakpoint,
12660 breakpoint_here_p, breakpoint_inserted_here_p,
12661 breakpoint_thread_match, bpstat_stop_status,
12662 describe_other_breakpoints, check_duplicates, clear_command):
12663 Coding standard fixes.
12664
12665 * target.c (target_xfer_memory): Add spaces, coding standard.
12666 (do_xfer_memory): Add missing line to trust-readonly
12667 code: check bfd SEC_READONLY flag for section.
12668
12669 2002-01-31 Andrew Cagney <ac131313@redhat.com>
12670
12671 * PROBLEMS: Fix typo, 5.1->5.1.1.
12672
12673 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
12674
12675 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
12676 data symbols, since we search based on textlow and texthigh.
12677 (find_pc_sect_symtab): Likewise.
12678
12679 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12680
12681 * defs.h (vwarning): Declare.
12682 * utils.c (vwarning): New function.
12683 (warning): Call vwarning.
12684 (warning_begin): Delete function.
12685
12686 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
12687 the warning message.
12688 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
12689 warning_begin.
12690
12691 2002-01-30 Michael Snyder <msnyder@redhat.com>
12692
12693 * NEWS: Mention "set trust-readonly-sections" command.
12694 Mention generate-core-file command.
12695
12696 2002-01-15 Michael Snyder <msnyder@redhat.com>
12697
12698 * target.c: New command, "set trust-readonly-sections on".
12699 (do_xfer_memory): Honor the suggestion to trust readonly sections
12700 by reading them from the object file instead of from the target.
12701 (initialize_targets): Register command "set trust-readonly-sections".
12702
12703 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12704
12705 * parse.c (target_map_name_to_register): Simplify, search regs and
12706 pseudo-regs using a single loop.
12707
12708 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12709
12710 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
12711
12712 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
12713
12714 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
12715 * config/i386/i386v42mp.mh: Add i387-nat.o .
12716 * i386v4-nat.c: Include i387-nat.h.
12717 (supply_fpregset): Use i387_supply_fsave.
12718 (fill_fpregset): Use i387_fill_fsave.
12719
12720 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
12721
12722 * arm-tdep.c (arm_call_dummy_words): Define.
12723 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
12724 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
12725 (CALL_DUMMY_WORDS): Define.
12726 (arm_call_dummy_words): Declare.
12727 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
12728 (arm_linux_call_dummy_words): Declare.
12729
12730 2002-01-30 Andreas Schwab <schwab@suse.de>
12731
12732 * m68klinux-nat.c: Fix last change to use regcache_collect
12733 instead of referencing registers[] directly.
12734
12735 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12736
12737 * parse.c (target_map_name_to_register): Delete code wrapped in
12738 #ifdef REGISTER_NAME_ALIAS_HOOK.
12739
12740 2002-01-28 Michael Snyder <msnyder@redhat.com>
12741
12742 * regcache.c (legacy_read_register_gen): Need to be able to
12743 read pseudo-register as well as real register.
12744 (legacy_write_register_gen): Ditto.
12745
12746 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12747
12748 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12749 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
12750 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
12751 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
12752 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
12753 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
12754 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
12755 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
12756 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
12757 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12758 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
12759 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
12760 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
12761 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
12762 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
12763 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
12764 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
12765 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
12766 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
12767 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
12768
12769 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12770
12771 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
12772 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
12773 (initialize_current_architecture): Update target_byte_order using
12774 information from BFD.
12775 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
12776 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
12777
12778 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12779
12780 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
12781 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
12782
12783 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
12784 #ifdef INVALID_FLOAT.
12785 * infcmd.c (do_registers_info): Ditto.
12786 * values.c (unpack_double): Ditto. Add comment.
12787
12788 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
12789 already commented out.
12790
12791 2002-01-26 Andreas Schwab <schwab@suse.de>
12792
12793 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
12794 * m68klinux-nat.c: Update ptrace interface for fetching/storing
12795 registers and add support for PTRACE_GETREGS.
12796
12797 2002-01-24 Andrew Cagney <ac131313@redhat.com>
12798
12799 GDB 5.1.1 released from 5.1 branch.
12800 * NEWS: Add 5.1.1 news.
12801 * README: Sync with 5.1 branch.
12802
12803 2002-01-23 Fred Fish <fnf@redhat.com>
12804
12805 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
12806 stabstring on initial malloc. Reallocing will copy it for us,
12807 if necessary.
12808
12809 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12810
12811 * Makefile.in (hpread_h): Delete.
12812 (HFILES_NO_SRCDIR): Remove hpread.h.
12813 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
12814 (hpread.o): Update dependencies.
12815 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
12816
12817 * hp-psymtab-read.c: Remove file.
12818 * hp-symtab-read.c: Remove file.
12819 * hpread.h: Remove file.
12820
12821 * hpread.c: Merge all contents of hp-psymtab-read.c,
12822 hp-symtab-read.c and hpread.h into this file, as it was prior to
12823 January 1999.
12824
12825 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
12826 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
12827 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
12828 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
12829
12830 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12831
12832 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
12833 fill_gregset): Call gdbarch_tdep() just once, assign result to
12834 variable and use that, instead of calling the function several
12835 times.
12836
12837 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
12838
12839 * configure.host: Accept sparcv9 as alias for sparc64.
12840 * configure.tgt: Likewise.
12841
12842 2002-01-22 Kevin Buettner <kevinb@redhat.com>
12843
12844 * solib-aix5.c (build_so_list_from_mapfile)
12845 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
12846 arguments is not reversed.
12847 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
12848 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
12849
12850 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
12851
12852 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
12853 modified version of obsolete sh_fetch_pseudo_register.
12854 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
12855 (sh4_register_read): New function.
12856 (sh_pseudo_register_write): New function. Renamed and modified
12857 version of obsolete sh_store_pseudo_register.
12858 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
12859 (sh4_register_write): New function.
12860 (sh_gdbarch_init): Remove setting of gdbarch function
12861 fetch_pseudo_register and store_pseudo_register. Remove setting of
12862 register_convert_to_raw, register_convert_to_virtual,
12863 register_convertible.
12864 (sh_sh4_register_convertible): Delete. No longer needed. All is
12865 taken care by architecture specific functions
12866 register_read/register_write.
12867 (sh_sh4_register_convert_to_virtual): Make static.
12868 (sh_sh4_register_convert_to_raw): Ditto.
12869
12870 2002-01-22 Andrew Cagney <ac131313@redhat.com>
12871
12872 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
12873 (floatformat_is_nan, floatformat_mantissa): Ditto.
12874
12875 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
12876 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
12877 builtin_type_ieee_double_little,
12878 builtin_type_ieee_double_littlebyte_bigword,
12879 builtin_type_m68881_ext, builtin_type_i960_ext,
12880 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
12881 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
12882 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
12883 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
12884
12885 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
12886
12887 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
12888 parameter. Set frameless flag if it exists and depended of
12889 whether the scanned function is frameless or not.
12890 (xstormy16_skip_prologue): If function is frameless, return
12891 result of xstormy16_scan_prologue().
12892 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
12893 call.
12894
12895 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
12896
12897 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
12898 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
12899 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
12900 sh_sh4_register_byte, sh_sh4_register_raw_size,
12901 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
12902 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
12903 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
12904 sh_store_pseudo_register, sh_do_pseudo_register): Call
12905 gdbarch_tdep() just once, assign result to variable and use that,
12906 instead of calling the function several times.
12907
12908 2002-01-20 Mark Kettenis <kettenis@gnu.org>
12909
12910 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
12911 macros instead of LAST_FPU_CTRL_REGNUM.
12912 (store_register): Likewise.
12913
12914 2002-01-21 Jim Blandy <jimb@redhat.com>
12915
12916 * infcmd.c (run_command): Check that the `exec' target layer's BFD
12917 is up-to-date before running the program, not just when a program
12918 exits.
12919
12920 2002-01-21 Fred Fish <fnf@redhat.com>
12921
12922 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
12923 when we have found all instructions we are looking for.
12924
12925 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12926
12927 * arm-tdep.c (arm_register_name): New function.
12928 (arm_registers_names): Make static.
12929 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
12930 (arm_register_name): Declare.
12931 (REGISTER_NAME): Use it.
12932
12933 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12934 Kevin Buettner <kevinb@redhat.com>
12935
12936 Convert arm targets to new FRAME interface.
12937 * arm-tdep.c (struct frame_extra_info): Remove fsr.
12938 (arm_frame_find_save_regs): Delete.
12939 (arm_frame_init_saved_regs): New.
12940 (arm_init_extra_frame_info): Alloacte saved_regs as required.
12941 Allocate extra_info as required. Convert all uses of fsr.regs
12942 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
12943 to use extra_info.
12944 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
12945 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
12946 (check_prologue_cache, save_prologue_cache): Likewise.
12947 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
12948 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
12949 (FRAME_FIND_SAVED_REGS): Delete.
12950 (arm_frame_find_saved_regs): Delete prototype.
12951 (arm_frame_init_saved_regs): New prototype.
12952 (FRAME_INIT_SAVED_REGS): Define.
12953
12954 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12955
12956 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
12957
12958 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12959
12960 From Jeff Law <law@redhat.com>:
12961 * infttrace.c: Include <sys/pstat.h>.
12962 (child_pid_to_exec_file): Revamp. Use pstat call to get the
12963 exec file if the ttrace equivalent fails.
12964
12965 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12966
12967 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
12968 (closeLogFile): Ditto.
12969
12970 2002-01-20 Michael Chastain <mec@shout.net>
12971
12972 * top.c (print_gdb_version): Bump copyright year to 2002.
12973
12974 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12975
12976 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
12977 Zannoni and Eli Zaretskii.
12978
12979 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12980
12981 * buildsym.c: Update copyright years.
12982 * c-typeprint.c: Likewise.
12983 * dwarf2read.c: Likewise.
12984 * f-typeprint.c: Likewise.
12985 * gdbtypes.c: Likewise.
12986 * gdbtypes.h: Likewise.
12987 * hp-symtab-read.c: Likewise.
12988 * hpread.c: Likewise.
12989 * mdebugread.c: Likewise.
12990 * p-typeprint.c: Likewise.
12991
12992 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12993
12994 * remote-sim.c (gdbsim_open): Simplify code testing the macro
12995 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
12996 byte-order selectable.
12997 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
12998 * arch-utils.c: Ditto.
12999 (set_endian): Ditto.
13000 (set_endian_from_file): Ditto.
13001 * gdbserver/low-sim.c (create_inferior): Ditto.
13002 * gdbarch.sh: Ditto.
13003 * gdbarch.h: Re-generate.
13004 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
13005 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
13006 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
13007 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
13008 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
13009 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
13010 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
13011 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
13012 macro definition.
13013 * config/mips/tm-wince.h: Remove #undef of macro
13014 TARGET_BYTE_ORDER_SELECTABLE.
13015 * config/sh/tm-wince.h: Ditto.
13016
13017 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
13018
13019 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
13020 member function fields. Add accessor macro
13021 TYPE_FN_FIELD_ARTIFICIAL.
13022 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
13023 * c-typeprint.c (c_type_print_base): Skip artificial member
13024 functions.
13025
13026 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
13027
13028 * f-typeprint.c: Delete unused function f_type_print_args.
13029 * p-typeprint.c: Delete unused function pascal_type_print_args.
13030
13031 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
13032
13033 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
13034 comment. Add ``artificial'' to ``union field_location''.
13035
13036 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
13037
13038 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
13039 * mdebugread.c (parse_symbol): Likewise.
13040 * stabsread.c (define_symbol): Likewise.
13041 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
13042 initializing TYPE_FIELD_BITPOS to n (obsolete).
13043 (hpread_doc_function_type): Likewise.
13044 * hpread.c (hpread_function_type): Likewise.
13045
13046 2002-01-20 Andrew Cagney <ac131313@redhat.com>
13047
13048 * configure.in (host_makefile_frag): Only require a host makefile
13049 fragment when a native build.
13050 * configure: Re-generate.
13051
13052 2002-01-20 Andrew Cagney <ac131313@redhat.com>
13053
13054 * doublest.h (floatformat_from_type): Declare.
13055 * doublest.c (floatformat_from_type): New function.
13056 (convert_typed_floating): Use.
13057
13058 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
13059 call to function floatformat_from_type.
13060
13061 * gdbarch.sh (IEEE_FLOAT): Delete.
13062 * gdbarch.h, gdbarch.c: Re-generate.
13063 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
13064 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
13065 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
13066 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
13067 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
13068 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
13069 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
13070 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
13071 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
13072 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
13073 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
13074 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
13075
13076 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
13077 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
13078 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
13079 * sh-tdep.c (sh_gdbarch_init): Ditto.
13080 * mips-tdep.c (mips_gdbarch_init): Ditto.
13081 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
13082 * cris-tdep.c (cris_gdbarch_init): Ditto.
13083
13084 2002-01-20 Jiri Smid <smid@suse.cz>
13085
13086 * configure.host, configure.tgt: Support x86-64.
13087 * NEWS: Note new target x86-64.
13088
13089 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
13090 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
13091 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
13092 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
13093 x86-64-linux-nat.o): Fix dependencies.
13094
13095 2002-01-19 Andrew Cagney <ac131313@redhat.com>
13096
13097 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
13098 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
13099 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
13100 * config/sparc/xm-sun4os4.h: Delete file.
13101 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
13102
13103 2002-01-19 Andrew Cagney <ac131313@redhat.com>
13104
13105 * config/sparc/sparclynx.mh (XM_FILE): Delete.
13106 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
13107 * config/m68k/m68klynx.mh (XM_FILE): Delete.
13108 * config/i386/i386lynx.mh (XM_FILE): Delete.
13109 * config/rs6000/xm-rs6000ly.h: Delete file.
13110 * config/sparc/xm-sparclynx.h: Delete file.
13111 * config/m68k/xm-m68klynx.h: Delete file.
13112 * config/i386/xm-i386lynx.h: Delete file.
13113 * config/xm-lynx.h: Delete file.
13114 * config/djgpp/fnchange.lst: Update.
13115
13116 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
13117
13118 * alpha-tdep.c (alpha_register_byte): New function.
13119 (alpha_register_raw_size): Ditto.
13120 (alpha_register_virtual_size): Ditto.
13121 (alpha_skip_prologue_internal): Renamed from
13122 alpha_skip_prologue.
13123 (alpha_skip_prologue): New version that calls
13124 alpha_skip_prologue_internal.
13125 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
13126 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
13127 second argument from alpha_skip_prologue.
13128 (REGISTER_BYTE): Use alpha_register_byte.
13129 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
13130 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
13131 (FRAMELESS_FUNCTION_INVOCATION): Use
13132 generic_frameless_function_invocation_not.
13133 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
13134 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
13135
13136 2002-01-19 Andrew Cagney <ac131313@redhat.com>
13137
13138 * config/mips/xm-news-mips.h: Delete file.
13139 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
13140
13141 * config/m88k/xm-m88k.h: Delete file.
13142 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
13143 * config/m88k/xm-delta88v4.h: Ditto.
13144 * config/m88k/xm-delta88.h: Ditto.
13145
13146 * config/alpha/xm-fbsd.h: Delete file.
13147 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
13148
13149 * config/sparc/xm-sparc.h: Delete file.
13150 * Makefile.in (xm-sun4os4.h): Delete dependency.
13151 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
13152 * config/sparc/xm-sun4os4.h: Ditto.
13153 * config/sparc/xm-linux.h: Ditto.
13154
13155 * config/i386/xm-windows.h: Delete file.
13156
13157 2002-01-19 Andrew Cagney <ac131313@redhat.com>
13158
13159 * utils.c: Include <sys/param.h> for MAXPATHLEN.
13160 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
13161
13162 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
13163
13164 * alpha-tdep.c (alpha_call_dummy_words): New.
13165 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
13166 (CALL_DUMMY_P): Define.
13167 (CALL_DUMMY_WORDS): Define.
13168 (SIZEOF_CALL_DUMMY_WORDS): Define.
13169
13170 2002-01-19 Per Bothner <per@bothner.com>
13171
13172 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
13173 isn't NULL, which can happen with some gcj-3.x-produced code.
13174
13175 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
13176
13177 * alpha-tdep.c (alpha_register_virtual_type): New function.
13178 (alpha_init_frame_pc_first): Ditto.
13179 (alpha_fix_call_dummy): Ditto.
13180 (alpha_store_struct_return): Ditto.
13181 (alpha_extract_struct_value_address): Ditto.
13182 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
13183 alpha_register_virtual_type.
13184 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
13185 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
13186 alpha_extract_struct_value_address.
13187 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
13188 (INIT_FRAME_PC): Use init_frame_pc_noop.
13189 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
13190
13191 2002-01-19 Mark Kettenis <kettenis@gnu.org>
13192
13193 * i386gnu-nat.c: Include "i386-tdep.h".
13194 (fetch_fpregs): Simplify code dealing with uninitialized floating
13195 point states such that it doesn't require FP7_REGNUM.
13196
13197 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13198
13199 * alpha-tdep.c (frame_extra_info): New.
13200 (alpha_find_saved_regs): Make static. Use
13201 frame->extra_info.
13202 (alpha_frame_init_saved_regs): New function.
13203 (alpha_frame_saved_pc): Use frame->extra_info.
13204 (temp_saved_regs): Don't declare as struct frame_saved_regs.
13205 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
13206 (init_extra_frame_info): Rename to...
13207 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
13208 (alpha_print_extra_frame_info): New function.
13209 (alpha_frame_locals_address): Ditto.
13210 (alpha_frame_args_address): Ditto.
13211 (alpha_pop_frame): Use frame->extra_info.
13212 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
13213 alpha_frame_args_address.
13214 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
13215 (alpha_find_saved_regs): Remove prototype.
13216 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
13217 (EXTRA_FRAME_INFO): Remove.
13218 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
13219 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
13220
13221 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13222
13223 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
13224 (alpha_cannot_fetch_register): Ditto.
13225 (alpha_cannot_store_register): Ditto.
13226 (alpha_register_convertible): Ditto.
13227 (alpha_use_struct_convention): Ditto.
13228 * config/alpha/tm-alpha.h: Update copyright years.
13229 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
13230 (INNER_THAN): Use core_addr_lessthan.
13231 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
13232 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
13233 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
13234 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
13235 (FRAME_CHAIN): Remove unnecessary cast.
13236
13237 2002-01-18 Andrew Cagney <ac131313@redhat.com>
13238
13239 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
13240 obsolete.
13241
13242 2002-01-18 Andrew Cagney <ac131313@redhat.com>
13243
13244 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
13245 * monitor.c, remote-array.c, remote-bug.c: Ditto.
13246 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
13247 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
13248 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
13249 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
13250 * x86-64-linux-nat.c: Ditto.
13251
13252 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13253
13254 * alpha-tdep.c (alpha_register_name): New function.
13255 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
13256 (REGISTER_NAME): Define.
13257
13258 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13259
13260 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
13261
13262 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13263
13264 * alpha-tdep.c: Update copyright years.
13265 (alpha_next_pc): New function.
13266 (alpha_software_single_step): Ditto.
13267 * config/alpha/tm-alpha.h: Add prototype for
13268 alpha_software_single_step.
13269
13270 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
13271
13272 * alphabsd-nat.c: Update copyright years.
13273 (fill_gregset): Use regcache_collect.
13274 (fill_fpregset): Likewise.
13275 (fetch_inferior_registers): Only fetch integer registers
13276 if requested to do so.
13277 (store_inferior_registers): Only store integer registers
13278 if requested to do so.
13279
13280 2002-01-17 Andrew Cagney <ac131313@redhat.com>
13281
13282 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
13283 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
13284 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
13285 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
13286 * config/alpha/fbsd.mh (XDEPFILES): Delete.
13287 * config/arm/linux.mh (XDEPFILES): Delete.
13288 * config/arm/nbsd.mh (XDEPFILES): Delete.
13289 * config/i386/i386dgux.mh (XDEPFILES): Delete.
13290 * config/i386/i386sol2.mh (XDEPFILES): Delete.
13291 * config/i386/i386m3.mh (XDEPFILES): Delete.
13292 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
13293 * config/i386/i386gnu.mh (XDEPFILES): Delete.
13294 * config/i386/fbsd.mh (XDEPFILES): Delete.
13295 * config/i386/i386bsd.mh (XDEPFILES): Delete.
13296 * config/i386/i386sco5.mh (XDEPFILES): Delete.
13297 * config/i386/i386v4.mh (XDEPFILES): Delete.
13298 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
13299 * config/i386/i386sco4.mh (XDEPFILES): Delete.
13300 * config/i386/i386aix.mh (XDEPFILES): Delete.
13301 * config/i386/go32.mh (XDEPFILES): Delete.
13302 * config/i386/cygwin.mh (XDEPFILES): Delete.
13303 * config/i386/i386lynx.mh (XDEPFILES): Delete.
13304 * config/i386/i386mach.mh (XDEPFILES): Delete.
13305 * config/i386/i386v32.mh (XDEPFILES): Delete.
13306 * config/i386/linux.mh (XDEPFILES): Delete.
13307 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
13308 * config/i386/ncr3000.mh (XDEPFILES): Delete.
13309 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
13310 * config/i386/i386sco.mh (XDEPFILES): Delete.
13311 * config/i386/i386v.mh (XDEPFILES): Delete.
13312 * config/i386/nbsd.mh (XDEPFILES): Delete.
13313 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
13314 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
13315 * config/i386/symmetry.mh (XDEPFILES): Delete.
13316 * config/i386/obsd.mh (XDEPFILES): Delete.
13317 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
13318 * config/ia64/linux.mh (XDEPFILES): Delete.
13319 * config/ia64/aix.mh (XDEPFILES): Delete.
13320 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
13321 * config/m68k/dpx2.mh (XDEPFILES): Delete.
13322 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
13323 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
13324 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
13325 * config/m68k/linux.mh (XDEPFILES): Delete.
13326 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
13327 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
13328 * config/m68k/nbsd.mh (XDEPFILES): Delete.
13329 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
13330 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
13331 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
13332 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
13333 * config/m88k/delta88.mh (XDEPFILES): Delete.
13334 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
13335 * config/m88k/m88k.mh (XDEPFILES): Delete.
13336 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
13337 * config/mips/linux.mh (XDEPFILES): Delete.
13338 * config/mips/irix6.mh (XDEPFILES): Delete.
13339 * config/mips/irix5.mh (XDEPFILES): Delete.
13340 * config/mips/irix4.mh (XDEPFILES): Delete.
13341 * config/mips/irix3.mh (XDEPFILES): Delete.
13342 * config/mips/decstation.mh (XDEPFILES): Delete.
13343 * config/mips/mipsm3.mh (XDEPFILES): Delete.
13344 (NATDEPFILES): Move core-aout.o to here.
13345 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
13346 * config/pa/hpux1020.mh (XDEPFILES): Delete.
13347 * config/pa/hppabsd.mh (XDEPFILES): Delete.
13348 * config/pa/hppahpux.mh (XDEPFILES): Delete.
13349 * config/pa/hpux11w.mh (XDEPFILES): Delete.
13350 * config/pa/hppaosf.mh (XDEPFILES): Delete.
13351 * config/pa/hpux11.mh (XDEPFILES): Delete.
13352 * config/powerpc/aix.mh (XDEPFILES): Delete.
13353 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
13354 * config/powerpc/linux.mh (XDEPFILES): Delete.
13355 * config/romp/rtbsd.mh: Rename XDEPFILES.
13356 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
13357 * config/rs6000/aix4.mh (XDEPFILES): Delete.
13358 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
13359 * config/s390/s390.mh (XDEPFILES): Delete.
13360 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
13361 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
13362 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
13363 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
13364 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
13365 * config/sparc/nbsd.mh (XDEPFILES): Delete.
13366 * config/sparc/linux.mh (XDEPFILES): Delete.
13367 * config/vax/vaxult.mh (XDEPFILES): Delete.
13368 * config/vax/vaxult2.mh (XDEPFILES): Delete.
13369 * Makefile.in (DEPFILES): Remove XDEPFILES.
13370
13371 2002-01-17 Andrew Cagney <ac131313@redhat.com>
13372
13373 * utils.c (internal_verror): Fix comments, default is yes not no.
13374 Update queries to match. Default to quit and dump core.
13375
13376 2002-01-17 Andrew Cagney <ac131313@redhat.com>
13377
13378 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
13379 copyright.
13380 * defs.h, event-top.c, gdbcmd.h: Ditto.
13381 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
13382 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
13383 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
13384 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
13385 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
13386 * mi/mi-main.c:Ditto.
13387
13388 * stack.c, symfile.c: Update copyright.
13389
13390 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
13391
13392 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
13393 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
13394 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
13395 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
13396
13397 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
13398
13399 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
13400 * gdbserver/low-lynx.c (myattach): Likewise.
13401 * gdbserver/low-nbsd.c (myattach): Likewise.
13402 * gdbserver/low-sim.c (myattach): Likewise.
13403 * gdbserver/low-sparc.c (myattach): Likewise.
13404 * gdbserver/low-sun3.c (myattach): Likewise.
13405
13406 * gdbserver/low-linux.c (myattach): New function.
13407
13408 * gdbserver/server.c (attach_inferior): New function.
13409 (main): Handle "--attach".
13410
13411 2002-01-16 Andrew Cagney <ac131313@redhat.com>
13412
13413 * MAINTAINERS (language support): Daniel Jacobwitz is C++
13414 maintainer.
13415
13416 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
13417
13418 * c-typeprint.c (is_type_conversion_operator): Add additional
13419 check for non-conversion operators.
13420
13421 2002-01-15 Michael Snyder <msnyder@redhat.com>
13422
13423 * linux-proc.c: Add "info proc" command, a la procfs.c.
13424 (read_mapping): New function, abstract and re-use code.
13425 (linux_find_memory_regions): Use new func read_mapping.
13426 (linux_info_proc_cmd): New function, implement "info proc".
13427 (_initialize_linux_proc): Add new command "info proc".
13428
13429 2002-01-15 Michael Snyder <msnyder@redhat.com>
13430
13431 * symfile.c (generic_load): Use bfd_map_over_sections method
13432 instead of manipulating bfd structure members directly.
13433 (add_section_size_callback): New function, bfd sections callback
13434 used by generic_load.
13435 (load_sections_callback): New function, bfd sections callback
13436 used by generic_load.
13437
13438 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
13439
13440 [Based on work by Jim Blandy]
13441 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
13442 (builtin_type_vec128): Export.
13443 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
13444 types.
13445 (builtin_type_vec128): New builtin type for 128 bit vector
13446 registers.
13447 (build_gdbtypes): Initialize builtin_type_v16qi and
13448 builtin_type_v8hi. Create the vec128 register builtin type
13449 structure.
13450 (build_builtin_type_vec128): New function.
13451 (_initialize_gdbtypes): Register builtin_type_v16qi and
13452 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
13453 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
13454 AltiVec register to new builtin type.
13455
13456 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
13457
13458 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
13459 to make_cv_type.
13460
13461 2002-01-14 Andrew Cagney <ac131313@redhat.com>
13462
13463 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
13464 CLEAN_UP_REGISTER_VALUE.
13465 * regcache.c (supply_register): Update only call.
13466
13467 2002-01-14 Andrew Cagney <ac131313@redhat.com>
13468
13469 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
13470 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
13471 a29k-*-vxworks* targets as obsolete.
13472
13473 2002-01-14 Michael Snyder <msnyder@redhat.com>
13474
13475 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
13476 until we can resolve portability issues.
13477 * gregset.h: Remove references to fpxregs.
13478 * gcore.c (gcore_command): Initialize note_sec to NULL.
13479
13480 2002-01-13 Andrew Cagney <ac131313@redhat.com>
13481
13482 * signals.c (target_signal_to_name): Rewrite. Only use
13483 signals[].name when in bounds and non-NULL.
13484
13485 2002-01-13 Andrew Cagney <ac131313@redhat.com>
13486
13487 From Petr Ledvina <ledvinap@kae.zcu.cz>:
13488 * signals.c (target_signal_to_name): Verify that SIG is within the
13489 bounds of the signals array.
13490
13491 2002-01-13 Andrew Cagney <ac131313@redhat.com>
13492
13493 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
13494
13495 2002-01-13 Keith Seitz <keiths@redhat.com>
13496
13497 * stack.c (print_frame_info_base): Print the frame's pc
13498 only if when print_frame_info_listing_hook is not defined.
13499
13500 2002-01-13 Keith Seitz <keiths@redhat.com>
13501
13502 * varobj.c (varobj_set_value): Make sure that there were no
13503 errors evaluating the object before attempting to set its
13504 value.
13505 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
13506 so this offset adjustment is no longer necessary.
13507 (create_child): Don't set the error flag if the child is
13508 a CPLUS_FAKE_CHILD.
13509 (value_of_child): If value_fetch_lazy fails, return NULL
13510 so that callers will be notified that an error occurred.
13511 (c_value_of_variable): Delay check of variable's validity
13512 until later. We actually want all structs and unions to have
13513 the value "{...}".
13514 Do not return "???" for variables which could not be evaluated.
13515 This error condition must be returned to the caller so that it
13516 can get the error condition from gdb.
13517 (cplus_name_of_child): Adjust index for vptr before figuring
13518 out the name of the child.
13519 (cplus_value_of_child): If a child's (real) parent is not valid,
13520 don't even bother trying to give a value for it. Just return
13521 an error. Change all instances in this function.
13522 (cplus_type_of_child): If our parent is one of the "fake"
13523 parents, we need to get at the type of the real parent, and
13524 derive the child's true type using this information.
13525
13526 2002-01-13 Andrew Cagney <ac131313@redhat.com>
13527
13528 From 2002-01-09 John Marshall <johnm@falch.net>:
13529 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
13530 sources.redhat.com, and tweak some related URLs which had
13531 suffered from linkrot.
13532
13533 2002-01-13 Andrew Cagney <ac131313@redhat.com>
13534
13535 From Jeff law:
13536 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
13537 structures passed in registers.
13538
13539 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
13540
13541 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
13542 white space which prevented compilation. Reported by DSK
13543 <dsk@student.unsw.edu.au>.
13544
13545 2002-01-11 Michael Snyder <msnyder@redhat.com>
13546
13547 * symfile.c (build_section_addr_info_from_section_tab):
13548 Use bfd access method instead of manipulating bfd directly.
13549 (syms_from_objfile): Ditto.
13550 (simple_overlay_update_1): Ditto.
13551 (simple_overlay_update): Ditto.
13552 (generic_load): Ditto.
13553 (overlay_unmapped_address): FIXME comment, bfd access methods.
13554 (sections_overlap): FIXME comment, bfd access methods.
13555 (pc_in_mapped_range): FIXME comment, bfd access methods.
13556 (pc_in_unmapped_range): FIXME comment, bfd access methods.
13557 (section_is_mapped): FIXME comment, bfd access methods.
13558 (section_is_overlay): FIXME comment, bfd access methods.
13559
13560 * symfile.c (generic_load): Whitespace and long line cleanups.
13561 Remove duplicate variable, change several local variables to
13562 more appropriate data types.
13563 (print_transfer_performance): Use %lu instead of %ld for ulongs.
13564
13565 2002-01-12 Andrew Cagney <ac131313@redhat.com>
13566
13567 From Peter Schauer:
13568 * language.c (longest_local_hex_string_custom): Use phex_nz to
13569 convert NUM to a hex string.
13570
13571 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
13572
13573 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
13574 the function.
13575 Update Copyright year.
13576
13577 2002-01-12 Andrew Cagney <ac131313@redhat.com>
13578
13579 * language.c (longest_raw_hex_string): Delete unused function.
13580
13581 2002-01-11 Petr Sorfa <petrs@caldera.com>
13582
13583 * MAINTAINERS (write-after-approval): Add myself.
13584 * dwarf2read.c (read_tag_string_type): Handling of
13585 DW_AT_byte_size.
13586 (read_tag_string_type): FORTRAN fix to prevent propagation of
13587 first string size.
13588 (set_cu_language): Handling of DW_LANG_Fortran95
13589
13590 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
13591
13592 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
13593 GETPID(inferior_ptid).
13594 (store_inferior_registers): Likewise.
13595
13596 2002-01-10 Jason Merrill <jason@redhat.com>
13597
13598 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
13599 Fix DW_OP_minus.
13600
13601 2002-01-10 Andrew Cagney <ac131313@redhat.com>
13602
13603 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
13604 and bfd/elf32-sh-nbsd.c.
13605
13606 2002-01-10 Michael Snyder <msnyder@redhat.com>
13607
13608 * NEWS: Mention --pid and corefile/proc-id behavior change.
13609
13610 * Makefile.in: Add rules for gcore.o and linux-proc.o.
13611 * gcore.c: Include cli/cli-decode.h instead of command.h.
13612
13613 * main.c (captured_main): Add new command line option "--pid".
13614 If the second command line argument (following the symbol-file)
13615 begins with a digit, try to attach to it before trying to open
13616 it as a corefile.
13617 (print_gdb_help): Document the "--pid" argument.
13618
13619 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
13620
13621 * completer.c (command_completer): New function.
13622
13623 * completer.h <command_completer>: Add prototype.
13624
13625 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
13626 completer for the "help" command.
13627
13628 2002-01-09 Jason Merrill <jason@redhat.com>
13629
13630 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
13631
13632 2002-01-09 Michael Snyder <msnyder@redhat.com>
13633
13634 * i386-linux-nat.c (fill_fpxregset): Make global.
13635 (store_fpxregset): Ditto.
13636
13637 * gregset.h (gdb_fpxregset_t): Define.
13638 (supply_fpxregset): Prototype.
13639 (fill_fpxregset): Prototype.
13640
13641 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
13642
13643 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13644
13645 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
13646 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
13647 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
13648
13649 2002-01-09 Andrew Cagney <ac131313@redhat.com>
13650
13651 * MAINTAINERS: Update target maintainer rules so that any
13652 Maintainer can approve a tested patch for a maintenance-only
13653 target.
13654
13655 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13656
13657 * MAINTAINERS (write-after-approval): Add myself.
13658
13659 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
13660 IN_SIGTRAMP.
13661
13662 2002-01-08 Michael Snyder <msnyder@redhat.com>
13663
13664 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
13665 real name of the executable, rather than the /proc name.
13666
13667 2002-01-03 Michael Snyder <msnyder@redhat.com>
13668
13669 Implement a "generate-core-file" command in gdb, save target state.
13670 * gcore.c: New file. Implement new command 'generate-core-file'.
13671 Save a corefile image of the current state of the inferior.
13672 * linux-proc.c: Add linux-specific code for saving corefiles.
13673 * target.h (struct target_ops): Add new target vectors for saving
13674 corefiles; to_find_memory_regions and to_make_corefile_notes.
13675 (target_find_memory_regions): New macro.
13676 (target_make_corefile_notes): New macro.
13677 * target.c (update_current_target): Inherit new target methods.
13678 (dummy_find_memory_regions): New place-holder method.
13679 (dummy_make_corefile_notes): New place-holder method.
13680 (init_dummy_target): Initialize new dummy target vectors.
13681 * exec.c (exec_set_find_memory_regions): New function.
13682 Allow the exec_ops vector for memory regions to be taken over.
13683 (exec_make_note_section): New function, target vector method.
13684 * defs.h (exec_set_find_memory_regions): Export prototype.
13685 * procfs.c (proc_find_memory_regions): New function, corefile method.
13686 (procfs_make_note_section): New function, corefile method.
13687 (init_procfs_ops): Set new target vector pointers.
13688 (find_memory_regions_callback): New function.
13689 (procfs_do_thread_registers): New function.
13690 (procfs_corefile_thread_callback): New function.
13691 * sol-thread.c (sol_find_memory_regions): New function.
13692 (sol_make_note_section): New function.
13693 (init_sol_thread_ops): Initialize new target vectors.
13694 * inftarg.c (inftarg_set_find_memory_regions): New function.
13695 Allow to_find_memory_regions vector to be taken over.
13696 (inftarg_set_make_corefile_notes): New function.
13697 Allow to_make_corefile_notes vector to be taken over.
13698 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
13699 interface layer if not target_has_execution (may be a corefile).
13700 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
13701 * config/sparc/sun4sol2.mh: Ditto.
13702 * config/alpha/alpha-linux.mh: Ditto.
13703 * config/arm/linux.mh: Ditto.
13704 * config/i386/x86-64linux.mh: Ditto.
13705 * config/ia64/linux.mh: Ditto.
13706 * config/m68k/linux.mh: Ditto.
13707 * config/mips/linux.mh: Ditto.
13708 * config/powerpc/linux.mh: Ditto.
13709 * config/sparc/linux.mh: Ditto.
13710
13711 2002-01-07 Michael Snyder <msnyder@redhat.com>
13712
13713 * arm-linux-nat.c: Remove references to regcache.c internal data
13714 (registers[] and register_valid[]).
13715
13716 2002-01-07 Michael Snyder <msnyder@redhat.com>
13717
13718 * linux-proc.c: New file. Implement child_pid_to_exec_file,
13719 so that attaching to a pid will automatically read the process's
13720 symbol file and shlibs.
13721 * Makefile.in: Add rule for linux-proc.o.
13722 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
13723 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
13724 * config/arm/linux.mh: Ditto.
13725 * config/i386/linux.mh: Ditto.
13726 * config/i386/x86-64linux.mh: Ditto.
13727 * config/ia64/linux.mh: Ditto.
13728 * config/m68k/linux.mh: Ditto.
13729 * config/mips/linux.mh: Ditto.
13730 * config/powerpc/linux.mh: Ditto.
13731 * config/sparc/linux.mh: Ditto.
13732
13733 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
13734
13735 * win32-nat.c: Add i386-tdep.h dependency.
13736
13737 2002-01-07 Michael Snyder <msnyder@redhat.com>
13738
13739 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
13740 instead of bfd_get_arch_size. Don't bail out just because
13741 there's no exec_bfd.
13742
13743 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
13744 * p-valprint.c (pascal_object_print_value): Ditto.
13745 * somread.c (som_symtab_read): Ditto.
13746 * symfile.c (simple_free_overlay_region_table): Ditto.
13747 * valops.c (value_assign): Ditto.
13748
13749 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
13750 use tilde_expand and strerror for opening save-tracepoints file.
13751
13752 * thread-db.c (thread_db_new_objfile): Indendation fix.
13753
13754 * infptrace.c (GDB_MAX_ALLOCA): New define.
13755 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
13756 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
13757 can be overridden with whatever value is appropriate to the host).
13758 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
13759 alloca to allocate potentially large buffer.
13760 * rs6000-nat.c (child_xfer_memory): Ditto.
13761 * symm-nat.c (child_xfer_memory): Ditto.
13762 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
13763
13764 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
13765
13766 From Nick Clifton <nickc@redhat.com>
13767 * d10v-tdep.c: Set STACK_START to 0x200bffe.
13768
13769 2002-01-07 Michael Snyder <msnyder@redhat.com>
13770
13771 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
13772 Don't use exec_bfd if it's NULL.
13773
13774 2002-01-06 Mark Kettenis <kettenis@gnu.org>
13775
13776 * valops.c (value_arg_coerce): Fix formatting.
13777
13778 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13779
13780 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
13781 * gnu-nat.c: Ditto.
13782
13783 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13784
13785 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
13786 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
13787 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
13788 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
13789 z8k-coff have not been multi-arched. Update z8k-coff build
13790 status.
13791
13792 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13793
13794 * MAINTAINERS: Mark a29k target as obsolete.
13795 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
13796 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
13797 comments.
13798 * NEWS: Note that a29k targets are obsolete.
13799 * a29k-tdep.c: Mark as obsolete.
13800 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
13801 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
13802 a29k-*-vxworks* targets as obsolete.
13803 * remote-adapt.c: Obsolete.
13804 * remote-eb.c: Obsolete.
13805 * remote-mm.c: Obsolete.
13806 * remote-udi.c: Obsolete.
13807 * config/a29k/a29k-udi.mt: Obsolete.
13808 * config/a29k/a29k.mt: Obsolete.
13809 * config/a29k/tm-a29k.h: Obsolete.
13810 * config/a29k/tm-vx29k.h: Obsolete.
13811 * config/a29k/vx29k.mt: Obsolete.
13812
13813 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13814
13815 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
13816 with BFD_ENDIAN_BIG.
13817
13818 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13819
13820 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
13821 * configure, config.in: Re-generate.
13822 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
13823 * defs.h: Do not include <endian.h>.
13824
13825 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
13826
13827 * acconfig.h (HAVE_PT_GETXMMREGS): New.
13828 * config.in: Regenerate.
13829 * configure.in: Update copyright years.
13830 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
13831 * configure: Regenerate.
13832 * i386bsd-nat.c: Update copyright years.
13833 (fill_gregset): Use regcache_collect.
13834 (fetch_inferior_registers): Only fetch integer registers
13835 if requested to do so. Add support for XMM registers
13836 using PT_GETXMMREGS.
13837 (store_inferior_registers): Only store integer registers
13838 if requested to do so. Add support for XMM registers
13839 using PT_SETXMMREGS.
13840 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
13841 (store_inferior_registers): Remove.
13842 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
13843 (fetch_elfcore_registers): New function.
13844 (i386nbsd_elfcore_fns): New.
13845 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
13846 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
13847 i386bsd-nat.o.
13848 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
13849 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
13850 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
13851 * config/i386/tm-nbsd.h: Update copyright years.
13852 (HAVE_SSE_REGS): Define.
13853 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
13854 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
13855 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
13856 (SIGCONTEXT_PC_OFFSET): Remove.
13857 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
13858
13859 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13860
13861 * configure.tgt: Remove powerpc-*-macos* target.
13862 * config/m68k/xm-mpw.h: Delete file.
13863 * config/xm-mpw.h: Delete file.
13864 * ser-mac.c: Delete file.
13865 * mpw-make.sed: Delete file.
13866 * mpw-config.in: Delete file.
13867 * mac-xdep.c: Delete file.
13868 * mac-gdb.r: Delete file.
13869 * mac-defs.h: Delete file.
13870 * mac-nat.c: Delete file.
13871 * config/powerpc/macos.mh: Delete file.
13872 * config/powerpc/macos.mt: Delete file.
13873 * config/powerpc/nm-macos.h: Delete file.
13874 * config/powerpc/tm-macos.h: Delete file.
13875 * source.c (openp, open_source_file): Remove obsolete code.
13876 * top.c (gdb_readline): Ditto.
13877 * utils.c (query): Ditto.
13878 * event-top.c (display_gdb_prompt): Ditto.
13879 * Makefile.in (ser-mac.o): Delete obsolete target.
13880 * NEWS: Update.
13881
13882 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13883
13884 * defs.h (BIG_ENDIAN): Delete macro definition.
13885 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
13886 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
13887 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
13888 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
13889 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
13890 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
13891 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
13892 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
13893 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
13894 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
13895 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
13896 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
13897 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13898 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13899 * gdbarch.c: Re-generate.
13900
13901 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13902
13903 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
13904 for core files.
13905
13906 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13907
13908 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
13909
13910 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13911
13912 * value.h (value_ptr): Delete typedef.
13913
13914 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13915
13916 * i386nbsd-nat.c: Update copyright years.
13917 Include i386-tdep.h.
13918
13919 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
13920
13921 * stabsread.c: Update copyright years.
13922
13923 From Debashis Mahata <debashis.mahata@wipro.com>:
13924 (read_struct_fields): Deal with Sun C compiler erroneous stab
13925 output for structs and unions.
13926 Fix PR gdb/269.
13927
13928 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13929
13930 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
13931 prototype.
13932
13933 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13934
13935 * cp-abi.c: Fix whitespace.
13936 (baseclass_offset): New wrapper function.
13937 * cp-abi.h (baseclass_offset): Add prototype.
13938 (struct cp_abi_ops): Add baseclass_offset pointer.
13939
13940 * valops.c (vb_match): Move to...
13941 * gnu-v2-abi.c (vb_match): here.
13942 * valops.c (baseclass_offset): Move to...
13943 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
13944
13945 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
13946
13947 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
13948 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
13949 * hpacc-abi.c (init_hpacc_ops): Likewise.
13950
13951 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13952
13953 * valops.c (find_overload_match): Accept obj as a
13954 reference parameter. Update it before returning.
13955 * value.h (find_overload_match): Update prototype.
13956 * eval.c (evaluate_subexp_standard): Pass object to
13957 find_overload_match by reference.
13958
13959 2002-01-03 Andrew Cagney <ac131313@redhat.com>
13960
13961 * valarith.c: Replace value_ptr with struct value pointer. Remove
13962 register attribute from value declarations.
13963 * valops.c: Ditto.
13964 * value.h: Ditto.
13965 * scm-lang.c (scm_lookup_name): Ditto.
13966
13967 2002-01-03 Michael Snyder <msnyder@redhat.com>
13968
13969 Abstract the functionality of iterating over mapped memory
13970 regions into a general purpose iterator function.
13971 * procfs.c (iterate_over_mappings): New function, general purpose
13972 iterator for memory sections.
13973 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
13974 (solib_mappings_callback): New function, callback for above.
13975 (info_proc_mappings): Reimpliment using iterate_over_mappings.
13976 (info_mappings_callback): New function, callback for above.
13977
13978 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
13979
13980 2002-01-01 Mark Kettenis <kettenis@gnu.org>
13981
13982 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
13983 * i386-tdep.c: Include "elf-bfd.h".
13984 (process_note_abi_tag_sections): New function.
13985 (i386_gdbarch_init): Add code to recognize various OS/ABI
13986 combinations.
13987
13988 * maint.c (_initialize_maint_cmds): Add missing \ in
13989 string-literal.
13990
13991 For older changes see ChangeLog-2001
13992 \f
13993 Local Variables:
13994 mode: change-log
13995 left-margin: 8
13996 fill-column: 74
13997 version-control: never
13998 End:
This page took 0.317526 seconds and 4 git commands to generate.