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