* jv-valprint.c (java_value_print): Look at TYPE_TAG_NAME, not
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2003-02-20 Tom Tromey <tromey@redhat.com>
2
3 * jv-valprint.c (java_value_print): Look at TYPE_TAG_NAME, not
4 TYPE_NAME, when printing a String value. PR java/1075.
5
6 2003-02-20 Adam Fedor <fedor@gnu.org>
7
8 * objc-lang.h (find_methods): Remove declaration.
9 * objc-lang.c (find_methods): Make static.
10
11 2003-02-20 Christopher Faylor <cgf@redhat.com>
12
13 * win32-nat.c (get_image_name): Check return value from
14 ReadProcessMemory.
15 (child_xfer_memory): Ditto.
16
17 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
18
19 * configure.in (TARGET_SYSTEM_ROOT): Set default to
20 ${exec_prefix}/${target_alias}/sys-root. Match explicit
21 '${exec_prefix}' (in addition to the expansion thereof) as
22 relocatable.
23 * configure: Rebuilt.
24
25 2003-02-20 David Carlton <carlton@math.stanford.edu>
26
27 * symtab.c (search_symbols): Revert the search_symbols part of my
28 2002-12-23 patch. Add comment.
29
30 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
31
32 * coffread.c (coff_symfile_read): Clean up minimal symbols earlier.
33 * dbxread.c (elfstab_build_psymtabs): Don't call
34 install_minimal_symbols.
35 (stabsect_build_psymtabs): Likewise.
36 * elfread.c (elf_symfile_read): Call install_minimal_symbols
37 earlier.
38 * somread.c (som_symfile_read): Call install_minimal_symbols
39 and do_cleanups earlier.
40 * nlmread.c (nlm_symfile_read): Likewise.
41 * mdebugread.c (elfmdebug_build_psymtabs): Call
42 install_minimal_symbols and make appropriate cleanups.
43
44 2003-02-20 Kevin Buettner <kevinb@redhat.com>
45
46 * solib.c (reload_shared_libraries): New function.
47 (_initialize_solib): Add callbacks for ``set solib-search-path''
48 and ``set solib-absolute-prefix''.
49
50 2003-02-20 David Carlton <carlton@math.stanford.edu>
51
52 * symtab.h (SYMBOL_PRINT_NAME): Rename from SYMBOL_SOURCE_NAME;
53 expand comment.
54 * ada-lang.c (user_select_syms, ada_finish_decode_line_1): Replace
55 SYMBOL_PRINT_NAME with SYMBOL_SOURCE_NAME.
56 * ada-typeprint.c (ada_typedef_print): Ditto.
57 * ax-gdb.c (gen_var_ref): Ditto.
58 * breakpoint.c (print_one_breakpoint): Ditto.
59 * buildsym.c (finish_block): Ditto.
60 * c-valprint.c (c_val_print): Ditto.
61 * expprint.c (print_subexp): Ditto.
62 * findvar.c (locate_var_value): Ditto.
63 * infcmd.c (jump_command): Ditto.
64 * linespec.c (decode_line_2, decode_compound): Ditto.
65 * maint.c (maintenance_translate_address): Ditto.
66 * objc-lang.c (compare_selectors, compare_classes): Ditto.
67 * printcmd.c (build_address_symbolic, sym_info, print_frame_args):
68 Ditto.
69 * p-valprint.c (pascal_val_print): Ditto.
70 * stabsread.c (define_symbol): Ditto.
71 * stack.c (print_frame, frame_info, print_block_frame_locals)
72 (print_frame_arg_vars, return_command): Ditto.
73 * symfile.c (compare_symbols, compare_psymbols): Ditto.
74 * symmisc.c (print_symbol): Ditto.
75 * symtab.c (lookup_partial_symbol, lookup_block_symbol)
76 (compare_search_syms, print_symbol_info, print_msymbol_info)
77 (rbreak_command): Ditto.
78 * tracepoint.c (tracepoints_info): Ditto.
79 * typeprint.c (typedef_print): Ditto.
80 * valops.c (value_of_variable, hand_function_call): Ditto.
81 * cli/cli-cmds.c (edit_command, list_command): Ditto.
82 * ada-typeprint.c: Update Copyright.
83 * infcmd.c, objc-lang.c, p-valprint.c, symmisc.c: Ditto.
84 * tracepoint.c, cli/cli-cmds.c: Ditto.
85
86 2003-02-20 Kevin Buettner <kevinb@redhat.com>
87
88 * frame.c (generic_unwind_get_saved_register): Make non-static.
89 * frame.h (generic_unwind_get_saved_register): Declare.
90 * mips-tdep.c (read_next_frame_reg): Fetch register from
91 current regcache when frame is NULL.
92 (mips_init_extra_frame_info): Pass NULL explicitly for parameter
93 that must be NULL.
94 (mips_get_saved_register): Call generic_unwind_get_saved_register()
95 instead of frame_register_unwind().
96
97 2003-02-20 Andrew Cagney <ac131313@redhat.com>
98
99 * remote-sim.c (gdbsim_insert_breakpoint)
100 (gdbsim_remove_breakpoint): Delete #ifdef SIM_HAS_BREAKPOINTS
101 code.
102
103 2003-02-20 Andrew Cagney <ac131313@redhat.com>
104
105 * remote.c (_initialize_remote): Add commands "set/show remote
106 hardware-watchpoint-limit" and "set/show remote
107 hardware-breakpoint-limit".
108 (remote_hw_watchpoint_limit): Initialize to -1.
109 (remote_hw_breakpoint_limit): Ditto.
110 (remote_check_watch_resources): Treat a limit of -1 as unlimited.
111
112 2003-02-19 Raoul Gough <RaoulGough@yahoo.co.uk>
113
114 * coff-pe-read.c: New file - support reading of minimal symbols from a
115 portable executable using the export table.
116 * coff-pe-read.h: New file.
117 * coffread.c: Include coff-pe-read.h.
118 (coff_symtab_read): Call read_pe_exported_syms iff no recognized
119 debugging symbols found.
120 * Makefile.in (SFILES): Add coff-pe-read.o.
121 (coff_pe_read_h): Define.
122 (COMMON_OBS): Add coff-pe-read.o.
123 (coffread.o): Add coff_pe_read_h dependency.
124 (coff-pe-read.o): New target.
125
126 2003-02-19 David Carlton <carlton@math.stanford.edu>
127
128 * Makefile.in (SFILES): Add block.c.
129 (block_h): New.
130 (COMMON_OBS): Add block.o.
131 (block.o): New.
132 (x86-64-tdep.o): Add $(block_h).
133 (values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
134 (stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
135 (objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
136 (m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
137 (f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
138 (c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
139 (alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
140 * value.h: Add opaque declaration for struct block.
141 * parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
142 * ada-lang.h: Ditto.
143 * x86-64-tdep.c: #include "block.h"
144 * values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
145 * symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
146 * objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
147 * mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
148 * jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
149 * findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
150 * buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
151 * alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
152 * blockframe.c (blockvector_for_pc_sect): Move to "block.c".
153 (blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
154 * symtab.c (block_function): Ditto.
155 (contained_in): Ditto.
156 * frame.h: Move block_for_pc and block_for_pc_sect declarations to
157 block.h. Add opaque declaration for struct block.
158 * symtab.h: Move block_function and contained_in declarations to
159 block.h. Add opaque declarations for struct block, struct
160 blockvector.
161 (struct block): Move to block.h.
162 (struct blockvector): Ditto.
163 (BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
164 (BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
165 (BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
166 (ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
167 (BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
168 Ditto.
169 * block.c: New file.
170 * block.h: New file.
171
172 2003-02-19 Theodore A. Roth <troth@openavr.org>
173
174 * avr-tdep.c (avr_extract_return_value): Remove function.
175 (avr_store_return_value): Remove function.
176 (avr_extract_struct_value_address): Remove function.
177 (avr_gdbarch_init): Remove set_gdbarch_deprecated_*() calls.
178
179 2003-02-19 Andrew Cagney <ac131313@redhat.com>
180
181 * rs6000-tdep.c: Include "gdb_assert.h".
182 (registers_e500): Add "acc" and "spefscr".
183 (PPC_GPRS_PSEUDO_REGS): Remove trailing comma.
184 (rs6000_gdbarch_init): Update initialization of ppc_gp0_regnum,
185 ppc_gplast_regnum, sp_regnum and fp_regnum. Check that gp0_regnum
186 really is "r0".
187 (registers_e500): Mark the "acc" as a 64 bit (from Jim Willson).
188
189 2003-02-18 Keith Seitz <keiths@redhat.com>
190
191 * Makefile.in: Add gdbtk-interps.c.
192
193 2003-02-18 Kevin Buettner <kevinb@redhat.com>
194
195 * sparc-tdep.c (sparc_frame_chain): Adjust return value.
196 * config/sparc/tm-sparc.h (init_frame_pc_noop): Declare.
197
198 2003-02-18 Andrew Cagney <cagney@redhat.com>
199
200 * symtab.h (struct objfile): Add opaque declaration.
201
202 2003-02-18 Elena Zannoni <ezannoni@redhat.com>
203
204 From Jim Ingham <jingham@apple.com>:
205 * dbxread.c (process_one_symbol): Use last_function_start rather
206 than function_start_offset to find the real beginning of the
207 current function. The latter is just the text section offset on
208 some systems, the former is always the real function start.
209
210 2003-02-17 Andrew Cagney <cagney@redhat.com>
211
212 * configure.in: Revert ${target} != ${host}.
213
214 2003-02-17 Andrew Cagney <ac131313@redhat.com>
215
216 * configure.in (Makefile): Use the test ${target} != ${host},
217 instead of the absence of the "nm.h" file, to determine of the
218 configuration non-native.
219 * configure: Regenerate.
220
221 2003-02-14 Elena Zannoni <ezannoni@redhat.com>
222
223 From Brian Ford <ford@vss.fsi.com>
224
225 * cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
226 conditionalize tui_active test.
227 (lookup_cmd_1): Ditto.
228
229 2003-02-14 Mark Kettenis <kettenis@gnu.org>
230
231 * configure.in: Add check for _etext.
232 * maint.c (maintenance_set_profile_cmd): Use etext if _etext isn't
233 available.
234 * config.in, configure: regenerated.
235
236 2003-02-14 Daniel Jacobowitz <drow@mvista.com>
237
238 * dwarf2read.c (dwarf2_get_pc_bounds): Offset addresses by base.
239
240 2003-02-14 Andrew Cagney <ac131313@redhat.com>
241
242 * main.c (tui_version): Delete variable.
243 (captured_main): When --tui, set interpreter_p to "tui" instead of
244 enabling tui_version.
245 * printcmd.c (display_command) [TUI]: Test tui_active instead of
246 tui_version.
247 * cli/cli-decode.c (lookup_cmd_composition): Ditto.
248 * cli/cli-cmds.c (disassemble_command): Ditto.
249 * defs.h (tui_version): Delete declaration.
250 * Makefile.in (SUBDIR_TUI_SRCS): Add "tui/tui-interp.c".
251 (tui-interp.o): Add rules.
252 (SUBDIR_TUI_OBS): Add "tui-interp.o".
253
254 2003-02-14 Christopher Faylor <cgf@redhat.com>
255
256 * win32-nat.c (register_loaded_dll): Correctly set address range for
257 just-loaded dll.
258
259 2003-02-12 Jason Molenda (jmolenda@apple.com)
260
261 * symmisc.c (print_objfile_statistics): Include information about
262 the number of psymtabs and symtabs in each object file.
263
264 2003-02-13 Keith R Seitz <keiths@redhat.com>
265
266 * main.h (struct captured_main_args): Add interpreter_p.
267 * main.c (captured_main): Initialize interpreter_p from context.
268 * gdb.c (main): Set interpreter_p argument.
269 * Makefile.in (gdb.o): Add dependency for interps.h.
270
271 2003-02-12 Andrew Cagney <ac131313@redhat.com>
272
273 * event-top.c (cli_command_loop): Delete declaration.
274 (_initialize_event_loop): Delete function setting event_loop_hook.
275 * event-top.h (cli_command_loop): Declare. Update copyright.
276 (EVENT_TOP_H): Define. Wrap header in #ifdef EVENT_TOP_H.
277 * interps.c (current_interp_command_loop): When event_loop_p, call
278 cli_command_loop.
279
280 2003-02-12 Andrew Cagney <ac131313@redhat.com>
281
282 * interps.h (interp_command_loop_ftype): Change return type to
283 void.
284
285 2003-02-12 Michal Ludvig <mludvig@suse.cz>
286
287 * x86-64-tdep.c (x86_64_extract_return_value)
288 (x86_64_store_return_value): Use regcache instead of regbuf.
289 (x86_64_gdbarch_init): Change related set_gdbarch_* functions.
290 * x86-64-linux-nat.c (fill_gregset): Use regcache.
291
292 2003-02-11 Andrew Cagney <ac131313@redhat.com>
293
294 * acinclude.m4 (no_tcl): SUBST TCL_CC_SEARCH_FLAGS.
295 * aclocal.m4: Regenerate.
296 * configure: Regenerate.
297
298 * Makefile.in (TCL): Use TCL_CC_SEARCH_FLAGS instead of
299 TCL_LD_SEARCH_FLAGS.
300
301 2003-02-10 Michal Ludvig <mludvig@suse.cz>
302
303 * dwarf2cfi.c: Reindented.
304
305 2003-02-09 Andrew Cagney <ac131313@redhat.com>
306
307 * interps.c (clear_interpreter_hooks): Convert function definition
308 to ISO C.
309
310 2003-02-07 David Carlton <carlton@math.stanford.edu>
311
312 * gdb_mbuild.sh: Delete extra shift after parsing '-f'.
313
314 2003-02-07 Kevin Buettner <kevinb@redhat.com>
315
316 * gdbtypes.h (struct main_type): Move ``length'' field from here...
317 (struct type): ...to here.
318 (TYPE_LENGTH): Adjust to reflect different location of ``length''
319 field.
320 * gdbtypes.c (make_qualified_type): Set length on newly created type.
321 (replace_type): Set length on all type variants for a given type.
322
323 2003-02-07 Andrew Cagney <ac131313@redhat.com>
324
325 * sol-thread.c, hpux-thread.c: Include "gdb_stat.h" instead of
326 <sys/stat.h>.
327 * Makefile.in (sol-thread.o, hpux-thread.o): Update dependencies.
328
329 2003-02-06 Andrew Cagney <ac131313@redhat.com>
330
331 * Makefile.in (symm-nat.o): Update dependencies.
332 (sparc-nat.o, procfs.o, proc-api.o, ppc-linux-nat.o): Ditto.
333 (lynx-nat.o, ia64-linux-nat.): Ditto.
334 * symm-nat.c, sparc-nat.c, procfs.c, proc-api.c: Include
335 "gdb_wait.h" instead of <wait.h> or <sys/wait.h>.
336 * ppc-linux-nat.c, lynx-nat.c, ia64-linux-nat.c: Ditto.
337
338 * Makefile.in (inflow_h): Define.
339 (procfs.o, inflow.o, procfs.o): Update dependencies.
340 * inftarg.c (child_stop): Delete extern declaration of
341 inferior_process_group. Include "inflow.h".
342 * procfs.c (procfs_stop): Ditto. Include "inflow.h".
343 * inflow.c (PROCESS_GROUP_TYPE): Move definitions from here ...
344 * inflow.h (PROCESS_GROUP_TYPE): ... to here. New file.
345 (our_process_group, inferior_process_group): Extern declarations.
346
347 * procfs.c: Include "gdb_assert.h".
348
349 * linux-proc.c: Include "gdb_stat.h" instead of <sys/stat.h>.
350 * cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
351 * jv-typeprint.c (java_type_print_base): Ditto.
352 * typeprint.c (typedef_print): Eliminate STREQ.
353 * cli/cli-script.c (define_command, define_command): Ditto.
354 * main.c (captured_main): Ditto.
355 * values.c (lookup_internalvar): Ditto.
356 * utils.c (safe_strerror, parse_escape): Eliminate assignment
357 within `if' conditional.
358 * linespec.c (decode_line_2): Ditto.
359 * cli/cli-dump.c (bfd_openr_with_cleanup): Ditto.
360 (bfd_openw_with_cleanup): Ditto.
361
362 2003-02-07 Mark Kettenis <kettenis@gnu.org>
363
364 * x86-64-tdep.c (x86_64_init_abi): Set extract_return_value to
365 legacy_extract_return_value and store_return_value to
366 legacy_return_value.
367
368 2003-02-06 Raoul Gough <RaoulGough@yahoo.co.uk>
369
370 * win32-nat.c (get_relocated_section_addrs): New function. Find
371 section load addresses for symbol handling in relocated DLLs.
372 (solib_symbols_add): Open a bfd and call get_relocated_section_addrs.
373
374 2003-02-05 Fred Fish <fnf@intrinsity.com>
375
376 * remote-e7000.c (e7000_drain_command): Fix precedence problem with
377 '=' and '!='.
378 * rdi-share/ardi.c (wait_for_debug_message): Fix precedence problem
379 with '&' and '=='.
380 (angel_RDI_info): Ditto.
381 * infttrace.c (threads_continue_all_but_one): Fix precedence problem
382 with '&' and '!='.
383 (threads_continue_all_with_signals): Ditto.
384
385 2003-02-05 Jim Ingham <jingham@apple.com>
386 Keith Seitz <keiths@redhat.com>
387 Elena Zannoni <ezannoni@redhat.com>
388 Andrew Cagney <ac131313@redhat.com>
389
390 * Makefile.in (SUBDIR_CLI_OBS): Add "cli-interp.o".
391 (SUBDIR_CLI_SRCS): Add "cli/cli-interp.c".
392 (SUBDIR_MI_OBS): Add "mi-interp.o".
393 (SUBDIR_MI_SRCS): Add "mi/mi-interp.c".
394 (SFILES): Add "interps.c".
395 (COMMON_OBS): Add "interps.o".
396 (interps_h, mi_main_h): Define.
397 (interps.o, cli-interp.o, mi-interp.o): Add dependencies.
398 (mi-main.o, main.o, event-top.o): Update dependencies.
399 * cli/cli-interp.c: New file.
400 * interps.h, interps.c: New files.
401 * top.c: (gdb_init): Don't install the default interpreter, handed
402 by captured_main.
403 * main.c: Include "interps.h".
404 (interpreter_p): Note that it should malloc'ed.
405 (captured_command_loop): Call current_interp_command_loop.
406 (captured_main): Initialize interpreter_p to INTERP_CONSOLE. Use
407 xfree and xstrdup when updating interpreter_p. Install the
408 default interpreter. Add hack to stop mi1's copyright notice
409 being encoded.
410 * event-top.h (gdb_setup_readline): Declare.
411 (gdb_disable_readline): Declare.
412 * event-top.c: Include "interps.h".
413 (display_gdb_prompt): Call current_interp_display_prompt_p.
414 (gdb_setup_readline): Initialize gdb_stdout, gdb_stderr,
415 gdb_stdlog, and gdb_stdtarg.
416 (_initialize_event_loop): Don't call gdb_setup_readline.
417 * cli-out.c (cli_out_set_stream): New function.
418 * cli-out.h (cli_out_set_stream): Declare.
419
420 2003-02-06 Mark Kettenis <kettenis@gnu.org>
421
422 * configure.tgt (i[3456]86-*-sysv4.2*, i[3456]86-*-sysv4*,
423 i[3456]86-*-sysv5*, i[3456]86-*-sco3.2v5*): Remove. These are all
424 handled fine by i[3456]86-*sco* and i[3456]86-sysv*.
425 * config/i386/i386sco5.mt, config/i386/i386v4.mt,
426 config/i386/i386v42mp.mt: Removed.
427
428 2003-02-05 Mark Kettenis <kettenis@gnu.org>
429
430 * configure.tgt (*-*-solaris*): Set gdb_osabi to
431 GDB_OSABI_SOLARIS.
432
433 2003-02-05 Michael Chastain <mec@shout.net>
434
435 * PROBLEMS (i[3456]86-*-linux*): Warn about binutils
436 2.12.1 and earlier versions.
437
438 2003-02-05 Andrew Cagney <ac131313@redhat.com>
439
440 Remove orphaned hosts, targets and files.
441 * config/i386/gdbserve.mt, config/m68k/nm-apollo68b.h: Delete.
442 * config/m68k/nm-hp300bsd.h, config/m68k/tm-apollo68b.h: Delete.
443 * config/m68k/tm-es1800.h, config/m68k/tm-hp300bsd.h: Delete.
444 * config/m68k/tm-mac.h, config/m68k/xm-apollo68b.h: Delete.
445 * config/pa/hpux1020.mt, config/pa/hpux11.mt: Delete.
446 * config/pa/hpux11w.mt, config/powerpc/gdbserve.mt: Delete.
447 * config/powerpc/ppcle-eabi.mt, config/powerpc/ppcle-sim.mt: Delete.
448 * config/powerpc/tm-ppc-sim.h, config/sparc/sp64sim.mt: Delete.
449 * config/sparc/tm-sp64sim.h: Delete.
450 * configure.host: Delete strongarm-*-*, xscale-*-*, and arm*-*-*
451 hosts.
452 * configure.tgt: Delete i[3456]86-*-sco3.2v4*, and
453 mips*-dec-mach3* targets.
454
455 2003-02-04 Michael Chastain <mec@shout.net>
456
457 * NEWS: Fix typo: sepcifying -> specifying.
458
459 2003-02-04 Michael Chastain <mec@shout.net>
460
461 * dwarfread.c: Add documentation on the state of dwarf-1,
462 looking towards obsoletion.
463
464 2003-02-03 Michael Chastain <mec@shout.net>
465
466 * config/djgpp/fnchange.lst: Add gdb/testsuite/gdb.c++/pr-1023.cc,
467 gdb/testsuite/gdb.c++/pr-1023.exp.
468
469 2003-02-04 Andrew Cagney <ac131313@redhat.com>
470
471 * values.c: Delete code conditional on IS_TRAPPED_INTERNALVAR.
472 * TODO: Delete reference to IS_TRAPPED_INTERNALVAR.
473
474 * utils.c (init_page_info): Delete reference to MPW in comments.
475 * main.c (captured_main): Delete #ifdef MPW.
476
477 2003-02-04 Andrew Cagney <ac131313@redhat.com>
478
479 * NEWS: Note that the m32r-*-elf* is obsolete.
480 * monitor.c (monitor_expect): Obsolete reference to m32r.
481 * configure.tgt: Mark m32r-*-elf* as obsolete.
482 * MAINTAINERS: Mark m32k as obsolete.
483 * m32r-rom.c: Obsolete file.
484 * config/m32r/m32r.mt: Obsolete file.
485 * config/m32r/tm-m32r.h: Obsolete file.
486 * m32r-stub.c: Obsolete file.
487 * m32r-tdep.c: Obsolete file.
488
489 2003-02-04 Andrew Cagney <ac131313@redhat.com>
490
491 * NEWS: Mention that the z8k-zilog-none is obsolete.
492 * MAINTAINERS: Mark z8k as obsolete.
493 * configure.tgt: Obsolete the z8k-*-coff* target.
494 * config/z8k/z8k.mt: Obsolete file.
495 * config/z8k/tm-z8k.h: Obsolete file.
496 * z8k-tdep.c: Obsolete file.
497
498 2003-02-04 Andrew Cagney <ac131313@redhat.com>
499
500 * NEWS: Mention that the mn10200-elf is obsolete.
501 * configure.tgt: Obsolete mn10200-*-* target.
502 * breakpoint.c (update_breakpoints_after_exec): Update comment to
503 mention that the mn10200 is obsolete.
504 * breakpoint.h: Ditto.
505 * MAINTAINERS: Mark the mn10200-elf as obsolete.
506 * config/mn10200/mn10200.mt: Obsolete file.
507 * config/mn10200/tm-mn10200.h: Obsolete file.
508 * mn10200-tdep.c: Obsolete file.
509
510 2003-02-04 Andrew Cagney <ac131313@redhat.com>
511
512 * MAINTAINERS: Mark h8500 as obsolete.
513 * configure.tgt (h8500-*-*): Mark h8500 code as obsolete.
514 * findvar.c (value_from_register): Ditto.
515 * h8500-tdep.c: Mark file as obsolete.
516 * config/h8500/h8500.mt: Ditto.
517 * config/h8500/tm-h8500.h: Ditto.
518 * NEWS: Mention that h8500 is obsolete.
519
520 2003-02-04 David Carlton <carlton@math.stanford.edu>
521
522 * objfiles.c (allocate_objfile): Always set name. Add comment at
523 start of function.
524 * jv-lang.c (get_dynamics_objfile): Add comment.
525
526 2003-02-04 David Carlton <carlton@math.stanford.edu>
527
528 * symtab.h (SYMBOL_LINKAGE_NAME): Delete.
529 * printcmd.c (build_address_symbolic): Replace uses of
530 SYMBOL_LINKAGE_NAME by equivalent uses of SYMBOL_SOURCE_NAME,
531 SYMBOL_NAME, and asm_demangle.
532 Update copyright.
533
534 2003-02-04 David Carlton <carlton@math.stanford.edu>
535
536 * linespec.c (decode_compound): Extract code into
537 lookup_prefix_sym.
538 (lookup_prefix_sym): New function.
539
540 2003-02-04 David Carlton <carlton@math.stanford.edu>
541
542 * gdbtypes.h: Delete INTEGER_COERCION_BADNESS,
543 FLOAT_COERCION_BADNESS.
544 * gdbtypes.c (rank_one_type): Replace all uses of
545 INTEGER_COERCION_BADNESS by INTEGER_CONVERSION_BADNESS.
546
547 2003-02-04 Jim Blandy <jimb@redhat.com>
548
549 * dwarf2read.c (dwarf2_locate_sections): When we find a macro info
550 section, let dwarf_macinfo_section point to it, not
551 dwarf_loc_section.
552
553 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
554
555 Pointed out by Anton Blanchard <anton@samba.org>.
556 * ppc-linux-tdep.c (insn_is_sigreturn): New function.
557 (ppc_linux_at_sigtramp_return_path): Use it.
558
559 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
560
561 * defs.h (streq): Add prototype.
562 * utils.c (streq): New function.
563
564 * dwarf2read.c (new_symbol): Use SYMBOL_SET_NAMES instead of
565 SYMBOL_NAME and SYMBOL_INIT_DEMANGLED_NAME.
566 * mdebugread.c (new_symbol): Likewise.
567 * stabsread.c (define_symbol): Likewise.
568 * coffread.c (process_coff_symbol): Likewise.
569 * dwarfread.c (new_symbol): Likewise.
570
571 * minsyms.c (prim_record_minimal_symbol_and_info): Use
572 SYMBOL_SET_NAMES instead of setting SYMBOL_NAME. Set the language
573 here.
574 (install_minimal_symbols): Don't set SYMBOL_LANGUAGE or call
575 SYMBOL_INIT_DEMANGLED_NAME.
576 * objfiles.c: Include "hashtab.h".
577 (allocate_objfile): Call htab_set_functions_ex for the
578 demangled_names_hash.
579 (free_objfile): Call htab_delete for the demangled_names_hash.
580 * objfiles.h (struct htab): Add declaration.
581 (struct objfile): Add demangled_names_hash.
582 * symfile.c: Include "hashtab.h".
583 (reread_symbols): Call htab_delete for the demangled_names_hash.
584 (add_psymbol_to_list): Use SYMBOL_SET_NAMES instead of putting
585 SYMBOL_NAME in the bcache.
586 * symtab.c: Include "hashtab.h". Update comments.
587 (create_demangled_names_hash, symbol_set_names): New functions.
588 (symbol_find_demangled_name): New function, broken out from
589 symbol_init_demangled_names.
590 (symbol_init_demangled_names): Use it.
591 * symtab.h (SYMBOL_INIT_DEMANGLED_NAME): Add missing parentheses.
592 (SYMBOL_SET_NAMES): New macro.
593 (symbol_set_names): Add prototype.
594
595 2003-02-03 Jim Blandy <jimb@redhat.com>
596
597 Use a single, consistent representation for an empty minimal
598 symbol table in an objfile.
599 * objfiles.c (terminate_minimal_symbol_table): New function.
600 (allocate_objfile): Call it.
601 * objfiles.h (terminate_minimal_symbol_table): New declaration.
602 (ALL_MSYMBOLS): No need to test whether (objfile)->msymbols is
603 non-NULL.
604 * minsyms.c (lookup_minimal_symbol_by_pc_section): To see whether
605 objfile has minimal symbols, compare minimal_symbol_count to zero,
606 instead of comparing msymbols with NULL.
607 * objfiles.c (have_minimal_symbols): Same.
608 * solib-sunos.c (solib_add_common_symbols): Call
609 terminate_minimal_symbol_table.
610 * symfile.c (reread_symbols): Same.
611
612 2003-02-03 Kevin Buettner <kevinb@redhat.com>
613
614 * s390-tdep.c (s390_address_class_type_flags)
615 (s390_address_class_type_flags_to_name)
616 (s390_address_class_name_to_type_flags): New functions.
617 (s390_gdbarch_init): Define ADDRESS_CLASS_TYPE_FLAGS_TO_NAME,
618 ADDRESS_CLASS_NAME_TO_TYPE_FLAGS, and ADDRESS_CLASS_TYPE_FLAGS.
619
620 2003-02-03 Michael Snyder <msnyder@redhat.com>
621
622 * arm-tdep.c: Fix spell-o in comment.
623
624 2003-02-03 Michal Ludvig <mludvig@suse.cz>
625
626 * dwarf2cfi.c (pointer_encoding): Added new parameter.
627 * dwarf2cfi.c, dwarf2read.c: Changed all warnings and
628 error messages to contain BFD filename.
629
630 2003-02-02 Elena Zannoni <ezannoni@redhat.com>
631
632 Fix PR gdb/742 gdb/743 gdb/877
633 * disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
634 (do_mixed_source_and_assembly): Use
635 make_cleanup_ui_out_tuple_begin_end and
636 make_cleanup_ui_out_tuple_begin_end.
637 (do_mixed_source_and_assembly): Ditto.
638 * thread.c (do_captured_list_thread_ids): Ditto.
639 * ui-out.h (ui_out_table_begin, ui_out_list_begin,
640 ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
641 ui_out_tuple_end): Delete prototypes.
642 * ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
643 ui_out_list_end, ui_out_tuple_end): Delete.
644
645 From Kevin Buettner <kevinb@redhat.com>:
646 * ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
647 * ui-out.c (make_cleanup_ui_out_table_begin_end)
648 (do_cleanup_table_end): New functions.
649 * breakpoint.c (print_it_typical, print_one_breakpoint, mention):
650 Use cleanups to invoke_ui_out_tuple_end().
651 (breakpoint_1): Use cleanup to invoke ui_out_table_end().
652 * cli/cli-setshow.c (cmd_show_list): Use
653 make_cleanup_ui_out_tuple_begin_end.
654
655 2003-02-02 Andrew Cagney <ac131313@redhat.com>
656
657 * frame.c (frame_unwind_register): New function.
658 (frame_unwind_unsigned_register): Use.
659 (frame_unwind_signed_register): Use.
660 (frame_read_register): New function.
661 * frame.h (frame_unwind_register): Declare.
662 (frame_read_register): Declare.
663
664 * d10v-tdep.c (d10v_frame_pop): Rewrite. Use regcache_cooked_write
665 and frame_unwind_register instead of read_memory, write_register
666 and deprecated_write_register_bytes.
667
668 2003-02-02 Andrew Cagney <ac131313@redhat.com>
669
670 * frame.h: Note that namelen can be negative.
671 * frame.c (frame_map_name_to_regnum): When LEN is negative, use
672 NAME's length.
673
674 * NEWS: Mention that the d10v's `regs' command is deprecated.
675 * d10v-tdep.c (d10v_gdbarch_init): Set print_registers_info.
676 (d10v_print_registers_info): New function.
677 (show_regs): Call d10v_print_registers_info.
678 (_initialize_d10v_tdep): Mark "show regs" command as deprecated.
679
680 2003-02-02 Mark Kettenis <kettenis@gnu.org>
681
682 * stack.c (print_frame_info): Restore call to annotate_frame_begin
683 lost in the previous patch.
684
685 2003-02-01 Andrew Cagney <ac131313@redhat.com>
686
687 From 2002-11-09 Jason Molenda (jason-cl@molenda.com)
688 * stack.c (print_frame_info_base): Output complete FRAME tuple
689 for synthesized frames.
690
691 2003-02-02 Andrew Cagney <ac131313@redhat.com>
692
693 * mips-nat.c (zerobuf): Delete.
694 (fetch_inferior_registers): Alloc local zerobuf.
695 (fetch_core_registers): Alloc local zerobuf.
696 * d10v-tdep.c (show_regs): Don't allocate a dynamic array using
697 MAX_REGISTER_RAW_SIZE or MAX_REGISTER_VIRTUAL_SIZE.
698 * thread-db.c (thread_db_store_registers): Ditto.
699 * sh-tdep.c (sh_do_register): Ditto.
700 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
701 * remote-sim.c (gdbsim_store_register): Ditto.
702 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
703 * remote-e7000.c (fetch_regs_from_dump): Ditto.
704 * monitor.c (monitor_supply_register): Ditto.
705 * mipsv4-nat.c (supply_gregset, supply_fpregset): Ditto.
706 * mips-nat.c (fetch_inferior_registers): Ditto.
707 * m68klinux-nat.c (fetch_register): Ditto.
708 * lynx-nat.c (fetch_inferior_registers): Ditto.
709 (fetch_inferior_registers): Ditto.
710 * irix4-nat.c (supply_gregset, supply_fpregset): Ditto.
711 * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
712 (hpux_thread_store_registers): Ditto.
713 * hppah-nat.c (fetch_register): Ditto.
714 * hppab-nat.c (fetch_register): Ditto.
715 * hppa-tdep.c (pa_register_look_aside): Ditto.
716 (pa_print_fp_reg, pa_strcat_fp_reg): Ditto.
717 * dve3900-rom.c (fetch_bitmapped_register): Ditto.
718
719 2003-02-01 Andrew Cagney <ac131313@redhat.com>
720
721 * gdbarch.sh: Explictly specify all method levels. When a
722 variable with an empty level, provide a non-multi-arch default.
723 (BELIEVE_PCC_PROMOTION_TYPE): Set level to empty.
724 * gdbarch.h: Re-generate.
725 * stabsread.c (BELIEVE_PCC_PROMOTION_TYPE): Delete. Always defined.
726 * config/m68k/tm-sun3.h (BELIEVE_PCC_PROMOTION_TYPE): Define as 1
727
728 2003-02-01 Andrew Cagney <ac131313@redhat.com>
729
730 * defs.h (host_pointer_to_address): Delete declaration.
731 (address_to_host_pointer): Delete declaration.
732 * utils.c (host_pointer_to_address): Delete function.
733 (address_to_host_pointer): Delete function.
734 * procfs.c (procfs_address_to_host_pointer): New function.
735 * procfs.c (proc_set_watchpoint): Use.
736 (procfs_can_use_hw_breakpoint): Update comments.
737 * somsolib.c (hpux_address_to_host_pointer_hack): New function.
738 (som_solib_add): Use.
739 * hppa-tdep.c (hppa_pointer_to_address_hack): New function.
740 * hppa-tdep.c (unwind_command): Use.
741
742 2003-02-01 Andrew Cagney <ac131313@redhat.com>
743
744 * gdb_dirent.h: Mark up valid uses of <dirent.h>, d_namelen and
745 strlen d_name.
746
747 * main.c (captured_main): Delete #ifdef ADDITIONAL_OPTIONS,
748 ADDITIONAL_OPTION_CASES, and ADDITIONAL_OPTION_HANDLER code.
749 (print_gdb_help): Delete #ifdef ADDITIONAL_OPTION_HELP code.
750 * stabsread.c (DBX_PARM_SYMBOL_CLASS): Delete macro.
751 (define_symbol): Update.
752 * symfile.c (generic_load): Remove references to nindy.
753 * symtab.c: Remove references to nindy.
754
755 2003-02-01 Andrew Cagney <ac131313@redhat.com>
756
757 * infcmd.c (print_float_info): Delete code conditional on
758 FLOAT_INFO.
759 * config/nm-lynx.h: Delete #undef FLOAT_INFO. Update copyright.
760 * config/m68k/nm-apollo68b.h: Ditto.
761 * config/i386/tm-ptx.h (FLOAT_INFO): Delete. Update copyright.
762 * config/ns32k/nm-nbsd.h (FLOAT_INFO): Ditto.
763 * config/i386/tm-symmetry.h (FLOAT_INFO): Ditto.
764
765 2003-02-01 Mark Kettenis <kettenis@gnu.org>
766
767 * config/i386/tm-i386os9k.h: Removed.
768
769 * configure.host (i[3456]86-*-isc*): Set gdb_host to i386v.
770 Remove i[3456]86-*-sysv3.2* and i[3456]86-*-sysv32* entries since
771 they're identical to i[3456]86-*-sysv* now.
772 * config/i386/i386v32.mh: Removed.
773 * config/i386/xm-i386v32.h: Removed.
774 * config/i386/xm-i386sco.h (U_FPSTATE): Remove macro.
775
776 * config/i386/i386mk.mt, config/i386/i386mk.mh: Removed.
777
778 * config/i386/i386dgux.mh: Removed.
779 * configure.host (i[3456]86-*-dgux): Set gdb_host to i386v4.
780
781 * configure.in: Fix typo.
782 * configure: Regenerated.
783
784 2003-01-31 David Carlton <carlton@math.stanford.edu>
785
786 * dwarf2read.c (dwarf2_locate_sections): Set
787 dwarf_ranges_section.
788
789 2003-01-31 Andrew Cagney <ac131313@redhat.com>
790
791 * objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
792 * utils.c: Update comments documenting legitimate uses of PTR.
793
794 * utils.c: Re-indent.
795
796 * config/djgpp/fnchange.lst: Delete nindy files.
797 * nindy-share/ttyflush.c, nindy-share/stop.h: Delete files.
798 * nindy-share/nindy.c, nindy-share/env.h: Delete files.
799 * nindy-share/coff.h, nindy-share/block_io.h: Delete files.
800 * nindy-share/b.out.h, nindy-share/VERSION: Delete files.
801 * nindy-share/README, nindy-share/Onindy.c: Delete files.
802 * nindy-tdep.c, nindy-share/Makefile: Delete files.
803 * Makefile.in (init.c): Remove nindy references.
804 (saber_gdb): Delete rule.
805 (ALLDEPFILES): Delete hp300ux-nat.c, nindy-tdep.c,
806 nindy-share/Onindy.c, nindy-share/nindy.c, nindy-share/ttyflush.c,
807 and a68v-nat.c.
808 (hp300ux-nat.o, a68v-nat.o, ptx4-nat.o): Delete rules.
809 (Onindy.o, nindy.o, ttyflush.o, nindy-tdep.o): Delete rules.
810 (HFILES_NO_SRCDIR): Delete nindy-share/b.out.h,
811 nindy-share/block_io.h, nindy-share/coff.h, nindy-share/env.h, and
812 nindy-share/stop.h.
813 * hp300ux-nat.c, a68v-nat.c, ptx4-nat.c: Delete files.
814 * saber.suppress: Delete file.
815
816 2003-01-31 Daniel Jacobowitz <drow@mvista.com>
817
818 * dbxread.c (stabs_data): New static variable.
819 (fill_symbuf): Support an in-memory buffer for stabs data.
820 (stabs_seek): New function.
821 (dbx_psymtab_to_symtab): Relocate the stabs data if necessary.
822 (read_ofile_symtab): Use stabs_seek.
823 (elfstab_build_psymtabs): Take an asection* instead of
824 an offset and size. Relocate the stabs data if necessary.
825 Save the section* for dbx_psymtab_to_symtab.
826 * dwarf2read.c: Add section variables for each debug section.
827 (dwarf2_locate_sections): Fill them in.
828 (dwarf2_read_section): Take an asection* argument.
829 Relocate the section contents if necessary.
830 (dwarf2_build_psymtabs, dwarf2_build_psymtabs_easy): Update callers.
831 * dwarf2cfi.c (parse_frame_info): Take a section argument and pass
832 it to dwarf2_read_section.
833 (dwarf2_build_frame_info): Update callers.
834 * elfread.c (elf_symfile_read): Update call to
835 elfstab_build_psymtabs.
836 * gdb-stabs.h (struct dbx_symfile_info): Add stab_section.
837 (DBX_STAB_SECTION): New macro.
838 * stabsread.h (elfstab_build_psymtabs): Update prototype.
839 * symfile.c (symfile_dummy_outputs): New function.
840 (symfile_relocate_debug_section): New function.
841 * symfile.h (symfile_relocate_debug_section): Add prototype.
842
843 2003-01-31 Richard Henderson <rth@redhat.com>
844
845 * alpha-nat.c (REGISTER_PTRACE_ADDR): Merge into ...
846 (register_addr): ... here. Support ALPHA_UNIQUE_REGNUM.
847 (fetch_elf_core_registers): Support ALPHA_UNIQUE_REGNUM.
848 * alpha-tdep.c (alpha_register_name): Add "unique".
849 * alpha-tdep.h (ALPHA_NUM_REGS): Increment.
850 (ALPHA_UNIQUE_REGNUM): New.
851 * config/alpha/nm-linux.h (ALPHA_UNIQUE_PTRACE_ADDR): New.
852
853 2003-01-31 Andrew Cagney <ac131313@redhat.com>
854
855 * README: Remove reference to Ericsson 1800 monitor.
856 * Makefile.in (remote-es.o): Delete rule.
857 (ALLDEPFILES): Delete remote-es.c.
858 * remote-es.c: Delete file.
859 * config/m68k/es1800.mt: Delete file.
860 * config/djgpp/fnchange.lst: Update.
861 * configure.tgt: Delete m68*-ericsson-* target.
862
863 2003-01-31 Adam Fedor <fedor@gnu.org>
864
865 * infrun.c (handle_inferior_event): Rename 'tmp' to real_stop_pc.
866 Remove duplicate/shadowing variable of same name.
867
868 2003-01-30 Jim Blandy <jimb@redhat.com>
869
870 * symfile.c (find_separate_debug_file): Assert that the objfile's
871 directory name we compute ends with a slash, and then assume that
872 that's so everywhere we use it.
873
874 2003-01-30 Daniel Jacobowitz <drow@mvista.com>
875
876 * valops.c (value_assign): Flush frame cache after stores to memory
877 also.
878
879 2003-01-30 Andrew Cagney <ac131313@redhat.com>
880
881 * Makefile.in (mon960-rom.o): Delete rule.
882 * mon960-rom.c: Delete file.
883
884 2003-01-30 Andrew Cagney <ac131313@redhat.com>
885
886 * d10v-tdep.c: Include "frame-unwind.h".
887 (d10v_gdbarch_init): Append d10v_frame_p to the unwind predicate
888 list.
889 (next_addr, uses_frame): Delete.
890 (struct d10v_unwind_cache): Define.
891 (prologue_find_regs): Add struct d10v_unwind_cache info parameter.
892 Use info instead of next_addr and uses_frame globals.
893 (d10v_frame_init_saved_regs): Delete function.
894 (d10v_init_extra_frame_info): Delete function.
895 (d10v_gdbarch_init): Do not initialize init_extra_frame_info,
896 frame_init_saved_regs or pop_frame, frame_chain, frame_chain_valid,
897 init_frame_pc or frame_saved_pc.
898 (d10v_pop_frame): Delete function.
899 (do_d10v_pop_frame): Delete function.
900 (d10v_frame_chain): Delete function.
901 (d10v_frame_chain_valid): Delete function.
902 (d10v_frame_pc_unwind): New function.
903 (d10v_frame_id_unwind): New function.
904 (saved_regs_unwinder): New function.
905 (d10v_frame_register_unwind): New function.
906 (d10v_frame_pop): New function.
907 (d10v_frame_unwind): New variable.
908 (d10v_frame_p): New function.
909 (d10v_frame_saved_pc): Delete function.
910 * Makefile.in (d10v-tdep.o): Update dependencies.
911
912 2003-01-30 J. Brobecker <brobecker@gnat.com>
913
914 * config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Remove #undef
915 causing some regressions due to a change in the default value
916 for this macro.
917
918 2003-01-29 Richard Henderson <rth@redhat.com>
919 Elena Zannoni <ezannoni@redhat.com>
920 Daniel Jacobowitz <drow@mvista.com>
921
922 Fix PR gdb/961.
923 * dwarf2read.c (dwarf_ranges_offset, dwarf_ranges_size): New
924 variables.
925 (RANGES_SECTION): New.
926 (dwarf_ranges_buffer): New variable.
927 (struct comp_unit_head): Add member "die".
928 (struct dwarf2_pinfo): Add dwarf_ranges_buffer, dwarf_ranges_size.
929 (DWARF_RANGES_BUFFER, DWARF_RANGES_SIZE): New.
930 (dwarf2_has_info): Init dwarf_ranges_offset and dwarf_ranges_size.
931 (dwarf2_locate_sections): Likewise.
932 (dwarf2_build_psymtabs): Read .debug_ranges.
933 (dwarf2_build_psymtabs_hard): Swap dwarf_ranges out.
934 (psymtab_to_symtab_1): Swap dwarf_ranges in. Set cu_header.die.
935 (dwarf2_get_pc_bounds): New cu_header argument; adjust all callers.
936 Look for DW_AT_ranges and return the bounding box.
937
938 2003-01-29 Brian Ford <ford@vss.fsi.com>
939
940 * win32-nat.c (cygwin_pid): Removed as unused.
941 (child_attach): Try fall back to Cygwin pid.
942
943 2003-01-29 Jim Blandy <jimb@redhat.com>
944
945 * objfiles.h (struct objfile): Doc fix.
946
947 2003-01-29 Andrew Cagney <ac131313@redhat.com>
948
949 * frame.c (frame_saved_regs_id_unwind): Assert FRAME_CHAIN_P.
950 (legacy_get_prev_frame): Assert FRAME_CHAIN_P.
951 (get_prev_frame): When FRAME_CHAIN_P, call legacy_get_prev_frame.
952 (frame_saved_regs_pc_unwind): Assert FRAME_SAVED_PC_P.
953 * gdbarch.sh (FRAME_CHAIN): Change to a function with predicate.
954 (FRAME_SAVED_PC): Change to a function with predicate.
955 * gdbarch.h, gdbarch.c: Re-generate.
956
957 2003-01-28 Andrew Cagney <ac131313@redhat.com>
958
959 * hppah-nat.c (child_pid_to_exec_file): Don't use boolean.
960
961 * complaints.c (complain): Delete function.
962 * complaints.h (struct deprecated_complaint): Delete definition.
963 (complain): Delete declaration.
964
965 2003-01-28 Kevin Buettner <kevinb@redhat.com>
966
967 * mips-tdep.c (mips_init_extra_frame_info): Return early for
968 dummy frames.
969
970 2003-01-27 Andrew Cagney <ac131313@redhat.com>
971
972 * sentinel-frame.h, sentinel-frame.c: New files.
973 * Makefile.in (frame.o): Update dependencies.
974 (SFILES): Add sentinel-frame.c.
975 (sentinel_frame_h): Define.
976 (COMMON_OBS): Add sentinel-frame.o.
977 (sentinel-frame.o): Specify dependencies.
978 * frame.c: Include "sentinel-frame.h".
979 (frame_register_unwind): Rewrite assuming that there is always a a
980 ->next frame.
981 (frame_register, generic_unwind_get_saved_register): Ditto.
982 (frame_read_unsigned_register, frame_read_signed_register): Ditto.
983 (create_sentinel_frame, unwind_to_current_frame): New functions.
984 (get_current_frame): Rewrite using create_sentinel_frame and
985 unwind_to_current_frame. When possible, always create a frame.
986 (create_new_frame): Set next to the sentinel frame.
987 (get_next_frame): Rewrite. Don't go below the level 0 frame.
988 (deprecated_update_frame_pc_hack): Update the next frame's PC and
989 ID cache when necessary.
990 (frame_saved_regs_id_unwind): Use frame_relative_level.
991 (deprecated_generic_get_saved_register): Use frame_relative_level,
992 get_frame_saved_regs, get_frame_pc, get_frame_base and
993 get_next_frame.
994 (frame_saved_regs_register_unwind): Use get_frame_saved_regs and
995 frame_register.
996
997 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
998
999 * gdb_indent.sh: Add -T bfd and -T asection to the indent arguments.
1000
1001 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
1002
1003 * maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)]
1004 (maintenance_set_profile_cmd): Use error () instead of warning ().
1005
1006 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
1007
1008 * configure.in: Check that -pg works if using --enable-profiling.
1009 Check for monstartup and _mcleanup regardless of --enable-profiling.
1010 * maint.c: Check for monstartup and _mcleanup before using them.
1011 * config.in: Regenerated.
1012 * configure: Regenerated.
1013
1014 2003-01-24 Nick Clifton <nickc@redhat.com>
1015
1016 * Add sh2e support:
1017
1018 2002-04-02 Elena Zannoni <ezannoni@redhat.com>
1019
1020 * gdb/sh-tdep.c (sh_sh2e_register_name): New.
1021 (sh2e_show_regs): New.
1022 (sh_gdbarch_init): Handle bfd_mach_sh2e.
1023 * config/sh/tm-sh.h: Added sh2e to comments.
1024
1025 2003-01-23 Jim Blandy <jimb@redhat.com>
1026
1027 * symfile.c (syms_from_objfile): Don't print the "(no debugging
1028 symbols found)" message here; we haven't checked for a separate
1029 debug info file yet, so we don't know yet.
1030 (symbol_file_add_with_addrs_or_offsets): Print it here, after
1031 we've looked everywhere. Also, there's no need to print a special
1032 message when we're loading the separate debug info file: the one
1033 symbol_file_add prints is fine.
1034
1035 2003-01-23 Alexander Larsson <alexl@redhat.com>
1036 Jim Blandy <jimb@redhat.com>
1037
1038 Add support for executables whose debug info has been separated
1039 out into a separate file, leaving only a link behind.
1040 * objfiles.h (struct objfile): New fields: separate_debug_objfile
1041 and separate_debug_objfile_backlink.
1042 (put_objfile_before): New declaration.
1043 * symfile.c: #include "filenames.h".
1044 (symbol_file_add_with_addrs_or_offsets): If this objfile has its
1045 debug info in a separate file, read that, too. Save the addrs
1046 argument, so we can use it again to read the separated debug info;
1047 syms_from_objfile modifies the table we pass it.
1048 (reread_symbols): After re-reading an objfile, call
1049 reread_separate_symbols to refresh its separate debug info
1050 objfile, if it has one.
1051 (reread_separate_symbols, find_separate_debug_file,
1052 get_debug_link_info, separate_debug_file_exists): New functions.
1053 (debug_file_directory): New global var.
1054 (_initialize_symfile): Initialize debug_file_directory, and
1055 provide the new `set debug-file-directory' command to let the user
1056 change it.
1057 * objfiles.c (free_objfile): If this objfile has its debug info in
1058 a separate objfile, free that one too. If this is itself a
1059 separate debug info objfile, clear our parent's backlink.
1060 (put_objfile_before): New function.
1061 * utils.c (gnu_debuglink_crc32): New function.
1062 * defs.h (gnu_debuglink_crc32): New declaration.
1063 * Makefile.in (symfile.o): Note dependency on "filenames.h".
1064 * configure.in: Handle --with-separate-debug-dir config option.
1065 * acinclude.m4 (AC_DEFINE_DIR): New macro.
1066 * acconfig.h (DEBUGDIR): New macro.
1067 * configure, aclocal.m4, config.in: Regenerated.
1068
1069 2003-01-22 Jim Blandy <jimb@redhat.com>
1070
1071 * symfile.c (symbol_file_add_with_addrs_or_offsets): New function,
1072 like the old symbol_file_add, but taking new arguments: you can
1073 now pass in either a `struct section_addr_info' list to say where
1074 each section is loaded, or a `struct section_offsets' table. Pass
1075 these new arguments through to syms_from_objfile as appropriate.
1076 (symbol_file_add): Just call symbol_file_add_with_addrs_or_offsets,
1077 with the appropriate quiescent values for the new arguments.
1078
1079 * symfile.c: #include "gdb_assert.h".
1080 (syms_from_objfile): Add the ability to pass in a section offset
1081 table directly, as an alternative to the section_addr_info table.
1082 Document arguments better.
1083 (symbol_file_add): Pass extra arguments to syms_from_objfile.
1084 * symfile.h (syms_from_objfile): Update declaration.
1085 * rs6000-nat.c (objfile_symbol_add): Pass new arguments to
1086 syms_from_objfile.
1087 * Makefile.in (symfile.o): List dependency on $(gdb_assert_h).
1088
1089 2003-01-22 Daniel Jacobowitz <drow@mvista.com>
1090
1091 Original patch by Tom Tromey <tromey@cygnus.com> and
1092 Jason Molenda <jmolenda@apple.com>.
1093 * Makefile.in (PROFILE_CFLAGS): Substitute from configure.
1094 (INTERNAL_LDFLAGS): Don't include PROFILE_CFLAGS.
1095 * NEWS: Mention profiling.
1096 * configure.in (--enable-gdbtk): Fix typo.
1097 (--enable-profiling): New. Set PROFILE_CFLAGS.
1098 * maint.c (maintenance_set_profile_cmd): Remove NOTYET.
1099 Fill in function.
1100 (profiling_state): New variable.
1101 (mcleanup_wrapper): New function.
1102 (_initialize_maint): Remove NOTYET, fix call to
1103 add_setshow_boolean_cmd for "maint set profile".
1104 * configure: Regenerated.
1105
1106 2003-01-21 Martin M. Hunt <hunt@redhat.com>
1107
1108 * Makefile.in (install-gdbtk): Install PNG images too.
1109
1110 2003-01-21 Andrew Cagney <ac131313@redhat.com>
1111
1112 * exec.c (text_start): Delete global variable.
1113 (exec_file_attach): Make text_start local to the function.
1114 * inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
1115 * valops.c (hand_function_call): Delete code that handles
1116 BEFORE_TEXT_END and AFTER_TEXT_END.
1117 * gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
1118 of CALL_DUMMY_LOCATION.
1119 * gdbarch.c: Regenerate.
1120 * inferior.h (deprecated_pc_in_call_dummy_before_text_end)
1121 (deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
1122 * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
1123 (deprecated_pc_in_call_dummy_after_text_end): Delete functions.
1124 (text_end): Delete extern declaration.
1125
1126 2003-01-21 Andrew Cagney <ac131313@redhat.com>
1127
1128 * frame.h (FRAME_OBSTACK_ZALLOC): Define.
1129 * blockframe.c (backtrace_below_main): Move to "frame.c".
1130 (frame_chain_valid): Delete check for backtrace_below_main.
1131 (_initialize_blockframe): Delete initialization, move ``set
1132 backtrace-below-main'' command to "frame.c".
1133 (do_flush_frames_sfunc): Delete function.
1134 * frame.c: Include "command.h" and "gdbcmd.h".
1135 (frame_type_from_pc): New function.
1136 (create_new_frame): Use frame_type_from_pc.
1137 (legacy_get_prev_frame): New function.
1138 (get_prev_frame): Rewrite. When an old style frame, call
1139 legacy_get_prev_frame. Otherwize, unwind the PC first.
1140 (_initialize_frame): Add ``set backtrace-below-main'' command.
1141 * Makefile.in (frame.o): Update dependencies.
1142
1143 2003-01-19 Andrew Cagney <ac131313@redhat.com>
1144
1145 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
1146 DEPRECATED_REGISTERS_INFO.
1147
1148 2003-01-19 Andrew Cagney <ac131313@redhat.com>
1149
1150 * MAINTAINERS: Replace `Blanket Write Privs' with `Global
1151 Maintainers'. Update `Various Maintainers'.
1152
1153 2003-01-19 Andrew Cagney <ac131313@redhat.com>
1154
1155 * frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
1156 * gdbarch.sh (POP_FRAME): Change to function with predicate.
1157 Suppress actual parameters when `-'.
1158 * gdbarch.h, gdbarch.c: Regenerate.
1159
1160 2003-01-19 Andrew Cagney <ac131313@redhat.com>
1161
1162 * d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
1163 code handling dummy frames.
1164
1165 2003-01-19 Andrew Cagney <ac131313@redhat.com>
1166
1167 * frame-unwind.h (frame_unwind_pop_ftype): Declare.
1168 (struct frame_unwind): Add field pop.
1169 * frame.h (frame_pop): Declare.
1170 * frame.c (frame_saved_regs_pop): New function.
1171 (trad_frame_unwinder): Add frame_saved_regs_pop.
1172 (frame_pop): New function.
1173 * dummy-frame.c (dummy_frame_pop): New function.
1174 (discard_innermost_dummy): New function.
1175 (generic_pop_dummy_frame): Use discard_innermost_dummy.
1176 (dummy_frame_unwind): Add dummy_frame_pop.
1177 * infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
1178 * valops.c (hand_function_call): Ditto.
1179 * stack.c (return_command): Ditto.
1180
1181 2003-01-18 Andrew Cagney <ac131313@redhat.com>
1182
1183 * cris-tdep.c: Fix function declaration indentation.
1184 * dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
1185 * mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
1186 * rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
1187 * symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
1188 * xcoffread.c, config/pa/tm-hppa.h: Ditto.
1189 * config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
1190
1191 2003-01-18 Michael Chastain <mec@shout.net>
1192
1193 * README (Unpacking and Installation -- quick overview):
1194 Warn against ".../gdb-5.3/gdb/configure".
1195
1196 2003-01-18 Andrew Cagney <ac131313@redhat.com>
1197
1198 * dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
1199 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
1200 (struct frame_unwind): Declare opaque.
1201 (dummy_frame_p): Declare function.
1202 * dummy-frame.c (dummy_frame_id_unwind): Make static.
1203 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
1204 * dummy-frame.c: Include "frame-unwind.h".
1205 (dummy_frame_p): New function.
1206 (dummy_frame_unwind): New variable.
1207 * frame.c: Include "frame-unwind.h".
1208 (frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
1209 to use the new unwind field.
1210 (set_unwind_by_pc): Delete function.
1211 (create_new_frame, get_prev_frame): Set unwind field using
1212 frame_unwind_find_by_pc.
1213 (trad_frame_unwind, trad_frame_unwinder): New variables.
1214 * frame.h (trad_frame_unwind): Declare variable.
1215 (frame_id_unwind_ftype): Delete declaration.
1216 (frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
1217 (struct frame_unwind): Declare opaque.
1218 (struct frame_info): Replace the fields id_unwind, pc_unwind and
1219 register_unwind with a single unwind pointer.
1220 * frame-unwind.h, frame-unwind.c: New files.
1221 * Makefile.in (SFILES): Add frame-unwind.c.
1222 (frame_unwind_h): Define.
1223 (COMMON_OBS): Add frame-unwind.o.
1224 (frame-unwind.o): Specify dependencies.
1225 (frame.o, dummy-frame.o): Update dependencies.
1226
1227 2003-01-18 Andrew Cagney <ac131313@redhat.com>
1228
1229 * ada-valprint.c: Eliminate PTR.
1230 * breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
1231 * defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
1232 * exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
1233 * objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
1234 * remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
1235 * solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
1236 * symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
1237
1238 2003-01-17 Andrew Cagney <ac131313@redhat.com>
1239
1240 * main.c (captured_main): Don't use PTR.
1241 * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
1242 * gdbtypes.c (lookup_primitive_typename): Ditto.
1243 (lookup_struct_elt_type): Ditto.
1244 * f-valprint.c (info_common_command): Ditto.
1245 (list_all_visible_commons): Ditto.
1246 * jv-typeprint.c (java_type_print_base): Ditto.
1247
1248 * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
1249 mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
1250 Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c. Rename
1251 i386-interix-nat.c and i386-interix-tdep.c. Rename
1252 m68klinux-nat.c and m68klinux-tdep.c. Rename
1253 config/mips/tm-linux.h and config/mips/tm-linux64.h. Rename
1254 bfd/po/.cvsignore and opcodes/po/.cvsignore. Rename
1255 gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
1256 * main.c (captured_main): Use xfree, not free.
1257
1258 2003-01-16 Andrew Cagney <ac131313@redhat.com>
1259
1260 * frame.h (frame_id_unwind_ftype): Change type so that the frame's
1261 ID back using a parameter.
1262 * frame.c (frame_id_unwind): Update call.
1263 (frame_saved_regs_id_unwind): Update.
1264 * dummy-frame.c (dummy_frame_id_unwind): Update function.
1265 * dummy-frame.h (struct frame_id): Add opaque declaration.
1266 (dummy_frame_id_unwind): Update declaration.
1267
1268 2003-01-15 Andrew Cagney <ac131313@redhat.com>
1269
1270 * sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
1271
1272 2003-01-15 Stephen P. Smith <ischis2@cox.net>
1273
1274 * MAINTAINERS (Stephen P. Smith): Updated email address.
1275
1276 2003-01-14 Elena Zannoni <ezannoni@redhat.com>
1277
1278 Fix PR gdb/898
1279 * breakpoint.c (until_break_command): Add new argument. Use it to
1280 decide whether to stop only at the current frame or not.
1281 * breakpoint.h (until_break_command): Update prototype.
1282 * infcmd.c (until_command): Add new argument to until_break_command
1283 call.
1284 (advance_command): New function.
1285 (_initialize_infcmd): Update help string for 'until' command.
1286 Add new 'advance' command.
1287
1288 2003-01-14 David Carlton <carlton@math.stanford.edu>
1289
1290 * linespec.c (decode_line_1): Normalize comments.
1291 (set_flags): Ditto.
1292 (locate_first_half): Ditto.
1293 (decode_compound): Ditto.
1294 (symtab_from_filename): Ditto.
1295 (decode_all_digits): Ditto.
1296 (decode_dollar): Ditto.
1297 (find_methods): Ditto.
1298 (find_toplevel_char): Ditto.
1299
1300 2003-01-13 Andrew Cagney <ac131313@redhat.com>
1301
1302 * ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
1303 * demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
1304 * elfread.c, eval.c, expprint.c, expression.h: Update copyright.
1305 * f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
1306 * gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
1307 * language.c, language.h, m32r-tdep.c: Update copyright.
1308 * mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
1309 * somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
1310 * thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
1311 * values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
1312 * x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
1313 * cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
1314
1315 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
1316
1317 * stabsread.h (process_later, resolve_cfront_continuation):
1318 Obsolete.
1319 Update copyright years.
1320 * buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
1321 Update copyright year.
1322 * dbxread.c(struct cont_elem): Obsolete.
1323 (process_later, process_now): Obsolete functions.
1324 (read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
1325 Update copyright year.
1326 * gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
1327 (add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
1328 * mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
1329 (parse_partial_symbols): Obsolete cfront support.
1330 * stabsread.c
1331 (CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
1332 macros.
1333 (get_substring, get_cfront_method_physname, msg_unknown_complaint,
1334 read_cfront_baseclasses, read_cfront_member_functions,
1335 resolve_cfront_continuation,read_cfront_static_fields,
1336 copy_cfront_struct_fields): Obsolete functions.
1337 (define_symbol, read_one_struct_field): Obsolete cfront support.
1338 * xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
1339 Update Copyright year.
1340
1341 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
1342
1343 * stack.c (print_frame_info, print_stack_frame_base_stub,
1344 print_stack_frame_base, show_and_print_stack_frame_stub,
1345 show_and_print_stack_frame, print_only_stack_frame_stub,
1346 print_only_stack_frame): Delete functions.
1347 (print_stack_frame_stub): Call print_frame_info instead of
1348 print_frame_info_base.
1349 (print_frame_info_base): Rename to print_frame_info.
1350 (backtrace_command_1): Call print_frame_info, instead of
1351 print_frame_info_base.
1352 (current_frame_command): Call print_stack_frame, instead of
1353 print_only_stack_frame.
1354 (frame_command): Call print_stack_frame, instead of
1355 show_and_print_stack_frame.
1356 (up_command): Ditto.
1357 (down_command): Ditto.
1358 * frame.h (print_only_stack_frame): Delete prototype.
1359 * infrun.c (normal_stop): Call print_stack_frame, instead of
1360 show_and_print_stack_frame.
1361 * thread.c (info_threads_command): Call print_stack_frame, instead
1362 of print_only_stack_frame.
1363
1364 2003-01-13 Andrew Cagney <ac131313@redhat.com>
1365
1366 * README (Graphical interface to GDB): Update URL. Point at
1367 gdb/links/.
1368
1369 * gdb_indent.sh: Update to version 2.2.9. Warn when not exact
1370 version match.
1371
1372 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1373
1374 * symtab.c (find_pc_sect_line): Don't consider end-of-function
1375 lines.
1376
1377 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1378
1379 * thread-db.c (attach_thread): Prototype.
1380 (struct private_thread_info): Remove lwpid. Add thread handle (th),
1381 thread information (ti), and valid flags (th_valid, ti_valid).
1382 (attach_thread): Move target_pid_to_str call to after the thread
1383 is added to GDB's list. Initialize the cache.
1384 (thread_get_info_callback, thread_db_map_id2thr)
1385 (thread_db_get_info): New functions.
1386 (thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
1387 (thread_db_store_registers, thread_db_thread_alive)
1388 (thread_db_get_thread_local_address): Use them.
1389 (thread_db_pid_to_str): Likewise. Return "Missing" instead
1390 of calling error() for threads in unknown state.
1391
1392 (clear_lwpid_callback): New function.
1393 (thread_db_resume): Use it to clear the cache.
1394
1395 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1396
1397 * lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
1398 (resume_callback): Remove dead code.
1399
1400 2003-01-13 Andrew Cagney <ac131313@redhat.com>
1401
1402 * gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
1403 predicate.
1404 * gdbarch.h, gdbarch.c: Regenerate.
1405 * stack.c (frame_info): Only initialize the saved registers when
1406 FRAME_INIT_SAVED_REGS_P.
1407 * frame.c (frame_saved_regs_register_unwind): Assert
1408 FRAME_INIT_SAVED_REGS_P.
1409 (deprecated_generic_get_saved_register): Ditto.
1410
1411 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1412
1413 * source.c (openp): Squelch warning about "filename".
1414
1415 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1416
1417 * source.c (openp): If the file does not exist don't necessarily
1418 search the path.
1419
1420 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1421
1422 Fix PR gdb/872.
1423 * gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
1424 (integer_types_same_name_p): New function.
1425 (rank_one_type): Use it.
1426 * stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
1427
1428 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
1429
1430 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
1431 variables.
1432 (main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
1433 * configure.in: Add --with-sysroot.
1434 * configure: Regenerated.
1435 * main.c (gdb_sysroot): New variable.
1436 (captured_main): Initialize gdb_sysroot.
1437 * defs.h (gdb_sysroot): New extern declaration.
1438 * solib.c (_initialize_solib): Initialize solib_absolute_prefix.
1439
1440 2003-01-12 Michael Chastain <mec@shout.net>
1441
1442 * config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
1443
1444 2003-01-12 Michael Chastain <mec@shout.net>
1445
1446 * top.c (print_gdb_version): Bump copyright year to 2003.
1447
1448 2003-01-12 David Carlton <carlton@bactrian.org>
1449
1450 * linespec.c (symtab_from_filename): Rename variable 's' to
1451 'file_symtab'.
1452
1453 2003-01-12 Andrew Cagney <ac131313@redhat.com>
1454
1455 * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
1456 dummy frame.
1457 (d10v_frame_saved_pc, d10v_frame_chain): Ditto.
1458
1459 2003-01-12 Andrew Cagney <ac131313@redhat.com>
1460
1461 * d10v-tdep.c: Include "gdb_assert.h".
1462 (d10v_store_return_value): Rewrite to match current interface.
1463 (d10v_extract_struct_value_address): Ditto.
1464 (d10v_extract_return_value): Ditto.
1465 (d10v_gdbarch_init): Set store_restore_value,
1466 extract_struct_value_address and extract_return_value.
1467
1468 2003-01-12 J. Brobecker <brobecker@gnat.com>
1469
1470 * hpread.c (set_namestring): New procedure replacing the
1471 SET_NAMESTRING macro.
1472 (hpread_build_psymtabs): Replace calls to SET_NAMESTRING
1473 by calls to set_namestring.
1474
1475 2003-01-11 J. Brobecker <brobecker@gnat.com>
1476
1477 * hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
1478 a compilation warning.
1479 (hpread_process_one_debug_symbol): Likewise.
1480
1481 2003-01-10 David Carlton <carlton@math.stanford.edu>
1482
1483 * linespec.c (decode_line_1): Rename variable 's' to
1484 'file_symtab'.
1485 (decode_all_digits): Rename argument 's' to 'file_symtab'.
1486 (decode_dollar): Ditto.
1487 (decode_variable): Ditto.
1488 (symbol_found): Ditto.
1489
1490 2003-01-09 Michael Chastain <mec@shout.net>
1491
1492 * config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
1493
1494 2003-01-07 Corinna Vinschen <vinschen@redhat.com>
1495
1496 * win32-nat.c (set_process_privilege): New function.
1497 (child_attach): Call set_process_privilege() to enable the
1498 SE_DEBUG_NAME user privilege if available in process token.
1499
1500 2003-01-10 J. Brobecker <brobecker@gnat.com>
1501
1502 * hpread.c (hpread_process_one_debug_symbol): Fix a small
1503 compilation error in the previous revision.
1504
1505 2003-01-09 David Carlton <carlton@math.stanford.edu>
1506
1507 * linespec.c: Update copyright.
1508
1509 2003-01-09 Daniel Jacobowitz <drow@mvista.com>
1510
1511 * lin-lwp.c (child_wait): Ignore exit statuses for processes other
1512 than inferior_ptid.
1513 (lin_lwp_wait): Ignore exit statuses for unknown LWPs.
1514
1515 2003-01-09 Andrew Cagney <ac131313@redhat.com>
1516
1517 * frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
1518 Update comments.
1519 * frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
1520 (frame_saved_regs_zalloc): Update.
1521 (frame_saved_regs_register_unwind): Update.
1522 (create_new_frame): Update.
1523 (get_prev_frame): Update.
1524 (frame_extra_info_zalloc): Update.
1525 (deprecated_get_frame_saved_regs): Update.
1526 * dwarf2cfi.c (cfi_init_extra_frame_info): Update.
1527 * cris-tdep.c: Update comment.
1528
1529 * somsolib.h: Fix function indentation.
1530 * disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
1531 * gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
1532 * demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
1533 * alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
1534 * somsolib.c, inftarg.c: Remove assignment in if conditional.
1535
1536 * infrun.c (follow_fork): Use ISO C definition.
1537 * expprint.c (print_subexp): Use xfree instead of free.
1538 * charset.c: Include "gdb_string.h" instead of <string.h>.
1539 (register_iconv_charsets): Use ISO C definition.
1540 (host_charset, target_charset): Ditto.
1541 * Makefile.in (charset.o): Update dependencies.
1542 (mi-cmd-env.o): Update dependencies.
1543
1544 2003-01-08 Andrew Cagney <cagney@redhat.com>
1545
1546 * alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
1547 get_frame_base.
1548
1549 2003-01-08 Andrew Cagney <ac131313@redhat.com>
1550
1551 * gdb_mbuild.sh: Add --keep option. When specified, keep the
1552 build directories. Save edited gdb output in Mbuild.log. If a
1553 build fails, remove any final GDB executable.
1554
1555 2003-01-08 Andrew Cagney <ac131313@redhat.com>
1556
1557 * gdb_mbuild.sh: Edit the output of `maint print architecture'
1558 replacing hex constants with function names and stripping leading
1559 file name directory prefixes.
1560
1561 2003-01-08 Andrew Cagney <cagney@redhat.com>
1562
1563 * gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
1564 get_frame_base.
1565
1566 2003-01-08 David Carlton <carlton@math.stanford.edu>
1567
1568 * linespec.c (decode_line_1): Move code into decode_variable.
1569 (decode_variable): New function.
1570
1571 2003-01-08 Andrew Cagney <ac131313@redhat.com>
1572
1573 * mn10300-tdep.c (analyze_dummy_frame): Fix typo.
1574
1575 2003-01-08 Andrew Cagney <cagney@redhat.com>
1576
1577 * cris-tdep.c (cris_frame_init_saved_regs): Use
1578 get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
1579 saved_regs buffer.
1580 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
1581 (sh64_nofp_frame_init_saved_regs): Ditto.
1582 (sh_fp_frame_init_saved_regs): Ditto.
1583 * arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
1584 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
1585 * mcore-tdep.c (analyze_dummy_frame): Ditto.
1586 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
1587
1588 2003-01-08 Daniel Jacobowitz <drow@mvista.com>
1589
1590 * minsyms.c (lookup_minimal_symbol): Update comment.
1591 (lookup_minimal_symbol_text): Update comment. Use the hash table.
1592 (lookup_minimal_symbol_solib_trampoline): Likewise.
1593
1594 2003-01-08 Andrew Cagney <cagney@redhat.com>
1595
1596 * d10v-tdep.c (d10v_init_extra_frame_info): Use
1597 frame_relative_level.
1598
1599 * alpha-tdep.c: Use get_frame_extra_info.
1600 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
1601 * h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
1602 * mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
1603 * sparc-tdep.c, xstormy16-tdep.c: Ditto.
1604
1605 * alpha-tdep.c: Use get_next_frame.
1606 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
1607 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
1608 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
1609 * mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
1610 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
1611 * v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
1612 * xstormy16-tdep.c: Ditto.
1613
1614 2003-01-07 Andrew Cagney <cagney@redhat.com>
1615
1616 * alpha-tdep.c: Use get_frame_base.
1617 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
1618 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
1619 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
1620 * mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
1621 * sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
1622 * x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
1623 * config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
1624 * config/sparc/tm-sparc.h: Ditto.
1625
1626 2003-01-07 Andrew Cagney <cagney@redhat.com>
1627
1628 * frame.c (deprecated_get_frame_context): New function.
1629 (deprecated_set_frame_context): New function.
1630 * frame.h (deprecated_get_frame_context): Declare.
1631 (deprecated_set_frame_context): Declare.
1632 * dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
1633 (cfi_init_extra_frame_info): Use deprecated_set_frame_context.
1634
1635 2003-01-07 Andrew Cagney <cagney@redhat.com>
1636
1637 * frame.c (deprecated_set_frame_next_hack): New function.
1638 (deprecated_set_frame_prev_hack): New function.
1639 * frame.h (deprecated_set_frame_next_hack): Declare.
1640 (deprecated_set_frame_prev_hack): Declare.
1641 * mcore-tdep.c (analyze_dummy_frame): Use
1642 deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
1643 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
1644
1645 2003-01-07 David Carlton <carlton@math.stanford.edu>
1646
1647 * linespec.c (decode_line_1): Move code into decode_dollar.
1648 (decode_dollar): New function.
1649
1650 2003-01-07 Andrew Cagney <cagney@redhat.com>
1651
1652 * arm-tdep.c (arm_init_extra_frame_info): Use
1653 deprecated_update_frame_base_hack.
1654 * xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
1655 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
1656 (fix_frame_pointer): Ditto.
1657 (mn10300_analyze_prologue): Ditto.
1658
1659 2003-01-07 Andrew Cagney <cagney@redhat.com>
1660
1661 * xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
1662 extra_info using frame_extra_info_zalloc.
1663 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
1664 * sh-tdep.c (sh_init_extra_frame_info): Ditto.
1665 (sh64_init_extra_frame_info): Ditto.
1666 * mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
1667 * s390-tdep.c (s390_init_extra_frame_info): Ditto.
1668 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
1669 * mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
1670 * frv-tdep.c (frv_init_extra_frame_info): Ditto.
1671 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
1672 * ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
1673 * h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
1674 * d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
1675 * cris-tdep.c (cris_init_extra_frame_info): Ditto.
1676 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
1677 * alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
1678
1679 * mn10300-tdep.c (analyze_dummy_frame): Use
1680 deprecated_set_frame_extra_info_hack.
1681 * mcore-tdep.c (analyze_dummy_frame): Ditto.
1682
1683 2003-01-07 J. Brobecker <brobecker@gnat.com>
1684
1685 * mdebugread.c (parse_symbol): Skip stProc entries which storage
1686 class is not scText. These do not define "real" procedures.
1687 (parse_partial_symbols): Likewise.
1688
1689 2003-01-06 Michael Snyder <msnyder@redhat.com>
1690
1691 * lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
1692
1693 2003-01-06 Andrew Cagney <ac131313@redhat.com>
1694
1695 * frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
1696 * frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
1697 * arm-tdep.c (arm_frame_chain): Allocate caller_fi using
1698 deprecated_frame_xmalloc_with_cleanup.
1699 * m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
1700 deprecated_frame_xmalloc.
1701 * mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
1702 * mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
1703
1704 2003-01-06 Andrew Cagney <cagney@redhat.com>
1705
1706 * x86-64-linux-tdep.c: Include "osabi.h".
1707 * Makefile.in (x86-64-linux-tdep.o): Update dependencies.
1708
1709 * sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
1710
1711 2003-01-06 Andrew Cagney <cagney@redhat.com>
1712
1713 * MAINTAINERS (Target Instruction Set Architectures): Update
1714 arm-elf. Can be built with -Werror, has been multiarched.
1715
1716 * value.h (unpack_long): Make buffer parameter constant.
1717 (unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
1718 * scm-lang.h (scm_parse): Ditto.
1719 * defs.h (extract_typed_address, extract_address): Ditto.
1720 (extract_long_unsigned_integer): Ditto.
1721 * inferior.h (unsigned_pointer_to_address): Ditto.
1722 (signed_pointer_to_address): Ditto.
1723 * gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
1724 * gdbarch.h, gdbarch.c: Regenerate.
1725 * findvar.c (extract_long_unsigned_integer): Update.
1726 (extract_address): Update.
1727 (extract_typed_address): Update.
1728 (unsigned_pointer_to_address): Update.
1729 * values.c (unpack_long): Update.
1730 (unpack_double): Update.
1731 (unpack_pointer): Update.
1732 (unpack_field_as_long): Update.
1733 * d10v-tdep.c (d10v_pointer_to_address): Update.
1734 * avr-tdep.c (avr_pointer_to_address): Update.
1735 * scm-lang.c (scm_unpack): Update.
1736 * findvar.c (signed_pointer_to_address): Update.
1737
1738 2003-01-06 Michal Ludvig <mludvig@suse.cz>
1739
1740 * x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
1741 since it is in i386-tdep.c.
1742
1743 2003-01-06 J. Brobecker <brobecker@gnat.com>
1744
1745 * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
1746 failure introduced in the previous change.
1747
1748 2003-01-05 Michael Chastain <mec@shout.net>
1749
1750 * README: Remove references to deleted remote-*.c files:
1751 remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
1752 remote-nrom.c, remote-os9k.c, remote-udi.c.
1753
1754 2003-01-05 Mark Kettenis <kettenis@gnu.org>
1755
1756 * i386-tdep.c (i386_get_longjmp_target): Make usable on x86-64.
1757 * x86-64-tdep.c (x86_64_init_abi): Remove FIXME about
1758 i386_get_longjmp_target.
1759
1760 2003-01-05 Andrew Cagney <ac131313@redhat.com>
1761
1762 * arm-tdep.c (prologue_cache): Change to a pointer.
1763 (_initialize_arm_tdep): Allocate prologue_cache.
1764 (check_prologue_cache): Update.
1765 (save_prologue_cache): Update.
1766 (arm_gdbarch_init): Update.
1767
1768 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
1769
1770 * stabsread.c (update_method_name_from_physname): Call complaint()
1771 instead of error.
1772
1773 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
1774
1775 * arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
1776 * d10v-tdep.c (d10v_frame_chain_valid): Remove unnecessary tests.
1777 * hppa-tdep.c (hppa_frame_chain_valid): Remove unnecessary test.
1778
1779 * blockframe.c: Include "gdbcmd.h" and "command.h".
1780 (backtrace_below_main): New variable.
1781 (file_frame_chain_valid, func_frame_chain_valid)
1782 (nonnull_frame_chain_valid, generic_file_frame_chain_valid)
1783 (generic_func_frame_chain_valid): Remove functions.
1784 (frame_chain_valid, do_flush_frames_sfunc): New functions.
1785 (_initialize_blockframe): New function.
1786 * Makefile.in (blockframe.o): Update dependencies.
1787 * frame.c (frame_saved_regs_id_unwind, get_prev_frame): Remove FIXME
1788 comment. Call frame_chain_valid ().
1789 * frame.h: Remove old prototypes. Add prototype for
1790 frame_chain_valid and update comments to match.
1791 * gdbarch.sh: Change FRAME_CHAIN_VALID into a predicated function.
1792 Remove old comment.
1793 * gdbarch.h: Regenerated.
1794 * gdbarch.c: Regenerated.
1795
1796 * alpha-tdep.c (alpha_gdbarch_init): Don't call
1797 set_gdbarch_frame_chain_valid.
1798 * avr-tdep.c (avr_gdbarch_init): Likewise.
1799 * cris-tdep.c (cris_gdbarch_init): Likewise.
1800 * frv-tdep.c (frv_gdbarch_init): Likewise.
1801 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
1802 * i386-tdep.c (i386_svr4_init_abi): Likewise.
1803 (i386_nw_init_abi): Likewise.
1804 (i386_gdbarch_init): Likewise.
1805 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
1806 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
1807 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
1808 * mcore-tdep.c (mcore_gdbarch_init): Likewise.
1809 * mips-tdep.c (mips_gdbarch_init): Likewise.
1810 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
1811 * ns32k-tdep.c (ns32k_gdbarch_init): Likewise.
1812 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Likewise.
1813 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
1814 * s390-tdep.c (s390_gdbarch_init): Likewise.
1815 * sh-tdep.c (sh_gdbarch_init): Likewise.
1816 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
1817 * v850-tdep.c (v850_gdbarch_init): Likewise.
1818 * vax-tdep.c (vax_gdbarch_init): Likewise.
1819 * x86-64-tdep.c (x86_64_init_abi): Likewise.
1820
1821 * config/m32r/tm-m32r.h (FRAME_CHAIN_VALID): Don't define.
1822 * config/m68k/tm-apollo68b.h (FRAME_CHAIN_VALID): Likewise.
1823 * config/m68k/tm-m68kv4.h (FRAME_CHAIN_VALID): Likewise.
1824 * config/m68k/tm-monitor.h (FRAME_CHAIN_VALID): Likewise.
1825 * config/m68k/tm-os68k.h (FRAME_CHAIN_VALID): Likewise.
1826 * config/m68k/tm-vx68.h (FRAME_CHAIN_VALID): Likewise.
1827 * config/mn10200/tm-mn10200.h (FRAME_CHAIN_VALID): Likewise.
1828 * config/sparc/tm-sparclite.h (FRAME_CHAIN_VALID): Likewise.
1829
1830 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
1831
1832 * Makefile.in (acconfig_h): Remove incorrect macro.
1833 (config_h): Define.
1834 (osabi.o): Update dependencies.
1835 * configure.tgt: Set gdb_osabi based on target triplet.
1836 * configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
1837 * configure: Regenerated.
1838 * config.in: Regenerated.
1839 * osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
1840 (GDB_OSABI_DEFAULT): Define if not already defined.
1841 (user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
1842 (set_osabi_string): New variables.
1843 (gdbarch_register_osabi): Add new OS ABI to
1844 gdb_osabi_available_names.
1845 (gdbarch_lookup_osabi): Honor specified and default OS ABIs.
1846 (set_osabi, show_osabi): New functions.
1847 (_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
1848
1849 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
1850
1851 * arch-utils.c (gdbarch_info_init): Set osabi to
1852 GDB_OSABI_UNINITIALIZED.
1853 * gdbarch.sh: Add osabi to struct gdbarch and to struct
1854 gdbarch_info. Include "osabi.h" in gdbarch.c. Check osabi
1855 in gdbarch_list_lookup_by_info and in gdbarch_update_p.
1856 * gdbarch.c: Regenerated.
1857 * gdbarch.h: Regenerated.
1858 * osabi.c (gdbarch_lookup_osabi): Return GDB_OSABI_UNINITIALIZED if
1859 there's no BFD.
1860 (gdbarch_init_osabi): Remove osabi argument; use info.osabi.
1861 * osabi.h (enum gdb_osabi): Move to defs.h.
1862 (gdbarch_init_osabi): Update prototype.
1863 * defs.h (enum gdb_osabi): Moved here.
1864 * Makefile.in: Update dependencies.
1865
1866 * alpha-tdep.h: Don't include "osabi.h".
1867 (struct gdbarch_tdep): Remove osabi member.
1868 * alpha-tdep.c: Include "osabi.h".
1869 (alpha_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1870 iterate over arches. Update call to gdbarch_init_osabi.
1871 (alpha_dump_tdep): Don't dump osabi.
1872 * alpha-linux-tdep.c: Include "osabi.h".
1873 * alpha-osf1-tdep.c: Include "osabi.h".
1874 * alphafbsd-tdep.c: Include "osabi.h".
1875 * alphanbsd-tdep.c: Include "osabi.h".
1876
1877 * arm-tdep.h: Don't include "osabi.h".
1878 (struct gdbarch_tdep): Remove osabi member.
1879 * arm-tdep.c: Include "osabi.h".
1880 (arm_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1881 iterate over arches. Update call to gdbarch_init_osabi.
1882 (arm_dump_tdep): Don't dump osabi.
1883 * arm-linux-tdep.c: Include "osabi.h".
1884 * armnbsd-tdep.c: Include "osabi.h".
1885
1886 * hppa-tdep.c (hppa_gdbarch_init): Don't call gdbarch_lookup_osabi.
1887 Update call to gdbarch_init_osabi.
1888
1889 * i386-tdep.h: Don't include "osabi.h".
1890 (struct gdbarch_tdep): Remove osabi member.
1891 * i386-tdep.c: Include "osabi.h".
1892 (i386_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1893 iterate over arches. Update call to gdbarch_init_osabi.
1894 (i386_dump_tdep): Don't dump osabi.
1895 * i386-linux-tdep.c: Include "osabi.h".
1896 * i386-sol2-tdep.c: Include "osabi.h".
1897 * i386bsd-tdep.c: Include "osabi.h".
1898 * i386gnu-tdep.c: Include "osabi.h".
1899 * i386ly-tdep.c: Include "osabi.h".
1900 * i386nbsd-tdep.c: Include "osabi.h".
1901 * i386obsd-tdep.c: Include "osabi.h".
1902
1903 * mips-tdep.c (struct gdbarch_tdep): Remove osabi member.
1904 (mips_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1905 check osabi when iterating over arches. Update call to
1906 gdbarch_init_osabi.
1907 (mips_dump_tdep): Don't dump osabi.
1908
1909 * ns32k-tdep.h: Don't include "osabi.h".
1910 (struct gdbarch_tdep): Remove.
1911 * ns32k-tdep.c (ns32k_gdbarch_init): Don't call
1912 gdbarch_lookup_osabi. Don't iterate over arches. Don't
1913 allocate tdep. Update call to gdbarch_init_osabi.
1914 (ns32k_dump_tdep): Remove.
1915 (_initialize_ns32k_tdep): Update call to gdbarch_register.
1916 * ns32knbsd-tdep.c: Include "osabi.h".
1917
1918 * ppc-tdep.h: Don't include "osabi.h".
1919 (struct gdbarch_tdep): Remove osabi member.
1920 * rs6000-tdep.c: Include "osabi.h".
1921 (rs6000_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't check
1922 osabi when iterating over arches. Update call to
1923 gdbarch_init_osabi.
1924 (rs6000_dump_tdep): Don't dump osabi.
1925 * ppc-linux-tdep.c: Include "osabi.h".
1926 * ppcnbsd-tdep.c: Include "osabi.h".
1927
1928 * sh-tdep.h: Don't include "osabi.h".
1929 (struct gdbarch_tdep): Remove osabi member.
1930 * sh-tdep.c: Include "osabi.h".
1931 (sh_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1932 iterate over arches. Update call to gdbarch_init_osabi.
1933 (sh_dump_tdep): Don't dump osabi.
1934 * shnbsd-tdep.c: Include "osabi.h".
1935
1936 * sparc-tdep.c: Include "osabi.h".
1937 (sparc_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1938 iterate over arches. Update call to gdbarch_init_osabi.
1939 (sparc_dump_tdep): Don't dump osabi. Do dump the rest of the
1940 tdep structure.
1941
1942 * vax-tdep.h: Don't include "osabi.h".
1943 (struct gdbarch_tdep): Remove.
1944 * vax-tdep.c: Include "osabi.h".
1945 (vax_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
1946 iterate over arches. Don't allocate tdep. Update call
1947 to gdbarch_init_osabi.
1948 (vax_dump_tdep): Remove.
1949 (_initialize_vax_tdep): Update call to gdbarch_register.
1950
1951 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
1952
1953 * breakpoint.c (insert_breakpoints): Skip disabled breakpoints
1954 entirely.
1955 (breakpoint_re_set_one): Don't fetch the value for a disabled
1956 watchpoint.
1957
1958 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
1959
1960 * buildsym.h (processing_hp_compilation): Remove obsolete variable.
1961 * gdbarch.sh Remove include of "value.h" in gdbarch.h.
1962 (COERCE_FLOAT_TO_DOUBLE): Remove.
1963 * gdbarch.c: Regenerate.
1964 * gdbarch.h: Regenerate.
1965 * Makefile.in: Remove value_h from gdbarch_h.
1966 * valops.c (coerce_float_to_double): New variable.
1967 (default_coerce_float_to_double): Remove.
1968 (standard_coerce_float_to_double): Remove.
1969 (value_arg_coerce): Use coerce_float_to_double.
1970 (_initialize_valops): Add "set coerce-float-to-double".
1971 * value.h (default_coerce_float_to_double): Remove prototype.
1972 (standard_coerce_float_to_double): Remove prototype.
1973
1974 * hpread.c (hpread_process_one_debug_symbol): Mark C++ functions as
1975 prototyped.
1976 * mdebugread.c (parse_symbol): Likewise.
1977 * stabsread.c (define_symbol): Mark all functions as prototyped.
1978
1979 * hppa-tdep.c (hppa_coerce_float_to_double): Remove.
1980 * alpha-tdep.c (alpha_gdbarch_init): Remove call to
1981 set_gdbarch_coerce_float_to_double.
1982 * arm-tdep.c (arm_gdbarch_init): Likewise.
1983 * frv-tdep.c (frv_gdbarch_init): Likewise.
1984 * h8300-tdep.c (h8300_gdbarch_init): Likewise (commented out).
1985 * i386-sol2-tdep.c (i386_sol2_init_abi): Likewise.
1986 * mips-tdep.c (mips_gdbarch_init): Likewise.
1987 (mips_coerce_float_to_double): Remove.
1988 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
1989 (rs6000_coerce_float_to_double): Remove.
1990 * s390-tdep.c (s390_gdbarch_init): Likewise.
1991 * sh-tdep.c (sh_gdbarch_init): Likewise.
1992 (sh_coerce_float_to_double): Remove.
1993 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
1994 (sparc_coerce_float_to_double): Remove.
1995 * v850-tdep.c (v850_gdbarch_init): Likewise.
1996 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
1997 * config/m32r/tm-m32r.h (COERCE_FLOAT_TO_DOUBLE): Remove.
1998 * config/pa/tm-hppa.h: (COERCE_FLOAT_TO_DOUBLE): Remove.
1999 (hppa_coerce_float_to_double): Remove prototype.
2000 * config/sparc/tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Remove.
2001
2002 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
2003
2004 * regformats/reg-m68k.dat: Remove fpcode and fpflags.
2005
2006 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
2007
2008 Suggested by Stewart Brown <sb24@avaya.com>:
2009 * c-typeprint.c (c_type_print_varspec_prefix): Pass value of show
2010 in recursive calls. Handle TYPE_CODE_TYPEDEF.
2011 (c_type_print_varspec_suffix): Likewise.
2012
2013 2003-01-04 Mark Kettenis <kettenis@gnu.org>
2014
2015 * configure.in: Don't set and AC_SUBST SUBDIRS.
2016 * configure: Regenerated.
2017
2018 * configure.in: Remove code dealing with shared libraries.
2019 * Makefile.in: Remove HLDFLAGS and HLDENV.
2020 * configure: Regenerated.
2021
2022 2003-01-04 Andrew Cagney <ac131313@redhat.com>
2023
2024 * frame.c (deprecated_frame_xmalloc): New function.
2025 (deprecated_set_frame_saved_regs_hack): New function.
2026 (deprecated_set_frame_extra_info_hack): New function.
2027 * frame.h (deprecated_frame_xmalloc): Declare.
2028 (deprecated_set_frame_saved_regs_hack): Declare.
2029 (deprecated_set_frame_extra_info_hack): Declare.
2030
2031 2003-01-04 Mark Kettenis <kettenis@gnu.org>
2032
2033 * configure.in: Move code that provides the --enable-gdbtk option
2034 right after the code that handles the --enable-tui option, and
2035 polish it somewhat.
2036 * configure: Regenerated.
2037
2038 * configure.in: Call AC_GNU_SOURCE. Check for pread64 using
2039 AC_CHECK_FUNCS and remove the old check for pread64.
2040 * acinclude.m4 (AC_GNU_SOURCE): New macro.
2041 * acconfig.h (_GNU_SOURCE): Add.
2042 (HAVE_PREAD64): Remove.
2043 * configure, aclocal.m4, config.in: Regenerated.
2044
2045 2003-01-03 Andrew Cagney <ac131313@redhat.com>
2046
2047 * alpha-tdep.c: Use get_frame_saved_regs.
2048 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
2049 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
2050 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Ditto.
2051 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, v850-tdep.c: Ditto.
2052 * vax-tdep.c, xstormy16-tdep.c: Ditto.
2053
2054 2003-01-03 Mark Kettenis <kettenis@gnu.org>
2055
2056 * configure.in: Remove all use of the SUBDIRS variable; add
2057 directories using the AC_CONFIG_SUBDIRS macro instead. Polish
2058 code providing the --enable-multi-ice option, and move it right in
2059 front of the code that checks whether gdbserver is supported.
2060 Polish that too.
2061 * configure: Regenerated.
2062 * Makefile.in (SUBDIRS): Substitute @subdirs@ instead of
2063 @SUBDIRS@.
2064
2065 2003-01-03 Andrew Cagney <cagney@redhat.com>
2066
2067 * alpha-tdep.c: Use deprecated_update_frame_base_hack.
2068 * avr-tdep.c, cris-tdep.c: Ditto.
2069 * mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
2070 * sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
2071
2072 2003-01-03 Mark Kettenis <kettenis@gnu.org>
2073
2074 * configure.in: Remove --enable-netrom option.
2075 * configure: Regenerated.
2076
2077 2003-01-03 Mark Kettenis <kettenis@gnu.org>
2078
2079 * cli/cli-decode.h: Don't include "gdb_regex.h"; provide a forward
2080 declaration for `struct re_pattern_buffer' instead.
2081 * Makefile.in (cli_decode_h): Remove $(gdb_regex_h).
2082
2083 2003-01-03 J. Brobecker <brobecker@gnat.com>
2084
2085 * mdebugread.c (parse_symbol): Count until the stEnd matching
2086 the structure name.
2087
2088 2003-01-02 Mark Kettenis <kettenis@gnu.org>
2089
2090 * configure.in: Remove --with-cpu option.
2091 subscripts. Remove evil changequotes here.
2092 * acconfig.h (TARGET_CPU_DEFAULT): Remove.
2093 * config.in, configure: Regenerated.
2094
2095 * acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
2096 * configure.in: Cleanup section that sources GDB and BFD configure
2097 subscripts. Remove evil changequotes here.
2098 * config.in, configure: Regenerated.
2099
2100 2003-01-02 Andrew Cagney <ac131313@redhat.com>
2101
2102 * arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
2103 frame accessor methods.
2104 * alpha-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
2105 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
2106 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
2107 * mn10200-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Ditto.
2108 * s390-tdep.c, sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
2109 * vax-tdep.c, x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
2110 * z8k-tdep.c: Ditto.
2111
2112 2003-01-02 Mark Kettenis <kettenis@gnu.org>
2113
2114 * configure.in: Remove UI_OUT configuration code.
2115 * ada-lang.c: Update assuming UI_OUT is always true.
2116 * Makefile.in (UIOUT_CFLAGS): Remove.
2117 * configure: Regenerated.
2118 * TODO: Remove blurb about elimination of -DUI_OUT.
2119
2120 * configure.in: Move code that provides the --enable-gdbcli,
2121 --enable-gdbmi options right before the code that handles the
2122 --enable-tui option. Polish a bit.
2123 * configure: Regenerated.
2124
2125 * configure.in: Rewrite check for GNU regex and the
2126 --without-included regex option, and move it into the "Checks for
2127 library functions" section. This makes us use the system regex
2128 again by default on systems with version 2 of the GNU C library.
2129 This was apparently broken.
2130 * gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
2131 * acconfig.h (USE_INCLUDED_REGEX): Remove.
2132 * config.in, configure: Regenerated.
2133
2134 * configure.in: Move code that provides the --enable-tui option
2135 before the "Checks for libraries" section. Polish the code
2136 somewhat and set need_curses to yes if we build the TUI. Rewrite
2137 code that looks for a library providing termcap functionality to
2138 match more closely what's done in the Readline library, and move
2139 it into to the "Checks for libraries" section.
2140 * configure: Regenerated.
2141 * Makefile.in (TERMCAP): Remove variable.
2142 * config/i386/go32.mh (TERMCAP): Remove variable.
2143
2144 2003-01-02 Andrew Cagney <ac131313@redhat.com>
2145
2146 * MAINTAINERS: Mention gdb_mbuild.sh.
2147 * gdb_mbuild.sh: Rewrite.
2148
2149 2003-01-02 Mark Kettenis <kettenis@gnu.org>
2150
2151 * configure.in: Fix typo in last change.
2152 * config.in, configure: Regenerated.
2153
2154 2003-01-02 Andrew Cagney <ac131313@redhat.com>
2155
2156 * valarith.c (value_binop): Delete obsolete code and comments.
2157 * configure.host: Ditto.
2158 * buildsym.h (make_blockvector): Ditto.
2159 * buildsym.c (make_blockvector): Ditto.
2160 * defs.h (enum language): Ditto.
2161 (chill_demangle): Ditto.
2162 * elfread.c (elf_symtab_read): Ditto.
2163 * dwarfread.c (CHILL_PRODUCER): Ditto.
2164 (set_cu_language): Ditto.
2165 (handle_producer): Ditto.
2166 * expprint.c (print_subexp): Ditto.
2167 * gdbtypes.c (chill_varying_type): Ditto.
2168 * gdbtypes.h (builtin_type_chill_bool): Ditto.
2169 (builtin_type_chill_char, builtin_type_chill_long): Ditto.
2170 (builtin_type_chill_ulong, builtin_type_chill_real): Ditto.
2171 (chill_varying_type): Ditto.
2172 * language.h (_LANG_chill): Ditto.
2173 * language.c (binop_result_type, integral_type): Ditto.
2174 (character_type, string_type, structured_type): Ditto.
2175 (lang_bool_type, binop_type_check): Ditto.
2176 * stabsread.h (os9k_stabs): Ditto.
2177 * stabsread.c (os9k_type_vector, dbx_lookup_type): Ditto.
2178 (define_symbol, read_type, read_struct_fields): Ditto.
2179 (read_array_type, read_enum_type, read_huge_number): Ditto.
2180 (read_range_type, start_stabs): Ditto.
2181 * symfile.c (init_filename_language_table): Ditto.
2182 (add_psymbol_with_dem_name_to_list): Ditto.
2183 * symtab.c (symbol_init_language_specific): Ditto.
2184 (symbol_init_demangled_name, symbol_demangled_name): Ditto.
2185 * symtab.h (struct general_symbol_info): Ditto.
2186 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2187 * typeprint.c (typedef_print): Ditto.
2188 * utils.c (fprintf_symbol_filtered): Ditto.
2189 * valops.c (value_cast, search_struct_field, value_slice): Delete
2190 obsolete code.
2191 (varying_to_slice): Delete function.
2192 * value.h (COERCE_VARYING_ARRAY): Delete obsolete macro contents.
2193 (varying_to_slice): Delete declaration.
2194 * MAINTAINERS: Update.
2195
2196 2003-01-02 Mark Kettenis <kettenis@gnu.org>
2197
2198 * configure.in: Reorganize "Checks for library functions section"
2199 a bit. Remove check for `btowc' and `isascii' functions.
2200 * configure: Regenerated.
2201
2202 * acconfig.h (_MSE_INT_H): Remove.
2203 * configure.in: Create "Checks for header files" section, and move
2204 appropriate tests there. Don't check for objlist.h, wchar.h,
2205 wctype.h and asm/debugreg.h. Rewrite Solaris 2.[78] <curses.h>
2206 misdetection fix. Also add "Checks for types", "Checks for
2207 compiler characteristics" and "Checks for library functions"
2208 sections.
2209 * config.in, configure: Regenerated.
2210
2211 * configure.in: Create "Checks for programs" section, and move
2212 appropriate tests there.
2213
2214 2003-01-01 Mark Kettenis <kettenis@gnu.org>
2215
2216 * configure.in: Create "Checks for libraries" section, and move
2217 appropriate tests there. Cleanup check for wctype in libw. Use
2218 AC_SEARCH_LIBS to see whether we need libsocket.
2219 * configure: Regenerated.
2220
2221 For older changes see ChangeLog-2002
2222 \f
2223 Local Variables:
2224 mode: change-log
2225 left-margin: 8
2226 fill-column: 74
2227 version-control: never
2228 End:
This page took 0.092655 seconds and 4 git commands to generate.