* solib.c (solib_read_symbols): Stop if the file was not found.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2006-10-09 Daniel Jacobowitz <dan@codesourcery.com>
2
3 * solib.c (solib_read_symbols): Stop if the file was not found.
4
5 2006-10-09 Paul Pluzhnikov <ppluzhnikov@charter.net>
6
7 PR c++/2116
8 * valops.c (find_overload_match): Check for a NULL name.
9
10 2006-10-06 Joel Brobecker <brobecker@adacore.com>
11
12 * dwarf2read.c (read_array_type): Set the type name if the name
13 attribute is present.
14
15 2006-10-05 Joel Brobecker <brobecker@adacore.com>
16
17 * blockframe.c (block_innermost_frame): Rewrite frame search logic.
18
19 2006-10-05 Daniel Jacobowitz <dan@codesourcery.com>
20
21 * Makefile.in (gdb_expat_h): New.
22 (xml_support_h): Add gdb_expat.h dependency.
23 (memory-map.o, xml-support.o): Likewise.
24 * gdb_expat.h: New file.
25 * xml-support.h: Include it.
26 * memory-map.c, xml-support.c: Likewise. Remove XML_STATUS_OK
27 definitions.
28
29 2006-10-05 Daniel Jacobowitz <dan@codesourcery.com>
30
31 * remote.c (get_remote_state_raw): Renamed from get_remote_state.
32 (get_remote_state): New function.
33 (init_remote_state, _initialize_remote): Use get_remote_state_raw.
34
35 2006-10-04 Fred Fish <fnf@specifix.com>
36
37 * vec.c: Include defs.h first. This pulls in config.h which can
38 affect other includes.
39
40 2006-10-04 Joel Brobecker <brobecker@adacore.com>
41
42 * somread.c (som_symtab_read): Avoid using alloca for potentially
43 large buffers.
44
45 2006-10-04 Daniel Jacobowitz <dan@codesourcery.com>
46
47 * arch-utils.h (gdbarch_info_fill): Remove duplicate prototype.
48
49 2006-10-03 Daniel Jacobowitz <dan@codesourcery.com>
50
51 * memory-map.c (XML_STATUS_OK, XML_STATUS_ERROR): Provide default
52 definitions.
53 * xml-support.c (XML_STATUS_OK, XML_STATUS_ERROR): Likewise.
54
55 2006-09-22 Daniel Jacobowitz <dan@codesourcery.com>
56
57 * remote.c (remote_write_bytes_aux): Doc fix.
58
59 2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
60 Daniel Jacobowitz <dan@codesourcery.com>
61
62 * Makefile.in (SFILES): Add target-memory.c.
63 (COMMON_OBS): Add target-memory.o.
64 * memattr.c (lookup_mem_region): Adjust handling for
65 the top of memory. Improve comments.
66 * remote.c (packet_check_result): New function, split out
67 from packet_ok. Recognize "E." as an error prefix.
68 (packet_ok): Use it.
69 (remote_write_bytes_aux): New function, renamed from
70 remote_write_bytes. Take packet header, packet format,
71 and length flag as arguments.
72 (remote_write_bytes): Rewrite to use remote_write_bytes_aux.
73 (remote_send_printf, restore_remote_timeout)
74 (remote_flash_timeout, remote_flash_erase, remote_flash_write)
75 (remote_flash_done): New.
76 (remote_xfer_partial): Handle flash writes.
77 (init_remote_ops, init_remote_async_ops): Set to_flash_erase
78 and to_flash_done.
79 * symfile.c (struct load_section_data): Include a pointer to
80 the cumulative stats and a request queue. Move most members
81 to other types.
82 (struct load_progress_data, struct load_progress_section_data): New
83 types.
84 (load_progress): Handle a NULL baton and zero bytes. Update for
85 type changes.
86 (load_section_callback): Create memory write requests instead of
87 writing to memory. Don't print the progress message here.
88 (clear_memory_write_data): New function.
89 (generic_load): Use target_write_memory_blocks.
90 * target-memory.c: New file.
91 * target.c (update_current_target): Mention new uninherited methods.
92 (memory_xfer_partial): Issue an error for flash writes.
93 (target_flash_erase, target_flash_done): New functions.
94 (target_write_with_progress): Call the progress callback at the
95 start also.
96 * target.h (enum target_object): Add TARGET_OBJECT_FLASH.
97 (target_write_with_progress): Update comment.
98 (struct target_ops): Add to_flash_erase and to_flash_done.
99 (target_flash_erase, target_flash_done, struct memory_write_request)
100 (memory_write_request_s, enum flash_preserve_mode)
101 (target_write_memory_blocks): New, including a vector type
102 for memory_write_request_s.
103
104 2006-09-21 Vladimir Prus <vladimir@codesourcery.com>
105 Daniel Jacobowitz <dan@codesourcery.com>
106 Nathan Sidwell <nathan@codesourcery.com>
107
108 * Makefile.in (SFILES): Add memory-map.c and xml-support.c.
109 (memory_map_h, xml_support_h): New.
110 (target_h): Add vec_h dependency.
111 (COMMON_OBS): Add memory-map.o and xml-support.o.
112 (memory-map.o, xml-support.o): New rules.
113 (remote.o): Update.
114 * exceptions.h (enum errors): Add XML_PARSE_ERROR.
115 * infcmd.c (run_command_1, attach_command): Call target_pre_inferior.
116 * memattr.c (default_mem_attrib): Initialize blocksize.
117 (target_mem_region_list, mem_use_target)
118 (target_mem_regions_valid, mem_region_cmp, mem_region_init)
119 (require_user_regions, require_target_regions)
120 (invalidate_target_mem_regions): New.
121 (create_mem_region): Use mem_region_init.
122 (mem_clear): Move higher.
123 (lookup_mem_region): Use require_target_regions.
124 (mem_command): Implement "mem auto".
125 (mem_info_command): Handle target-supplied regions and flash
126 attributes.
127 (mem_enable_command, mem_disable_command, mem_delete_command): Use
128 require_user_regions.
129 (_initialize_mem): Mention "mem auto" in help.
130 * memattr.h (enum mem_access_mode): Add MEM_FLASH.
131 (struct mem_attrib): Add blocksize.
132 (invalidate_target_mem_regions, mem_region_init, mem_region_cmp): New
133 prototypes.
134 * remote.c: Include "memory-map.h".
135 (PACKET_qXfer_memory_map): New enum value.
136 (remote_protocol_features): Add qXfer:memory-map:read.
137 (remote_xfer_partial): Handle memory maps.
138 (remote_memory_map): New.
139 (init_remote_ops, init_remote_async_ops): Set to_memory_map.
140 (_initialize_remote): Register qXfer:memory-map:read.
141 * target.c (update_current_target): Mention to_memory_map.
142 (target_memory_map, target_pre_inferior): New.
143 (target_preopen): Call target_pre_inferior.
144 * target.h: Include "vec.h".
145 (enum target_object): Add TARGET_OBJECT_MEMORY_MAP.
146 (struct target_ops): Add to_memory_map.
147 (target_memory_map, target_pre_inferior): New prototypes.
148 * memory-map.c, memory-map.h, xml-support.c, xml-support.h: New files.
149
150 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
151
152 * ada-lex.l (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
153 (strtoulst): Moved to ...
154 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
155 (strtoulst): ... here. Enhanced to behave more similarly
156 to strtoul.
157 * defs.h (strtoulst): New prototype.
158
159 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
160
161 * Makefile.in (memattr_h, memattr.o): Update.
162 * memattr.h: Include "vec.h".
163 (struct mem_region): Remove linked list pointer.
164 (mem_region_s): New typedef and corresponding vector.
165 * memattr.c: Include "vec.h".
166 (mem_region_chain): Delete.
167 (mem_region_list): New vector pointer.
168 (mem_region_lessthan): New function.
169 (create_mem_region): Remove unused return value. Use vector
170 operations. Remove linear search.
171 (delete_mem_region): Delete.
172 (lookup_mem_region): Use vector operations. Add a FIXME.
173 (mem_info_command): Update to work with vectors.
174 (mem_enable, mem_enable_command, mem_disable, mem_disable_command)
175 (mem_free, mem_delete): Likewise.
176
177 2006-09-21 Nathan Sidwell <nathan@codesourcery.com>
178
179 * vec.h: New file.
180 * vec.c: New file.
181 * Makefile.in (SFILES): Add vec.c.
182 (vec_h): New.
183 (COMMON_OBJS): Add vec.o.
184 (vec.o): New target.
185
186 2006-09-20 Daniel Jacobowitz <dan@codesourcery.com>
187
188 PR remote/2154
189 * remote.c (remote_thread_alive): Remove local buf.
190 (remote_get_threadinfo): Remove local threadinfo_pkt.
191 (remote_get_threadlist): Remove unused threadlist_packet.
192 (remote_current_thread): Remove local buf.
193 (remote_threads_info): Set bufp after getpkt.
194 (remote_threads_extra_info): Remove local bufp.
195 (get_offsets): Set buf after getpkt.
196 (remote_check_symbols): Set reply after getpkt.
197 (remote_vcont_probe): Set buf after getpkt.
198 (remote_resume): Set buf after set_thread.
199 (remote_wait, remote_async_wait): Set buf after getpkt.
200 (fetch_register_using_p): Set buf after remote_send.
201 (remote_fetch_registers): Likewise.
202 (store_register_using_P): Don't use buf after remote_send.
203 (check_binary_download, remote_write_bytes)
204 (remote_read_bytes, remote_rcmd): Remove local buf.
205
206 2006-09-17 Vladimir Prus <vladimir@codesourcery.com>
207
208 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Don't emit error
209 if high requested frame number is larger than number of available
210 frames.
211
212 2006-09-16 Nick Roberts <nickrob@snap.net.nz>
213
214 * linux-nat.c (linux_test_for_tracefork): Don't leave zombie
215 process.
216
217 2006-09-16 Andrzej Zaborowski <balrog@zabor.org>
218
219 * interps.c (interpreter_exec_cmd): Restore interpreter properties.
220
221 2006-09-10 Daniel Jacobowitz <dan@codesourcery.com>
222
223 PR threads/2149
224 * infrun.c (handle_inferior_event): Context switch after fork
225 and exec events.
226
227 2006-09-10 Daniel Jacobowitz <dan@codesourcery.com>
228
229 * infcall.c (call_function_by_hand): Check for function pointer
230 types.
231
232 2006-09-10 Andreas Schwab <schwab@suse.de>
233
234 * m68k-tdep.c (m68k_analyze_register_saves): Fix decoding of
235 `move.l %R,-(%sp)'.
236
237 2006-09-07 Vladimir Prus <vladimir@codesourcery.com>
238
239 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Don't emit
240 error if high requested frame number is larger then number
241 of available frames.
242
243 2006-09-07 Joel Brobecker <brobecker@adacore.com>
244
245 From Stephan Springl <springl-gdb@bfw-online.de>
246 * fork-child.c (fork_inferior): Fix typo.
247
248 2006-08-28 DJ Delorie <dj@redhat.com>
249
250 * m32c-tdep.c (m32c_decode_srcdest4): Initialize fields in sd
251 that may not be initialized elsewhere.
252 (m32c_decode_sd23): Likewise.
253
254 2006-08-25 Daniel Jacobowitz <dan@codesourcery.com>
255
256 * buildsym.c (finish_block): Don't adjust the boundaries of
257 nested functions.
258
259 2006-08-24 Andreas Schwab <schwab@suse.de>
260
261 * symfile.c (add_symbol_file_command): Fix off-by-one when
262 extending sect_opts.
263
264 2006-08-24 Nick Roberts <nickrob@snap.net.nz>
265
266 * mi/gdb-mi.el: Refer to next release of Emacs as 22.1.
267
268 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
269
270 * mi/gdb-mi.el (gdbmi): Remove gdb-force-update, initialize
271 other variables.
272 (gdbmi-send): Ensure any text properties can be removed.
273 (gdbmi-prompt1): Update to gdb-ui.el
274 (gud-gdbmi-marker-filter): Defer setting of gud-running.
275 Keep gdb-done-regexp for partial-output-buffer.
276 (gdb-stack-list-frames-handler): Add face to function names.
277
278 2006-08-22 Mark Kettenis <kettenis@gnu.org>
279
280 * valprint.c (val_print_type_code_flags): Fix GNU coding standards
281 violation.
282
283 * alpha-tdep.c (alpha_register_to_value, alpha_value_to_register)
284 (alpha_push_dummy_call, alpha_extract_return_value)
285 (alpha_breakpoint_from_pc, alpha_read_insn)
286 (alpha_get_longjmp_target, alpha_supply_int_regs)
287 (alpha_fill_int_regs, alpha_supply_fp_regs, alpha_fill_fp_regs)
288 (alpha_next_pc): Use gdb_byte instead of (unsigned) char where
289 appropriate.
290
291 * sparc64-tdep.c (sparc64_pstate_type, sparc64_fsr_type)
292 (sparc64_fprs_type): New variables.
293 (sparc64_init_types): New function.:
294 (sparc64_register_info): Use appropriate flag types for %fsr and
295 %fprs.
296 (sparc64_pseudo_register_info): Use appropriate type for %pstate.
297 (_initialize_sparc64_tdep): New function.
298
299 * valprint.c (val_print_type_code_flags): Fix for bitfields larger
300 than 32 bits.
301
302 * gdbtypes.c (init_flags_type): Set all fields to zero instead of
303 just the first one.
304
305 2006-08-22 Daniel Jacobowitz <dan@codesourcery.com>
306
307 * Makefile.in (INTERNAL_CPPFLAGS): New.
308 (INTERNAL_CFLAGS_BASE): Use it.
309
310 2006-08-22 Michael Snyder <Michael.Snyder@PalmSource.com>
311
312 * MAINTAINERS: Update my email address.
313
314 2006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
315
316 * Makefile.in (amd64_linux_tdep_h): New.
317 (amd64-linux-nat.o, amd64-linux-tdep.o): Update.
318 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Add
319 ORIG_RAX.
320 (_initialize_amd64_linux_nat): Set amd64_native_gregset64_num_regs.
321 * amd64-linux-tdep.c (amd64_linux_register_name)
322 (amd64_linux_register_type, amd64_linux_register_reggroup_p)
323 (amd64_linux_write_pc): New.
324 (amd64_linux_init_abi): Use them, and update num_regs.
325 * amd64-linux-tdep.h: New file.
326 * amd64-tdep.c (amd64_register_name, amd64_register_type): Make
327 public.
328 * amd64-tdep.h (amd64_register_name, amd64_register_type): New
329 prototypes.
330
331 * regformats/reg-x86-64-linux.dat: New file.
332
333 2006-08-18 Daniel Jacobowitz <dan@codesourcery.com>
334
335 * infrun.c (handle_inferior_event): Check the current frame ID
336 before unwinding to the previous frame.
337
338 2006-08-18 Daniel Jacobowitz <dan@codesourcery.com>
339
340 * dwarf2read.c (quirk_gcc_member_function_pointer): Add GCC PR
341 number in a comment.
342
343 2006-08-18 Mark Kettenis <kettenis@gnu.org>
344
345 * sparc-nat.c (sparc_xfer_wcookie): Signal EOF. Tweak comment.
346
347 2006-08-18 Daniel Jacobowitz <dan@codesourcery.com>
348
349 * dwarf2read.c (quirk_gcc_member_function_pointer): New.
350 (read_structure_type): Call it.
351
352 2006-08-16 Daniel Jacobowitz <dan@codesourcery.com>
353
354 * NEWS: Mention "set trust-readonly-sections" fix.
355
356 2006-08-16 Daniel Jacobowitz <dan@codesourcery.com>
357
358 * remote.c, target.c: Strip trailing whitespace.
359
360 2006-08-15 Daniel Jacobowitz <dan@codesourcery.com>
361
362 PR remote/1966
363 * dcache.c (dcache_write_line): Use target_write.
364 (dcache_read_line): Use target_read.
365 * mi/mi-main.c (mi_cmd_data_read_memory): Use target_read.
366 * symfile.c (struct load_section_data): Add new per-section
367 members.
368 (load_progress): New function.
369 (load_section_callback): Pass load_progress to the new
370 target_write_with_progress.
371 * target.c (current_xfer_partial, memory_xfer_partial): New.
372 (target_xfer_partial): New prototype.
373 (target_xfer_memory, target_xfer_partial_p, xfer_using_stratum)
374 (do_xfer_memory, target_xfer_memory_partial)
375 (target_read_memory_partial, target_write_memory_partial): Delete.
376 (trust_readonly): Move higher in the file.
377 (update_current_target): Use current_xer_partial.
378 (target_xfer_partial): Use memory_xfer_partial. Handle
379 TARGET_OBJECT_RAW_MEMORY specially.
380 (target_read_memory): Use target_read.
381 (target_write_memory): Use target_write.
382 (default_xfer_partial): Call to_xfer_partial directly.
383 (target_write_with_progress): New function, based on target_write.
384 (target_write): Call it.
385 * target.h (enum target_object): Add TARGET_OBJECT_RAW_MEMORY.
386 (target_write_with_progress): New prototype.
387 (do_xfer_memory, target_read_memory_partial)
388 (target_write_memory_partial): Delete prototypes.
389
390 2006-08-15 Daniel Jacobowitz <dan@codesourcery.com>
391
392 * remote.c (remote_write_bytes): Take a const buffer argument.
393 Do the checks from remote_xfer_memory.
394 (remote_read_bytes): Do the checks from remote_xfer_memory.
395 (remote_xfer_memory): Remove checks pushed into lower level
396 functions.
397 (remote_xfer_partial): Call remote_write_bytes and remote_read_bytes
398 directly.
399 * remote.h (remote_write_bytes): Update prototype.
400
401 2006-08-11 Andrew Stubbs <andrew.stubbs@st.com>
402
403 * NEWS: Add 'set trace-commands' command.
404
405 2006-08-10 Andrew Stubbs <andrew.stubbs@st.com>
406
407 * cli/cli-script.c (execute_user_command): Update command_next_depth
408 on user-command call.
409
410 2006-08-09 Joel Brobecker <brobecker@adacore.com>
411
412 * NEWS: Add entry for new substitute-path commands.
413
414 2006-08-08 Joel Brobecker <brobecker@adacore.com>
415
416 * source.c: #include gdb_assert.h.
417 (substitute_path_rule): New struct.
418 (substitute_path_rules): New static global variable.
419 (substitute_path_rule_matches): New function.
420 (get_substitute_path_rule): New function.
421 (rewrite_source_path): New function.
422 (find_and_open_source): Add source path rewriting support.
423 (strip_trailing_directory_separator): New function.
424 (find_substitute_path_rule): New function.
425 (add_substitute_path_rule): New function.
426 (delete_substitute_path_rule): New function.
427 (show_substitute_path_command): New function.
428 (unset_substitute_path_command): New function.
429 (set_substitute_path_command): New function.
430 (_initialize_source): Add new substitute-path commands.
431 * Makefile.in (source.o): Add dependency on gdb_assert.h.
432
433 2006-08-08 Joel Brobecker <brobecker@adacore.com>
434
435 * i386-tdep.c (i386_follow_jump): Use read_memory_nobpt to read
436 instructions.
437 (i386_analyze_struct_return): Likewise.
438 (i386_skip_probe): Likewise.
439 (i386_match_insn): Likewise.
440 (i386_analyze_frame_setup): Likewise.
441 (i386_analyze_register_saves): Likewise.
442 (i386_skip_prologue): Likewise.
443
444 2006-08-08 Joel Brobecker <brobecker@adacore.com>
445
446 * gdbcore.h (read_memory_nobpt): New function name instead of
447 deprecated_read_memory_nobpt.
448 * breakpoint.c (read_memory_nobpt): New function name instead
449 of deprecated_read_memory_nobpt.
450 Adjust calls to old deprecated_read_memory_nobpt accordingly.
451 * alpha-tdep.c: Adjust calls to deprecated_read_memory_nobpt
452 accordingly.
453 * alphanbsd-tdep.c: Likewise.
454 * frame.c: Likewise.
455 * frv-tdep.c: Likewise.
456 * hppa-linux-tdep.c: Likewise.
457 * hppa-tdep.c: Likewise.
458 * i386-linux-nat.c: Likewise.
459 * m68klinux-tdep.c: Likewise.
460 * mips-tdep.c: Likewise.
461 * s390-tdep.c: Likewise.
462
463 2006-08-08 Daniel Jacobowitz <dan@codesourcery.com>
464
465 * configure.ac: Check for expat.
466 * acinclude.m4: Include AC_LIB_HAVE_LINKFLAGS dependencies.
467 * Makefile.in (LIBEXPAT): New.
468 (CLIBS): Include $(LIBEXPAT).
469 * README: Mention expat.
470 * configure, config.in: Regenerated.
471
472 2006-08-08 Joel Sherrill <joel.sherrill@oarcorp.com>
473
474 * config/sparc/embed.mt: New file.
475 * configure.tgt (sparc-*-rtems*): Use embed.mt.
476
477 2006-08-08 Daniel Jacobowitz <dan@codesourcery.com>
478
479 * Makefile.in (objfiles.o, symfile.o): Update.
480 * objfiles.c: Include "expression.h" and "parser-defs.h".
481 (free_objfile): Clear global blocks.
482 * symfile.c: Include "parser-defs.h".
483 (clear_symtab_users): Clear global blocks.
484
485 2006-08-08 Thiemo Seufer <ths@mips.com>
486
487 * breakpoint.c (update_breakpoints_after_exec): Fix type mismatch.
488
489 2006-08-08 Vladimir Prus <vladimir@codesourcery.com>
490
491 * symfile.c (download_write_size): Remove.
492 (show_download_write_size): Remove.
493 (load_section_callback): Don't use download_write_size.
494 (_initialize_symfile): Don't register download_write_size.
495 * NEWS: Mention 'download-write-size' removal.
496
497 2006-08-06 Daniel Jacobowitz <dan@codesourcery.com>
498
499 * expprint.c (print_subexp_standard, dump_subexp_body_standard): Add
500 support for member pointers.
501
502 2006-08-02 Mark Kettenis <kettenis@gnu.org>
503
504 * arm-tdep.h: Add multiple inclusion protection.
505 (struct gdbarch): Add forward declaration.
506 (armobsd_regset_from_core_section): New prototype.
507 * armbsd-tdep.c: New file.
508 * armobsd-tdep.c: Include "gdb_string.h".
509 (armobsd_init_abi): Set regset_from_core_section.
510 (armobsd_core_osabi_sniffer): New function.
511 (_initialize_armobsd_tdep): Register armobsd_core_osabi_sniffer.
512 * Makefile.in (ALLDEPFILES): Add armbsd-tdep.c.
513 (armbsd-tdep.o): New dependency.
514 (armnbsd-tdep.o): Update dependencies.
515 * config/arm/obsd.mt (TDEPFILES): Add armbsd-tdep.o and corelow.o.
516
517 2006-08-02 Thiemo Seufer <ths@mips.com>
518
519 * linux-thread-db.c (thread_db_get_thread_local_address): Fix type
520 mismatch.
521 * tui/tui-stack.c (tui_show_frame_info): Likewise.
522
523 2006-08-01 Daniel Jacobowitz <dan@codesourcery.com>
524
525 * c-exp.y (type): Remove incorrect pointer to member case.
526 * objc-exp.y (type): Likewise.
527 * p-exp.y (type): Likewise.
528
529 2006-08-01 Mark Kettenis <kettenis@gnu.org>
530
531 * arm-tdep.h (enum struct_return): New.
532 (struct gdbarch_tdep): Add struct_return member.
533 * arm-tdep.c (arm_return_value): Return
534 RETURN_VALUE_STRUCT_CONVENTION for aggregates when the ABI uses
535 pcc_struct_return.
536 (arm_gdbarch_init): Default to reg_struct_return.
537 * armobsd-tdep.c (armobsd_init_abi): Set pcc_struct_return.
538
539 2006-07-31 Mark Kettenis <kettenis@gnu.org>
540
541 * alpha-tdep.h (ALPHA_S0_REGNUM): New define.
542 * alphabsd-nat.c: Include <sys/types.h>, <sys/signal.h>,
543 <machine/pcb.h> and "bsd-kvm.h".
544 (alphabsd_supply_pcb): New function.
545 (_initialize_alphabsd_nat): Enable libkvm interface.
546 * Makefile.in (alphabsd-nat.o): Update dependencies.
547 * config/alpha/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
548 (LOADLIBES): New variable.
549 * config/alpha/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
550 (LOADLIBES): New variable.
551
552 2006-07-31 Fred Fish <fnf@specifix.com>
553
554 * arm-tdep.c (arm_make_prologue_cache): Use FRAME_OBSTACK_ZALLOC
555 instead of calling frame_obstack_zalloc directly.
556 (arm_make_stub_cache): Ditto.
557 * frame-unwind.h: Ditto.
558 * frame.c (create_new_frame): Ditto.
559
560 2006-07-27 Bob Wilson <bob.wilson@acm.org>
561
562 * MAINTAINERS (Write After Approval): Add myself.
563
564 2006-07-27 Bob Wilson <bob.wilson@acm.org>
565
566 * main.c (captured_main): Print a newline after calling
567 print_gdb_version instead of waiting until after the symbol file
568 has been read. Adjust error_pre_print, quit_pre_print, and
569 warning_pre_print values.
570
571 2006-07-27 Roger Sayle <roger@eyesopen.com>
572 Daniel Jacobowitz <dan@codesourcery.com>
573
574 * irix5-nat.c (fetch_core_registers): Simplify and correct logic.
575
576 2006-07-27 Daniel Jacobowitz <dan@codesourcery.com>
577
578 * target.h (target_read_stralloc): New prototype.
579 * target.c (target_read_alloc_1): Renamed from target_read_alloc.
580 Take new PADDING argument.
581 (target_read_alloc): Use it.
582 (target_read_stralloc): New function.
583
584 2006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
585
586 * remote.c (remote_protocol_features): Correct qPart to qXfer.
587
588 2006-07-25 Daniel Jacobowitz <dan@codesourcery.com>
589
590 * eval.c (evaluate_subexp_for_address): Don't incorrectly discard
591 calls to C++ operator*.
592
593 2006-07-24 Roger Sayle <roger@eyesopen.com>
594 Daniel Jacobowitz <dan@codesourcery.com>
595
596 * solib-irix.c (gdb_int32_bytes): Use gdb_byte instead of char.
597 (gdb_int64_bytes): Likewise.
598 (fetch_lm_info): Use .b fields of gdb_int32_bytes and gdb_int64_bytes
599 as first argument to extract_unsigned_integer to silence compiler
600 warnings.
601
602 2006-07-24 Frederic Riss <frederic.riss@st.com>
603
604 * dwarf2read.c (struct dwarf2_per_objfile): Add has_section_at_zero
605 field.
606 (dwarf2_locate_sections): Initialize
607 dwarf2_per_objfile->has_section_at_zero.
608 (dwarf2_get_pc_bounds): Use dwarf2_per_objfile->has_section_at_zero
609 instead of HAS_RELOC test.
610 (read_partial_die): Ditto.
611
612 2006-07-24 Daniel Jacobowitz <dan@codesourcery.com>
613
614 * corefile.c (reopen_exec_file): Only check for an open exec file.
615 Use exec_file_attach.
616 * exec.c (exec_open): Make static.
617 (exec_file_command): Don't use target_preopen. Query directly about
618 changing the file.
619 * gdbcore.h (exec_open): Remove prototype.
620
621 2006-07-24 Frederic Riss <frederic.riss@st.com>
622
623 * regcache.c (struct regcache): Make register_valid_p a signed char
624 array.
625
626 2006-07-24 Jan Kratochvil <jan.kratochvil@redhat.com>
627 Daniel Jacobowitz <dan@codesourcery.com>
628
629 * linux-thread-db.c (thread_db_wait): Remove libthread_db
630 after exec events.
631
632 2006-07-24 Daniel Jacobowitz <dan@codesourcery.com>
633
634 * NEWS: Mention Windows cross debugging support.
635
636 2006-07-23 Daniel Jacobowitz <dan@codesourcery.com>
637
638 * linux-nat.c (linux_nat_add_target): Remove extern.
639 * linux-nat.h (thread_db_init): New prototype.
640
641 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
642
643 * configure.tgt: Build gdbserver for Cygwin and mingw32.
644
645 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
646
647 * config/i386/cygwin.mt (DEPRECATED_TM_FILE): Delete.
648 * config/i386/nm-cygwin.h: Add contents of tm-cygwin.h.
649 * config/i386/tm-cygwin.h: Delete file.
650
651 2006-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
652
653 * infrun.c (handle_inferior_event): Typo.
654
655 2006-07-21 Andrew Stubbs <andrew.stubbs@st.com>
656
657 * cli/cli-cmds.c (source_verbose, trace_commands): New variables.
658 (source_script): New function.
659 (source_verbose_cleanup): New function.
660 (source_command): Move old contents to source_script.
661 Make function static. Parse -v option and call source_script.
662 (init_cli_cmds): Update source command help.
663 Add 'set trace-commands' command.
664 * cli/cli-script.c (command_next_depth): New static variable.
665 (suppress_next_print_command_trace): New static variable.
666 (reset_command_nest_depth): New function.
667 (print_command_trace): New function.
668 (execute_control_command): Split the continue_control and break_control
669 cases, add calls to print_command_trace and count the nest depth.
670 (while_command): Set suppress_next_print_command_trace.
671 (if_command): Likewise.
672 * top.c (execute_command): Call print_command_trace.
673 * cli/cli-cmds.h (source_verbose, trace_commands): New extern variables.
674 (source_command): Change to source_script.
675 * main.c (captued_main): Use source_script instead of source_command.
676 * top.h (source_command): Change to source_script.
677 * event-top.c (display_gdb_prompt): Call reset_command_nest_depth.
678 * cli/cli-script.h (print_command_trace): Export.
679 (reset_command_nest_depth): Likewise.
680
681 2006-07-20 Daniel Jacobowitz <dan@codesourcery.com>
682
683 * eval.c (evaluate_struct_tuple): Skip static fields.
684
685 2006-07-19 Mark Kettenis <kettenis@gnu.org>
686
687 * alphaobsd-tdep.c: Include "obsd-tdep.h".
688 (alphaobsd_init_abi): Set skip_solib_resolver.
689 * Makefile.in (alphaobsd-tdep.o): Update dependencies.
690 * config/alpha/obsd.mt (TDEPFILES): Add obsd-tdep.o.
691
692 * arm-tdep.c (arm_gdbarch_init): Get default floating-point model
693 from ELF flags for binaries produced by the GNU toolchain.
694
695 2006-07-18 Nathan Sidwell <nathan@codesourcery.com>
696
697 * remote-fileio.c (remote_fileio_func_rename): Reorder to process
698 input buffer before reading memory.
699 (remote_fileio_func_stat): Likewise.
700
701 2006-07-18 Daniel Jacobowitz <dan@codesourcery.com>
702
703 * blockframe.c (find_pc_partial_function): Use the minimal symbol
704 size to control the cache entry, if available.
705 * minsyms.c (lookup_minimal_symbol_by_pc_section): Handle minimal
706 symbols with zero and non-zero sizes differently.
707
708 2006-07-18 Daniel Jacobowitz <dan@codesourcery.com>
709
710 * linux-thread-db.c (td_thr_getfpregs_p, td_thr_getgregs_p)
711 (td_thr_setfpregs_p, td_thr_setgregs_p, thread_db_get_info)
712 (thread_db_fetch_registers, thread_db_store_registers)
713 (thread_db_thread_alive, thread_db_state_str): Delete.
714 (thread_db_load): Don't look up regset functions.
715 (thread_db_pid_to_str): Simplify.
716 (thread_db_extra_thread_info): New.
717 (init_thread_db_ops): Do not set to_fetch_registers,
718 to_store_registers, or to_thread_alive. Set to_extra_thread_info.
719 * Makefile.in: Remove linux-thread-db.o rule.
720
721 2006-07-18 Mark Kettenis <kettenis@gnu.org>
722
723 * armobsd-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
724 (armobsd_sigframe_init): New function.
725 (armobsd_sigframe): New variable.
726 (armobsd_init_abi): Prepend armobsd_sigframe unwinder.
727 * Makefile.in (armobsd-tdep.o): Update dependencies.
728
729 2006-07-18 Denis PILAT <denis.pilat@st.com>
730
731 * monitor.c: Remove unused prototypes.
732
733 2006-07-18 Vladimir Prus <vladimir@codesourcery.com>
734
735 * target.c (tcomplain): Mark with ATTR_NORETURN.
736
737 * defs.h (print_transfer_performance): Improve comments.
738
739 2006-07-17 Mark Kettenis <kettenis@gnu.org>
740
741 * printcmd.c: Coding style fixes: add missing spaces in comments
742 and wrapping long lines.
743 (delete_display, enable_display_command, disable_display_command)
744 (printf_command, display_info, undisplay_command, free_display)
745 (display_command, x_command, address_info, set_command)
746 (inspect_command, call_command, print_command, print_command_1)
747 (validate_format, print_formatted, decode_format, sym_format):
748 Remove prototypes.
749 (x_command): Make static.
750 (printf_command): Convert error into internal consistency check.
751 (address_info): Avoid assignment within function call.
752 (printf_command): Avoid redundant cast.
753 * tracepoint.c (x_command): Remove extern prototype.
754
755 * armobsd-tdep.c (armobsd_init_abi): Set skip_solib_resolver.
756 * Makefile.in (armobsd-tdep.o): Update dependencies.
757 * config/arm/obsd.mt (TDEPFILES): Add obsd-tdep.o.
758
759 2006-07-16 Mark Kettenis <kettenis@gnu.org>
760
761 * armobsd-tdep.c: New file.
762 * Makefile.in (ALLDEPFILES): Add armobsd-tdep.c.
763 (armobsd-tdep.o): New dependency.
764 * config/arm/obsd.mt: New file.
765 * configure.tgt: (arm*-*-openbsd*): Set gdb_target to obsd.
766
767 * gdbarch.sh (deprecated_saved_pc_after_call): Delete.
768 * gdbarch.h, gdbarch.c: Re-generate.
769
770 * arm-tdep.c (arm_saved_pc_after_call): Delete.
771 (arm_gdbarch_init): Do not set deprecated_saved_pc_after_call.
772
773 2006-07-16 Alfred M. Szmidt <ams@gnu.org>
774
775 * gnu-nat.c: Undefine _process_user_ before including
776 <hurd/process_request.h>.
777 (gnu_resume): Supply missing argument to error().
778 (gnu_read_inferior): Add extra parenthesis around arithmetic
779 expression to silence warnings from GCC.
780 (gnu_write_inferior): Likewise.
781 (gnu_xfer_memory): Changed type of MYADDR to `gdb_byte *'.
782
783 2006-07-16 Mark Kettenis <kettenis@gnu.org>
784
785 * armnbsd-tdep.c (arm_netbsd_elf_init_abi): Use
786 svr4_ilp_fetch_link_map_offsets.
787
788 2006-07-15 Mark Kettenis <kettenis@gnu.org>
789
790 * armnbsd-tdep.c: Don't include "nbsd-tdep.h".
791 * config/arm/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
792 (DEPRECATED_TM_FILE): Remove.
793 * Makefile.in (armnbsd-tdep.o): Update dependencies.
794
795 2006-07-14 Joel Brobecker <brobecker@adacore.com>
796
797 * PROBLEMS: Document threads/2137.
798
799 2006-07-13 Mark Kettenis <kettenis@gnu.org>
800
801 * config/alpha/tm-nbsd.h: Remove file.
802 * config/alpha/nbsd.mt (DEPRECATED_TM_FILE): Remove.
803
804 2006-07-13 Corinna Vinschen <vinschen@redhat.com>
805
806 * mips-tdep.c (mips_integer_to_address): Simplify be calling
807 extract_signed_integer directly. Fix comment.
808
809 2006-07-13 Corinna Vinschen <vinschen@redhat.com>
810
811 * m32c-tdep.c (m32c_banked_register): New function.
812 (m32c_banked_read): Use m32c_banked_register function to evaluate
813 real register number.
814 (m32c_banked_write): Ditto.
815 (m32c_virtual_frame_pointer): New function.
816 (m32c_gdbarch_init): Add set_gdbarch_virtual_frame_pointer call.
817
818 2006-07-13 Nathan Sidwell <nathan@codesourcery.com>
819
820 * m68k-tdep.c (m68k_frame_align): New.
821 (m68k_gdbarch_init): Set frame_align here.
822
823 2006-07-13 Denis PILAT <denis.pilat@st.com>
824
825 * interps.c (interpreter_completer): Allocate one more item to the
826 'matches' list and set them all to 0 with a xcalloc.
827
828 2006-07-13 Nick Roberts <nickrob@snap.net.nz>
829
830 * annotate.c (annotate_frame_begin): Re-instate frame-begin
831 annotation for level 3 annotations.
832
833 2006-07-13 Paul N. Hilfinger <Hilfinger@adacore.com>
834 Daniel Jacobowitz <dan@codesourcery.com>
835
836 * infcall.c (value_arg_coerce): Use value_cast_pointers for
837 references. Avoid value_cast to a reference type. Don't silently
838 convert pointers to references.
839 * valops.c (value_cast_pointers): New, based on value_cast.
840 (value_cast): Use it. Reject reference types.
841 (value_ref): New.
842 (typecmp): Use it.
843 * value.h (value_cast_pointers, value_ref): New prototypes.
844
845 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
846
847 * remote.c (unpack_varlen_hex): Correct type of retval.
848 Reported by Zhigang Gong <zhigang.gong@gmail.com>.
849
850 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
851
852 * dwarf2read.c (dwarf2_symbol_mark_computed): Handle corrupted
853 or missing location list information. Suggested by Jan
854 Kratochvil <lace@jankratochvil.net>.
855
856 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
857
858 * Makefile.in (arm_linux_tdep_h): New variable.
859 (arm-linux-nat.o, arm-linux-tdep.o): Update.
860 * arm-linux-nat.c: Include "arm-linux-tdep.h".
861 (typeNone, typeSingle, typeDouble, typeExtended)
862 (FPWORDS, ARM_CPSR_REGNUM, FPREG, FPA11)
863 (fetch_nwfpe_single, fetch_nwfpe_double, fetch_nwfpe_none)
864 (fetch_nwfpe_extended, fetch_nwfpe_register, store_nwfpe_single)
865 (store_nwfpe_double, store_nwfpe_extended, store_nwfpe_register):
866 Delete.
867 (fetch_fpregister, fetch_fpregs, store_fpregister, store_fpregs):
868 Use gdb_byte buffers, NWFPE_FPSR_OFFSET, supply_nwfpe_register,
869 and collect_nwfpe_register.
870 (fill_gregset, supply_gregset, fill_fpregset, supply_fpregset): Use
871 new regset functions.
872 * arm-linux-tdep.c: Include "regset.h" and "arm-linux-tdep.h".
873 (arm_apcs_32): New declaration.
874 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
875 (arm_linux_collect_gregset, typeNone, typeSingle, typeDouble)
876 (typeExtended, supply_nwfpe_register, collect_nwfpe_register)
877 (arm_linux_supply_nwfpe, arm_linux_collect_nwfpe)
878 (arm_linux_regset_from_core_section): New.
879 (arm_linux_init_abi): Register arm_linux_regset_from_core_section.
880 * arm-linux-tdep.h: New file.
881 * arm-tdep.h (struct regset): Declare.
882 (struct gdbarch_tdep): Add gregset, fpregset members.
883 * config/arm/linux.mh (NATDEPFILES): Remove corelow.o and
884 core-regset.o.
885 * config/arm/linux.mt (TDEPFILES): Add corelow.o.
886
887 2006-07-12 Jan Kratochvil <lace@jankratochvil.net>
888
889 * infrun.c (handle_inferior_event): Fixed typos in printf.
890
891 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
892 Nathan Sidwell <nathan@codesourcery.com>
893
894 * remote.c (REMOTE_ALIGN_WRITES): New.
895 (remote_write_bytes): Align large write packets. Remove unused
896 payload_start variable.
897
898 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
899
900 * remote.c (PACKET_qXfer_auxv): New, renamed from PACKET_qPart_auxv.
901 (remote_supported_packet): Remove #if 0.
902 (remote_protocol_features): Add qPart:auxv:read.
903 (remote_unescape_input): New function.
904 (readchar): Don't mask off the high bit.
905 (read_frame): Use fputstrn_filtered for packet data.
906 (getpkt_sane): Return the number of bytes read or -1. Use
907 fputstrn_unfiltered.
908 (remote_read_qxfer): New.
909 (remote_xfer_partial): Use it for TARGET_OBJECT_AUXV.
910 (_initialize_remote): Update packet registration.
911 * defs.h (fputstrn_filtered): New prototype.
912 * utils.c (fputstrn_filtered): New.
913 * NEWS: Mention qXfer.
914
915 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
916
917 * target.c (target_read): Stop if target_read_partial returns 0
918 when some bytes have already been read.
919 (target_write): Likewise for target_write_partial.
920 (target_read_partial, target_write_partial): Make static.
921 (target_read_alloc): New.
922 * target.h: Doc fixes.
923 (target_read_partial, target_write_partial): Delete prototypes.
924 (target_read_alloc): New prototype.
925
926 * auxv.c (target_auxv_read): Delete.
927 (target_auxv_search, fprint_target_auxv): Use target_read_alloc.
928 * auxv.h (target_auxv_read): Delete prototype.
929 * avr-tdep.c (avr_io_reg_read_command): Use target_read_alloc.
930 * ia64-tdep.c (getunwind_table, get_kernel_table): Likewise.
931 * linux-nat.c (linux_nat_make_corefile_notes): Likewise.
932 * procfs.c (procfs_make_note_section): Likewise.
933 * remote.c (remote_xfer_partial): Don't loop here.
934 * sparc-tdep.c (sparc_fetch_wcookie): Use target_read.
935
936 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
937
938 * arm-linux-tdep.c: Doc fixes.
939 (ARM_SIGCONTEXT_R0, ARM_UCONTEXT_SIGCONTEXT)
940 (ARM_OLD_RT_SIGFRAME_SIGINFO, ARM_OLD_RT_SIGFRAME_UCONTEXT)
941 (ARM_NEW_RT_SIGFRAME_UCONTEXT, ARM_NEW_SIGFRAME_MAGIC): New
942 constants.
943 (arm_linux_sigreturn_init, arm_linux_rt_sigreturn_init): Support
944 the new signal frame layouts.
945
946 2006-07-12 Mike Frysinger <vapier@gentoo.org>:
947 Daniel Jacobowitz <dan@codesourcery.com>
948
949 * Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.
950 * gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
951 * gdbarch.sh: Correct comment.
952
953 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
954
955 * MAINTAINERS: Add Alfred Szmidt for the Hurd.
956
957 2006-07-11 Mark Kettenis <kettenis@gnu.org>
958
959 * alpha-tdep.h (ALPHA_INSN_SIZE): New define.
960
961 2006-07-10 Mark Kettenis <kettenis@gnu.org>
962
963 * alphaobsd-tdep.c: New file.
964 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Do not register a
965 handler for GDB_OSABI_OPENBSD_ELF.
966 * Makefile.in (ALLDEPFILES): Add alphaobsd-tdep.c.
967 (alphaobsd-tdep.o): New target.
968 * config/alpha/obsd.mt: New file.
969 * configure.tgt (alpha*-*-openbsd*): Set gdb_target to obsd.
970
971 2006-07-10 Richard Henderson <rth@redhat.com>
972
973 * alpha-tdep.h (struct gdbarch_tdep): Add return_in_memory.
974 * alpha-tdep.c (alpha_register_byte): Remove.
975 (alpha_extract_struct_value_address): Remove.
976 (alpha_return_value): New.
977 (alpha_return_in_memory_always): New.
978 (alpha_gdbarch_init): Set tdep->return_in_memory. Don't call
979 set_gdbarch_deprecated_register_byte. Do call set_gdbarch_return_value
980 instead of set_gdbarch_deprecated_use_struct_convention,
981 set_gdbarch_extract_return_value, set_gdbarch_store_return_value,
982 or set_gdbarch_deprecated_extract_struct_value_address.
983 * alphafbsd-tdep.c (alphafbsd_return_in_memory): Rename from
984 alphafbsd_use_struct_convention, remove gcc_p argument.
985 (alphafbsd_init_abi): Set tdep->return_in_memory instead of
986 set_gdbarch_deprecated_use_struct_convention.
987
988 2006-07-09 Mark Kettenis <kettenis@gnu.org>
989
990 * alphabsd-tdep.h (alphanbsd_regset_from_core_section): New
991 prototype.
992 * alphanbsd-tdep.c (alphanbsd_regset_from_core_section): Handle
993 a.out-style core file format here. Make global.
994 (alphanbsd_regset_from_core_section): Remove.
995 (alphanbsd_sigtramp_offset): Make static.
996 (alphanbsd_aout_init_abi): Remove.
997 (alphanbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_ELF for
998 a.out style core files.
999 (_initialize_alphanbsd_tdep): Do not register a handler for
1000 GDB_OSABI_NETBSD_AOUT.
1001
1002 * alphabsd-tdep.h: Tweak comments.
1003 (SIZEOF_STRUCT_REG, SIZEOF_STRUCT_FPREG): Remove.
1004 * alphanbsd-tdep.c: Reorder includes. Include "regset.h".
1005 (ALPHANBSD_SIZEOF_GREGS, ALPHANBSD_SIZEOF_FPREGS): New defines.
1006 (alphanbsd_supply_fpregset, alphanbsd_supply_gregset)
1007 (alphanbsd_aout_supply_gregset): New functions.
1008 (alphanbsd_gregset, alphanbsd_fpregset, alphanbsd_aout_gregset):
1009 New variables.
1010 (alphanbsd_regset_from_core_section)
1011 (alphanbsd_aout_regset_from_core_section): New functions.
1012 (fetch_core_registers, fetch_elfcore_registers): Remove functions.
1013 (alphanbsd_core_fns, alphanbsd_elf_fns): Remove variables.
1014 (alphanbsd_init_abi): Set regset_from_core_section.
1015 (alphanbsd_aout_init_abi, alphanbsd_core_osabi_sniffer): New
1016 functions.
1017 (_initialize_alphanbsd_tdep): Register NetBSD core file sniffer.
1018 Use alphanbsd_aout_init_abi whre appropriate. Don't call
1019 deprecated_add_core_fns.
1020 * Makefile.in (alphanbsd-tdep.o): Update dependencies.
1021
1022 * alphabsd-tdep.c (alphabsd_supply_reg, alphabsd_fill_reg)
1023 (alphabsd_supply_fpreg, alphabsd_fill_fpreg): Add missing spaces.
1024
1025 * alphanbsd-tdep.c (alphanbsd_init_abi): Use
1026 svr4_lp64_fetch_link_map_offsets instead of
1027 nbsd_lp64_solib_svr4_fetch_link_map_offsets.
1028
1029 2006-07-06 Andrew Stubbs <andrew.stubbs@st.com>
1030
1031 * parse.c (write_exp_elt_opcode, write_exp_elt_sym, write_exp_elt_block
1032 write_exp_elt_longcst, write_exp_elt_dblcst, write_exp_elt_type,
1033 write_exp_elt_intern): Zero initialize tmp.
1034
1035 2006-07-05 Daniel Jacobowitz <dan@codesourcery.com>
1036
1037 * remote.c (remote_xfer_partial): Remove KOD support.
1038 * target.h (enum target_object): Remove TARGET_OBJECT_KOD.
1039 * MAINTAINERS: Move Kernel Object Display entry to past maintainers.
1040 * Makefile.in (SFILES, kod_h, COMMON_OBS, kod.o, kod-cisco.o):
1041 Remove KOD support.
1042 * mi/mi-cmds.c (mi_cmds): Remove dummy KOD commands.
1043 * NEWS: Mention KOD.
1044 * kod.h, kod.c, kod-cisco.c: Delete files.
1045
1046 2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
1047
1048 * remote.c (init_remote_state): Use xrealloc instead of xmalloc.
1049
1050 2006-07-03 Nathan J. Williams <nathanw@wasabisystems.com>
1051
1052 * bsd-kvm.c (bsd_kvm_open): Open the KVM interface read-write if
1053 write_files is set.
1054
1055 2006-06-24 Eli Zaretskii <eliz@gnu.org>
1056
1057 * defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]: Define to `;'.
1058
1059 2006-06-23 Daniel Jacobowitz <dan@codesourcery.com>
1060
1061 * arm-tdep.c (arm_register_type): Use unsigned types for registers.
1062 Add special types for sp and pc.
1063 * Makefile.in (arm-tdep.o): Update.
1064
1065 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
1066
1067 * remote.c (remote_escape_output): New function.
1068 (remote_write_bytes): Use remote_escape_output.
1069
1070 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
1071
1072 * NEWS: Mention qSupported.
1073 * remote.c (struct remote_state): Add explicit_packet_size.
1074 (get_remote_packet_size): Check explicit_packet_size.
1075 (get_memory_packet_size): Likewise.
1076 (PACKET_qSupported): New enum value.
1077 (struct protocol_feature, remote_supported_packet)
1078 (remote_packet_size, remote_protocol_features)
1079 (remote_query_supported): New.
1080 (remote_open_1): Reset explicit_packet_size. Call
1081 remote_query_supported.
1082 (_initialize_remote): Register qSupported.
1083
1084 2006-06-21 Andrew Stubbs <andrew.stubbs@st.com>
1085
1086 * cli/cli-script.c (realloc_body_list): Zero new parts of body_list.
1087
1088 2006-06-20 Joel Brobecker <brobecker@adacore.com>
1089
1090 * GDB 6.5 released from GDB 6.5 branch.
1091
1092 2006-06-19 Michael Snyder <msnyder@redhat.com>
1093
1094 * mips-tdep.c (mips_eabi_push_dummy_call): For 32 bit ABI, to
1095 decide how many registers it takes to pass a floating point
1096 argument, what matters is the size of a floating point register
1097 (not the size of a general purpose register).
1098 (mips_o32_push_dummy_call): Ditto.
1099
1100 2006-06-19 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
1101
1102 * configure.tgt: Add gdbserver support for m32r-linux.
1103
1104 2006-06-18 Mark Kettenis <kettenis@gnu.org>
1105
1106 * m68klinux-tdep.c (m68k_linux_init_abi): Fix typo in comment.
1107
1108 2006-06-15 Daniel Jacobowitz <dan@codesourcery.com>
1109
1110 * infrun.c (insert_step_resume_breakpoint_at_caller): New function,
1111 based on insert_step_resume_breakpoint_at_frame.
1112 (handle_inferior_event): Update comments. Use
1113 insert_step_resume_breakpoint_at_caller.
1114 (insert_step_resume_breakpoint_at_frame): Revise comments.
1115
1116 2006-06-14 Daniel Jacobowitz <dan@codesourcery.com>
1117
1118 * dwarf2read.c (read_unspecified_type): New function.
1119 (read_type_die): Handle DW_TAG_unspecified_type.
1120 (Committed by Julian Brown.)
1121
1122 2006-06-13 Daniel Jacobowitz <dan@codesourcery.com>
1123
1124 * symfile.c (load_command): Check for a changed executable before
1125 "load".
1126
1127 2006-06-13 Fred Fish <fnf@specifix.com>
1128
1129 * mips-tdep.c (mips_find_long_section): New function.
1130 (mips_gdbarch_init): Use it to set long and pointer sizes.
1131
1132 2006-06-13 Nathan Sidwell <nathan@codesourcery.com>
1133
1134 * remote-file.io.c (remote_fileio_func_system): Treat zero length
1135 string as NULL. Adjust for NULL pointer argument.
1136 * doc/gdb.texinfo (system): Document behaviour with zero length
1137 string.
1138
1139 2006-06-12 Daniel Jacobowitz <dan@codesourcery.com>
1140
1141 * remote.c (set_remote_protocol_packet_cmd)
1142 (show_remote_protocol_packet_cmd): New prototypes.
1143 (remote_set_cmdlist, remote_show_cmdlist): Move higher.
1144 (struct packet_config): Make name and title const.
1145 (add_packet_config_cmd): Remove unnecessary arguments.
1146 (_initialize_remote): Update calls.
1147
1148 2006-06-10 Daniel Jacobowitz <dan@codesourcery.com>
1149
1150 * mingw-hdep.c (gdb_select): Always check for NULL fd sets
1151 before calling FD_ISSET. Correct check for exceptfds which
1152 previously tested writefds.
1153
1154 2006-06-09 Daniel Jacobowitz <dan@codesourcery.com>
1155 Julian Brown <julian@codesourcery.com>
1156
1157 * dwarf2read.c (partial_read_comp_unit_head): Accept version 3.
1158
1159 2006-06-09 Julian Brown <julian@codesourcery.com>
1160
1161 * MAINTAINERS (Write After Approval): Add myself.
1162
1163 2006-06-08 Michael Snyder <msnyder@redhat.com>
1164
1165 * mips-tdep.c (fp_register_arg_p): Recognize floating point typedefs.
1166
1167 2006-06-08 Nathan Sidwell <nathan@codesourcery.com>
1168
1169 * m68k-tdep.c (m68k_dwarf_reg_to_regnum): New.
1170 (m68k_gdbarch_init): Set it for dwarf & dwarf2 reg number
1171 conversion. Use M68K_NUM_REGS for number of regs.
1172
1173 * remote-fileio.c (remote_fileio_reset): New.
1174 * remote-fileio.h (remote_fileio_reset): Prototype.
1175 * remote.c (extended_remote_restart, remote_open_1): Call it.
1176
1177 * remote.c (remote_open_1): Do preopen tasks before
1178 irreversably destroying state.
1179
1180 2006-06-08 Daniel Jacobowitz <dan@codesourcery.com>
1181
1182 * remote.c (struct remote_state): New type, only containing
1183 buf and buf_size.
1184 (remote_state): New variable.
1185 (get_remote_state): New function.
1186 (struct remote_arch_state): Renamed from struct remote_state.
1187 Removed buf and buf_size.
1188 (get_remote_arch_state): Renamed from get_remote_state. All
1189 necessary callers updated to call this function.
1190 (init_remote_state): Initialize the architecture-specific state.
1191 Update the target-specific state if necessary.
1192 (get_remote_packet_size): New function. All previous references
1193 changed to use this accessor function.
1194 (packet_reg_from_regnum, packet_reg_from_pnum): Take a
1195 remote_arch_state instead of a remote_state. All callers changed.
1196 (_initialize_remote): Initialize the packet buffer here.
1197
1198 2006-06-06 Nathan Sidwell <nathan@codesourcery.com>
1199
1200 * remote.c (remote_insert_watchpoint): Return -1, rather than
1201 fatal error if packet is disabled.
1202 (remote_remove_watchpoint, remote_insert_hw_breakpoint,
1203 remote_remove_hw_breakpoint): Likewise.
1204
1205 2006-06-02 Nick Roberts <nickrob@snap.net.nz>
1206
1207 * breakpoint.c (print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.
1208
1209 2006-05-31 Michael Snyder <msnyder@redhat.com>
1210
1211 * mips-tdep.c: Comment tweaks.
1212
1213 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
1214
1215 * Makefile.in (top_builddir): Update comments.
1216 (INTL_DIR, INTL_SRC): Delete.
1217 (INTL, INTL_DEPS, INTL_CFLAGS): Update.
1218 * acinclude.m4: Include new gettext macros.
1219 * configure.ac: Use ZW_GNU_GETTEXT_SISTER_DIR. Remove copied
1220 CATALOGS code.
1221 * aclocal.m4, configure: Regenerated.
1222
1223 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
1224
1225 * Makefile.in (arm-linux-nat.o): Update dependencies.
1226 * arm-linux-nat.c: Include "gdb_proc_service.h".
1227 (PTRACE_GET_THREAD_AREA): Define.
1228 (ps_get_thread_area): New function.
1229
1230 2006-05-28 Alexandre Oliva <aoliva@redhat.com>
1231
1232 * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
1233 DWARF2_FRAME_REG_SAVED_VAL_OFFSET and
1234 DWARF2_FRAME_REG_SAVED_VAL_EXP.
1235 * dwarf2-frame.c (execute_cfa_program): Handle val_offset,
1236 val_offset_sf and val_expression.
1237 (dwarf2_frame_prev_register): Handle the new reg rules.
1238 (dwarf2_frame_this_id): Use pc instead of function entry point.
1239
1240 2006-05-28 Alexandre Oliva <aoliva@redhat.com>
1241
1242 * dwarf2-frame.c (struct dwarf2_cie): Add signal_frame field.
1243 (dwarf2_frame_sniffer): Use it.
1244 (decode_frame_entry_1): Set it according to augmentation "S".
1245
1246 2006-05-27 Joel Brobecker <brobecker@adacore.com>
1247
1248 From Peter Schauer <peterschauer@gmx.net>
1249 * m2-typeprint.c (m2_record_fields): Move variable declarations
1250 to the begining of the block.
1251
1252 2006-05-23 Mark Mitchell <mark@codesourcery.com>
1253
1254 * mt-tdep.c (mt_register_name): Correct out-of-range logic to
1255 include additional registers.
1256
1257 * mt-tdep.c (mt_gdb_regnums): Add ZI2, ZQ2, Ichannel2,
1258 Iscramb2, Qscramb2, Qchannel2.
1259 (mt_register_name): Likewise.
1260 (mt_copro_register_type): Describe ZI2 and ZQ2.
1261
1262 * mt-tdep.c (mt_gdb_regnums): Define
1263 MT_COPRO_PSEUDOREG_MAC_REGNUM.
1264 (mt_register_name): Use it.
1265 (mt_copro_register_type): Likewise.
1266 (mt_register_type): Likewise.
1267 (mt_pseudo_register_read): Likewise. Read the MAC register, not
1268 the coprocessor register.
1269 (mt_pseudo_register_write): Likewise.
1270
1271 2006-05-21 Christopher Faylor <cgf@timesys.com>
1272
1273 * win32-nat.c (cygwin_exceptions): New variable.
1274 (handle_exception): Treat a cygwin exception like a normal exception if
1275 cygwin_exceptions is true.
1276 (_initialize_win32_nat): Add "set cygwin-exceptions" handler.
1277
1278 2006-05-20 Gaius Mulley <gaius@glam.ac.uk>
1279
1280 * NEWS: (Improved Modula-2 language support): New section.
1281
1282 2006-05-19 Joel Brobecker <brobecker@adacore.com>
1283
1284 * configure: Regenerate using proper version of autoconf.
1285
1286 2006-05-19 Fred Fish <fnf@specifix.com>
1287
1288 * Makefile.in: Fix spelling of 'explicitly' and 'explicit'.
1289 * dwarfread.c: Fix spelling of 'unexpected'.
1290 * mips-tdep.c: Fix spelling of 'possible' and 'Determine'.
1291 * stack.c: Fix spelling of 'RETURN_VALUE'.
1292
1293 2006-05-18 Paul Gilliam <pgilliam@us.ibm.com
1294
1295 * solib-svr4.c (enable_break): Breakup a long line into 3 shorter ones.
1296
1297 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
1298
1299 * dwarf2-frame.c: Include "value.h".
1300 (read_reg): Use unpack_long and register_type.
1301 * Makefile.in (dwarf2-frame.o): Update.
1302
1303 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
1304
1305 * remote-rdp.c: Deleted.
1306 * NEWS: Mention removal of remote-rdp.c.
1307
1308 * Makefile.in (ALLDEPFILES): Remove remote-rdp.c.
1309 (remote-rdp.o): Delete.
1310 * README: Remove description of remote-rdp.c.
1311 * arm-tdep.c (arm_breakpoint_from_pc): Remove obsolete comment.
1312 * config/arm/embed.mt (TDEPFILES): Remove remote-rdp.o.
1313
1314 2006-05-16 Daniel Jacobowitz <dan@codesourcery.com>
1315
1316 * ser-e7kpc.c: Include <time.h> if it is available.
1317
1318 2006-05-16 Joel Brobecker <brobecker@adacore.com>
1319
1320 * version.in (version.in): Bump version number to 6.5.50 now
1321 that the gdb-6.5 branch has been created.
1322 * NEWS: Create a new section for changes that are included
1323 since gdb-6.5. Name the "since gdb-6.4" section as the "in gdb-6.5"
1324 section.
1325
1326 2006-05-16 Jim Blandy <jimb@codesourcery.com>
1327
1328 * MAINTAINERS (Authorized Committers): Gaius Mulley has accepted
1329 the Global Maintainers' invitation to be an authorized committer
1330 for the Modula-2 support.
1331
1332 2006-05-15 Mark Kettenis <kettenis@gnu.org>
1333
1334 * ppcobsd-nat.c: Include "gdb_assert.h".
1335 [PT_GETFPREGS] (getfpregs_supplies): New function.
1336 (ppcobsd_fetch_registers, ppcobsd_fetch_registers): Hanlde OS
1337 versions that have PT_GETFPREGS.
1338 (_initialize_ppcobsd_nat) [PT_GETFPREGS]: Initialize
1339 ppcobsd_fpreg_offsets.
1340 * ppcobsd-tdep.h (ppcobsd_fpreg_offsets, ppcobsd_fpregset):
1341 Declare.
1342 * ppcobsd-tdep.c (ppcobsd_fpreg_offsets, ppcobsd_fpregset): New
1343 variables.
1344 (_initialize_ppcobsd_tdep): Initialize ppcobsd_fpreg_offsets.
1345 * Makefile.in (ppcobsd-nat.o): Update dependencies.
1346
1347 2006-05-15 Daniel Jacobowitz <dan@codesourcery.com>
1348
1349 * configure.ac: Use GCC_HEADER_STDINT.
1350 * acinclude.m4: Include stdint.m4.
1351 * Makefile.in (gdb_stdint_h): Define.
1352 (distclean): Remove gdb_stdint.h.
1353 (Makefile, stamp-h): Update rules to generate only the correct
1354 files.
1355 (gdb_stdint.h, stamp-int): New rules.
1356 * config.in, configure: Regenerated.
1357
1358 2006-05-15 Daniel Jacobowitz <dan@codesourcery.com>
1359
1360 * valprint.c: Include "exceptions.h".
1361 (val_print): If something goes wrong while printing, supply an
1362 error message.
1363
1364 2006-05-15 Peter O'Gorman <gdb-patches@mlists.thewrittenword.com>
1365
1366 * source.c (get_current_source_symtab_and_line)
1367 (set_current_source_symtab_and_line): Use { 0 }.
1368 * cli/cli-cmds.c (list_command): Likewise.
1369
1370 2006-05-14 Nick Roberts <nickrob@snap.net.nz>
1371
1372 * mi/gdb-mi.el (gdbmi-send): Correct regexp for repeat commands.
1373 (gdbmi): Use new variable name gdb-pc-address.
1374 (gdbmi-frame-handler): Use new variable name gdb-pc-address.
1375 Check that a match has been found.
1376
1377 2006-05-13 Gaius Mulley <gaius@glam.ac.uk>
1378
1379 * m2-lang.h: Added function extern prototypes for
1380 m2_is_long_set and get_long_set_bounds.
1381 * m2-typeprint.c: Complete replacement.
1382 (m2_print_type): Walk the Modula-2 type tree.
1383 (m2_type_name): New function.
1384 (m2_range): New function.
1385 (m2_typedef): New function.
1386 (m2_array): New function.
1387 (m2_pointer): New function.
1388 (m2_ref): New function.
1389 (m2_unknown): New function.
1390 (m2_union): New function.
1391 (m2_procedure): New function.
1392 (m2_print_bounds): New function.
1393 (m2_short_set): New function.
1394 (m2_is_long_set): New function.
1395 (m2_get_discrete_bounds): New function.
1396 (m2_is_long_set_of_type): New function.
1397 (m2_long_set): New function.
1398 (m2_record_fields): New function.
1399 (m2_enum): New function.
1400 * dwarf2read.c: Modified.
1401 (read_set_type): New function.
1402 (process_die): Call read_set_type.
1403 (read_base_type): Modifed.
1404 (set_cu_language): Added Modula-2 case clause.
1405 * m2-valprint.c: Complete replacement.
1406 (print_function_pointer_address): New function.
1407 (get_long_set_bounds): New function.
1408 (m2_print_long_set): New function.
1409 (print_unpacked_pointer): New function.
1410 (print_variable_at_address): New function.
1411 (m2_val_print): Replaced.
1412 * gdb/MAINTAINERS (Write After Approval): Added
1413 Gaius Mulley <gaius@glam.ac.uk>
1414
1415 2006-05-12 Mark Kettenis <kettenis@gnu.org>
1416
1417 * ppcnbsd-tdep.h: Update copyright year. Include <stddef.h>
1418 (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
1419 (ppcnbsd_fill_fpreg): Remove prototypes.
1420 (struct regset): Add forward declaration.
1421 (ppcnbsd_gregset, ppcnbsd_fpregset): Extern declarations.
1422 * ppcnbsd-tdep.c: Update copyright year. Include "gdbtypes.h",
1423 "regset.h" and "gdb_string.h". Don't include "breakpoint.h",
1424 "value.h", target.h and nbsd-tdep.h". Reorder includes.
1425 (REG_FIXREG_OFFSET, REG_LR_OFFSET, REG_CR_OFFSET, REG_XER_OFFSET)
1426 (REG_CTR_OFFSET, REG_PC_OFFSET, SIZEOF_STRUCT_REG)
1427 (FPREG_FPR_OFFSET, FPREG_FPSCR_OFFSET, SIZEOF_STRUCT_FPREG):
1428 Remove macros.
1429 (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
1430 (ppcnbsd_fill_fpreg): Remove functions.
1431 (fetch_core_registers, fetch_elfcore_registers): Remove functions.
1432 (ppcnbsd_core_fns, ppcnbsd_elfcore_fns): Remove variables.
1433 (ppcnbsd_reg_offsets): New variable.
1434 (ppcnbsd_gregset, ppcnbsd_fpregset): New variables.
1435 (ppcnbsd_sigtramp_cache_init): Deal with new signal trampoline
1436 introduced in NetBSD 2.0.
1437 (ppcnbsd_sigtramp): Provide complete signal trampoline.
1438 (ppcnbsd2_sigtramp): New variable.
1439 (ppcnbsd_init_abi): Set svr4_fetch_link_map_offsets to
1440 svr4_ilp32_fetch_link_map_offsets. Set regset_from_core_section.
1441 Add ppcnbs2_sigtramp unwinder.
1442 (_initialize_ppcnbsd_tdep): Don't use deprecated_add_core_fns.
1443 Initialize ppcnbsd_reg_offsets.
1444 * ppcnbsd-nat.c: Update copyright year. Reorder includes.
1445 (getregs_supplies): Use regnum instead of regno.
1446 (getfpregs_supplies): Likewise.
1447 (ppcnbsd_fetch_inferior_registers): Likewise. Call
1448 ppc_supply_gregset and ppc_suppply_fpregset instead of
1449 ppcnbsd_supply_reg and ppcnbsd_supply_fpreg
1450 (ppcnbsd_store_inferior_registers): Likewise. Call
1451 ppc_collect_gregset and ppc_collect_fpregset instead of
1452 ppcnbsd_fill_reg and ppcnbsd_fill_fpreg.
1453 (ppcnbsd_supply_pcb): Use `gdb_byte *' instead of `char *'.
1454 (_initialize_ppcnbsd_nat): Add some whitespace.
1455 * Makefile.in (ppcnbsd-nat.o, ppcnbsd-tdep.o): Update dependencies.
1456 * config/powerpc/nbsd.mh (NATDEPFILES): Remove infptrace.o.
1457 (NAT_FILE): Remove.
1458 * config/powerpc/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
1459
1460 2006-05-11 Alfred M. Szmidt <ams@gnu.org>
1461
1462 * gnu-nat.c (inf_validate_procs): Don't use lvalue in assignments.
1463
1464 2006-05-11 Fred Fish <fnf@specifix.com>
1465
1466 * symtab.c (skip_prologue_using_sal): Handle single line functions
1467 like "foo(){}", which may optimize down to a single return inst.
1468
1469 2006-05-10 Steve Ellcey <sje@cup.hp.com>
1470
1471 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Remove
1472 message.
1473
1474 2006-05-09 Andreas Schwab <schwab@suse.de>
1475
1476 * dwarf2-frame.c (struct dwarf2_fde): Add eh_frame_p.
1477 (execute_cfa_program): Add parameter eh_frame_p. Call
1478 dwarf2_frame_eh_frame_regnum when true.
1479 (dwarf2_frame_cache): Pass eh_frame_p from fde to
1480 execute_cfa_program.
1481 (decode_frame_entry_1): Call dwarf2_frame_eh_frame_regnum when
1482 processing .eh_frame. Copy eh_frame_p to the new fde.
1483 (struct dwarf2_frame_ops): Add eh_frame_regnum.
1484 (dwarf2_frame_set_eh_frame_regnum): Define.
1485 (dwarf2_frame_eh_frame_regnum): Define.
1486
1487 * dwarf2-frame.h (dwarf2_frame_set_eh_frame_regnum): Declare.
1488 (dwarf2_frame_eh_frame_regnum): Declare.
1489
1490 2006-05-06 David S. Miller <davem@sunset.davemloft.net>
1491
1492 * linux-nat.c (linux_nat_do_thread_registers): Check for
1493 NULL collect_regset method.
1494
1495 2006-05-06 Ulrich Weigand <uweigand@de.ibm.com>
1496
1497 * s390-tdep.c (s390_collect_regset): New function.
1498 (s390_gregset, s390x_gregset, s390_fpregset): Add it.
1499
1500 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
1501
1502 * dwarf2read.c: Make LOC_OPTIMIZED_OUT the default value for a
1503 symbol.
1504
1505 2006-05-05 Ulrich Weigand <uweigand@de.ibm.com>
1506
1507 * linux-nat.c (exit_lwp): Fix NULL pointer access.
1508 (linux_nat_handle_extended): New parameter STOPPING.
1509 (wait_lwp): Call it with STOPPING equals 1.
1510 (linux_nat_wait): Call it with STOPPING equals 0.
1511
1512 2006-05-05 Ulrich Weigand <uweigand@de.ibm.com>
1513
1514 * linux-nat.c (linux_nat_wait): Do not short-cut reporting
1515 of 'uninteresting' signals when single-stepping.
1516
1517 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
1518
1519 * MAINTAINERS: Move NEWS to the documentation entry.
1520
1521 2006-05-05 David S. Miller <davem@sunset.davemloft.net>
1522
1523 * linux-nat.c (linux_nat_do_thread_registers): Use the
1524 regset_from_core_section infrastructure if the target
1525 supports it.
1526 * Makefile.in: Update dependencies.
1527 * linux-thread-db.c (thread_db_store_registers): Use
1528 regcache_raw_collect.
1529
1530 2006-05-05: Paul Gilliam <pgilliam@us.ibm.com>
1531
1532 * ppc-linux-nat.c: Clean up types for ptrace.
1533 Replace (CORE_ADDR) with (uintptr_t) to avoid the size difference
1534 between a CORE_ADDR and a void* on ppc64 systems compiled for 32-bits.
1535
1536 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
1537
1538 * remote.c (remote_disconnect): Add TARGET argument.
1539 * target.c (debug_to_disconnect): Delete.
1540 (update_current_target): Do not inherit to_disconnect.
1541 (target_disconnect): Search for a target to implement to_disconnect.
1542 (setup_target_debug): Do not reference to_disconnect.
1543 * target.h (struct target_ops): Add target argument to
1544 to_disconnect.
1545
1546 2006-05-06 Fred Fish <fnf@specifix.com>
1547
1548 * mips-tdep.c (mips_o64_push_dummy_call): Left shift big endian
1549 structs or unions independent of ABI register size.
1550
1551 2006-05-06 Fred Fish <fnf@specifix.com>
1552
1553 * mips-tdep.c (mips_o64_return_value): Replace stub that always
1554 returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
1555
1556 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
1557
1558 * mi/mi-main.c (captured_mi_execute_command): Check the return
1559 value of -interpreter-exec.
1560
1561 2006-05-03 Vladimir Prus <ghost@cs.msu.su>
1562
1563 * varobj.c (c_value_of_variable): Ignore top-level references.
1564 (Committed by Jim Blandy.)
1565
1566 2006-04-30 Mark Kettenis <kettenis@gnu.org>
1567
1568 * breakpoint.c (insert_single_step_breakpoint): Make a failure to
1569 insert a single-step breakpoint an error instead of a warning.
1570
1571 2006-05-01 Nathan J. Williams <nathanw@wasabisystems.com>
1572
1573 * ppcnbsd-tdep.c (ppcnbsd_return_value): Change type of last two
1574 arguments from void * to gdb_byte *.
1575
1576 2006-04-26 Michael Snyder <msnyder@redhat.com>
1577
1578 * linux-fork.c (_initialize_linux_fork): Rename "delete-fork"
1579 command to "delete fork" (no hyphen), compatible with other
1580 "delete" commands.
1581 (info_forks_command): Accept a fork ID argument, for info
1582 on a single fork. Report if no matching forks.
1583
1584 2006-04-25 Mark Kettenis <kettenis@gnu.org>
1585
1586 * breakpoint.c (remove_single_step_breakpoints): Bail out early if
1587 no breakpoints are inserted.
1588
1589 From Masaki MURANAKA <monaka@monami-software.com>:
1590 * mips-mdebug-tdep.c (mips_mdebug_frame_prev_register): Change
1591 type of last argument to `gdb_byte *'
1592
1593 2006-04-25 Jim Blandy <jimb@codesourcery.com>
1594
1595 Add support for 'target remote |' on MinGW.
1596 * ser-mingw.c (struct pipe_state): New structure.
1597 (make_pipe_state, free_pipe_state, cleanup_pipe_state)
1598 (pipe_windows_open, pipe_windows_close, pipe_windows_read)
1599 (pipe_windows_write, pipe_wait_handle): New functions.
1600 (_initialize_ser_windows): Register a "pipe" interface based on
1601 them.
1602
1603 2006-04-24 Daniel Jacobowitz <dan@codesourcery.com>
1604
1605 * ser-mingw.c: Include <conio.h>.
1606 (struct ser_console_state, struct net_windows_state): Add exit_select,
1607 have_stopped, thread.
1608 (pipe_select_thread, console_select_thread)
1609 (net_windows_select_thread): Don't create a local state copy or
1610 close stop_select. Exit on exit_select instead of stop_select. Set
1611 have_stopped.
1612 (console_select_thread): Don't report control keypresses as pending
1613 input.
1614 (pipe_select_thread): Allow stop_select to interrupt sleeping.
1615 (set_console_wait_handle): Create exit_select and have_stopped.
1616 Save the thread handle. Check _kbhit before starting a thread.
1617 (ser_console_done_wait_handle): New.
1618 (ser_console_close): Close new handles. Wait for the thread to
1619 exit.
1620 (new_windows_select_thread): Assert that an event occurred.
1621 (net_windows_wait_handle): Check for pending input before starting
1622 a thread.
1623 (net_windows_done_wait_handle): New.
1624 (net_windows_open): Create exit_select and have_stopped.
1625 Save the thread handle.
1626 (net_windows_close): Close new handles. Wait for the thread to
1627 exit.
1628 (_intiialize_ser_windows): Register done_wait_handle methods.
1629
1630 * serial.c [USE_WIN32API] (serial_done_wait_handle): New.
1631 * serial.h [USE_WIN32API] (struct serial_ops): Add done_wait_handle.
1632 [USE_WIN32API] (serial_done_wait_handle): New prototype.
1633 * mingw-hdep.c (gdb_select): Use serial_done_wait_handle.
1634
1635 2006-04-23 Andreas Schwab <schwab@suse.de>
1636
1637 * rs6000-tdep.c: Include "reggroups.h" only once.
1638 * Makefile.in (rs6000-tdep.o): Update dependencies.
1639
1640 2006-04-21 Frederic Riss <frederic.riss@st.com>
1641
1642 * dwarf2read.c (dwarf2_start_subfile): Change prototype to accept
1643 compilation directory as last argument.
1644 Always pass comp_dir as second argument to start_subfile and prepend
1645 dirname to the filename when necessary.
1646 Remove now superfluous search for pre-existing subfile.
1647 (dwarf_decode_lines): Pass the compilation directory to
1648 dwarf2_start_subfile.
1649
1650 2006-04-20 Michael Snyder <msnyder@redhat.com>
1651
1652 * 2006-03-22 Jim Blandy <jimb@redhat.com>
1653 Add support for the Renesas M32C and M16C.
1654
1655 * configure.tgt (m32c-*-*): New entry.
1656 * config/m32c/m32c.mt: New file.
1657 * m32c-tdep.c: New file.
1658 * Makefile.in (elf_m32c_h): New variable.
1659 (m32c-tdep.o): New rule.
1660 * NEWS: Mention new target.
1661 * MAINTAINERS: Designate Jim Blandy as responsible maintainer.
1662
1663 2006-04-20 Michael Snyder <msnyder@redhat.com>
1664
1665 * remote.c: Fix spelling error in comment.
1666
1667 2006-04-20 Daniel Jacobowitz <dan@codesourcery.com>
1668
1669 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_prev_register):
1670 Correct type of VALUEP. Reported by Jean-Rene Peulve
1671 <jr.peulve@wanadoo.fr>.
1672
1673 2006-04-19 Masaki Muranaka <monaka@monami-software.com>
1674
1675 * m32r-rom.c: On MinGW, include winsock.h instead of sys/types.h,
1676 netdb.h, netinet/in.h.
1677 (m32r_upload_command); Add calls WSAStartup().
1678 * remote-m32r-sdi.c: On MinGW, include winsock.h instead of
1679 netinet/in.h.
1680
1681 2006-04-18 Daniel Jacobowitz <dan@codesourcery.com>
1682
1683 * breakpoint.c (deprecated_read_memory_nobpt): Update to use
1684 shadow_len.
1685 (insert_bp_location, reattach_breakpoints, remove_breakpoint)
1686 (delete_breakpoint): Update calls to changed methods.
1687 (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
1688 (single_step_breakpoints, insert_single_step_breakpoint)
1689 (remove_single_step_breakpoints): New.
1690 * breakpoint.h (struct bp_target_info): New.
1691 (struct bp_location): Replace shadow_contents with
1692 target_info and overlay_target_info.
1693 (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
1694 (insert_single_step_breakpoint, remove_single_step_breakpoints): New
1695 prototypes.
1696 * gdbarch.sh: Forward declare struct bp_target_info in gdbarch.h.
1697 (memory_insert_breakpoint, memory_remove_breakpoint): Update second
1698 argument.
1699 * mem-break.c (default_memory_insert_breakpoint): Update. Set
1700 placed_address, placed_size, and shadow_len.
1701 (default_memory_remove_breakpoint): Update. Don't use
1702 BREAKPOINT_FROM_PC.
1703 (memory_insert_breakpoint, memory_remove_breakpoint): Update.
1704 * target.c (update_current_target): Update prototypes for changed
1705 functions.
1706 (debug_to_insert_breakpoint, debug_to_remove_breakpoint)
1707 (debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint):
1708 Update.
1709 * target.h: Forward declare struct bp_target_info.
1710 (struct target_ops): Use a bp_target_info argument for
1711 to_insert_breakpoint, to_remove_breakpoint,
1712 to_insert_hw_breakpoint, and to_remove_hw_breakpoint.
1713 (target_insert_breakpoint, target_remove_breakpoint)
1714 (target_insert_hw_breakpoint, target_remove_hw_breakpoint)
1715 (memory_insert_breakpoint, memory_remove_breakpoint)
1716 (default_memory_insert_breakpoint, default_memory_remove_breakpoint):
1717 Update.
1718 * config/i386/nm-i386.h: Forward declare struct bp_target_info.
1719 (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): Update.
1720 (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Likewise.
1721
1722 * gdbarch.c, gdbarch.h: Regenerated.
1723
1724 * alpha-tdep.c (alpha_software_single_step): Use
1725 insert_single_step_breakpoint and remove_single_step_breakpoints.
1726 Remove unused statics.
1727 * arm-tdep.c (arm_software_single_step): Likewise. Add a note.
1728 * cris-tdep.c (cris_software_single_step): Likewise.
1729 * mips-tdep.c (mips_software_single_step): Likewise.
1730 * rs6000-tdep.c (rs6000_software_single_step): Likewise.
1731 * sparc-tdep.c (sparc_software_single_step): Likewise.
1732 * wince.c (struct thread_info_struct): Remove step_prev.
1733 (undoSStep): Use remove_single_step_breakpoints.
1734 (wince_software_single_step): Use insert_single_step_breakpoint.
1735
1736 * corelow.c (ignore): Remove unneeded prototype. Update arguments.
1737 * exec.c (ignore): Likewise.
1738 * sol-thread.c (ignore): Likewise.
1739
1740 * procfs.c (dbx_link_shadow_contents): Delete.
1741 (dbx_link_bpt): New.
1742 (procfs_mourn_inferior): Remove it if necessary.
1743 (remove_dbx_link_breakpoint): Use it.
1744 (insert_dbx_link_bpt_in_file): Set it.
1745 (procfs_init_inferior): Don't update dbx_link_bpt_addr.
1746 * rs6000-nat.c (exec_one_dummy_insn): Use
1747 deprecated_insert_raw_breakpoint and
1748 deprecated_remove_raw_breakpoint.
1749 * solib-irix.c (shadow_contents, breakpoint_addr): Delete.
1750 (base_breakpoint): New.
1751 (disable_break): Use it.
1752 (enable_break): Set it.
1753
1754 * i386-nat.c (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint):
1755 Update.
1756 * ia64-tdep.c (ia64_memory_insert_breakpoint)
1757 (ia64_memory_remove_breakpoint): Likewise.
1758 * m32r-tdep.c (m32r_memory_insert_breakpoint)
1759 (m32r_memory_remove_breakpoint): Likewise.
1760 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
1761 Likewise. Remove unnecessary prototypes. Use placed_address
1762 and placed_size. Removed useless read from memory.
1763 * nto-procfs.c (procfs_insert_breakpoint)
1764 (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
1765 (procfs_remove_hw_breakpoint): Update.
1766 * ocd.c (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1767 * ocd.h (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1768 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
1769 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Likewise.
1770 * remote-e7000.c (e7000_insert_breakpoint)
1771 (e7000_remove_breakpoint): Likewise.
1772 * remote-m32r-sdi.c (m32r_insert_breakpoint)
1773 (m32r_remove_breakpoint): Likewise.
1774 * remote-mips.c (mips_insert_breakpoint)
1775 (mips_remove_breakpoint): Likewise.
1776 * remote-rdp.c (remote_rdp_insert_breakpoint)
1777 (remote_rdp_remove_breakpoint): Likewise.
1778 (rdp_step): Use deprecated_insert_raw_breakpoint and
1779 deprecated_remove_raw_breakpoint.
1780 * remote-sds.c (sds_insert_breakpoint, sds_remove_breakpoint):
1781 Update.
1782 * remote-sim.c (gdbsim_insert_breakpoint, gdbsim_remove_breakpoint):
1783 Delete.
1784 (init_gdbsim_ops): Use memory_insert_breakpoint and
1785 memory_remove_breakpoint.
1786 * remote-st.c (st2000_insert_breakpoint)
1787 (st2000_remove_breakpoint): Update. Remove unused
1788 BREAKPOINT_FROM_PC.
1789 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
1790 Update. Use placed_address and placed_size.
1791 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Likewise.
1792
1793 2006-04-12 Daniel Jacobowitz <dan@codesourcery.com>
1794
1795 * remote.c (extended_remote_restart): Pass the correct length
1796 to getpkt.
1797
1798 2006-04-11 Jim Blandy <jimb@codesourcery.com>
1799
1800 * serial.c (serial_open): Check for special cases at the front of
1801 the "device" name before scanning for the ':' that would indicate
1802 an IP-based connection.
1803
1804 2006-04-10 Christopher Faylor <cgf@timesys.com>
1805
1806 * win32-nat.c (open_symbol_file_object): New function.
1807 (in_dynsym_resolve_code): Ditto.
1808 (init_win32_ops): Fill in fields which ought not to be NULL.
1809
1810 2006-04-10 Christopher Faylor <cgf@timesys.com>
1811
1812 * win32-nat.c (do_win32_fetch_inferior_registers): Don't do anything
1813 with saved context if __COPY_CONTEXT_SIZE is not defined.
1814 (handle_output_debug_string): Ditto.
1815
1816 2006-04-10 Daniel Jacobowitz <dan@codesourcery.com>
1817
1818 * arm-linux-tdep.c (arm_linux_extract_return_value): Use gdb_byte.
1819
1820 2006-04-09 David S. Miller <davem@sunset.davemloft.net>
1821
1822 * sparc64-linux-tdep.c (sparc64_linux_init_abi): Append dwarf2
1823 frame sniffer.
1824 * sparc-tdep.c (sparc32_gdbarch_init): Make sure to call
1825 dwarf2_frame_set_init_reg() before gdbarch_init_osabi() so
1826 that the latter can override.
1827 * Makefile.in (sparc64-linux-tdep.o): Update dependencies.
1828
1829 2006-04-09 Ulrich Weigand <uweigand@de.ibm.com>
1830
1831 * s390-tdep.c (struct s390_prologue_data): New field 'stack'.
1832 (s390_store): Call pv_area_store to track stack slots.
1833 (s390_load): Call pv_area_fetch to track stack slots.
1834 (s390_check_for_saved): New function.
1835 (s390_analyze_prologue): Call pv_area_scan. Allocate and free stack.
1836
1837 2006-04-09 Ulrich Weigand <uweigand@de.ibm.com>
1838
1839 * Makefile.in (s390-tdep.o): Add dependency on $(prologue_value_h).
1840 * s390-tdep.c: Include "prologue-value.h".
1841 (struct prologue_value): Remove.
1842 (pv_set_to_unknown, pv_set_to_constant, pv_set_to_register,
1843 pv_constant_last, pv_add, pv_add_constant, pv_subtract,
1844 pv_logical_and, pv_is_identical, pv_is_register): Remove.
1845 (compute_x_addr): Remove, replace by ...
1846 (s390_addr): ... this new function.
1847 (struct s390_prologue_data): Use pv_t instead of prologue_value.
1848 (s390_store, s390_load): Likewise.
1849 (s390_prologue_frame_unwind_cache): Likewise.
1850 (s390_analyze_prologue): Likewise. Also, simplify and combine
1851 several conditional statements.
1852
1853 2006-04-08 Jim Blandy <jimb@codesourcery.com>
1854
1855 * Makefile.in (COMMON_OBS): List prologue-value.o. (Omitted from
1856 last patch.)
1857
1858 2006-04-08 David S. Miller <davem@sunset.davemloft.net>
1859
1860 * sparc-linux-tdep.c (sparc32_linux_step_trap): New.
1861 (sparc32_linux_init_abi): Hook it into tdep->step_trap.
1862 (sparc32_linux_core_gregset,
1863 sparc32_linux_supply_core_gregset,
1864 sparc32_linux_collect_core_gregset,
1865 sparc32_linux_supply_core_fpregset,
1866 sparc32_linux_collect_core_fpregset): New.
1867 (sparc32_linux_init_abi): Register them with generic sparc
1868 core regset infrastructure.
1869 * sparc64-linux-tdep.c (sparc64_linux_step_trap): New.
1870 (sparc64_linux_init_abi): Hook it into tdep->step_trap.
1871 (sparc64_linux_core_gregset,
1872 sparc64_linux_supply_core_gregset,
1873 sparc64_linux_collect_core_gregset,
1874 sparc64_linux_supply_core_fpregset,
1875 sparc64_linux_collect_core_fpregset): New.
1876 (sparc64_linux_init_abi): Register them with generic sparc
1877 core regset infrastructure.
1878 * Makefile.in: Update dependencies.
1879
1880 2006-04-07 David S. Miller <davem@sunset.davemloft.net>
1881
1882 * linux-nat.c (linux_nat_thread_alive): Handle targets that
1883 do not implement PTRACE_PEEKUSER.
1884
1885 2006-04-07 Daniel Jacobowitz <dan@codesourcery.com>
1886
1887 * remote.c (remote_wait): Convert warning to error before
1888 parsing corrupt packets.
1889
1890 2006-04-07 Andrew Stubbs <andrew.stubbs@st.com>
1891
1892 * cli/cli-script.c (struct user_args): Add command field.
1893 (arg_cleanup): Free command string.
1894 (setup_user_args): Copy the command line before relying on it.
1895
1896 2006-04-06 Joel Brobecker <brobecker@adacore.com>
1897
1898 * breakpoint.c (_initialize_breakpoint): Add "del" as an alias
1899 of the "delete" command.
1900
1901 2006-04-06 Randolph Chung <tausq@debian.org>
1902
1903 * MAINTAINERS (Patch champions): Add myself.
1904
1905 2006-04-05 Andreas Schwab <schwab@suse.de>
1906
1907 * Makefile.in: Update dependencies.
1908
1909 2006-04-05 David S. Miller <davem@sunset.davemloft.net>
1910
1911 * sparc-tdep.c (sparc32_dwarf2_frame_init_reg): New.
1912 (sparc32_gdbarch_init): Pass it to dwarf2_frame_set_init_reg.
1913 * Makefile.in (sparc-tdep.o): Update dependencies.
1914 * sparc-linux-tdep.c (sparc32_linux_sigframe_init): Pull register
1915 window out of the correct stack frame.
1916 * sparc64-linux-tdep.c (sparc64_linux_sigframe_init): Likewise.
1917 * dwarf2-frame.c (dwarf2_frame_ops init_reg): Add "next_frame"
1918 argument.
1919 (dwarf2_frame_default_init_reg): Likewise.
1920 (dwarf2_frame_set_init_reg): Update init_reg arg.
1921 (dwarf2_frame_init_reg): Take "next_frame" and pass it to
1922 ops->init_reg().
1923 (dwarf2_frame_cache): Pass next_frame to dwarf2_frame_init_reg.
1924 * dwarf2-frame.h (dwarf2-frame_set_init_reg): Update declaration.
1925 * cris-tdep.c (cris_dwarf2_frame_init_reg): Add next_frame arg.
1926 * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
1927 * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
1928 * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
1929 * sparc-tdep.c (sparc32_struct_return_from_sym): New function.
1930 (sparc32_frame_cache): Call it.
1931 (sparc32_dwarf2_struct_return_p): New function.
1932 (sparc_dwarf2_frame_init_reg): Use it to determine if the function
1933 returns a structure and thus we have to indicate the return PC and
1934 NPC are 4 bytes later than usual.
1935 * sparc-linux-tdep.c (sparc32_linux_init_abi): Append
1936 dwarf2 frame sniffer.
1937 * Makefile.in (sparc-linux-tdep.o): Update dependencies.
1938
1939 2006-04-04 David S. Miller <davem@davemloft.net>
1940
1941 * config/linux.mh (NATDEPFILES): Remove sparc-sol2-nat.o
1942 * config/linux64.h (NATDEPFILES): Likewise
1943 * sparc-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1944 fill_fpregset): New.
1945 * sparc64-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1946 fill_fpregset): New.
1947 * Makefile.in (sparc-linux-nat.o, sparc64-linux-nat.o): Update for
1948 new includes.
1949
1950 2006-04-04 Andreas Schwab <schwab@suse.de>
1951
1952 * Makefile.in (elf_common_h): Define.
1953
1954 2006-04-03 Andrew Stubbs <andrew.stubbs@st.com>
1955
1956 * sh-tdep.c (sh_dwarf2_frame_init_reg): New function.
1957 (sh_gdbarch_init): Call dwarf2_frame_set_init_reg().
1958
1959 2006-03-31 Andrew Stubbs <andrew.stubbs@st.com>
1960
1961 * value.h (struct internalvar): Add field 'endian'.
1962 * value.c (lookup_internalvar): Initialise endian.
1963 (value_of_internalvar): Flip the endian of built-in types if required.
1964 (set_internalvar): Set the endian.
1965 (show_convenience): Access the value through value_of_internalvar().
1966
1967 2006-03-30 Vladimir Prus <ghost@cs.msu.su>
1968
1969 * remote.c (watchpoint_to_Z_packet): Use values of Z_packet_type enum
1970 instead of hardcoded integer literals.
1971
1972 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1973
1974 * cli/cli-script.c (insert_args): Handle NULL user_args.
1975
1976 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1977
1978 * arm-tdep.c (thumb_scan_prologue): Don't try to analyze
1979 the function at zero if we have no symbols.
1980
1981 2006-03-30 Adrien Kunysz <a_kunysz@yahoo.com>
1982
1983 * i386-stub.c (getpacket): Fix array overflow.
1984 * m32r-stub.c (getpacket): Likewise.
1985 * m68k-stub.c (getpacket): Likewise.
1986 * sh-stub.c (getpacket): Likewise.
1987 * sparc-stub.c (getpacket): Likewise.
1988
1989 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1990
1991 * frame.h (set_current_sal_from_frame): New prototype.
1992 * stack.c (set_current_sal_from_frame): Make global.
1993 * infrun.c (normal_stop): Call set_current_sal_from_frame.
1994
1995 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1996
1997 * linux-thread-db.c: Include "linux-nat.h".
1998 (check_for_thread_db): New function, split out from
1999 thread_db_new_objfile. Remove dead check for active
2000 thread_db on inapplicable targets.
2001 (thread_db_new_objfile): Call check_for_thread_db.
2002 * Makefile.in (linux-thread-db.o): Update.
2003 * linux-nat.c (child_post_attach): Call check_for_thread_db.
2004 (linux_child_post_startup_inferior): Likewise.
2005 (lin_lwp_attach_lwp): Call target_post_attach instead of
2006 child_post_attach.
2007 * linux-nat.h (check_for_thread_db): New prototype.
2008
2009 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2010
2011 * remote.c (struct remote_state): Add BUF and BUF_SIZE.
2012 (init_remote_state): Initialize the new fields.
2013 (get_memory_packet_size): Update BUF and BUF_SIZE if necessary.
2014 (set_thread, remote_thread_alive, remote_unpack_thread_info_response)
2015 (remote_get_threadinfo, parse_threadlist_response)
2016 (remote_get_threadlist, remote_current_thread, remote_threads_info)
2017 (remote_threads_extra_info, extended_remote_restart, get_offsets)
2018 (remote_check_symbols, remote_open_1, remote_detach)
2019 (remove_vcont_probe, remote_vcont_resume, remote_resume)
2020 (remote_wait, remote_async_wait, fetch_register_using_p)
2021 (remote_fetch_registers, store_register_using_P)
2022 (remote_store_registers, check_binary_download, remote_write_bytes)
2023 (remote_read_bytes, remote_insert_breakpoint)
2024 (remote_remove_breakpoint, remote_insert_watchpoint)
2025 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
2026 (remote_remove_hw_breakpoint, compare_sections_command)
2027 (remote_xfer_partial, remote_rcmd, packet_command)
2028 (remote_get_thread_local_address): Use the global incoming buffer
2029 instead of alloca or xmalloc. Limit outgoing packets to
2030 rs->remote_packet_size and incoming packets to rs->buf_size.
2031 Update calls to getpkt and remote_send.
2032 (remote_send): Take arguments by reference.
2033 (putpkt_binary): Eliminate junkbuf. Use skip_frame.
2034 (skip_frame): New function.
2035 (read_frame): Take arguments by reference. Expand the packet
2036 buffer instead of issuing an error.
2037 (getpkt, getpkt_sane): Take arguments by reference.
2038 * remote.h (getpkt): Update prototype and doc.
2039 * tracepoint.c (remote_get_noisy_reply): Take arguments by
2040 reference.
2041 (target_buf): Change from array to pointer.
2042 (target_buf_size): New variable.
2043 (remote_set_transparent_ranges): Update call to getpkt.
2044 (trace_start_command, trace_stop_command, trace_status_command):
2045 Update calls to remote_get_noisy_reply.
2046 (finish_tfind_command): Take arguments by reference.
2047 (trace_find_command, trace_find_pc_command)
2048 (trace_find_tracepoint_command, trace_find_line_command):
2049 (trace_find_range_command, trace_find_outside_command): Update
2050 calls to finish_tfind_command.
2051 (_initialize_tracepoint): Initialize target_buf_size and target_buf.
2052
2053 2005-03-30 Randolph Chung <tausq@debian.org>
2054
2055 * hppa-linux-tdep.c: Include regset.h.
2056 (GR_REGNUM, TR_REGNUM, greg_map): New.
2057 (hppa_linux_supply_regset, hppa_linux_supply_fpregset): New.
2058 (hppa_linux_regset, hppa_linux_fpregset): New.
2059 (hppa_linux_regset_from_core_section): New.
2060 (hppa_linux_init_abi): Set regset_from_core_section.
2061 (_initialize_hppa_linux_tdep): Register osabi handler for
2062 64-bit Linux.
2063 * Makefile.in (hppa-linux-tdep.o): Update dependencies.
2064 * config/pa/linux.mh: Stop using core-regset.o
2065
2066 2006-03-30 Randolph Chung <tausq@debian.org>
2067
2068 * hppa-tdep.c (hppa_find_unwind_entry_in_block): New.
2069 (hppa_frame_cache): Use new function to find unwind entry.
2070 (hppa_frame_this_id): Likewise.
2071 (hppa_frame_unwind_sniffer): Likewise.
2072
2073 2006-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2074
2075 * NEWS: Mention the removal of NLM.
2076
2077 2006-03-29 Steve Ellcey <sje@cup.hp.com>
2078
2079 * Makefile.in (nlm): Remove target.
2080 * configure.tgt (i[34567]86-*-netware*): Do not set build_nlm.
2081 * configure.ac: Remove AC_CONFIG_SUBDIRS of nlm.
2082 * configure: Regenerate.
2083 * doc/gdb.texinfo: Remove gdbserve.nlm documentation.
2084 * nlm: Remove directory.
2085
2086 2006-03-29 Daniel Jacobowitz <dan@codesourcery.com>
2087
2088 * Makefile.in (utils.o): Update.
2089 * top.c (in_user_command): New.
2090 (command_line_input): Use input_from_terminal_p.
2091 (input_from_terminal_p): Don't check caution. Handle
2092 stdin == NULL for Insight.
2093 * top.h (in_user_command, caution): New declarations.
2094 * utils.c: Include "top.h".
2095 (query, defaulted_query): Check caution here. Move the call
2096 to input_from_terminal_p higher.
2097 * cli/cli-script.c (do_restore_user_call_depth): Only decrement
2098 the depth. Update in_user_command if necessary.
2099 (execute_user_command): Don't clobber old_chain. Set
2100 in_user_command. Let do_restore_user_call_depth handle
2101 user_call_depth.
2102 (read_command_lines): Check whether to prompt before calling
2103 Insight hooks.
2104 * tui/tui-hooks.c (tui_query_hook): Remove newly unnecessary
2105 input_from_terminal_p check.
2106
2107 2006-03-29 Ulrich Weigand <uweigand@de.ibm.com>
2108
2109 * s390-nat.c (s390_insert_watchpoint): Add missing argument.
2110 (s390_remove_watchpoint): Likewise.
2111
2112 2006-03-28 Jim Blandy <jimb@codesourcery.com>
2113
2114 * prologue-value.c, prologue-value.h: New files.
2115 * Makefile.in (prologue_value_h): New variable.
2116 (HFILES_NO_SRCDIR): List prologue-value.h.
2117 (SFILES): List prologue-value.c.
2118 (COMMON_OBS): List prologue-value.o.
2119 (prologue-value.o): New rule.
2120
2121 2006-03-27 Michael Snyder <msnyder@redhat.com>
2122
2123 * xstormy16-tdep.c (xstormy16_return_value, xstormy16_push_dummy_call,
2124 xstormy16_pointer_to_address, xstormy16_address_to_pointer,
2125 xstormy16_frame_prev_register): Change void* to gdb_byte*.
2126 (xstormy16_push_dummy_call): Add block-local char* val,
2127 to avoid type conflict with outer scope variable.
2128
2129 2006-03-27 Andrew Stubbs <andrew.stubbs@st.com>
2130
2131 * sh-tdep.c (sh_gdbarch_init): Add missing architectures.
2132
2133 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
2134
2135 * varobj.c (c_name_of_child, c_value_of_child): Allow non-zero
2136 offsets for languages like Fortran.
2137
2138 2006-03-26 Randolph Chung <tausq@debian.org>
2139
2140 * config/pa/hppa64.mt: Use HPUX version of the tm file.
2141
2142 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
2143
2144 * mi/gdb-mi.el (gdbmi-send): Improve regexp to repeat commands.
2145 Try to deal with continuation line.
2146 (gdbmi, gdbmi-prompt1, gud-gdbmi-marker-filter): Update to new
2147 variable names.
2148 (gdb-break-list-regexp, gdb-stack-list-frames-regexp):
2149 Future proof against new fields being added to MI output.
2150 (gdbmi-prompt2, gdb-break-list-handler,gdb-get-source-file)
2151 (gdbmi-frame-handler): Update to new variable name
2152 gdb-get-buffer-create.
2153 (gdbmi-frame-handler): Use hollow-right-triangle for all selected
2154 frames which except the innermost (where execution has stopped).
2155
2156 2006-03-24 Randolph Chung <tausq@debian.org>
2157
2158 * solib-som.c (link_map_start): Don't error out if there is
2159 not yet a link map.
2160
2161 2006-03-24 Daniel Jacobowitz <dan@codesourcery.com>
2162
2163 * linux-nat.c (linux_ops_saved): New.
2164 (super_mourn_inferior, kill_inferior, threaded, linux_nat_ops)
2165 (child_mourn_inferior, child_wait, linux_nat_create_inferior)
2166 (linux_nat_fetch_registers, linux_nat_store_registers)
2167 (linux_nat_child_post_startup_inferior, init_linux_nat_ops): Delete.
2168 (init_lwp_list): Don't set threaded.
2169 (add_lwp): Don't modify threaded.
2170 (delete_lwp): Don't mention non-threaded mode.
2171 (linux_nat_switch_fork): New.
2172 (linux_nat_attach): Update inferior_ptid.
2173 (linux_nat_wait): Handle num_lwps == 0 at entry. Don't check
2174 threaded flag.
2175 (linux_nat_kill): Handle pending forks and saved forks.
2176 (linux_nat_mourn_inferior): Handle saved forks.
2177 (linux_nat_pid_to_str): Don't use the LWP form when there is
2178 only one thread.
2179 (linux_target): Don't set to_wait, to_kill, or to_mourn_inferior.
2180 (linux_nat_add_target): New.
2181 (_initialize_linux_nat): Don't initialize the linux native target
2182 here.
2183 * linux-nat.h (linux_nat_add_target, linux_nat_switch_fork): New
2184 prototypes.
2185 * linux-fork.c: Include "linux-nat.h".
2186 (add_fork): Update initial PID.
2187 (fork_load_infrun_state): Call linux_nat_switch_fork.
2188 * Makefile.in (linux-fork.o): Update.
2189
2190 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
2191 linux_nat_add_target instead of add_target.
2192 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Likewise.
2193 * arm-linux-nat.c (_initialize_arm_linux_nat): Likewise.
2194 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Likewise.
2195 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Likewise.
2196 * i386-linux-nat.c (_initialize_i386_linux_nat): Likewise.
2197 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Likewise.
2198 * m68klinux-nat.c (_initialize_m68k_linux_nat): Likewise.
2199 * mips-linux-nat.c (_initialize_mips_linux_nat): Likewise.
2200 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Likewise.
2201 * s390-nat.c (_initialize_s390_nat): Likewise.
2202 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Likewise.
2203 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Likewise.
2204
2205 2006-03-24 Daniel Jacobowitz <dan@codesourcery.com>
2206
2207 * linux-fork.c: Include "gdb_assert.h".
2208 (fork_load_infrun_state): Set inferior_ptid and stop_pc here.
2209 Update the register cache and selected frame also.
2210 (linux_fork_mourn_inferior): Use fork_load_infrun_state. Return
2211 to single fork mode if necessary.
2212 (linux_fork_context): Remove bits handled by fork_load_infrun_state.
2213 * Makefile.in (linux_fork_h): New.
2214 (linux-fork.o, linux-nat.o): Update.
2215
2216 2006-03-23 Andreas Schwab <schwab@suse.de>
2217
2218 * config/s390/s390.mh (NATDEPFILES): Add linux-fork.o.
2219
2220 2006-03-18 Jim Blandy <jimb@codesourcery.com>
2221
2222 * symtab.h (enum address_class): Doc fix.
2223
2224 2006-03-16 Michael Snyder <msnyder@redhat.com>
2225
2226 * tracepoint.c (tracepoint_save_command): Fix typo in error msg.
2227 * target.c (push_target): Fix typo in comment.
2228 * remote.c (remote_watch_data_address): Fix typo in comment.
2229 * i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
2230
2231 2006-03-15 Kevin Buettner <kevinb@redhat.com>
2232
2233 * frv-linux-tdep.c (gdbcore.h, regcache.h, regset.h, gdb_string.h):
2234 Include.
2235 (FRV_ELF_NGREG, FRV_PT_PSR, FRV_PT_ISR, FRV_PT_CCR, FRV_PT_CCCR)
2236 (FRV_PT_LR, FRV_PT_LCR, FRV_PT_PC, FRV_PT_GNER0, FRV_PT_GNER1)
2237 (FRV_PT_IACC0H, FRV_PT_IACC0L, FRV_PT_GR, FRV_PT_TBR)
2238 (FRV_PT_EXEC_FDPIC_LOADMAP, FRV_PT_INTERP_FDPIC_LOADMAP): Define.
2239 (frv_elf_greg_t, frv_elf_gregset_t, frv_elf_fpreg_t)
2240 (frv_elf_fpregset_t): Define types.
2241 (frv_linux_supply_gregset, frv_linux_supply_fpregset)
2242 (frv_linux_regset_from_core_section: New functions.
2243 (frv_linux_gregset, frv_linux_fpregset): New static globals.
2244 (frv_linux_init_abi): Register the `regset_from_core_section' method.
2245 * Makefile.in (frv-linux-tdep.o): Update dependencies.
2246 * solib-frv.c (frv_current_sos): Relocate main executable after
2247 loading core file.
2248 (frv_clear_solib): Clean up space associated with
2249 `main_executable_lm_info'.
2250 * config/frv/frv.mt (TDEPFILES): Add corelow.o to this list.
2251
2252 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2253
2254 * Makefile.in (mips_linux_tdep_h): New.
2255 (mpis-linux-nat.o, mips-linux-tdep.o): Update.
2256 * mips-linux-nat.c: Include "inferior.h", "mips-linux-tdep.h", and
2257 <sys/ptrace.h>.
2258 (have_ptrace_regsets, super_fetch_registers, super_store_registers)
2259 (mips64_linux_regsets_fetch_registers)
2260 (mips64_linux_regsets_store_registers, mips64_linux_fetch_registers)
2261 (mips64_linux_store_registers): New.
2262 (_initialize_mips_linux_nat): Override to_fetch_registers and
2263 to_store_registers.
2264 * mips-linux-tdep.h: New file.
2265 * mips-linux-tdep.c: Include "mips-linux-tdep.c".
2266 (ELF_NGREG, ELF_NFPREG, elf_greg_t, elf_gregset_t, elf_fpreg_t)
2267 (elf_fpregset_t, FPR_BASE, PC, CAUSE, BADVADDR, MMHI, MMLO)
2268 (FPC_CSR, FPC_EIR, EF_REG0, EF_REG31, EF_LO, EF_HI, EF_CP0_EPC)
2269 (EF_CP0_BADVADDR, EF_CP0_STATUS, EF_CP0_CAUSE, EF_SIZE)
2270 (MIPS64_ELF_NGREG, MIPS64_ELF_NFPREG, mips64_elf_greg_t)
2271 (mips64_elf_gregset_t, mips64_elf_fpreg_t, mips64_elf_fpregset_t)
2272 (MIPS64_FPR_BASE, MIPS64_PC, MIPS64_CAUSE, MIPS64_BADVADDR)
2273 (MIPS64_MMHI, MIPS64_MMLO, MIPS64_FPC_CSR, MIPS64_FPC_EIR)
2274 (MIPS64_EF_REG0, MIPS64_EF_REG31, MIPS64_EF_LO, MIPS64_EF_HI)
2275 (MIPS64_EF_CP0_EPC, MIPS64_EF_CP0_BADVADDR, MIPS64_EF_CP0_STATUS)
2276 (MIPS64_EF_CP0_CAUSE, MIPS64_EF_SIZE): Delete.
2277 (supply_32bit_reg): Use gdb_byte.
2278 (supply_64bit_reg): New.
2279 (mips_supply_gregset, mips_fill_gregset, mips_supply_fpregset)
2280 (mips_fill_fpregset, fetch_core_registers, supply_gregset)
2281 (fill_gregset, supply_fpregset): Update for renamed types.
2282 (mips64_supply_gregset): Use gdb_byte and supply_64bit_reg.
2283 (mips64_fill_gregset): Make global. Handle 32-bit register
2284 sizes.
2285 (mips64_fill_fpregset): Make global. Use gdb_byte. Handle
2286 FP regsets properly.
2287
2288 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2289
2290 * mips-linux-tdep.c (mips_supply_gregset): Renamed from supply_gregset.
2291 (mips_fill_gregset): Renamed from fill_gregset.
2292 (mips_supply_fpregset): Renamed from supply_fpregset.
2293 (mips_fill_fpregset): Renamed from fill_fpregset.
2294 (fetch_core_registers): Update calls.
2295 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): New
2296 functions.
2297
2298 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2299
2300 * mips-tdep.c (mips_gdbarch_init): Default 64-bit ELF files to N64.
2301
2302 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2303
2304 * mips-tdep.c (is_mips16_addr, mips32_next_pc, add_offset_16):
2305 Correct arithmetic for 64-bit CORE_ADDR.
2306
2307 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2308
2309 * mips-linux-tdep.c: Include "floatformat.h".
2310 (mips_linux_init_abi): Use 128-bit long double for N32 and N64.
2311 * mips-tdep.c (mips_n32n64_return_value): Support 128-bit long
2312 double.
2313 (print_gp_register_row): Don't print spaces before ignored
2314 or floating point registers.
2315 * Makefile.in (mips-linux-tdep.o): Update.
2316
2317 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2318
2319 * mips-mdebug-tdep.c (compare_pdr_entries): Use bfd_get_signed_32
2320 for code addresses.
2321 (non_heuristic_proc_desc): Likewise.
2322
2323 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
2324
2325 * mips-linux-nat.c: Include "gdb_proc_service.h".
2326 (PTRACE_GET_THREAD_AREA): Define.
2327 (ps_get_thread_area): New.
2328 * Makefile.in (mips-linux-nat.o): Update.
2329
2330 2006-03-13 Jim Blandy <jimb@codesourcery.com>
2331
2332 * MAINTAINERS: Use my work address.
2333
2334 2006-03-09 Michael Snyder <msnyder@redhat.com>
2335
2336 * linux-nat.c (kill_inferior): Just call target_mourn_inferior
2337 instead of getting tricky for the multi-fork case.
2338 * linux-fork.c (linux_fork_killall): Call PT_KILL and waitpid
2339 for each fork, and then use init_fork_list to delete them.
2340
2341 2006-03-08 Alexandre Oliva <aoliva@redhat.com>
2342
2343 * solib-svr4.c (svr4_current_sos): Move up initialization of
2344 l_addr, such that it clearly covers all cases.
2345
2346 2006-03-08 Andreas Schwab <schwab@suse.de>
2347
2348 * ia64-tdep.c (ia64_libunwind_frame_this_id): Adapt use of
2349 libunwind_frame_prev_register to use a gdb_byte buffer and
2350 extract_unsigned_integer.
2351 (ia64_libunwind_sigtramp_frame_prev_register): Likewise.
2352
2353 * libunwind-frame.c (libunwind_frame_prev_register): Change type
2354 of last argument to `gdb_byte *'
2355 * libunwind-frame.h: Adjust declaration.
2356
2357 2006-03-08 Paul Brook <paul@codesourcery.com>
2358
2359 * arm-tdep.c (arm_push_dummy_call): Remove stack alignment.
2360 (arm_frame_align): New function.
2361 (arm_gdbarch_init): Use it.
2362
2363 2006-03-03 Khem Raj <khem@mvista.com>
2364
2365 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Use gdb_byte.
2366 Committed by Andrew Cagney.
2367
2368 2006-03-02 Corinna Vinschen <vinschen@redhat.com>
2369
2370 * mn10300-tdep.c (mn10300_push_dummy_call): Write breakpoint
2371 address to MDR register.
2372
2373 2006-03-01 Daniel Jacobowitz <dan@codesourcery.com>
2374
2375 * gdbtypes.c (lookup_struct_elt_type): Correct noerr for recursive
2376 calls.
2377
2378 2006-03-01 Randolph Chung <tausq@debian.org>
2379
2380 * somread.c (som_symfile_read): Update comment and remove unneeded
2381 use of a deprecated variable.
2382
2383 2006-03-01 Randolph Chung <tausq@debian.org>
2384
2385 * hppa-tdep.h (unwind_table_entry): Update field names to match HP
2386 runtime specification.
2387 * hppa-tdep.c (internalize_unwinds, hppa_frame_cache): Likewise.
2388 (unwind_command): Likewise.
2389
2390 2006-03-01 Randolph Chung <tausq@debian.org>
2391
2392 * hppa-tdep.c (hppa_frame_cache): Handle Region_Description and
2393 Pseudo_SP_Set in unwind record.
2394
2395 2006-03-01 Randolph Chung <tausq@debian.org>
2396
2397 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Use
2398 TDEP->is_elf to determine if we are working with a SOM binary.
2399 (null_symtab_and_line): Remove unused variable.
2400 * config/pa/hppa64.mt: Use tm-hppa.h.
2401 * config/pa/tm-hppa64.h: Remove file.
2402
2403 2006-03-01 Wu Zhou <woodzltc@cn.ibm.com>
2404
2405 * f-typeprint.c (f_type_print_base): Delete the redundant space.
2406
2407 2006-02-28 Kevin Buettner <kevinb@redhat.com>
2408
2409 * Makefile.in (mn10300-linux-tdep.o): Update dependencies.
2410 * mn10300-linux-tdep.c (frame.h, trad-frame.h, tramp-frame.h):
2411 Include.
2412 (am33_linux_sigframe_cache_init): New function.
2413 (am33_linux_sigframe, am33_linux_rt_sigframe): New signal frame
2414 descriptions.
2415 (AM33_SIGCONTEXT_D0, AM33_SIGCONTEXT_D1, AM33_SIGCONTEXT_D2)
2416 (AM33_SIGCONTEXT_D3, AM33_SIGCONTEXT_A0, AM33_SIGCONTEXT_A1)
2417 (AM33_SIGCONTEXT_A2, AM33_SIGCONTEXT_A3, AM33_SIGCONTEXT_E0)
2418 (AM33_SIGCONTEXT_E1, AM33_SIGCONTEXT_E2, AM33_SIGCONTEXT_E3)
2419 (AM33_SIGCONTEXT_E4, AM33_SIGCONTEXT_E5, AM33_SIGCONTEXT_E6)
2420 (AM33_SIGCONTEXT_E7, AM33_SIGCONTEXT_LAR, AM33_SIGCONTEXT_LIR)
2421 (AM33_SIGCONTEXT_MDR, AM33_SIGCONTEXT_MCVF, AM33_SIGCONTEXT_MCRL)
2422 (AM33_SIGCONTEXT_MCRH, AM33_SIGCONTEXT_MDRQ, AM33_SIGCONTEXT_SP)
2423 (AM33_SIGCONTEXT_EPSW, AM33_SIGCONTEXT_PC, AM33_SIGCONTEXT_FPUCONTEXT):
2424 New constants.
2425 (am33_linux_init_osabi): Register signal frame unwinders.
2426
2427 2006-02-28 Kevin Buettner <kevinb@redhat.com>
2428
2429 * mn10300-tdep.c (mn10300_analyze_prologue): Implement backtrack
2430 out of pattern match by saving relevant state. Fix stack size
2431 adjustment bug.
2432
2433 2006-02-28 Alexandre Oliva <aoliva@redhat.com>
2434
2435 * solib-svr4.h (struct link_map_offsets): Add l_ld_offset and
2436 l_ld_size fields.
2437 * solib-svr4.c (struct lm_info): Add l_addr field.
2438 (LM_ADDR_FROM_LINK_MAP): Renamed from LM_ADDR.
2439 (HAS_LM_DYNAMIC_FROM_LINK_MAP): New.
2440 (LM_DYNAMIC_FROM_LINK_MAP): New.
2441 (LM_ADDR_CHECK): New. Use it instead of LM_ADDR.
2442 (svr4_current_sos): Initialize l_addr. Adjust.
2443 (svr4_relocate_section_addresses): Adjust.
2444 (svr4_ilp32_fetch_link_map_offsets): Define new members.
2445 (svr4_lp64_fetch_link_map_offsets): Likewise.
2446 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Likewise.
2447 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Likewise.
2448 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
2449 * Makefile.in (solib-svr4.o): Depend on $(elf_bfd_h).
2450
2451 2006-02-26 David S. Miller <davem@sunset.davemloft.net>
2452
2453 * config/sparc/linux.mt (TDEPFILES): Add sol2-tdep.o.
2454 * config/sparc/linux64.mt (TDEPFILES): Likewise.
2455
2456 2006-02-27 Alan Modra <amodra@bigpond.net.au>
2457
2458 * ppc-linux-nat.c (ppc_linux_insert_watchpoint): Correct return type.
2459 (ppc_linux_remove_watchpoint): Likewise, and args.
2460
2461 2006-02-26 Mark Kettenis <kettenis@gnu.org>
2462
2463 * i386obsd-tdep.c (i386obsd_trapframe_sniffer): Also recognize
2464 "soft" interrupts.
2465
2466 2006-02-24 Charles Wilson <cygwin@cwilson.fastmail.fm>
2467
2468 * gdb/defs.h: unconditionally include <fcntl.h>, and
2469 ensure that O_BINARY is defined.
2470 * gdb/solib.c(solib_open): ensure solib files are opened in
2471 binary mode.
2472 * gdb/corelow.c: Remove O_BINARY macro definition.
2473 * gdb/exec.c: Remove O_BINARY macro definition
2474 * gdb/remote-rdp.c: Remove O_BINARY macro definition
2475 * gdb/source.c: Remove O_BINARY macro definition
2476 * gdb/symfile.c: Remove O_BINARY macro definition
2477
2478 2006-02-24 Randolph Chung <tausq@debian.org>
2479
2480 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Initialize
2481 argreg.
2482 * solib-som.c (som_solib_remove_inferior_hook): Remove unused
2483 function.
2484
2485 2006-02-24 Wu Zhou <woodzltc@cn.ibm.com>
2486
2487 * f-exp.y: Symbol '%' is not used as the modulus operator in
2488 Fortran. Delete this from Fortran expression.
2489 It is now used by Fortran 90 and later to access the member
2490 of derived type. Add this into Fortran expression.
2491 * f-valprint.c (f_val_print): Add code to handle TYPE_CODE_STRUCT.
2492 Print each elements in the derived type.
2493 * f-typeprint.c (print_equivalent_f77_float_type): Add a parameter
2494 level into the function definition to do indented printing. And
2495 call fprintfi_filtered instead to do indented printing.
2496 (f_type_print_base): Replace fprintf_filtered with the indented
2497 version (fprintfi_filtered).
2498 (f_type_print_base): Call indented print_equivalent_f77_float_type.
2499 (f_type_print_base): Add code to handle TYPE_CODE_STRUCT. Print
2500 the definition of the derived type.
2501
2502 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
2503
2504 * gdb_curses.h: Provide a fallback prototype for tgetnum.
2505
2506 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
2507
2508 * doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE
2509 also.
2510 (DOUBLEST_FORMAT): Rename to DOUBLEST_PRINT_FORMAT.
2511 (DOUBLEST_SCAN_FORMAT): New.
2512 * ada-lex.l (PRINTF_HAS_LONG_DOUBLE): Remove redefinitions.
2513 (processReal): Use DOUBLEST_SCAN_FORMAT.
2514 * c-exp.y (parse_number): Likewise.
2515 * jv-exp.y (parse_number): Likewise.
2516 * objc-exp.y (parse_number): Likewise.
2517 * p-exp.y (parse_number): Likewise.
2518
2519 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
2520
2521 * event-top.c (async_do_nothing, async_disconnect)
2522 (async_stop_sig, async_float_handler): Remove duplicated
2523 prototypes.
2524 (handle_sighup): Guard prototype with SIGHUP.
2525 (async_do_nothing): Guard function and prototype with
2526 SIGQUIT || SIGHUP.
2527 (async_disconnect): Guard prototype with SIGHUP.
2528 (async_stop_sig): Guard prototype with STOP_SIGNAL.
2529
2530 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
2531
2532 * maint.c (maintenance_dump_me): Remove unnecessary prototype.
2533
2534 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
2535
2536 * win32-termcap.c (tputs): Return 0.
2537
2538 2006-02-21 Mark Kettenis <kettenis@gnu.org>
2539
2540 * configure.ac: Introduce ---enable-werror, which adds -Werror to
2541 the compiler command line. Enabled by default. Disable with
2542 --disable-werror.
2543 * configure regenerate.
2544
2545 2006-02-21 Daniel Jacobowitz <dan@codesourcery.com>
2546
2547 * elfread.c (elf_symtab_read): Skip symbols which BFD considers
2548 special.
2549
2550 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
2551
2552 * defs.h (directory_switch): Add prototype.
2553 * main.c (captured_main): Use directory_switch() instead of
2554 directory_command() to add directories from the -d switch.
2555 * source.c (directory_switch): New function.
2556 (add_path): Use buildargv() to parse spaces in filenames properly.
2557 Strip multiple trailing '/' rather than just one.
2558
2559 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
2560
2561 * symfile.c (add_symbol_file_command): Use buildargv(), instead of
2562 hand decoding the command line, to allow use of quotes and spaces.
2563 (_initialize_symfile): Reorganize the help message for add-symbol-file
2564 such that 'help files' shows a better message.
2565
2566 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
2567
2568 * sh-tdep.c (sh_generic_show_regs): Reformat both code and output.
2569 (sh3_show_regs, sh2e_show_regs, sh2a_show_regs): Likewise.
2570 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs): Likewise.
2571 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs): Likewise.
2572
2573 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
2574
2575 * linux-nat.c (lin_thread_get_thread_signals): Default to __SIGRTMIN
2576 and __SIGRTMIN + 1.
2577
2578 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
2579
2580 * remote.c: Add an enumeration for configurable remote
2581 packets.
2582 (remote_protocol_packets, set_remote_protocol_packet_cmd)
2583 (show_remote_protocol_packet_cmd): New.
2584 (remote_protocol_vcont)
2585 (set_remote_protocol_vcont_packet_cmd)
2586 (show_remote_protocol_vcont_packet_cmd)
2587 (remote_protocol_qSymbol)
2588 (set_remote_protocol_qSymbol_packet_cmd)
2589 (show_remote_protocol_qSymbol_packet_cmd)
2590 (remote_protocol_P, set_remote_protocol_P_packet_cmd)
2591 (show_remote_protocol_P_packet_cmd)
2592 (remote_protocol_Z)
2593 (set_remote_protocol_Z_software_bp_packet_cmd)
2594 (show_remote_protocol_Z_software_bp_packet_cmd)
2595 (set_remote_protocol_Z_hardware_bp_packet_cmd)
2596 (show_remote_protocol_Z_hardware_bp_packet_cmd)
2597 (set_remote_protocol_Z_write_wp_packet_cmd)
2598 (show_remote_protocol_Z_write_wp_packet_cmd)
2599 (set_remote_protocol_Z_read_wp_packet_cmd)
2600 (show_remote_protocol_Z_read_wp_packet_cmd)
2601 (set_remote_protocol_Z_access_wp_packet_cmd)
2602 (show_remote_protocol_Z_access_wp_packet_cmd)
2603 (remote_protocol_binary_download)
2604 (set_remote_protocol_binary_download_cmd)
2605 (show_remote_protocol_binary_download_cmd)
2606 (remote_protocol_qPart_auxv)
2607 (set_remote_protocol_qPart_auxv_packet_cmd)
2608 (show_remote_protocol_qPart_auxv_packet_cmd)
2609 (remote_protocol_qGetTLSAddr)
2610 (set_remote_protocol_qGetTLSAddr_packet_cmd)
2611 (show_remote_protocol_qGetTLSAddr_packet_cmd)
2612 (remote_protocol_p)
2613 (set_remote_protocol_p_packet_cmd)
2614 (show_remote_protocol_p_packet_cmd): Delete.
2615
2616 (init_all_packet_configs): Simplify.
2617 (set_remote_protocol_Z_packet_cmd)
2618 (show_remote_protocol_Z_packet_cmd)
2619 (remote_check_symbols, remote_vcont_probe, remote_vcont_resume)
2620 (remote_fetch_registers, remote_prepare_to_store)
2621 (remote_store_registers, check_binary_download)
2622 (remote_write_bytes, remote_insert_breakpoint)
2623 (remote_remove_breakpoint, remote_insert_watchpoint)
2624 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
2625 (remote_remove_hw_breakpoint, remote_xfer_partial)
2626 (remote_get_thread_local_address): Update for packet array.
2627 (_initialize_remote): Likewise; also update for common
2628 set/show commands.
2629
2630 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
2631
2632 * symfile.c (place_section): Correct retry logic.
2633
2634 2006-02-19 Christopher Faylor <cgf@timesys.com>
2635
2636 * win32_nat.c (cygwin_load_start): New variable.
2637 (cygwin_load_end): Ditto.
2638 (have_saved_context): Ditto.
2639 (saved_context): Ditto.
2640 (max_dll_name_len): Delete obsolete variable.
2641 (do_win32_fetch_inferior_registers): Use context saved from cygwin1.dll
2642 if we are in a cygwin signal rather than a windows signal.
2643 (solib_symbols_add): Detect and store beginning and end of cygwin DLL
2644 if dll being loaded is the cygwin DLL.
2645 (register_loaded_dll): Remove calculation of max_dll_name_len.
2646 (win32_clear_solib): Ditto.
2647 (handle_load_dll): Delete obsolete variable. Remove unneeded call to
2648 solib_add.
2649 (handle_output_debug_string): Detect and store signal information sent
2650 by Cygwin here.
2651 (handle_exception): Silently pass on errors in the cygwin DLL. Return
2652 -1 on first pass exception.
2653 (win32_continue): Remove spurious clearing of continue_status.
2654 (get_win32_debug_event): Deal differently first chance exception.
2655
2656 2006-02-19 Randolph Chung <tausq@debian.org>
2657
2658 * hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
2659 unwind entry.
2660
2661 2006-02-16 Fred Fish <fnf@specifix.com>
2662
2663 * eval.c (evaluate_subexp_standard): For OP_TYPE, return
2664 a non lval value zero, of the appropriate type, when avoiding
2665 side effects.
2666 * typeprint.c (ptype_eval): Remove function and declaration.
2667 (ptype_command): Simplify to just a call to whatis_exp.
2668
2669 2006-02-15 Paul Brook <paul@codesourcery.com>
2670
2671 * arm-tdep.c (arm_skip_prologue, thumb_get_next_pc, arm_get_next_pc):
2672 Load insn opcodes as unsigned values.
2673
2674 2006-02-14 Alexandre Oliva <aoliva@redhat.com>
2675
2676 * doublest.h (DOUBLEST): Use long double only if we can scan
2677 it in. Undefine HAVE_LONG_DOUBLE otherwise.
2678 (DOUBLEST_FORMAT): New.
2679 * c-exp.y (parse_number): Use it.
2680 * jv-exp.y (parse_number): Likewise.
2681 * objc-exp.y (parse_number): Likewise.
2682 * p-exp.y (parse_number): Likewise.
2683 * varobj.c (free_variable): Silence type-punning warnings.
2684 * tui/tui-data.h (struct tui_list): Change type of list member.
2685 * tui/tui-data.c: Remove no-longer-needed type casts.
2686 (source_windows): Silence type-punning warnings.
2687 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Likewise.
2688
2689 2006-02-13 Mark Kettenis <kettenis@gnu.org>
2690
2691 Fix PR breakpoints/2080.
2692 * i386-tdep.c (struct i386_frame_cache): Add stack_align member.
2693 (i386_analyze_stack_align): New function.
2694 (i386_analyze_prologue): Use i386_analyze_stack_align.
2695 (i386_frame_cache): Deal with stack realignment.
2696
2697 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
2698
2699 * mi/gdb-mi.el: Use more functions from gdb-ui.el.
2700 (gdb-break-list-regexp): Match "what" field if present.
2701 (gdb-stack-list-frames-regexp): Match "from" field if present.
2702 (gdb-stack-list-frames-handler): Present output like "info
2703 breakpoints" so regexps can be shared with gdb-ui
2704
2705 2006-02-10 Daniel Jacobowitz <dan@codesourcery.com>
2706
2707 * NEWS: Mention native Windows support.
2708 * Makefile.in (gdb_select_h, ser_tcp_h): New.
2709 (ALLDEPFILES): Add ser-mingw.c.
2710 (event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
2711 (ser-tcp.o, ser-unix.o): Update.
2712 (ser-mingw.o): New rule.
2713 * configure: Regenerated.
2714 * configure.ac: Add ser-mingw.o for mingw32.
2715 * ser-mingw.c: New file.
2716 * event-loop.c: Include "gdb_select.h".
2717 (gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
2718 * ser-base.c: Include "gdb_select.h".
2719 (ser_base_wait_for): Use gdb_select.
2720 * serial.c (serial_for_fd): New function.
2721 (serial_fdopen): Try "terminal" before "hardwire". Initialize
2722 the allocated struct serial.
2723 (serial_wait_handle): New function.
2724 * serial.h (serial_for_fd, serial_wait_handle): New prototypes.
2725 (struct serial_ops) [USE_WIN32API]: Add wait_handle.
2726 * gdb_select.h: New file.
2727 * ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
2728 (net_close, net_read_prim, net_write_prim): Make global.
2729 (net_open): Likewise. Pass an exception set to select. Whitespace fix.
2730 Document why we can not use gdb_select.
2731 (_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
2732 * ser-tcp.h: New file.
2733 * inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
2734 (handle_sigio): Use gdb_select.
2735 (initialize_stdin_serial): New function.
2736 * terminal.h (initialize_stdin_serial): New prototype.
2737 * top.c (gdb_init): Call initialize_stdin_serial.
2738 * mingw-hdep.c (gdb_select): New function, moved from gdb_select in
2739 event-loop.c. Add exception condition support. Use serial_for_fd
2740 and serial_wait_handle. Fix timeout handling.
2741 * posix-hdep.c: Include "gdb_select.h".
2742 (gdb_select): New function.
2743 * remote-st.c (connect_command): Use gdb_select.
2744 * ser-unix.c: Include "gdb_select.h".
2745 (hardwire_send_break, wait_for): Use gdb_select.
2746
2747 2006-02-10 Daniel Jacobowitz <dan@codesourcery.com>
2748
2749 * Makefile.in (mingw-hdep.o, posix-hdep.o): New dependencies.
2750 (ALLDEPFILES): Add mingw-hdep.c and posix-hdep.c.
2751 * configure.ac: Add gdb_host_obs to CONFIG_OBS. Set gdb_host_obs
2752 to posix-hdep.o by default.
2753 * configure: Regenerated.
2754 * configure.host: Document gdb_host_obs. Add an entry for
2755 i[34567]86-*-mingw32*.
2756 * mingw-hdep.c, posix-hdep.c: New files.
2757 * utils.c (safe_strerror): Remove, moved to posix-hdep.o.
2758
2759 2006-02-10 Joel Brobecker <brobecker@adacore.com>
2760
2761 * defs.h (gdb_osabi): New enum value GDB_OSABI_AIX.
2762 * osabi.c (gdb_osabi_name): Add name of new value GDB_OSABI_AIX.
2763 * rs6000-tdep.h: New file.
2764 * rs6000-tdep.c: Include "rs6000-tdep.h".
2765 (rs6000_gdbarch_init): Remove enabling of software single step.
2766 Will be done in the AIX-specific initialization routine.
2767 * rs6000-aix-tdep.c: New file.
2768 * config/powerpc/aix.mt (TDEPFILES): Add rs6000-aix-tdep.o.
2769 * Makefile.in (rs6000_tdep_h): New variable.
2770 (rs6000-tdep.o): Update dependencies.
2771 (rs6000-aix-tdep.o): New rule.
2772
2773 2006-02-10 Joel Brobecker <brobecker@adacore.com>
2774
2775 * aix-thread.c (_initialize_aix_thread): Use add_setshow_boolean_cmd
2776 instead of add_setshow_zinteger_cmd to defined the aix-thread
2777 boolean setting.
2778
2779 2006-02-10 Nick Roberts <nickrob@snap.net.nz>
2780
2781 * mi/gdb-mi.el: Update to reflect changes in Emacs 22.0.50.
2782
2783 2006-02-09 Daniel Jacobowitz <dan@codesourcery.com>
2784
2785 * dwarf2read.c (struct dwarf2_per_cu_data): Reduce length to
2786 30 bits. Add load_all_dies flag.
2787 (load_partial_dies): Load all DIEs if per_cu->load_all_dies is set.
2788 Load DW_TAG_member by default. Remove internal_error call.
2789 (find_partial_die): Reload the compilation unit if we can not find
2790 a DIE in the cache. Call internal_error here if we still can not
2791 find the DIE.
2792
2793 2006-02-10 Nick Roberts <nickrob@snap.net.nz>
2794
2795 * breakpoint.c (print_one_breakpoint): Add break to case
2796 bp_catch_vfork in switch statement.
2797
2798 2006-02-08 Wu Zhou <woodzltc@cn.ibm.com>
2799
2800 * config/i386/nm-i386sol2.h: Update copyright year.
2801 * config/mips/nm-irix5.h: Ditto.
2802 * config/sparc/nm-sol2.h: Ditto.
2803 * s390-nat.c: Ditto.
2804 * ppc-linux-nat.c: Ditto.
2805
2806 2006-02-08 Wu Zhou <woodzltc@cn.ibm.com>
2807
2808 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Delete.
2809 * config/i386/nm-i386sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2810 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2811 * config/mips/nm-irix5.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2812 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2813 * config/sparc/nm-sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2814 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2815 * inf-ttrace.c (inf_ttrace_region_ok_for_hw_watchpoint): New.
2816 (inf_ttrace_region_size_ok_for_hw_watchpoint): Delete.
2817 (inf_ttrace_target): Delete to_region_size_ok_for_hw_watchpoint and
2818 add to_region_ok_for_hw_watchpoint.
2819 * s390-nat.c (s390_region_size_ok_for_hw_watchpoint): Delete.
2820 (s390_region_ok_for_hw_watchpoint): New.
2821 (_initialize_s390_nat): Delete to_region_size_ok_for_hw_watchpoint
2822 and add to_region_ok_for_hw_watchpoint.
2823 * target.c (default_region_size_ok_for_hw_watchpoint,
2824 debug_to_region_size_ok_for_hw_watchpoint): Delete prototype.
2825 (update_current_target): Delete to_region_size_ok_for_hw_watchpoint
2826 inheritance and default_region_size_ok_for_hw_watchpoint.
2827 (default_region_ok_for_hw_watchpoint): If len is less than or equal
2828 the length of void pointer, return ok.
2829 (default_region_size_ok_for_hw_watchpoint): Delete.
2830 (debug_to_region_size_ok_for_hw_watchpoint): Delete.
2831 (setup_target_debug): Delete to_region_size_ok_for_hw_watchpoint.
2832 * target.h (struct target_ops): Delete
2833 to_region_size_ok_for_hw_watchpoint.
2834 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2835
2836 2006-02-08 Ben Elliston <bje@au1.ibm.com>
2837 Wu Zhou <woodzltc@cn.ibm.com>
2838
2839 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG,
2840 PTRACE_GETSIGINFO): Define.
2841 (last_stopped_data_address): New.
2842 (ppc_linux_check_watch_resources): New function.
2843 (ppc_linux_region_ok_for_hw_watchpoint): New function.
2844 (ppc_linux_insert_watchpoint): New function.
2845 (ppc_linux_remove_watchpoint): New function.
2846 (ppc_linux_stopped_data_address): New function.
2847 (ppc_linux_stopped_by_watchpoint): New function.
2848 (_initialize_ppc_linux_nat): Set the above hardware watchpoint
2849 related target vectors.
2850 * rs6000-tdep.c (rs6000_gdbarch_init): Set PPC architectures
2851 to have nonsteppable watchpoint.
2852 * target.c (default_region_ok_for_hw_watchpoint,
2853 debug_to_region_ok_for_hw_watchpoint): New prototypes.
2854 (update_current_target): Inherit to_region_ok_for_hw_watchpoint
2855 and set default to_region_ok_for_hw_watchpoint.
2856 (default_region_ok_for_hw_watchpoint): New function.
2857 (debug_to_region_ok_for_hw_watchpoint): New function.
2858 (setup_target_debug): Set to_region_ok_for_hw_watchpoint of
2859 debug_target.
2860 * target.h (struct target_ops): Add a new target vector
2861 to_region_ok_for_hw_watchpoint.
2862 (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Define this if it is not
2863 defined anyplace else.
2864
2865 2005-02-07 Joel Brobecker <brobecker@adacore.com>
2866 * symfile.c (add_symbol_file_command): Abort if the user forgot
2867 to provide the address when the file has been loaded.
2868
2869 2006-02-07 Daniel Jacobowitz <dan@codesourcery.com>
2870
2871 * MAINTAINERS: Update file based on maintainers survey. Add
2872 a note to Past Maintainers. Move unresponsive or inactive
2873 maintainers to Authorized Committers or Past Maintainers as
2874 appropriate. Correct Jim Kingdon's email address. Remove
2875 vacant areas of responsibility.
2876
2877 2006-02-06 Vladimir Prus <ghost@cs.msu.su>
2878
2879 * breakpoint.c (print_one_breakpoint): For MI-like UI, output
2880 fullname field.
2881
2882 2006-02-03 Daniel Jacobowitz <dan@codesourcery.com>
2883
2884 * exceptions.h (enum errors): Rename NO_ERROR to GDB_NO_ERROR.
2885 * exceptions.c (exception_none, exceptions_state_mc_init)
2886 (throw_vfatal): Use GDB_NO_ERROR.
2887
2888 2006-02-02 Mark Kettenis <kettenis@gnu.org>
2889
2890 * solib-svr4.h (struct link_map_offsets): Remove r_debug_size and
2891 r_map_size members. Add r_version_offset, r_version_size and
2892 r_ldsomap_offset members.
2893 * solib-svr4.c (solib_svr4_r_map): Renamed from
2894 fetch_link_map_member. Simplify using read_memory_typed_address.
2895 (solib_svr4_r_ldsomap): New function.
2896 (open_symbol_file_object): Use solib_svr_r_map.
2897 (svr4_current_sos): Use solib_svr4_r_map and look for the dynamic
2898 linker by using solib_svr4_r_ldsomap.
2899 (svr4_ilp32_fetch_link_map_offsets)
2900 (svr4_lp64_fetch_link_map_offsets): Adjust for changes to `struct
2901 link_map_offsets'.
2902 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Adjust for
2903 changes to `struct link_map_offsets'.
2904 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets)
2905 (mipsnbsd_lp64_fetch_link_map_offsets): Adjust for changes to
2906 `struct link_map_offsets'.
2907
2908 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2909
2910 * linux-nat.c (struct saved_ptids, threads_to_delete)
2911 (record_dead_thread, prune_lwps, find_thread_from_lwp)
2912 (exit_lwp): New.
2913 (linux_nat_resume): Call prune_lwps.
2914 (wait_lwp, linux_nat_wait): Call exit_lwp.
2915
2916 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2917
2918 * printcmd.c (printf_command): Make format string checking
2919 stricter. Add separate cases for long_arg, ptr_arg, and
2920 long_double_arg.
2921 * utils.c (xstrvprintf): Improve the error message issued
2922 for a bad format string.
2923 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT, INTERNAL_CFLAGS_BASE):
2924 New variables.
2925 (gnu-v3-abi.o, monitor.o, procfs.o, linux-thread-db.o): Remove
2926 $(NO_WERROR_CFLAGS).
2927 (printcmd.o): Likewise. Use $(GDB_WARN_CFLAGS_NO_FORMAT) and
2928 enable -Werror.
2929
2930 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2931
2932 * Makefile.in (remote.o): Update.
2933 * remote.c (show_packet_config_cmd): Shorten messages.
2934 (remote_set_cmdlist, remote_show_cmdlist): Make file-static.
2935 (show_remote_cmd): Iterate.
2936 (_initialize_remote): Remove remote_set_cmdlist,
2937 remote_show_cmdlist.
2938
2939 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2940
2941 * Makefile.in (gdbtypes_h, gdbtypes.o, utils.o): Update.
2942 * defs.h (hashtab_obstack_allocate, dummy_obstack_deallocate): Add
2943 prototypes.
2944 * dwarf2read.c (read_subroutine_type): Use TYPE_ZALLOC.
2945 (hashtab_obstack_allocate, dummy_obstack_deallocate): Moved to...
2946 * utils.c (hashtab_obstack_allocate, dummy_obstack_deallocate):
2947 ...here.
2948 * gdbtypes.c: Include "hashtab.h".
2949 (build_gdbtypes): Remove extra prototype.
2950 (struct type_pair, type_pair_hash, type_pair_eq)
2951 (create_copied_types_hash, copy_type_recursive): New.
2952 * gdbtypes.h: Include "hashtab.h".
2953 (TYPE_ZALLOC): New.
2954 (create_copied_types_hash, copy_type_recursive): New prototypes.
2955 * objfiles.c (free_objfile): Call preserve_values.
2956 * symfile.c (reread_symbols): Likewise.
2957 (clear_symtab_users): Remove calls to clear_value_history and
2958 clear_internalvars.
2959 * value.c (clear_value_history, clear_internalvars): Removed.
2960 (preserve_one_value, preserve_values): New functions.
2961 * value.h (clear_value_history, clear_internalvars): Removed.
2962 (preserve_values): New prototype.
2963
2964 * tracepoint.c (_initialize_tracepoint): Do not initialize convenience
2965 variables here.
2966
2967 2006-01-29 Mark Kettenis <kettenis@gnu.org>
2968
2969 * amd64-tdep.c (amd64_classify): Handle TYPE_CODE_BOOL.
2970 Fixes PR tdep/2075.
2971
2972 2006-01-27 Joel Brobecker <brobecker@adacore.com>
2973
2974 * MAINTAINERS: Use a consistent email address for brobecker.
2975
2976 2006-01-27 Joel Brobecker <brobecker@adacore.com>
2977
2978 * infcmd.c (post_create_inferior): Fix copy/paste error introduced
2979 in the previous change.
2980
2981 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
2982
2983 PR gdb/1914
2984 * fork-child.c (fork_inferior): Don't call
2985 solib_create_inferior_hook.
2986 * infcmd.c (post_create_inferior): Call solib_add,
2987 solib_create_inferior_hook, and re_enable_breakpoints_in_shlibs.
2988 (attach_command): Don't call solib_add or
2989 re_enable_breakpoints_in_shlibs. Call post_create_inferior
2990 instead.
2991 * remote.c (remote_open_1): Don't call solib_create_inferior_hook
2992 or observer_notify_inferior_created. Call post_create_inferior
2993 instead.
2994 * corelow.c: Don't include "observer.h".
2995 (solib_add_stub): Deleted.
2996 (core_open): Don't call observer_notify_inferior_created or
2997 solib_add_stub. Call post_create_inferior instead.
2998 * inf-ptrace.c: Don't include "observer.h".
2999 (inf_ptrace_attach): Don't call observer_notify_inferior_created.
3000 * inf-ttrace.c: Don't include "observer.h".
3001 (inf_ttrace_attach): Don't call observer_notify_inferior_created.
3002 * inferior.h (solib_create_inferior_hook): Remove redundant
3003 prototype.
3004 * inftarg.c: Don't include "observer.h".
3005 (child_attach): Don't call observer_notify_inferior_created.
3006 * Makefile.in: Update dependencies.
3007
3008 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
3009
3010 * infcmd.c: Include "observer.h".
3011 (post_create_inferior): New function.
3012 (run_command_1): Call it. Also call proceed.
3013 * inferior.h (post_create_inferior): New prototype.
3014 * Makefile.in (infcmd.o): Update.
3015
3016 * gnu-nat.c (gnu_create_inferior): Don't call proceed.
3017 * go32-nat.c (go32_create_inferior): Likewise.
3018 * nto-procfs.c (procfs_create_inferior): Likewise.
3019 * procfs.c (procfs_create_inferior): Likewise.
3020 * remote-sim.c (gdbsim_create_inferior): Likewise.
3021 * remote.c (extended_remote_create_inferior)
3022 (extended_remote_async_create_inferior): Likewise.
3023 * win32-nat.c (win32_create_inferior): Likewise.
3024 * wince.c (child_create_inferior): Likewise.
3025
3026 * monitor.c (monitor_create_inferior): Don't call proceed.
3027 Set the PC manually.
3028 * ocd.c (ocd_create_inferior): Likewise.
3029 * remote-e7000.c (e7000_create_inferior): Likewise.
3030 * remote-m32r-sdi.c (m32r_create_inferior): Likewise.
3031 * remote-mips.c (mips_create_inferior): Likewise.
3032 * remote-rdp.c (remote_rdp_create_inferior): Likewise.
3033 * remote-sds.c (sds_create_inferior): Likewise.
3034 * remote-st.c (st2000_create_inferior): Likewise.
3035
3036 * inf-ptrace.c (inf_ptrace_create_inferior): Don't call
3037 proceed or observer_notify_inferior_created.
3038 * inf-ttrace.c (inf_ttrace_create_inferior): Likewise.
3039 * inftarg.c (child_create_inferior): Likewise.
3040
3041 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
3042
3043 * linux-thread-db.c (thread_db_mourn_inferior): Remove breakpoints
3044 after mourning the inferior.
3045
3046 2006-01-24 Jim Blandy <jimb@redhat.com>
3047
3048 * valarith.c (binop_user_defined_p): Handle refs to typedefs.
3049
3050 2006-01-24 Fred Fish <fnf@specifix.com>
3051
3052 * parse.c (source.h): Include.
3053 (parse_exp_in_context): Use static source context if no
3054 other context found.
3055
3056 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
3057
3058 * sh-tdep.c: Include reggroups.h.
3059 (sh_register_reggroup_p): New function.
3060 (sh_gdbarch_init): Add call to set_gdbarch_register_reggroup_p.
3061 * Makefile.in (sh-tdep.o): Add dependency on reggroups.h.
3062
3063 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
3064
3065 * cli/cli-cmds.c: Include fcntl.h.
3066 (source_command): Use the GDB search path to find script files.
3067
3068 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
3069
3070 PR tdep/2029
3071 Suggested by Till Straumann <strauman@slac.stanford.edu>:
3072 * rs6000-tdep.c (skip_prologue): Update check for later mtlr
3073 instructions. Handle PIC bcl.
3074
3075 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
3076
3077 * config/djgpp/README: Typo fix.
3078 * config/djgpp/fnchange.lst: Update.
3079
3080 2006-01-22 Mark Kettenis <kettenis@gnu.org>
3081
3082 * sparc-tdep.h (struct gdbarch_tdep): Add step_trap member.
3083 (sparc_address_from_register): New prototype.
3084 (sparcnbsd_step_trap): New prototype.
3085 * sparc-tdep.c (sparc_address_from_register): Make globally
3086 visible.
3087 (sparc_analyze_control_transfer): Change prototype to accept
3088 `struct gdbarch *' as first argument. Allow for optional hnadling
3089 for trap instructions.
3090 (sparc_step_trap): New function.
3091 (sparc_software_single_step): Adjust call to
3092 sparc_analyze_control_trabsfer.
3093 (sparc32_gdbarch_init): Initialize TDEP->step_trap.
3094 * sparcnbsd-tdep.c (sparcnbsd_step_trap): New function.
3095 (sparc32nbsd_init_abi): Set TDEP->step_trap.
3096 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Set TDEP->step_trap.
3097 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Set TDEP->step_trap.
3098
3099 * sparc-tdep.c (sparc32_return_value): Convert to use
3100 RETURN_VALUE_ABI_PRESERVES_ADDRESS instead of
3101 RETURN_VALUE_STRUCT_CONVENTION.
3102 (sparc32_extract_struct_value_address): Remove.
3103
3104 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
3105
3106 * avr-tdep.c (avr_address_to_pointer, avr_pointer_to_address)
3107 (avr_extract_return_value, avr_frame_prev_register): Use gdb_byte.
3108
3109 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
3110
3111 * solib.c (info_sharedlibrary_command): Avoid internal_error.
3112
3113 2006-01-21 Mark Kettenis <kettenis@gnu.org>
3114
3115 * i386-tdep.c (i386_mxcsr_type): New variable.
3116 (i386_init_types): Initialize i386_mxcsr_type.
3117 (i386_register_type): Return i386_mxcsr_type for %mxcsr.
3118 * i386-tdep.c (i386_mxcsr_type): New extern.
3119 * amd64-tdep.c (amd64_register_info): Return i386_mxcsr_type for
3120 %mxcsr.
3121
3122 2006-01-20 Mark Mitchell <mark@codesourcery.com>
3123
3124 * Makefile.in (remote-rdi.o): Remove.
3125 (rdi-share/libangsd.a): Likewise.
3126 * README: Don't mention remote-rdi.c.
3127 * NEWS: Mention removal of rdi-share.
3128 * configure.ac: Don't configure rdi-share subdirectory.
3129 * remote-rdi.c: Remove.
3130 * config/arm/embed.mt (TDEPFILES): Remove remote-rdi.o.
3131 (TDEPLIBS): Remove rdi-share/libangsd.a.
3132 * rdi-share/Makefile.am: Remove.
3133 * rdi-share/Makefile.in: Likewise.
3134 * rdi-share/README.CYGNUS: Likewise.
3135 * rdi-share/aclocal.m4: Likewise.
3136 * rdi-share/adp.h: Likewise.
3137 * rdi-share/adperr.h: Likewise.
3138 * rdi-share/angel.h: Likewise.
3139 * rdi-share/angel_bytesex.c: Likewise.
3140 * rdi-share/angel_bytesex.h: Likewise.
3141 * rdi-share/angel_endian.h: Likewise.
3142 * rdi-share/ardi.c: Likewise.
3143 * rdi-share/ardi.h: Likewise.
3144 * rdi-share/armdbg.h: Likewise.
3145 * rdi-share/buffers.h: Likewise.
3146 * rdi-share/chandefs.h: Likewise.
3147 * rdi-share/channels.h: Likewise.
3148 * rdi-share/chanpriv.h: Likewise.
3149 * rdi-share/configure: Likewise.
3150 * rdi-share/configure.in: Likewise.
3151 * rdi-share/crc.c: Likewise.
3152 * rdi-share/crc.h: Likewise.
3153 * rdi-share/dbg_conf.h: Likewise.
3154 * rdi-share/dbg_cp.h: Likewise.
3155 * rdi-share/dbg_hif.h: Likewise.
3156 * rdi-share/dbg_rdi.h: Likewise.
3157 * rdi-share/devclnt.h: Likewise.
3158 * rdi-share/devices.h: Likewise.
3159 * rdi-share/devsw.c: Likewise.
3160 * rdi-share/devsw.h: Likewise.
3161 * rdi-share/drivers.c: Likewise.
3162 * rdi-share/drivers.h: Likewise.
3163 * rdi-share/etherdrv.c: Likewise.
3164 * rdi-share/ethernet.h: Likewise.
3165 * rdi-share/host.h: Likewise.
3166 * rdi-share/hostchan.c: Likewise.
3167 * rdi-share/hostchan.h: Likewise.
3168 * rdi-share/hsys.c: Likewise.
3169 * rdi-share/hsys.h: Likewise.
3170 * rdi-share/logging.c: Likewise.
3171 * rdi-share/logging.h: Likewise.
3172 * rdi-share/msgbuild.c: Likewise.
3173 * rdi-share/msgbuild.h: Likewise.
3174 * rdi-share/params.c: Likewise.
3175 * rdi-share/params.h: Likewise.
3176 * rdi-share/rx.c: Likewise.
3177 * rdi-share/rxtx.h: Likewise.
3178 * rdi-share/serdrv.c: Likewise.
3179 * rdi-share/serpardr.c: Likewise.
3180 * rdi-share/sys.h: Likewise.
3181 * rdi-share/tx.c: Likewise.
3182 * rdi-share/unixcomm.c: Likewise.
3183 * rdi-share/unixcomm.h: Likewise.
3184
3185 2006-01-21 Mark Kettenis <kettenis@gnu.org>
3186
3187 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register):
3188 Change type of last argument to `gdb_byte *'.
3189
3190 2006-01-20 Mark Kettenis <kettenis@gnu.org>
3191
3192 * hppa-tdep.h (hppa_in_solib_call_trampoline)
3193 (hppa_skip_trampoline_code): New prototypes.
3194 * hppa-tdep.c (struct insn_pattern): New.
3195 (hppa_long_branch_stub, hppa_long_branch_pic_stub)
3196 (hppa_import_stub, hppa_import_pic_stub, hppa_plt_stub): Moved
3197 here from hppa-linux-tdep.c
3198 (HPPA_MAX_INSN_PATTERN_LEN): New define.
3199 (hppa_match_insns, hppa_match_insns_relaxed, hppa_in_dyncall)
3200 (hppa_in_solib_call_trampoline, hppa_skip_trampoline_code): New
3201 functions based on functions removed from hppa-linux-tdep.c.
3202 * hppa-linux-tdep.c (hppa_long_branch_stub)
3203 (hppa_long_branch_pic_stub, hppa_import_stub)
3204 (hppa_import_pic_stub, hppa_plt_stub): Moved to hppa-tdep.c.
3205 (insns_match_pattern_relaxed, hppa_linux_in_dyncall)
3206 (hppa_linux_in_solib_call_trampoline)
3207 (hppa_linux_skip_trampoline_code): Removed.
3208 (hppa_linux_init_abi): Set TDEP->in_solib_call_tranpoline to
3209 hppa_in_solib_call_trampoline and skip_trampoline_code to
3210 hppa_skip_trampoline_code.
3211 * hppabsd-tdep.c (hppabsd_init_abi): Set
3212 TDEP->in_solib_call_trampoline and skip_trampoline_code.
3213
3214 2006-01-20 Jim Blandy <jimb@redhat.com>
3215
3216 * MAINTAINERS: Change my E-mail address.
3217
3218 * configure.ac: Add -Wno-pointer-sign to list of build warnings.
3219 * configure: Regenerated.
3220
3221 2006-01-20 Daniel Jacobowitz <dan@codesourcery.com>
3222
3223 * MAINTAINERS: Overhaul.
3224
3225 2006-01-18 Mark Kettenis <kettenis@gnu.org>
3226
3227 Based on a previous patch form Michal Ludvig:
3228 * amd64-tdep.c (amd64_sse_type): Remove.
3229 (amd64_register_info): Use i386_eflags_type and i386_sse_type
3230 where appropriate.
3231 (AMD64_NUM_REGS): Use ARRAY_SIZE.
3232 (amd64_register_type): Remove code to build amd_sse_type.
3233 * i386-tdep.c (i386_eflag_type): New variable.
3234 (i386_mmx_type, i386_sse_type): Make global.
3235 (i386_init_types): New function.
3236 (i386_build_mmx_type, i386_build_sse_type): Remove functions.
3237 (i386_register_type): Return i386_eflag_type, i386_sse_type and
3238 i386_mmx_type when appropriate.
3239 (_initialize_i386_tdep): Call i386_init_types.
3240 * i386-tdep.h (i386_eflags_type, i386_mmx_type, i386_sse_type):
3241 Declare extern.
3242
3243 Based on a previous patch form Michal Ludvig:
3244 * gdbtypes.c (append_flags_type_flag, init_flags_type): New
3245 functions.
3246 (is_integral_type, rank_one_type, recursive_dump_type): Add
3247 support for TYPE_CODE_FLAGS.
3248 * gdbtypes.h (enum type_code): Add TYPE_CODE_FLAGS.
3249 (append_flags_type_field, init_flags_type): New prototypes.
3250 * ada-valprint.c (ada_val_print_1): Add support for
3251 TYPE_CODE_FLAGS.
3252 * c-valprint.c (c_val_print): Likewise.
3253 * f-valprint.c (f_val_print): Likewise.
3254 * p-valprint.c (pascal_val_print): Likewise.
3255 * valprint.c (val_print_type_code_flags): New function.
3256 * valprint.h (val_print_type_code_flags): New prototype.
3257 * value.c (unpack_long, value_from_longest): Add support for
3258 TYPE_CODE_FLAGS.
3259
3260 2006-01-17 Christopher Faylor <cgf@timesys.com>
3261
3262 * MAINTAINERS: Very belatedly remove myself from from the list of
3263 people caught up in the paper trail.
3264
3265 2006-01-17 Jim Blandy <jimb@redhat.com>
3266
3267 * symtab.h (struct general_symbol_info): Use gdb_byte for
3268 value.bytes.
3269 * stabsread.c (define_symbol): Use gdb_byte for the buffer holding
3270 a floating-point constant's value.
3271 * dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
3272 to char *.
3273 * findvar.c (read_var_value): Eliminate needless temporary.
3274
3275 * dwarf2-frame.c (dwarf2_read_section): Update forward declaration
3276 to match prior change to dwarf2_read_section's type.
3277
3278 2006-01-16 Paul Gilliam <pgilliam@us.ibm.com>
3279
3280 * ppc-tdep.h (PPC_MAX_EPILOGUE_INSTRUCTIONS): New define.
3281 * rs6000-tdep.c (insn_changes_sp_or_jumps)
3282 (rs6000_in_function_epilogue_p): New functions.
3283 (rs6000_gdbarch_init): Set in_function_epilogue_p.
3284
3285 2006-01-17 Jim Blandy <jimb@redhat.com>
3286
3287 * dwarf2read.c (struct dwarf2_per_objfile, struct comp_unit_head)
3288 (struct line_header, struct partial_die_info, struct dwarf_block):
3289 Use gdb_byte for members that refer to Dwarf section contents.
3290 (dwarf2_read_abbrevs, dwarf2_read_section, dwarf_decode_lines,
3291 dwarf_decode_macros, load_comp_unit, load_partial_dies,
3292 locate_pdi_sibling, partial_read_comp_unit_head, peek_die_abbrev,
3293 read_1_byte, read_1_signed_byte, read_2_bytes, read_4_bytes,
3294 read_8_bytes, read_address, read_attribute, read_attribute_value,
3295 read_comp_unit, read_comp_unit_head, read_die_and_children,
3296 read_die_and_siblings, read_full_die, read_indirect_string,
3297 read_initial_length, read_n_bytes, read_offset, read_partial_die,
3298 read_signed_leb128, read_string, read_unsigned_leb128,
3299 skip_children, skip_leb128, skip_one_die): Same.
3300
3301 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
3302
3303 * complaints.c (stop_whining): Make signed.
3304 * linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
3305
3306 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
3307
3308 * dwarf2read.c, remote-fileio.c, remote.h: Update copyright
3309 notices.
3310
3311 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
3312
3313 * dwarf2read.c (peek_die_abbrev, read_address, read_initial_length)
3314 (read_offset): Change BYTES_READ argument to unsigned int.
3315 (dwarf2_build_psymtabs_easy, read_comp_unit_head)
3316 (create_all_comp_units, dwarf2_get_pc_bounds)
3317 (dwarf_decode_line_header, var_decode_location)
3318 (dwarf_decode_macros): Change local BYTES_READ variables to
3319 unsigned int.
3320 (read_indirect_string): Remove obsolete cast.
3321
3322 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
3323
3324 * remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
3325 argument.
3326 (remote_fileio_func_open, remote_fileio_func_rename)
3327 (remote_fileio_func_unlink, remote_fileio_func_stat)
3328 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
3329 (remote_fileio_func_system): Cast the arguments to
3330 remote_read_bytes and remote_write_bytes.
3331 (remote_fileio_func_read, remote_fileio_func_write): Use a
3332 gdb_byte buffer.
3333 * remote.h (remote_read_bytes, remote_write_bytes): Update
3334 prototypes.
3335 * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument.
3336 (threadref_to_int): Replace bogus char * cast.
3337 (remote_unpack_thread_info_response): Use int for tag.
3338 (remote_threads_extra_info, remote_check_symbols): Cast string
3339 arguments to hex2bin.
3340 (remote_wait): Use a char buffer for packets and a gdb_byte
3341 buffer for registers.
3342 (remote_async_wait): Likewise.
3343 (remote_prepare_to_store, store_register_using_P)
3344 (remote_store_registers): Use gdb_byte buffers.
3345 (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer
3346 for MYADDR and char buffers for strings.
3347 (remote_xfer_partial): Add casts for string operations on READBUF.
3348 (remote_rcmd): Cast strings passed to bin2hex.
3349
3350 2006-01-16 Mark Mitchell <mark@codesourcery.com>
3351
3352 * aclocal.m4: Regenerate.
3353
3354 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>
3355
3356 * mt-tdep.c (enum mt_gdb_regnums): Add MT_COPRO_PSEUDOREG_ARRAY,
3357 MT_COPRO_PSEUDOREG_DIM_1, MT_COPRO_PSEUDOREG_DIM_2,
3358 MT_COPRO_PSEUDOREG_REGS members. Adjust MT_NUM_PSEUDO_REGS.
3359 (mt_register_name): Lazily synthesize name for coprocessor pseudo
3360 array registers.
3361 (mt_copro_register_type): New. Broken out of ...
3362 (mt_register_type): ... here. Use it. Deal with coprocessor
3363 pseudo array.
3364 (mt_select_coprocessor): New.
3365 (mt_pseudo_register_read, mt_pseudo_register_write): Deal with
3366 coprocessor pseudo array.
3367
3368 2006-01-16 Andrew Stubbs <andrew.stubbs@st.com>
3369
3370 * breakpoint.c (insert_breakpoints): Check that a thread exists
3371 before inserting thread specific breakpoints.
3372
3373 2006-01-15 Mark Kettenis <kettenis@gnu.org>
3374
3375 * osabi.c (generic_elf_osabi_sniffer): Fix typo in previous
3376 commit.
3377
3378 * alpha-tdep.c (alpha_gdbarch_init): Set cannot_step_breakpoint.
3379 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Remove.
3380 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Remove.
3381 * config/alpha/nm-nbsd.h: Remove file.
3382 * config/alpha/nm-fbsd.h: Remove file
3383 * config/alpha/nbsd.mh (NAT_FILE): Remove.
3384 * config/alpha/fbsd.mh (NAT_FILE): Remove.
3385
3386 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
3387
3388 * macroexp.c (expand): Initialize argc.
3389 * stabsread.c (read_type): Handle errors from read_args.
3390 (read_args): Return NULL for errors.
3391
3392 2006-01-15 Mark Kettenis <kettenis@gnu.org>
3393
3394 * osabi.c (generic_elf_osabi_sniffer): Use memcmp instead of
3395 strcmp to compare string to a byte buffer.
3396
3397 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
3398
3399 * printcmd.c (output_command): Always initialize fmt.size.
3400 (printf_command): Use gdb_byte.
3401 * symfile.c (separate_debug_file_exists): Use gdb_byte.
3402 (load_section_callback, read_target_long_array): Likewise.
3403 (simple_read_overlay_table, simple_read_overlay_region_table)
3404 (simple_overlay_update_1): Correct calls to read_target_long_array.
3405 * valprint.c (partial_memory_read): Change MYADDR to a gdb_byte *.
3406 Also change local pointers.
3407 (val_print_string): Use gdb_byte.
3408
3409 2006-01-15 Mark Kettenis <kettenis@gnu.org>
3410
3411 * alphafbsd-tdep.c: Include "solib-svr4.h".
3412 (alphafbsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
3413 svr4_lp64_fetch_link_map_offsets.
3414 * Makefile.in (alphafbsd-tdep.o): Update dependencies.
3415 * config/alpha/fbsd.mt (TDEPFILES): Add corelow.o, solib.o and
3416 solib-svr4.o.
3417 * config/alpha/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
3418 and solib-legacy.o.
3419 * config/alpha/nm-fbsd.h: Don't include "solib.h".
3420
3421 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
3422
3423 * source.c (_initialize_source): Use add_setshow_integer_cmd.
3424
3425 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
3426
3427 * linux-fork.c (delete_fork_command, detach_fork_command): Use
3428 PIDGET.
3429
3430 2006-01-15 Mark Kettenis <kettenis@gnu.org>
3431
3432 * arm-linux-tdep.c (arm_linux_svr4_fetch_link_map_offsets):
3433 Remove.
3434 (arm_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3435 svr4_ilp32_fetch_link_map_offsets.
3436 * cris-tdep.c (cris_linux_svr4_fetch_link_map_offsets): Remove
3437 function.
3438 (cris_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
3439 svr4_ilp32_fetch_link_map_offsets.
3440 * mips-linux-tdep.c (mips_linux_svr4_fetch_link_map_offsets)
3441 (mips64_linux_svr4_fetch_link_map_offsets): Remove functions.
3442 (mips_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3443 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
3444 where appropriate.
3445 * nbsd-tdep.c (nbsd_ilp32_solib_svr4_fetch_link_map_offsets):
3446 Simply call svr4_ilp32_fetch_link_map_offsets.
3447 (nbsd_lp64_solib_svr4_fetch_link_map_offsets): Simply call
3448 svr4_lp64_fetch_link_map_offsets.
3449 * ppc-linux-tdep.c (ppc_linux_svr4_fetch_link_map_offsets): Remove
3450 function.
3451 (ppc_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
3452 svr4_ilp32_fetch_link_map_offsets.
3453 * s390-tdep.c (s390_svr4_fetch_link_map_offsets)
3454 (s390x_svr4_fetch_link_map_offsets): Remove functions.
3455 (s390_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
3456 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
3457 where appropriate.
3458
3459 2006-01-15 Mark Kettenis <kettenis@gnu.org>
3460
3461 * arm-tdep.c (arm_return_value): Change type of readbuf and
3462 writebuf arguments to `gdb_byte *'.
3463
3464 * s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
3465 * Makefile.in (s390-tdep.o): Update dependencies.
3466
3467 2006-01-14 Mark Kettenis <kettenis@gnu.org>
3468
3469 * sol2-tdep.h. sol2-tdep.c: New files.
3470 * amd64-sol2-tdep.c: Include "sol2-tdep.h".
3471 (amd64_sol2_init_abi): Set skip_solib_resolver.
3472 * i386-sol2-tdep.c: Include "sol2-tdep.h".
3473 (i386_sol2_init_abi): Set skip_solib_resolver.
3474 * sparc-sol2-tdep.c: Include "sol2-tdep.h".
3475 (sparc32_sol2_init_abi): Set skip_solib_resolver.
3476 * sparc64-sol2-tdep.c: Include "sol2-tdep.h".
3477 (sparc64_sol2_init_abi): Set skip_solib_resolver.
3478 * Makefile.in (sol2_tdep_h): New variable.
3479 (ALLDEPFILES): Add sol2-tdep.c.
3480 (sol2-tdep.o): New target.
3481 (amd64-sol2-tdep.o, i386-sol2-tdep.o, sparc-sol2-tdep.o)
3482 (sparc64-sol2-tdep.o): Update dependencies
3483 * config/i386/i386sol2.mt (TDEPFILES): Add sol2-tdep.o.
3484 * config/i386/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
3485 * config/sparc/sol2.mt (TDEPFILES): Add sol2-tdep.o.
3486 * config/sparc/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
3487
3488 * hppa-linux-tdep.c: Fix copyright indentation.
3489
3490 * hppa-tdep.h (enum hppa_regnum): Add HPPA_FP31R_REGNUM.
3491 * hppabsd-nat.c (hppabsd_fpregset_supplies_p)
3492 (hppabsd_supply_fpregset, hppabsd_collect_fpregset): New
3493 functions.
3494 (hppabsd_fetch_registers, hppabsd_store_registers): Handle
3495 floating-point registers.
3496
3497 2006-01-13 Mark Mitchell <mark@codesourcery.com>
3498
3499 * event-loop.c (gdb_select): Detect file descriptors that have
3500 been closed.
3501
3502 2006-01-13 Mark Kettenis <kettenis@gnu.org>
3503
3504 * hppabsd-tdep.c (hppabsd_init_abi): Set long_double_bit to 64,
3505 and long_double_format accordingly.
3506
3507 2006-01-12 Paul N. Hilfinger <hilfinger@adacore.com>
3508
3509 * ada-exp.y (yyerror): Change message to ignore the argument, avoiding
3510 translation problems.
3511 * ada-lang.c (ada_value_struct_elt): Change interface and handling
3512 of errors to avoid translation problem (and less than optimal error
3513 messages).
3514 (ada_value_tag, ada_tag_name_1, ada_tag_name_2, ada_evaluate_subexp):
3515 Use new interface to ada_value_struct_elt.
3516 * ada_lang.h (ada_value_struct_elt): Update declaration to new
3517 interface.
3518
3519 * ChangeLog: remove reference to ada-tasks.c from entry of
3520 2006-01-07.
3521
3522 2006-01-11 Mark Kettenis <kettenis@gnu.org>
3523
3524 * remote.c (get_memory_packet_size, set_thread)
3525 (remote_unpack_thread_info_response, remote_get_threadinfo)
3526 (parse_threadlist_response, remote_get_threadlist)
3527 (remote_current_thread, remote_threads_info)
3528 (remote_threads_extra_info, extended_remote_restart, get_offsets)
3529 (remote_check_symbols, remote_open_1, remote_detach)
3530 (remote_async_wait, remote_fetch_registers)
3531 (remote_store_registers, check_binary_download, putpkt_binary)
3532 (remote_insert_breakpoint, remote_insert_watchpoint)
3533 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
3534 (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd)
3535 (packet_command): Remove redundant parenthesis.
3536
3537 2006-01-10 Mark Kettenis <kettenis@gnu.org>
3538
3539 * corefile.c (read_memory_integer, read_memory_unsigned_integer)
3540 (read_memory_typed_address, write_memory)
3541 (write_memory_unsigned_integer, write_memory_signed_integer): Use
3542 gdb_byte where appropriate.
3543
3544 * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
3545 'gdb_byte *'.
3546
3547 * target.h (target_read_memory_partial, target_write_memory_partial):
3548 Change second argument to 'gdb_byte *'.
3549 * target.c (target_xfer_memory_partial): Change third argument to
3550 'gdb_byte *'.
3551 (target_read_memory_partial, target_write_memory_partial): Change
3552 second argument to 'gdb_byte *'.
3553
3554 * linespec.c (decode_objc): Make i1 and i2 unsigned.
3555 (find_method): Set values.sals to NULL.
3556
3557 2006-01-09 Mark Kettenis <kettenis@gnu.org>
3558
3559 * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
3560 of 'char *' in cast.
3561
3562 2006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
3563
3564 * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
3565 * ada-lang.c: I18n markup.
3566 Editorial: change "can not" => "cannot" throughout.
3567
3568 2006-01-07 Mark Kettenis <kettenis@gnu.org>
3569
3570 * Makefile.in: Sort dependencies.
3571
3572 2006-01-07 Eli Zaretskii <eliz@gnu.org>
3573
3574 * top.c (control_level): Remove unused variable.
3575
3576 2006-01-06 Fred Fish <fnf@specifix.com>
3577
3578 * objfiles.c (source.h): Include.
3579 (free_objfile): Update comment about clear_symtab_users().
3580 (free_objfile): Check all symtabs of objfile being freed and if
3581 one of them is the current source symtab, call
3582 clear_current_source_symtab_and_line().
3583
3584 2006-01-04 Michael Snyder <msnyder@redhat.com>
3585
3586 Checkpoint/Restart for Linux.
3587 * linux-nat.c: Add support for debugging multiple forks.
3588 Add #include for linux-fork.h (interface spec).
3589 (super_mourn_inferior): New function pointer.
3590 (child_mourn_inferior): New function / target method.
3591 (linux_target): Claim to_mourn_inferior method pointer.
3592 (child_follow_fork): Call interface to linux-fork, conditionally
3593 add new fork processes to list of debugged processes.
3594 (kill_inferior): Use interface to linux-fork to kill
3595 multiple processes.
3596
3597 * linux-fork.h: New file.
3598 * linux-fork.c: New file. Support for debugging multiple forks
3599 of the same program. Support for checkpoint and restart commands.
3600
3601 * infrun.c (nullify_last_target_wait_ptid): New function.
3602
3603 * Makefile.in: Add linux-fork.
3604 * config/*/linux.mh: Add linux-fork.
3605 * NEWS: Mention new functionality.
3606
3607 2006-01-02 Paul Hilfinger <hilfingr@nile.gnat.com>
3608
3609 * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc):
3610 Change uses of "illegal" to "invalid".
3611
3612 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
3613
3614 * ada-exp.y: Considerable reorganization to move functionality
3615 from ada-lex.l to here, where it is logically more appropriate.
3616 The original reason, however, was to prevent premature name
3617 lookups for selector names in record aggregates.
3618 (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
3619 NAME for all of these.
3620 (VAR): New artificial token to clarify precedence rules.
3621 (OTHERS): New lexeme.
3622 (empty_stoken): New symbol.
3623 (%union): Remove ssym, voidval.
3624 (%type): Remove <voidval> type declarations.
3625 (syntax definitions): Add aggregates.
3626 Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
3627 Rename some non-terminals to be closer to reference manual usage.
3628 Tighten up expression syntax to disallow certain non-Ada
3629 constructions such as X and then Y or else Z.
3630 (ada_parse): Remove initialization of left_block_context.
3631 (write_var_from_name): Remove.
3632 (write_var_or_type): New function, containing previous code from
3633 defunct write_var_from_name and name_lookup.
3634 (block_lookup): New function, moved from ada-lex.l
3635 (select_possible_type_sym): New function, factored out of
3636 name_lookup, which used to be in ada-lex.l.
3637 (find_primitive_type): Ditto.
3638 (chop_selector): Ditto.
3639 (write_ambiguous_var): New function, factored out of defunct
3640 write_var_from_name.
3641 (write_selectors): New function.
3642 (write_name_assoc): New function.
3643 (write_exp_op_with_string): New function.
3644
3645 * ada-lex.l (processId): Change interface to return stoken.
3646 (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
3647 (block_lookup, name_lookup): Remove. Functionality moved to
3648 ada-exp.y.
3649 (state IN_STRING): Remove.
3650 (rules): Handle string escapes in processString.
3651 Add 'others' token.
3652 Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
3653 yylval.sval (as simple strings).
3654 All name look-ups now handled in ada-exp.y.
3655 Introduce "::" (COLONCOLON) token and return as separate token.
3656 (processId): Change return convention. Comment.
3657 Leave leading "'" in place.
3658 (processString): New function.
3659 (find_dot_all): Add note to comment.
3660 Fix problem that allowed match only at the end.
3661
3662 * ada-lang.c: Introduce aggregates.
3663 (find_struct_field): Add new parameter to count fields skipped, and
3664 allow other output parameters to be NULL.
3665 (value_tag_from_contents_and_address, ada_value_struct_elt): Use
3666 new find_struct_field.
3667 (ada_index_struct_field, assign_aggregate, ada_is_array_type)
3668 (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
3669 (num_component_specs, assign_component, assign_aggregate):
3670 (aggregate_assign_from_choices,aggregate_assign_positional)
3671 (aggregate_assign_others,add_component_interval):
3672 New functions.
3673 (ada_evaluate_subexp): Declare.
3674 Add aggregate-related operators.
3675 (ada_forward_operator_length): Declare.
3676 (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
3677 Consolidate Ada operators, using ada_forward_operator_length.
3678 (ada_search_struct_field): Search in forward order.
3679 (ADA_OPERATORS): Add new aggregate operators.
3680 (ada_operator_length, ada_op_name, ada_forward_operator_length)
3681 (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate
3682 operators and OP_NAME.
3683 (ada_type_of_array): Use longest_to_int.
3684 (value_assign_to_component): New function.
3685 (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
3686 Add OP_NAME case.
3687 (ada_forward_operator_length, ada_dump_subexp_body):
3688 Add OP_STRING case.
3689
3690 * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
3691 OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
3692
3693 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
3694
3695 * ada-lang.c (process_raise_exception_name): Remove extraneous
3696 definition from unsubmitted code.
3697
3698 (is_lower_alphanum): New function.
3699 (ada_decode): Add support for decoding protected object subprograms
3700 and entries, and of entities declared inside protected object
3701 subprograms.
3702 Also add missing handling for__{DIGITS}+ suffixes.
3703 Allow '$<digits>' as valid overloading suffix.
3704 (is_name_suffix): Add handling for protected type entriy suffixes.
3705 Also add support for protected type subprogram suffixes, but keep
3706 it commented out for now, as there is an ambiguity between these
3707 entities and other internally generated entities.
3708 Allow '$<digits>' as valid overloading suffix.
3709 (is_valid_name_for_wild_match): New function.
3710 (wild_match): Add an exra level of verification of the entity name
3711 before declaring it a match for the given pattern.
3712
3713 (ada_type_of_array, ada_evaluate_subexp): Use more proper
3714 longest_to_int rather than cast.
3715
3716 (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
3717
3718 (ada_coerce_to_simple_array): Call check_size to make sure
3719 that the object size is reasonable.
3720
3721 (ada_value_primitive_packed_val): Use correct location in target
3722 buffer for extracting packed record fields that are themselves records.
3723
3724 (add_defn_to_vec): Do not try to replace a stub type by its full
3725 type. Avoids a potential infinite loop.
3726
3727 (ada_lookup_symbol): Move return incorrectly placed return statement,
3728 causing a loop that should be scanning all object files to only
3729 scan the first one.
3730
3731 (ada_tag_name_2): New function.
3732 (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
3733 use alternative representation.
3734
3735 (ada_find_renaming_symbol): Strip the function name suffix when
3736 computing the XR type name.
3737
3738 (ada_to_fixed_type): Try determining the tag only if we have the
3739 object's address.
3740 (to_fixed_array_type): Add comments.
3741
3742 (ada_check_typedef): Replace expression checking whether the given
3743 type is a stub or not by a "call" to TYPE_STUB. Clearer and more
3744 consistent.
3745
3746 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
3747 '$' in addition to '.' for runtime auxiliary function name suffixes.
3748 See changes to ada_decode above.
3749
3750 (struct task_control_block): Add field called_task. (This change is
3751 to keep synchronized with our local sources; it does not affect the
3752 public version yet.)
3753
3754 * ada-typeprint.c (ada_print_type): Use int_string for printing
3755 modulus of modular type.
3756
3757 (print_range): Trivial editorial comment fix.
3758
3759 * ada-valprint.c (ada_emit_char): Use normal Ada syntax for
3760 double quote in string.
3761
3762 2006-01-01 Joel Brobecker <brobecker@adacore.com>
3763
3764 * top.c: Add 2006 to list of copyright years in file header.
3765
3766 2006-01-01 Joel Brobecker <brobecker@adacore.com>
3767
3768 * top.c (print_gdb_version): Update copyright year to 2006.
3769
3770 2006-01-01 Roger Sayle <roger@eyesopen.com>
3771 Elena Zannoni <ezannoni@redhat.com>
3772
3773 PR symtab/1651
3774 * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
3775 for NULL before assigning this_symtab_psymtab->objfile to objfile.
3776 (scan_xcoff_symtab): Initialize next_symbol_text_func.
3777 (Committed by Jim Blandy)
3778
3779 For older changes see ChangeLog-2005.
3780 \f
3781 Local Variables:
3782 mode: change-log
3783 left-margin: 8
3784 fill-column: 74
3785 version-control: never
3786 End:
This page took 0.107096 seconds and 5 git commands to generate.