gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2
3 * Makefile.in (gdbtypes_h, gdbtypes.o, utils.o): Update.
4 * defs.h (hashtab_obstack_allocate, dummy_obstack_deallocate): Add
5 prototypes.
6 * dwarf2read.c (read_subroutine_type): Use TYPE_ZALLOC.
7 (hashtab_obstack_allocate, dummy_obstack_deallocate): Moved to...
8 * utils.c (hashtab_obstack_allocate, dummy_obstack_deallocate):
9 ...here.
10 * gdbtypes.c: Include "hashtab.h".
11 (build_gdbtypes): Remove extra prototype.
12 (struct type_pair, type_pair_hash, type_pair_eq)
13 (create_copied_types_hash, copy_type_recursive): New.
14 * gdbtypes.h: Include "hashtab.h".
15 (TYPE_ZALLOC): New.
16 (create_copied_types_hash, copy_type_recursive): New prototypes.
17 * objfiles.c (free_objfile): Call preserve_values.
18 * symfile.c (reread_symbols): Likewise.
19 (clear_symtab_users): Remove calls to clear_value_history and
20 clear_internalvars.
21 * value.c (clear_value_history, clear_internalvars): Removed.
22 (preserve_one_value, preserve_values): New functions.
23 * value.h (clear_value_history, clear_internalvars): Removed.
24 (preserve_values): New prototype.
25
26 * tracepoint.c (_initialize_tracepoint): Do not initialize convenience
27 variables here.
28
29 2006-01-29 Mark Kettenis <kettenis@gnu.org>
30
31 * amd64-tdep.c (amd64_classify): Handle TYPE_CODE_BOOL.
32 Fixes PR tdep/2075.
33
34 2006-01-27 Joel Brobecker <brobecker@adacore.com>
35
36 * MAINTAINERS: Use a consistent email address for brobecker.
37
38 2006-01-27 Joel Brobecker <brobecker@adacore.com>
39
40 * infcmd.c (post_create_inferior): Fix copy/paste error introduced
41 in the previous change.
42
43 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
44
45 PR gdb/1914
46 * fork-child.c (fork_inferior): Don't call
47 solib_create_inferior_hook.
48 * infcmd.c (post_create_inferior): Call solib_add,
49 solib_create_inferior_hook, and re_enable_breakpoints_in_shlibs.
50 (attach_command): Don't call solib_add or
51 re_enable_breakpoints_in_shlibs. Call post_create_inferior
52 instead.
53 * remote.c (remote_open_1): Don't call solib_create_inferior_hook
54 or observer_notify_inferior_created. Call post_create_inferior
55 instead.
56 * corelow.c: Don't include "observer.h".
57 (solib_add_stub): Deleted.
58 (core_open): Don't call observer_notify_inferior_created or
59 solib_add_stub. Call post_create_inferior instead.
60 * inf-ptrace.c: Don't include "observer.h".
61 (inf_ptrace_attach): Don't call observer_notify_inferior_created.
62 * inf-ttrace.c: Don't include "observer.h".
63 (inf_ttrace_attach): Don't call observer_notify_inferior_created.
64 * inferior.h (solib_create_inferior_hook): Remove redundant
65 prototype.
66 * inftarg.c: Don't include "observer.h".
67 (child_attach): Don't call observer_notify_inferior_created.
68 * Makefile.in: Update dependencies.
69
70 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
71
72 * infcmd.c: Include "observer.h".
73 (post_create_inferior): New function.
74 (run_command_1): Call it. Also call proceed.
75 * inferior.h (post_create_inferior): New prototype.
76 * Makefile.in (infcmd.o): Update.
77
78 * gnu-nat.c (gnu_create_inferior): Don't call proceed.
79 * go32-nat.c (go32_create_inferior): Likewise.
80 * nto-procfs.c (procfs_create_inferior): Likewise.
81 * procfs.c (procfs_create_inferior): Likewise.
82 * remote-sim.c (gdbsim_create_inferior): Likewise.
83 * remote.c (extended_remote_create_inferior)
84 (extended_remote_async_create_inferior): Likewise.
85 * win32-nat.c (win32_create_inferior): Likewise.
86 * wince.c (child_create_inferior): Likewise.
87
88 * monitor.c (monitor_create_inferior): Don't call proceed.
89 Set the PC manually.
90 * ocd.c (ocd_create_inferior): Likewise.
91 * remote-e7000.c (e7000_create_inferior): Likewise.
92 * remote-m32r-sdi.c (m32r_create_inferior): Likewise.
93 * remote-mips.c (mips_create_inferior): Likewise.
94 * remote-rdp.c (remote_rdp_create_inferior): Likewise.
95 * remote-sds.c (sds_create_inferior): Likewise.
96 * remote-st.c (st2000_create_inferior): Likewise.
97
98 * inf-ptrace.c (inf_ptrace_create_inferior): Don't call
99 proceed or observer_notify_inferior_created.
100 * inf-ttrace.c (inf_ttrace_create_inferior): Likewise.
101 * inftarg.c (child_create_inferior): Likewise.
102
103 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
104
105 * linux-thread-db.c (thread_db_mourn_inferior): Remove breakpoints
106 after mourning the inferior.
107
108 2006-01-24 Jim Blandy <jimb@redhat.com>
109
110 * valarith.c (binop_user_defined_p): Handle refs to typedefs.
111
112 2006-01-24 Fred Fish <fnf@specifix.com>
113
114 * parse.c (source.h): Include.
115 (parse_exp_in_context): Use static source context if no
116 other context found.
117
118 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
119
120 * sh-tdep.c: Include reggroups.h.
121 (sh_register_reggroup_p): New function.
122 (sh_gdbarch_init): Add call to set_gdbarch_register_reggroup_p.
123 * Makefile.in (sh-tdep.o): Add dependency on reggroups.h.
124
125 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
126
127 * cli/cli-cmds.c: Include fcntl.h.
128 (source_command): Use the GDB search path to find script files.
129
130 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
131
132 PR tdep/2029
133 Suggested by Till Straumann <strauman@slac.stanford.edu>:
134 * rs6000-tdep.c (skip_prologue): Update check for later mtlr
135 instructions. Handle PIC bcl.
136
137 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
138
139 * config/djgpp/README: Typo fix.
140 * config/djgpp/fnchange.lst: Update.
141
142 2006-01-22 Mark Kettenis <kettenis@gnu.org>
143
144 * sparc-tdep.h (struct gdbarch_tdep): Add step_trap member.
145 (sparc_address_from_register): New prototype.
146 (sparcnbsd_step_trap): New prototype.
147 * sparc-tdep.c (sparc_address_from_register): Make globally
148 visible.
149 (sparc_analyze_control_transfer): Change prototype to accept
150 `struct gdbarch *' as first argument. Allow for optional hnadling
151 for trap instructions.
152 (sparc_step_trap): New function.
153 (sparc_software_single_step): Adjust call to
154 sparc_analyze_control_trabsfer.
155 (sparc32_gdbarch_init): Initialize TDEP->step_trap.
156 * sparcnbsd-tdep.c (sparcnbsd_step_trap): New function.
157 (sparc32nbsd_init_abi): Set TDEP->step_trap.
158 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Set TDEP->step_trap.
159 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Set TDEP->step_trap.
160
161 * sparc-tdep.c (sparc32_return_value): Convert to use
162 RETURN_VALUE_ABI_PRESERVES_ADDRESS instead of
163 RETURN_VALUE_STRUCT_CONVENTION.
164 (sparc32_extract_struct_value_address): Remove.
165
166 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
167
168 * avr-tdep.c (avr_address_to_pointer, avr_pointer_to_address)
169 (avr_extract_return_value, avr_frame_prev_register): Use gdb_byte.
170
171 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
172
173 * solib.c (info_sharedlibrary_command): Avoid internal_error.
174
175 2006-01-21 Mark Kettenis <kettenis@gnu.org>
176
177 * i386-tdep.c (i386_mxcsr_type): New variable.
178 (i386_init_types): Initialize i386_mxcsr_type.
179 (i386_register_type): Return i386_mxcsr_type for %mxcsr.
180 * i386-tdep.c (i386_mxcsr_type): New extern.
181 * amd64-tdep.c (amd64_register_info): Return i386_mxcsr_type for
182 %mxcsr.
183
184 2006-01-20 Mark Mitchell <mark@codesourcery.com>
185
186 * Makefile.in (remote-rdi.o): Remove.
187 (rdi-share/libangsd.a): Likewise.
188 * README: Don't mention remote-rdi.c.
189 * NEWS: Mention removal of rdi-share.
190 * configure.ac: Don't configure rdi-share subdirectory.
191 * remote-rdi.c: Remove.
192 * config/arm/embed.mt (TDEPFILES): Remove remote-rdi.o.
193 (TDEPLIBS): Remove rdi-share/libangsd.a.
194 * rdi-share/Makefile.am: Remove.
195 * rdi-share/Makefile.in: Likewise.
196 * rdi-share/README.CYGNUS: Likewise.
197 * rdi-share/aclocal.m4: Likewise.
198 * rdi-share/adp.h: Likewise.
199 * rdi-share/adperr.h: Likewise.
200 * rdi-share/angel.h: Likewise.
201 * rdi-share/angel_bytesex.c: Likewise.
202 * rdi-share/angel_bytesex.h: Likewise.
203 * rdi-share/angel_endian.h: Likewise.
204 * rdi-share/ardi.c: Likewise.
205 * rdi-share/ardi.h: Likewise.
206 * rdi-share/armdbg.h: Likewise.
207 * rdi-share/buffers.h: Likewise.
208 * rdi-share/chandefs.h: Likewise.
209 * rdi-share/channels.h: Likewise.
210 * rdi-share/chanpriv.h: Likewise.
211 * rdi-share/configure: Likewise.
212 * rdi-share/configure.in: Likewise.
213 * rdi-share/crc.c: Likewise.
214 * rdi-share/crc.h: Likewise.
215 * rdi-share/dbg_conf.h: Likewise.
216 * rdi-share/dbg_cp.h: Likewise.
217 * rdi-share/dbg_hif.h: Likewise.
218 * rdi-share/dbg_rdi.h: Likewise.
219 * rdi-share/devclnt.h: Likewise.
220 * rdi-share/devices.h: Likewise.
221 * rdi-share/devsw.c: Likewise.
222 * rdi-share/devsw.h: Likewise.
223 * rdi-share/drivers.c: Likewise.
224 * rdi-share/drivers.h: Likewise.
225 * rdi-share/etherdrv.c: Likewise.
226 * rdi-share/ethernet.h: Likewise.
227 * rdi-share/host.h: Likewise.
228 * rdi-share/hostchan.c: Likewise.
229 * rdi-share/hostchan.h: Likewise.
230 * rdi-share/hsys.c: Likewise.
231 * rdi-share/hsys.h: Likewise.
232 * rdi-share/logging.c: Likewise.
233 * rdi-share/logging.h: Likewise.
234 * rdi-share/msgbuild.c: Likewise.
235 * rdi-share/msgbuild.h: Likewise.
236 * rdi-share/params.c: Likewise.
237 * rdi-share/params.h: Likewise.
238 * rdi-share/rx.c: Likewise.
239 * rdi-share/rxtx.h: Likewise.
240 * rdi-share/serdrv.c: Likewise.
241 * rdi-share/serpardr.c: Likewise.
242 * rdi-share/sys.h: Likewise.
243 * rdi-share/tx.c: Likewise.
244 * rdi-share/unixcomm.c: Likewise.
245 * rdi-share/unixcomm.h: Likewise.
246
247 2006-01-21 Mark Kettenis <kettenis@gnu.org>
248
249 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register):
250 Change type of last argument to `gdb_byte *'.
251
252 2006-01-20 Mark Kettenis <kettenis@gnu.org>
253
254 * hppa-tdep.h (hppa_in_solib_call_trampoline)
255 (hppa_skip_trampoline_code): New prototypes.
256 * hppa-tdep.c (struct insn_pattern): New.
257 (hppa_long_branch_stub, hppa_long_branch_pic_stub)
258 (hppa_import_stub, hppa_import_pic_stub, hppa_plt_stub): Moved
259 here from hppa-linux-tdep.c
260 (HPPA_MAX_INSN_PATTERN_LEN): New define.
261 (hppa_match_insns, hppa_match_insns_relaxed, hppa_in_dyncall)
262 (hppa_in_solib_call_trampoline, hppa_skip_trampoline_code): New
263 functions based on functions removed from hppa-linux-tdep.c.
264 * hppa-linux-tdep.c (hppa_long_branch_stub)
265 (hppa_long_branch_pic_stub, hppa_import_stub)
266 (hppa_import_pic_stub, hppa_plt_stub): Moved to hppa-tdep.c.
267 (insns_match_pattern_relaxed, hppa_linux_in_dyncall)
268 (hppa_linux_in_solib_call_trampoline)
269 (hppa_linux_skip_trampoline_code): Removed.
270 (hppa_linux_init_abi): Set TDEP->in_solib_call_tranpoline to
271 hppa_in_solib_call_trampoline and skip_trampoline_code to
272 hppa_skip_trampoline_code.
273 * hppabsd-tdep.c (hppabsd_init_abi): Set
274 TDEP->in_solib_call_trampoline and skip_trampoline_code.
275
276 2006-01-20 Jim Blandy <jimb@redhat.com>
277
278 * MAINTAINERS: Change my E-mail address.
279
280 * configure.ac: Add -Wno-pointer-sign to list of build warnings.
281 * configure: Regenerated.
282
283 2006-01-20 Daniel Jacobowitz <dan@codesourcery.com>
284
285 * MAINTAINERS: Overhaul.
286
287 2006-01-18 Mark Kettenis <kettenis@gnu.org>
288
289 Based on a previous patch form Michal Ludvig:
290 * amd64-tdep.c (amd64_sse_type): Remove.
291 (amd64_register_info): Use i386_eflags_type and i386_sse_type
292 where appropriate.
293 (AMD64_NUM_REGS): Use ARRAY_SIZE.
294 (amd64_register_type): Remove code to build amd_sse_type.
295 * i386-tdep.c (i386_eflag_type): New variable.
296 (i386_mmx_type, i386_sse_type): Make global.
297 (i386_init_types): New function.
298 (i386_build_mmx_type, i386_build_sse_type): Remove functions.
299 (i386_register_type): Return i386_eflag_type, i386_sse_type and
300 i386_mmx_type when appropriate.
301 (_initialize_i386_tdep): Call i386_init_types.
302 * i386-tdep.h (i386_eflags_type, i386_mmx_type, i386_sse_type):
303 Declare extern.
304
305 Based on a previous patch form Michal Ludvig:
306 * gdbtypes.c (append_flags_type_flag, init_flags_type): New
307 functions.
308 (is_integral_type, rank_one_type, recursive_dump_type): Add
309 support for TYPE_CODE_FLAGS.
310 * gdbtypes.h (enum type_code): Add TYPE_CODE_FLAGS.
311 (append_flags_type_field, init_flags_type): New prototypes.
312 * ada-valprint.c (ada_val_print_1): Add support for
313 TYPE_CODE_FLAGS.
314 * c-valprint.c (c_val_print): Likewise.
315 * f-valprint.c (f_val_print): Likewise.
316 * p-valprint.c (pascal_val_print): Likewise.
317 * valprint.c (val_print_type_code_flags): New function.
318 * valprint.h (val_print_type_code_flags): New prototype.
319 * value.c (unpack_long, value_from_longest): Add support for
320 TYPE_CODE_FLAGS.
321
322 2006-01-17 Christopher Faylor <cgf@timesys.com>
323
324 * MAINTAINERS: Very belatedly remove myself from from the list of
325 people caught up in the paper trail.
326
327 2006-01-17 Jim Blandy <jimb@redhat.com>
328
329 * symtab.h (struct general_symbol_info): Use gdb_byte for
330 value.bytes.
331 * stabsread.c (define_symbol): Use gdb_byte for the buffer holding
332 a floating-point constant's value.
333 * dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
334 to char *.
335 * findvar.c (read_var_value): Eliminate needless temporary.
336
337 * dwarf2-frame.c (dwarf2_read_section): Update forward declaration
338 to match prior change to dwarf2_read_section's type.
339
340 2006-01-16 Paul Gilliam <pgilliam@us.ibm.com>
341
342 * ppc-tdep.h (PPC_MAX_EPILOGUE_INSTRUCTIONS): New define.
343 * rs6000-tdep.c (insn_changes_sp_or_jumps)
344 (rs6000_in_function_epilogue_p): New functions.
345 (rs6000_gdbarch_init): Set in_function_epilogue_p.
346
347 2006-01-17 Jim Blandy <jimb@redhat.com>
348
349 * dwarf2read.c (struct dwarf2_per_objfile, struct comp_unit_head)
350 (struct line_header, struct partial_die_info, struct dwarf_block):
351 Use gdb_byte for members that refer to Dwarf section contents.
352 (dwarf2_read_abbrevs, dwarf2_read_section, dwarf_decode_lines,
353 dwarf_decode_macros, load_comp_unit, load_partial_dies,
354 locate_pdi_sibling, partial_read_comp_unit_head, peek_die_abbrev,
355 read_1_byte, read_1_signed_byte, read_2_bytes, read_4_bytes,
356 read_8_bytes, read_address, read_attribute, read_attribute_value,
357 read_comp_unit, read_comp_unit_head, read_die_and_children,
358 read_die_and_siblings, read_full_die, read_indirect_string,
359 read_initial_length, read_n_bytes, read_offset, read_partial_die,
360 read_signed_leb128, read_string, read_unsigned_leb128,
361 skip_children, skip_leb128, skip_one_die): Same.
362
363 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
364
365 * complaints.c (stop_whining): Make signed.
366 * linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
367
368 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
369
370 * dwarf2read.c, remote-fileio.c, remote.h: Update copyright
371 notices.
372
373 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
374
375 * dwarf2read.c (peek_die_abbrev, read_address, read_initial_length)
376 (read_offset): Change BYTES_READ argument to unsigned int.
377 (dwarf2_build_psymtabs_easy, read_comp_unit_head)
378 (create_all_comp_units, dwarf2_get_pc_bounds)
379 (dwarf_decode_line_header, var_decode_location)
380 (dwarf_decode_macros): Change local BYTES_READ variables to
381 unsigned int.
382 (read_indirect_string): Remove obsolete cast.
383
384 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
385
386 * remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
387 argument.
388 (remote_fileio_func_open, remote_fileio_func_rename)
389 (remote_fileio_func_unlink, remote_fileio_func_stat)
390 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
391 (remote_fileio_func_system): Cast the arguments to
392 remote_read_bytes and remote_write_bytes.
393 (remote_fileio_func_read, remote_fileio_func_write): Use a
394 gdb_byte buffer.
395 * remote.h (remote_read_bytes, remote_write_bytes): Update
396 prototypes.
397 * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument.
398 (threadref_to_int): Replace bogus char * cast.
399 (remote_unpack_thread_info_response): Use int for tag.
400 (remote_threads_extra_info, remote_check_symbols): Cast string
401 arguments to hex2bin.
402 (remote_wait): Use a char buffer for packets and a gdb_byte
403 buffer for registers.
404 (remote_async_wait): Likewise.
405 (remote_prepare_to_store, store_register_using_P)
406 (remote_store_registers): Use gdb_byte buffers.
407 (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer
408 for MYADDR and char buffers for strings.
409 (remote_xfer_partial): Add casts for string operations on READBUF.
410 (remote_rcmd): Cast strings passed to bin2hex.
411
412 2006-01-16 Mark Mitchell <mark@codesourcery.com>
413
414 * aclocal.m4: Regenerate.
415
416 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>
417
418 * mt-tdep.c (enum mt_gdb_regnums): Add MT_COPRO_PSEUDOREG_ARRAY,
419 MT_COPRO_PSEUDOREG_DIM_1, MT_COPRO_PSEUDOREG_DIM_2,
420 MT_COPRO_PSEUDOREG_REGS members. Adjust MT_NUM_PSEUDO_REGS.
421 (mt_register_name): Lazily synthesize name for coprocessor pseudo
422 array registers.
423 (mt_copro_register_type): New. Broken out of ...
424 (mt_register_type): ... here. Use it. Deal with coprocessor
425 pseudo array.
426 (mt_select_coprocessor): New.
427 (mt_pseudo_register_read, mt_pseudo_register_write): Deal with
428 coprocessor pseudo array.
429
430 2006-01-16 Andrew Stubbs <andrew.stubbs@st.com>
431
432 * breakpoint.c (insert_breakpoints): Check that a thread exists
433 before inserting thread specific breakpoints.
434
435 2006-01-15 Mark Kettenis <kettenis@gnu.org>
436
437 * osabi.c (generic_elf_osabi_sniffer): Fix typo in previous
438 commit.
439
440 * alpha-tdep.c (alpha_gdbarch_init): Set cannot_step_breakpoint.
441 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Remove.
442 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Remove.
443 * config/alpha/nm-nbsd.h: Remove file.
444 * config/alpha/nm-fbsd.h: Remove file
445 * config/alpha/nbsd.mh (NAT_FILE): Remove.
446 * config/alpha/fbsd.mh (NAT_FILE): Remove.
447
448 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
449
450 * macroexp.c (expand): Initialize argc.
451 * stabsread.c (read_type): Handle errors from read_args.
452 (read_args): Return NULL for errors.
453
454 2006-01-15 Mark Kettenis <kettenis@gnu.org>
455
456 * osabi.c (generic_elf_osabi_sniffer): Use memcmp instead of
457 strcmp to compare string to a byte buffer.
458
459 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
460
461 * printcmd.c (output_command): Always initialize fmt.size.
462 (printf_command): Use gdb_byte.
463 * symfile.c (separate_debug_file_exists): Use gdb_byte.
464 (load_section_callback, read_target_long_array): Likewise.
465 (simple_read_overlay_table, simple_read_overlay_region_table)
466 (simple_overlay_update_1): Correct calls to read_target_long_array.
467 * valprint.c (partial_memory_read): Change MYADDR to a gdb_byte *.
468 Also change local pointers.
469 (val_print_string): Use gdb_byte.
470
471 2006-01-15 Mark Kettenis <kettenis@gnu.org>
472
473 * alphafbsd-tdep.c: Include "solib-svr4.h".
474 (alphafbsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
475 svr4_lp64_fetch_link_map_offsets.
476 * Makefile.in (alphafbsd-tdep.o): Update dependencies.
477 * config/alpha/fbsd.mt (TDEPFILES): Add corelow.o, solib.o and
478 solib-svr4.o.
479 * config/alpha/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
480 and solib-legacy.o.
481 * config/alpha/nm-fbsd.h: Don't include "solib.h".
482
483 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
484
485 * source.c (_initialize_source): Use add_setshow_integer_cmd.
486
487 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
488
489 * linux-fork.c (delete_fork_command, detach_fork_command): Use
490 PIDGET.
491
492 2006-01-15 Mark Kettenis <kettenis@gnu.org>
493
494 * arm-linux-tdep.c (arm_linux_svr4_fetch_link_map_offsets):
495 Remove.
496 (arm_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
497 svr4_ilp32_fetch_link_map_offsets.
498 * cris-tdep.c (cris_linux_svr4_fetch_link_map_offsets): Remove
499 function.
500 (cris_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
501 svr4_ilp32_fetch_link_map_offsets.
502 * mips-linux-tdep.c (mips_linux_svr4_fetch_link_map_offsets)
503 (mips64_linux_svr4_fetch_link_map_offsets): Remove functions.
504 (mips_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
505 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
506 where appropriate.
507 * nbsd-tdep.c (nbsd_ilp32_solib_svr4_fetch_link_map_offsets):
508 Simply call svr4_ilp32_fetch_link_map_offsets.
509 (nbsd_lp64_solib_svr4_fetch_link_map_offsets): Simply call
510 svr4_lp64_fetch_link_map_offsets.
511 * ppc-linux-tdep.c (ppc_linux_svr4_fetch_link_map_offsets): Remove
512 function.
513 (ppc_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
514 svr4_ilp32_fetch_link_map_offsets.
515 * s390-tdep.c (s390_svr4_fetch_link_map_offsets)
516 (s390x_svr4_fetch_link_map_offsets): Remove functions.
517 (s390_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
518 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
519 where appropriate.
520
521 2006-01-15 Mark Kettenis <kettenis@gnu.org>
522
523 * arm-tdep.c (arm_return_value): Change type of readbuf and
524 writebuf arguments to `gdb_byte *'.
525
526 * s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
527 * Makefile.in (s390-tdep.o): Update dependencies.
528
529 2006-01-14 Mark Kettenis <kettenis@gnu.org>
530
531 * sol2-tdep.h. sol2-tdep.c: New files.
532 * amd64-sol2-tdep.c: Include "sol2-tdep.h".
533 (amd64_sol2_init_abi): Set skip_solib_resolver.
534 * i386-sol2-tdep.c: Include "sol2-tdep.h".
535 (i386_sol2_init_abi): Set skip_solib_resolver.
536 * sparc-sol2-tdep.c: Include "sol2-tdep.h".
537 (sparc32_sol2_init_abi): Set skip_solib_resolver.
538 * sparc64-sol2-tdep.c: Include "sol2-tdep.h".
539 (sparc64_sol2_init_abi): Set skip_solib_resolver.
540 * Makefile.in (sol2_tdep_h): New variable.
541 (ALLDEPFILES): Add sol2-tdep.c.
542 (sol2-tdep.o): New target.
543 (amd64-sol2-tdep.o, i386-sol2-tdep.o, sparc-sol2-tdep.o)
544 (sparc64-sol2-tdep.o): Update dependencies
545 * config/i386/i386sol2.mt (TDEPFILES): Add sol2-tdep.o.
546 * config/i386/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
547 * config/sparc/sol2.mt (TDEPFILES): Add sol2-tdep.o.
548 * config/sparc/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
549
550 * hppa-linux-tdep.c: Fix copyright indentation.
551
552 * hppa-tdep.h (enum hppa_regnum): Add HPPA_FP31R_REGNUM.
553 * hppabsd-nat.c (hppabsd_fpregset_supplies_p)
554 (hppabsd_supply_fpregset, hppabsd_collect_fpregset): New
555 functions.
556 (hppabsd_fetch_registers, hppabsd_store_registers): Handle
557 floating-point registers.
558
559 2006-01-13 Mark Mitchell <mark@codesourcery.com>
560
561 * event-loop.c (gdb_select): Detect file descriptors that have
562 been closed.
563
564 2006-01-13 Mark Kettenis <kettenis@gnu.org>
565
566 * hppabsd-tdep.c (hppabsd_init_abi): Set long_double_bit to 64,
567 and long_double_format accordingly.
568
569 2006-01-12 Paul N. Hilfinger <hilfinger@adacore.com>
570
571 * ada-exp.y (yyerror): Change message to ignore the argument, avoiding
572 translation problems.
573 * ada-lang.c (ada_value_struct_elt): Change interface and handling
574 of errors to avoid translation problem (and less than optimal error
575 messages).
576 (ada_value_tag, ada_tag_name_1, ada_tag_name_2, ada_evaluate_subexp):
577 Use new interface to ada_value_struct_elt.
578 * ada_lang.h (ada_value_struct_elt): Update declaration to new
579 interface.
580
581 * ChangeLog: remove reference to ada-tasks.c from entry of
582 2006-01-07.
583
584 2006-01-11 Mark Kettenis <kettenis@gnu.org>
585
586 * remote.c (get_memory_packet_size, set_thread)
587 (remote_unpack_thread_info_response, remote_get_threadinfo)
588 (parse_threadlist_response, remote_get_threadlist)
589 (remote_current_thread, remote_threads_info)
590 (remote_threads_extra_info, extended_remote_restart, get_offsets)
591 (remote_check_symbols, remote_open_1, remote_detach)
592 (remote_async_wait, remote_fetch_registers)
593 (remote_store_registers, check_binary_download, putpkt_binary)
594 (remote_insert_breakpoint, remote_insert_watchpoint)
595 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
596 (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd)
597 (packet_command): Remove redundant parenthesis.
598
599 2006-01-10 Mark Kettenis <kettenis@gnu.org>
600
601 * corefile.c (read_memory_integer, read_memory_unsigned_integer)
602 (read_memory_typed_address, write_memory)
603 (write_memory_unsigned_integer, write_memory_signed_integer): Use
604 gdb_byte where appropriate.
605
606 * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
607 'gdb_byte *'.
608
609 * target.h (target_read_memory_partial, target_write_memory_partial):
610 Change second argument to 'gdb_byte *'.
611 * target.c (target_xfer_memory_partial): Change third argument to
612 'gdb_byte *'.
613 (target_read_memory_partial, target_write_memory_partial): Change
614 second argument to 'gdb_byte *'.
615
616 * linespec.c (decode_objc): Make i1 and i2 unsigned.
617 (find_method): Set values.sals to NULL.
618
619 2006-01-09 Mark Kettenis <kettenis@gnu.org>
620
621 * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
622 of 'char *' in cast.
623
624 2006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
625
626 * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
627 * ada-lang.c: I18n markup.
628 Editorial: change "can not" => "cannot" throughout.
629
630 2006-01-07 Mark Kettenis <kettenis@gnu.org>
631
632 * Makefile.in: Sort dependencies.
633
634 2006-01-07 Eli Zaretskii <eliz@gnu.org>
635
636 * top.c (control_level): Remove unused variable.
637
638 2006-01-06 Fred Fish <fnf@specifix.com>
639
640 * objfiles.c (source.h): Include.
641 (free_objfile): Update comment about clear_symtab_users().
642 (free_objfile): Check all symtabs of objfile being freed and if
643 one of them is the current source symtab, call
644 clear_current_source_symtab_and_line().
645
646 2006-01-04 Michael Snyder <msnyder@redhat.com>
647
648 Checkpoint/Restart for Linux.
649 * linux-nat.c: Add support for debugging multiple forks.
650 Add #include for linux-fork.h (interface spec).
651 (super_mourn_inferior): New function pointer.
652 (child_mourn_inferior): New function / target method.
653 (linux_target): Claim to_mourn_inferior method pointer.
654 (child_follow_fork): Call interface to linux-fork, conditionally
655 add new fork processes to list of debugged processes.
656 (kill_inferior): Use interface to linux-fork to kill
657 multiple processes.
658
659 * linux-fork.h: New file.
660 * linux-fork.c: New file. Support for debugging multiple forks
661 of the same program. Support for checkpoint and restart commands.
662
663 * infrun.c (nullify_last_target_wait_ptid): New function.
664
665 * Makefile.in: Add linux-fork.
666 * config/*/linux.mh: Add linux-fork.
667 * NEWS: Mention new functionality.
668
669 2006-01-02 Paul Hilfinger <hilfingr@nile.gnat.com>
670
671 * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc):
672 Change uses of "illegal" to "invalid".
673
674 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
675
676 * ada-exp.y: Considerable reorganization to move functionality
677 from ada-lex.l to here, where it is logically more appropriate.
678 The original reason, however, was to prevent premature name
679 lookups for selector names in record aggregates.
680 (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
681 NAME for all of these.
682 (VAR): New artificial token to clarify precedence rules.
683 (OTHERS): New lexeme.
684 (empty_stoken): New symbol.
685 (%union): Remove ssym, voidval.
686 (%type): Remove <voidval> type declarations.
687 (syntax definitions): Add aggregates.
688 Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
689 Rename some non-terminals to be closer to reference manual usage.
690 Tighten up expression syntax to disallow certain non-Ada
691 constructions such as X and then Y or else Z.
692 (ada_parse): Remove initialization of left_block_context.
693 (write_var_from_name): Remove.
694 (write_var_or_type): New function, containing previous code from
695 defunct write_var_from_name and name_lookup.
696 (block_lookup): New function, moved from ada-lex.l
697 (select_possible_type_sym): New function, factored out of
698 name_lookup, which used to be in ada-lex.l.
699 (find_primitive_type): Ditto.
700 (chop_selector): Ditto.
701 (write_ambiguous_var): New function, factored out of defunct
702 write_var_from_name.
703 (write_selectors): New function.
704 (write_name_assoc): New function.
705 (write_exp_op_with_string): New function.
706
707 * ada-lex.l (processId): Change interface to return stoken.
708 (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
709 (block_lookup, name_lookup): Remove. Functionality moved to
710 ada-exp.y.
711 (state IN_STRING): Remove.
712 (rules): Handle string escapes in processString.
713 Add 'others' token.
714 Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
715 yylval.sval (as simple strings).
716 All name look-ups now handled in ada-exp.y.
717 Introduce "::" (COLONCOLON) token and return as separate token.
718 (processId): Change return convention. Comment.
719 Leave leading "'" in place.
720 (processString): New function.
721 (find_dot_all): Add note to comment.
722 Fix problem that allowed match only at the end.
723
724 * ada-lang.c: Introduce aggregates.
725 (find_struct_field): Add new parameter to count fields skipped, and
726 allow other output parameters to be NULL.
727 (value_tag_from_contents_and_address, ada_value_struct_elt): Use
728 new find_struct_field.
729 (ada_index_struct_field, assign_aggregate, ada_is_array_type)
730 (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
731 (num_component_specs, assign_component, assign_aggregate):
732 (aggregate_assign_from_choices,aggregate_assign_positional)
733 (aggregate_assign_others,add_component_interval):
734 New functions.
735 (ada_evaluate_subexp): Declare.
736 Add aggregate-related operators.
737 (ada_forward_operator_length): Declare.
738 (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
739 Consolidate Ada operators, using ada_forward_operator_length.
740 (ada_search_struct_field): Search in forward order.
741 (ADA_OPERATORS): Add new aggregate operators.
742 (ada_operator_length, ada_op_name, ada_forward_operator_length)
743 (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate
744 operators and OP_NAME.
745 (ada_type_of_array): Use longest_to_int.
746 (value_assign_to_component): New function.
747 (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
748 Add OP_NAME case.
749 (ada_forward_operator_length, ada_dump_subexp_body):
750 Add OP_STRING case.
751
752 * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
753 OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
754
755 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
756
757 * ada-lang.c (process_raise_exception_name): Remove extraneous
758 definition from unsubmitted code.
759
760 (is_lower_alphanum): New function.
761 (ada_decode): Add support for decoding protected object subprograms
762 and entries, and of entities declared inside protected object
763 subprograms.
764 Also add missing handling for__{DIGITS}+ suffixes.
765 Allow '$<digits>' as valid overloading suffix.
766 (is_name_suffix): Add handling for protected type entriy suffixes.
767 Also add support for protected type subprogram suffixes, but keep
768 it commented out for now, as there is an ambiguity between these
769 entities and other internally generated entities.
770 Allow '$<digits>' as valid overloading suffix.
771 (is_valid_name_for_wild_match): New function.
772 (wild_match): Add an exra level of verification of the entity name
773 before declaring it a match for the given pattern.
774
775 (ada_type_of_array, ada_evaluate_subexp): Use more proper
776 longest_to_int rather than cast.
777
778 (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
779
780 (ada_coerce_to_simple_array): Call check_size to make sure
781 that the object size is reasonable.
782
783 (ada_value_primitive_packed_val): Use correct location in target
784 buffer for extracting packed record fields that are themselves records.
785
786 (add_defn_to_vec): Do not try to replace a stub type by its full
787 type. Avoids a potential infinite loop.
788
789 (ada_lookup_symbol): Move return incorrectly placed return statement,
790 causing a loop that should be scanning all object files to only
791 scan the first one.
792
793 (ada_tag_name_2): New function.
794 (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
795 use alternative representation.
796
797 (ada_find_renaming_symbol): Strip the function name suffix when
798 computing the XR type name.
799
800 (ada_to_fixed_type): Try determining the tag only if we have the
801 object's address.
802 (to_fixed_array_type): Add comments.
803
804 (ada_check_typedef): Replace expression checking whether the given
805 type is a stub or not by a "call" to TYPE_STUB. Clearer and more
806 consistent.
807
808 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
809 '$' in addition to '.' for runtime auxiliary function name suffixes.
810 See changes to ada_decode above.
811
812 (struct task_control_block): Add field called_task. (This change is
813 to keep synchronized with our local sources; it does not affect the
814 public version yet.)
815
816 * ada-typeprint.c (ada_print_type): Use int_string for printing
817 modulus of modular type.
818
819 (print_range): Trivial editorial comment fix.
820
821 * ada-valprint.c (ada_emit_char): Use normal Ada syntax for
822 double quote in string.
823
824 2006-01-01 Joel Brobecker <brobecker@adacore.com>
825
826 * top.c: Add 2006 to list of copyright years in file header.
827
828 2006-01-01 Joel Brobecker <brobecker@adacore.com>
829
830 * top.c (print_gdb_version): Update copyright year to 2006.
831
832 2006-01-01 Roger Sayle <roger@eyesopen.com>
833 Elena Zannoni <ezannoni@redhat.com>
834
835 PR symtab/1651
836 * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
837 for NULL before assigning this_symtab_psymtab->objfile to objfile.
838 (scan_xcoff_symtab): Initialize next_symbol_text_func.
839 (Committed by Jim Blandy)
840
841 For older changes see ChangeLog-2005.
842 \f
843 Local Variables:
844 mode: change-log
845 left-margin: 8
846 fill-column: 74
847 version-control: never
848 End:
This page took 0.062581 seconds and 4 git commands to generate.