2003-01-21 Martin M. Hunt <hunt@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2003-01-21 Martin M. Hunt <hunt@redhat.com>
2
3 * Makefile.in (install-gdbtk): Install PNG images too.
4
5 2003-01-21 Andrew Cagney <ac131313@redhat.com>
6
7 * exec.c (text_start): Delete global variable.
8 (exec_file_attach): Make text_start local to the function.
9 * inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
10 * valops.c (hand_function_call): Delete code that handles
11 BEFORE_TEXT_END and AFTER_TEXT_END.
12 * gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
13 of CALL_DUMMY_LOCATION.
14 * gdbarch.c: Regenerate.
15 * inferior.h (deprecated_pc_in_call_dummy_before_text_end)
16 (deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
17 * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
18 (deprecated_pc_in_call_dummy_after_text_end): Delete functions.
19 (text_end): Delete extern declaration.
20
21 2003-01-21 Andrew Cagney <ac131313@redhat.com>
22
23 * frame.h (FRAME_OBSTACK_ZALLOC): Define.
24 * blockframe.c (backtrace_below_main): Move to "frame.c".
25 (frame_chain_valid): Delete check for backtrace_below_main.
26 (_initialize_blockframe): Delete initialization, move ``set
27 backtrace-below-main'' command to "frame.c".
28 (do_flush_frames_sfunc): Delete function.
29 * frame.c: Include "command.h" and "gdbcmd.h".
30 (frame_type_from_pc): New function.
31 (create_new_frame): Use frame_type_from_pc.
32 (legacy_get_prev_frame): New function.
33 (get_prev_frame): Rewrite. When an old style frame, call
34 legacy_get_prev_frame. Otherwize, unwind the PC first.
35 (_initialize_frame): Add ``set backtrace-below-main'' command.
36 * Makefile.in (frame.o): Update dependencies.
37
38 2003-01-19 Andrew Cagney <ac131313@redhat.com>
39
40 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
41 DEPRECATED_REGISTERS_INFO.
42
43 2003-01-19 Andrew Cagney <ac131313@redhat.com>
44
45 * MAINTAINERS: Replace `Blanket Write Privs' with `Global
46 Maintainers'. Update `Various Maintainers'.
47
48 2003-01-19 Andrew Cagney <ac131313@redhat.com>
49
50 * frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
51 * gdbarch.sh (POP_FRAME): Change to function with predicate.
52 Suppress actual parameters when `-'.
53 * gdbarch.h, gdbarch.c: Regenerate.
54
55 2003-01-19 Andrew Cagney <ac131313@redhat.com>
56
57 * d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
58 code handling dummy frames.
59
60 2003-01-19 Andrew Cagney <ac131313@redhat.com>
61
62 * frame-unwind.h (frame_unwind_pop_ftype): Declare.
63 (struct frame_unwind): Add field pop.
64 * frame.h (frame_pop): Declare.
65 * frame.c (frame_saved_regs_pop): New function.
66 (trad_frame_unwinder): Add frame_saved_regs_pop.
67 (frame_pop): New function.
68 * dummy-frame.c (dummy_frame_pop): New function.
69 (discard_innermost_dummy): New function.
70 (generic_pop_dummy_frame): Use discard_innermost_dummy.
71 (dummy_frame_unwind): Add dummy_frame_pop.
72 * infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
73 * valops.c (hand_function_call): Ditto.
74 * stack.c (return_command): Ditto.
75
76 2003-01-18 Andrew Cagney <ac131313@redhat.com>
77
78 * cris-tdep.c: Fix function declaration indentation.
79 * dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
80 * mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
81 * rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
82 * symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
83 * xcoffread.c, config/pa/tm-hppa.h: Ditto.
84 * config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
85
86 2003-01-18 Michael Chastain <mec@shout.net>
87
88 * README (Unpacking and Installation -- quick overview):
89 Warn against ".../gdb-5.3/gdb/configure".
90
91 2003-01-18 Andrew Cagney <ac131313@redhat.com>
92
93 * dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
94 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
95 (struct frame_unwind): Declare opaque.
96 (dummy_frame_p): Declare function.
97 * dummy-frame.c (dummy_frame_id_unwind): Make static.
98 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
99 * dummy-frame.c: Include "frame-unwind.h".
100 (dummy_frame_p): New function.
101 (dummy_frame_unwind): New variable.
102 * frame.c: Include "frame-unwind.h".
103 (frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
104 to use the new unwind field.
105 (set_unwind_by_pc): Delete function.
106 (create_new_frame, get_prev_frame): Set unwind field using
107 frame_unwind_find_by_pc.
108 (trad_frame_unwind, trad_frame_unwinder): New variables.
109 * frame.h (trad_frame_unwind): Declare variable.
110 (frame_id_unwind_ftype): Delete declaration.
111 (frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
112 (struct frame_unwind): Declare opaque.
113 (struct frame_info): Replace the fields id_unwind, pc_unwind and
114 register_unwind with a single unwind pointer.
115 * frame-unwind.h, frame-unwind.c: New files.
116 * Makefile.in (SFILES): Add frame-unwind.c.
117 (frame_unwind_h): Define.
118 (COMMON_OBS): Add frame-unwind.o.
119 (frame-unwind.o): Specify dependencies.
120 (frame.o, dummy-frame.o): Update dependencies.
121
122 2003-01-18 Andrew Cagney <ac131313@redhat.com>
123
124 * ada-valprint.c: Eliminate PTR.
125 * breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
126 * defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
127 * exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
128 * objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
129 * remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
130 * solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
131 * symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
132
133 2003-01-17 Andrew Cagney <ac131313@redhat.com>
134
135 * main.c (captured_main): Don't use PTR.
136 * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
137 * gdbtypes.c (lookup_primitive_typename): Ditto.
138 (lookup_struct_elt_type): Ditto.
139 * f-valprint.c (info_common_command): Ditto.
140 (list_all_visible_commons): Ditto.
141 * jv-typeprint.c (java_type_print_base): Ditto.
142
143 * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
144 mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
145 Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c. Rename
146 i386-interix-nat.c and i386-interix-tdep.c. Rename
147 m68klinux-nat.c and m68klinux-tdep.c. Rename
148 config/mips/tm-linux.h and config/mips/tm-linux64.h. Rename
149 bfd/po/.cvsignore and opcodes/po/.cvsignore. Rename
150 gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
151 * main.c (captured_main): Use xfree, not free.
152
153 2003-01-16 Andrew Cagney <ac131313@redhat.com>
154
155 * frame.h (frame_id_unwind_ftype): Change type so that the frame's
156 ID back using a parameter.
157 * frame.c (frame_id_unwind): Update call.
158 (frame_saved_regs_id_unwind): Update.
159 * dummy-frame.c (dummy_frame_id_unwind): Update function.
160 * dummy-frame.h (struct frame_id): Add opaque declaration.
161 (dummy_frame_id_unwind): Update declaration.
162
163 2003-01-15 Andrew Cagney <ac131313@redhat.com>
164
165 * sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
166
167 2003-01-15 Stephen P. Smith <ischis2@cox.net>
168
169 * MAINTAINERS (Stephen P. Smith): Updated email address.
170
171 2003-01-14 Elena Zannoni <ezannoni@redhat.com>
172
173 * breakpoint.c (until_break_command): Add new argument. Use it to
174 decide whether to stop only at the current frame or not.
175 * breakpoint.h (until_break_command): Update prototype.
176 * infcmd.c (until_command): Add new argument to until_break_command
177 call.
178 (advance_command): New function.
179 (_initialize_infcmd): Update help string for 'until' command.
180 Add new 'advance' command.
181
182 2003-01-14 David Carlton <carlton@math.stanford.edu>
183
184 * linespec.c (decode_line_1): Normalize comments.
185 (set_flags): Ditto.
186 (locate_first_half): Ditto.
187 (decode_compound): Ditto.
188 (symtab_from_filename): Ditto.
189 (decode_all_digits): Ditto.
190 (decode_dollar): Ditto.
191 (find_methods): Ditto.
192 (find_toplevel_char): Ditto.
193
194 2003-01-13 Andrew Cagney <ac131313@redhat.com>
195
196 * ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
197 * demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
198 * elfread.c, eval.c, expprint.c, expression.h: Update copyright.
199 * f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
200 * gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
201 * language.c, language.h, m32r-tdep.c: Update copyright.
202 * mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
203 * somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
204 * thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
205 * values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
206 * x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
207 * cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
208
209 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
210
211 * stabsread.h (process_later, resolve_cfront_continuation):
212 Obsolete.
213 Update copyright years.
214 * buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
215 Update copyright year.
216 * dbxread.c(struct cont_elem): Obsolete.
217 (process_later, process_now): Obsolete functions.
218 (read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
219 Update copyright year.
220 * gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
221 (add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
222 * mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
223 (parse_partial_symbols): Obsolete cfront support.
224 * stabsread.c
225 (CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
226 macros.
227 (get_substring, get_cfront_method_physname, msg_unknown_complaint,
228 read_cfront_baseclasses, read_cfront_member_functions,
229 resolve_cfront_continuation,read_cfront_static_fields,
230 copy_cfront_struct_fields): Obsolete functions.
231 (define_symbol, read_one_struct_field): Obsolete cfront support.
232 * xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
233 Update Copyright year.
234
235 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
236
237 * stack.c (print_frame_info, print_stack_frame_base_stub,
238 print_stack_frame_base, show_and_print_stack_frame_stub,
239 show_and_print_stack_frame, print_only_stack_frame_stub,
240 print_only_stack_frame): Delete functions.
241 (print_stack_frame_stub): Call print_frame_info instead of
242 print_frame_info_base.
243 (print_frame_info_base): Rename to print_frame_info.
244 (backtrace_command_1): Call print_frame_info, instead of
245 print_frame_info_base.
246 (current_frame_command): Call print_stack_frame, instead of
247 print_only_stack_frame.
248 (frame_command): Call print_stack_frame, instead of
249 show_and_print_stack_frame.
250 (up_command): Ditto.
251 (down_command): Ditto.
252 * frame.h (print_only_stack_frame): Delete prototype.
253 * infrun.c (normal_stop): Call print_stack_frame, instead of
254 show_and_print_stack_frame.
255 * thread.c (info_threads_command): Call print_stack_frame, instead
256 of print_only_stack_frame.
257
258 2003-01-13 Andrew Cagney <ac131313@redhat.com>
259
260 * README (Graphical interface to GDB): Update URL. Point at
261 gdb/links/.
262
263 * gdb_indent.sh: Update to version 2.2.9. Warn when not exact
264 version match.
265
266 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
267
268 * symtab.c (find_pc_sect_line): Don't consider end-of-function
269 lines.
270
271 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
272
273 * thread-db.c (attach_thread): Prototype.
274 (struct private_thread_info): Remove lwpid. Add thread handle (th),
275 thread information (ti), and valid flags (th_valid, ti_valid).
276 (attach_thread): Move target_pid_to_str call to after the thread
277 is added to GDB's list. Initialize the cache.
278 (thread_get_info_callback, thread_db_map_id2thr)
279 (thread_db_get_info): New functions.
280 (thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
281 (thread_db_store_registers, thread_db_thread_alive)
282 (thread_db_get_thread_local_address): Use them.
283 (thread_db_pid_to_str): Likewise. Return "Missing" instead
284 of calling error() for threads in unknown state.
285
286 (clear_lwpid_callback): New function.
287 (thread_db_resume): Use it to clear the cache.
288
289 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
290
291 * lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
292 (resume_callback): Remove dead code.
293
294 2003-01-13 Andrew Cagney <ac131313@redhat.com>
295
296 * gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
297 predicate.
298 * gdbarch.h, gdbarch.c: Regenerate.
299 * stack.c (frame_info): Only initialize the saved registers when
300 FRAME_INIT_SAVED_REGS_P.
301 * frame.c (frame_saved_regs_register_unwind): Assert
302 FRAME_INIT_SAVED_REGS_P.
303 (deprecated_generic_get_saved_register): Ditto.
304
305 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
306
307 * source.c (openp): Squelch warning about "filename".
308
309 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
310
311 * source.c (openp): If the file does not exist don't necessarily
312 search the path.
313
314 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
315
316 Fix PR gdb/872.
317 * gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
318 (integer_types_same_name_p): New function.
319 (rank_one_type): Use it.
320 * stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
321
322 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
323
324 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
325 variables.
326 (main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
327 * configure.in: Add --with-sysroot.
328 * configure: Regenerated.
329 * main.c (gdb_sysroot): New variable.
330 (captured_main): Initialize gdb_sysroot.
331 * defs.h (gdb_sysroot): New extern declaration.
332 * solib.c (_initialize_solib): Initialize solib_absolute_prefix.
333
334 2003-01-12 Michael Chastain <mec@shout.net>
335
336 * config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
337
338 2003-01-12 Michael Chastain <mec@shout.net>
339
340 * top.c (print_gdb_version): Bump copyright year to 2003.
341
342 2003-01-12 David Carlton <carlton@bactrian.org>
343
344 * linespec.c (symtab_from_filename): Rename variable 's' to
345 'file_symtab'.
346
347 2003-01-12 Andrew Cagney <ac131313@redhat.com>
348
349 * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
350 dummy frame.
351 (d10v_frame_saved_pc, d10v_frame_chain): Ditto.
352
353 2003-01-12 Andrew Cagney <ac131313@redhat.com>
354
355 * d10v-tdep.c: Include "gdb_assert.h".
356 (d10v_store_return_value): Rewrite to match current interface.
357 (d10v_extract_struct_value_address): Ditto.
358 (d10v_extract_return_value): Ditto.
359 (d10v_gdbarch_init): Set store_restore_value,
360 extract_struct_value_address and extract_return_value.
361
362 2003-01-12 J. Brobecker <brobecker@gnat.com>
363
364 * hpread.c (set_namestring): New procedure replacing the
365 SET_NAMESTRING macro.
366 (hpread_build_psymtabs): Replace calls to SET_NAMESTRING
367 by calls to set_namestring.
368
369 2003-01-11 J. Brobecker <brobecker@gnat.com>
370
371 * hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
372 a compilation warning.
373 (hpread_process_one_debug_symbol): Likewise.
374
375 2003-01-10 David Carlton <carlton@math.stanford.edu>
376
377 * linespec.c (decode_line_1): Rename variable 's' to
378 'file_symtab'.
379 (decode_all_digits): Rename argument 's' to 'file_symtab'.
380 (decode_dollar): Ditto.
381 (decode_variable): Ditto.
382 (symbol_found): Ditto.
383
384 2003-01-09 Michael Chastain <mec@shout.net>
385
386 * config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
387
388 2003-01-07 Corinna Vinschen <vinschen@redhat.com>
389
390 * win32-nat.c (set_process_privilege): New function.
391 (child_attach): Call set_process_privilege() to enable the
392 SE_DEBUG_NAME user privilege if available in process token.
393
394 2003-01-10 J. Brobecker <brobecker@gnat.com>
395
396 * hpread.c (hpread_process_one_debug_symbol): Fix a small
397 compilation error in the previous revision.
398
399 2003-01-09 David Carlton <carlton@math.stanford.edu>
400
401 * linespec.c: Update copyright.
402
403 2003-01-09 Daniel Jacobowitz <drow@mvista.com>
404
405 * lin-lwp.c (child_wait): Ignore exit statuses for processes other
406 than inferior_ptid.
407 (lin_lwp_wait): Ignore exit statuses for unknown LWPs.
408
409 2003-01-09 Andrew Cagney <ac131313@redhat.com>
410
411 * frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
412 Update comments.
413 * frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
414 (frame_saved_regs_zalloc): Update.
415 (frame_saved_regs_register_unwind): Update.
416 (create_new_frame): Update.
417 (get_prev_frame): Update.
418 (frame_extra_info_zalloc): Update.
419 (deprecated_get_frame_saved_regs): Update.
420 * dwarf2cfi.c (cfi_init_extra_frame_info): Update.
421 * cris-tdep.c: Update comment.
422
423 * somsolib.h: Fix function indentation.
424 * disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
425 * gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
426 * demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
427 * alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
428 * somsolib.c, inftarg.c: Remove assignment in if conditional.
429
430 * infrun.c (follow_fork): Use ISO C definition.
431 * expprint.c (print_subexp): Use xfree instead of free.
432 * charset.c: Include "gdb_string.h" instead of <string.h>.
433 (register_iconv_charsets): Use ISO C definition.
434 (host_charset, target_charset): Ditto.
435 * Makefile.in (charset.o): Update dependencies.
436 (mi-cmd-env.o): Update dependencies.
437
438 2003-01-08 Andrew Cagney <cagney@redhat.com>
439
440 * alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
441 get_frame_base.
442
443 2003-01-08 Andrew Cagney <ac131313@redhat.com>
444
445 * gdb_mbuild.sh: Add --keep option. When specified, keep the
446 build directories. Save edited gdb output in Mbuild.log. If a
447 build fails, remove any final GDB executable.
448
449 2003-01-08 Andrew Cagney <ac131313@redhat.com>
450
451 * gdb_mbuild.sh: Edit the output of `maint print architecture'
452 replacing hex constants with function names and stripping leading
453 file name directory prefixes.
454
455 2003-01-08 Andrew Cagney <cagney@redhat.com>
456
457 * gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
458 get_frame_base.
459
460 2003-01-08 David Carlton <carlton@math.stanford.edu>
461
462 * linespec.c (decode_line_1): Move code into decode_variable.
463 (decode_variable): New function.
464
465 2003-01-08 Andrew Cagney <ac131313@redhat.com>
466
467 * mn10300-tdep.c (analyze_dummy_frame): Fix typo.
468
469 2003-01-08 Andrew Cagney <cagney@redhat.com>
470
471 * cris-tdep.c (cris_frame_init_saved_regs): Use
472 get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
473 saved_regs buffer.
474 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
475 (sh64_nofp_frame_init_saved_regs): Ditto.
476 (sh_fp_frame_init_saved_regs): Ditto.
477 * arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
478 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
479 * mcore-tdep.c (analyze_dummy_frame): Ditto.
480 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
481
482 2003-01-08 Daniel Jacobowitz <drow@mvista.com>
483
484 * minsyms.c (lookup_minimal_symbol): Update comment.
485 (lookup_minimal_symbol_text): Update comment. Use the hash table.
486 (lookup_minimal_symbol_solib_trampoline): Likewise.
487
488 2003-01-08 Andrew Cagney <cagney@redhat.com>
489
490 * d10v-tdep.c (d10v_init_extra_frame_info): Use
491 frame_relative_level.
492
493 * alpha-tdep.c: Use get_frame_extra_info.
494 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
495 * h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
496 * mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
497 * sparc-tdep.c, xstormy16-tdep.c: Ditto.
498
499 * alpha-tdep.c: Use get_next_frame.
500 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
501 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
502 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
503 * mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
504 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
505 * v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
506 * xstormy16-tdep.c: Ditto.
507
508 2003-01-07 Andrew Cagney <cagney@redhat.com>
509
510 * alpha-tdep.c: Use get_frame_base.
511 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
512 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
513 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
514 * mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
515 * sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
516 * x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
517 * config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
518 * config/sparc/tm-sparc.h: Ditto.
519
520 2003-01-07 Andrew Cagney <cagney@redhat.com>
521
522 * frame.c (deprecated_get_frame_context): New function.
523 (deprecated_set_frame_context): New function.
524 * frame.h (deprecated_get_frame_context): Declare.
525 (deprecated_set_frame_context): Declare.
526 * dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
527 (cfi_init_extra_frame_info): Use deprecated_set_frame_context.
528
529 2003-01-07 Andrew Cagney <cagney@redhat.com>
530
531 * frame.c (deprecated_set_frame_next_hack): New function.
532 (deprecated_set_frame_prev_hack): New function.
533 * frame.h (deprecated_set_frame_next_hack): Declare.
534 (deprecated_set_frame_prev_hack): Declare.
535 * mcore-tdep.c (analyze_dummy_frame): Use
536 deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
537 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
538
539 2003-01-07 David Carlton <carlton@math.stanford.edu>
540
541 * linespec.c (decode_line_1): Move code into decode_dollar.
542 (decode_dollar): New function.
543
544 2003-01-07 Andrew Cagney <cagney@redhat.com>
545
546 * arm-tdep.c (arm_init_extra_frame_info): Use
547 deprecated_update_frame_base_hack.
548 * xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
549 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
550 (fix_frame_pointer): Ditto.
551 (mn10300_analyze_prologue): Ditto.
552
553 2003-01-07 Andrew Cagney <cagney@redhat.com>
554
555 * xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
556 extra_info using frame_extra_info_zalloc.
557 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
558 * sh-tdep.c (sh_init_extra_frame_info): Ditto.
559 (sh64_init_extra_frame_info): Ditto.
560 * mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
561 * s390-tdep.c (s390_init_extra_frame_info): Ditto.
562 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
563 * mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
564 * frv-tdep.c (frv_init_extra_frame_info): Ditto.
565 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
566 * ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
567 * h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
568 * d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
569 * cris-tdep.c (cris_init_extra_frame_info): Ditto.
570 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
571 * alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
572
573 * mn10300-tdep.c (analyze_dummy_frame): Use
574 deprecated_set_frame_extra_info_hack.
575 * mcore-tdep.c (analyze_dummy_frame): Ditto.
576
577 2003-01-07 J. Brobecker <brobecker@gnat.com>
578
579 * mdebugread.c (parse_symbol): Skip stProc entries which storage
580 class is not scText. These do not define "real" procedures.
581 (parse_partial_symbols): Likewise.
582
583 2003-01-06 Michael Snyder <msnyder@redhat.com>
584
585 * lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
586
587 2003-01-06 Andrew Cagney <ac131313@redhat.com>
588
589 * frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
590 * frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
591 * arm-tdep.c (arm_frame_chain): Allocate caller_fi using
592 deprecated_frame_xmalloc_with_cleanup.
593 * m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
594 deprecated_frame_xmalloc.
595 * mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
596 * mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
597
598 2003-01-06 Andrew Cagney <cagney@redhat.com>
599
600 * x86-64-linux-tdep.c: Include "osabi.h".
601 * Makefile.in (x86-64-linux-tdep.o): Update dependencies.
602
603 * sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
604
605 2003-01-06 Andrew Cagney <cagney@redhat.com>
606
607 * MAINTAINERS (Target Instruction Set Architectures): Update
608 arm-elf. Can be built with -Werror, has been multiarched.
609
610 * value.h (unpack_long): Make buffer parameter constant.
611 (unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
612 * scm-lang.h (scm_parse): Ditto.
613 * defs.h (extract_typed_address, extract_address): Ditto.
614 (extract_long_unsigned_integer): Ditto.
615 * inferior.h (unsigned_pointer_to_address): Ditto.
616 (signed_pointer_to_address): Ditto.
617 * gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
618 * gdbarch.h, gdbarch.c: Regenerate.
619 * findvar.c (extract_long_unsigned_integer): Update.
620 (extract_address): Update.
621 (extract_typed_address): Update.
622 (unsigned_pointer_to_address): Update.
623 * values.c (unpack_long): Update.
624 (unpack_double): Update.
625 (unpack_pointer): Update.
626 (unpack_field_as_long): Update.
627 * d10v-tdep.c (d10v_pointer_to_address): Update.
628 * avr-tdep.c (avr_pointer_to_address): Update.
629 * scm-lang.c (scm_unpack): Update.
630 * findvar.c (signed_pointer_to_address): Update.
631
632 2003-01-06 Michal Ludvig <mludvig@suse.cz>
633
634 * x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
635 since it is in i386-tdep.c.
636
637 2003-01-06 J. Brobecker <brobecker@gnat.com>
638
639 * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
640 failure introduced in the previous change.
641
642 2003-01-05 Michael Chastain <mec@shout.net>
643
644 * README: Remove references to deleted remote-*.c files:
645 remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
646 remote-nrom.c, remote-os9k.c, remote-udi.c.
647
648 2003-01-05 Mark Kettenis <kettenis@gnu.org>
649
650 * i386-tdep.c (i386_get_longjmp_target): Make usable on x86-64.
651 * x86-64-tdep.c (x86_64_init_abi): Remove FIXME about
652 i386_get_longjmp_target.
653
654 2003-01-05 Andrew Cagney <ac131313@redhat.com>
655
656 * arm-tdep.c (prologue_cache): Change to a pointer.
657 (_initialize_arm_tdep): Allocate prologue_cache.
658 (check_prologue_cache): Update.
659 (save_prologue_cache): Update.
660 (arm_gdbarch_init): Update.
661
662 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
663
664 * stabsread.c (update_method_name_from_physname): Call complaint()
665 instead of error.
666
667 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
668
669 * arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
670 * d10v-tdep.c (d10v_frame_chain_valid): Remove unnecessary tests.
671 * hppa-tdep.c (hppa_frame_chain_valid): Remove unnecessary test.
672
673 * blockframe.c: Include "gdbcmd.h" and "command.h".
674 (backtrace_below_main): New variable.
675 (file_frame_chain_valid, func_frame_chain_valid)
676 (nonnull_frame_chain_valid, generic_file_frame_chain_valid)
677 (generic_func_frame_chain_valid): Remove functions.
678 (frame_chain_valid, do_flush_frames_sfunc): New functions.
679 (_initialize_blockframe): New function.
680 * Makefile.in (blockframe.o): Update dependencies.
681 * frame.c (frame_saved_regs_id_unwind, get_prev_frame): Remove FIXME
682 comment. Call frame_chain_valid ().
683 * frame.h: Remove old prototypes. Add prototype for
684 frame_chain_valid and update comments to match.
685 * gdbarch.sh: Change FRAME_CHAIN_VALID into a predicated function.
686 Remove old comment.
687 * gdbarch.h: Regenerated.
688 * gdbarch.c: Regenerated.
689
690 * alpha-tdep.c (alpha_gdbarch_init): Don't call
691 set_gdbarch_frame_chain_valid.
692 * avr-tdep.c (avr_gdbarch_init): Likewise.
693 * cris-tdep.c (cris_gdbarch_init): Likewise.
694 * frv-tdep.c (frv_gdbarch_init): Likewise.
695 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
696 * i386-tdep.c (i386_svr4_init_abi): Likewise.
697 (i386_nw_init_abi): Likewise.
698 (i386_gdbarch_init): Likewise.
699 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
700 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
701 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
702 * mcore-tdep.c (mcore_gdbarch_init): Likewise.
703 * mips-tdep.c (mips_gdbarch_init): Likewise.
704 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
705 * ns32k-tdep.c (ns32k_gdbarch_init): Likewise.
706 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Likewise.
707 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
708 * s390-tdep.c (s390_gdbarch_init): Likewise.
709 * sh-tdep.c (sh_gdbarch_init): Likewise.
710 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
711 * v850-tdep.c (v850_gdbarch_init): Likewise.
712 * vax-tdep.c (vax_gdbarch_init): Likewise.
713 * x86-64-tdep.c (x86_64_init_abi): Likewise.
714
715 * config/m32r/tm-m32r.h (FRAME_CHAIN_VALID): Don't define.
716 * config/m68k/tm-apollo68b.h (FRAME_CHAIN_VALID): Likewise.
717 * config/m68k/tm-m68kv4.h (FRAME_CHAIN_VALID): Likewise.
718 * config/m68k/tm-monitor.h (FRAME_CHAIN_VALID): Likewise.
719 * config/m68k/tm-os68k.h (FRAME_CHAIN_VALID): Likewise.
720 * config/m68k/tm-vx68.h (FRAME_CHAIN_VALID): Likewise.
721 * config/mn10200/tm-mn10200.h (FRAME_CHAIN_VALID): Likewise.
722 * config/sparc/tm-sparclite.h (FRAME_CHAIN_VALID): Likewise.
723
724 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
725
726 * Makefile.in (acconfig_h): Remove incorrect macro.
727 (config_h): Define.
728 (osabi.o): Update dependencies.
729 * configure.tgt: Set gdb_osabi based on target triplet.
730 * configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
731 * configure: Regenerated.
732 * config.in: Regenerated.
733 * osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
734 (GDB_OSABI_DEFAULT): Define if not already defined.
735 (user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
736 (set_osabi_string): New variables.
737 (gdbarch_register_osabi): Add new OS ABI to
738 gdb_osabi_available_names.
739 (gdbarch_lookup_osabi): Honor specified and default OS ABIs.
740 (set_osabi, show_osabi): New functions.
741 (_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
742
743 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
744
745 * arch-utils.c (gdbarch_info_init): Set osabi to
746 GDB_OSABI_UNINITIALIZED.
747 * gdbarch.sh: Add osabi to struct gdbarch and to struct
748 gdbarch_info. Include "osabi.h" in gdbarch.c. Check osabi
749 in gdbarch_list_lookup_by_info and in gdbarch_update_p.
750 * gdbarch.c: Regenerated.
751 * gdbarch.h: Regenerated.
752 * osabi.c (gdbarch_lookup_osabi): Return GDB_OSABI_UNINITIALIZED if
753 there's no BFD.
754 (gdbarch_init_osabi): Remove osabi argument; use info.osabi.
755 * osabi.h (enum gdb_osabi): Move to defs.h.
756 (gdbarch_init_osabi): Update prototype.
757 * defs.h (enum gdb_osabi): Moved here.
758 * Makefile.in: Update dependencies.
759
760 * alpha-tdep.h: Don't include "osabi.h".
761 (struct gdbarch_tdep): Remove osabi member.
762 * alpha-tdep.c: Include "osabi.h".
763 (alpha_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
764 iterate over arches. Update call to gdbarch_init_osabi.
765 (alpha_dump_tdep): Don't dump osabi.
766 * alpha-linux-tdep.c: Include "osabi.h".
767 * alpha-osf1-tdep.c: Include "osabi.h".
768 * alphafbsd-tdep.c: Include "osabi.h".
769 * alphanbsd-tdep.c: Include "osabi.h".
770
771 * arm-tdep.h: Don't include "osabi.h".
772 (struct gdbarch_tdep): Remove osabi member.
773 * arm-tdep.c: Include "osabi.h".
774 (arm_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
775 iterate over arches. Update call to gdbarch_init_osabi.
776 (arm_dump_tdep): Don't dump osabi.
777 * arm-linux-tdep.c: Include "osabi.h".
778 * armnbsd-tdep.c: Include "osabi.h".
779
780 * hppa-tdep.c (hppa_gdbarch_init): Don't call gdbarch_lookup_osabi.
781 Update call to gdbarch_init_osabi.
782
783 * i386-tdep.h: Don't include "osabi.h".
784 (struct gdbarch_tdep): Remove osabi member.
785 * i386-tdep.c: Include "osabi.h".
786 (i386_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
787 iterate over arches. Update call to gdbarch_init_osabi.
788 (i386_dump_tdep): Don't dump osabi.
789 * i386-linux-tdep.c: Include "osabi.h".
790 * i386-sol2-tdep.c: Include "osabi.h".
791 * i386bsd-tdep.c: Include "osabi.h".
792 * i386gnu-tdep.c: Include "osabi.h".
793 * i386ly-tdep.c: Include "osabi.h".
794 * i386nbsd-tdep.c: Include "osabi.h".
795 * i386obsd-tdep.c: Include "osabi.h".
796
797 * mips-tdep.c (struct gdbarch_tdep): Remove osabi member.
798 (mips_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
799 check osabi when iterating over arches. Update call to
800 gdbarch_init_osabi.
801 (mips_dump_tdep): Don't dump osabi.
802
803 * ns32k-tdep.h: Don't include "osabi.h".
804 (struct gdbarch_tdep): Remove.
805 * ns32k-tdep.c (ns32k_gdbarch_init): Don't call
806 gdbarch_lookup_osabi. Don't iterate over arches. Don't
807 allocate tdep. Update call to gdbarch_init_osabi.
808 (ns32k_dump_tdep): Remove.
809 (_initialize_ns32k_tdep): Update call to gdbarch_register.
810 * ns32knbsd-tdep.c: Include "osabi.h".
811
812 * ppc-tdep.h: Don't include "osabi.h".
813 (struct gdbarch_tdep): Remove osabi member.
814 * rs6000-tdep.c: Include "osabi.h".
815 (rs6000_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't check
816 osabi when iterating over arches. Update call to
817 gdbarch_init_osabi.
818 (rs6000_dump_tdep): Don't dump osabi.
819 * ppc-linux-tdep.c: Include "osabi.h".
820 * ppcnbsd-tdep.c: Include "osabi.h".
821
822 * sh-tdep.h: Don't include "osabi.h".
823 (struct gdbarch_tdep): Remove osabi member.
824 * sh-tdep.c: Include "osabi.h".
825 (sh_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
826 iterate over arches. Update call to gdbarch_init_osabi.
827 (sh_dump_tdep): Don't dump osabi.
828 * shnbsd-tdep.c: Include "osabi.h".
829
830 * sparc-tdep.c: Include "osabi.h".
831 (sparc_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
832 iterate over arches. Update call to gdbarch_init_osabi.
833 (sparc_dump_tdep): Don't dump osabi. Do dump the rest of the
834 tdep structure.
835
836 * vax-tdep.h: Don't include "osabi.h".
837 (struct gdbarch_tdep): Remove.
838 * vax-tdep.c: Include "osabi.h".
839 (vax_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
840 iterate over arches. Don't allocate tdep. Update call
841 to gdbarch_init_osabi.
842 (vax_dump_tdep): Remove.
843 (_initialize_vax_tdep): Update call to gdbarch_register.
844
845 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
846
847 * breakpoint.c (insert_breakpoints): Skip disabled breakpoints
848 entirely.
849 (breakpoint_re_set_one): Don't fetch the value for a disabled
850 watchpoint.
851
852 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
853
854 * buildsym.h (processing_hp_compilation): Remove obsolete variable.
855 * gdbarch.sh Remove include of "value.h" in gdbarch.h.
856 (COERCE_FLOAT_TO_DOUBLE): Remove.
857 * gdbarch.c: Regenerate.
858 * gdbarch.h: Regenerate.
859 * Makefile.in: Remove value_h from gdbarch_h.
860 * valops.c (coerce_float_to_double): New variable.
861 (default_coerce_float_to_double): Remove.
862 (standard_coerce_float_to_double): Remove.
863 (value_arg_coerce): Use coerce_float_to_double.
864 (_initialize_valops): Add "set coerce-float-to-double".
865 * value.h (default_coerce_float_to_double): Remove prototype.
866 (standard_coerce_float_to_double): Remove prototype.
867
868 * hpread.c (hpread_process_one_debug_symbol): Mark C++ functions as
869 prototyped.
870 * mdebugread.c (parse_symbol): Likewise.
871 * stabsread.c (define_symbol): Mark all functions as prototyped.
872
873 * hppa-tdep.c (hppa_coerce_float_to_double): Remove.
874 * alpha-tdep.c (alpha_gdbarch_init): Remove call to
875 set_gdbarch_coerce_float_to_double.
876 * arm-tdep.c (arm_gdbarch_init): Likewise.
877 * frv-tdep.c (frv_gdbarch_init): Likewise.
878 * h8300-tdep.c (h8300_gdbarch_init): Likewise (commented out).
879 * i386-sol2-tdep.c (i386_sol2_init_abi): Likewise.
880 * mips-tdep.c (mips_gdbarch_init): Likewise.
881 (mips_coerce_float_to_double): Remove.
882 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
883 (rs6000_coerce_float_to_double): Remove.
884 * s390-tdep.c (s390_gdbarch_init): Likewise.
885 * sh-tdep.c (sh_gdbarch_init): Likewise.
886 (sh_coerce_float_to_double): Remove.
887 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
888 (sparc_coerce_float_to_double): Remove.
889 * v850-tdep.c (v850_gdbarch_init): Likewise.
890 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
891 * config/m32r/tm-m32r.h (COERCE_FLOAT_TO_DOUBLE): Remove.
892 * config/pa/tm-hppa.h: (COERCE_FLOAT_TO_DOUBLE): Remove.
893 (hppa_coerce_float_to_double): Remove prototype.
894 * config/sparc/tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Remove.
895
896 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
897
898 * regformats/reg-m68k.dat: Remove fpcode and fpflags.
899
900 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
901
902 Suggested by Stewart Brown <sb24@avaya.com>:
903 * c-typeprint.c (c_type_print_varspec_prefix): Pass value of show
904 in recursive calls. Handle TYPE_CODE_TYPEDEF.
905 (c_type_print_varspec_suffix): Likewise.
906
907 2003-01-04 Mark Kettenis <kettenis@gnu.org>
908
909 * configure.in: Don't set and AC_SUBST SUBDIRS.
910 * configure: Regenerated.
911
912 * configure.in: Remove code dealing with shared libraries.
913 * Makefile.in: Remove HLDFLAGS and HLDENV.
914 * configure: Regenerated.
915
916 2003-01-04 Andrew Cagney <ac131313@redhat.com>
917
918 * frame.c (deprecated_frame_xmalloc): New function.
919 (deprecated_set_frame_saved_regs_hack): New function.
920 (deprecated_set_frame_extra_info_hack): New function.
921 * frame.h (deprecated_frame_xmalloc): Declare.
922 (deprecated_set_frame_saved_regs_hack): Declare.
923 (deprecated_set_frame_extra_info_hack): Declare.
924
925 2003-01-04 Mark Kettenis <kettenis@gnu.org>
926
927 * configure.in: Move code that provides the --enable-gdbtk option
928 right after the code that handles the --enable-tui option, and
929 polish it somewhat.
930 * configure: Regenerated.
931
932 * configure.in: Call AC_GNU_SOURCE. Check for pread64 using
933 AC_CHECK_FUNCS and remove the old check for pread64.
934 * acinclude.m4 (AC_GNU_SOURCE): New macro.
935 * acconfig.h (_GNU_SOURCE): Add.
936 (HAVE_PREAD64): Remove.
937 * configure, aclocal.m4, config.in: Regenerated.
938
939 2003-01-03 Andrew Cagney <ac131313@redhat.com>
940
941 * alpha-tdep.c: Use get_frame_saved_regs.
942 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
943 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
944 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Ditto.
945 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, v850-tdep.c: Ditto.
946 * vax-tdep.c, xstormy16-tdep.c: Ditto.
947
948 2003-01-03 Mark Kettenis <kettenis@gnu.org>
949
950 * configure.in: Remove all use of the SUBDIRS variable; add
951 directories using the AC_CONFIG_SUBDIRS macro instead. Polish
952 code providing the --enable-multi-ice option, and move it right in
953 front of the code that checks whether gdbserver is supported.
954 Polish that too.
955 * configure: Regenerated.
956 * Makefile.in (SUBDIRS): Substitute @subdirs@ instead of
957 @SUBDIRS@.
958
959 2003-01-03 Andrew Cagney <cagney@redhat.com>
960
961 * alpha-tdep.c: Use deprecated_update_frame_base_hack.
962 * avr-tdep.c, cris-tdep.c: Ditto.
963 * mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
964 * sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
965
966 2003-01-03 Mark Kettenis <kettenis@gnu.org>
967
968 * configure.in: Remove --enable-netrom option.
969 * configure: Regenerated.
970
971 2003-01-03 Mark Kettenis <kettenis@gnu.org>
972
973 * cli/cli-decode.h: Don't include "gdb_regex.h"; provide a forward
974 declaration for `struct re_pattern_buffer' instead.
975 * Makefile.in (cli_decode_h): Remove $(gdb_regex_h).
976
977 2003-01-03 J. Brobecker <brobecker@gnat.com>
978
979 * mdebugread.c (parse_symbol): Count until the stEnd matching
980 the structure name.
981
982 2003-01-02 Mark Kettenis <kettenis@gnu.org>
983
984 * configure.in: Remove --with-cpu option.
985 subscripts. Remove evil changequotes here.
986 * acconfig.h (TARGET_CPU_DEFAULT): Remove.
987 * config.in, configure: Regenerated.
988
989 * acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
990 * configure.in: Cleanup section that sources GDB and BFD configure
991 subscripts. Remove evil changequotes here.
992 * config.in, configure: Regenerated.
993
994 2003-01-02 Andrew Cagney <ac131313@redhat.com>
995
996 * arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
997 frame accessor methods.
998 * alpha-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
999 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
1000 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
1001 * mn10200-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Ditto.
1002 * s390-tdep.c, sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
1003 * vax-tdep.c, x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
1004 * z8k-tdep.c: Ditto.
1005
1006 2003-01-02 Mark Kettenis <kettenis@gnu.org>
1007
1008 * configure.in: Remove UI_OUT configuration code.
1009 * ada-lang.c: Update assuming UI_OUT is always true.
1010 * Makefile.in (UIOUT_CFLAGS): Remove.
1011 * configure: Regenerated.
1012 * TODO: Remove blurb about elimination of -DUI_OUT.
1013
1014 * configure.in: Move code that provides the --enable-gdbcli,
1015 --enable-gdbmi options right before the code that handles the
1016 --enable-tui option. Polish a bit.
1017 * configure: Regenerated.
1018
1019 * configure.in: Rewrite check for GNU regex and the
1020 --without-included regex option, and move it into the "Checks for
1021 library functions" section. This makes us use the system regex
1022 again by default on systems with version 2 of the GNU C library.
1023 This was apparently broken.
1024 * gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
1025 * acconfig.h (USE_INCLUDED_REGEX): Remove.
1026 * config.in, configure: Regenerated.
1027
1028 * configure.in: Move code that provides the --enable-tui option
1029 before the "Checks for libraries" section. Polish the code
1030 somewhat and set need_curses to yes if we build the TUI. Rewrite
1031 code that looks for a library providing termcap functionality to
1032 match more closely what's done in the Readline library, and move
1033 it into to the "Checks for libraries" section.
1034 * configure: Regenerated.
1035 * Makefile.in (TERMCAP): Remove variable.
1036 * config/i386/go32.mh (TERMCAP): Remove variable.
1037
1038 2003-01-02 Andrew Cagney <ac131313@redhat.com>
1039
1040 * MAINTAINERS: Mention gdb_mbuild.sh.
1041 * gdb_mbuild.sh: Rewrite.
1042
1043 2003-01-02 Mark Kettenis <kettenis@gnu.org>
1044
1045 * configure.in: Fix typo in last change.
1046 * config.in, configure: Regenerated.
1047
1048 2003-01-02 Andrew Cagney <ac131313@redhat.com>
1049
1050 * valarith.c (value_binop): Delete obsolete code and comments.
1051 * configure.host: Ditto.
1052 * buildsym.h (make_blockvector): Ditto.
1053 * buildsym.c (make_blockvector): Ditto.
1054 * defs.h (enum language): Ditto.
1055 (chill_demangle): Ditto.
1056 * elfread.c (elf_symtab_read): Ditto.
1057 * dwarfread.c (CHILL_PRODUCER): Ditto.
1058 (set_cu_language): Ditto.
1059 (handle_producer): Ditto.
1060 * expprint.c (print_subexp): Ditto.
1061 * gdbtypes.c (chill_varying_type): Ditto.
1062 * gdbtypes.h (builtin_type_chill_bool): Ditto.
1063 (builtin_type_chill_char, builtin_type_chill_long): Ditto.
1064 (builtin_type_chill_ulong, builtin_type_chill_real): Ditto.
1065 (chill_varying_type): Ditto.
1066 * language.h (_LANG_chill): Ditto.
1067 * language.c (binop_result_type, integral_type): Ditto.
1068 (character_type, string_type, structured_type): Ditto.
1069 (lang_bool_type, binop_type_check): Ditto.
1070 * stabsread.h (os9k_stabs): Ditto.
1071 * stabsread.c (os9k_type_vector, dbx_lookup_type): Ditto.
1072 (define_symbol, read_type, read_struct_fields): Ditto.
1073 (read_array_type, read_enum_type, read_huge_number): Ditto.
1074 (read_range_type, start_stabs): Ditto.
1075 * symfile.c (init_filename_language_table): Ditto.
1076 (add_psymbol_with_dem_name_to_list): Ditto.
1077 * symtab.c (symbol_init_language_specific): Ditto.
1078 (symbol_init_demangled_name, symbol_demangled_name): Ditto.
1079 * symtab.h (struct general_symbol_info): Ditto.
1080 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
1081 * typeprint.c (typedef_print): Ditto.
1082 * utils.c (fprintf_symbol_filtered): Ditto.
1083 * valops.c (value_cast, search_struct_field, value_slice): Delete
1084 obsolete code.
1085 (varying_to_slice): Delete function.
1086 * value.h (COERCE_VARYING_ARRAY): Delete obsolete macro contents.
1087 (varying_to_slice): Delete declaration.
1088 * MAINTAINERS: Update.
1089
1090 2003-01-02 Mark Kettenis <kettenis@gnu.org>
1091
1092 * configure.in: Reorganize "Checks for library functions section"
1093 a bit. Remove check for `btowc' and `isascii' functions.
1094 * configure: Regenerated.
1095
1096 * acconfig.h (_MSE_INT_H): Remove.
1097 * configure.in: Create "Checks for header files" section, and move
1098 appropriate tests there. Don't check for objlist.h, wchar.h,
1099 wctype.h and asm/debugreg.h. Rewrite Solaris 2.[78] <curses.h>
1100 misdetection fix. Also add "Checks for types", "Checks for
1101 compiler characteristics" and "Checks for library functions"
1102 sections.
1103 * config.in, configure: Regenerated.
1104
1105 * configure.in: Create "Checks for programs" section, and move
1106 appropriate tests there.
1107
1108 2003-01-01 Mark Kettenis <kettenis@gnu.org>
1109
1110 * configure.in: Create "Checks for libraries" section, and move
1111 appropriate tests there. Cleanup check for wctype in libw. Use
1112 AC_SEARCH_LIBS to see whether we need libsocket.
1113 * configure: Regenerated.
1114
1115 For older changes see ChangeLog-2002
1116 \f
1117 Local Variables:
1118 mode: change-log
1119 left-margin: 8
1120 fill-column: 74
1121 version-control: never
1122 End:
This page took 0.056935 seconds and 4 git commands to generate.