2012-11-09 Pedro Alves <palves@redhat.com>
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2012-11-09  Pedro Alves  <palves@redhat.com>
2
3         PR gdb/14306
4
5         * infrun.c: Include target-descriptions.h.
6         (follow_exec): Fetch new target description.
7
8 2012-11-09  Yao Qi  <yao@codesourcery.com>
9
10         * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
11         0x8d (lea).
12
13 2012-11-09  Yao Qi  <yao@codesourcery.com>
14
15         * breakpoint.c: Declare set_tracepoint_count.
16         (install_breakpoint): Call set_tracepoint_count if B is a
17         tracepoint.
18         (trace_command): Don't call set_tracepoint_count.  Re-indent.
19         (strace_command, ftrace_command):
20         (create_tracepoint_from_upload): Likewise.
21
22 2012-11-09  Pedro Alves  <palves@redhat.com>
23
24         * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
25         (get_target_gdbarch) <gdbarch.h>: New function.
26         (startup_gdbarch) <gdbarch.h>: Declare.
27         <gdbarch.c> (target_gdbarch): Delete.
28         <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
29         current inferior's gdbarch.
30         <gdbarch.c> (get_target_gdbarch): New function.
31         * inferior.c: Include target-descriptions.h.
32         (free_inferior): Free target description info.
33         (add_inferior_with_spaces): Set the inferior's initial
34         architecture.
35         (clone_inferior_command): Copy the original inferior's target
36         description if it was user specified.
37         (initialize_inferiors): Add comment.
38         * inferior.h (struct target_desc_info): Forward declare.
39         (struct inferior) <gdbarch>: New field.
40         * linux-nat.c: Include target-descriptions.h.
41         (linux_child_follow_fork): Copy the parent's architecture and
42         target description to the child.
43         * target-descriptions.c: Include inferior.h.
44         (struct target_desc_info): New structure, holding the equivalents
45         of ...
46         (target_desc_fetched, current_target_desc)
47         (target_description_filename): ... these removed globals.
48         (get_tdesc_info, target_desc_info_from_user_p)
49         (copy_inferior_target_desc_info, target_desc_info_free): New.
50         (target_desc_fetched, current_target_desc)
51         (target_description_filename): Reimplemented as convenience
52         macros.
53         (tdesc_filename_cmd_string): New global.
54         (set_tdesc_filename_cmd): Copy the string manipulated by the "set
55         tdescs filename ..." commands to the per-inferior equivalent.
56         (show_tdesc_filename_cmd): Get the value to show from the
57         per-inferior description filename.
58         (_initilize_target_descriptions): Change the "set/show tdesc
59         filename" commands' variable.
60         * target-descriptions.h (struct target_desc, struct target_desc_info)
61         (struct inferior): Forward declare.
62         (target_find_description, target_clear_description)
63         (target_current_description): Adjust comments.
64         (copy_inferior_target_desc_info, target_desc_info_free)
65         (target_desc_info_from_user_p). Declare.
66
67 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
68
69         * tui/tui-hooks.c (tui_about_to_proceed): New function.
70         (tui_target_wait_hook): Remove.
71         (tui_install_hooks): Install the about_to_proceed observer.
72         (tui_remove_hooks): And remove it here.
73
74 2012-11-08  Tom Tromey  <tromey@redhat.com>
75
76         * linux-tdep.c (linux_make_siginfo_note): New function.
77         (linux_make_corefile_notes): Use it.
78         * corelow.c (get_core_siginfo): New function.
79         (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
80
81 2012-11-08  Tom Tromey  <tromey@redhat.com>
82
83         PR gdb/14704:
84         * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
85         (zlib_decompress_section): Remove.
86         (gdb_bfd_map_section): Only check for compressed section
87         in mmap case.  Use bfd_get_full_section_contents.
88         * osabi.c (check_note): Add 'sectsize' argument.  Read
89         section data.
90         (generic_elf_osabi_sniff_abi_tag_sections): Don't read
91         section data.  Update for check_note change.
92         * xcoffread.c (xcoff_initial_scan): Use
93         bfd_get_full_section_contents.
94         * py-auto-load.c (auto_load_section_scripts): Use
95         bfd_get_full_section_contents.
96         * contrib/cc-with-tweaks.sh: Add -Z option.
97
98 2012-11-08  Tom Tromey  <tromey@redhat.com>
99
100         * python/py-bpevent.c: Include defs.h.
101         * python/py-continueevent.c: Include defs.h.
102         * python/py-event.c: Include defs.h.
103         * python/py-event.h: Don't include defs.h.
104         * python/py-events.h: Don't include defs.h.
105         * python/py-evts.c: Include defs.h.
106         * python/py-exitedevent.c: Include defs.h.
107         * python/py-newobjfileevent.c: Include defs.h.
108         * python/py-signalevent.c: Include defs.h.
109         * python/py-stopevent.c: Include defs.h.
110         * python/py-threadevent.c: Include defs.h.
111
112 2012-11-08  Pierre Muller  <muller@sourceware.org>
113
114         * update-web-ari.sh (print_heading): Add number of files
115         checked.
116         (nb_files): New variable counting the number of sources
117         files found by gdb_find.sh script.
118         (debug_awk): New variable to allow extra debug output.
119         (indexes): Add more information if DEBUG_AWK is set.
120
121 2012-11-08  Edjunior Machado  <emachado@linux.vnet.ibm.com>
122
123         * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
124         ppc64_standard_linkage3): Mark ld r11 instructions as optional,
125         following the change in PLT call stubs on linker.
126
127 2012-11-08  Pierre Muller  <muller@sourceware.org>
128
129         * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
130         as default language.
131         (AWK): Use = instead of == for sh test to avoid warning.
132         (Linux rule): Correct [:digit] into [[:digit:]].
133         (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
134         (vasprintf rule): Adapt to common subdirectory moves.
135         (xasprintf rule): Idem.
136         (xvasprintf rule): Idem.
137         (var_boolean rule): Accept occurence in == or != test.
138
139         * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
140
141 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
142
143         * tui/tui-hooks.c (tui_inferior_exit): New function.
144         (tui_detach_hook): Remove.
145         (tui_install_hooks): Install the inferior exit observer.
146         (tui_remove_hooks): Remove it.
147
148 2012-11-08  Yao Qi  <yao@codesourcery.com>
149
150         PR gdb/14777.
151         * source.c (_initialize_source): Call add_com_alias to abbreviate
152         'forward-search' as 'fo'.
153
154 2012-11-07  Pedro Alves  <palves@redhat.com>
155
156         * arm-tdep.c: Make defs.h be the first include.
157         * coff-pe-read.c: Ditto.
158         * gnu-nat.c: Ditto.
159         * go32-nat.c: Ditto.
160         * i386-nat.c: Ditto.
161         * ppcnbsd-nat.c: Ditto.
162         * ada-varobj.h: Don't include defs.h.
163         * i386-darwin-tdep.h: Ditto.
164         * i386-nat.h: Ditto.
165
166 2012-11-07  Pedro Alves  <palves@redhat.com>
167
168         * MAINTAINERS: New FSF-appointed maintainers replace the Steering
169         Committee.
170
171 2012-11-07  Pierre Muller  <muller@sourceware.org>
172
173         * common/linux-osdata.c (dirent.h): ARI fix: Remove.
174         File already uses "gdb_dirent.h" header.
175
176 2012-11-07  Yao Qi  <yao@codesourcery.com>
177
178         * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
179         tracepoint_count'.
180
181 2012-11-06  Tom Tromey  <tromey@redhat.com>
182
183         * target.h (inferior_has_forked, inferior_has_vforked)
184         (inferior_has_execd, inferior_has_called_syscall): Remove
185         declarations.
186
187 2012-11-06  Pierre Muller  <muller@sourceware.org>
188
189         * remote.c (remote_insert_hw_breakpoint): ARI fix,
190         add missing internalization markup.
191
192 2012-11-06  Pedro Alves  <palves@redhat.com>
193
194         PR gdb/14810
195
196         * breakpoint.c (bpstat_stop_status): Skip disabled locations.
197
198 2012-11-06  Pierre Muller  <muller@sourceware.org>
199
200         * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
201         is not executable.
202
203 2012-11-05  Joel Brobecker  <brobecker@adacore.com>
204
205         * gnulib/update-gnulib.sh: New script.
206
207 2012-11-05  Stephane Carrez  <Stephane.Carrez@gmail.com>
208
209         * MAINTAINERS: Update my email address.
210
211 2012-11-05  Tom Tromey  <tromey@redhat.com>
212
213         * frame.c (put_frame_register): Don't use temporary buffer.
214
215 2012-11-05  Pedro Alves  <palves@redhat.com>
216
217         * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
218         child.  Clear 'pending_detach'.
219         * infrun.c (handle_vfork_child_exec_or_exit): Clear
220         'pending_detach' in the vfork parent.
221
222 2012-11-05  Doug Evans  <dje@google.com>
223
224         Add support for DWP files.  http://gcc.gnu.org/wiki/DebugFissionDWP
225         * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
226         * dwarf2read.c: #include "elf-bfd.h".
227         (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
228         (dwop_section_names): Renamed from dwo_section names.  All uses
229         updated.  Add entries for .debug_cu_index, .debug_tu_index.
230         (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
231         All uses updated.
232         (struct dwp_sections): New type.
233         (struct virtual_dwo_sections): New type.
234         (struct dwp_hash_table): New type.
235         (struct dwp_file): New type.
236         (init_cutu_and_read_dies): Ensure DWO info/types section has been
237         read in.  Handle DWOs coming from DWP files.
238         (lookup_dwo_file_slot): New function.
239         (dwarf2_locate_dwo_sections): Move definition closer to use.
240         (create_dwo_debug_info_hash_table_reader): Renamed from
241         create_debug_info_hash_table_reader.  All callers updated.
242         (create_dwo_debug_info_hash_table): Renamed from
243         create_debug_info_hash_table.  All callers updated.
244         (create_dwp_hash_table): New function.
245         (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
246         (lookup_dwo_in_dwp): New function.
247         (try_open_dwop_file): Renamed from try_open_dwo_file.  New parameter
248         is_dwp.  All callers updated.
249         (open_dwop_file): Renamed from open_dwo_file.  All callers updated.
250         (open_and_init_dwo_file): Renamed from init_dwo_file.
251         All callers updated.
252         (lookup_dwo_file): Delete.
253         (dwarf2_locate_dwp_sections): New function.
254         (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
255         (allocate_dwp_loaded_cutus_table): New function.
256         (open_and_init_dwp_file): New function.
257         (lookup_dwo_cutu): New function.
258         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
259
260 2012-11-03  Yao Qi  <yao@codesourcery.com>
261
262         Fix PR gdb/14617.
263         * breakpoint.c (trace_pass_set_count): Call
264         observer_notify_breakpoint_modified instead of
265         observer_notify_tracepoint_modified.
266         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
267
268 2012-11-02  Tom Tromey  <tromey@redhat.com>
269
270         * breakpoint.c (catch_syscall_completer): Pass 'word' as second
271         argument to complete_on_enum.
272
273 2012-11-02  Tom Tromey  <tromey@redhat.com>
274
275         * configure: Rebuild.
276         * configure.ac (build_warnings): Add -Wempty-body.
277         * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
278         * remote.c (handle_notification): Use braces for empty 'else' body.
279         * s390-tdep.c (s390_analyze_prologue): Use braces for empty
280         'else' body.
281         * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
282         'else' body.
283         * solib-som.c (som_relocate_section_addresses): Use braces
284         for empty 'else' body.
285         * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
286         (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
287
288 2012-11-02  Pedro Alves  <palves@redhat.com>
289
290         PR gdb/14766
291
292         * infrun.c (handle_inferior_event)
293         <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
294         null_ptid before handling a vfork child exec or exit.  Switch to
295         the event ptid afterwards.
296
297 2012-11-02  Yao Qi  <yao@codesourcery.com>
298
299         * std-operator.def: Remove OP_LABELED.
300         * eval.c: Remove the declaration of 'get_label'.
301         (get_label): Remove.
302         (evaluate_struct_tuple): Remove code handling OP_LABELED.
303         Update comment.
304         Remove local variable 'variantno' and related code.
305         Replace 'substruct_type' with 'struct_type'.  Replace 'subfieldno'
306         with 'fieldno'.
307         * expprint.c (print_subexp_standard): Likewise.
308         (dump_subexp_body_standard): Likewise.
309         * parse.c (operator_length_standard): Likewise.
310
311 2012-11-01  Pierre Muller  <muller@ics.u-strasbg.fr>
312
313         Incorporate ARI web page generator into GDB sources.
314         * contrib/ari/create-web-ari-in-src.sh: New file.
315         * contrib/ari/gdb_ari.sh: New file.
316         * contrib/ari/gdb_find.sh: New file.
317         * contrib/ari/update-web-ari.sh: New file.
318
319 2012-10-31  Tom Tromey  <tromey@redhat.com>
320
321         * gdbarch.c: Rebuild.
322         * gdbarch.sh: Remove references to gdbarch_swap.
323         * corelow.c (core_open): Remove obsolete comment.
324
325 2012-10-31  Andrew Burgess  <aburgess@broadcom.com>
326
327         PR cli/14772
328         * c-typeprint.c (c_print_type): Don't print a space for vector
329         types, this is handled within the suffix.
330         (c_type_print_varspec_suffix): Add a space to vector suffix.
331
332 2012-10-26  Pedro Alves  <palves@redhat.com>
333
334         * amd64-tdep.c (amd64_relocate_instruction): Use
335         store_unsigned_integer instead of memcpy.
336         * i386-tdep.c (i386_relocate_instruction): Ditto.
337
338 2012-10-26  Pedro Alves  <palves@redhat.com>
339
340         * infrun.c (handle_inferior_event): Merge handling of
341         TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
342         switch case.
343
344 2012-10-26  Pedro Alves  <palves@redhat.com>
345
346         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
347         Remove comment.
348
349 2012-10-26  Pedro Alves  <palves@redhat.com>
350
351         * target.c (target_waitstatus_to_string): Handle
352         TARGET_WAITKIND_VFORK_DONE.
353
354 2012-10-26  Pedro Alves  <palves@redhat.com>
355
356         * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
357         as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
358
359 2012-10-24  Tristan Gingold  <gingold@adacore.com>
360
361         * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
362         Add comments.
363
364 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
365
366         * ravenscar-thread.c (ravenscar_wait): Only update the list
367         of threads and inferior_ptid if the inferior is still alive.
368
369 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
370
371         * ada-lang.c (is_known_support_routine): Use lbasename when
372         matching the symtab's filename against
373         known_runtime_file_name_patterns.
374
375 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
376
377         * ada-lang.c (ada_same_array_size_p): New function.
378         (ada_promote_array_of_integrals): New function.
379         (coerce_for_assign): Add handling of arrays where the elements
380         are integrals of a smaller size than the size of the target
381         array element type.
382
383 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
384
385         * doublest.c (convert_doublest_to_floatformat): Fix comparison
386         against maximum exponent value.
387
388 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
389
390         * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
391         "unwind-seh.c".
392
393 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
394
395         * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
396         strip typedef layer when computing the fixed type's field type,
397         only when computing its size.
398
399 2012-10-24  Mark Kettenis  <kettenis@gnu.org>
400
401         PR gdb/12783
402         * i386-tdep.c (i386_return_value): Handle complex double and long
403         double.
404
405 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
406
407         * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
408         New local variable args_len.
409         Quote the name of the executable when computing the command line.
410
411 2012-10-23  Mark Kettenis  <kettenis@gnu.org>
412
413         PR gdb/12796
414         PR gdb/12798
415         PR gdb/12800
416         * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
417         AMD64_FTAG_REGNUM.
418         * amd64-tdep.c (amd64_classify): Classify complex types.
419         (amd64_return_value): Handle the COMPLEX_X87 class.
420
421 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
422
423         * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
424         (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
425
426 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
427
428         * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
429         function.
430         (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
431         to amd64_windows_auto_wide_charset.
432
433 2012-10-23  Yao Qi  <yao@codesourcery.com>
434
435         * event-top.c (mark_async_signal_handler_wrapper): Remove.
436         * event-top.h: Remove its declaration.
437         (async_request_quit): Call mark_async_signal_handler instead of
438         mark_async_signal_handler_wrapper.
439         (async_do_nothing, async_disconnect): Likewise.
440         (async_stop_sig): Likewise.
441         * remote.c (handle_remote_sigint): Likewise.
442         (handle_remote_sigint_twice): Likewise.
443
444 2012-10-23  Yao Qi  <yao@codesourcery.com>
445
446         * event-top.c (sigint_token, sighup_token): Replace 'void *'
447         with 'static struct async_signal_handler *'.
448         (sighup_token, sigquit_token, sigstp_token): Likewise.
449
450 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
451
452         * gdbarch.sh (function_list): Use 'pstring' when printing
453         a variable which could return NULL.
454         * gdbarch.c: Regenerate.
455
456 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
457             Tom Tromey  <tromey@redhat.com>
458
459         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
460         inneffective if condition by gdb assertion.  Add function
461         description comment.
462
463 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
464
465         * parser-defs.h (struct exp_descriptor): Document constraint
466         on return value for "op_name" callbacks.
467
468 2012-10-18  Tom Tromey  <tromey@redhat.com>
469
470         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
471         * symtab.c (iterate_over_some_symtabs): Constify.
472         * source.h (symtab_to_fullname): Return 'const char *'.
473         * source.c (symtab_to_fullname): Return 'const char *'.
474         * python/py-symtab.c (stpy_fullname): Constify.
475         * cli/cli-cmds.c (edit_command): Constify.
476         * breakpoint.c (print_breakpoint_location)
477         (update_static_tracepoint): Constify.
478
479 2012-10-18  Tom Tromey  <tromey@redhat.com>
480
481         * breakpoint.c (compare_breakpoints): Fix comparison.
482
483 2012-10-18  Tom Tromey  <tromey@redhat.com>
484
485         * valprint.c (generic_emit_char, generic_printstr): Pass size of
486         gdb_wchar_t to convert_between_encodings.
487
488 2012-10-17  Yao Qi  <yao@codesourcery.com>
489
490         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
491         more parameter 'inferior'.
492         * corefile.c (write_memory_with_notification): Caller update.
493
494         * mi/mi-cmd-var.c: Include "mi-main.h".
495         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
496         to 1 and restore it later.
497         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
498         and "data-write-memory-bytes.
499         * mi/mi-interp.c: Include objfiles.h.
500         (mi_interpreter_init): Call observer_attach_memory_changed.
501         (mi_memory_changed): New.
502         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
503         New field.
504
505         * NEWS: Mention new MI notification "memory-changed".
506
507 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
508
509         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
510
511 2012-10-15  Doug Evans  <dje@google.com>
512
513         New option -nh: inhibit loading of ~/.gdbinit.
514         * NEWS: Mention -nh.
515         * main.c (captured_main): Recognize and process -nh.
516         (print_gdb_help): Mention -nh.
517         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
518
519 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
520
521         PR backtrace/14646
522         PR gdb/14647
523         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
524         pc_regnum_from_eax.
525         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
526         nor pc_regnum_from_eax.
527         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
528         nor pc_regnum_from_eax.
529
530 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
531
532         Fix entry values resolving in inlined frames.
533         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
534         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
535         entries of FRAME.
536
537 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
538
539         * configure.ac: Build with -DMS_WIN64 if building with Python
540         enabled using GCC on amd64-windows.
541         * configure: Regenerate.
542
543 2012-10-15  Tom Tromey  <tromey@redhat.com>
544
545         PR python/14635:
546         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
547         to Py_None.
548
549 2012-10-15  Tom Tromey  <tromey@redhat.com>
550
551         PR python/14634:
552         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
553
554 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
555
556         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
557         reset thread numbering back to 1.
558
559 2012-10-11  Doug Evans  <dje@google.com>
560
561         PR breakpoints/14643.
562         * linespec.c (struct ls_parser): New member keyword_ok.
563         (linespec_lexer_lex_string): Add comment.
564         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
565         for one.
566         (parse_linespec): Set keyword_ok.
567
568 2012-10-10  Doug Evans  <dje@google.com>
569
570         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
571         "0x" prefix on address in log message.
572
573         * dwarf2read.c (read_1_byte): Add const to buf parameter.
574         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
575         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
576         (lookup_dwo_file): Add const to dwo_name parameter.
577         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
578
579 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
580
581         Fix crash during stepping on ppc32.
582         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
583         SYM.
584
585 2012-10-03  Doug Evans  <dje@google.com>
586
587         PR symtab/14601
588         * buildsym.c (buildsym_init): Reset using_directives to NULL.
589
590 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
591
592         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
593         output and use uint32_t not long to ensure 4 byte size.
594
595 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
596
597         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
598         unref'ed it.
599
600 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
601
602         * target.c (simple_search_memory): Include access length in
603         warning message.
604
605 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
606             Edjunior Machado  <emachado@linux.vnet.ibm.com>
607
608         PR gdb/13989
609         * solib.c (solib_find): Prevent GDB from loading native libraries when
610         debugging a cross-target corefile.
611
612 2012-09-28  selven  <pcthegreat@gmail.com>
613
614         Make definition match declaration.
615
616         * regcache.c (regcache_register_status): Change return type to
617         enum register_status.
618
619 2012-09-28  Yao Qi  <yao@codesourcery.com>
620
621         * mi/mi-main.c (mi_cmd_data_write_memory): Call
622         write_memory_with_notification instead of write_memory.
623         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
624         instead of target_write_memory.
625
626 2012-09-28  Yao Qi  <yao@codesourcery.com>
627
628         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
629         when the length of content is not an even number.
630
631 2012-09-27  Tom Tromey  <tromey@redhat.com>
632
633         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
634         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
635
636 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
637
638         * sol-thread.c (sol_thread_fetch_registers)
639         (sol_thread_store_registers): Delete commented out code.
640
641 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
642
643         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
644         Move these functions to sparc-sol-thread.c.
645         * sparc-sol-thread.c: New file.
646         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
647         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
648         configurations.
649         * configure: Regenerate.
650
651 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
652
653         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
654         Remove commented-out code.
655
656 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
657
658         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
659         Enable this code for sparc hosts only.
660
661 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
662
663         * procfs.h (procfs_find_LDT_entry): Add declaration.
664         * sol-thread.c (ps_lgetLDT): Delete local declaration of
665         function procfs_find_LDT_entry.
666
667 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
668
669         * procfs.c (proc_get_LDT_entry): Make static.
670
671 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
672
673         * procfs.c (proc_find_memory_regions): Fix declaration.
674
675 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
676
677         * amd64-tdep.c (amd64_return_value): Revert previous change
678         that used TYPE_LENGTH directly.
679         * bfin-tdep.c (bfin_extract_return_value): Likewise.
680         (bfin_store_return_value): Likewise.
681         * cris-tdep.c (cris_store_return_value): Likewise.
682         (cris_extract_return_value): Likewise.
683         * h8300-tdep.c (h8300_extract_return_value): Likewise.
684         * hppa-tdep.c (hppa64_return_value): Likewise.
685         * lm32-tdep.c (lm32_store_return_value): Likewise.
686         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
687         * spu-tdep.c (spu_value_from_register): Likewise.
688         * vax-tdep.c (vax_return_value): Likewise.
689
690 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
691
692         * gdbtypes.c (lookup_array_range_type): Expand parameters
693         LOW_BOUND and HIGH_BOUND to LONGEST.
694         (lookup_string_range_type): Likewise.
695         * gdbtypes.h (lookup_array_range_type): Likewise.
696         (lookup_string_range_type): Likewise.
697         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
698         Expand HIGHBOUND to ssize_t.
699         (value_string): Likewise.
700         * value.h (value_cstring): Expand parameter LEN to ssize_t.
701         (value_string): Likewise.
702
703 2012-09-27  Yao Qi  <yao@codesourcery.com>
704
705         PR breakpoints/13898
706         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
707         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
708         per breakpoint type.
709
710 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
711
712         * procfs.c: Add gdb_bfd header.
713         * rs6000-nat.c: Likewise.
714         * solib-pa64.c: Likewise.
715         * spu-linux-nat.c: Likewise.
716         * windows-nat.c: Likewise.
717
718 2012-09-26  Tom Tromey  <tromey@redhat.com>
719
720         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
721
722 2012-09-26  Tom Tromey  <tromey@redhat.com>
723
724         * dwarf2read.c (mark_common_block_symbol_computed): New function.
725         (read_common_block): Handle child DIEs with
726         DW_AT_data_member_location.
727         (new_symbol_full): Add special case for common blocks.
728
729 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
730             Tom Tromey  <tromey@redhat.com>
731
732         * dwarf2read.c (read_common_block): Rewrite.
733         (new_symbol_full): Handle DW_TAG_common_block.
734         * f-lang.c (head_common_list, find_common_for_function):
735         Remove.
736         * f-lang.h (struct common_entry, struct saved_f77_common,
737         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
738         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
739         BLANK_COMMON_NAME_LOCAL): Remove.
740         (struct common_block): New.
741         * f-valprint.c (list_all_visible_commons): Remove.
742         (info_common_command_for_block): New function.
743         (info_common_command): Use it.
744         * stack.c (iterate_over_block_locals): Special case for
745         COMMON_BLOCK_DOMAIN.
746         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
747         constant.
748         (struct general_symbol_info) <value.common_block>: New field.
749         (SYMBOL_VALUE_COMMON_BLOCK): New define.
750
751 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
752             Tom Tromey  <tromey@redhat.com>
753
754         * f-lang.c (allocate_saved_bf_node,
755         allocate_saved_function_node, allocate_saved_f77_common_node,
756         allocate_common_entry_node, tail_common_list, current_common,
757         saved_bf_list, saved_bf_list_end, current_head_bf_list,
758         tmp_bf_ptr, add_common_block, add_common_entry,
759         find_first_common_named, patch_common_entries,
760         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
761         global_remote_debug, get_bf_for_fcn, saved_function_list,
762         saved_function_list_end, clear_function_list, struct saved_fcn,
763         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
764         SAVED_BF, SAVED_BF_PTR): Remove.
765         * f-lang.h (tail_common_list, current_common,
766         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
767         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
768         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
769         real_main_c_value): Remove.
770         * f-valprint.c (there_is_a_visible_common_named): Remove.
771
772 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
773
774         * breakpoint.c (update_global_location_list): Ignore previous
775         duplicate status of a breakpoint when starting a new scan for
776         duplicate breakpoints.
777
778 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
779         PR breakpoints/14419
780         * arm-tdep.c (arm_skip_prologue): Extending producer check to
781         support LLVM compiler.
782
783 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
784
785         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
786         * bfin-tdep.c (bfin_extract_return_value): Likewise.
787         (bfin_store_return_value): Likewise.
788         * cris-tdep.c (cris_store_return_value): Likewise.
789         (cris_extract_return_value): Likewise.
790         * h8300-tdep.c (h8300_extract_return_value): Likewise.
791         * hppa-tdep.c (hppa64_return_value): Likewise.
792         * lm32-tdep.c (lm32_store_return_value): Likewise.
793         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
794         * spu-tdep.c (spu_value_from_register): Likewise.
795         * vax-tdep.c (vax_return_value): Likewise.
796
797 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
798
799         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
800         parameter LEN to ssize_t.
801
802 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
803
804         * ada-valprint.c (ada_val_print_1): Eliminate single-use
805         variable LEN.
806         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
807         directly.
808         (alpha_store_return_value): Likewise.
809         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
810         (amd64_push_arguments): Likewise.
811         * ax-gdb.c (gen_trace_static_fields): Likewise.
812         (gen_traced_pop): Likewise.
813         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
814         * breakpoint.c (update_watchpoint): Likewise.
815         * findcmd.c (parse_find_args): Use local variable for type
816         instead of length.
817         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
818         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
819         (h8300_store_return_value): Likewise.
820         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
821         Use i386_darwin_arg_type_alignment directly.
822         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
823         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
824         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
825         (m68hc11_extract_return_value): Likewise.
826         * mep-tdep.c (mep_push_dummy_call): Likewise.
827         * printcmd.c (float_type_from_length): Likewise.
828         * s390-tdep.c (s390_value_from_register): Likewise.
829         * stack.c (read_frame_arg): Likewise.
830         * tracepoint.c (encode_actions_1): Likewise.
831         * valops.c (value_fetch_lazy): Use local variable for type
832         instead of length.  Use TYPE_LENGTH directly.
833         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
834
835 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
836
837         * symtab.c (skip_prologue_sal): Fix typo in comment.
838
839 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
840
841         * linespec.c (create_sals_line_offset): Fix typo in comment.
842
843 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
844
845         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
846         use plongest to print the array size.
847
848 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
849
850         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
851         * p-valprint.c (pascal_type_print_base): Likewise.
852
853 2012-09-22  Yao Qi  <yao@codesourcery.com>
854
855         * remote.c (remote_get_trace_status): Remove setting default
856         values of fields of 'ts'.
857
858 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
859
860         Fix internal error on canonicalization of clang types.
861         * cp-name-parser.y (operator): New comment at make_operator call for
862         new, delete, new[] and delete[].
863         (exp): Use "sizeof ".  Add new comment at make_operator call.
864
865 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
866
867         Fix disassemble without parameters in tailcall frame.
868         * cli/cli-cmds.c (disassemble_current_function): Use
869         get_frame_address_in_block.
870
871 2012-09-21  Tom Tromey  <tromey@redhat.com>
872
873         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
874         TYPE_CODE_UNION>: Unify, removing a goto.
875
876 2012-09-21  Tom Tromey  <tromey@redhat.com>
877
878         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
879
880 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
881
882         * findvar.c (read_frame_register_value): Mark the result value as
883         optimized out if any of the input registers have been optimized out.
884
885 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
886
887         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
888
889 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
890
891         * eval.c (evaluate_subexp_standard): Eliminate single-use
892         variable LOWER.
893
894 2012-09-21  Yao Qi  <yao@codesourcery.com>
895
896         * mi/mi-interp.c: Declare mi_record_changed.
897         (mi_interpreter_init): Call observer_attach_record_changed.
898         (mi_record_changed): New.
899         * record.c (record_open): Call observer_notify_record_changed.
900         (cmd_record_stop): Call observer_notify_record_changed.
901         * NEWS: Mention it.
902
903 2012-09-20  Tom Tromey  <tromey@redhat.com>
904
905         * NEWS: Update.
906         * python/python.c (finalize_python): New function.
907         (_initialize_python): Make a final cleanup.
908
909 2012-09-19  Doug Evans  <dje@google.com>
910
911         * buildsym.h (param_symbols): Delete, unused.
912         (context_stack): Delete member "params", unused.
913         * buildsym.c (push_context): Update.
914         * dwarf2read.c (read_func_scope): Update.
915
916 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
917
918         * sh-tdep.c (sh_register_convert_to_virtual)
919         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
920         all callers.  Just do a memcpy if not the little-endian case.
921
922         * h8300-tdep.c (h8300_gdbarch_init): Invoke
923         set_gdbarch_double_format and set_gdbarch_long_double_format.
924         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
925         set_gdbarch_double_format.
926         * sh-tdep.c (sh_gdbarch_init): Likewise.
927
928         * NEWS: Document the removal of SH's 'regs' command.
929         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
930         command.
931
932 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
933
934         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
935         `jump'.
936
937 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
938
939         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
940         language when iterating over symbols.
941
942 2012-09-18  Yao Qi  <yao@codesourcery.com>
943
944         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
945         (mi_interpreter_init): Call observer_attach_tsv_created and
946         observer_attach_tsv_deleted.
947         (mi_tsv_created, mi_tsv_deleted): New.
948         * tracepoint.c (delete_trace_state_variable): Call
949         observer_notify_tsv_deleted.
950         (trace_variable_command): Call observer_notify_tsv_created.
951         (delete_trace_variable_command): Call
952         observer_notify_tsv_deleted.
953         (create_tsv_from_upload): Call observer_notify_tsv_created.
954         * NEWS: Mention it.
955
956 2012-09-18  Yao Qi  <yao@codesourcery.com>
957
958         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
959         if traceframe changed.
960         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
961         "trace-find".
962         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
963         (mi_interpreter_init): Hook mi_traceframe_changed to observer
964         'traceframe_changed'.
965         (mi_traceframe_changed): New.
966         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
967         New field.
968         * NEWS: Mention the new MI notification.
969
970 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
971
972         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
973
974 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
975
976         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
977         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
978         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
979         Extend code also for PaX support.  Convert all gdb_assert to warning
980         calls.
981
982 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
983
984         Implement auto-load user conveniences suggested by Doug Evans.
985         * auto-load.c: Include top.h.
986         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
987         (_initialize_auto_load): New variable scripts_directory_help.  Mention
988         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
989         scripts-directory.  Document in online help one can use also files for
990         set auto-load safe-path.
991         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
992         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
993
994 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
995
996         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
997         of LEN.
998
999 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
1000
1001         * m2-valprint.c (m2_print_array_contents): Eliminate variable
1002         ELTLEN and use TYPE_LENGTH directly.
1003         (m2_val_print): Likewise.
1004         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
1005         variable LEN and use TYPE_LENGTH directly.
1006         (m68k_svr4_store_return_value): Likewise.
1007         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
1008         ARGLEN and use TYPE_LENGTH directly.
1009         (mips_o64_push_dummy_call): Likewise.
1010         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
1011         variable LENGTH and use TYPE_LENGTH directly.
1012         (s390_function_arg_float): Likewise.
1013         (s390_function_arg_integer): Likewise.
1014         (s390_push_dummy_call): Likewise.
1015         (s390_return_value_convention): Likewise.
1016         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
1017         TYPE_LENGTH directly.
1018
1019 2012-09-17  Yao Qi  <yao@codesourcery.com>
1020
1021         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
1022         Update comment to add_setshow_integer_cmd.
1023         * cli/cli-setshow.c (do_set_command): Handle case
1024         'var_zuinteger_unlimited'.
1025         (do_show_command): Likewise.
1026         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
1027         for command 'remotetimeout'.
1028         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
1029         to var_integer.
1030         * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
1031         for command 'set listsize'.
1032
1033 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
1034
1035         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
1036         variable LEN.
1037
1038 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1039
1040         PR 14119
1041         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
1042         (frame_pop): Drop also TAILCALL_FRAME frames.
1043         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
1044
1045 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1046             Pedro Alves  <palves@redhat.com>
1047
1048         PR 14548
1049         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
1050         function start if we are already at function start.  Both for
1051         reverse-next and for reverse-step into function without line number
1052         info.
1053
1054 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1055
1056         Code cleanup - rename 'inline' depth to 'artificial' depth.
1057         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
1058         frame_id_artificial_p, extend the comment.
1059         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
1060         * frame.c (fprint_frame_id): Rename at a user, change debug output
1061         text to "artificial=".
1062         (skip_inlined_frames): Rename to ...
1063         (skip_artificial_frames): ... here.  Extend the comment.
1064         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
1065         (frame_id_inlined_p): Rename to ...
1066         (frame_id_artificial_p): ... here.  Rename at a user.
1067         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
1068         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
1069         at a user.
1070         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
1071         Extend the comment.
1072         (frame_id_inlined_p): Rename to ...
1073         (frame_id_artificial_p): ... here.
1074         * inline-frame.c (inline_frame_this_id): Rename at a user.
1075
1076 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
1077
1078         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
1079         vector variables using vector_size syntax rather than array
1080         syntax.
1081
1082 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
1083
1084         * valarith.c (value_concat): Replace unsafe ALLOCA with
1085         XMALLOC/XFREE.
1086
1087 2012-09-14  Pedro Alves  <palves@redhat.com>
1088
1089         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
1090
1091 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
1092
1093         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
1094         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
1095         data-directory as appropriate.
1096
1097 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
1098
1099         * printcmd.c (ui_printf): Eliminate single-use variable
1100         PARAM_LEN.
1101
1102 2012-09-14  Yao Qi  <yao@codesourcery.com>
1103             Pedro Alves  <palves@redhat.com>
1104
1105         * valops.c (value_assign): Move observer_notify_target_changed
1106         below to replace reinit_frame_cache.
1107
1108 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
1109
1110         Refactor Python "gdb" module into a proper Python package, by
1111         introducing a new "_gdb" module for code implemented in C, and
1112         using reload/__import__ instead of exec.
1113         * python/lib/gdb/__init__.py: Import * from _gdb.
1114         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
1115         prompt_hook, sys.argv): Moved from finish_python_initialization.
1116         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
1117         (packages, auto_load_packages): New list and function replacing
1118         module_dict and auto-loading code, using __file__ instead of
1119         gdb.PYTHONDIR and reload/__import__ instead of exec.
1120         (GdbSetPythonDirectory): Replacing function of the same name
1121         from finish_python_initialization, using reload/__import__ instead
1122         of exec, as well as call auto_load_packages.
1123         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
1124         gdb_python_module and not gdb_module.
1125         * python/python-internal.h (gdb_python_module): Declare.
1126         * python/python.c (gdb_python_module): New global.
1127         (before_prompt_hook): Check gdb_python_module and not gdb_module.
1128         (_initialize_python): Rename gdb module to _gdb.
1129         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
1130         (finish_python_initialization): Move Python code to
1131         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
1132         __main__.
1133
1134 2012-09-13  Pedro Alves  <palves@redhat.com>
1135
1136         * Makefile.in (COMMON_OBS): Add registry.o.
1137         * registry.c: New file.
1138         * registry.h (struct registry_container): Declare.
1139         (registry_data_callback): New typedef.
1140         (struct registry_data, struct registry_data_registration, struct
1141         registry_data_registry): New type.
1142         (register_data_with_cleanup, registry_alloc_data)
1143         (registry_callback_adaptor, registry_clear_data)
1144         (registry_container_free_data, registry_set_data, registry_data):
1145         Declare.
1146         (DEFINE_REGISTRY): Refactor structures and functions as shims over
1147         the new common structures and functions.
1148         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
1149         callback typedefs.
1150
1151 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
1152
1153         * remote.c (remote_insert_hw_breakpoint): Throw exception if
1154         there is an error inserting hardware breakpoints and use the
1155         error message from the target.
1156
1157         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
1158         Catch this exception and print the error message contained within. Do not
1159         print the default hardware error breakpoint message in this case.
1160
1161 2012-09-12  Doug Evans  <dje@google.com>
1162
1163         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
1164         cu == NULL.
1165
1166 2012-09-11  Doug Evans  <dje@google.com>
1167
1168         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
1169         .gdb_index symbol attributes if there are none.
1170
1171 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
1172
1173         * symtab.h (struct minimal_symbol) [has_size]: New field.
1174         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
1175         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
1176         * printcmd.c (build_address_symbolic): Only filter out zero-sized
1177         minimal symbols if the symbol's size is actually known.
1178         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
1179         of msymbol's size field.  Add comment.
1180         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
1181         SET_MSYMBOL_SIZE to set the minimal symbol size.
1182
1183 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
1184
1185         * minsyms.c (install_minimal_symbols): Use memset to fill entire
1186         minimal_symbol struct object, rather than setting some of its
1187         fields one by one.
1188
1189 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
1190
1191         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
1192         passed_a_ptr flag when displaying typedef types.
1193
1194 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
1195
1196         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
1197         the optimized_out flag is preserved.
1198
1199 2012-09-10  Anthony Green  <green@moxielogic.com>
1200
1201         * moxie-tdep.c (moxie_analyze_prologue): Update for function
1202         prologue changes in GCC.
1203
1204 2012-09-10  Keith Seitz  <keiths@redhat.com>
1205
1206         PR gdb/13483
1207         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
1208         (BOOL_CONVERSION_BADNESS): ... this.
1209         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
1210         (rank_one_type): Allow all boolean conversions
1211         permitted by the standard.
1212
1213 2012-09-06  Tom Tromey  <tromey@redhat.com>
1214
1215         * python/py-newobjfileevent.c (create_new_objfile_event_object):
1216         Don't decref py_objfile.
1217
1218 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
1219
1220         Do not enable -lmcheck by default when Python is enabled with
1221         threading support.
1222         * configure.ac: (python_has_threads) New variable, by testing
1223         if WITH_THREAD is defined in Python.h.
1224         Move --enable-lmcheck after --with-python.
1225         Do not enable -lmcheck by default if python_has_threads=yes.
1226         Warn if --enable-lmcheck and python_has_threads=yes.
1227         * configure: Regenerate.
1228
1229 2012-08-31  Yao Qi  <yao@codesourcery.com>
1230
1231         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
1232         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
1233         Update some commands.
1234         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
1235         * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
1236         to 1.
1237
1238 2012-08-31  Yao Qi  <yao@codesourcery.com>
1239
1240         * mi/mi-cmds.c (mi_cmds): Add 'static'.
1241
1242 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
1243
1244         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
1245
1246 2012-08-29  Doug Evans  <dje@google.com>
1247
1248         * main.c (print_gdb_help): Remove reference to
1249         --use-deprecated-index-sections.
1250
1251 2012-08-28  Yao Qi  <yao@codesourcery.com>
1252
1253         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
1254         (init_cmds): Call add_setshow_uinteger_cmd for command
1255         'max-user-call-depth'.
1256         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
1257         declaration of 'max_user_call_depth'.
1258         * frame.c (backtrace_limit): Add 'unsigned'.
1259         (_initialize_frame): Call add_setshow_uinteger_cmd for command
1260         'limit'.
1261         * remote.c (remoteaddresssize): Add 'unsigned'.
1262         (remote_address_masked): Change local var 'address_size' to
1263         'unsigned'.
1264         (_initialize_remote): Call add_setshow_uinteger_cmd for
1265         'remoteaddresssize'.
1266         * top.c (history_size): Add 'unsigned'.
1267         (show_commands): Change local variables to 'unsigned'.
1268         (set_history_size_command): Don't check history_size is negative.
1269         Adjust the condition to call unstifle_history and set history_size
1270         to UNIT_MAX.
1271
1272 2012-08-28  Pedro Alves  <palves@redhat.com>
1273
1274         PR gdb/14428
1275
1276         * infcmd.c (default_print_one_register_info): New, factored out
1277         from default_print_registers_info.
1278         (default_print_registers_info): Use it.  Mark value unavailable if
1279         necessary.
1280         (registers_info): Print user registers with
1281         default_print_one_register_info.
1282
1283 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
1284
1285         PR tui/14486
1286         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
1287         is not NULL before referencing it.
1288
1289 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
1290
1291         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
1292         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
1293         original PC for it.
1294
1295 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
1296             Jan Kratochvil  <jan.kratochvil@redhat.com>
1297
1298         * auto-load.c (auto_load_objfile_script): Rename to ...
1299         (auto_load_objfile_script_1): ... here, change variable realname to
1300         parameter realname, document it, add return value, add variable retval.
1301         (auto_load_objfile_script): New function.
1302
1303 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
1304
1305         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
1306         followed by a whitespace.
1307
1308 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
1309
1310         PR gdb/14494.
1311         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
1312         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
1313         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
1314         here.
1315
1316 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
1317
1318         * memattr.c (create_mem_region): Fix memory region overlapping
1319         checking.
1320
1321 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1322
1323         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
1324         with xmalloc/cleanup.
1325         * mt-tdep.c (mt_push_dummy_call): Likewise.
1326         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1327         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1328
1329 2012-08-24  Yao Qi  <yao@codesourcery.com>
1330
1331         * jv-exp.y (push_expression_name): Add "." at the end of error
1332         message.
1333
1334 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
1335
1336         Document how to return from "python-interactive" to GDB.
1337         * python/python.c (_initialize_python): Update documentation.
1338
1339 2012-08-23  Pedro Alves  <palves@redhat.com>
1340
1341         * infrun.c (_initialize_infrun) <handle command help text>:
1342         Mention that multiple signals are supported.
1343
1344 2012-08-23  Pedro Alves  <palves@redhat.com>
1345
1346         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
1347         string.
1348
1349 2012-08-23  Yao Qi  <yao@codesourcery.com>
1350
1351         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
1352         (tfind_1): Don't call registers_changed, set_traceframe_num,
1353         and clear_traceframe_info.
1354         Call set_current_traceframe.
1355         (set_current_traceframe): call set_traceframe_num.
1356
1357 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
1358
1359         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
1360         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
1361
1362 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
1363
1364         Enable readline in Python in a GDB-specific way and block the
1365         standard Python readline module to prevent conflicts with GDB.
1366         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
1367         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
1368         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
1369         * python/py-gdb-readline.c: New file.
1370         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
1371         prototype.
1372         * python/python.c (_initialize_python): Call
1373         gdbpy_initialize_gdb_readline.
1374
1375 2012-08-22  Keith Seitz  <keiths@redhat.com>
1376
1377         * defs.h: Include build-gnulib/config.h
1378
1379 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
1380
1381         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
1382         and blx pc.
1383
1384 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
1385
1386         Add a new "python-interactive" command that starts a standard
1387         Python interactive prompt with "pi" as alias, and add "py" as
1388         an alias to "python".
1389         * NEWS: Mention the new commands.
1390         * python/python.c (eval_python_command): New function.
1391         (python_interactive_command): For "python-interactive" with
1392         arguments, call eval_python_command.  For "python-interactive"
1393         without arguments, call PyRun_InteractiveLoop.
1394         (_initialize_python): Add "python-interactive" command with
1395         "pi" as alias, and add "py" as an alias to "python".
1396
1397 2012-08-22  Tom Tromey  <tromey@redhat.com>
1398
1399         * defs.h (quit_flag): Don't declare.
1400         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
1401         (QUIT): Use new functions.
1402         * event-top.c (command_handler): Use clear_quit_flag.
1403         (handle_sigint): Use set_quit_flag.
1404         (async_request_quit): Use check_quit_flag.  Don't check
1405         immediate_quit.
1406         * exceptions.c (throw_exception): Use clear_quit_flag.
1407         * main.c (captured_main): Use clear_quit_flag.
1408         * python/python.c (clear_quit_flag, set_quit_flag)
1409         (check_quit_flag): New functions.
1410         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
1411         clear_quit_flag.
1412         * remote.c (remote_wait_as): Use check_quit_flag,
1413         clear_quit_flag.
1414         (remote_start_remote): Call QUIT.
1415         * symfile.c (load_progress): Use check_quit_flag.
1416         * top.c (command_loop): Use clear_quit_flag.
1417         (command_line_input): Call QUIT.
1418         * utils.c (quit_flag): Conditionally define.
1419         (clear_quit_flag, check_quit_flag, set_quit_flag): New
1420         functions.
1421         (prompt_for_continue): Call QUIT.  Use quit, not
1422         async_request_quit.
1423         * remote-mips.c (mips_expect_timeout): Call QUIT.
1424         * monitor.c (monitor_expect): Call QUIT.
1425
1426 2012-08-22  Tom Tromey  <tromey@redhat.com>
1427
1428         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
1429         (async_init_signals): Update.
1430         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
1431         (SIGWINCH_HANDLER_BODY): Remove.
1432
1433 2012-08-22  Tom Tromey  <tromey@redhat.com>
1434
1435         * jit.c (jit_object_close_impl): Don't malloc the objfile
1436         name.
1437         * objfiles.c (allocate_objfile): Don't malloc the objfile
1438         name.
1439         (free_objfile): Don't free the objfile name.
1440         * objfiles.h (struct objfile) <name>: Update comment.
1441         * symfile.c (reread_symbols): Fix reference counting.  Don't
1442         malloc objfile name.
1443
1444 2012-08-22  Tom Tromey  <tromey@redhat.com>
1445
1446         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
1447         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
1448         (symfile_bfd_open): Likewise.
1449         (generic_load): Likewise.
1450         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
1451         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1452         gdb_bfd_open.
1453         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1454         Use gdb_bfd_open.
1455         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
1456         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
1457         (pmon_load_fast): Likewise.
1458         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
1459         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
1460         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
1461         (macho_check_dsym): Likewise.
1462         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
1463         (m32r_upload_command): Likewise.
1464         * gdb_bfd.h (gdb_bfd_cache): Declare.
1465         * gdb_bfd.c (struct gdb_bfd_data): New.
1466         (gdb_bfd_cache): New global.
1467         (struct gdb_bfd_cache_search): New.
1468         (hash_bfd): New function.
1469         (eq_bfd): Likewise.
1470         (gdb_bfd_open): Likewise.
1471         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
1472         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
1473         gdb_bfd_data.
1474         * exec.c (exec_file_attach): Use gdb_bfd_open.
1475         * dsrec.c (load_srec): Use gdb_bfd_open.
1476
1477 2012-08-22  Tom Tromey  <tromey@redhat.com>
1478
1479         * dwarf2read.c (macro_start_file): Update.
1480         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
1481         (free_objfile_per_bfd_storage): Destroy macro_cache.
1482         (allocate_objfile, free_objfile): Update.
1483         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
1484         New field.
1485         (struct objfile) <macro_cache>: Remove.
1486         * symfile.c (reread_symbols): Update.
1487         * symmisc.c (print_symbol_bcache_statistics): Update.
1488         (print_objfile_statistics): Update.
1489
1490 2012-08-22  Tom Tromey  <tromey@redhat.com>
1491
1492         * elfread.c (elf_symtab_read): Update.
1493         * objfiles.c (objfiles_bfd_data): New global.
1494         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
1495         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
1496         (allocate_objfile, free_objfile): Update.
1497         (_initialize_objfiles): Initialize objfiles_bfd_data.
1498         * objfiles.h (struct objfile_per_bfd_storage): New.
1499         (struct objfile) <per_bfd>: New field.
1500         <filename_cache>: Remove.
1501         (set_objfile_per_bfd): Declare.
1502         * symfile.c (reread_symbols): Update.  Call
1503         set_objfile_per_bfd.
1504         (allocate_symtab): Update.
1505         * symmisc.c (print_symbol_bcache_statistics): Update.
1506         (print_objfile_statistics): Print the size of the BFD obstack.
1507
1508 2012-08-22  Tom Tromey  <tromey@redhat.com>
1509
1510         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
1511         * gdb_bfd.c: Use DEFINE_REGISTRY.
1512         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
1513         (gdb_bfd_ref): Call bfd_alloc_data.
1514         (gdb_bfd_unref): Call bfd_free_data.
1515
1516 2012-08-22  Tom Tromey  <tromey@redhat.com>
1517
1518         * registry.h (struct registry_fields): New.
1519         (REGISTRY_FIELDS): Redefine.
1520         (REGISTRY_ACCESS_FIELD): New macro.
1521         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
1522         functions.
1523
1524 2012-08-22  Tom Tromey  <tromey@redhat.com>
1525
1526         * auto-load.c (_initialize_auto_load): Update.
1527         * solib-svr4.c (_initialize_svr4_solib): Update
1528         * solib-dsbt.c (_initialize_dsbt_solib): Update.
1529         * solib-darwin.c (_initialize_darwin_solib): Update.
1530         * registry.h: New file.
1531         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
1532         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
1533         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
1534         (register_program_space_data_with_cleanup)
1535         (register_program_space_data, program_space_alloc_data)
1536         (clear_program_space_data, set_program_space_data)
1537         (program_space_data): Don't declare.
1538         * progspace.c: Use DEFINE_REGISTRY.
1539         (struct program_space_data, struct
1540         program_space_data_registration, struct
1541         program_space_data_registry, program_space_data_registry)
1542         (register_program_space_data_with_cleanup)
1543         (register_program_space_data, program_space_alloc_data)
1544         (program_space_free_data, clear_program_space_data)
1545         (set_program_space_data, program_space_data): Remove.
1546         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
1547         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
1548         (register_objfile_data_with_cleanup, register_objfile_data)
1549         (clear_objfile_data, set_objfile_data, objfile_data): Don't
1550         declare.
1551         * objfiles.c: Use DEFINE_REGISTRY.
1552         (struct objfile_data, struct objfile_data_registration, struct
1553         objfile_data_registry, objfile_data_registry)
1554         (register_objfile_data_with_cleanup, register_objfile_data)
1555         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
1556         (set_objfile_data, objfile_data): Remove.
1557         (_initialize_objfiles): Update.
1558         * jit.c (_initialize_jit): Update.
1559         * inflow.c (_initialize_inflow): Update.
1560         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
1561         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
1562         (register_inferior_data_with_cleanup, register_inferior_data)
1563         (clear_inferior_data, set_inferior_data, inferior_data): Don't
1564         declare.
1565         * inferior.c: Use DEFINE_REGISTRY.
1566         (struct inferior_data, struct inferior_data_registration, struct
1567         inferior_data_registry, inferior_data_registry)
1568         (register_inferior_data_with_cleanup, register_inferior_data)
1569         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
1570         (set_inferior_data, inferior_data): Remove.
1571         * auxv.c (_initialize_auxv): Update.
1572         * ada-lang.c (_initialize_ada_language): Update.
1573         * breakpoint.c (_initialize_breakpoint): Update.
1574         * i386-nat.c (i386_use_watchpoints): Update.
1575
1576 2012-08-22  Tom Tromey  <tromey@redhat.com>
1577
1578         * exec.c (exec_close, exec_file_attach): Update.
1579         (add_to_section_table): Initialize 'key' field.
1580         (add_target_sections, remove_target_sections): Add 'key' argument.
1581         * exec.h (add_target_sections, remove_target_sections): Add
1582         'key' argument.
1583         * solib.c (solib_map_sections, update_solib_list, clear_solib)
1584         (reload_shared_libraries_1): Update.
1585         * target.h (struct target_section) <key>: New field.
1586
1587 2012-08-22  Tom Tromey  <tromey@redhat.com>
1588
1589         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
1590
1591 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
1592
1593         * symfile.c (allocate_symtab): Use host_address_to_string
1594         function instead of cast of pointer to long which is not
1595         compatible with x86_64-w64-mingw32 build.
1596
1597 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1598
1599         * mips-tdep.c (is_octeon): New function.
1600         (is_octeon_bbit_op): New function.
1601         (mips32_next_pc): Handle Octeon's bbit instructions.
1602         (mips32_instruction_has_delay_slot): Likewise.
1603
1604 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1605
1606         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
1607         before the function.
1608
1609 2012-08-19  Andrew Pinski  <apinski@cavium.com>
1610
1611         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
1612
1613 2012-08-19  Keith Seitz  <keiths@redhat.com>
1614
1615         PR c++/14365
1616         * c-typeprint.c (c_type_print_varspec_prefix): Pass
1617         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
1618
1619 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
1620
1621         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
1622         The typo broke "make TAGS".
1623
1624 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
1625
1626         GDB 7.5 released.
1627
1628 2012-08-17  Keith Seitz  <keiths@redhat.com>
1629
1630         PR c++/13356
1631         * gdbtypes.c (strict_type_checking): New variable.
1632         (show_strict_type_checking): New function.
1633         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
1634         if strict type checking is disabled.
1635         (_initialize_gdbtypes): Add "check type" subcommand.
1636         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
1637
1638 2012-08-17  Keith Seitz  <keiths@redhat.com>
1639
1640         * language.h (type_mode): Remove.
1641         (type_check): Remove.
1642         (struct language_defn): Remove la_type_check.
1643         (STRICT_TYPE): Remove unused macro.
1644         (type_error): Remove.
1645         * language.c (set_type_range_case): Renamed to ...
1646         (set_range_case): ... this.  Update all callers.
1647         Remove type_mode/type_check.
1648         (type_mode): Remove.
1649         (type_check): Remove.
1650         (show_type_command): Remove.
1651         (set_type_command): Remove.
1652         (language_info): Remove type checking output.
1653         (type_error): Remove unused function.
1654         (range_error): Update comment.
1655         (unknown_language_defn): Remove la_type_check.
1656         (auto_language_defn): Likewise.
1657         (local_language_defn): Likewise.
1658         (_initialize_language): Remove "check type" subcommand.
1659         * ada-lang.c (ada_language_defn): Remove la_type_check.
1660         * c-lang.c (c_language_defn): Likewise.
1661         (cplus_language_defn): Likewise.
1662         (asm_language_defn): Likewise.
1663         (minimal_language_defn): Likewise.
1664         * d-lang.c (d_language_defn): Likewise.
1665         * f-lang.c (f_language_defn): Likewise.
1666         * go-lang.c (go_language_defn): Likewise.
1667         * jv-lang.c (java_language_defn): Likewise.
1668         * m2-lang.c (m2_language_defn): Likewise.
1669         * objc-lang.c (objc_language_defn): Likewise.
1670         * opencl-lang.c (opencl_language_defn): Likewise.
1671         * p-lang.c (pascal_language_defn): Likewise.
1672
1673 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
1674
1675         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
1676
1677 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1678
1679         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
1680         New function.
1681         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
1682         using the regache.  Use ia64_hpux_get_register_from_save_state_t
1683         to access the bsp and bspstore registers if not.
1684
1685 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1686
1687         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
1688         * breakpoint.c (detach_breakpoints): Change pid parameter into
1689         a ptid.  Adjust code accordingly.
1690         * infrun.c (handle_inferior_event): Delete variable child_pid.
1691         Update call to detach_breakpoints to pass the child ptid for
1692         fork events.
1693         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
1694         assert that inferior_ptid's lwp is zero.
1695         (linux_handle_extended_wait): Update call to detach_breakpoints.
1696         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
1697         detach_breakpoints.
1698
1699 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1700
1701         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
1702         parent, only call detach_breakpoints if tts.tts_event ==
1703         TTEVT_VFORK.
1704
1705 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
1706
1707         * dwarf2-frame.c (dwarf2_frame_cache): Use
1708         get_frame_address_in_block instead of get_frame_pc as
1709         the bound for executing the frame's FDE.
1710
1711 2012-08-16  Yao Qi  <yao@codesourcery.com>
1712
1713         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
1714         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
1715         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
1716         (c_type_print_varspec_suffix): Likewise.
1717         * eval.c (evaluate_subexp_standard): Likewise.
1718         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
1719         (f_type_print_varspec_suffix): Likewise.
1720         * gdbtypes.c (is_scalar_type): Likewise.
1721         (recursive_dump_type): Likewise.
1722         * infcall.c (value_arg_coerce): Likewise.
1723         * m2-valprint.c (m2_val_print): Likewise.
1724         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
1725         (pascal_type_print_varspec_suffix): Likewise.
1726         (pascal_type_print_base): Likewise.
1727         * p-valprint.c (pascal_val_print): Likewise.
1728         (pascal_val_print): Likewise.
1729         * valops.c (value_slice): Likewise.
1730         * valprint.c (scalar_type_p): Likewise.
1731         * valarith.c (value_bitstring_subscript): Remove.
1732         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
1733         Remove comment on TYPE_CODE_BITSTRING.
1734
1735         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
1736         TYPE_CODE_BITSTRING.
1737
1738         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
1739         slot 0.
1740
1741 2012-08-16  Yao Qi  <yao@codesourcery.com>
1742
1743         * tracepoint.c (trace_find_none_command): Remove.
1744         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
1745
1746 2012-08-16  Yao Qi  <yao@codesourcery.com>
1747
1748         * remote.c (handle_notification): Remove parameter 'length'.
1749         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
1750
1751 2012-08-15  Keith Seitz  <keiths@redhat.com>
1752
1753         * gdbtypes.c (opaque_type_resolution): Make static.
1754         Add missing comment.
1755         (overload_debug): Add missing comment.
1756         (show_opaque_type_resolution): Likewise.
1757         (show_overload_debug): Likewise.
1758         (print_bit_vector): Remove unnecessary forward declaration.
1759         (print_arg_types): Likewise.
1760         (dump_fn_fieldlists): Likewise.
1761         (print_cplus_stuff): Likewise.
1762
1763 2012-08-15  Tom Tromey  <tromey@redhat.com>
1764
1765         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
1766         (gdb_bfd_ref): Initialize new field.
1767         (gdb_bfd_unref): Unref the archive BFD.
1768         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
1769         parent archive.
1770
1771 2012-08-15  Tom Tromey  <tromey@redhat.com>
1772
1773         PR python/14387:
1774         * python/py-bpevent.c (create_breakpoint_event_object): Update
1775         comment.
1776         * python/py-event.c (evpy_add_attribute): Update comment.
1777         * python/py-exitedevent.c (create_exited_event_object): Fix
1778         reference counting and error handling.
1779         * python/py-newobjfileevent.c (create_new_objfile_event_object):
1780         Fix reference counting.
1781         * python/py-signalevent.c (create_signal_event_object): Fix
1782         reference counting and error handling.
1783         * python/py-stopevent.c (emit_stop_event): Fix reference
1784         counting.
1785         * python/py-threadevent.c (get_event_thread): Return a
1786         borrowed reference.
1787         * python/py-type.c (convert_field): Fix reference counting.
1788
1789 2012-08-15  Tom Tromey  <tromey@redhat.com>
1790
1791         * dwarf2read.c (dwarf_decode_macro_bytes)
1792         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
1793         as hash key.
1794
1795 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
1796
1797         * infcmd.c (_initialize_infcmd): Update help text for the signal,
1798         stepi, nexti, finish, next, step, jump, and continue commands.
1799         * infrun.c (_initialize_infrun): Update help text for the handle
1800         command.
1801
1802 2012-08-14  Doug Evans  <dje@google.com>
1803
1804         * gdbtypes.c (struct extra): Delete, unused.
1805
1806         * gdbtypes.c: Whitespace cleanup.
1807         (address_space_name_to_int): Remove "extern" from definition.
1808         (_initialize_gdbtypes): Declare with initialize_file_ftype.
1809
1810         * gdbtypes.c (make_pointer_type): Remove redundant setting of
1811         TYPE_POINTER_TYPE (type).
1812
1813 2012-08-14  Gary Benson  <gbenson@redhat.com>
1814
1815         * solib-svr4.c (svr4_free_library_list): Use free_so.
1816
1817 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
1818
1819         * .gitignore: Add go-exp.c.
1820
1821 2012-08-13  Doug Evans  <dje@google.com>
1822
1823         * value.c (show_convenience): Tweak comment.
1824         (_initialize_values): Mention convenience functions in the help text
1825         for "show convenience".
1826
1827 2012-08-13  Yao Qi  <yao@codesourcery.com>
1828
1829         * std-operator.def: Remove TERNOP_SLICE_COUNT.
1830         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
1831         TERNOP_SLICE_COUNT.
1832         * eval.c (evaluate_subexp_standard): Likewise.
1833         * expprint.c (print_subexp_standard): Likewise.
1834         (dump_subexp_body_standard): Likewise.
1835         * parse.c (operator_length_standard): Likewise.
1836
1837 2012-08-13  Yao Qi  <yao@codesourcery.com>
1838
1839         * std-operator.def: Remove OP_BITSTRING.
1840         * breakpoint.c (watchpoint_exp_is_const): Update.
1841         * eval.c (evaluate_subexp_standard): Remove handling to
1842         OP_BITSTRING.
1843         * expprint.c (print_subexp_standard): Likewise.
1844         (dump_subexp_body_standard): Likewise.
1845         * parse.c (operator_length_standard): Likewise.
1846         * valops.c (value_bitstring): Remove.
1847         * value.h: Remove the declaration of 'value_bitstring'.
1848
1849 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1850
1851         * linespec.c (find_methods): Remove unused variables `i1' and
1852         `name_len'.
1853         (decode_line_full): Likewise for `arg_start'.
1854
1855 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1856
1857         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
1858         (zlib_decompress_section): Likewise for `section_data'.
1859         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
1860
1861 2012-08-10  Doug Evans  <dje@google.com>
1862
1863         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
1864         * NEWS: Document them.
1865         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
1866         function/strfns.py.
1867         * python/py-type.c (typy_array_1): New function.
1868         (typy_array): Call it.
1869         (typy_vector): New function.
1870         (type_object_methods): Add "vector".
1871         * python/lib/gdb/function/__init__.py: New file.
1872         * python/lib/gdb/function/strfns.py: New file.
1873
1874 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
1875
1876         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
1877         for TYPE_FIELD_BITPOS.
1878         (typy_get_sizeof): Likewise for TYPE_LENGTH.
1879
1880 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
1881
1882         PR cli/10436:
1883         * common/vec.h (VEC_merge): Define.
1884         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
1885         (DEF_VEC_ALLOC_FUNC_P): Likewise.
1886         (DEF_VEC_ALLOC_FUNC_O): Likewise.
1887         * completer.c: Include gdb_signals.h.
1888         (signal_completer): Define.
1889         * completer.h (signal_completer): Add prototype.
1890         * infcmd.c (_initialize_infcmd): Assign the command
1891         completer for "signal" to handle_completer.
1892         * infrun.c: Include completer.h.
1893         (handle_completer): Define.
1894         (_initialize_infrun): Declare a new local variable c.  Store the
1895         result of add_com("handle") to it.  Assign the command
1896         completer for "handle" to handle_completer.
1897
1898 2012-08-09  Yao Qi  <yao@codesourcery.com>
1899
1900         * cli/cli-decode.c (set_cmd_prefix): New.
1901         (lookup_cmd_for_prefixlist): New.
1902         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
1903         of each cmd_list_element in *prefixlist.
1904         (add_setshow_cmd_full): set_cmd_prefix.
1905         (add_alias_cmd): Likewise.
1906         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
1907         Declare 'auto_boolean_enums'.
1908         * cli/cli-setshow.c: Include "observer.h".
1909         (notify_command_param_changed_p): New.
1910         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
1911         Remove 'static'.
1912         (do_setshow_command): Split it to ...
1913         (do_set_command, do_show_command): ... them.  New.
1914         (do_set_command): Call observer_notify_command_param_changed if
1915         notify_command_param_changed_p returns true.
1916         (cmd_show_list): Caller update.
1917         * auto-load.c (set_auto_load_cmd): Likewise.
1918         * remote.c (show_remote_cmd): Likewise.
1919         * cli/cli-setshow.h: Update declarations.
1920         * top.c (execute_command): Call do_set_command and do_show_command.
1921
1922         * NEWS: Mention new MI notification.
1923         * mi/mi-interp.c: Declare mi_command_param_changed.
1924         (mi_interpreter_init): Attach mi_command_param_changed to
1925         observer command_param_changed.
1926         (mi_command_param_changed): New.
1927         Remove mi_suppress_breakpoint_notifications.
1928         Define global variable mi_suppress_notification.
1929         (mi_breakpoint_created): Update.
1930         (mi_breakpoint_deleted): Likewise.
1931         (mi_breakpoint_modified): Likewise.
1932         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
1933         'gdb-set' and set mi_suppress_notification.
1934         * mi/mi-main.h: (mi_suppress_notification): New struct.
1935
1936 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
1937             Jan Kratochvil  <jan.kratochvil@redhat.com>
1938
1939         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
1940
1941 2012-08-09  Yao Qi  <yao@codesourcery.com>
1942
1943         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
1944         (skiplist): Move it to skip.c.
1945         (init_cmd_lists): Remove code setting enablebreaklist and
1946         skiplist to NULL.
1947         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
1948         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
1949         skiplist.
1950         * gdbcmd.h: Likewise.
1951         * skip.c (_initialize_step_skip): Move 'skiplist' from
1952         cli/cli-cmds.c.
1953
1954 2012-08-09  Yao Qi  <yao@codesourcery.com>
1955
1956         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
1957         * gnu-nat.c, symfile.c: Likewise.
1958
1959 2012-08-08  Aaron Gamble  <agamble@google.com>
1960
1961         * utils.c (prompt_for_continue_wait_time): New static global.
1962         (make_command_stats_cleanup): Initialize it.
1963         (report_command_stats): Subtract time waiting for user.
1964         (prompt_for_continue): Track time waiting for user.
1965         (defaulted_query): Track time waiting for user.
1966
1967 2012-08-08  Doug Evans  <dje@google.com>
1968
1969         * eval.c (evaluate_subexp_standard): Fix thinko in handling
1970         UNOP_MEMVAL_TYPE.
1971         * expprint.c (print_subexp_standard, case OP_TYPE): New.
1972         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
1973         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
1974         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
1975         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
1976         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
1977         elt.
1978         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
1979         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
1980         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
1981         (dump_prefix_expression): Handle OP_TYPE.
1982
1983 2012-08-08  Keith Seitz  <keiths@redhat.com>
1984
1985         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
1986         addr_start.
1987
1988 2012-08-08  Doug Evans  <dje@google.com>
1989
1990         * linux-thread-db.c: #include "gdb_vecs.h".
1991         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
1992         updated.
1993         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
1994         (thread_db_load_search): Use a vector to iterate over path elements.
1995         Handle text appearing after "$pdir".
1996
1997         * gdb_string.h: Moved to ...
1998         * common/gdb_string.h: ... here.
1999         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
2000         gdb_string.h and gdb_assert.h.
2001
2002 2012-08-08  Yao Qi  <yao@codesourcery.com>
2003
2004         * tic6x-tdep.c (tic6x_register_to_value): Remove.
2005         (tic6x_value_to_register): Likewise.
2006         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
2007         and set_gdbarch_value_to_register.
2008
2009 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2010             Jean-Marc Saffroy  <saffroy@gmail.com>
2011
2012         PR 11804
2013         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
2014         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
2015         * gcore.c (gcore_create_callback): New function comment.  Add modified
2016         parameter.  Only write modified regions.  Set SEC_READONLY exactly
2017         according to MODIFIED.
2018         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
2019         the passed modified value to FUNC.
2020         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
2021         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
2022         first.  New variables modified and has_anonymous.  Parse the lines of
2023         smaps file.  Add the passed MODIFIED value to FUNC.
2024         * procfs.c (find_memory_regions_callback): Add the passed modified
2025         value.
2026
2027 2012-08-06  Tom Tromey  <tromey@redhat.com>
2028
2029         * dwarf2-frame.c (clear_pointer_cleanup): New function.
2030         (dwarf2_frame_cache): Use it.
2031         * frame-unwind.h (frame_sniffer_ftype): Document prologue
2032         cache initialization constraint.
2033
2034 2012-08-06  Tom Tromey  <tromey@redhat.com>
2035
2036         PR python/14386:
2037         * varobj.c (update_dynamic_varobj_children): Don't call
2038         PyIter_Check.
2039
2040 2012-08-06  Tom Tromey  <tromey@redhat.com>
2041
2042         PR cli/14392:
2043         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
2044
2045 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
2046
2047         * NEWS: New entry for 'cd' default parameters.
2048         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
2049
2050 2012-08-03  Tom Tromey  <tromey@redhat.com>
2051
2052         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
2053         return.
2054
2055 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
2056
2057         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
2058         to attempting lseek/write.
2059         (inf_child_fileio_pread): Likewise for pread.
2060
2061 2012-08-02  Yao Qi  <yao@codesourcery.com>
2062
2063         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
2064         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
2065         add_setshow_zinteger_cmd.
2066         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
2067         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
2068         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
2069         instead of add_setshow_zinteger_cmd.
2070         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
2071         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
2072         instead of add_setshow_zinteger_cmd.
2073         * frame.c (frame_debug): Add 'unsigned'.
2074         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
2075         add_setshow_zinteger_cmd.
2076         * frame.h: Update the declaration of 'frame_debug'.
2077         * gdbtypes.c (overload_debug): Add 'unsigned'.
2078         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
2079         add_setshow_zinteger_cmd.
2080         * inferior.h: Update declaration of 'debug_infrun'.
2081         * infrun.c (debug_infrun): Add 'unsigned'.
2082         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
2083         add_setshow_zinteger_cmd.
2084         * jit.c (jit_debug): Add 'unsigned'.
2085         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
2086         add_setshow_zinteger_cmd.
2087         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
2088         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
2089         instead of add_setshow_zinteger_cmd.
2090         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
2091         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
2092         add_setshow_zinteger_cmd.
2093         * machoread.c (mach_o_debug_level): Add 'unsigned'.
2094         (_initialize_machoread): Call add_setshow_zuinteger_cmd
2095         instead of add_setshow_zinteger_cmd.
2096         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
2097         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
2098         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
2099         intead of add_setshow_zinteger_cmd.
2100         * mips-tdep.c (mips_debug): Add 'unsigned'.
2101         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
2102         instead of add_setshow_zinteger_cmd.
2103         * monitor.c (monitor_debug): Add 'unsigned'.
2104         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
2105         add_setshow_zinteger_cmd.
2106         * observer.c (observer_debug): Add 'unsigned'.
2107         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
2108         add_setshow_zinteger_cmd.
2109         * parse.c (expressiondebug): Add 'unsigned'.
2110         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
2111         add_setshow_zinteger_cmd.
2112         * record.c (record_debug): Add 'unsigned'.
2113         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
2114         add_setshow_zinteger_cmd.
2115         * record.h: Update the declaration of 'record_debug'.
2116         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
2117         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
2118         add_setshow_zinteger_cmd.
2119         * serial.c (global_serial_debug_p): Add 'unsigned'.
2120         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
2121         add_setshow_zinteger_cmd.
2122         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
2123         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
2124         add_setshow_zinteger_cmd.
2125         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
2126         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
2127         add_setshow_zinteger_cmd.
2128         * target.c (targetdebug): Add 'unsigned'.
2129         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
2130         add_setshow_zinteger_cmd.
2131         * valops.c (overload_debug): Add 'unsigned'.
2132         * varobj.c (varobjdebug): Add 'unsigned'.
2133         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
2134         add_setshow_zinteger_cmd.
2135         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
2136         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
2137         instead of add_setshow_zinteger_cmd.
2138
2139         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
2140         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
2141         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
2142         instead of add_setshow_zinteger_cmd.
2143         * gdbarch.c, gdbarch.h: Re-generated.
2144
2145 2012-08-02  Yao Qi  <yao@codesourcery.com>
2146
2147         * nto-tdep.c: Don't include cli/cli-decode.h and
2148         cli/cli-cmds.h.
2149         (_initialize_nto_tdep): Remove.
2150         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
2151         Remove field.
2152         Remove macro nto_internal_debugging.
2153
2154 2012-08-01  Richard Henderson  <rth@redhat.com>
2155
2156         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
2157         (mep-*-*) [gdb_target_obs]: Likewise.
2158
2159 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
2160
2161         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
2162         linux_get_siginfo_type.
2163
2164 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
2165
2166         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
2167         AT_ENTRY_POINT.
2168         (call_function_by_hand) <ON_STACK>: Call write_memory with
2169         gdbarch_breakpoint_from_pc, if possible.
2170         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
2171         here.
2172
2173 2012-07-31  Yao Qi  <yao@codesourcery.com>
2174
2175         * tracepoint.c: Add 'static' for some variables.
2176
2177 2012-07-31  Yao Qi  <yao@codesourcery.com>
2178
2179         * go32-nat.c: Declare _initialize_go32_nat.
2180         * ser-go32.c: Declare _initialize_ser_dos.
2181         * top.c (do_chdir_cleanup): Add 'static'.
2182
2183 2012-07-30  Keith Seitz  <keiths@redhat.com>
2184
2185         * linespec.c (linespec_lex_number): A number followed
2186         by quotes is a valid number, too.
2187
2188 2012-07-30  Tom Tromey  <tromey@redhat.com>
2189
2190         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
2191
2192 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
2193
2194         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
2195         attempt to 4-byte-align HW breakpoint addresses for Thumb.
2196
2197 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
2198
2199         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
2200         invalid or reevaluated to prevent prevent references to possibly
2201         delete'd type objects being left in the varobj.
2202
2203 2012-07-27  Tom Tromey  <tromey@redhat.com>
2204             Jan Kratochvil  <jan.kratochvil@redhat.com>
2205
2206         * copying.awk: Print buffer-read-only and vi ro markers.
2207         * copying.c: Rebuild.
2208         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
2209         * gdbarch.c, gdbarch.h: Rebuild.
2210         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
2211         buffer-read-only and vi ro markers.
2212         * features/arm-with-iwmmxt.c: Rebuild.
2213         * features/arm-with-m-fpa-layout.c: Rebuild.
2214         * features/arm-with-m-vfp-d16.c: Rebuild.
2215         * features/arm-with-m.c: Rebuild.
2216         * features/arm-with-neon.c: Rebuild.
2217         * features/arm-with-vfpv2.c: Rebuild.
2218         * features/arm-with-vfpv3.c: Rebuild.
2219         * features/i386/amd64-avx-linux.c: Rebuild.
2220         * features/i386/amd64-avx.c: Rebuild.
2221         * features/i386/amd64-linux.c: Rebuild.
2222         * features/i386/amd64.c: Rebuild.
2223         * features/i386/i386-avx-linux.c: Rebuild.
2224         * features/i386/i386-avx.c: Rebuild.
2225         * features/i386/i386-linux.c: Rebuild.
2226         * features/i386/i386-mmx-linux.c: Rebuild.
2227         * features/i386/i386-mmx.c: Rebuild.
2228         * features/i386/i386.c: Rebuild.
2229         * features/i386/x32-avx-linux.c: Rebuild.
2230         * features/i386/x32-avx.c: Rebuild.
2231         * features/i386/x32-linux.c: Rebuild.
2232         * features/i386/x32.c: Rebuild.
2233         * features/mips-dsp-linux.c: Rebuild.
2234         * features/mips-linux.c: Rebuild.
2235         * features/mips64-dsp-linux.c: Rebuild.
2236         * features/mips64-linux.c: Rebuild.
2237         * features/rs6000/powerpc-32.c: Rebuild.
2238         * features/rs6000/powerpc-32l.c: Rebuild.
2239         * features/rs6000/powerpc-403.c: Rebuild.
2240         * features/rs6000/powerpc-403gc.c: Rebuild.
2241         * features/rs6000/powerpc-405.c: Rebuild.
2242         * features/rs6000/powerpc-505.c: Rebuild.
2243         * features/rs6000/powerpc-601.c: Rebuild.
2244         * features/rs6000/powerpc-602.c: Rebuild.
2245         * features/rs6000/powerpc-603.c: Rebuild.
2246         * features/rs6000/powerpc-604.c: Rebuild.
2247         * features/rs6000/powerpc-64.c: Rebuild.
2248         * features/rs6000/powerpc-64l.c: Rebuild.
2249         * features/rs6000/powerpc-7400.c: Rebuild.
2250         * features/rs6000/powerpc-750.c: Rebuild.
2251         * features/rs6000/powerpc-860.c: Rebuild.
2252         * features/rs6000/powerpc-altivec32.c: Rebuild.
2253         * features/rs6000/powerpc-altivec32l.c: Rebuild.
2254         * features/rs6000/powerpc-altivec64.c: Rebuild.
2255         * features/rs6000/powerpc-altivec64l.c: Rebuild.
2256         * features/rs6000/powerpc-cell32l.c: Rebuild.
2257         * features/rs6000/powerpc-cell64l.c: Rebuild.
2258         * features/rs6000/powerpc-e500.c: Rebuild.
2259         * features/rs6000/powerpc-e500l.c: Rebuild.
2260         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
2261         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
2262         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
2263         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
2264         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
2265         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
2266         * features/rs6000/powerpc-vsx32.c: Rebuild.
2267         * features/rs6000/powerpc-vsx32l.c: Rebuild.
2268         * features/rs6000/powerpc-vsx64.c: Rebuild.
2269         * features/rs6000/powerpc-vsx64l.c: Rebuild.
2270         * features/rs6000/rs6000.c: Rebuild.
2271         * features/s390-linux32.c: Rebuild.
2272         * features/s390-linux32v1.c: Rebuild.
2273         * features/s390-linux32v2.c: Rebuild.
2274         * features/s390-linux64.c: Rebuild.
2275         * features/s390-linux64v1.c: Rebuild.
2276         * features/s390-linux64v2.c: Rebuild.
2277         * features/s390x-linux64.c: Rebuild.
2278         * features/s390x-linux64v1.c: Rebuild.
2279         * features/s390x-linux64v2.c: Rebuild.
2280         * features/tic6x-c62x-linux.c: Rebuild.
2281         * features/tic6x-c62x.c: Rebuild.
2282         * features/tic6x-c64x-linux.c: Rebuild.
2283         * features/tic6x-c64x.c: Rebuild.
2284         * features/tic6x-c64xp-linux.c: Rebuild.
2285         * features/tic6x-c64xp.c: Rebuild.
2286
2287 2012-07-27  Tom Tromey  <tromey@redhat.com>
2288
2289         * c-exp.y (classify_name): Avoid assignment in condition.
2290
2291 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
2292
2293         * amd64-windows-tdep.c: Include "frame.h".
2294         (amd64_windows_skip_trampoline_code): New function.
2295         (amd64_windows_init_abi): Add trampoline registration.
2296
2297 2012-07-27  Yao Qi  <yao@codesourcery.com>
2298
2299         * tracepoint.c (cur_traceframe_number): Remove.
2300         (set_tfile_traceframe): Remove.
2301         (tfile_trace_find, tfile_fetch_registers): Update callers.
2302         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
2303         (tfile_open, tfile_trace_find): Likewise.
2304
2305 2012-07-27  Yao Qi  <yao@codesourcery.com>
2306
2307         * thread.c (switch_to_thread): Don't call registers_changed.
2308
2309 2012-07-26  Tom Tromey  <tromey@redhat.com>
2310
2311         * Makefile.in (SFILES): Remove objc-exp.y.
2312         (YYFILES): Remove objc-exp.c.
2313         (YYOBJ): Remove objc-exp.o.
2314         (local-maintainer-clean): Don't mention objc-exp.c.
2315         * c-exp.y: Include objc-lang.h.
2316         (%union) <class>: New field.
2317         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
2318         (exp): Clone subscript production for OBJC_LBRAC.  Add various
2319         Objective C productions.
2320         (msglist, msgarglist, msgarg): New productions.
2321         (array_mod, func_mod, operator): Clone productions for
2322         OBJC_LBRAC.
2323         (parse_string_or_char): Handle '@' strings.
2324         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
2325         (classify_name): Check la_name_of_this.  Recognize ObjC class
2326         names.
2327         * objc-exp.y: Remove.
2328         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
2329         * objc-lang.h (objc_parse, objc_error): Don't declare.
2330
2331 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
2332
2333         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
2334
2335 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2336
2337         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
2338         and decrement.
2339
2340 2012-07-26  Tom Tromey  <tromey@redhat.com>
2341
2342         * copying.c: Rebuild.
2343         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
2344         'no_class'.
2345
2346 2012-07-26  Tom Tromey  <tromey@redhat.com>
2347
2348         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
2349         immediate_quit.
2350         (print_objfile_statistics): Likewise.
2351         (maintenance_print_symbols): Likewise.
2352         (maintenance_print_msymbols): Likewise.
2353         (maintenance_print_objfiles): Likewise.
2354         * psymtab.c (print_partial_symbols): Call QUIT.
2355         (maintenance_print_psymbols): Likewise.  Don't modify
2356         immediate_quit.
2357         * copying.c (show_copying_command): Don't modify immediate_quit.
2358         (show_warranty_command): Likewise.
2359         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
2360
2361 2012-07-26  Keith Seitz  <keiths@redhat.com>
2362
2363         * linespec.c (linespec_lexer_lex_number): The input
2364         is also a valid number if the next character is a comma
2365         or colon.
2366
2367 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
2368
2369         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
2370         configure options.
2371
2372 2012-07-26  Tristan Gingold  <gingold@adacore.com>
2373
2374         * machoread.c: Include gdb_bfd.h.
2375
2376 2012-07-26  Tristan Gingold  <gingold@adacore.com>
2377
2378         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
2379         offset.
2380
2381 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2382
2383         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
2384         SIZE to size_t.
2385         (dwarf2_evaluate_loc_desc): Likewise.
2386         (dwarf2_loc_desc_needs_frame): Likewise.
2387         (locexpr_describe_location_1): Likewise.
2388         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
2389         size_t.
2390         (struct dwarf2_loclist_baton): Likewise.
2391         * dwarf2read.c (struct dwarf_block): Likewise.
2392         (dump_die_shallow): Use pulongest to print dwarf_block.size.
2393         (decode_locdesc): Expand SIZE and I to size_t.
2394
2395 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
2396
2397         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
2398
2399 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
2400
2401         * doublest.c (convert_doublest_to_floatformat): If the exponent
2402         is too small, treat the value as zero.  If the exponent is too
2403         large, treat the value as infinity.
2404
2405 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
2406
2407         * configure.ac: Add --enable-lmcheck configure option.
2408         * configure: Regenerate.
2409
2410 2012-07-25  Tom Tromey  <tromey@redhat.com>
2411
2412         * NEWS: Mention maint info bfds.
2413         * gdb_bfd.c (all_bfds): New global.
2414         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
2415         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
2416         New functions.
2417
2418 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
2419
2420         * configure.tgt: Add v850*-*-rtems*.
2421
2422 2012-07-25  Tom Tromey  <tromey@redhat.com>
2423
2424         * macrotab.c (macro_bcache_str): Remove cast.
2425
2426 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
2427
2428         * linespec.c (linespec_lexer_lex_number): Update comments,
2429         change the return and add check to make sure the input is
2430         the decimal numbers.
2431         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
2432         false, call linespec_lexer_lex_string.
2433
2434 2012-07-24  Tom Tromey  <tromey@redhat.com>
2435
2436         * symfile.c (symbol_file_add): Don't open BFD twice.
2437
2438 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
2439
2440         * breakpoint.c (create_breakpoint): Store condition for pending
2441         breakpoints.
2442
2443 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
2444
2445         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
2446         (m68k_return_value): Handle complex types like structures.
2447         (m68k_svr4_return_value): Likewise.
2448
2449 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
2450
2451         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
2452         parameters to bfd_get_section_name.
2453
2454 2012-07-24  Yao Qi  <yao@codesourcery.com>
2455
2456         * cli/cli-setshow.c: Handle case 'var_uinteger'
2457         and 'var_zuninteger' together.  Handle case 'var_integer' and
2458         'var_zinteger' together.
2459
2460 2012-07-23  Keith Seitz  <keiths@redhat.com>
2461
2462         * linespec.c (convert_linespec_to_sal): Don't add
2463         any symbols to the result vector if symbol_to_sal
2464         returns zero.
2465
2466 2012-07-23  Keith Seitz  <keiths@redhat.com>
2467
2468         * linespec.c (decode_objc): Record the function name
2469         in the linespec.
2470
2471 2012-07-23  Tom Tromey  <tromey@redhat.com>
2472
2473         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
2474         counting.
2475         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
2476         (map_vmap): Acquire a reference to the BFD.
2477
2478 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
2479
2480         * p-valprint.c (pascal_object_print_value): Replace potentially
2481         unsafe alloca with xmalloc/xfree.
2482         * valops.c (search_struct_method): Likewise.
2483
2484 2012-07-23  Tom Tromey  <tromey@redhat.com>
2485
2486         * solib-svr4.c (enable_break): Update.
2487         * bfd-target.h (target_bfd_reopen): Update documentation.
2488
2489 2012-07-23  Tom Tromey  <tromey@redhat.com>
2490
2491         * symfile.c (separate_debug_file_exists): Update.
2492         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
2493         (reread_symbols): Update.
2494         * elfread.c (build_id_verify): Update.
2495         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
2496         bfd_open_maybe_remote.
2497
2498 2012-07-23  Tom Tromey  <tromey@redhat.com>
2499
2500         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
2501
2502 2012-07-23  Tom Tromey  <tromey@redhat.com>
2503
2504         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
2505         and 'abfd'.
2506         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
2507         and 'abfd'.
2508         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
2509         * machoread.c (macho_add_oso_symfile): Make a cleanup for
2510         'abfd'.
2511         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
2512         * objfiles.c (allocate_objfile): Acquire a new reference.
2513         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
2514         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
2515         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
2516         a cleanup for 'nbfd'.
2517         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
2518         for 'nbfd'.
2519         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
2520         make a cleanup for 'abfd'.
2521         (symbol_file_add): Make a BFD cleanup.
2522
2523 2012-07-23  Tom Tromey  <tromey@redhat.com>
2524
2525         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
2526         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
2527         * corelow.c (core_open): Use gdb_bfd_fopen.
2528         * dsrec.c (load_srec): Use gdb_bfd_openr.
2529         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
2530         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
2531         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2532         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2533         (gdb_bfd_fdopenr): New functions.
2534         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2535         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2536         (gdb_bfd_fdopenr): Declare.
2537         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
2538         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
2539         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
2540         gdb_bfd_openr_next_archived_file.
2541         (macho_check_dsym): Use gdb_bfd_openr.
2542         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
2543         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
2544         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
2545         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
2546         gdb_bfd_openr.
2547         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
2548         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
2549         gdb_bfd_openr_next_archived_file.
2550         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2551         Use gdb_bfd_openr.
2552         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2553         gdb_bfd_openr.
2554         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
2555         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
2556         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
2557         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
2558         (symfile_bfd_open): Use gdb_bfd_fopen.
2559         (generic_load): Use gdb_bfd_openr.
2560         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
2561
2562 2012-07-23  Tom Tromey  <tromey@redhat.com>
2563
2564         * bfd-target.c (target_bfd_reopen): Update.
2565         * cli/cli-dump.c (bfd_openr_with_cleanup)
2566         (bfd_openw_with_cleanup): Update.
2567         * corelow.c (core_open): Update.
2568         * dsrec.c (load_srec): Update.
2569         * exec.c (exec_file_attach): Update.
2570         * gcore.c (create_gcore_bfd): Update.
2571         * gdb_bfd.c (gdb_bfd_ref): Return void.
2572         (gdb_bfd_open): Update.
2573         * gdb_bfd.h (gdb_bfd_ref): Return void.
2574         Update comments.
2575         * jit.c (jit_bfd_try_read_symtab): Update.
2576         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2577         * machoread.c (macho_symfile_read_all_oso): Update.
2578         (macho_check_dsym): Update.
2579         * procfs.c (insert_dbx_link_bpt_in_file): Update.
2580         * remote-m32r-sdi.c (m32r_load): Update.
2581         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
2582         * rs6000-nat.c (add_vmap): Update.
2583         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2584         Update.
2585         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
2586         * solib-spu.c (spu_bfd_open): Update.
2587         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
2588         * spu-linux-nat.c (spu_bfd_open): Update.
2589         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
2590         (generic_load): Update.
2591         * windows-nat.c (windows_make_so): Update.
2592
2593 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
2594
2595         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
2596
2597 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
2598
2599         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
2600         SIGTRAMP_FRAME unwinding.
2601
2602 2012-07-20  Doug Evans  <dje@google.com>
2603
2604         * NEWS: Document new options "set/show use-deprecated-index-sections",
2605         and delete reference to --use-deprecated-index-sections.
2606         * symfile.h (use_deprecated_index_sections): Delete.
2607         * dwarf2read.c (use_deprecated_index_sections): Make static.
2608         (read_index_from_section): Update wording of how to load
2609         deprecated index sections.
2610         (_initialize_dwarf2_read): New options
2611         "set/show use-deprecated-index-sections".
2612         * main.c (captured_main): Delete --use-deprecated-index-sections.
2613
2614 2012-07-20  Pedro Alves  <palves@redhat.com>
2615
2616         PR threads/11692
2617         PR gdb/12203
2618
2619         * infrun.c (handle_inferior_event) <new thread>: Don't special
2620         case minus_one_ptid.
2621         <TARGET_WAITKIND_SPURIOUS>: Ditto.
2622         * linux-thread-db.c (thread_get_info_callback): Don't return early
2623         if the thread is zombie.
2624         (thread_from_lwp): Change return type to void.  Rewrite stale
2625         comment.
2626         (attach_thread): Don't return early if the thread is zombie,
2627         instead set its "dying" flag.
2628         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
2629         (find_new_threads_callback): Don't return early if the thread is
2630         zombie.
2631
2632 2012-07-20  Pedro Alves  <palves@redhat.com>
2633
2634         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
2635         * target.c (target_wait): Likewise.
2636         (str_comma_list_concat_elem, do_option, target_options_to_string):
2637         New functions.
2638         * target.h (target_options_to_string): Declare.
2639
2640 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
2641             Tom Tromey  <tromey@redhat.com>
2642
2643         * dwarf2read.c (dwarf_decode_macros)
2644         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
2645         DW_MACRO_GNU_transparent_include_alt>: New cases.
2646         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
2647         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
2648
2649 2012-07-20  Tom Tromey  <tromey@redhat.com>
2650
2651         * dwarf2read.c (try_open_dwo_file): Don't call
2652         gdb_bfd_stash_filename.
2653
2654 2012-07-20  Pedro Alves  <palves@redhat.com>
2655
2656         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2657         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
2658         (i386_process_record): Tweak description comments.
2659
2660 2012-07-20  Pedro Alves  <palves@redhat.com>
2661
2662         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2663         (i386_process_record): Use record_read_memory.
2664         * record.c (record_read_memory): New function.
2665         (record_arch_list_add_mem, record_exec_insn): Use
2666         record_read_memory.
2667         * record.h (record_read_memory): Declare.
2668
2669 2012-07-20  Yao Qi  <yao@codesourcery.com>
2670
2671         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
2672         NULL for xfree.
2673
2674 2012-07-19  Pedro Alves  <palves@redhat.com>
2675
2676         * record.c (record_resume): Ask the target beneath to report all
2677         signals.
2678
2679 2012-07-19  Doug Evans  <dje@google.com>
2680
2681         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
2682         there's no section at address zero.
2683         (dwarf2_record_block_ranges): Ditto.
2684
2685 2012-07-19  Yao Qi  <yao@codesourcery.com>
2686
2687         * command.h, remote.c: Fix a typo in comment.
2688
2689 2012-07-19  Tom Tromey  <tromey@redhat.com>
2690
2691         PR exp/13206:
2692         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
2693         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
2694         OP_DECLTYPE>: New cases.
2695         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
2696         (type_exp): Add new productions.
2697         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
2698         and decltype.
2699         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
2700         New case.
2701         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
2702         OP_DECLTYPE>: New case.
2703         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
2704         New case.
2705         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
2706         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
2707
2708 2012-07-19  Tom Tromey  <tromey@redhat.com>
2709
2710         * c-exp.y (enum token_flags): New.
2711         (struct token) <cxx_only>: Remove.
2712         <flags>: New field.
2713         (tokentab3, tokentab2, ident_tokens): Update.
2714         (lex_one_token): Update.  Handle FLAG_SHADOW.
2715
2716 2012-07-19  Tom Tromey  <tromey@redhat.com>
2717
2718         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
2719         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
2720         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
2721         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
2722         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
2723         type_exp production where appropriate.
2724         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
2725         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
2726         <UNOP_MEMVAL_TYPE>: New case.
2727         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
2728         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
2729         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
2730         <UNOP_MEMVAL_TYPE>: New case.
2731         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
2732         UNOP_REINTERPRET_CAST>: Update.
2733         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2734         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
2735         UNOP_REINTERPRET_CAST>: Update.
2736         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2737         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
2738         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
2739         constants.
2740
2741 2012-07-19  Yao Qi  <yao@codesourcery.com>
2742             Jan Kratochvil <jan.kratochvil@redhat.com>
2743
2744         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
2745         and case 'var_optional_filename' together.
2746         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
2747         instead of add_setshow_optional_filename_cmd for setshow command
2748         'args'.  Set completer for 'set args'.
2749
2750 2012-07-18  Doug Evans  <dje@google.com>
2751
2752         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
2753         * common/gdb_vecs.c: New file, contents from utils.c.
2754         * common/host-defs.h: New file, contents from defs.h.
2755         * utils.h: New file, contents from defs.h.
2756         * defs.h: Move all declarations of objects defined in utils.c
2757         to utils.h (except QUIT() and related).
2758         #include "utils.h", "host-defs.h".
2759         * probe.h (probe_p): Move here from gdb_vecs.h.
2760         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
2761         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
2762         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
2763         * Makefile.in (SFILES): Add common/gdb_vecs.c.
2764         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
2765         (COMMON_OBS): Add gdb_vecs.o.
2766         (gdb_vecs.o): New rule.
2767
2768 2012-07-18  Keith Seitz  <keiths@redhat.com>
2769
2770         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
2771         parameter.  If non-zero, use SYMNAME as the canonical name
2772         for the SaL.
2773         Update all callers.
2774         (convert_linespec_to_sals): Use add_sal_to_sals for
2775         expressions, too.
2776         (decode_line_full): No need to "fill in missing canonical names"
2777         anymore. Simply make cleanups for the allocated names.
2778
2779 2012-07-18  Keith Seitz  <keiths@redhat.com>
2780
2781         * linespec.c (struct linespec): Constify expression,
2782         source_filename, function_name, and label_name.
2783         (symbol_not_found_error): Make all parameters const.
2784         (linespec_parser_delete): No need to check for NULL
2785         when using xfree. Cast const char * to char * for xfree.
2786
2787 2012-07-18  Keith Seitz  <keiths@redhat.com>
2788
2789         * breakpoint.c (invalid_thread_id_error): New function.
2790         (find_condition_and_thread): Use invalid_thread_id_error.
2791         (watch_command_1): Likewise.
2792
2793 2012-07-18  Tom Tromey  <tromey@redhat.com>
2794
2795         * cc-with-index.sh, cc-with-dwz.sh: Remove.
2796         * contrib/cc-with-tweaks.sh: New file.
2797
2798 2012-07-18  Tom Tromey  <tromey@redhat.com>
2799
2800         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
2801         (locate_dwz_sections): Recognize .gdb_index.
2802         (create_cus_from_index_list): New function.
2803         (create_cus_from_index): Use it.  Handle .dwz data.
2804         (read_index_from_section): New function, extracted from
2805         dwarf2_read_index.
2806         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
2807         if needed.
2808
2809 2012-07-18  Tom Tromey  <tromey@redhat.com>
2810
2811         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
2812         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
2813         <is_dwz>: New field.
2814         (struct dwz_file): New.
2815         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
2816         (locate_dwz_sections, dwarf2_get_dwz_file)
2817         (get_abbrev_section_for_cu): New functions.
2818         (error_check_comp_unit_head, read_and_check_comp_unit_head)
2819         (read_and_check_type_unit_head): Add abbrev_section argument.
2820         (create_debug_types_hash_table): Update.
2821         (init_cutu_and_read_dies): Use proper abbrev section.
2822         (init_cutu_and_read_dies_no_follow): Likewise.
2823         (set_partial_user): Do nothing if PST==NULL.
2824         (read_comp_units_from_section): New function.
2825         (create_all_comp_units): Use it.
2826         (scan_partial_symbols, partial_die_parent_scope): Update.
2827         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2828         (process_imported_unit_die, read_partial_die): Handle .dwz files.
2829         (find_partial_die): Add offset_in_dwz argument.  Update.
2830         (guess_partial_die_structure_name, fixup_partial_die): Update.
2831         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
2832         DW_FORM_GNU_strp_alt.
2833         (read_indirect_string_from_dwz): New function.
2834         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
2835         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
2836         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
2837         (follow_die_offset): Add offset_in_dwz argument.
2838         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
2839         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
2840         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
2841         Handle new macro forms.
2842         (dwarf_decode_macros): Update.
2843         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
2844         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
2845         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
2846         (create_debug_types_hash_table): Use correct abbrev section.
2847         (get_debug_line_section): New function.
2848         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
2849         (process_full_comp_unit): Pass 'required' argument to
2850         end_symtab_get_static_block.
2851         * buildsym.h (end_symtab_get_static_block): Update.
2852         * buildsym.c (end_symtab_get_static_block): Add 'required'
2853         argument.
2854         (end_symtab, end_expandable_symtab): Update.
2855
2856 2012-07-18  Tom Tromey  <tromey@redhat.com>
2857
2858         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
2859         (pagesize): Remove.
2860         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
2861         (zlib_decompress_section): Remove.
2862         (dwarf2_read_section): Use gdb_bfd_map_section.
2863         (munmap_section_buffer): Remove.
2864         (free_dwo_file, dwarf2_per_objfile_free): Don't use
2865         munmap_section_buffer.
2866         * gdb_bfd.c: Include zlib.h, sys/mman.h.
2867         (struct gdb_bfd_section_data): New.
2868         (free_one_bfd_section): New function.
2869         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
2870         (get_section_descriptor, zlib_decompress_section)
2871         (gdb_bfd_map_section): New functions.
2872         * gdb_bfd.h (gdb_bfd_map_section): Declare.
2873
2874 2012-07-18  Tom Tromey  <tromey@redhat.com>
2875
2876         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
2877
2878 2012-07-18  Tom Tromey  <tromey@redhat.com>
2879
2880         * gdb_bfd.c (struct gdb_bfd_data): New.
2881         (gdb_bfd_cache): New global.
2882         (struct gdb_bfd_cache_search): New.
2883         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
2884         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
2885         * gdb_bfd.h (gdb_bfd_open): Declare.
2886
2887 2012-07-18  Tom Tromey  <tromey@redhat.com>
2888
2889         * utils.c (make_cleanup_bfd_unref): Rename from
2890         make_cleanup_bfd_close.
2891         * defs.h (make_cleanup_bfd_unref): Rename from
2892         make_cleanup_bfd_close.
2893         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
2894         (bfd_openw_with_cleanup): Update.
2895         * corelow.c (core_open): Update.
2896         * dsrec.c (load_srec): Update.
2897         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2898         * remote-m32r-sdi.c (m32r_load): Update.
2899         * remote-mips.c (mips_load_srec): Update.
2900         (pmon_load_fast): Update.
2901         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2902         Update.
2903         (darwin_bfd_open): Update.
2904         * solib.c (solib_bfd_fopen): Update.
2905         * symfile-mem.c (symbol_file_add_from_memory): Update.
2906         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
2907         (symfile_bfd_open): Update.
2908         (generic_load): Update.
2909
2910 2012-07-18  Tom Tromey  <tromey@redhat.com>
2911
2912         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
2913         (pmon_load_fast): Likewise.
2914         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
2915         (m32r_upload_command): Likewise.
2916         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
2917         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2918         Use make_cleanup_bfd_close.
2919
2920 2012-07-18  Tom Tromey  <tromey@redhat.com>
2921
2922         * symfile.c (symfile_bfd_open): Don't copy name.  Call
2923         gdb_bfd_stash_filename.
2924         (load_command): Open the new BFD before freeing the old.
2925         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
2926         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
2927         Call gdb_bfd_stash_filename.
2928         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
2929         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
2930         gdb_bfd_stash_filename.
2931         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2932         Free found_pathname.
2933         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
2934         gdb_bfd_stash_filename.
2935         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
2936         * machoread.c (macho_add_oso_symfile): Call
2937         gdb_bfd_stash_filename.
2938         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
2939         gdb_bfd_stash_filename.
2940         (macho_check_dsym): Don't copy filename.  Call
2941         gdb_bfd_stash_filename.
2942         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
2943         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
2944         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
2945         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
2946         * exec.c (exec_close): Don't free the BFD's filename.
2947         (exec_file_attach): Don't copy the filename.  Call
2948         gdb_bfd_stash_filename.
2949         * corelow.c (core_close): Don't free the BFD's filename.
2950         (core_open): Call gdb_bfd_stash_filename.
2951         * corefile.c (reopen_exec_file): Remove #if 0 code.
2952         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
2953         pathname.
2954         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
2955
2956 2012-07-18  Tom Tromey  <tromey@redhat.com>
2957
2958         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
2959         gdb_bfd_unref.
2960         (free_dwo_file): Use gdb_bfd_unref.
2961         * cli/cli-dump.c: Include gdb_bfd.h.
2962         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
2963         (bfd_openr_with_cleanup): Likewise.
2964         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
2965         gdb_bfd_unref.
2966         * utils.c: Include gdb_bfd.h.
2967         (do_bfd_close_cleanup): Use gdb_bfd_unref.
2968         * symfile.c: Include gdb_bfd.h.
2969         (separate_debug_file_exists): Use gdb_bfd_unref.
2970         (bfd_open_maybe_remote): Use gdb_bfd_ref.
2971         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2972         (generic_load): Use gdb_bfd_ref.
2973         (reread_symbols): Use gdb_bfd_unref.
2974         * symfile-mem.c: Include gdb_bfd.h.
2975         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
2976         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
2977         * solib.c: Include gdb_bfd.h.
2978         (solib_bfd_fopen): Use gdb_bfd_ref.
2979         (solib_bfd_open): Use gdb_bfd_unref.
2980         (free_so_symbols): Use gdb_bfd_unref.
2981         (reload_shared_libraries_1): Use gdb_bfd_unref.
2982         * solib-spu.c: Include gdb_bfd.h.
2983         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
2984         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
2985         gdb_bfd_unref.
2986         * solib-frv.c: Include gdb_bfd.h.
2987         (enable_break2): Use gdb_bfd_unref.
2988         * solib-dsbt.c: Include gdb_bfd.h.
2989         (enable_break2): Use gdb_bfd_unref.
2990         * solib-darwin.c: Include gdb_bfd.h.
2991         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
2992         gdb_bfd_unref.
2993         (darwin_bfd_open): Use gdb_bfd_unref.
2994         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
2995         * remote-mips.c: Include gdb_bfd.h.
2996         (mips_load_srec): Use gdb_bfd_ref.
2997         (pmon_load_fast): Use gdb_bfd_ref.
2998         * remote-m32r-sdi.c: Include gdb_bfd.h.
2999         (m32r_load): Use gdb_bfd_ref.
3000         * record.c: Include gdb_bfd.h.
3001         (record_save_cleanups): Use gdb_bfd_unref.
3002         (cmd_record_save): Use gdb_bfd_unref.
3003         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
3004         gdb_bfd_unref.
3005         * objfiles.h (gdb_bfd_close_or_warn): Remove.
3006         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
3007         * objfiles.c: Include gdb_bfd.h.
3008         (free_objfile): Use gdb_bfd_unref.
3009         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
3010         gdb_bfd.c.
3011         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
3012         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
3013         (macho_check_dsym): Likewise.
3014         * m32r-rom.c: Include gdb_bfd.h.
3015         (m32r_load): Use gdb_bfd_ref.
3016         (m32r_upload_command): Use gdb_bfd_ref.
3017         * jit.c: Include gdb_bfd.h.
3018         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
3019         * gdb_bfd.h: New file.
3020         * gdb_bfd.c: New file.
3021         * gcore.c: Include gdb_bfd.h.
3022         (create_gcore_bfd): Use gdb_bfd_ref.
3023         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
3024         (gcore_command): Use gdb_bfd_unref.
3025         * exec.c: Include gdb_bfd.h.
3026         (exec_close): Use gdb_bfd_unref.
3027         (exec_close_1): Use gdb_bfd_unref.
3028         (exec_file_attach): Use gdb_bfd_ref.
3029         * elfread.c: Include gdb_bfd.h.
3030         (build_id_verify): Use gdb_bfd_unref.
3031         * dsrec.c: Include gdb_bfd.h.
3032         (load_srec): Use gdb_bfd_ref.
3033         * corelow.c: Include gdb_bfd.h.
3034         (core_close): Use gdb_bfd_unref.
3035         (core_open): Use gdb_bfd_ref.
3036         * bfd-target.c: Include gdb_bfd.h.
3037         (target_bfd_xclose): Use gdb_bfd_unref.
3038         (target_bfd_reopen): Use gdb_bfd_ref.
3039         * Makefile.in (SFILES): Add gdb_bfd.c.
3040         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
3041         (COMMON_OBS): Add gdb_bfd.o.
3042
3043 2012-07-18  Keith Seitz  <keiths@redhat.com>
3044
3045         * breakpoint.c (find_condition_and_thread): Initialize
3046         TASK and REST.
3047         (create_breakpiont): find_condition_and_thread will now
3048         initialize COND_STRING, THREAD, and REST (and TASK).
3049         (addr_string_to_sals): Likewise.
3050
3051 2012-07-18  Pedro Alves  <palves@redhat.com>
3052
3053         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
3054         Pull the single step breakpoints out of the target.
3055
3056 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
3057
3058         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
3059         * stap-probe.c (compile_probe_arg): Likewise.
3060
3061 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
3062
3063         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
3064         (elf_compile_to_ax): Likewise.
3065         * infrun.c (insert_exception_resume_from_probe): Likewise.
3066         (check_exception_resume): Remove `objfile' variable.
3067         * probe.c (find_probe_by_pc): Remove `objfile' argument.
3068         (struct probe_and_objfile, probe_and_objfile_s): Delete.
3069         (collect_probes): Adjust return value to `VEC (probe_p) *'.
3070         (compare_entries): Rename to...
3071         (compare_probes): ...this.  Adjust function to work with
3072         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
3073         respectively.
3074         (gen_ui_out_table_header_info): Adjust `probes' argument to be
3075         `VEC (probe_p) *'.
3076         (print_ui_out_info): Adjust argument to be `struct probe *'.
3077         (info_probes_for_ops): Adjust internal computations to use
3078         `VEC (probe_p) *'.
3079         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
3080         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
3081         gen_info_probes_table_values>: Remove `objfile' argument.
3082         (struct probe) <objfile>: New field.
3083         (find_probe_by_pc): Remove `objfile' argument.
3084         * stap-probe.c (stap_parse_probe_arguments): Likewise.
3085         (stap_get_probe_argument_count): Likewise.
3086         (stap_get_arg): Likewise.
3087         (stap_evaluate_probe_argument): Likewise.
3088         (stap_compile_to_ax): Likewise.
3089         (compile_probe_arg): Refactor not to pass `objfile' anymore.
3090         (handle_stap_probe): Fill `objfile' field from `struct probe'.
3091         (stap_gen_info_probes_table_header): Remove `objfile' argument.
3092         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
3093         sym_compile_to_ax>: Likewise.
3094
3095 2012-07-18  Terry Guo  <terry.guo@arm.com>
3096
3097         PR 14329
3098         * defs.h (GDB_MI_MSG_WIDTH): New.
3099         * ser_base (ser_base_read_error_fd): New function.
3100         (do_ser_base_readchar): Poll error file descriptor as well as
3101         standard output.
3102         (generic_readchar): Refactor error handling.
3103
3104 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
3105
3106         * NEWS: Create a new section for the next release branch.
3107         Rename the section of the current branch, now that it has
3108         been cut.
3109
3110 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
3111
3112         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
3113         * version.in: Bump version to 7.5.50.20120718-cvs.
3114
3115 2012-07-17  Keith Seitz  <keiths@redhat.com>
3116
3117         * linespec.c (linespec_parse_line_offset): Make parameter
3118         const.
3119
3120 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3121
3122         PR 11914
3123         * f-valprint.c (info_common_command): New variable frame_id.
3124         Reinitialize FI form FRAME_ID after each print_variable_and_value.
3125         * printcmd.c (print_variable_and_value): Extend function comment.
3126         Add comment for invalidated FRAME.
3127         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
3128         FI form FRAME_ID after each print_frame_local_vars.
3129         (struct print_variable_and_value_data): Change frame to frame_id.
3130         (do_print_variable_and_value): New variable frame, initialize it from
3131         p->frame_id.  Add comment for invalidated FRAME.
3132         (print_frame_local_vars, print_frame_arg_vars): New function comment.
3133         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
3134         for invalidated FRAME.
3135
3136 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
3137             Pedro Alves  <palves@redhat.com>
3138
3139         * linux-nat.c (linux_nat_detach): Don't unregister from the event
3140         loop.
3141
3142 2012-07-16  Tom Tromey  <tromey@redhat.com>
3143
3144         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
3145
3146 2012-07-15  Doug Evans  <dje@google.com>
3147
3148         * dwarf2read.c (stmt_list_hash): New struct.
3149         (type_unit_group): Embed "per_cu" member, remove pointer.
3150         New union member "t", move member "tus" into it, all uses updated.
3151         New member "hash", replaces member "line_offset, all uses updated.
3152         (quick_file_names): Replace member "offset" with "hash", all uses
3153         updated.
3154         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
3155         (hash_file_name_entry, eq_file_name_entry): Call them.
3156         (hash_type_unit_group, eq_type_unit_group): Ditto.
3157         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
3158         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
3159         (dw2_get_file_names): Update.
3160         (create_type_unit_group): Replace "per_cu" arg with "cu".
3161         All callers updated.  Fix "quick" (.gdb_index) handling.
3162         (get_type_unit_group): Replace "per_cu" arg with "cu".
3163         All callers updated.
3164         (build_type_unit_groups): Don't reset tu_stats.
3165
3166         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
3167         "tab_cur_size".  Change member "tab" to be a htab_t.
3168         (create_filename_seen_cache): Update.
3169         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
3170         (filename_seen): Update.
3171
3172 2012-07-13  Doug Evans  <dje@google.com>
3173
3174         * symtab.c (filename_seen): Update comment.
3175
3176 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3177             Doug Evans  <dje@google.com>
3178
3179         * buildsym.c (end_symtab_1): Split it to ...
3180         (end_symtab_get_static_block): ... this ...
3181         (end_symtab_from_static_block): ... and this function.
3182         (end_symtab, end_expandable_symtab): Call them.
3183         * buildsym.h (end_symtab_get_static_block)
3184         (end_symtab_from_static_block): New declarations.
3185         * dwarf2read.c (process_full_comp_unit): New variable static_block.
3186         Set its valid CU ranges.
3187
3188 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3189
3190         * dwarf2loc.c (disassemble_dwarf_expression): Handle
3191         DW_OP_GNU_parameter_ref.
3192
3193 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3194
3195         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
3196         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
3197
3198 2012-07-13  Doug Evans  <dje@google.com>
3199
3200         * symtab.c (output_source_filename): Delete unnecessary forward decl.
3201         (filename_seen_cache): New struct.
3202         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
3203         (create_filename_seen_cache): New function.
3204         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
3205         (filename_seen): Delete arg "first".  New arg "cache".  All callers
3206         updated.
3207         (output_source_filename_data): New struct.
3208         (output_source_filename): Delete arg "first".  New arg "data".
3209         All callers updated.
3210         (sources_info): Delete local "first".  New locals "data", "cleanups".
3211         Rewrite to use filename_seen_cache.
3212         (add_partial_filename_data): Delete member "first".  New member
3213         "filename_seen_cache".  All uses updated.
3214         (make_source_files_completion_list): Rewrite to use
3215         filename_seen_cache.
3216
3217 2012-07-12  Doug Evans  <dje@google.com>
3218
3219         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
3220
3221 2012-07-10  Doug Evans  <dje@google.com>
3222
3223         PR gdb/13498
3224         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
3225         all_type_unit_groups, type_unit_groups, tu_stats.
3226         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
3227         All uses updated.  Add type_unit_group to union "s".
3228         (type_unit_group): New struct.
3229         (IS_TYPE_UNIT_GROUP): New macro.
3230         (abbrev_table): Delete unused member "section".
3231         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
3232         (dw2_get_cu): Assert not used with type_unit_group.
3233         (dw2_get_primary_cu): New function.
3234         (dw2_build_type_unit_groups_reader): New function.
3235         (dw2_build_type_unit_groups): New function.
3236         (dw2_get_file_names): Assert not called on type units.
3237         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
3238         Redo loop to iterate over type unit groups instead of type units.
3239         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
3240         (read_abbrev_offset): New function.
3241         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
3242         updated.
3243         (create_partial_symtab): New function.
3244         (process_psymtab_comp_unit_reader): Assert not used with type units.
3245         Call create_partial_symtab.
3246         (process_psymtab_type_unit): Delete.
3247         (hash_type_unit_group, eq_type_unit_group): New functions.
3248         (allocate_type_unit_groups_table): New function.
3249         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
3250         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
3251         (create_type_unit_group, get_type_unit_group): New functions.
3252         (tu_abbrev_offset): New struct.
3253         (sort_tu_by_abbrev_offset): New function.
3254         (add_type_unit_group_to_table): New function.
3255         (build_type_unit_groups): New function.
3256         (build_type_psymtabs_reader): New function.
3257         (build_type_psymtab_dependencies): New function.
3258         (build_type_psymtabs): Rewrite.
3259         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
3260         is seen in a type unit.
3261         (process_queue): Move symtab expansion debugging printfs here.
3262         Call process_full_type_unit for type units.
3263         (compute_symtab_includes): Assert not called for type units.
3264         (process_cu_includes): Don't call compute_symtab_includes for
3265         type units.
3266         (process_full_type_unit): New function.
3267         (process_imported_unit_die): Flag an error if called for type units.
3268         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
3269         updated.  Assert not called for type units.
3270         (read_file_scope): Call dwarf2_start_symtab.
3271         (setup_type_unit_groups): New function.
3272         (read_type_unit_scope): Rewrite.
3273         (abbrev_table_read_table): Initialize abbrev_table->offset.
3274         (abbrev_table_free_cleanup): New function.
3275         (dwarf2_start_symtab): New function.
3276         (load_full_type_unit): Assert not called for type unit groups.
3277         * buildsym.c (finish_block_internal): New arg "expandable".
3278         All callers updated.
3279         (start_symtab): Move most contents to ...
3280         (restart_symtab): ... here.  New function.
3281         (reset_symtab_globals): New function.
3282         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
3283         Call reset_symtab_globals.
3284         (end_symtab, end_expandable_symtab): New functions.
3285         (set_missing_symtab, augment_type_symtab): New functions.
3286         * buildsym.h (end_expandable_symtab): Declare.
3287         (augment_type_symtab, restart_symtab): Declare.
3288         * psympriv.h (struct partial_symtab): New member "anonymous".
3289         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
3290         anonymous psymtabs.
3291         (read_psymtabs_with_filename): Ditto.
3292         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
3293         (expand_symtabs_matching_via_partial): Ditto.
3294         (dump_psymtab): Update.
3295         * dictionary.c (dict_add_pending): New function.
3296         * dictionary.h (dict_add_pending): Declare.
3297
3298 2012-07-09  Doug Evans  <dje@google.com>
3299
3300         * buildsym.c (start_subfile): Remove unnecessary check for
3301         name == NULL.
3302
3303         * psymtab.c (allocate_psymtab): Use host_address_to_string.
3304
3305         * dwarf2read.c (load_full_type_unit): Simplify.
3306
3307         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
3308         to struct signatured_type **.  All uses updated.
3309
3310         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
3311         All callers updated.
3312
3313 2012-07-09  Tom Tromey  <tromey@redhat.com>
3314
3315         * c-exp.y (check_parameter_typelist): New function.
3316         (parameter_typelist): Call it.
3317         * eval.c (make_params): Handle '(void)' case.
3318         * gdbtypes.c (lookup_function_type_with_arguments): Handle
3319         '(void)' case.
3320
3321 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3322
3323         * common/linux-ptrace.c: Include gdb_assert.h.
3324         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
3325         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
3326         stdint.h.
3327         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
3328         functions.
3329         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
3330         * linux-nat.c (linux_child_post_attach)
3331         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
3332
3333 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3334
3335         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
3336         nptl <2.7 bug workaround for core files.
3337
3338 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
3339
3340         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
3341         clearing.
3342         (save_siginfo): Remove.
3343         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
3344         call.
3345         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
3346         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
3347         * linux-nat.h (struct lwp_info): Remove field siginfo.
3348
3349 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
3350
3351         Code cleanup for the next patch.
3352         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
3353         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
3354         call for it.
3355         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
3356         (ia64_linux_stopped_data_address):
3357         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
3358         the return value.
3359         * linux-nat.h (linux_nat_get_siginfo): Likewise.
3360         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
3361         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
3362         call for it.
3363
3364 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
3365
3366         PR 14321
3367         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
3368         Increase buffer sizes to 2x we need, not just 2x of the previous size.
3369
3370 2012-07-06  Tom Tromey  <tromey@redhat.com>
3371
3372         * c-exp.y (DOTDOTDOT): New token.
3373         (func_mod, exp): Use parameter_typelist.
3374         (parameter_typelist): New production.
3375         (tokentab3): Add "..." token.
3376         * eval.c (make_params): Handle varargs.
3377         * gdbtypes.c (lookup_function_type_with_arguments): Handle
3378         varargs.
3379
3380 2012-07-06  Tom Tromey  <tromey@redhat.com>
3381
3382         PR exp/9608:
3383         * c-exp.y (%union) <tvec>: Change type.
3384         (func_mod): Now uses <tvec> type.
3385         (exp): Update for tvec change.
3386         (direct_abs_decl): Push the typelist.
3387         (func_mod): Return a typelist.
3388         (nonempty_typelist): Update for tvec change.
3389         * gdbtypes.c (lookup_function_type_with_arguments): New function.
3390         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
3391         * parse.c (pop_type_list): New function.
3392         (push_typelist): New function.
3393         (follow_types): Handle tp_function_with_arguments.
3394         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
3395         (enum type_pieces) <tp_function_with_arguments>: New constant.
3396         (union type_stack_elt) <typelist_val>: New field.
3397         (push_typelist): Declare.
3398
3399 2012-07-06  Tom Tromey  <tromey@redhat.com>
3400
3401         * c-exp.y (%union) <type_stack>: New field.
3402         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
3403         (ptr_operator_ts): New production.
3404         (ptype): Update.
3405         * parse.c (type_stack_reserve): New function.
3406         (check_type_stack_depth): Use it.
3407         (pop_type_stack, append_type_stack, push_type_stack)
3408         (get_type_stack, type_stack_cleanup): New functions.
3409         (follow_types): Handle tp_type_stack.
3410         (_initialize_parse): Simplify initialization.
3411         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
3412         constant.
3413         (union type_stack_elt) <stack_val>: New field.
3414         (get_type_stack, append_type_stack, push_type_stack)
3415         (type_stack_cleanup): Declare.
3416
3417 2012-07-06  Tom Tromey  <tromey@redhat.com>
3418
3419         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
3420         Remove.
3421         (struct type_stack): New.
3422         * parse.c (type_stack, type_stack_size, type_stack_depth):
3423         Remove.
3424         (type_stack): New global.
3425         (parse_exp_in_context, check_type_stack_depth)
3426         (insert_into_type_stack, insert_type, push_type, push_type_int)
3427         (insert_type_address_space, pop_type, pop_type_int)
3428         (_initialize_parse): Update.
3429
3430 2012-07-06  Tom Tromey  <tromey@redhat.com>
3431
3432         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
3433         Remove %type.
3434
3435 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3436
3437         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
3438
3439 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3440             Jan Kratochvil  <jan.kratochvil@redhat.com>
3441
3442         * cp-valprint.c (cp_print_value): Replace potentially unsafe
3443         alloca with xmalloc/xfree.
3444
3445 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
3446
3447         * MAINTAINERS (Write After Approval): Add myself to the list.
3448
3449 2012-07-05  Doug Evans  <dje@google.com>
3450
3451         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
3452
3453 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
3454
3455         * ax-gdb.c (cli/cli-utils.h): New include.
3456         (linespec.h): Ditto.
3457         (agent_eval_command_one): New function.
3458         (agent_command_1): Ditto.
3459         (agent_command): Call function agent_command_1.
3460         (agent_eval_command): Ditto.
3461         (_initialize_ax_gdb): Change help for "maint agent"
3462         and "maint agent-eval".
3463
3464 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
3465
3466         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
3467         * cli/cli-utils.c (check_for_argument): New function.
3468         * cli/cli-utils.h (check_for_argument): Ditto.
3469
3470 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
3471
3472         * NEWS: Mention x32 ABI support.
3473
3474 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
3475
3476         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
3477         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
3478
3479         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
3480         and pc_regnum_from_eax to -1.  Update SP regnum from
3481         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
3482         needed.
3483
3484         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
3485         pc_regnum_from_eax.
3486
3487 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
3488
3489         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
3490         * dwarf2expr.h: Include gdbtypes.h.
3491         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
3492         these forward declarations.
3493         (cu_offset, sect_offset): Move these ...
3494         * gdbtypes.h: Remove include dwarf2expr.h.
3495         (cu_offset, sect_offset): ... here.
3496
3497 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
3498
3499         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
3500         (amd64_linux_sigtramp_code): This.
3501         (amd64_x32_linux_sigtramp_code): New.
3502         (LINUX_SIGTRAMP_LEN): Updated.
3503         (amd64_linux_sigtramp_start): Check x32 sigtramp.
3504
3505 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3506
3507         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
3508
3509 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3510
3511         * config.in: Regenerate.
3512         * configure: Regenerate.
3513         * configure.ac: Remove check for gnu/libc-version.h.
3514         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
3515         gnu/libc-version.h.
3516         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
3517         variables libc_version, libc_major and libc_minor.  Replace sscanf by
3518         inferior_has_bug.  Extend the comment.
3519
3520 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3521
3522         * linux-thread-db.c (inferior_has_bug): New function.
3523         (thread_db_find_new_threads_silently): Return boolean as checked by
3524         inferior_has_bug, describe it in the comments.
3525         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
3526         earlier.  Abort the initialization if it returned non-zero.
3527         (thread_db_new_objfile): Exclude debug files.
3528         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
3529         if UNTIL_NO_NEW,
3530
3531 2012-07-02  Doug Evans  <dje@google.com>
3532
3533         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
3534         related to queue management.
3535
3536         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
3537         instead of "debug dwarf2-die" in debugging printfs.
3538         (create_debug_info_hash_table_reader): Ditto.
3539         (create_debug_info_hash_table): Ditto.
3540         (init_dwo_file): Ditto.
3541         (init_cutu_and_read_dies): Add debugging printf.
3542         (init_cutu_and_read_dies_no_follow): Ditto.
3543         (process_psymtab_comp_unit_reader): Ditto.
3544
3545 2012-07-02  Stan Shebs  <stan@codesourcery.com>
3546
3547         Add target-side support for dynamic printf.
3548         * NEWS: Mention the additional style.
3549         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
3550         (struct bp_location): New field cmd_bytecode.
3551         * breakpoint.c: Include format.h.
3552         (disconnected_dprintf): New global.
3553         (parse_cmd_to_aexpr): New function.
3554         (build_target_command_list): New function.
3555         (insert_bp_location): Call it.
3556         (remove_breakpoints_pid): Skip dprintf breakpoints.
3557         (print_one_breakpoint_location): Ditto.
3558         (dprintf_style_agent): New global.
3559         (dprintf_style_enums): Add dprintf_style_agent.
3560         (update_dprintf_command_list): Add agent case.
3561         (agent_printf_command): New function.
3562         (_initialize_breakpoint): Add new commands.
3563         * common/ax.def (printf): New bytecode.
3564         * ax.h (ax_string): Declare.
3565         * ax-gdb.h (gen_printf): Declare.
3566         * ax-gdb.c: Include cli-utils.h, format.h.
3567         (gen_printf): New function.
3568         (maint_agent_print_command): New function.
3569         (_initialize_ax_gdb): Add maint agent-printf command.
3570         * ax-general.c (ax_string): New function.
3571         (ax_print): Add printf disassembly.
3572         * Makefile.in (SFILES): Add format.c
3573         (COMMON_OBS): Add format.o.
3574         * common/format.h: New file.
3575         * common/format.c: New file.
3576         * printcmd.c: Include format.h.
3577         (ui_printf): Call parse_format_string.
3578         * remote.c (remote_state): New field breakpoint_commands.
3579         (PACKET_BreakpointCommands): New enum.
3580         (remote_breakpoint_commands_feature): New function.
3581         (remote_protocol_features): Add new BreakpointCommands entry.
3582         (remote_can_run_breakpoint_commands): New function.
3583         (remote_add_target_side_commands): New function.
3584         (remote_insert_breakpoint): Call it.
3585         (remote_insert_hw_breakpoint): Ditto.
3586         (_initialize_remote): Add new packet configuration for
3587         target-side breakpoint commands.
3588         * target.h (struct target_ops): New field
3589         to_can_run_breakpoint_commands.
3590         (target_can_run_breakpoint_commands): New macro.
3591         * target.c (update_current_target): Handle
3592         to_can_run_breakpoint_commands.
3593
3594 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3595
3596         Execute -ix and -iex only after system and user gdbinit files.
3597         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
3598         processing down after gdbinit files.
3599
3600 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3601
3602         Add fnmatch-gnu module.
3603         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
3604         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
3605         * gnulib/aclocal.m4: Regenerate.
3606         * gnulib/config.in: Regenerate.
3607         * gnulib/configure: Regenerate.
3608         * gnulib/import/dummy.c: Remove.
3609         * gnulib/import/Makefile.am: Regenerate.
3610         * gnulib/import/Makefile.in: Likewise.
3611         * gnulib/import/m4/gnulib-cache.m4: Likewise.
3612         * gnulib/import/m4/gnulib-comp.m4: Likewise.
3613         * gnulib/import/alloca.c: New file.
3614         * gnulib/import/alloca.in.h: Likewise.
3615         * gnulib/import/config.charset: Likewise.
3616         * gnulib/import/fnmatch.c: Likewise.
3617         * gnulib/import/fnmatch.in.h: Likewise.
3618         * gnulib/import/fnmatch_loop.c: Likewise.
3619         * gnulib/import/localcharset.c: Likewise.
3620         * gnulib/import/localcharset.h: Likewise.
3621         * gnulib/import/m4/alloca.m4: Likewise.
3622         * gnulib/import/m4/codeset.m4: Likewise.
3623         * gnulib/import/m4/configmake.m4: Likewise.
3624         * gnulib/import/m4/fcntl-o.m4: Likewise.
3625         * gnulib/import/m4/fnmatch.m4: Likewise.
3626         * gnulib/import/m4/glibc21.m4: Likewise.
3627         * gnulib/import/m4/localcharset.m4: Likewise.
3628         * gnulib/import/m4/locale-fr.m4: Likewise.
3629         * gnulib/import/m4/locale-ja.m4: Likewise.
3630         * gnulib/import/m4/locale-zh.m4: Likewise.
3631         * gnulib/import/m4/mbrtowc.m4: Likewise.
3632         * gnulib/import/m4/mbsinit.m4: Likewise.
3633         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
3634         * gnulib/import/m4/mbstate_t.m4: Likewise.
3635         * gnulib/import/m4/stdbool.m4: Likewise.
3636         * gnulib/import/m4/wchar_h.m4: Likewise.
3637         * gnulib/import/m4/wctype_h.m4: Likewise.
3638         * gnulib/import/m4/wint_t.m4: Likewise.
3639         * gnulib/import/mbrtowc.c: Likewise.
3640         * gnulib/import/mbsinit.c: Likewise.
3641         * gnulib/import/mbsrtowcs-impl.h: Likewise.
3642         * gnulib/import/mbsrtowcs-state.c: Likewise.
3643         * gnulib/import/mbsrtowcs.c: Likewise.
3644         * gnulib/import/ref-add.sin: Likewise.
3645         * gnulib/import/ref-del.sin: Likewise.
3646         * gnulib/import/stdbool.in.h: Likewise.
3647         * gnulib/import/streq.h: Likewise.
3648         * gnulib/import/strnlen1.c: Likewise.
3649         * gnulib/import/strnlen1.h: Likewise.
3650         * gnulib/import/verify.h: Likewise.
3651         * gnulib/import/wchar.in.h: Likewise.
3652         * gnulib/import/wctype.in.h: Likewise.
3653
3654 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3655
3656         Support shell wildcards for 'set auto-load safe-path'.
3657         * auto-load.c: Include fnmatch.h.
3658         (filename_is_in_dir): Rename to ...
3659         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
3660         it.  Update function comment.  Rename dir_len to pattern_len.  New
3661         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
3662         messages.  Use gdb_filename_fnmatch.
3663         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
3664         pattern.
3665         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
3666         * defs.h (gdb_filename_fnmatch): New declaration.
3667         * utils.c: Include fnmatch.h.
3668         (gdb_filename_fnmatch): New function.
3669
3670 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
3671
3672         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
3673         `-probe' and `-probe-stap' options.
3674
3675 2012-07-01  Yao Qi  <yao@codesourcery.com>
3676
3677         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
3678         always_inserted_off, and always_inserted_enums.
3679         Change always_inserted_mode's type to 'enum auto_boolean'.
3680         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
3681         callers.
3682         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
3683         of add_setshow_enum_cmd.
3684         * infrun.c: Remove can_use_displaced_stepping_auto,
3685         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
3686         can_use_displaced_stepping_enum.
3687         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
3688         (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
3689         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
3690         add_setshow_enum_cmd.
3691
3692 2012-06-30  Doug Evans  <dje@google.com>
3693
3694         * dwarf2read.c (signatured_type): Make "per_cu" member first.
3695         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
3696         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
3697
3698 2012-06-29  Doug Evans  <dje@google.com>
3699
3700         * linespec.c: #include "stack.h".
3701         (decode_line_with_current_source): Moved here from symtab.c and
3702         renamed from decode_line_spec.  All callers updated.
3703         (decode_line_with_last_displayed): Moved here from breakpoint.c and
3704         renamed from decode_line_spec_1.  All callers updated.
3705         * linespec.h (decode_line_with_current_source): Move declaration here
3706         from symtab.h and renamed from decode_line_spec.
3707         (decode_line_with_last_displayed): Move declaration here from symtab.h
3708         and renamed from decode_line_spec_1.
3709         * macrocmd.c: #include "linespec.h".
3710         * symtab.c: Remove #include "linespec.h".
3711
3712 2012-06-28  Doug Evans  <dje@google.com>
3713
3714         * dwarf2read.c (get_cu_length): New function.
3715         (offset_in_cu_p, error_check_comp_unit_head): Call it.
3716         (create_debug_types_hash_table): Ditto.
3717         (init_cutu_and_read_dies): Ditto.
3718         (init_cutu_and_read_dies_no_follow): Ditto.
3719
3720         * dwarf2read.c (dwarf2_find_base_address): Move definition.
3721
3722         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
3723         (struct abbrev_table): Define.
3724         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
3725         abbrev_table.
3726         (init_cutu_and_read_dies): Update.
3727         (abbrev_table_alloc_abbrev): New function.  Replaces
3728         dwarf_alloc_abbrev.  All callers updated.
3729         (abbrev_table_add_abbrev): New function.
3730         (abbrev_table_lookup_abbrev): New function.  Replaces
3731         dwarf2_lookup_abbrev.  All callers updated.
3732         (abbrev_table_read_table): New function.  Contents moved here from
3733         dwarf2_read_abbrevs.
3734         (dwarf2_read_abbrevs): Call it.
3735         (abbrev_table_free): New function.
3736         (dwarf2_free_abbrev_table): Call it.
3737
3738 2012-06-28  Stan Shebs  <stan@codesourcery.com>
3739
3740         * osdata.c (info_osdata_command): Filter out "Title" columns
3741         from non-MI uses.
3742         * common/linux-osdata.c (struct osdata_type): Add title field.
3743         (osdata_table): Add titles to each entry.
3744         (linux_command_xfer_osdata): Add a column for title data.
3745
3746 2012-06-28  Stan Shebs  <stan@codesourcery.com>
3747
3748         Make logging work for MI.
3749         * NEWS: Mention it.
3750         * interps.h (interp_set_logging_ftype): New typedef.
3751         (struct interp_procs): New field set_logging_proc.
3752         (current_interp_set_logging): Declare.
3753         * interps.c (current_interp_set_logging): New function.
3754         * cli/cli-logging.c: Include interps.h.
3755         (set_logging_redirect): Call current_interp_set_logging.
3756         (pop_output_files): Ditto.
3757         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
3758         * mi/mi-console.h (mi_console_set_raw): Declare.
3759         * mi/mi-console.c (mi_console_set_raw): New function.
3760         * mi/mi-interp.c (saved_raw_stdout): New global.
3761         (mi_set_logging): New function.
3762         (_initialize_mi_interp): Add it to interp procs.
3763
3764 2012-06-28  Doug Evans  <dje@google.com>
3765
3766         * symtab.c (lookup_symbol_aux_objfile): Use
3767         ALL_OBJFILE_PRIMARY_SYMTABS.
3768
3769         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
3770
3771 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3772
3773         * common/buffer.c: Include inttypes.h and stdint.h.
3774         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
3775
3776 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3777             Pedro Alves  <palves@redhat.com>
3778
3779         * gdbthread.h (ALL_THREADS): New macro.
3780         (thread_list): Declare.
3781         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
3782         going, but instead fall through to the stepping handling.
3783         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
3784         the passed in signal.  Adjust debug output.
3785         (resume_callback): Rename to ...
3786         (linux_nat_resume_callback): ... this.  Pass the thread's last
3787         stop signal, if in "pass" state.
3788         (linux_nat_resume): Adjust to rename.
3789         (stop_wait_callback): New assertion.  Don't respawn signals;
3790         instead let the LWP remain with SIGNALLED set.
3791         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
3792         * remote.c (append_pending_thread_resumptions): New.
3793         (remote_vcont_resume): Call it.
3794         * target.h (target_resume): Extend comment.
3795
3796 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
3797
3798         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
3799
3800 2012-06-27  Doug Evans  <dje@google.com>
3801
3802         * dwarf2read.c (dwarf2_cu): Add ranges_base.
3803         Delete have_addr_base, unused.  All uses updated.
3804         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
3805         (dwarf2_get_pc_bounds): Add ranges_base.
3806         (dwarf2_record_block_ranges): Ditto.
3807
3808 2012-06-27  Tom Tromey  <tromey@redhat.com>
3809
3810         PR macros/7961:
3811         * varobj.c (varobj_create): Update.
3812         (varobj_set_value): Update.
3813         * tracepoint.c (validate_actionline): Update.
3814         (encode_actions_1): Update.
3815         * parse.c (parse_exp_1): Add 'pc' argument.
3816         (parse_exp_in_context): Add 'pc' argument.  Change how
3817         expression_context_pc is set.
3818         (parse_expression): Update.
3819         (parse_field_expression): Update.
3820         * expression.h (parse_exp_1): Update.
3821         * eval.c (parse_to_comma_and_eval): Update.
3822         * breakpoint.c (set_breakpoint_condition): Update.
3823         (update_watchpoint): Update.
3824         (init_breakpoint_sal): Update
3825         (find_condition_and_thread): Update.
3826         (watch_command_1): Update.
3827         (update_breakpoint_locations): Update.
3828         * ada-lang.c (ada_read_renaming_var_value): Update.
3829         (create_excep_cond_exprs): Update.
3830
3831 2012-06-27  Doug Evans  <dje@google.com>
3832
3833         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
3834         type units.
3835
3836 2012-06-26  Doug Evans  <dje@google.com>
3837
3838         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
3839         prototype.
3840         (error_check_comp_unit_head): New arg abbrev_section.  All callers
3841         updated.
3842         (read_and_check_comp_unit_head): Ditto.
3843         (read_and_check_type_unit_head): Ditto.
3844
3845 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
3846
3847         New attribute 'last' for gdb.Symtab_and_line.
3848         * NEWS (Python Scripting): Add entry about the new attribute.
3849         * python/py-symtab.c (salpy_get_last): New function which
3850         implements the get method for the 'last' attribute of
3851         gdb.Symtab_and_line.
3852         (sal_object_getset): Add entry for the 'last' attribute.
3853
3854 2012-06-26  Doug Evans  <dje@google.com>
3855
3856         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
3857         (dwo_sections): Add macinfo, macro.
3858         (dwarf2_locate_dwo_sections): Watch for macro sections.
3859         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
3860         All callers updated.  Handle DWO files.
3861
3862         * NEWS: Mention new options "set debug dwarf2-read" and
3863         "set debug symtab-create".
3864         * dwarf2read.c (dwarf2_read_debug): New static global.
3865         (dwarf2_build_psymtabs_hard): Add debugging printfs.
3866         (process_queue): Ditto.
3867         (process_full_comp_unit): Ditto.
3868         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
3869         * elfread.c (elf_symfile_read): Add debugging printf.
3870         * minsyms.c (install_minimal_symbols): Ditto.
3871         * psymtab.c (allocate_psymtab): Ditto.
3872         * symfile.c (allocate_symtab): Ditto.
3873         * symtab.c (symtab_create_debug): New global.
3874         (_initialize_symtab): Add new option "set debug symtab-create".
3875         * symtab.h (symtab_create_debug): Declare.
3876
3877         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
3878         (lookup_dwo_type_unit): Ditto.
3879
3880 2012-06-26  Roland McGrath  <roland@hack.frob.com>
3881             H.J. Lu  <hongjiu.lu@intel.com>
3882
3883         * amd64-linux-nat.c: Include <sys/user.h>.
3884         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
3885         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
3886         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
3887
3888         * configure.ac: Check if the fs_base and gs_base members of
3889         `struct user_regs_struct' exist.
3890         * config.in: Regenerated.
3891         * configure: Likewise.
3892
3893 2012-06-25  Michael Eager  <eager@eagercon.com>
3894
3895         PR python/14291
3896         * python/python.c (gdbpy_write): Check for interrupted output.
3897
3898 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
3899
3900         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
3901         register as a stack alignment in ARM mode.
3902
3903 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3904
3905         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
3906         * gnulib/config.in: Regenerate.
3907         * gnulib/configure: Likewise.
3908         * gnulib/import/m4/extensions.m4: Update it.
3909         * gnulib/import/m4/gnulib-common.m4: Likewise.
3910         * gnulib/import/m4/memmem.m4: Likewise.
3911         * gnulib/import/m4/mmap-anon.m4: Likewise.
3912         * gnulib/import/m4/multiarch.m4: Likewise.
3913         * gnulib/import/stdint.in.h: Likewise.
3914
3915 2012-06-24  Yao Qi  <yao@codesourcery.com>
3916
3917         * corefile.c (write_memory_with_notification): New.
3918         * gdbcore.h: Declare write_memory_with_notification.
3919         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
3920         'observer_notify_memory_changed' with 'write_memory_with_notification'.
3921         * valops.c (value_assign): Likewise.
3922         * python/py-inferior.c (infpy_write_memory): Call
3923         'write_memory_with_notification'.
3924
3925 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3926
3927         * cc-with-index.sh: Use also -ex "set auto-load no".
3928
3929 2012-06-23  Doug Evans  <dje@google.com>
3930
3931         PR 14125
3932         * NEWS: Document additions to .gdb_index.
3933         * dwarf2read.c: #include "gdb/gdb-index.h".
3934         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
3935         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
3936         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
3937         (dwarf2_read_index): Recognize version 7.
3938         (dw2_do_expand_symtabs_matching): New args want_specific_block,
3939         block_kind, domain): All callers updated.
3940         (dw2_find_symbol_file): Handle new index CU values.
3941         (dw2_expand_symtabs_matching): Match symbol kind if requested.
3942         (add_index_entry): New args is_static, kind.  All callers updated.
3943         (offset_type_compare, uniquify_cu_indices): New functions
3944         (symbol_kind): New function.
3945         (write_psymtabs_to_index): Remove duplicate CU values.
3946         (write_psymtabs_to_index): Write .gdb_index version 7.
3947
3948 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
3949
3950         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
3951         * configure: Regenerate.
3952
3953 2012-06-20  Yao Qi  <yao@codesourcery.com>
3954
3955         * python/py-inferior.c: Update comments of infpy_read_memory
3956         and infpy_write_memory.
3957
3958 2012-06-19  Tom Tromey  <tromey@redhat.com>
3959
3960         PR exp/9514:
3961         * parser-defs.h (insert_type, insert_type_address_space): Declare.
3962         (push_type_address_space): Remove.
3963         * parse.c (insert_into_type_stack): New function.
3964         (insert_type): Likewise.
3965         (insert_type_address_space): Rename from push_type_address_space.
3966         Insert tp_space_identifier.
3967         * c-exp.y (ptr_operator): New production.
3968         (abs_decl): Use ptr_operator.
3969         (space_identifier): Call insert_type_address_space.
3970         (ptype): Don't use const_or_volatile_or_space_identifier.
3971         (const_or_volatile_noopt): Call insert_type.
3972         (conversion_type_id, conversion_declarator): New productions.
3973         (operator): Use conversion_type_id.
3974
3975 2012-06-18  Doug Evans  <dje@google.com>
3976
3977         * symtab.h (minimal_symbol): New member created_by_gdb.
3978         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
3979         created by gdb.
3980         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
3981         (search_symbols): Call it instead of lookup_symbol.
3982         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
3983
3984         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
3985         Adjust address for DW_OP_GNU_addr_index.
3986         * dwarf2expr.h (dwarf_expr_context): Update comment.
3987         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
3988         all callers updated.  Handle TLS vars described with
3989         DW_OP_GNU_const_index.
3990         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
3991         and DW_OP_GNU_const_index.
3992         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
3993
3994         * block.c (find_block_in_blockvector): Make explicit the fact that we
3995         ignore GLOBAL_BLOCK.
3996
3997 2012-06-18  Tom Tromey  <tromey@redhat.com>
3998
3999         * c-exp.y (operator): Remove trailing space after "delete" and
4000         "delete[]".
4001
4002 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
4003             Jan Kratochvil  <jan.kratochvil@redhat.com>
4004
4005         Switch i386 and derived targets to ON_STACK.
4006         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
4007         (amd64_dicos_init_abi): Remove its installment.
4008         * dicos-tdep.c (dicos_init_abi): Remove the
4009         set_gdbarch_call_dummy_location call.  Update the comment here.
4010         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
4011         (i386_dicos_init_abi): Remove its installment.
4012         * i386-tdep.c (i386_push_dummy_code): New function.
4013         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
4014         i386_push_dummy_code.
4015
4016 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4017
4018         Remove stale dummy frames.
4019         * breakpoint.c: Include dummy-frame.h.
4020         (longjmp_breakpoint_ops): New variable.
4021         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
4022         bp_longjmp_call_dummy.
4023         (bpstat_what, bptype_string, print_one_breakpoint_location)
4024         (init_bp_location): Support bp_longjmp_call_dummy.
4025         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
4026         (set_longjmp_breakpoint_for_call_dummy)
4027         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
4028         functions.
4029         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
4030         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
4031         FIXME comment and extend the other comment for bp_call_dummy.
4032         (set_longjmp_breakpoint_for_call_dummy)
4033         (check_longjmp_breakpoint_for_call_dummy): New declarations.
4034         * dummy-frame.c: Include gdbthread.h.
4035         (pop_dummy_frame_bpt): New function.
4036         (pop_dummy_frame): Call pop_dummy_frame_bpt.
4037         (dummy_frame_discard): New function.
4038         (cleanup_dummy_frames): Update the comment about longjmps.
4039         * dummy-frame.h (dummy_frame_discard): New declaration.
4040         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
4041         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
4042         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
4043         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
4044         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
4045         keep_going if IS_LONGJMP and there is no other reason to stop.
4046
4047 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
4048
4049         * remote-sim.c (sim_command_completer): Initialize
4050         variable 'result'.
4051
4052 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
4053
4054         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
4055         * dwarf2loc.c (call_site_parameter_matches): Support
4056         CALL_SITE_PARAMETER_PARAM_OFFSET.
4057         (needs_dwarf_reg_entry_value): Push stub value.
4058         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
4059         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
4060         * gdbtypes.h (enum call_site_parameter_kind): New item
4061         CALL_SITE_PARAMETER_PARAM_OFFSET.
4062         (struct call_site.parameter.u): New field param_offset.
4063
4064 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
4065
4066         Code cleanup: Generalize call_site.parameter key.
4067         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
4068         variable dwarf_reg.  New variable kind_u.  Update parameters to
4069         push_dwarf_reg_entry_value.
4070         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4071         * dwarf2expr.h (enum call_site_parameter_kind)
4072         (union call_site_parameter_u): Forward declarations.
4073         (struct dwarf_expr_context_funcs): Update parameters and their
4074         description for push_dwarf_reg_entry_value.
4075         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4076         * dwarf2loc.c (call_site_parameter_matches): New function.
4077         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
4078         description.  Use call_site_parameter_matches.
4079         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
4080         Update parameters and their description.
4081         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
4082         New variable kind_u.  Adjust the caller for updated parameters.
4083         (needs_dwarf_reg_entry_value): Update parameters.
4084         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
4085         instead of attr.  Update for the changed fields of struct
4086         call_site_parameter.
4087         * gdbtypes.h: Include dwarf2expr.h.
4088         (enum call_site_parameter_kind): New.
4089         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
4090         fb_offset into new union u.
4091
4092 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
4093
4094         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
4095         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
4096         for x32.
4097
4098 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
4099
4100         * amd64-linux-nat.c (compat_x32_clock_t): New.
4101         (compat_x32_siginfo_t): Likewise.
4102         (compat_x32_siginfo_from_siginfo): Likewise.
4103         (siginfo_from_compat_x32_siginfo): Likewise.
4104         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
4105         and siginfo_from_compat_x32_siginfo for x32.
4106
4107 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
4108
4109         * tracepoint.c (tfile_xfer_partial): Add a lseek.
4110
4111 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
4112
4113         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
4114         instead of gdbarch_ptr_bit.
4115         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
4116         (amd64_supply_native_gregset): Likewise.
4117         (amd64_collect_native_gregset): Likewise.
4118         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
4119         (amd64_supply_xsave): Likewise.
4120         (amd64_collect_fxsave): Likewise.
4121         (amd64_collect_xsave): Likewise.
4122
4123 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
4124
4125         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
4126         (amd64_linux_read_description): Check DS segment register for
4127         x32 process.
4128
4129 2012-06-15  Tom Tromey  <tromey@redhat.com>
4130
4131         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
4132         init_cutu_and_read_dies.
4133
4134 2012-06-15  Iain Sandoe <iain@codesourcery.com>
4135
4136         * MAINTAINERS (Write After Approval): Add myself to the list.
4137
4138 2012-06-15  Tom Tromey  <tromey@redhat.com>
4139
4140         * valops.c (value_find_oload_method_list): Now static.
4141         * value.h (value_find_oload_method_list): Don't declare.
4142
4143 2012-06-15  Tom Tromey  <tromey@redhat.com>
4144
4145         * valops.c (find_overload_match): Use value_ind.
4146
4147 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
4148
4149         * infrun.c (handle_inferior_event): Correct indentation.
4150
4151 2012-06-14  Doug Evans  <dje@google.com>
4152
4153         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
4154         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
4155         All uses updated.
4156         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
4157         updated.  Handle DEBUG_LOC_START_LENGTH.
4158         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
4159         (loclist_describe_location): Ditto.
4160
4161 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
4162
4163         PR backtrace/13866
4164         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
4165         after hiding inline functions.
4166
4167 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4168
4169         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
4170         _initialize_inf_ttrace.
4171
4172 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4173
4174         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
4175         _initialize_hppa_hpux_nat.
4176
4177 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4178
4179         * remote-sim.c (sim_command_completer): Change type of return
4180         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
4181
4182 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
4183             Jan Kratochvil  <jan.kratochvil@redhat.com>
4184
4185         PR tdep/14222
4186         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
4187         stack on a 16-byte boundary.
4188
4189 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
4190
4191         * jit.c (finalize_symtab): Set function's return type to 'void' by
4192         default.
4193
4194 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
4195             H.J. Lu  <hongjiu.lu@intel.com>
4196
4197         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
4198         Move bits common to both the classic LP64 and the new x32 ILP32
4199         ABI here.
4200         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
4201         (amd64_x32_linux_init_abi): New function.
4202         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
4203         subtype.
4204
4205         * i386-tdep.h (i386_pseudo_register_name): New prototype.
4206         * i386-tdep.c (i386_pseudo_register_name): Make public.
4207         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
4208         * amd64-tdep.c (amd64_dword_names): Add "eip".
4209         (amd64_x32_pseudo_register_type): New function
4210         (amd64_x32_init_abi): New function.
4211
4212 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4213
4214         PR build/14003
4215         * inferior.h (struct inferior_suspend_state): Comment out.
4216         (struct inferior): Comment out the field suspend.
4217         * infrun.c (struct infcall_suspend_state): Comment out the field
4218         inferior_suspend.
4219         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
4220         out its assignment.
4221
4222 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4223
4224         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
4225         * c-exp.y (classify_inner_name): Remove caller assumptions in the
4226         function comment.  Return ERROR for unresolved cases.  Implement
4227         returning proper NAME.
4228         (yylex): Accept also NAME from classify_inner_name.
4229         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
4230         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
4231         LOC_TYPEDEF type.
4232         * cp-support.h (cp_lookup_nested_type): Update its declaration.
4233
4234 2012-06-13  Tom Tromey  <tromey@redhat.com>
4235
4236         * breakpoint.c (condition_completer): New function.
4237         (_initialize_breakpoint): Use it.
4238         * value.c (complete_internalvar): New function.
4239         * value.h (complete_internalvar): Declare.
4240
4241 2012-06-13  Tom Tromey  <tromey@redhat.com>
4242
4243         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
4244         * breakpoint.c (catch_syscall_completer): Return a VEC.
4245         * cli/cli-cmds.c (complete_command): Update.
4246         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
4247         (complete_on_enum): Likewise.
4248         * command.h: Include gdb_vecs.h.
4249         (completer_ftype): Change return type.
4250         (complete_on_cmdlist, complete_on_enum): Likewise.
4251         * completer.c (noop_completer, filename_completer)
4252         (location_completer): Return a VEC.
4253         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
4254         to a VEC.
4255         (expression_completer, complete_line_internal, complete_line)
4256         (command_completer): Return a VEC.
4257         (gdb_completion_word_break_characters, line_completion_function):
4258         Update.
4259         * completer.h: Include gdb_vecs.h.
4260         (complete_line, noop_completer, filename_completer)
4261         (expression_completer, location_completer, command_completer):
4262         Update.
4263         * f-lang.c (f_word_break_characters): Return a VEC.
4264         * interps.c (interpreter_completer): Return a VEC.
4265         * language.h (struct language_defn)
4266         <la_make_symbol_completion_list>: Return a VEC.
4267         * python/py-cmd.c (cmdpy_completer): Return a VEC.
4268         * symtab.c (free_completion_list): Take a VEC.
4269         (return_val_size, return_val_index): Remove.
4270         (return_val): Now a VEC.
4271         (completion_list_add_name): Update.
4272         (default_make_symbol_completion_list_break_on)
4273         (default_make_symbol_completion_list, make_symbol_completion_list)
4274         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
4275         Return a VEC.
4276         (add_filename_to_list): Update.
4277         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
4278         <list>: Now a VEC.
4279         (maybe_add_partial_symtab_filename): Update.
4280         (make_source_files_completion_list): Return a VEC.
4281         * symtab.h (default_make_symbol_completion_list_break_on)
4282         (default_make_symbol_completion_list, make_symbol_completion_list)
4283         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
4284         (make_source_files_completion_list): Update.
4285
4286 2012-06-13  Tom Tromey  <tromey@redhat.com>
4287
4288         * breakpoint.c (add_catch_command): Use completer_ftype.
4289         * breakpoint.h: Include command.h.
4290         (add_catch_command): Use completer_ftype.
4291         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
4292         * cli/cli-decode.h (struct cmd_list_element) <completer>:
4293         Use completer_ftype.
4294         * command.h (completer_ftype): New typedef.
4295         (set_cmd_completer): Use it.
4296         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
4297         completer_ftype.
4298
4299 2012-06-13  Pedro Alves  <palves@redhat.com>
4300
4301         Partial revert of previous change.
4302
4303         * serial.c (scb_base): New global.
4304         (serial_for_fd): New.
4305         (serial_open, serial_fdopen_ops): Link new serial in open serials
4306         chain.
4307         (do_serial_close): Unlink serial from the open serials chain.
4308
4309 2012-06-12  Pedro Alves  <palves@redhat.com>
4310
4311         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
4312         threads here.
4313         (prepare_for_detach): No longer context switch here in non-stop
4314         mode.
4315         (fetch_inferior_event): Ditto.
4316         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
4317         to the event thread before removing breakpoints.  Switch to the
4318         event thread before inserting breakpoints and resuming.
4319         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
4320         event thread before resuming.
4321         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
4322         Switch to the event thread before removing breakpoints.
4323
4324 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
4325
4326         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
4327         special characters correctly for the Windows shells.  See
4328         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
4329         report.
4330         [!__MINGW32__]: Remove extra double quote character from special
4331         characters.
4332
4333 2012-06-11  Stan Shebs  <stan@codesourcery.com>
4334
4335         * ui-out.h: Remove #if 0 declarations.
4336         * ui-out.c: Remove #if 0 functions.
4337
4338 2012-06-11  Pedro Alves  <palves@redhat.com>
4339
4340         * ser-base.c (run_async_handler_and_reschedule): New.
4341         (fd_event, push_event): Use it.
4342         * serial.c (serial_open, serial_fdopen_ops): Set the initial
4343         reference count to 1.
4344         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
4345         instead of xfree.
4346         (serial_is_open, serial_ref, serial_unref): New.
4347         * serial.h (serial_open): Adjust comment.
4348         (serial_is_open): Declare.
4349         (serial_close): Adjust comment.
4350         (serial_ref, serial_unref) Declare.
4351         (struct serial): New field 'refcnt'.
4352
4353 2012-06-11  Pedro Alves  <palves@redhat.com>
4354
4355         Remove #if 0'd "connect" command, and unnecessary associated
4356         refcounting and serial reuse bits.
4357
4358         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
4359         * serial.c (last_serial_opened): Delete.
4360         (scb_base): Delete.
4361         (serial_open): Adjust.
4362         (serial_for_fd): Delete.
4363         (serial_fdopen_ops, do_serial_close): Adjust.
4364         (serial_fdopen_ops): Adjust.
4365
4366 2012-06-11  Pedro Alves  <palves@redhat.com>
4367
4368         * serial.c (do_serial_close): Remove early return when SCB is
4369         null.
4370
4371 2012-06-11  Tom Tromey  <tromey@redhat.com>
4372
4373         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
4374
4375 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4376
4377         Fix regression by the "ambiguous linespec" series.
4378         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
4379         get_last_displayed_symtab and get_last_displayed_line and depending
4380         on CURSAL.
4381
4382 2012-06-11  Tom Tromey  <tromey@redhat.com>
4383
4384         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
4385         (dw2_find_symbol_file): Use it.
4386
4387 2012-06-11  Michael Eager  <eager@eagercon.com>
4388
4389         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
4390         * mips-linux-tdep.h (mips_signals): New
4391
4392 2012-06-11  Tom Tromey  <tromey@redhat.com>
4393
4394         * infrun.c (handle_inferior_event)
4395         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
4396         breakpoint.
4397         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
4398         exception logic in all cases.  Update comments.
4399         (insert_longjmp_resume_breakpoint): Set the exception resume
4400         breakpoint.
4401
4402 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
4403
4404         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
4405
4406 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
4407
4408         * valarith.c (binop_types_user_defined_p): Fix a typo.
4409
4410 2012-06-08  Yao Qi  <yao@codesourcery.com>
4411             Chung-Lin Tang <cltang@codesourcery.com>
4412
4413         * arch-utils.c (default_return_in_first_hidden_param_p): New.
4414         * arch-utils.h: Declare.
4415         * gdbarch.sh: Add return_in_first_hidden_param_p.
4416         * gdbarch.c, gdbarch.h: Regenerated.
4417         * infcall.c (call_function_by_hand): Call
4418         gdbarch_return_in_first_hidden_param_p instead of
4419         language_pass_by_reference.
4420
4421         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
4422         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
4423         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
4424         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
4425         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
4426         `cplus_return_struct_by_reference'.
4427         (tic6x_return_value): Handle language cplusplus.
4428         (tic6x_return_in_first_hidden_param_p): New.
4429         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
4430
4431 2012-06-07  Doug Evans  <dje@google.com>
4432
4433         * dwarf2read.c (dwarf2_cu): Add comment.
4434
4435 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4436
4437         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
4438         variable.
4439         (mips_eabi_push_dummy_call): Likewise.
4440         (mips_n32n64_push_dummy_call): Likewise.
4441         (mips_o32_push_dummy_call): Likewise.
4442         (mips_o64_push_dummy_call): Likewise.
4443
4444 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4445
4446         * mips-tdep.c (mips_convert_register_p): Correct coding style.
4447
4448 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
4449
4450         * mips-tdep.c (mips_pseudo_register_type): Use
4451         mips_float_register_p.
4452
4453 2012-06-06  Pedro Alves  <palves@redhat.com>
4454
4455         * infrun.c (handle_inferior_event): Remove calls to
4456         reinit_frame_cache that follow a context_switch call.
4457
4458 2012-06-06  Pedro Alves  <palves@redhat.com>
4459
4460         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
4461         context_switch and remove stale comment.
4462
4463 2012-06-06  Pedro Alves  <palves@redhat.com>
4464
4465         * infrun.c (struct execution_control_state): Remove
4466         `new_thread_event' field.
4467         (handle_inferior_event): Simplify new threads handling; don't
4468         resume the inferior if we find a new thread.
4469
4470 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
4471
4472         * NEWS: Document the deprecation of SH's 'regs' command.
4473         * inferior.h (all_registers_info): Add function declaration.
4474         * sh-tdep.c (sh_show_regs): Remove variable.
4475         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
4476         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
4477         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
4478         (sh_show_regs_command): Remove functions.
4479         (sh_gdbarch_init): Don't set sh_show_regs.
4480         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
4481         'info all-registers'.
4482         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
4483         (sh64_show_regs): Remove functions.
4484         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
4485
4486 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4487
4488         * configure.ac: Move development=true below AC_INIT.
4489         * configure: Regenerate.
4490
4491 2012-06-05  Stan Shebs  <stan@codesourcery.com>
4492
4493         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
4494         gdb_stdout.
4495
4496 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
4497
4498         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
4499         argument as ssize_t.
4500         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
4501         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
4502         * target.c (target_read_stack, target_write_memory)
4503         (target_write_raw_memory): Likewise.
4504         * target.h (target_read_stack, target_write_memory)
4505         (target_write_raw_memory): Likewise.
4506
4507 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4508
4509         * symfile-mem.c: Change gdb_static_assert to ssize_t.
4510         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
4511         * target.c (target_read_memory): Change LEN to ssize_t.
4512         * target.h (target_read_memory): Change LEN to ssize_t.
4513
4514 2012-06-05  Pedro Alves  <palves@redhat.com>
4515
4516         PR backtrace/13866
4517
4518         * breakpoint.c (until_break_command): Only fetch the selected
4519         frame after decode_line_1.
4520
4521 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
4522
4523         * solib-svr4.c (enable_break): Don't fallback to setting the solib
4524         event breakpoint at _start, __start or main if a program
4525         interpreter is not found.
4526
4527 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4528
4529         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
4530         Add declaration.
4531         * windows-tdep.c: #include "objfiles.h".
4532         (windows_iterate_over_objfiles_in_search_order): New function.
4533         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
4534         iterate_over_objfiles_in_search_order gdbarch method to
4535         windows_iterate_over_objfiles_in_search_order.
4536         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
4537
4538 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4539
4540         * gdbarch.sh: Add generation of
4541         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
4542         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
4543         (iterate_over_objfiles_in_search_order): New gdbarch method.
4544         * gdbarch.h, gdbarch.c: Regenerate.
4545         * objfiles.h (default_iterate_over_objfiles_in_search_order):
4546         Add declaration.
4547         * objfiles.c (default_iterate_over_objfiles_in_search_order):
4548         New function.
4549         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4550         out of lookup_symbol_aux_symtabs.
4551         (lookup_symbol_aux_symtabs): Replace extracted-out code by
4552         call to lookup_symbol_aux_objfile.
4553         (struct global_sym_lookup_data): New type.
4554         (lookup_symbol_global_iterator_cb): New function.
4555         (lookup_symbol_global): Search for symbol using
4556         gdbarch_iterate_over_objfiles_in_search_order and
4557         lookup_symbol_global_iterator_cb.
4558         * findvar.c (struct minsym_lookup_data): New type.
4559         (minsym_lookup_iterator_cb): New function.
4560         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
4561         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
4562         and minsym_lookup_iterator_cb.
4563
4564 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4565
4566         Revert the following patch:
4567         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4568         try locating the symbol in the symbol's own objfile first, before
4569         extending the search to all objfiles.
4570         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4571         out of lookup_symbol_aux_symtabs.
4572         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4573         Replace extracted-out code by call to lookup_symbol_aux_objfile.
4574         Do not search EXCLUDE_OBJFILE.
4575         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4576         (lookup_symbol_global): Search for matches in the block's objfile
4577         first, before searching all other objfiles.
4578
4579 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4580
4581         * breakpoint.c (find_condition_and_thread): Stop parsing
4582         as soon as the first invalid keyword is found.
4583
4584 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4585
4586         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
4587
4588 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4589
4590         * config/djgpp/djcheck.sh: Add copyright header.
4591
4592 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4593
4594         * copyright.py (update_files, main): Fix path to update-copyright
4595         script.
4596
4597 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
4598
4599         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
4600         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
4601         for which a reminder to update by hand is printed.
4602
4603 2012-06-04  Doug Evans  <dje@google.com>
4604
4605         * buildsym.c (make_blockvector): Add comment.
4606
4607 2012-06-04  Pedro Alves  <palves@redhat.com>
4608
4609         * arch-utils.c (default_gdb_signal_from_target): Delete.
4610         * arch-utils.h (default_gdb_signal_from_target): Delete.
4611         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
4612         gdbarch_gdb_signal_from_target_p.
4613         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
4614         predicate).
4615         * gdbarch.h: Regenerate.
4616         * gdbarch.c: Regenerate.
4617
4618 2012-06-04  Pedro Alves  <palves@redhat.com>
4619
4620         * gdbarch.sh (gdb_signal_from_target): Mention that the
4621         implementation of the method must be host independent.
4622         * gdbarch.h: Regenerate.
4623
4624 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4625
4626         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
4627         parameters.
4628         (target_read_memory_bfd): New function.
4629         (symbol_file_add_from_memory): Use it.
4630
4631 2012-06-03  Doug Evans  <dje@google.com>
4632
4633         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
4634         of primary symtab.
4635         (basic_lookup_transparent_type): Ditto.
4636
4637         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
4638         (ALL_PRIMARY_SYMTABS): Use it.
4639         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
4640         * dwarf2read.c (dw2_find_symbol_file): Ditto.
4641         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
4642         * symtab.c (lookup_symbol_aux_objfile): Ditto.
4643         (basic_lookup_transparent_type): Ditto.
4644
4645 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
4646
4647         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
4648         it to optimize resolution of demangled name.
4649
4650 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4651
4652         * configure.ac (development): Define new variable.
4653         Call AC_CHECK_LIB for mcheck if $development.
4654         (ERROR_ON_WARNING): Enable it by default only if $development.
4655         * config.in: Regenerate.
4656         * configure: Regenerate.
4657
4658 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
4659
4660         * target.c (target_read_memory): Make LEN argument as size_t.
4661         * target.h (target_read_memory): Likewise.
4662
4663 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4664
4665         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
4666
4667 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
4668
4669         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
4670         BookE interface for PowerPC server processors if not available
4671         in the Linux Kernel.
4672
4673 2012-05-31  Keith Seitz  <keiths@redhat.com>
4674
4675         * linespec.c (decode_objc): Add cleanup to free
4676         INFO.FILE_SYMTABS.
4677         (find_linespec_symbols): Add cleanup to free CLASSES.
4678         * symfile.c (find_separate_debug_file_by_debuglink): Add
4679         cleanup to free DEBUGLINK.
4680         * ui-out.c (clear_header_list): No need to check if
4681         HEADER_NEXT.COLHDR is NULL.
4682         Free HEADER_NEXT.COL_NAME.
4683
4684 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
4685
4686         * ada-lang.c (standard_lookup): Prevent uninitialized variable
4687         warning.
4688
4689 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
4690
4691         * configure.host (gdb_host_cpu): Handle tilegx*.
4692         (gdb_host): Handle tilegx-*-linux*.
4693         * tilegx-linux-nat.c: New file.
4694         * config/tilegx/linux.mh: New file.
4695
4696 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
4697
4698         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
4699         tilegx-linux-tdep.o.
4700         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
4701         tilegx-linux-tdep.c.
4702         * configure.tgt: Handle tilegx-*-linux*.
4703         * tilegx-tdep.h: New file.
4704         * tilegx-tdep.c: New file.
4705         * tilegx-linux-tdep.c: New file.
4706         * regformats/reg-tilegx.dat: New file.
4707
4708 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
4709
4710         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
4711         accounting of hw watchpoints on ppc.
4712
4713 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
4714
4715         * source.c (openp): Expand tilde in path entries.
4716
4717 2012-05-29  Doug Evans  <dje@google.com>
4718
4719         * buildsym.c (block_compar): Fix comment.
4720         (end_symtab): Fix and clarify some comments.
4721
4722         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
4723         cleanup_undefined_types.
4724         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
4725         All callers updated.
4726
4727 2012-05-29  Tom Tromey  <tromey@redhat.com>
4728
4729         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
4730         fails.
4731         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
4732         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
4733         fails.
4734         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
4735         fails.
4736
4737 2012-05-29  Tristan Gingold  <gingold@adacore.com>
4738
4739         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
4740         (struct darwin_info): ... New struct.
4741         (solib_darwin_pspace_data): New variable.
4742         (darwin_pspace_data_cleanup): New function.
4743         (get_darwin_info): Likewise.
4744         (darwin_dyld_version_ok, darwin_load_image_infos)
4745         (darwin_solib_get_all_image_info_addr_at_init)
4746         (darwin_solib_read_all_image_info_addr): Add info argument.
4747         Adjust code.
4748         (darwin_current_sos): Use per pspace structure.
4749         (darwin_solib_create_inferior_hook): Likewise.
4750         (darwin_clear_solib): Likewise.
4751         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
4752
4753 2012-05-28  Pedro Alves  <palves@redhat.com>
4754
4755         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
4756         block that uses them.  Clear ecss before handling each event.
4757
4758 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4759
4760         * solib-svr4.c (svr4_current_sos): New comment on
4761         svr4_current_sos_via_xfer_libraries fall back.
4762
4763 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4764
4765         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
4766         it as a fallback for TYPE_IS_OPAQUE.
4767         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
4768         symbols for lookup_symbol.
4769
4770 2012-05-24  John Steele Scott  <toojays@toojays.net>
4771
4772         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
4773         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
4774         (producer_is_gxx_lt_4_6): Move the checking and caching to...
4775         (check_producer): ... this new function, which also checks for ICC
4776         and caches the result.
4777         (producer_is_icc): New function.
4778         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
4779         producer was ICC.
4780
4781 2012-05-24  Pedro Alves  <palves@redhat.com>
4782
4783         PR gdb/7205
4784
4785         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
4786         (default_gdb_signal_to_target): ... this.  Add comment.
4787         (default_gdb_signal_from_host): Rename to ...
4788         (default_gdb_signal_from_target): ... this.  Add comment.
4789         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
4790         (default_gdb_signal_to_target): ... this.
4791         (default_gdb_signal_from_host): Rename to ...
4792         (default_gdb_signal_from_target): ... this.
4793         * corelow.c (core_open): Adjust to naming change.  Replace comment.
4794         * gdbarch.sh (gdb_signal_from_host): Rename to ...
4795         (gdb_signal_from_target): ... this.  Adjust to
4796         default_gdb_signal_from_host naming change.  Extend comment.
4797         (gdb_signal_to_host): Rename to ...
4798         (gdb_signal_to_target): ... this.  Adjust to
4799         default_gdb_signal_to_host naming change.
4800         * gdbarch.h, gdbarch.c: Renegerate.
4801
4802 2012-05-24  Pedro Alves  <palves@redhat.com>
4803
4804         PR gdb/7205
4805
4806         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
4807
4808 2012-05-24  Pedro Alves  <palves@redhat.com>
4809
4810         PR gdb/7205
4811
4812         Replace target_signal with gdb_signal throughout.
4813
4814 2012-05-24  Pedro Alves  <palves@redhat.com>
4815
4816         PR tui/14159
4817
4818         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
4819         string, instead of reusing the va_list argument.
4820
4821 2012-05-24  Tom Tromey  <tromey@redhat.com>
4822
4823         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
4824         Remove.
4825
4826 2012-05-23  Doug Evans  <dje@google.com>
4827
4828         * symtab.c (search_symbols): Formatting fixes.
4829         (print_symbol_info): Formatting fixes.
4830
4831         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
4832         int64_t change to leb128 API.
4833         (read_encoded_value, decode_frame_entry_1): Ditto.
4834         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
4835         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
4836         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4837         (execute_stack_op): Ditto.
4838         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
4839         (safe_read_uleb128, safe_read_sleb128): Ditto.
4840         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
4841         (dwarf2_compile_expr_to_ax): Ditto.
4842         (locexpr_describe_location_piece): Ditto.
4843         (disassemble_dwarf_expression): Ditto.
4844         (locexpr_describe_location_1): Ditto.
4845
4846 2012-05-23  Stan Shebs  <stan@codesourcery.com>
4847             Kwok Cheung Yeung  <kcy@codesourcery.com>
4848
4849         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
4850         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
4851         (mi-cmd-info.o): New rule.
4852         * osdata.h (info_osdata_command): New declaration.
4853         * osdata.c (info_osdata_command): Change to non-static.
4854         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
4855         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
4856         * mi/mi-cmd-info.c: New file.
4857
4858 2012-05-23  Doug Evans  <dje@google.com>
4859
4860         * symtab.c (search_symbols): Pass NULL for file_matcher to
4861         expand_symtabs_matching if there are no files to match.
4862
4863         * gdbtypes.c (lookup_typename): Simplify.
4864
4865 2012-05-23  Pedro Alves  <palves@redhat.com>
4866
4867         * arch-utils.h (default_target_signal_to_host): Delete.
4868         * arch-utils.c (default_target_signal_to_host): Delete.
4869         * gdbarch.sh (target_signal_to_host): Remove.
4870         * gdbarch.h, gdbarch.c: Regenerate.
4871
4872 2012-05-22  Doug Evans  <dje@google.com>
4873
4874         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
4875         "const gdb_byte *".
4876         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
4877         (execute_cfa_program): Update to match API of leb128 functions.
4878         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
4879         "const gdb_byte *".
4880         (read_unsigned_leb128, read_signed_leb128): Delete.
4881         (read_initial_length): Change type of buf argument to
4882         "const gdb_byte *".
4883         (read_encoded_value): Update to match API of leb128 functions.
4884         (decode_frame_entry): Change result to "const gdb_byte *", and
4885         similarly for "start" parameter.
4886         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
4887         (dwarf2_build_frame_info): Change local frame_ptr to
4888         "const gdb_byte *".
4889         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
4890         read_uleb128, read_sleb128.  All callers updated.
4891         (safe_skip_leb128): New function.
4892         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
4893         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
4894         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
4895         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
4896         read_uleb128, read_sleb128.
4897         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
4898         (execute_stack_op): Update to match API of leb128 functions.
4899         * dwarf2expr.h: #include "leb128.h".
4900         (read_uleb128, read_sleb128): Delete.
4901         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
4902         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
4903         * dwarf2loc.c (debug_loc_kind): New enum.
4904         (decode_debug_loc_addresses): New function.
4905         (decode_debug_loc_dwo_addresses): New function.
4906         (dwarf2_find_location_expression): Rewrite.
4907         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
4908         (locexpr_describe_location_piece): Ditto.
4909         (disassemble_dwarf_expression): Ditto.
4910         (locexpr_describe_location_1): Ditto.
4911         (loclist_describe_location): Rewrite.
4912         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
4913         * dwarf2read.c (die_reader_specs): New member "buffer_end".
4914         (dwarf2_section_buffer_overflow_complaint): Renamed from
4915         dwarf2_macros_too_long_complaint.  All callers updated.
4916         (skip_leb128): Delete.
4917         (init_cu_die_reader): Initialize reader->buffer_end.
4918         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
4919         (skip_form_bytes): New arg buffer_end.  All callers updated.
4920         Replace call to skip_leb128 with gdb_skip_leb128.
4921         (skip_unknown_opcode): New arg mac_end.  All callers updated.
4922         (fill_in_loclist_baton): Initialize baton->from_dwo.
4923
4924 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
4925
4926         * mips-linux-nat.c (mips_linux_read_description): Use a more
4927         verbose error message.
4928
4929 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
4930
4931         * NEWS: Add MIPS/Linux DSP support.
4932         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
4933         (SIGCONTEXT_DSPCTL): New macro.
4934         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
4935         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
4936         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
4937         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
4938         (N64_SIGCONTEXT_HI3): Likewise.
4939         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
4940         (N64_SIGCONTEXT_LO3): Likewise.
4941         (N64_SIGCONTEXT_DSPCTL): Likewise.
4942         (N64_SIGCONTEXT_FPCSR): Clarify definition.
4943         (mips_linux_o32_sigframe_init): Handle DSP registers.
4944         (mips_linux_n32n64_sigframe_init): Likewise.
4945
4946 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
4947
4948         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
4949         call to abort.
4950
4951 2012-05-22  Pedro Alves  <palves@redhat.com>
4952
4953         * target.h (store_waitstatus): Move declaration ...
4954         * inf-child.h (store_waitstatus): ... here.
4955         * target.c: Move inclusion of gdb_wait.h, and ...
4956         (store_waitstatus): ... this ...
4957         * inf-child.c: ... here.
4958         * linux-nat.c: Include inf-child.h.
4959         * rs6000-nat.c: Include inf-child.h.
4960         * spu-linux-nat.c: Include inf-child.h.
4961
4962 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
4963
4964         * tracepoint.c (start_tracing): Add missing i18n markup.
4965         (stop_tracing, set_trace_user): Ditto.
4966         (set_trace_notes, set_trace_stop_notes): Ditto.
4967
4968 2012-05-21  Tom Tromey  <tromey@redhat.com>
4969
4970         PR c++/7173:
4971         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
4972         types.
4973         * value.h (value_cast_pointers): Update.
4974         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
4975         (value_cast): Update.
4976         (update_search_result): New function.
4977         (do_search_struct_field): New, from search_struct_field.  Check
4978         for ambiguous results.
4979         (search_struct_field): Rewrite.
4980         * infcall.c (value_arg_coerce): Update.
4981         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
4982         value_cast_pointers.
4983         * ada-lang.c (ada_convert_actual): Update.
4984
4985 2012-05-21  Tom Tromey  <tromey@redhat.com>
4986
4987         * macroexp.c (macro_stringify): Terminate the string.
4988
4989 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
4990
4991         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
4992         Describe it.
4993         * auto-load.c (auto_load_expand_dir_vars): New function.
4994         (auto_load_safe_path_vec_update): Use it, remove the
4995         substitute_path_component call thanks to it.
4996         (auto_load_objfile_script): Remove the debug_file_directory processing.
4997         Use auto_load_expand_dir_vars, remove the substitute_path_component
4998         call thanks to it.
4999         * configure: Regenerate.
5000         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
5001         path.  Escape $ also for $debugdir.
5002         (--with_auto_load_safe_path): Escape $ also for $debugdir.
5003         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
5004
5005 2012-05-20  Doug Evans  <dje@google.com>
5006
5007         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
5008         before use.  Check for symtab->includes == NULL before scanning it.
5009
5010 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5011
5012         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
5013
5014 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5015
5016         * NEWS: Add microMIPS support and "set mips compression",
5017         "show mips compression" commands.
5018         * mips-tdep.h (mips_isa): New enum.
5019         (gdbarch_tdep): Add mips_isa.
5020         (mips_pc_is_mips16): Update prototype.
5021         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
5022         * mips-tdep.c (mips_compression_mips16): New variable.
5023         (mips_compression_micromips): Likewise.
5024         (mips_compression_strings): Likewise.
5025         (mips_compression_string): Likewise.
5026         (is_mips16_isa, is_micromips_isa): New functions.
5027         (is_mips16_addr): Rename to...
5028         (is_compact_addr): ... this.
5029         (unmake_mips16_addr): Likewise to...
5030         (unmake_compact_addr): ... this.
5031         (make_mips16_addr): Likewise to...
5032         (make_compact_addr): ... this.
5033         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
5034         functions.
5035         (mips_elf_make_msymbol_special): Handle microMIPS code.
5036         (msymbol_is_special): Rename to...
5037         (msymbol_is_mips16): ... this.
5038         (mips_make_symbol_special, mips_pc_is_mips16): Update
5039         accordingly.
5040         (msymbol_is_mips, msymbol_is_micromips): New functions.
5041         (mips16_to_32_reg): Rename to...
5042         (mips_reg3_to_reg): ... this.
5043         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
5044         (mips_pc_isa): Likewise.
5045         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
5046         code.
5047         (mips_fetch_instruction): Pass return status instead of printing
5048         an error message if requested.  Handle microMIPS code.  Bail out
5049         on an invalid ISA.
5050         (micromips_op): New macro.
5051         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
5052         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
5053         (b6s4_op, b7s3_reg): Likewise.
5054         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
5055         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
5056         (mips_insn_size): New function.
5057         (mips32_next_pc): Update mips_fetch_instruction call.
5058         (micromips_relative_offset7): New function.
5059         (micromips_relative_offset10): Likewise.
5060         (micromips_relative_offset16): Likewise.
5061         (micromips_pc_insn_size): Likewise.
5062         (micromips_bc1_pc): Likewise.
5063         (micromips_next_pc): Likewise.
5064         (unpack_mips16): Update mips_fetch_instruction call.
5065         (extended_mips16_next_pc): Update according to change to
5066         mips16_to_32_reg.
5067         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
5068         code.
5069         (mips16_scan_prologue): Update mips_fetch_instruction call.
5070         Update according to change to mips16_to_32_reg.
5071         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
5072         (mips_insn16_frame_base_sniffer): Likewise.
5073         (micromips_decode_imm9): New function.
5074         (micromips_scan_prologue): Likewise.
5075         (mips_micro_frame_cache): Likewise.
5076         (mips_micro_frame_this_id): Likewise.
5077         (mips_micro_frame_prev_register): Likewise.
5078         (mips_micro_frame_sniffer): Likewise.
5079         (mips_micro_frame_unwind): New variable.
5080         (mips_micro_frame_base_address): New function.
5081         (mips_micro_frame_base): New variable.
5082         (mips_micro_frame_base_sniffer): New function.
5083         (mips32_scan_prologue): Update mips_fetch_instruction call.
5084         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
5085         rather than for MIPS16.
5086         (mips_insn32_frame_base_sniffer): Likewise.
5087         (mips_addr_bits_remove): Handle microMIPS code.
5088         (deal_with_atomic_sequence): Rename to...
5089         (mips_deal_with_atomic_sequence): ... this.  Update the type
5090         of the variable used to hold an instruction.  Remove the ISA bit
5091         check.  Update mips_fetch_instruction call.
5092         (micromips_deal_with_atomic_sequence): New function.
5093         (deal_with_atomic_sequence): Likewise.
5094         (mips_about_to_return): Handle microMIPS code.  Update
5095         mips_fetch_instruction call.
5096         (heuristic_proc_start): Check for the standard MIPS ISA rather
5097         than for MIPS16.  Update mips_pc_is_mips16 and
5098         mips_fetch_instruction calls.  Handle microMIPS code.
5099         (mips_push_dummy_code): Handle microMIPS code.
5100         (mips_eabi_push_dummy_call): Likewise.
5101         (mips_o32_return_value): Update mips_pc_is_mips16 call.
5102         (mips_o64_push_dummy_call): Handle microMIPS code.
5103         (mips_o64_return_value): Update mips_pc_is_mips16 call.
5104         (is_delayed): Remove function.
5105         (mips_single_step_through_delay): Replace the call to is_delayed
5106         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
5107         Handle microMIPS code.
5108         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
5109         microMIPS code.
5110         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
5111         call.
5112         (micromips_in_function_epilogue_p): New function.
5113         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
5114         call.
5115         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
5116         Handle microMIPS.
5117         (gdb_print_insn_mips): Likewise.
5118         (mips_breakpoint_from_pc): Likewise.
5119         (mips_remote_breakpoint_from_pc): New function.
5120         (mips32_instruction_has_delay_slot): Simplify making use of the
5121         updated mips_fetch_instruction interface.
5122         (micromips_instruction_has_delay_slot): New function.
5123         (mips16_instruction_has_delay_slot): Simplify making use of the
5124         updated mips_fetch_instruction interface.
5125         (mips_adjust_breakpoint_address): Check for the standard MIPS
5126         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
5127         calls.  Handle microMIPS code.
5128         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
5129         (mips_skip_trampoline_code): Handle microMIPS code.
5130         (global_mips_compression): New function.
5131         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
5132         file flags.  Register the microMIPS remote breakpoint handler
5133         and heuristic frame unwinder.
5134         (show_mips_compression): New function.
5135         (_initialize_mips_tdep): Add the "set mips compression" and
5136         "show mips compression" commands.
5137
5138 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
5139
5140         * ada-lang.c:
5141         * ada-tasks.c:
5142         * ada-varobj.c:
5143         * amd64-darwin-tdep.c:
5144         * arm-symbian-tdep.c:
5145         * arm-tdep.c:
5146         * avr-tdep.c:
5147         * ax-gdb.c:
5148         * bfin-linux-tdep.c:
5149         * breakpoint.c:
5150         * c-valprint.c:
5151         * cli/cli-cmds.c:
5152         * coffread.c:
5153         * cp-support.c:
5154         * cris-tdep.c:
5155         * dwarf2-frame-tailcall.c:
5156         * dwarf2-frame.c:
5157         * dwarf2expr.c:
5158         * dwarf2loc.c:
5159         * dwarf2read.c:
5160         * elfread.c:
5161         * eval.c:
5162         * expprint.c:
5163         * f-valprint.c:
5164         * frv-tdep.c:
5165         * h8300-tdep.c:
5166         * hppa-hpux-tdep.c:
5167         * hppa-tdep.c:
5168         * hppanbsd-tdep.c:
5169         * i386-nto-tdep.c:
5170         * i386-tdep.c:
5171         * i387-tdep.c:
5172         * ia64-tdep.c:
5173         * jit.c:
5174         * linespec.c:
5175         * linux-tdep.c:
5176         * lm32-tdep.c:
5177         * m2-valprint.c:
5178         * m32c-tdep.c:
5179         * m32r-rom.c:
5180         * m32r-tdep.c:
5181         * m68k-tdep.c:
5182         * m68klinux-tdep.c:
5183         * mi/mi-main.c:
5184         * microblaze-tdep.c:
5185         * mips-linux-tdep.c:
5186         * mips-tdep.c:
5187         * mn10300-tdep.c:
5188         * p-valprint.c:
5189         * parse.c:
5190         * ppc-linux-tdep.c:
5191         * ppc-sysv-tdep.c:
5192         * printcmd.c:
5193         * python/py-finishbreakpoint.c:
5194         * python/py-inferior.c:
5195         * python/py-infthread.c:
5196         * python/py-type.c:
5197         * python/python.c:
5198         * remote-fileio.c:
5199         * remote-m32r-sdi.c:
5200         * remote-mips.c:
5201         * reverse.c:
5202         * rl78-tdep.c:
5203         * rs6000-aix-tdep.c:
5204         * rs6000-tdep.c:
5205         * s390-tdep.c:
5206         * score-tdep.c:
5207         * sh64-tdep.c:
5208         * skip.c:
5209         * solib-darwin.c:
5210         * solib-dsbt.c:
5211         * solib-frv.c:
5212         * sparc-tdep.c:
5213         * spu-multiarch.c:
5214         * spu-tdep.c:
5215         * stack.c:
5216         * symfile.c:
5217         * symtab.c:
5218         * tic6x-tdep.c:
5219         * tracepoint.c:
5220         * v850-tdep.c:
5221         * valarith.c:
5222         * valprint.c:
5223         * value.c:
5224         * xcoffread.c:
5225         * xtensa-tdep.c:
5226         * ada-lang.c:
5227         * ada-tasks.c:
5228         * ada-varobj.c:
5229         * amd64-darwin-tdep.c:
5230         * arm-symbian-tdep.c:
5231         * arm-tdep.c: Delete unused variables.
5232
5233 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5234
5235         Rename $ddir to $datadir.
5236         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
5237         * auto-load.c (auto_load_safe_path_vec_update)
5238         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
5239         * configure: Regenerate.
5240         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
5241         Likewise.  Remove the 'use $ddir' help string.
5242
5243 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5244
5245         * auto-load.c (show_auto_load_safe_path): Accept any combination of
5246         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
5247
5248 2012-05-18  Tom Tromey  <tromey@redhat.com>
5249
5250         PR exp/13907:
5251         * valprint.h (struct value_print_options) <symbol_print>: New
5252         field.
5253         * valprint.c (user_print_options): Add default for symbol_print.
5254         (show_symbol_print): New function.
5255         (generic_val_print): Respect symbol_print.
5256         (_initialize_valprint): Add "print symbol" setting.
5257         * f-valprint.c (f_val_print): Respect symbol_print.
5258         * c-valprint.c (c_val_print): Respect symbol_print.
5259         * NEWS: Update.
5260         * printcmd.c (print_address_symbolic): Return int.  Ignore some
5261         zero-size symbols.
5262         (print_address_demangle): Return int.
5263         * defs.h: (print_address_symbolic): Return int.
5264         * value.h (print_address_demangle): Return int.
5265
5266 2012-05-18  Tom Tromey  <tromey@redhat.com>
5267
5268         * valprint.c (val_print_string): Don't print leading space.
5269         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
5270         print space before string or vtbl.
5271         * m2-valprint.c (print_unpacked_pointer): Optionally print space
5272         before string.
5273         * jv-valprint.c (java_value_print): Print space before string.
5274         * go-valprint.c (print_go_string): Print space before string.
5275         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
5276         space before string.
5277         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
5278         space before string or vtbl.
5279         * auxv.c (fprint_target_auxv): Print space after address.
5280
5281 2012-05-18  Tom Tromey  <tromey@redhat.com>
5282
5283         * printcmd.c (print_address_demangle): Remove special case for 0.
5284
5285 2012-05-18  Tom Tromey  <tromey@redhat.com>
5286
5287         * printcmd.c (print_address_demangle): Add 'opts' argument.
5288         * p-valprint.c (pascal_val_print): Update.
5289         * jv-valprint.c (java_val_print): Update.
5290         * value.h: Update.
5291         * valprint.c (generic_val_print): Update.
5292         (print_function_pointer_address): Add 'options' argument.  Remove
5293         'addressprint' argument.  Update.
5294         * m2-valprint.c (print_unpacked_pointer): Update.
5295         * gnu-v3-abi.c (print_one_vtable): Update.
5296         (gnuv3_print_method_ptr): Update.
5297         * f-valprint.c (f_val_print): Update.
5298         * cp-valprint.c (cp_print_value_fields): Update.
5299         * valprint.h (print_function_pointer_address): Update.
5300         * c-valprint.c (c_val_print): Update.
5301
5302 2012-05-18  Tom Tromey  <tromey@redhat.com>
5303
5304         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
5305         directly corresponding to the found psymtab.
5306         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
5307         (dw2_find_pc_sect_symtab): Use it.
5308         * block.h (blockvector_contains_pc): Declare.
5309         * block.c (find_block_in_blockvector): New function.
5310         (blockvector_for_pc_sect): Use it.
5311         (blockvector_contains_pc): New function.
5312
5313 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5314
5315         * mips-tdep.h (mips_write_pc): New prototype.
5316         * mips-tdep.c (mips_write_pc): Make external, add description.
5317         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
5318         add description.
5319
5320 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5321
5322         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
5323         mips_regnum->pc.
5324         (mips_unwind_pc, mips_write_pc): Likewise.
5325         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
5326         gdbarch_read_pc.
5327
5328 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
5329
5330         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
5331         proc_warn, proc_error, proc_get_status, proc_flags,
5332         proc_why, proc_what, proc_nsysarg, proc_sysargs,
5333         proc_set_run_on_last_close, proc_unset_run_on_last_close,
5334         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
5335         proc_stop_process, proc_wait_for_stop, proc_run_process,
5336         proc_set_traced_signals, proc_set_traced_faults,
5337         proc_set_traced_sysentry, proc_set_traced_sysexit,
5338         proc_set_held_signals, proc_get_held_signals,
5339         proc_get_traced_signals, proc_get_traced_faults,
5340         proc_get_traced_sysentry, proc_get_traced_sysexit,
5341         proc_clear_current_fault, proc_set_current_signal,
5342         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
5343         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
5344         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
5345         proc_get_current_thread, proc_get_current_thread,
5346         proc_get_current_thread, proc_update_threads,
5347         proc_update_threads, proc_update_threads, proc_update_threads,
5348         proc_iterate_over_threads, procfs_find_new_threads,
5349         procfs_pid_to_str): Make static.  Remove advance declaration.
5350         (proc_cursig): Make static.  Conditionalized defintion on
5351         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
5352         (proc_syscall, proc_set_kill_on_last_close,
5353         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
5354         proc_get_pending_signals, proc_get_signal_actions,
5355         proc_trace_signal, proc_ignore_signal): Delete.
5356
5357 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
5358
5359         * coffread.c (cs_section_address): Passing proper argument for
5360         `bfd_get_section_vma'.
5361         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
5362         `bfd_get_section_flags'.
5363         * remote.c (remote_trace_set_readonly_regions): Likewise, for
5364         `bfd_get_section_vma'.
5365
5366 2012-05-16  Tom Tromey  <tromey@redhat.com>
5367
5368         PR macros/13205:
5369         * macrotab.h: (macro_define_special): Declare.
5370         (enum macro_special_kind): New.
5371         (struct macro_definition) <argc, replacement>: Update comments.
5372         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
5373         (macro_define_object_internal): New function.
5374         (macro_define_object): Use it.
5375         (macro_define_special): New function.
5376         (fixup_definition): New function.
5377         (macro_lookup_definition, foreach_macro_in_scope)
5378         (foreach_macro): Use fixup_definition.
5379         * macroexp.h (macro_stringify): Declare.
5380         * macroexp.c (free_buffer_return_text): New function.
5381         (stringify): Constify "arg".
5382         (macro_stringify): New function.
5383         * dwarf2read.c (macro_start_file): Call macro_define_special.
5384
5385 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
5386             Maciej W. Rozycki  <macro@mips.com>
5387
5388         * breakpoint.h (bp_location): Add related_address member.
5389         * inferior.h (get_return_value): Take a pointer to struct value
5390         instead of struct type for the function requested.
5391         * value.h (using_struct_return): Likewise.
5392         * gdbarch.sh (return_value): Take a pointer to struct value
5393         instead of struct type for the function requested.
5394         * breakpoint.c (set_breakpoint_location_function): Initialize
5395         related_address for bp_gnu_ifunc_resolver breakpoints.
5396         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
5397         requested function's address to gdbarch_return_value.
5398         * eval.c (evaluate_subexp_standard): Pass the requested
5399         function's address to using_struct_return.
5400         * infcall.c (call_function_by_hand): Pass the requested
5401         function's address to using_struct_return and
5402         gdbarch_return_value.
5403         * infcmd.c (get_return_value): Take a pointer to struct value
5404         instead of struct type for the function requested.
5405         (print_return_value): Update accordingly.
5406         (finish_command_continuation): Likewise.
5407         * stack.c (return_command): Pass the requested function's
5408         address to using_struct_return and gdbarch_return_value.
5409         * value.c (using_struct_return): Take a pointer to struct value
5410         instead of struct type for the function requested.  Pass the
5411         requested function's address to gdbarch_return_value.
5412         * python/py-finishbreakpoint.c (finish_breakpoint_object):
5413         New function_value member, replacing function_type.
5414         (bpfinishpy_dealloc): Update accordingly.
5415         (bpfinishpy_pre_stop_hook): Likewise.
5416         (bpfinishpy_init): Likewise.  Record the requested function's
5417         address.
5418         * mips-tdep.c (mips_fval_reg): New enum.
5419         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
5420         words put in GP registers.
5421         (mips_o64_push_dummy_call): Update a comment.
5422         (mips_o32_return_value): Take a pointer to struct value instead
5423         of struct type for the function requested and use it to check if
5424         using the MIPS16 calling convention.  Return the designated
5425         general purpose registers for floating-point values returned in
5426         MIPS16 mode.
5427         (mips_o64_return_value): Likewise.
5428         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
5429         (ppc_sysv_abi_broken_return_value): Likewise.
5430         (ppc64_sysv_abi_return_value): Likewise.
5431         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
5432         value instead of struct type for the function requested.
5433         * amd64-tdep.c (amd64_return_value): Likewise.
5434         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
5435         * arm-tdep.c (arm_return_value): Likewise.
5436         * avr-tdep.c (avr_return_value): Likewise.
5437         * bfin-tdep.c (bfin_return_value): Likewise.
5438         * cris-tdep.c (cris_return_value): Likewise.
5439         * frv-tdep.c (frv_return_value): Likewise.
5440         * h8300-tdep.c (h8300_return_value): Likewise.
5441         (h8300h_return_value): Likewise.
5442         * hppa-tdep.c (hppa32_return_value): Likewise.
5443         (hppa64_return_value): Likewise.
5444         * i386-tdep.c (i386_return_value): Likewise.
5445         * ia64-tdep.c (ia64_return_value): Likewise.
5446         * iq2000-tdep.c (iq2000_return_value): Likewise.
5447         * lm32-tdep.c (lm32_return_value): Likewise.
5448         * m32c-tdep.c (m32c_return_value): Likewise.
5449         * m32r-tdep.c (m32r_return_value): Likewise.
5450         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
5451         * m68k-tdep.c (m68k_return_value): Likewise.
5452         (m68k_svr4_return_value): Likewise.
5453         * m88k-tdep.c (m88k_return_value): Likewise.
5454         * mep-tdep.c (mep_return_value): Likewise.
5455         * microblaze-tdep.c (microblaze_return_value): Likewise.
5456         * mn10300-tdep.c (mn10300_return_value): Likewise.
5457         * moxie-tdep.c (moxie_return_value): Likewise.
5458         * mt-tdep.c (mt_return_value): Likewise.
5459         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
5460         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
5461         (ppc_sysv_abi_broken_return_value): Likewise.
5462         (ppc64_sysv_abi_return_value): Likewise.
5463         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
5464         * rl78-tdep.c (rl78_return_value): Likewise.
5465         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
5466         * rx-tdep.c (rx_return_value): Likewise.
5467         * s390-tdep.c (s390_return_value): Likewise.
5468         * score-tdep.c (score_return_value): Likewise.
5469         * sh-tdep.c (sh_return_value_nofpu): Likewise.
5470         (sh_return_value_fpu): Likewise.
5471         * sh64-tdep.c (sh64_return_value): Likewise.
5472         * sparc-tdep.c (sparc32_return_value): Likewise.
5473         * sparc64-tdep.c (sparc64_return_value): Likewise.
5474         * spu-tdep.c (spu_return_value): Likewise.
5475         * tic6x-tdep.c (tic6x_return_value): Likewise.
5476         * v850-tdep.c (v850_return_value): Likewise.
5477         * vax-tdep.c (vax_return_value): Likewise.
5478         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
5479         * xtensa-tdep.c (xtensa_return_value): Likewise.
5480         * gdbarch.c: Regenerate.
5481         * gdbarch.h: Regenerate.
5482
5483 2012-05-15  Tom Tromey  <tromey@redhat.com>
5484
5485         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
5486
5487 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5488
5489         * breakpoint.c (init_breakpoint_sal): Add quotes around part
5490         of command in two error message.
5491
5492 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5493
5494         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
5495
5496 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
5497
5498         * breakpoint.c (find_condition_and_thread): Minor reformatting.
5499
5500 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
5501
5502         * NEWS (show auto-load scripts-directory): Add forgotten command.
5503
5504 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
5505
5506         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
5507         parameters.
5508
5509 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
5510
5511         * amd64-tdep.c: Include features/i386/x32.c and
5512         features/i386/x32-avx.c.
5513         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
5514         initialize_tdesc_x32_avx.
5515
5516 2012-05-14  Stan Shebs  <stan@codesourcery.com>
5517
5518         Add dynamic printf.
5519         * breakpoint.h (enum bptype): New type bp_dprintf.
5520         (struct breakpoint): New field extra_string.
5521         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
5522         (create_breakpoint): Add extra_string arg.
5523         * breakpoint.c (dprintf_breakpoint_ops): New.
5524         (is_breakpoint): Add bp_dprintf.
5525         (bpstat_what): Add dprintf case.
5526         (bptype_string): Ditto.
5527         (print_one_breakpoint_location): Ditto.
5528         (init_bp_location): Ditto.
5529         (bkpt_print_mention): Ditto.
5530         (dprintf_style_enums): New array.
5531         (dprintf_style): New global.
5532         (dprintf_function): New global.
5533         (dprintf_channel): New global.
5534         (update_dprintf_command_list): New function.
5535         (update_dprintf_commands): New function.
5536         (init_breakpoint_sal): Add extra_string argument, handle it.
5537         (create_breakpoint_sal): Add extra_string argument.
5538         (create_breakpoints_sal): Add extra_string argument, update callers.
5539         (find_condition_and_thread): Add extra argument.
5540         (create_breakpoint): Add extra_string argument, record it.
5541         (dprintf_command): New function.
5542         (break_command_1): Add arg to create_breakpoint call.
5543         (handle_gnu_v3_exceptions): Ditto.
5544         (trace_command): Ditto.
5545         (ftrace_command): Ditto.
5546         (strace_command): Ditto.
5547         (bkpt_print_mention): Add dprintf case.
5548         (create_breakpoint_sal_default): Add extra_string argument.
5549         (_initialize_breakpoint): Add new commands.
5550         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
5551         * python/py-breakpoint.c (bppy_init): Ditto.
5552         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5553
5554 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
5555
5556         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
5557
5558 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
5559
5560         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
5561         unsigned long long.
5562
5563 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
5564
5565         Add a new function gdb.find_pc_line to the Python API.
5566         * NEWS (Python Scripting): Add entry about the new function.
5567         * python/python.c (gdbpy_find_pc_line): New function which
5568         implements gdb.find_pc_line.
5569         (GdbMethods): Add entry for the new function.
5570
5571 2012-05-12  Pedro Alves  <palves@redhat.com>
5572
5573         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
5574         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
5575
5576 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
5577
5578         * inferior.c: Include completer.h
5579         (initialize_inferiors): Set completer of add-inferior to
5580         filename_completer.
5581
5582 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5583
5584         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5585         gdbarch_ptr_bit for x32 core dump.
5586
5587 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5588
5589         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
5590         and features/i386/x32-avx-linux.c.
5591
5592 2012-05-11  Stan Shebs  <stan@codesourcery.com>
5593             Kwok Cheung Yeung  <kcy@codesourcery.com>
5594
5595         * NEWS: Describe new info os commands.
5596         * common/linux-osdata.c (PID_T, TIME_T): Define.
5597         (MAX_PID_T_STRLEN): New.
5598         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
5599         MAX_PID_T_STRLEN.
5600         (command_from_pid): Add comment.  Change to use PID_T.
5601         (commandline_from_pid):  Change to use PID_T.
5602         (user_from_pid): Add comment.
5603         (get_process_owner): Add comment. Change to use PID_T and
5604         MAX_PID_T_STRLEN.
5605         (get_number_of_cpu_cores): Add comment.
5606         (get_cores_used_by_process): Add comment.  Change to use PID_T and
5607         MAX_PID_T_STRLEN.
5608         (linux_xfer_osdata_processes): Change to use PID_T and
5609         MAX_PID_T_STRLEN.
5610         (compare_processes): New function.
5611         (linux_xfer_osdata_processgroups): New function.
5612         (linux_xfer_osdata_threads): Change to use PID_T.
5613         (linux_xfer_osdata_fds): New function.
5614         (format_socket_state, print_sockets): New functions.
5615         (union socket_addr): New union.
5616         (linux_xfer_osdata_isockets): New function.
5617         (time_from_time_t, group_from_gid): New functions.
5618         (linux_xfer_osdata_shm): New function.
5619         (linux_xfer_osdata_sem): New function.
5620         (linux_xfer_osdata_msg): New function.
5621         (linux_xfer_osdata_modules): New function.
5622         (osdata_table): Add new entries.
5623         * common/buffer.c (buffer_xml_printf): Add support for long and
5624         long long format specifiers.
5625
5626 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
5627
5628         * amd64-linux-tdep.h (tdesc_x32_linux): New.
5629         (tdesc_x32_avx_linux): Likewise.
5630
5631 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5632
5633         Implement multi-component --with-auto-load-dir.
5634         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
5635         entries.
5636         (--with-auto-load-safe-path): Update the default value description.
5637         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
5638         New.
5639         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
5640         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
5641         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
5642         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
5643         "set auto-load scripts-directory".
5644         * config.in: Regenerate.
5645         * configure: Regenerate.
5646         * configure.ac (--with-auto-load-dir): New configure option.
5647         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
5648
5649 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5650
5651         Provide $ddir substitution for --with-auto-load-safe-path.
5652         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
5653         entries.
5654         * auto-load.c: Include observer.h.
5655         (auto_load_safe_path_vec_update): Call substitute_path_component for
5656         each component.  New variable ddir_subst.
5657         (auto_load_gdb_datadir_changed): New function.
5658         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5659         AUTO_LOAD_SAFE_PATH.  New comment.
5660         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5661         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
5662         * config.in: Regenerate.
5663         * configure: Regenerate.
5664         * configure.ac (--auto-load-safe-path): Rename
5665         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
5666         GDB_DATADIR/auto-load.
5667         * defs.h (substitute_path_component): New declaration.
5668         * top.c: Include observer.h.
5669         (set_gdb_datadir): New function.
5670         (init_main): Install it for "set data-directory".
5671         * utils.c (substitute_path_component): New function.
5672
5673 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5674
5675         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
5676         * auto-load.c (auto_load_objfile_script): Remove check for NULL
5677         DEBUG_FILE_DIRECTORY.  Handle multiple components of
5678         DEBUG_FILE_DIRECTORY.
5679
5680 2012-05-10  Tom Tromey  <tromey@redhat.com>
5681
5682         * dwarf2read.c (recursively_write_psymbols): New function.
5683         (write_psymtabs_to_index): Use it.
5684
5685         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
5686         field.
5687         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
5688         (load_partial_comp_unit): Update.
5689         (queue_comp_unit): Add argument 'pretend_language'.
5690         (process_queue): Update.
5691         (psymtab_to_symtab_1): Skip dependencies that have a user.
5692         (load_partial_comp_unit_reader): Give meaning to the 'data'
5693         argument.
5694         (load_full_comp_unit): Add 'pretend_language' argument.
5695         (process_full_comp_unit): Add 'pretend_language' argument.  Set
5696         language on CU.
5697         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
5698         Update.
5699         (maybe_queue_comp_unit): Add 'pretend_language' argument.
5700         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
5701         Update.
5702         (prepare_one_comp_unit): Add 'pretend_language' argument.
5703
5704         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
5705         (struct dwarf2_per_objfile) <just_read_cus>: New field.
5706         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
5707         (dw2_do_instantiate_symtab): Check whether symtab was read in
5708         before queueing.
5709         (dw2_instantiate_symtab): Add assertion.  Call
5710         process_cu_includes.
5711         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
5712         (partial_symtab_p): New typedef.
5713         (set_partial_user): New function.
5714         (dwarf2_build_psymtabs_hard): Use set_partial_user.
5715         (scan_partial_symbols): Add imported CU to imported_symtabs.
5716         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
5717         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
5718         (get_symtab, recursively_compute_inclusions)
5719         (compute_symtab_includes, process_cu_includes)
5720         (process_imported_unit_die): New functions.
5721         (process_die) <DW_TAG_imported_unit>: New case.
5722         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
5723
5724         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
5725         comment.
5726         (struct partial_die_info) <locdesc>: Remove.
5727         <d>: New field.
5728         (process_psymtab_comp_unit): Add 'read_partial' argument.
5729         Update.
5730         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
5731         (scan_partial_symbols): Handle DW_TAG_imported_unit.
5732         (add_partial_symbol): Update.
5733         (process_die): Handle DW_TAG_partial_unit.
5734         (read_file_scope): Update comment.
5735         (load_partial_dies): Handle DW_TAG_imported_unit.
5736         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
5737         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
5738
5739 2012-05-10  Tom Tromey  <tromey@redhat.com>
5740
5741         * cc-with-dwz.sh: New file.
5742
5743 2012-05-10  Tom Tromey  <tromey@redhat.com>
5744
5745         * symtab.h (struct symtab) <includes, user>: New fields.
5746         * block.h (struct block_iterator) <d, idx, which>: New fields.
5747         * block.c (initialize_block_iterator, find_iterator_symtab)
5748         (block_iterator_step, block_iter_name_step)
5749         (block_iter_match_step): New functions.
5750         (block_iterator_first, block_iterator_next)
5751         (block_iter_name_first, block_iter_name_next)
5752         (block_iter_match_first, block_iter_match_next): Rewrite.
5753         (get_block_symtab): New function.
5754
5755 2012-05-10  Tom Tromey  <tromey@redhat.com>
5756
5757         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
5758         set_block_symtab.
5759         * jit.c (finalize_symtab): Use allocate_global_block,
5760         set_block_symtab.
5761         * buildsym.c (finish_block_internal): New function, from old
5762         finish_block.
5763         (finish_block): Rewrite.
5764         (end_symtab): Use finish_block_internal, set_block_symtab.
5765         * block.h (struct global_block): New.
5766         (allocate_global_block, set_block_symtab): Declare.
5767         * block.c (allocate_global_block, set_block_symtab): New
5768         functions.
5769
5770 2012-05-10  Tom Tromey  <tromey@redhat.com>
5771
5772         * psymtab.c (partial_map_expand_apply): Add assertion.
5773         (partial_map_symtabs_matching_filename): Skip included psymtabs.
5774         (psymtab_to_symtab): Find unshared psymtab.
5775         (dump_psymtab): Print including psymtabs.
5776         (recursively_search_psymtabs): New function.
5777         (expand_symtabs_matching_via_partial): Use it.
5778         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
5779         fields.
5780         (enum psymtab_search_status): New.
5781
5782 2012-05-10  Tom Tromey  <tromey@redhat.com>
5783
5784         * tracepoint.c (scope_info): Update.
5785         * symtab.c (lookup_block_symbol, iterate_over_symbols)
5786         (find_pc_sect_symtab, search_symbols)
5787         (default_make_symbol_completion_list_break_on)
5788         (make_file_symbol_completion_list): Update.
5789         * symmisc.c (dump_symtab_1): Update.
5790         * stack.c (print_frame_args, iterate_over_block_locals)
5791         (print_frame_labels, iterate_over_block_arg_vars): Update.
5792         * python/py-block.c (block_object) <dict>: Remove.
5793         <block>: New field.
5794         <iter>: Change type.
5795         (blpy_iter): Update.
5796         (blpy_block_syms_iternext): Update.
5797         * psymtab.c (map_block): Use block iterators.
5798         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
5799         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
5800         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
5801         * infrun.c (check_exception_resume): Update.
5802         * cp-support.c (make_symbol_overload_list_block): Update.
5803         * coffread.c (patch_opaque_types): Update.
5804         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
5805         * block.h (struct block_iterator): New.
5806         (block_iterator_first, block_iterator_next, block_iter_name_first)
5807         (block_iter_name_next, block_iter_match_first)
5808         (block_iter_match_next): Declare.
5809         (ALL_BLOCK_SYMBOLS): Redefine.
5810         * block.c (block_iterator_first, block_iterator_next)
5811         (block_iter_name_first, block_iter_name_next)
5812         (block_iter_match_first, block_iter_match_next): New functions.
5813         * ada-lang.c (ada_add_block_symbols)
5814         (ada_make_symbol_completion_list): Use block iterator.
5815
5816 2012-05-10  Tom Tromey  <tromey@redhat.com>
5817
5818         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
5819         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
5820         (lookup_partial_symbol, find_last_source_symtab_from_partial)
5821         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
5822         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
5823         Update.
5824
5825 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
5826
5827         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
5828         print-file-var-lib2.c, print-file-var-main.c and
5829         print-file-var.exp (located in gdb/testsuite/gdb.base).
5830
5831 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
5832
5833         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5834         try locating the symbol in the symbol's own objfile first, before
5835         extending the search to all objfiles.
5836         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5837         out of lookup_symbol_aux_symtabs.
5838         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5839         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5840         Do not search EXCLUDE_OBJFILE.
5841         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5842         (lookup_symbol_global): Search for matches in the block's objfile
5843         first, before searching all other objfiles.
5844
5845 2012-05-10  Tristan Gingold  <gingold@adacore.com>
5846
5847         * printcmd.c (set_command): Add pre/post inc/dec.
5848
5849 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
5850
5851         * gdb.1: Document -ex option.
5852
5853 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
5854
5855         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
5856         * inferior.h (AT_SYMBOL): Delete.
5857
5858 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
5859
5860         * mips-tdep.c (mips_push_dummy_code): New function.
5861         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
5862         ON_STACK and install mips_push_dummy_code as our gdbarch
5863         push_dummy_code routine.
5864
5865 2012-05-09  Pedro Alves  <palves@redhat.com>
5866
5867         * target.c (set_maintenance_target_async_permitted): Rename to ...
5868         (set_target_async_command): ... this.
5869         (show_maintenance_target_async_permitted): Rename to ...
5870         (show_target_async_command): ... this.
5871         (initialize_targets): Adjust.
5872
5873 2012-05-08  Doug Evans  <dje@google.com>
5874
5875         * go-exp.y (classify_name): Add missing assignment of fields of
5876         yylval.ssym.
5877
5878 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
5879
5880         Display the ">" prompt in interactive mode while reading canned
5881         commands, even when the current interpreter is MI.
5882
5883         * interps.c (interp_set_temp): New function.
5884
5885         * interps.h (interp_set_temp): Add prototype.
5886
5887         * cli/cli-script.c (restore_interp): New cleanup function.
5888         (read_command_lines): Temporarily override the current interpreter
5889         with CLI and arrange for restoring the original one.
5890
5891 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
5892
5893         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
5894
5895 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
5896
5897         * probe.c (parse_probes): Move conditional to check for
5898         debuginfo files from here...
5899         * stap-probe.c (stap_get_probes): ... to here.
5900
5901 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
5902             H.J. Lu  <hongjiu.lu@intel.com>
5903
5904         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
5905         `movl %esp, %ebp' for the X32 ABI.
5906
5907 2012-05-07  Tom Tromey  <tromey@redhat.com>
5908
5909         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
5910         get_DW_TAG_name.
5911         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
5912         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
5913         (dwarf_stack_op_name): Remove.
5914         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
5915         (decode_locdesc): Use get_DW_OP_name.
5916         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
5917         (dwarf2_compile_expr_to_ax): Likewise.
5918         (disassemble_dwarf_expression): Likewise.
5919         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
5920
5921 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
5922
5923         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
5924         (sh_linux_sigtramp_cache): New function.
5925         (sh_linux_sigreturn_init): New function.
5926         (sh_linux_rt_sigreturn_init): New function.
5927         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
5928         patterns.
5929         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
5930         syscall codes.
5931         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
5932         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
5933         (sh_linux_init_abi): Add init calls to register new tramp_frame
5934         definitions under 32-bit SH, update comments.
5935
5936 2012-05-07  Pedro Alves  <palves@redhat.com>
5937
5938         PR gdb/10952
5939
5940         * amd64-linux-tdep.c: Include glibc-tdep.h.
5941         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
5942         gdbarch_skip_solib_resolver callback.
5943
5944 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5945
5946         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
5947         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
5948         (show_auto_load_safe_path): Check any-directory by comparison with "/".
5949         (add_auto_load_safe_path): Change the error message.
5950         (_initialize_auto_load): Change the "safe-path" help text.
5951         * configure: Regenerate
5952         * configure.ac (--without-auto-load-safe-path): Set
5953         WITH_AUTO_LOAD_SAFE_PATH to /.
5954
5955 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
5956
5957         * stap-probe.h: Do not include unecessary `probe.h'.
5958
5959 2012-05-05  Alan Modra  <amodra@gmail.com>
5960
5961         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
5962         bfd_und_section_ptr.
5963         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
5964         and bfd_com_section_ptr.
5965
5966 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
5967
5968         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
5969
5970 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
5971
5972         * windows-nat.h (segment_register_p_ftype): New typedef.
5973         (windows_set_segment_register_p): Add declaration.
5974         * windows-nat.c (segment_register_p): New static global.
5975         (windows_set_segment_register_p): New function.
5976         (do_windows_fetch_inferior_registers): Add special handling
5977         for segment registers.
5978         * amd64-windows-nat.c: #include "amd64-tdep.h".
5979         (amd64_windows_segment_register_p): New function.
5980         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
5981         * i386-windows-nat.c: #include "i386-tdep.h".
5982         (i386_windows_segment_register_p): New function.
5983         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
5984
5985 2012-05-04  Tristan Gingold  <gingold@adacore.com>
5986
5987         * printcmd.c (set_command): Emit a warning if the expression is not
5988         an assignment.
5989
5990 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
5991
5992         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
5993         Make static.
5994
5995 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
5996
5997         * stap-probe.c (stap_is_operator): Change declaration.
5998         (stap_get_opcode): Change return value.
5999         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
6000         `stap_parse_argument_1'.
6001
6002 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
6003
6004         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
6005         debug log.
6006
6007 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
6008
6009         Add two new methods global_block and static_block to gdb.Symtab
6010         objects.
6011         * NEWS (Python scripting): Add entry about the new methods.
6012         * python/py-symtab.c (stpy_global_block): New function which
6013         implements the gdb.Symtab.global_block() method.
6014         (stpy_static_block): New function which implements the
6015         gdb.Symtab.static_block() method.
6016         (symtab_object_methods): Add entries for the two new methods.
6017
6018 2012-05-03  Doug Evans  <dje@google.com>
6019
6020         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
6021         files.
6022
6023 2012-05-03  Yao Qi  <yao@codesourcery.com>
6024
6025         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
6026         space.
6027         (i386_process_record): Ditto.
6028
6029 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6030
6031         * infcall.c (unwind_on_signal_p): Make static.
6032
6033 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6034
6035         * sol-thread.c (solaris_pid_to_str): Make static.
6036         (_initialize_sol_thread): Add prototype.
6037
6038 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6039
6040         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
6041
6042 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
6043
6044         * MAINTAINERS: Remove myself.
6045
6046 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6047
6048         Fix --without-auto-load-safe-path for MS-Windows host platform.
6049         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
6050
6051 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
6052
6053         * gdb_curses.h: Undefine KEY_EVENT before including curses
6054         headers.  Move "#undef MOUSE_MOVED" before any curses header
6055         inclusion.
6056
6057 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
6058
6059         * features/i386/i386-mmx-linux.c: Regenerate.
6060         * features/rs6000/powerpc-32.c: Likewise.
6061         * features/rs6000/powerpc-32l.c: Likewise.
6062         * features/rs6000/powerpc-403.c: Likewise.
6063         * features/rs6000/powerpc-403gc.c: Likewise.
6064         * features/rs6000/powerpc-405.c: Likewise.
6065         * features/rs6000/powerpc-505.c: Likewise.
6066         * features/rs6000/powerpc-601.c: Likewise.
6067         * features/rs6000/powerpc-602.c: Likewise.
6068         * features/rs6000/powerpc-603.c: Likewise.
6069         * features/rs6000/powerpc-604.c: Likewise.
6070         * features/rs6000/powerpc-64.c: Likewise.
6071         * features/rs6000/powerpc-64l.c: Likewise.
6072         * features/rs6000/powerpc-750.c: Likewise.
6073         * features/rs6000/powerpc-860.c: Likewise.
6074         * features/rs6000/powerpc-e500.c: Likewise.
6075         * features/rs6000/powerpc-e500l.c: Likewise.
6076         * features/rs6000/powerpc-isa205-32l.c: Likewise.
6077         * features/rs6000/powerpc-isa205-64l.c: Likewise.
6078         * features/rs6000/rs6000.c: Likewise.
6079
6080 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
6081
6082         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
6083         variable.
6084         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
6085         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
6086         (stap_parse_argument) <e>: Likewise.
6087         (handle_stap_probe) <byte_order>: Likewise.
6088
6089 2012-04-30  Doug Evans  <dje@google.com>
6090
6091         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
6092         init_and_read_dies_worker.  All callers updated.
6093         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
6094         replaced with init_cutu_and_read_dies.
6095         (load_partial_comp_unit): Pass 1 for use_existing_cu.
6096         (find_partial_die): Remove FIXME.  Don't free current CU.
6097
6098 2012-04-30  Sterling Augustine  <saugustine@google.com>
6099
6100         * contrib: New directory.
6101         * contrib/test_pubnames_and_indexes.py: New file.
6102
6103 2012-04-30  Doug Evans  <dje@google.com>
6104
6105         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
6106         All callers updated.
6107         (init_cu_die_reader): Verify the section is non-empty.
6108         (dwarf_decode_line_header): Don't dereference section->asection
6109         until we know the section is present.
6110
6111 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
6112
6113         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
6114         probes.
6115
6116 2012-04-29  Yao Qi  <yao@codesourcery.com>
6117
6118         * gdb-code-style.el: New hook gdb-markup-hook
6119         and gdb-comment-hook.
6120
6121 2012-04-28  Doug Evans  <dje@google.com>
6122
6123         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
6124         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
6125         objfile->obfd.
6126         * symfile.h (dwarf2_debug_sections): New member addr.
6127         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
6128         (ctx_no_get_addr_index): New function.
6129         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
6130         (ctx_no_get_addr_index): Declare.
6131         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
6132         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
6133         (dwarf_expr_ctx_funcs): Update.
6134         (needs_get_addr_index): New function.
6135         (needs_frame_ctx_funcs): Update.
6136         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
6137         * dwarf2read.c: #include "gdbcore.h".
6138         (dwarf2_per_objfile): New members addr, dwo_files.
6139         (dwarf2_elf_names): Add entry for addr.
6140         (struct dwo_section_names): New type.
6141         (dwo_section_names): New static global.
6142         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
6143         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
6144         old debug_types_section member updated to use this.
6145         Rename member debug_types_section to info_or_types_section,
6146         all uses updated.
6147         (signatured_type): Rename member type_offset to type_offset_in_tu,
6148         all uses updated.  New member type_offset_in_section.
6149         (struct dwo_sections): New type.
6150         (struct dwo_unit): New type.
6151         (struct dwo_file): New type.
6152         (die_reader_specs): New member dwo_file.
6153         (dwarf2_locate_sections): Watch for .debug_addr.
6154         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
6155         (dwarf2_read_section): Get bfd of section from bfd's asection,
6156         instead of objfile.
6157         (create_cus_from_index): Initialize the_cu->info_or_types_section.
6158         (create_signatured_type_table_from_index): Initialize
6159         sig_type->info_or_types_section.
6160         (dw2_get_file_names): Statement lists for type units with DWO files
6161         live in the DWO file.
6162         (create_debug_types_hash_table): New function.
6163         (create_all_type_units): Rewrite.
6164         (init_cu_die_reader): New arg dwo_file, all callers updated.
6165         (init_and_read_dies_worker): Get section from
6166         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
6167         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
6168         continue reading the CU/TU from there.
6169         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
6170         updated.  Get section from this_cu->info_or_types_section.
6171         (create_all_comp_units): Initialize this_cu->info_or_types_section.
6172         (skip_one_die): New cases DW_FORM_GNU_addr_index,
6173         DW_FORM_GNU_str_index.
6174         (hash_dwo_file, eq_dwo_file): New functions.
6175         (allocate_dwo_file_hash_table): New function.
6176         (hash_dwo_unit, eq_dwo_unit): New functions.
6177         (allocate_dwo_unit_table): New function.
6178         (dwarf2_locate_dwo_sections): New function.
6179         (struct create_dwo_info_table_data): New type.
6180         (create_debug_info_hash_table_reader): New function.
6181         (create_debug_info_hash_table): New function.
6182         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
6183         (lookup_dwo_file): New function.
6184         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
6185         (free_dwo_file, free_dwo_file_cleanup): New functions.
6186         (free_dwo_file_from_slot, free_dwo_files): New functions.
6187         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
6188         (dwarf2_record_block_ranges): Ditto.
6189         (read_partial_die): Ditto.
6190         (process_enumeration_scope): Update to use type_offset_in_section.
6191         (read_full_die_1): New function.
6192         (read_full_die): Rewrite.
6193         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
6194         DW_FORM_GNU_str_index.
6195         (read_addr_index_1, read_addr_index): New functions.
6196         (read_addr_index_from_leb128): New function.
6197         (struct dwarf2_read_addr_index_data): New type.
6198         (dwarf2_read_addr_index_reader): New function.
6199         (dwarf2_read_addr_index): New function.
6200         (read_str_index): New function.
6201         (leb128_size): New function.
6202         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
6203         If processing a type unit from a DWO file, get the line section
6204         from the DWO file.
6205         (var_decode_location): Watch for DW_OP_GNU_addr_index.
6206         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
6207         DW_FORM_GNU_str_index.
6208         (lookup_die_type): Check whether section offset of type's die is
6209         known before looking it up.  Remove assert.  Condition can
6210         legimately happen for inter-cu type references.
6211         (dwarf_attr_name): Handle Fission attributes.
6212         (dwarf_form_name): Handle Fission forms.
6213         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
6214         DW_FORM_GNU_str_index.
6215         (follow_die_sig): Update to use type_offset_in_section.
6216         (decode_locdesc): New case DW_OP_GNU_addr_index.
6217         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
6218         DW_FORM_GNU_str_index.
6219         (cu_debug_loc_section): New function.
6220         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
6221         (dwarf2_per_objfile_free): Unmap .debug_addr section.
6222         Free DWO files if present.
6223         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
6224
6225         Refactor DIE reading.
6226         * dwarf2read.c (dwarf2_per_objfile): Replace members
6227         debug_info_type_hash and debug_types_type_hash with die_type_hash.
6228         (die_reader_specs): New member "die_section".  Temporarily make
6229         member "buffer" non-const, pending constifying all info_ptr uses.
6230         (die_reader_func_ftype): New typedef.
6231         (dw2_get_file_names_reader): New function.
6232         (dw2_get_file_names): Rewrite.
6233         (read_and_check_type_unit_head): Rename arg type_offset to
6234         type_offset_in_tu.
6235         (create_all_type_units): Improve debugging message.
6236         Improve dummy type unit check.
6237         (init_cu_die_reader): New arg "section".  All callers updated.
6238         (init_and_read_dies_worker): New function.
6239         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
6240         (init_cutu_and_read_dies_no_follow): New function.
6241         (init_cutu_and_read_dies_simple): New function.
6242         (process_psymtab_comp_unit_reader): New function.
6243         (process_psymtab_comp_unit): Delete args section,
6244         is_debug_types_section.  Rewrite.  All callers updated.
6245         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
6246         All callers updated.  Rewrite.
6247         (load_partial_comp_unit_reader): New function.
6248         (load_partial_comp_unit): Rewrite.
6249         (skip_children): New arg reader.  Delete args buffer, cu.
6250         All callers updated.
6251         (skip_one_die): New arg reader.  Delete args buffer, cu.
6252         All callers updated.
6253         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
6254         All callers updated.
6255         (load_full_comp_unit_reader): New function.
6256         (load_full_comp_unit): Rewrite.
6257         (read_comp_unit): Delete.
6258         (read_die_and_children_1): Delete, contents moved ...
6259         (read_die_and_children): ... here.
6260         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
6261         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
6262         All callers updated.
6263         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
6264         All callers updated.
6265         (find_partial_die): Rewrite load_all_dies support.
6266         (read_attribute_value): New arg reader.  Delete args abfd, cu.
6267         All callers updated.
6268         (read_attribute): New arg reader.  Delete args abfd, cu.
6269         All callers updated.
6270         (load_full_type_unit): Add assert.
6271         (read_signatured_type_reader): New function.
6272         (read_signatured_type): Rewrite.
6273         (free_stack_comp_unit): Remove call to age_cached_comp_units.
6274         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
6275         All callers updated.  Set per_cu->cu = NULL after freeing it.
6276         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
6277         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
6278         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
6279         (set_die_type): Update.
6280         (get_die_type_at_offset): Update.
6281         (read_file_scope): Call prepare_one_comp_unit.
6282         (read_type_unit_scope): Ditto.
6283         (prepare_one_comp_unit): Set producer if present.
6284
6285 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
6286
6287         * probe.c (compile_rx_or_error): Silence ARI warning about missing
6288          gettext function on `error'.
6289
6290 2012-04-27  Doug Evans  <dje@google.com>
6291
6292         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
6293         is empty.
6294
6295 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
6296             Tom Tromey  <tromey@redhat.com>
6297
6298         * breakpoint.c (struct breakpoint_objfile_data)
6299         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
6300         <exception_probes>: New fields.
6301         (free_breakpoint_probes): New function.
6302         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
6303         `_Unwind_DebugHook'.
6304         (create_exception_master_breakpoint): Likewise.
6305         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
6306         * infrun.c: Including necessary header files for handling SystemTap
6307         probes.
6308         (handle_inferior_event): Handling longjmp breakpoint and exceptions
6309         via SystemTap probes.
6310         (check_exception_resume): Remove `func' argument.  Handle exception
6311         unwinding breakpoint set via a SystemTap probe.
6312         (insert_exception_resume_from_probe): New function.
6313
6314 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
6315             Tom Tromey  <tromey@redhat.com>
6316             Jan Kratochvil  <jan.kratochvil@redhat.com>
6317
6318         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
6319         (COMMON_OBS): Likewise.
6320         (HFILES_NO_SRCDIR): Add `probe'.
6321         * NEWS: Mention support for static and SystemTap probes.
6322         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
6323         SystemTap probes' arguments parser.
6324         * arm-linux-tdep.c: Including headers needed to perform the parsing
6325         of SystemTap probes' arguments.
6326         (arm_stap_is_single_operand): New function.
6327         (arm_stap_parse_special_token): Likewise.
6328         (arm_linux_init_abi): Initializing proper fields used by SystemTap
6329         probes' arguments parser.
6330         * ax-gdb.c (require_rvalue): Removing static declaration.
6331         (gen_expr): Likewise.
6332         * ax-gdb.h (gen_expr): Declaring function.
6333         (require_rvalue): Likewise.
6334         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
6335         (bkpt_probe_breakpoint_ops): New variable.
6336         (momentary_breakpoint_from_master): Set the `probe' value.
6337         (add_location_to_breakpoint): Likewise.
6338         (break_command_1): Using proper breakpoint_ops according to the
6339         argument passed by the user in the command line.
6340         (bkpt_probe_insert_location): New function.
6341         (bkpt_probe_remove_location): Likewise.
6342         (bkpt_probe_create_sals_from_address): Likewise.
6343         (bkpt_probe_decode_linespec): Likewise.
6344         (tracepoint_probe_create_sals_from_address): Likewise.
6345         (tracepoint_probe_decode_linespec): Likewise.
6346         (tracepoint_probe_breakpoint_ops): New variable.
6347         (trace_command): Using proper breakpoint_ops according to the
6348         argument passed by the user in the command line.
6349         (initialize_breakpoint_ops): Initializing breakpoint_ops for
6350         static probes on breakpoints and tracepoints.
6351         * breakpoint.h (struct bp_location) <probe>: New field.
6352         * cli-utils.c (skip_spaces_const): New function.
6353         (extract_arg): Likewise.
6354         * cli-utils.h (skip_spaces_const): Likewise.
6355         (extract_arg): Likewise.
6356         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
6357         * configure.ac: Append `stap-probe.o' to be generated when ELF
6358         support is present.
6359         * configure: Regenerate.
6360         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
6361         * elfread.c: Include `probe.h' and `arch-utils.h'.
6362         (probe_key): New variable.
6363         (elf_get_probes): New function.
6364         (elf_get_probe_argument_count): Likewise.
6365         (elf_evaluate_probe_argument): Likewise.
6366         (elf_compile_to_ax): Likewise.
6367         (elf_symfile_relocate_probe): Likewise.
6368         (stap_probe_key_free): Likewise.
6369         (elf_probe_fns): New variable.
6370         (elf_sym_fns): Add `sym_probe_fns' value.
6371         (elf_sym_fns_lazy_psyms): Likewise.
6372         (elf_sym_fns_gdb_index): Likewise.
6373         (_initialize_elfread): Initialize objfile cache for static
6374         probes.
6375         * gdb_vecs.h (struct probe): New forward declaration.
6376         (probe_p): New VEC declaration.
6377         * gdbarch.c: Regenerate.
6378         * gdbarch.h: Regenerate.
6379         * gdbarch.sh (stap_integer_prefix): New variable.
6380         (stap_integer_suffix): Likewise.
6381         (stap_register_prefix): Likewise.
6382         (stap_register_suffix): Likewise.
6383         (stap_register_indirection_prefix): Likewise.
6384         (stap_register_indirection_suffix): Likewise.
6385         (stap_gdb_register_prefix): Likewise.
6386         (stap_gdb_register_suffix): Likewise.
6387         (stap_is_single_operand): New function.
6388         (stap_parse_special_token): Likewise.
6389         (struct stap_parse_info): Forward declaration.
6390         * i386-tdep.c: Including headers needed to perform the parsing
6391         of SystemTap probes' arguments.
6392         (i386_stap_is_single_operand): New function.
6393         (i386_stap_parse_special_token): Likewise.
6394         (i386_elf_init_abi): Initializing proper fields used by SystemTap
6395         probes' arguments parser.
6396         * i386-tdep.h (i386_stap_is_single_operand): New function.
6397         (i386_stap_parse_special_token): Likewise.
6398         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
6399         * mipsread.c (ecoff_sym_fns): Likewise.
6400         * objfiles.c (objfile_relocate1): Support relocation for static
6401         probes.
6402         * parse.c (prefixify_expression): Remove static declaration.
6403         (initialize_expout): Likewise.
6404         (reallocate_expout): Likewise.
6405         * parser-defs.h (initialize_expout): Declare function.
6406         (reallocate_expout): Likewise.
6407         (prefixify_expression): Likewise.
6408         * ppc-linux-tdep.c: Including headers needed to perform the parsing
6409         of SystemTap probes' arguments.
6410         (ppc_stap_is_single_operand): New function.
6411         (ppc_stap_parse_special_token): Likewise.
6412         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
6413         probes' arguments parser.
6414         * probe.c: New file, for generic statically defined probe support.
6415         * probe.h: Likewise.
6416         * s390-tdep.c: Including headers needed to perform the parsing of
6417         SystemTap probes' arguments.
6418         (s390_stap_is_single_operand): New function.
6419         (s390_gdbarch_init): Initializing proper fields used by SystemTap
6420         probes' arguments parser.
6421         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
6422         * stap-probe.c: New file, for SystemTap probe support.
6423         * stap-probe.h: Likewise.
6424         * symfile.h: Include `gdb_vecs.h'.
6425         (struct sym_probe_fns): New struct.
6426         (struct sym_fns) <sym_probe_fns>: New field.
6427         * symtab.c (init_sal): Initialize `probe' field.
6428         * symtab.h (struct probe): Forward declaration.
6429         (struct symtab_and_line) <probe>: New field.
6430         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
6431         locations.
6432         (stop_tracing): Likewise.
6433         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
6434
6435 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
6436             Tom Tromey  <tromey@redhat.com>
6437
6438         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
6439         and to compile agent expressions.
6440         * infrun.c (siginfo_make_value): New argument `ignore'.
6441         (siginfo_funcs): New struct.
6442         (_initialize_infrun): New argument when calling
6443         `create_internalvar_type_lazy'.
6444         * thread.c (thread_id_make_value): New argument `ignore'.
6445         (thread_funcs): New struct.
6446         (_initialize_thread): New argument when calling
6447         `create_internalvar_type_lazy'.
6448         * tracepoint.c (sdata_make_value): New argument `ignore'.
6449         (sdata_funcs): New struct.
6450         (_initialize_tracepoint): New argument when calling
6451         `create_internalvar_type_lazy'.
6452         * value.c (make_value): New struct.
6453         (create_internalvar_type_lazy): New argument `data'.
6454         (compile_internalvar_to_ax): New function.
6455         (value_of_internalvar): Properly handling `make_value' case.
6456         (clear_internalvar): Likewise.
6457         (show_convenience): Adding `TRY_CATCH' block.
6458         * value.h (internalvar_make_value): Delete, replace by...
6459         (struct internalvar_funcs): ... this.
6460         (create_internalvar_type_lazy) <fun>: Delete argument.
6461         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
6462         (compile_internalvar_to_ax): New function.
6463         * windows-tdep.c (tlb_make_value): New argument `ignore'.
6464         (tlb_funcs): New struct.
6465         (_initialize_windows_tdep): New argument when calling
6466         `create_internalvar_type_lazy'.
6467
6468 2012-04-27  Mark Wielaard  <mjw@redhat.com>
6469
6470         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
6471         see whether it is an address or a constant offset from DW_AT_low_pc.
6472         (dwarf2_record_block_ranges): Likewise.
6473         (read_partial_die): Likewise.
6474
6475 2012-04-26  Mark Wielaard  <mjw@redhat.com>
6476
6477         * MAINTAINERS (Write After Approval): Add myself to the list.
6478
6479 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
6480
6481         * proc-utils.h (proc_prettyprint_signalset): New prototype.
6482         (proc_prettyprint_signal): Likewise.
6483         (proc_prettyprint_faultset): Likewise.
6484         (proc_prettyprint_fault): Likewise.
6485         (proc_prettyprint_actionset): Likewise.
6486         (proc_prettyprint_flags): Move to new proc-flags.c section.
6487         (proc_prettyfprint_flags): New prototype.
6488         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
6489         (proc_syscall, proc_cursig): Likewise.
6490         (proc_set_kill_on_last_close): Likewise.
6491         (proc_unset_kill_on_last_close): Likewise.
6492         (proc_set_watchpoint): Make static.
6493         (proc_delete_dead_threads): Likewise.
6494         (procfs_set_watchpoint): Likewise.
6495         (_initialize_procfs): Add prototype.
6496         * proc-events.c: Include proc-utils.h.
6497         (init_syscall_table): Make static.
6498         * proc-api.c (_initialize_proc_api): Add prototype.
6499         * proc-flags.c: Include proc-utils.h.
6500
6501 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
6502
6503         * configure.ac: Add AC_ARG_PROGRAM.
6504         * configure: Regenerate.
6505
6506 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6507
6508         Fix DW_AT_lower_bound defaults for DWARF-4+.
6509         * dwarf2read.c (read_subrange_type): Remove initialization of low and
6510         high.  New variable low_default_is_valid.  Implement DWARF-4+
6511         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
6512         no default by the DWARF standard.
6513
6514 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
6515             Maciej W. Rozycki  <macro@codesourcery.com>
6516
6517         * infrun.c (handle_inferior_event): Move the check for return
6518         trampolines ahead of the check for function trampolines.
6519         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
6520         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
6521         (mips_str_mips16_ret_stub): Likewise.
6522         (mips_str_call_fp_stub): Likewise.
6523         (mips_str_call_stub): Likewise.
6524         (mips_str_fn_stub): Likewise.
6525         (mips_str_pic): Likewise.
6526         (mips_in_frame_stub): New function.
6527         (mips_unwind_pc): Return the return address rather than the PC
6528         if the PC of an intermediate frame is inside a call thunk.
6529         (mips_is_stub_suffix): New function.
6530         (mips_is_stub_mode): Likewise.
6531         (mips_get_mips16_fn_stub_pc): Likewise.
6532         (mips_skip_mips16_trampoline_code): Update to handle all the
6533         currently generated stub types.  Don't recurse into __fn_stub
6534         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
6535         Use cooked register accesses.
6536         (mips_in_return_stub): Reintroduce function.
6537         (mips_skip_trampoline_code): Traverse trampolines recursively.
6538         (mips_gdbarch_init): Handle MIPS16 return trampolines.
6539
6540 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
6541
6542         GDB 7.4.1 released.
6543
6544 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
6545
6546         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
6547         * features/arm-with-m-vfp-d16.xml: New file. Describes
6548         Cortex-M with VFPv4-sp-d16 FPU register layout.
6549         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
6550         * features/arm-with-m-vfp-d16.c: New. Generated from above.
6551         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
6552         (arm-register_g_packet_guesses): Add vfp-d16 guess.
6553         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
6554
6555 2012-04-25  Doug Evans  <dje@google.com>
6556
6557         * cli/cli-decode.c (print_doc_line): Use stream instead of
6558         current_uiout.
6559
6560 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
6561
6562         * features/arm-with-iwmmxt.c: Regenerate.
6563         * features/arm-with-m-fpa-layout.c: Likewise.
6564         * features/arm-with-m.c: Likewise.
6565         * features/arm-with-neon.c: Likewise.
6566         * features/arm-with-vfpv2.c: Likewise.
6567         * features/arm-with-vfpv3.c: Likewise.
6568         * features/mips-dsp-linux.c: Likewise.
6569         * features/mips-linux.c: Likewise.
6570         * features/mips64-dsp-linux.c: Likewise.
6571         * features/mips64-linux.c: Likewise.
6572         * features/s390-linux32.c: Likewise.
6573         * features/s390-linux32v1.c: Likewise.
6574         * features/s390-linux32v2.c: Likewise.
6575         * features/s390-linux64.c: Likewise.
6576         * features/s390-linux64v1.c: Likewise.
6577         * features/s390-linux64v2.c: Likewise.
6578         * features/s390x-linux64.c: Likewise.
6579         * features/s390x-linux64v1.c: Likewise.
6580         * features/s390x-linux64v2.c: Likewise.
6581         * features/tic6x-c62x-linux.c: Likewise.
6582         * features/tic6x-c62x.c: Likewise.
6583         * features/tic6x-c64x-linux.c: Likewise.
6584         * features/tic6x-c64x.c: Likewise.
6585         * features/tic6x-c64xp-linux.c: Likewise.
6586         * features/tic6x-c64xp.c: Likewise.
6587         * target-descriptions.c: Only generate `field_type' and `type'
6588         variables when needed.
6589
6590 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
6591
6592         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
6593
6594 2012-04-25  Doug Evans  <dje@google.com>
6595
6596         Initial pass at Go language support.
6597         * NEWS: Mention Go.
6598         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
6599         go-valprint.c.
6600         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
6601         (YYFILES): Add go-exp.c.
6602         (YYOBJ): Add go-exp.o.
6603         (local-maintainer-clean): Delete go-exp.c.
6604         * defs.h (enum language): Add language_go.
6605         * dwarf2read.c: #include "go-lang.h".
6606         (fixup_go_packaging): New function.
6607         (process_full_comp_unit): Call it when processing Go CUs.
6608         (dwarf2_physname): Add Go support.
6609         (read_file_scope): Handle missing language spec for GNU Go.
6610         (set_cu_language): Handle DW_LANG_Go.
6611         * go-exp.y: New file.
6612         * go-lang.h: New file.
6613         * go-lang.c: New file.
6614         * go-typeprint.c: New file.
6615         * go-valprint.c: New file.
6616         * symtab.c: #include "go-lang.h".
6617         (symbol_set_language): Handle language_go.
6618         (symbol_find_demangled_name, symbol_set_names): Ditto.
6619         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
6620
6621 2012-04-24  Jim Meyering  <meyering@redhat.com>
6622
6623         avoid a few strncpy-induced buffer overruns
6624         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
6625         fname and psargs before trying to concatenate.
6626         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
6627         "name" before applying strchr.
6628
6629 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
6630
6631         * CONTRIBUTE: Use unified diff instead of context diff when
6632         generating patches.
6633
6634 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
6635
6636         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
6637         code.  Handle JR.HB correctly.
6638
6639 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
6640
6641         * mips-tdep.c
6642         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
6643         with the other MIPS16 helpers.
6644
6645 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
6646
6647         * observer.sh: Conditionally declare `args', thus cleaning up
6648         unused instances of this variable.
6649
6650 2012-04-24  Yao Qi  <yao@codesourcery.com>
6651
6652         Revert this patch to allow breakpoint always-inserted
6653         in record target.
6654         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
6655         * breakpoint.c: Include record.h.
6656         (breakpoints_always_inserted_mode): Return false when the record
6657         target is in use.
6658
6659         * breakpoint.c (iterate_over_bp_locations): New.
6660         * breakpoint.h: Declare.
6661         New typedef walk_bp_location_callback.
6662         * record.c (record_open): Call record_init_record_breakpoints.
6663         (record_sync_record_breakpoints): New.
6664         (record_init_record_breakpoints): New.
6665         * NEWS: Mention supporting breakpoint always-inserted mode in
6666         record target.
6667
6668 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
6669
6670         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
6671         any thread.
6672
6673 2012-04-24  Yao Qi  <yao@codesourcery.com>
6674
6675         * breakpoint.c (ep_is_catchpoint): Renamed to ...
6676         (is_catchpoint): ... it.
6677         (print_one_breakpoint_location): Caller update.
6678         * breakpoint.h: Update declaration.
6679
6680 2012-04-23  David S. Miller  <davem@davemloft.net>
6681
6682         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
6683
6684 2012-04-23  Tom Tromey  <tromey@redhat.com>
6685
6686         * buildsym.c (add_free_pendings): Remove.
6687         * buildsym.h (add_free_pendings): Remove.
6688
6689 2012-04-23  Doug Evans  <dje@google.com>
6690
6691         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
6692         attr.u.unsnd instead of attr.u.addr.
6693         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
6694         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
6695         DW_FORM_ref_udata.
6696         (dump_die_shallow): Update cases DW_FORM_ref_addr,
6697         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
6698         DW_FORM_ref_udata.
6699         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
6700
6701 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
6702
6703         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
6704         (mips_o32_return_value): Likewise.
6705         (mips_o64_return_value): Likewise.
6706
6707 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
6708
6709         * ada-lang.c (ada_evaluate_subexp): Add cases for
6710         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
6711         their treatment in eval.c.
6712
6713 2012-04-21  David S. Miller  <davem@davemloft.net>
6714
6715         * sparc-tdep.c (X_DISP10): Define.
6716         (sparc_analyze_control_transfer): Handle compare-and-branch.
6717
6718 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
6719
6720         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
6721         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
6722
6723 2012-04-20  Nigel Stephens  <nigel@mips.com>
6724             Maciej W. Rozycki  <macro@codesourcery.com>
6725
6726         * mips-tdep.c (mips_float_register_p): New function.
6727         (mips_convert_register_float_case_p): Use mips_float_register_p.
6728         (mips_register_type): Likewise.
6729         (mips_print_register): Likewise.
6730         (print_gp_register_row): Likewise.
6731         (mips_print_registers_info): Likewise.
6732
6733 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
6734
6735         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
6736         of mips16 symbols.
6737
6738 2012-04-20  Andrew Pinski  <apinski@cavium.com>
6739
6740         * MAINTAINERS (Write After Approval): Add myself to the list.
6741
6742 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
6743
6744         * MAINTAINERS: Update my e-mail address.
6745
6746 2012-04-20  Pedro Alves  <palves@redhat.com>
6747
6748         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
6749         $srcdir.
6750         * configure: Regenerate.
6751
6752 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
6753
6754         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
6755         declaration.
6756         * gdb_vecs.h: Declare `const_char_ptr' VEC.
6757
6758 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6759
6760         Fix compilation compatibility with python-2.4
6761         * python/py-type.c (convert_field): Cast ADDRSTRING for
6762         PyObject_SetAttrString as non-const.  New comment.
6763
6764 2012-04-19  Tom Tromey  <tromey@redhat.com>
6765
6766         * top.c (quit_target): Use all_cleanups.
6767         * main.c (captured_command_loop): Use all_cleanups.
6768         * exceptions.c (throw_exception): Use all_cleanups.
6769
6770 2012-04-19  Pedro Alves  <palves@redhat.com>
6771
6772         * Makefile.in (GNULIB_BUILDDIR): New.
6773         (LIBGNU, INCGNU, GNULIB_H): Adjust.
6774         (SUBDIRS): Add $(GNULIB_BUILDDIR).
6775         (CLEANDIRS). Remove gnulib/import.
6776         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
6777         (all-lib): Ditto.
6778         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
6779         (gnulib/import/Makefile): Replace gnulib/import with
6780         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
6781         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
6782         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
6783         acx_configure_dir.m4.
6784         * acinclude.m4: Include acx_configure_dir.m4.
6785         * acx_configure_dir.m4: New file.
6786         * aclocal.m4: Regenerate.
6787         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
6788         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
6789         (GNULIB): New variable.
6790         (GNULIB_STDINT_H): Adjust.
6791         (AC_OUTPUT): Don't output gnulib/Makefile.
6792         * gdb/defs.h: Include build-gnulib/config.h.
6793         * aclocal.m4: Regenerate.
6794         * config.in: Regenerate.
6795         * configure: Regenerate.
6796
6797         * gnulib/Makefile.in: New file.
6798         * gnulib/configure.ac: New file.
6799         * gnulib/aclocal.m4: New file.
6800         * gnulib/config.in: New file.
6801         * gnulib/configure: New file.
6802         * gnulib/: Re-run gnulib-tool to adjust.
6803
6804 2012-04-19  Doug Evans  <dje@google.com>
6805
6806         * cleanups.h (struct cleanup): Move to cleanups.c.
6807         (make_cleanup_dtor_ftype): New typedef.
6808         (make_cleanup_dtor): Use it.
6809         (ALL_CLEANUPS): Replace with ...
6810         (all_cleanups): ... this.  Declare.  All uses updated.
6811         * cleanups.c: #include "gdb_assert.h".
6812         (sentinel_cleanup): New static global.
6813         (SENTINEL_CLEANUP): Define.
6814         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
6815         (make_my_cleanup2): Assert result is non-NULL.
6816         (all_cleanups): New function.
6817         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
6818         of NULL.
6819
6820 2012-04-19  Pedro Alves  <palves@redhat.com>
6821
6822         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
6823         Adjust paths to gnulib imported files.
6824
6825 2012-04-19  Pedro Alves  <palves@redhat.com>
6826
6827         * gnulib/: Move whole directory ...
6828         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
6829         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
6830         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
6831         (aclocal_m4_deps): Adjust.
6832         * aclocal.m4: Regenerate.
6833         * configure: Regenerate.
6834         * configure.ac: Adjust AC_OUTPUT output.
6835
6836 2012-04-19  Yao Qi  <yao@codesourcery.com>
6837
6838         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
6839         (vec.o): New rule.
6840         * vec.c: Move it ...
6841         * common/vec.c: ... here.
6842         * vec.h: Move it ...
6843         * common/vec.h: ... here.
6844
6845 2012-04-19  Yao Qi  <yao@codesourcery.com>
6846
6847         * gdb-code-style.el: New.
6848
6849 2012-04-18  Pedro Alves  <palves@redhat.com>
6850
6851         Update gnulib from latest git.
6852         (639ea5ae15e39fe48d43e04864b2997301e4b969)
6853
6854         * gnulib/Makefile.am: Update.
6855         * gnulib/dummy.c: Update.
6856         * gnulib/extra/arg-nonnull.h: Update.
6857         * gnulib/extra/c++defs.h: Update.
6858         * gnulib/extra/update-copyright: Update.
6859         * gnulib/extra/warn-on-use.h: Update.
6860         * gnulib/inttypes.in.h: Update.
6861         * gnulib/m4/00gnulib.m4: Update.
6862         * gnulib/m4/extensions.m4: Update.
6863         * gnulib/m4/gnulib-cache.m4: Update.
6864         * gnulib/m4/gnulib-common.m4: Update.
6865         * gnulib/m4/gnulib-comp.m4: Update.
6866         * gnulib/m4/gnulib-tool.m4: Update.
6867         * gnulib/m4/include_next.m4: Update.
6868         * gnulib/m4/inttypes-pri.m4: Update.
6869         * gnulib/m4/inttypes.m4: Update.
6870         * gnulib/m4/longlong.m4: Update.
6871         * gnulib/m4/memchr.m4: Update.
6872         * gnulib/m4/memmem.m4: Update.
6873         * gnulib/m4/mmap-anon.m4: Update.
6874         * gnulib/m4/multiarch.m4: Update.
6875         * gnulib/m4/onceonly.m4: Update.
6876         * gnulib/m4/stddef_h.m4: Update.
6877         * gnulib/m4/stdint.m4: Update.
6878         * gnulib/m4/string_h.m4: Update.
6879         * gnulib/m4/warn-on-use.m4: Update.
6880         * gnulib/m4/wchar_h.m4: Update.
6881         * gnulib/m4/wchar_t.m4: Update.
6882         * gnulib/m4/wint_t.m4: Update.
6883         * gnulib/memchr.c: Update.
6884         * gnulib/memmem.c: Update.
6885         * gnulib/stddef.in.h: Update.
6886         * gnulib/stdint.in.h: Update.
6887         * gnulib/str-two-way.h: Update.
6888         * gnulib/string.in.h: Update.
6889         * gnulib/wchar.in.h: Update.
6890
6891         * gnulib/extra/arg-nonnull.h: Delete.
6892         * gnulib/extra/c++defs.h: Delete.
6893         * gnulib/extra/warn-on-use.h: Delete.
6894         * gnulib/m4/wchar_h.m4: Delete.
6895         * gnulib/m4/wint_t.m4: Delete.
6896         * gnulib/wchar.in.h: Delete.
6897
6898         * gnulib/extra/snippets/arg-nonnull.h: New.
6899         * gnulib/extra/snippets/c++defs.h: New.
6900         * gnulib/extra/snippets/warn-on-use.h: New.
6901
6902         * aclocal.m4: Regenerate.
6903         * config.in: Regenerate.
6904         * configure: Regenerate.
6905         * gnulib/Makefile.in: Regenerate.
6906
6907 2012-04-18  Pedro Alves  <palves@redhat.com>
6908
6909         Reimport the update-copyright module from gnulib
6910         (250b80067c1e1d8faa0c42fb572f721975b929c5).
6911
6912         * configure: Regenerate.
6913         * gnulib/Makefile.am: Update.
6914         * gnulib/Makefile.in: Regenerate.
6915         * gnulib/extra/update-copyright: Update.
6916         * gnulib/m4/gnulib-cache.m4: Update.
6917         * gnulib/m4/gnulib-comp.m4: Update.
6918
6919 2012-04-18  Tristan Gingold  <gingold@adacore.com>
6920
6921         * configure.ac (aix): Put -lpthread into libs.
6922         * configure: Regenerate.
6923
6924 2012-04-18  Tom Tromey  <tromey@redhat.com>
6925
6926         * linespec.c (convert_linespec_to_sals): Don't use
6927         SYMBOL_OBJ_SECTION.
6928         (compare_msymbols): Arguments are minsym_and_objfile, not
6929         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
6930
6931 2012-04-18  Pedro Alves  <palves@redhat.com>
6932
6933         Revert gnulib/ part of:
6934         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
6935         Copyright year update in most files (performed by copyright.sh).
6936
6937 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6938
6939         Fix 64-bit constants on 32-bit hosts.
6940         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
6941         from unsigned long to ULONGEST.
6942         (read_signed_leb128): Change declaration return type from long to
6943         LONGEST.
6944         (dwarf2_const_value_attr): Change declaration parameter value from long
6945         to LONGEST.
6946         (dwarf2_compute_name): Change variable value from long to LONGEST.
6947         (read_unsigned_leb128): Change return type, variable result and some
6948         casts from unsigned long to ULONGEST.
6949         (read_signed_leb128): Change return type, variable result and some
6950         casts from long to LONGEST.
6951         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
6952         value from long to LONGEST.
6953         (dwarf2_const_value): Change variable value from long to LONGEST.
6954         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
6955         plongest and hex_string.
6956         * symtab.h (struct general_symbol_info): Change ivalue from long to
6957         LONGEST, remove the comment.
6958         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
6959         Change SYMBOL_VALUE format strings to use plongest and hex_string.
6960
6961 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
6962
6963         PR symtab/7259:
6964         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
6965         * ada-lang.c (ada_discrete_type_high_bound)
6966         (ada_discrete_type_low_bound): Fix function comment.  Use
6967         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6968         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
6969         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6970         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
6971         Use TYPE_FIELD_ENUMVAL.
6972         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
6973         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6974         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
6975         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
6976         TYPE_CODE_ENUM.
6977         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
6978         * dwarf2read.c (process_enumeration_scope): Likewise.
6979         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
6980         field.bitpos.
6981         (class StructMainTypePrettyPrinter): Support also
6982         FIELD_LOC_KIND_ENUMVAL.
6983         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
6984         TYPE_CODE_ENUM.
6985         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
6986         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
6987         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
6988         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
6989         field enumval.
6990         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
6991         accommodate enumval.
6992         (struct call_site): Adjust loc_kind to accommodate enumval.
6993         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
6994         (TYPE_FIELD_ENUMVAL): New macros.
6995         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
6996         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
6997         TYPE_CODE_ENUM.
6998         * p-typeprint.c (pascal_type_print_base): Likewise.
6999         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
7000         enumval.
7001         * python/lib/gdb/types.py (make_enum_dict): Likewise.
7002         * python/py-type.c (convert_field): New variable addrstring.  Use
7003         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7004         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
7005         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
7006         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
7007         TYPE_CODE_ENUM.
7008         * valprint.c (generic_val_print): Likewise.
7009
7010 2012-04-17  Doug Evans  <dje@google.com>
7011
7012         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
7013
7014         * dwarf2read.c: Whitespace fixes.
7015         (lookup_signatured_type): Tweak comment.
7016         (get_die_type_at_offset): Fix comment.
7017
7018 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
7019
7020         * xcoffread.c (xcoff_secnum_to_sections): New function.
7021         (secnum_to_section, secnum_to_bfd_section): Reimplement
7022         using xcoff_secnum_to_sections.  Rename "secnum" parameter
7023         into "n_scnum".
7024         (RECORD_MINIMAL_SYMBOL): Delete.
7025         (record_minimal_symbol): New function.
7026         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
7027         by call to record_minimal_symbol and set misc_func_recorded
7028         to 1.  Set last_csect_sec to the XCOFF section index instead
7029         of GDB's section_offset index.  Update calls to
7030         prim_record_minimal_symbol_and_info to pass the BFD section
7031         as well.
7032
7033 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
7034
7035         * xcoffread.c (read_xcoff_symtab): Delete variables
7036         last_csect_val and last_csect_sec and associated code.
7037
7038 2012-04-17  Doug Evans  <dje@google.com>
7039
7040         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
7041         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7042         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
7043         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
7044
7045         * cleanups.h: New file.
7046         * cleanups.c: New file.
7047         * Makefile.in (SFILES): Add cleanups.c.
7048         (HFILES_NO_SRCDIR): Add cleanups.h.
7049         (COMMON_OBS): Add cleanups.o.
7050         * defs.h (struct cleanup): Moved to cleanups.h.
7051         (do_cleanups,do_final_cleanups): Ditto.
7052         (discard_cleanups,discard_final_cleanups): Ditto
7053         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7054         (save_cleanups,save_final_cleanups): Ditto.
7055         (restore_cleanups,restore_final_cleanups): Ditto.
7056         (null_cleanup): Ditto.
7057         (make_my_cleanup,make_my_cleanup2): Ditto.
7058         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7059         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
7060         (do_cleanups,do_final_cleanups): Ditto.
7061         (discard_cleanups,discard_final_cleanups): Ditto
7062         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7063         (save_cleanups,save_final_cleanups): Ditto.
7064         (restore_cleanups,restore_final_cleanups): Ditto.
7065         (null_cleanup): Ditto.
7066         (make_my_cleanup,make_my_cleanup2): Ditto.
7067         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7068
7069         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
7070         make_my_cleanup.
7071         (make_cleanup_dyn_string_delete): Ditto.
7072         (make_cleanup_ui_file_delete): Ditto.
7073         (make_cleanup_ui_out_redirect_pop): Ditto.
7074         (make_cleanup_free_section_addr_info): Ditto.
7075         (make_cleanup_restore_integer): Ditto.
7076         (make_cleanup_unpush_target): Ditto.
7077         (make_cleanup_value_free_to_mark): Ditto.
7078         (make_cleanup_value_free): Ditto.
7079         (make_cleanup_free_so): Ditto.
7080
7081 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7082
7083         New option "set debug auto-load".
7084         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
7085         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
7086         (auto_load_safe_path_vec_update)
7087         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
7088         if DEBUG_AUTO_LOAD.
7089         (file_is_auto_load_safe): New parameters debug_fmt and ....
7090         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
7091         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
7092         caller by explanatory string.
7093         (_initialize_auto_load): Register "set debug auto-load".
7094         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
7095         and ....
7096         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7097         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
7098         by explanatory string.
7099         * main.c (captured_main): Likewise.
7100         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
7101         (source_section_scripts): Likewise.
7102
7103 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7104
7105         New option "set auto-load safe-path".
7106         * NEWS: New commands "set auto-load safe-path"
7107         and "show auto-load safe-path".
7108         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
7109         (auto_load_safe_path, auto_load_safe_path_vec)
7110         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
7111         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
7112         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
7113         (source_gdb_script_for_objfile): New variable is_safe.  Call
7114         file_is_auto_load_safe.  Return if it is not.
7115         (struct loaded_script): New field loaded.
7116         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
7117         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
7118         output "Missing" to "No".
7119         (_initialize_auto_load): New variable cmd.  Initialize
7120         auto_load_safe_path.  Register "set auto-load safe-path",
7121         "show auto-load safe-path" and "add-auto-load-safe-path".
7122         * auto-load.h (maybe_add_script): Add parameter loaded.
7123         (file_is_auto_load_safe): New declaration.
7124         * config.in: Regenerate.
7125         * configure: Regenerate.
7126         * configure.ac: New parameters --with-auto-load-safe-path
7127         and --without-auto-load-safe-path.
7128         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7129         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
7130         * main.c (captured_main): Check file_is_auto_load_safe for
7131         LOCAL_GDBINIT.
7132         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
7133         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
7134         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
7135         not.
7136
7137 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7138
7139         auto-load: Implementation.
7140         * NEWS: New descriptions for "info auto-load",
7141         "info auto-load gdb-scripts", "info auto-load python-scripts",
7142         "info auto-load local-gdbinit" and "info auto-load libthread-db".
7143         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
7144         and "show auto-load-scripts".  New description for "set auto-load",
7145         "show auto-load", "set auto-load gdb-scripts",
7146         "show auto-load gdb-scripts", "set auto-load python-scripts",
7147         "show auto-load python-scripts", "set auto-load local-gdbinit",
7148         "show auto-load local-gdbinit", "set auto-load libthread-db" and
7149         "show auto-load libthread-db".
7150         * auto-load.c: Remove include python/python-internal.h.  Add includes
7151         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
7152         cli/cli-setshow.h.
7153         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
7154         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
7155         (gdbpy_global_auto_load): Rename to ...
7156         (global_auto_load): ... here.
7157         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7158         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
7159         (script_language_gdb, source_gdb_script_for_objfile): New.
7160         (struct loaded_script): New field language.
7161         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
7162         LANGUAGE.
7163         (maybe_add_script): Add parameter language.  Drop redundant
7164         entry.full_path initialization.  Initialize entry.language and
7165         (*slot)->language.
7166         (auto_load_objfile_script): Change parameter suffix to language.
7167         Remove the call of maybe_add_script.
7168         Call language->source_script_for_objfile.
7169         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
7170         New.
7171         (collect_matching_scripts): Adjust it for
7172         struct collect_matching_scripts_data.
7173         (auto_load_info_scripts_pattern_nl): New variable.
7174         (info_auto_load_scripts): Rename to ...
7175         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
7176         for struct collect_matching_scripts_data.
7177         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
7178         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
7179         (auto_load_show_cmdlist_get, info_auto_load_cmd)
7180         (auto_load_info_cmdlist_get): New.
7181         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
7182         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
7183         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
7184         "info auto-load local-gdbinit".
7185         * auto-load.h (struct script_language): New.
7186         (gdbpy_global_auto_load): Rename to ...
7187         (global_auto_load): ... here.
7188         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7189         (auto_load_local_gdbinit_loaded): New declarations.
7190         (maybe_add_script): New parameter language.
7191         (auto_load_objfile_script): Change parameter suffix to language.
7192         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
7193         (auto_load_info_scripts, auto_load_set_cmdlist_get)
7194         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
7195         declarations.
7196         * linux-thread-db.c: Include auto-load.h and ctype.h.
7197         (auto_load_thread_db, show_auto_load_thread_db): New.
7198         (struct thread_db_info): New field filename.
7199         (delete_thread_db_info): Call xfree for FILENAME.
7200         (try_thread_db_load): Initialize FILENAME.
7201         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
7202         if !AUTO_LOAD_THREAD_DB.
7203         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
7204         (_initialize_thread_db): Install auto_load_thread_db
7205         as "set auto-load libthread-db" and install info_auto_load_libthread_db
7206         as "info auto-load libthread-db".
7207         * main.c (captured_main): Rename gdbpy_global_auto_load to
7208         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
7209         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
7210         (print_gdb_help): Extend the help for 'local init file'.
7211         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
7212         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
7213         (auto_load_scripts): Rename to ...
7214         (auto_load_python_scripts): ... here, update the comment.
7215         (gdbpy_load_auto_script_for_objfile): New declaration.
7216         (show_auto_load_python_scripts, script_language_python)
7217         (gdbpy_load_auto_script_for_objfile): New.
7218         (source_section_scripts): Refactor the code.
7219         (load_auto_scripts_for_objfile): Rename to ...
7220         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
7221         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
7222         (info_auto_load_python_scripts): New.
7223         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
7224         Rename "set auto-load-scripts" to "set auto-load python-scripts".
7225         Register "set auto-load-scripts" as its deprecated alias.  Register
7226         "info auto-load python-scripts".  Register "info auto-load-scripts" as
7227         its deprecated alias.
7228         (load_auto_scripts_for_objfile): Rename to ...
7229         (gdbpy_load_auto_scripts_for_objfile): ... here.
7230         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
7231         (gdbpy_load_auto_scripts_for_objfile): ... here.
7232
7233 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7234
7235         auto-load: Move files.
7236         * Makefile.in (SFILES): Add auto-load.c.
7237         (HFILES_NO_SRCDIR): Add auto-load.h.
7238         (COMMON_OBS): Add auto-load.o.
7239         (distclean): Change .gdbinit for gdb-gdb.gdb.
7240         * auto-load.c: New file, with parts from python/py-auto-load.c.
7241         * auto-load.h: New file, with parts from python/python.h.
7242         * configure: Regenerate.
7243         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
7244         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
7245         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
7246         * main.c: Include auto-load.h.
7247         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
7248         command.h, observer.h and progspace.h to auto-load.c.  Add include
7249         auto-load.h.
7250         (gdbpy_global_auto_load, struct auto_load_pspace_info)
7251         (struct loaded_script, auto_load_pspace_data)
7252         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
7253         (hash_loaded_script_entry, eq_loaded_script_entry)
7254         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
7255         (maybe_add_script): Move to auto-load.c.
7256         (source_section_scripts): Change maybe_add_script parameters passing,
7257         use script_not_found_warning_print.
7258         (clear_section_scripts, auto_load_objfile_script)
7259         (auto_load_new_objfile, loaded_script_ptr)
7260         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
7261         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
7262         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
7263         auto_load_new_objfile and info_auto_load_scripts initizations to
7264         auto-load.c.
7265         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
7266
7267 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7268
7269         Code cleanup.
7270         * charset.c (find_charset_names): Remove variables ix and elt.
7271         Use free_char_ptr_vec.
7272         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
7273         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
7274         debugdir_end.  New variable debugdir_len.
7275         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
7276         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
7277         declarations.
7278         * progspace.c (clear_program_space_solib_cache): Remove variables ix
7279         and elt.  Use free_char_ptr_vec.
7280         * source.c (add_path): Remove variables argv, arg and argv_index.
7281         New variables dir_vec, back_to, ix and name.
7282         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
7283         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
7284         no longer expecting DIRNAME_SEPARATOR.
7285         (openp): Remove variable p, p1 and len.  New variables dir_vec,
7286         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
7287         no longer expecting DIRNAME_SEPARATOR.
7288         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
7289         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
7290         debugdir_end.
7291         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
7292         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
7293         (dirnames_to_char_ptr_vec): New functions.
7294
7295 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7296
7297         Code cleanup.
7298         * source.c (add_path): Remove always true conditional 'p == 0' and
7299         unindent its code block.
7300
7301 2012-04-17  Pedro Alves  <palves@redhat.com>
7302
7303         * gdbtypes.h (FIELD_BITPOS): Rename to ...
7304         (FIELD_BITPOS_LVAL): ... this.
7305         (FIELD_BITPOS): New.
7306         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
7307         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
7308         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
7309         SET_FIELD_BITPOS.
7310         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
7311         SET_FIELD_BITPOS.
7312         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
7313         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
7314         * target-descriptions.c (tdesc_gdb_type): Adjust to use
7315         SET_FIELD_BITPOS.
7316
7317 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7318
7319         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
7320         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
7321         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
7322         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
7323         * jv-lang.c (java_link_class_type): Likewise, once.
7324         * stabsread.c (read_enum_type): Likewise.
7325
7326 2012-04-16  Yao Qi  <yao@codesourcery.com>
7327
7328         * common/agent.c (agent_run_command): Add one more parameter `len'.
7329         Update callers.
7330         * common/agent.h: Update declaration.
7331         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
7332         Update.
7333         (linux_child_static_tracepoint_markers_by_strid): Ditto.
7334
7335 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
7336
7337         PR mi/13393
7338         * value.c (value_actual_type): New function.
7339         * value.h (value_actual_type): New declaration.
7340         * varobj.c (update_type_if_necessary): New function.
7341         (varobj_create): Call value_actual_type instead of
7342         value_type.
7343         (install_dynamic_child): distinct changed and type changed MI variable
7344         objects.
7345         (update_dynamic_varobj_children): Updated for install_dynamic_child
7346         change.  All callers updated.
7347         (varobj_update): Support for MI variable object type change if
7348         the value changed and RTTI is used to determine the type.
7349         (create_child_with_value): Call value_actual_type instead of
7350         value_type.
7351         (adjust_value_for_child_access): Extended with a new parameter which
7352         specify whether the given value should be casted to enclosing type.
7353         All callers updated.
7354
7355 2012-04-14  Yao Qi  <yao@codesourcery.com>
7356
7357         Import gnulib module inttypes from git
7358         (250b80067c1e1d8faa0c42fb572f721975b929c5)
7359         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
7360         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
7361         gnulib/m4/inttypes-pri.m4
7362         * aclocal.m4, config.in, configure: Regenerated.
7363         * gnulib/Makefile.am: Update.
7364         * gnulib/Makefile.in: Update.
7365         * gnulib/m4/gnulib-cache.m4: Update.
7366         * gnulib/m4/gnulib-comp.m4: Update.
7367         * gnulib/inttypes.in.h: New.
7368         * gnulib/m4/inttypes-pri.m4: New.
7369         * gnulib/m4/inttypes.m4: New.
7370
7371 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
7372
7373         * infrun.c (resume): Update PC address to the real PC after
7374         preparing to do displaced stepping.
7375
7376 2012-04-12  Doug Evans  <dje@google.com>
7377
7378         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
7379         All callers updated.
7380
7381 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
7382
7383         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
7384
7385 2012-04-12  Doug Evans  <dje@google.com>
7386
7387         * dwarf2read.c (create_all_type_units): Renamed from
7388         create_debug_types_hash_table.  All callers updated.
7389
7390         * dwarf2read.c (create_signatured_type_table_from_index): Rename
7391         local type_sig to sig_type, type_offset to type_offset_in_tu.
7392         (hash_signatured_type): Renamed from hash_type_signature,
7393         all callers updated.
7394         (eq_signatured_type): Renamed from eq_type_signature,
7395         all callers updated.
7396         (create_debug_types_hash_table): Rename local type_sig to sig_type.
7397         (process_enumeration_scope): Ditto.
7398         (lookup_signatured_type_at_offset): Ditto.
7399         (load_full_type_unit, read_signatured_type): Ditto.
7400
7401 2012-04-12  Yao Qi  <yao@codesourcery.com>
7402
7403         * remote.c (async_remote_interrupt): Correct function name in
7404         debug message.
7405         (async_remote_interrupt_twice): Ditto.
7406
7407 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
7408
7409         * source.c (find_and_open_source): Consistently pass resulting
7410         full path through xfullpath.
7411
7412 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7413
7414         Provide more specific displaced-stepping memory error message.
7415         * infrun.c (displaced_step_prepare): New variable status.  Call
7416         target_read_memory instead of read_memory, provide more specific
7417         error message.
7418
7419 2012-04-11  Tristan Gingold  <gingold@adacore.com>
7420
7421         PR gdb/13901
7422         * darwin-nat.c (darwin_execvp): Revert previous patch.
7423
7424 2012-04-11  Tristan Gingold  <gingold@adacore.com>
7425
7426         PR gdb/13901
7427         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
7428         in case of change.
7429
7430 2012-04-11  Tristan Gingold  <gingold@adacore.com>
7431
7432         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7433         warning.
7434
7435 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
7436
7437         New command 'explore' which helps explore values and types in
7438         scope.
7439         * NEWS: Add an entry about the new 'explore' command.
7440         * data-directory/Makefile.in: Add gdb/command/explore.py
7441         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
7442         command using the GDB Python API.
7443
7444 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
7445
7446         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
7447         extension in jump target calculation.
7448
7449 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
7450
7451         * mips-tdep.c (mips32_next_pc): Handle JALX.
7452
7453 2012-04-10  Yao Qi  <yao@codesourcery.com>
7454
7455         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
7456
7457 2012-04-10  Yao Qi  <yao@codesourcery.com>
7458
7459         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
7460         and gnulib/m4/gnulib-tool.m4.
7461
7462 2012-04-10  Doug Evans  <dje@google.com>
7463
7464         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
7465         (load_partial_dies): Clarify comment.
7466         (find_partial_die): Support rereading type units.
7467         Clarify CU handling, if we know offset is in CU, don't search for the
7468         containing CU.  Add comment regarding memory waste.
7469
7470 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
7471
7472         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
7473         i386/x32-avx and i386/x32-avx-linux.
7474         (i386/x32-expedite): New.
7475         (i386/x32-linux-expedite): Likewise.
7476         (i386/x32-avx-expedite): Likewise.
7477         (i386/x32-avx-linux-expedite): Likewise.
7478         ($(outdir)/i386/x32.dat): Likewise.
7479         ($(outdir)/i386/x32-linux.dat): Likewise.
7480         ($(outdir)/i386/x32-avx.dat): Likewise.
7481         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
7482
7483         * features/i386/x32-avx-linux.xml: New file.
7484         * features/i386/x32-avx.xml: Likewise.
7485         * features/i386/x32-core.xml: Likewise.
7486         * features/i386/x32-linux.xml: Likewise.
7487         * features/i386/x32.xml: Likewise.
7488
7489         * features/i386/x32-avx-linux.c: New.  Generated.
7490         * features/i386/x32-avx.c: Likewise.
7491         * features/i386/x32-linux.c: Likewise.
7492         * features/i386/x32.c: Likewise.
7493         * regformats/i386/x32-avx-linux.dat: Likewise.
7494         * regformats/i386/x32-avx.dat: Likewise.
7495         * regformats/i386/x32-linux.dat: Likewise.
7496         * regformats/i386/x32.dat: Likewise.
7497
7498 2012-04-10  Tristan Gingold  <gingold@adacore.com>
7499
7500         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
7501         code to kill the inferior.
7502
7503 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
7504
7505         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7506         defines.
7507         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7508         defines.
7509         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
7510         (yyvsp): New defines.
7511         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7512         defines.
7513         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7514         defines.
7515         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7516         defines.
7517         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7518         defines.
7519         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7520         defines.
7521
7522 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
7523
7524         * sparc64-tdep.c (sparc64_store_arguments)
7525         (sparc64_store_arguments): Fix coding style.
7526
7527 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
7528
7529         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
7530         complex floats, adjust some related comments and tighten a related
7531         assertion.
7532         (sparc64_extract_return_value): Handle complex floats.
7533
7534 2012-04-07  Doug Evans  <dje@google.com>
7535
7536         * dwarf2read.c (load_partial_dies): Change condition to assert.
7537
7538 2012-04-06  Doug Evans  <dje@google.com>
7539
7540         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
7541         "mov %rsp,%rbp".
7542
7543 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
7544
7545         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
7546         fencepost error.
7547         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
7548         (v850_gdbarch_init): Set `num_regs' as appropriate for the
7549         architecture.
7550
7551 2012-04-05  Keith Seitz  <keiths@redhat.com>
7552
7553         * linespec.c (decode_compound): Remove.
7554         (enum offset_relative_sign): New enum.
7555         (struct line_offset): New struct.
7556         (struct linespec): New struct.
7557         (struct linespec_state): Move file_symtabs,
7558         user_filename, and user_function into struct linespec.
7559         Make result an anonymous struct holding vectors of
7560         symbolp and minsym_and_objfile_d.
7561         Add language member.
7562         (enum ls_token_type): New enum.
7563         (linespec_keywords): New array.
7564         (struct ls_token): New struct.
7565         (struct ls_parser): New struct.
7566         (linespec_lexer_lex_number): New function.
7567         (linespec_lexer_lex_keyword): New function.
7568         (is_ada_operator): New function.
7569         (skip_quote_char): New function.
7570         (copy_token_string): New function.
7571         (is_closing_quote_enclosed): New function.
7572         (find_parameter_list_end): New function.
7573         (linespec_lexer_lex_string): New function.
7574         (linespec_lexer_lex_one): New function.
7575         (linespec_lexer_consume_token): New function.
7576         (linespec_lexer_peek_token): New function.
7577         (cplusplus_error): Remove unused function.
7578         (find_methods): Update comment.
7579         (find_toplevel_char): Return const.
7580         (is_objc_method_format): Remove unused function.
7581         (find_toplevel_string): New function.
7582         (is_linespec_boundary): Remove.
7583         (symbol_not_found_error): New function.
7584         (find_method_overload_end): Remove function.
7585         (unexpected_linespec_error): New function.
7586         (keep_name_info): Remove.
7587         (linespec_parse_line_offset): New function.
7588         (linespec_parse_basic): New function.
7589         (canonicalize_linespec): New function.
7590         (decode_line_internal): Remove.
7591         (create_sals_line_offset): New function adapted from
7592         decode_all_digits.
7593         (convert_linespec_to_sals): New function.
7594         (parse_linespec): New function.
7595         (linespec_parser_new): New function.
7596         (linespec_state_destructor): Change parameter type to
7597         struct linespec_state *.
7598         Add language parameter.
7599         Remove freeing of moved members.
7600         (linespec_parser_delete): New function.
7601         (decode_line_full): Use parse_linespec and linespec_parser_new.
7602         (decode_line_1): Likewise.
7603         (decode_indirect): Rename to ...
7604         (linespec_expression_to_pc): ... this and rewrite
7605         to simply find CORE_ADDR, storing this result for later
7606         conversion to SALs.
7607         (locate_first_half): Remove.
7608         (deocde_objc): Add parameter LS.
7609         Initialize new struct collect_info members.
7610         Handle minimal symbols, too.
7611         (decode_compound): Delete.
7612         (lookup_prefix_sym): Rewrite.
7613         (compare_msymbols): New function.
7614         (find_method): Rewrite.
7615         Do not call cplusplus_error.
7616         (symtabs_from_filename): Rewrite.
7617         (collect_function_symbols): Delete.
7618         (find_function_symbols): Rewrite without ARGPTR-style
7619         processing.
7620         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
7621         (decode_dollar): Adapted and renamed to ...
7622         (linespec_parse_variable): ... this.
7623         (find_linespec_symbols): New function.
7624         (decode_label): Adapted and renamed to ...
7625         (find_label_symbols): ... this.
7626         (decode_digits_list_mode): Add and use LS argument.
7627         (decode_digits_ordinary): Likewise.
7628         (collect_symbols): Do not collect SALs, just symbols and msymbols.
7629         If in list mode, allow any symbol class.  Otherwise, only
7630         permit LOC_BLOCK symbols.
7631         (minsym_found): Update comments.
7632         (search_minsyms_for_name): Do not convert the matching symbol
7633         into a SAL.  Simply push the symbol and objfile into the
7634         result vector.
7635         (decode_variable): Delete. Contents adapted into
7636         find_linespec_symbols.
7637
7638         * cp-support.c (SKIP_SPACE): Remove.
7639         (operator_tokens): Remove unused global.
7640         (cp_validate_operator): Remove.
7641         * cp-support.h (cp_validate_operator): Remove declaration.
7642
7643 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7644
7645         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
7646         for TYPE_VPTR_FIELDNO.
7647         * valprint.c (valprint_check_validity): Make it global, move the
7648         function comment ...
7649         * value.h (valprint_check_validity): ... to this new declaration.
7650
7651 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7652
7653         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
7654         the STATE32 api for i386 state.
7655         (i386_darwin_store_inferior_registers): Likewise.
7656
7657 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7658
7659         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
7660         SS offset.
7661         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7662         format_string.
7663
7664 2012-04-02  Tristan Gingold  <gingold@adacore.com>
7665
7666         PR gdb/13901
7667         * darwin-nat.c (darwin_execvp): Set binary preference.
7668
7669 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7670
7671         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
7672
7673 2012-03-30  Tom Tromey  <tromey@redhat.com>
7674
7675         * python/python.c (gdbpy_decode_line): Move cleanup creation out
7676         of TRY_CATCH.  Fix error handling.
7677         * python/py-value.c (convert_value_from_python): Move 'old'
7678         declaration to innermost scope.
7679
7680 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7681             Andrey Smirnov  <andrew.smirnov@gmail.com>
7682
7683         -Wshadow warning fix.
7684         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
7685         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
7686         Adjust code accordingly.
7687
7688 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7689
7690         * ada-lang.c (symbol_completion_add): Rename parameter
7691         "encoded" into "encoded_p".  Ajust code and documentation
7692         accordingly.
7693
7694 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7695             Andrey Smirnov  <andrew.smirnov@gmail.com>
7696
7697         -Wshadow warning fix.
7698         * ada-lang.c (symbol_completion_add): Rename parameter
7699         "wild_match" into wild_match_p.  Update code and documentation
7700         accordingly.
7701
7702 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7703
7704         * ada-lang.c (symbol_completion_match): Rename parameter
7705         "encoded" into "encoded_p".  Ajust code and documentation
7706         accordingly.
7707
7708 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7709             Andrey Smirnov  <andrew.smirnov@gmail.com>
7710
7711         -Wshadow warning fix.
7712         * ada-lang.c (symbol_completion_match): Rename parameter
7713         "wild_match" into "wild_match_p".  Adjust code and function
7714         documentation accordingly.
7715
7716 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7717             Andrey Smirnov  <andrew.smirnov@gmail.com>
7718
7719         -Wshadow warning fix.
7720         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
7721         "symbol_info" into "info".  Adjust code accordingly.
7722         (ada_lookup_symbol): Likewise.
7723
7724 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7725
7726         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
7727         of this function's documentation.
7728
7729 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7730             Andrey Smirnov  <andrew.smirnov@gmail.com>
7731
7732         -Wshadow warning fix.
7733         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
7734         variable into "wild_match_p".  Adjust code accordingly.
7735
7736 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7737             Andrey Smirnov  <andrew.smirnov@gmail.com>
7738
7739         -Wshadow warning fix.
7740         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
7741         parameter into "wild_match_p".  Adjust code accordingly.
7742         Document this parameter in the function description.
7743
7744 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7745             Andrey Smirnov  <andrew.smirnov@gmail.com>
7746
7747         -Wshadow warning fix.
7748         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
7749         "wild_match" parameter to "wild_match_p" (-Wshadow).
7750
7751 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7752
7753         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
7754         in function documentation.
7755
7756 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7757             Andrey Smirnov  <andrew.smirnov@gmail.com>
7758
7759         -Wshadow warning fix.
7760         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
7761         variable into wild_match_p.  Adjust code accordingly.
7762
7763 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7764             Andrey Smirnov  <andrew.smirnov@gmail.com>
7765
7766         * ada-valprint.c (ada_val_print_1): Move the code handling
7767         TYPE_CODE_ENUM inside its own lexical block.  Declare
7768         variables len and val there, instead of in the function's
7769         top level block.  Avoid declaring deref_val again in a way
7770         that shadows another variable of the same name declared
7771         in one of the up-level blocks.  Just re-use the up-level
7772         variable instead.
7773
7774 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7775
7776         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
7777         Replace block_found argument by symbol_info.  Adjust
7778         implementation accordingly.  Add function documentation.
7779         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
7780         Fix documentation.
7781         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
7782         * ada-exp.y (write_object_renaming): Adjust to new
7783         ada_lookup_encoded_symbol API.
7784
7785 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
7786
7787         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
7788         documentation.
7789
7790 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
7791
7792         * v850-tdep.c: Add the enum values for mpu and fpu registers.
7793         (v850_register_name): Add the mpu and fpu register names.
7794         (v850e_register_name): Add the mpu and fpu register names.
7795         (v850e2_register_name): New function.
7796         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
7797         bfd_mach_v850e2v3.
7798
7799 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7800
7801         * NEWS: Add entry for Ada varobj support.
7802
7803 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7804
7805         * varobj.c (default_value_is_changeable_p): New function,
7806         extracted from varobj_value_is_changeable_p.  Add declaration.
7807         (ada_value_is_changeable_p): New function, extracted from
7808         varobj_value_is_changeable_p.  Add declaration.
7809         (struct language_specific): New field "value_is_changeable_p".
7810         (languages): Add entries for new field.
7811         (varobj_create): Set language before calling install_new_value.
7812         (varobj_value_is_changeable_p): Reimplement to call the varobj's
7813         "value_is_changeable_p" language callback.
7814
7815 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7816
7817         * ada-varobj.h, ada-varobj.c: New files.
7818         * Makefile.in (SFILES): Add ada-varobj.c.
7819         (HFILES_NO_SRCDIR): Add ada-varobj.h.
7820         (COMMON_OBS): Add ada-varobj.o.
7821
7822 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7823
7824         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
7825         (struct language_specific): New field "value_has_mutated".
7826         (languages): Set field "value_has_mutated" in each entry of array.
7827         (varobj_value_has_mutated): New function.
7828         (varobj_udpdate): Add handling of type mutation.
7829         (value_of_root): Add handling of type mutation.
7830         (ada_value_has_mutated): New function.
7831
7832 2012-03-28  Pedro Alves  <palves@redhat.com>
7833
7834         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
7835         Always supply $fr0 as 0.0 and $fr1 as 1.0.
7836
7837 2012-03-28  Tom Tromey  <tromey@redhat.com>
7838
7839         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
7840         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
7841         before returning.
7842
7843 2012-03-28  Tom Tromey  <tromey@redhat.com>
7844
7845         * .dir-locals.el: New file.
7846
7847 2012-03-28  Pedro Alves  <palves@redhat.com>
7848
7849         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
7850
7851 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
7852
7853         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
7854         handling for r0.
7855
7856 2012-03-27  Pedro Alves  <palves@redhat.com>
7857
7858         Eliminate struct ui_stream.
7859
7860         * ui-out.h (struct ui_stream): Delete.
7861         (ui_out_field_stream): Adjust prototype.
7862         (ui_out_stream_new, ui_out_stream_delete)
7863         (make_cleanup_ui_out_stream_delete): Delete declarations.
7864         * ui-out.c (ui_out_field_stream): Change prototype to take a
7865         ui_file instead of a ui_stream.  Adjust.
7866         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
7867         (make_cleanup_ui_out_stream_delete): Delete.
7868         * breakpoint.c (print_breakpoint_location)
7869         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
7870         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7871         * disasm.c (dump_insns): Ditto.
7872         (do_mixed_source_and_assembly, do_assembly_only): Adjust
7873         prototype.
7874         (gdb_disassembly): Use ui_file/mem_fileopen instead of
7875         ui_stream/ui_out_stream_new.
7876         * infcmd.c (print_return_value): Ditto.
7877         * osdata.c (info_osdata_command): Don't allocate a local
7878         ui_stream.
7879         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
7880         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
7881         * tracepoint.c (print_one_static_tracepoint_marker): Don't
7882         allocate a local ui_stream.
7883         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
7884         instead of ui_stream/ui_out_stream_new.
7885         (list_args_or_locals): Don't allocate a local ui_stream.
7886         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
7887         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
7888         ui_stream/ui_out_stream_new.
7889         * cli/cli-setshow.c (do_setshow_command): Ditto.
7890
7891 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
7892
7893         * arm-linux-tdep.c (arm_linux_init_abi): Call
7894         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
7895         * arm-tdep.c (arm_process_record): New function.
7896         (deallocate_reg_mem): New function.
7897         (decode_insn): New function.
7898         (thumb_record_branch): New function.
7899         (thumb_record_ldm_stm_swi(): New function.
7900         (thumb_record_misc): New function.
7901         (thumb_record_ld_st_stack): New function.
7902         (thumb_record_ld_st_imm_offset): New function.
7903         (thumb_record_ld_st_reg_offset(): New function.
7904         (thumb_record_add_sub_cmp_mov): New function.
7905         (thumb_record_shift_add_sub): New function.
7906         (arm_record_coproc_data_proc): New function.
7907         (arm_record_coproc): New function.
7908         (arm_record_b_bl): New function.
7909         (arm_record_ld_st_multiple): New function.
7910         (arm_record_ld_st_reg_offset): New function.
7911         (arm_record_ld_st_imm_offset): New function.
7912         (arm_record_data_proc_imm): New function.
7913         (arm_record_data_proc_misc_ld_str): New function.
7914         (arm_record_extension_space): New function.
7915         (arm_record_strx): New function.
7916         (sbo_sbz): New function.
7917         (struct insn_decode_record): New structure for arm insn record.
7918         (REG_ALLOC): New macro for reg allocations.
7919         (MEM_ALLOC): New macro for memory allocations.
7920         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
7921
7922 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
7923
7924         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
7925         (store_register): Likewise.
7926
7927 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
7928
7929         * MAINTAINERS (Write After Approval): Add myself to the list.
7930
7931 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
7932
7933         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
7934         Describe also the option "auto".
7935
7936 2012-03-22  Richard Henderson  <rth@redhat.com>
7937
7938         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
7939         * sparc-nat.c (sparc_xfer_wcookie): Make static.
7940
7941 2012-03-22  Richard Henderson  <rth@redhat.com>
7942
7943         * jit.c (jit_read_code_entry): Compute alignment and offset of
7944         int64_t member before computing entry_size.
7945
7946 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
7947
7948         Python scripting: Add new method Value.referenced_value to
7949         gdb.Value which can dereference pointer as well as reference
7950         values.
7951         * NEWS: Add entry under 'Python scripting' about the new method
7952         Value.referenced_value on gdb.Value objects.
7953         * python/py-value.c (valpy_referenced_value): New function
7954         defining a new method on gdb.Value objects which can dereference
7955         pointer and reference values.
7956
7957 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
7958
7959         * MAINTAINERS (Write After Approval): Add myself to the list.
7960
7961 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
7962
7963         * symtab.c (skip_prologue_sal): Change test to check for "main()"
7964         in addition to "main".
7965
7966 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
7967
7968         * expression.h (op_name): Add declaration.
7969         * expprint.c (op_name): Remove declaration.  Make non-static.
7970         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
7971
7972 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
7973
7974         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
7975         of struct siginfo.
7976         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
7977         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
7978         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
7979         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
7980         (linux_nat_get_siginfo): Likewise.
7981         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
7982         (linux_nat_get_siginfo): Likewise.
7983         * linux-tdep.c (linux_get_siginfo_type): Likewise.
7984         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
7985         * procfs.c (gdb_siginfo_t): Likewise.
7986
7987 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
7988
7989         * .gitignore: Ignore more files.
7990
7991 2012-03-20  Pedro Alves  <palves@redhat.com>
7992
7993         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
7994         returns.
7995
7996 2012-03-20  Yao Qi  <yao@codesourcery.com>
7997
7998         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
7999         comment.
8000
8001 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8002
8003         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
8004         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
8005         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
8006         sect_offset.
8007         * dwarf2expr.h (cu_offset, sect_offset): New types.
8008         (struct dwarf_expr_context_funcs) <dwarf_call>
8009         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
8010         sect_offset.
8011         (struct dwarf_expr_context) <len>: Improve the comment.
8012         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
8013         cu_offset and sect_offset.
8014         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
8015         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
8016         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
8017         * dwarf2loc.h: Include dwarf2expr.h.
8018         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
8019         and sect_offset.
8020         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
8021         Improve the comment.
8022         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
8023         (struct signatured_type, struct line_header, struct partial_die_info)
8024         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
8025         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
8026         (get_die_type_at_offset, create_cus_from_index)
8027         (create_signatured_type_table_from_index, dw2_get_file_names)
8028         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
8029         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
8030         (create_debug_types_hash_table, process_psymtab_comp_unit)
8031         (load_partial_comp_unit, create_all_comp_units)
8032         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
8033         (load_full_comp_unit, dwarf2_physname, read_import_statement)
8034         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
8035         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
8036         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
8037         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
8038         (find_partial_die, read_attribute_value, lookup_die_type)
8039         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
8040         (is_ref_attr): New function comment.
8041         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
8042         Use cu_offset and sect_offset.
8043         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
8044         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
8045         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
8046         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
8047         (offset_and_type_hash, offset_and_type_eq, set_die_type)
8048         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
8049         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
8050         sect_offset.
8051
8052 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8053
8054         Code cleanup.
8055         * python/py-auto-load.c (source_section_scripts): New variable back_to.
8056         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
8057         with xfree.
8058         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
8059
8060 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8061
8062         * NEWS: Describe new options --init-command=FILE, -ix and
8063         --init-eval-command=COMMAND, -iex.
8064         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
8065         CMDARG_INIT_COMMAND.
8066         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
8067         "init-command", "init-eval-command", "ix" and "iex" to the variable
8068         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
8069         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
8070         (print_gdb_help): Describe --init-command=FILE, -ix and
8071         --init-eval-command=COMMAND, -iex.
8072
8073 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8074
8075         Code cleanup.
8076         * main.c (struct cmdarg): Move it here from main.  Add more comments.
8077         (cmdarg_s, VEC (cmdarg_s)): New.
8078         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
8079         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
8080         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
8081         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
8082         of CMDARG.
8083
8084 2012-03-19  Tom Tromey  <tromey@redhat.com>
8085
8086         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
8087
8088 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8089
8090         PR symtab/13777
8091         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
8092         GCC >=4.5.
8093
8094 2012-03-16  Chris January  <chris.january@allinea.com>
8095
8096         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
8097         of clear.
8098
8099 2012-03-16  Chris January  <chris.january@allinea.com>
8100
8101         * source.c (add_path): Use memmove instead of strcpy because the
8102         strings overlap.
8103
8104 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
8105
8106         * value.h (set_value_parent): Add declaration.
8107         * value.c (set_value_parent): New function.
8108         (value_address): If VALUE->PARENT is not NULL, then use it as
8109         the base address instead of VALUE->LOCATION.address.
8110         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
8111         the same as OBJ's address.  Adjust V's offset accordingly.
8112         Set V's parent.
8113
8114 2012-03-16  Gary Benson  <gbenson@redhat.com>
8115
8116         PR breakpoints/10738
8117         * dwarf2read.c (use_deprecated_index_sections): New global.
8118         (struct partial_die_info): New member may_be_inlined.
8119         (read_partial_die): Set may_be_inlined where appropriate.
8120         (add_partial_subprogram): Add partial symbols for partial
8121         DIEs that may be inlined.
8122         (new_symbol_full): Add inlined subroutines to the current
8123         scope.
8124         (write_psymtabs_to_index): Bump version number.
8125         (dwarf2_read_index): Read only version 6 indices unless
8126         use_deprecated_index_sections is set.
8127         * linespec.c (symbol_and_data_callback): New structure.
8128         (iterate_inline_only): New function.
8129         (iterate_over_all_matching_symtabs): New argument
8130         "include_inline".  If nonzero, also call the callback for
8131         symbols representing inlined subroutines.
8132         (lookup_prefix_sym): Pass extra argument to the above.
8133         (find_function_symbols): Likewise.
8134         (add_matching_symbols_to_info): Likewise.
8135         * NEWS: Mention that GDB can now set breakpoints on inlined
8136         functions.
8137
8138 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
8139
8140         * p-typeprint.c (pascal_type_print_method_args):
8141         Fix display of parameter of methods.
8142
8143 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
8144
8145         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
8146         Add missing prototype.
8147
8148 2012-03-16  Yao Qi  <yao@codesourcery.com>
8149             Jan Kratochvil  <jan.kratochvil@redhat.com>
8150
8151         Fix false compilation warning.
8152         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
8153
8154 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
8155             Pedro Alves  <pedro@codesourcery.com>
8156
8157         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
8158         (arm_register_g_packet_guesses): New function.
8159         (arm_gdbarch_init): Don't force a target description with
8160         registers when the executable is detected as M-profile.  Instead
8161         set gdbarch->tdep->is_m.  Register `g' packet guesses.
8162         (_initialize_arm_tdep): Initialize the new target description.
8163         * features/arm-with-m-fpa-layout.xml: New description.
8164         * features/arm-with-m-fpa-layout.c: New, generated.
8165
8166 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
8167
8168         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
8169         Update function description.
8170         (insert_bp_location): Do not wipe bl->target_info out.
8171         * mem-break.c: #include "gdb_string.h".
8172         (default_memory_insert_breakpoint): Do not call target_read_memory
8173         with a pointer to the breakpoint's shadow_contents buffer.  Use
8174         a local buffer instead.
8175         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
8176
8177 2012-03-15  Tom Tromey  <tromey@redhat.com>
8178
8179         * NEWS: Mention "info vtbl", not "info vtable".
8180         * cp-support.c (info_vtbl_command): Fix comment.
8181         (_initialize_cp_support): Fix text.
8182
8183 2012-03-15  Tom Tromey  <tromey@redhat.com>
8184
8185         * cp-valprint.c (cp_print_value_fields): Use
8186         print_function_pointer_address for vtable slot.
8187
8188 2012-03-15  Tom Tromey  <tromey@redhat.com>
8189
8190         * gnu-v3-abi.c (struct value_and_voffset): New.
8191         (hash_value_and_voffset, eq_value_and_voffset)
8192         (compare_value_and_voffset, compute_vtable_size)
8193         (print_one_vtable, gnuv3_print_vtable): New functions.
8194         (init_gnuv3_ops): Initialize 'print_vtable' field.
8195         * cp-support.c (info_vtbl_command): New function.
8196         (_initialize_cp_support): Add "info vtbl".
8197         * cp-abi.h (cplus_print_vtable): Declare.
8198         (struct cp_abi_ops) <print_vtable>: New field.
8199         * cp-abi.c (cplus_print_vtable): New function.
8200         * NEWS: Update.
8201
8202 2012-03-15  Tom Tromey  <tromey@redhat.com>
8203
8204         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
8205         iterate_over_symbols.
8206
8207 2012-03-14  Doug Evans  <dje@google.com>
8208
8209         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
8210         DW_OP_GNU_parameter_ref.
8211
8212 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
8213
8214         Fix double prompt of 'interpreter-exec mi'.
8215         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
8216         (mi_interpreter_resume): use it.
8217         (mi_execute_command_input_handler): New function.
8218         * mi/mi-main.c (mi_execute_command): Move prompt printing to
8219         mi_execute_command_input_handler.
8220
8221 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
8222
8223         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
8224         prototype.
8225         (darwin_debug_port_info): Make static.
8226         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
8227         * machoread.c (_initialize_machoread): Add prototype.
8228         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
8229         (i386_darwin_set_control, i386_darwin_get_control)
8230         i386_darwin_dr_set_addr, i386_darwin_get_addr)
8231         i386_darwin_get_status, i386_darwin_get_control):
8232         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
8233
8234 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
8235
8236         * ax-gdb.c (gen_usual_unary): Remove special handling of
8237         enum and bool types.
8238
8239 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
8240
8241         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
8242
8243 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
8244
8245         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
8246
8247 2012-03-13  Chris January  <chris.january@allinea.com>
8248
8249         * aix-thread.c (fill_sprs): Store the floating point registers
8250         at the correct offsets into vals.
8251
8252 2012-03-13  Doug Evans  <dje@google.com>
8253
8254         * NEWS: Mention symbol-reloading has been deleted.
8255         * symfile.c (symbol_reloading): Delete.
8256         (show_symbol_reloading): Delete.
8257         (_initialize_symfile): Delete set/show symbol-reloading.
8258
8259         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
8260         read_in_chain until we have successfully read it in.
8261         (load_full_comp_unit): Ditto.
8262         (read_signatured_type): Add comment.
8263
8264 2012-03-13  Chris January  <chris.january@allinea.com>
8265
8266         * stabsread.c (fix_common_block): Change type of valu argument
8267         to CORE_ADDR.
8268
8269 2012-03-13  Chris January  <chris.january@allinea.com>
8270
8271         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
8272         instruction.
8273
8274 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8275
8276         * common/linux-procfs.c (linux_proc_get_int): New, from
8277         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
8278         field.
8279         (linux_proc_get_tgid): Only call linux_proc_get_int.
8280         (linux_proc_get_tracerpid): New.
8281         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
8282         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
8283         linux_proc_pid_has_state.
8284         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
8285         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
8286         (linux_ptrace_attach_warnings): New.
8287         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
8288         New declaration.
8289         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
8290         (linux_nat_attach): New variables ex, buffer, message and message_s.
8291         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
8292
8293 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8294
8295         * Makefile.in (linux-ptrace.o): New.
8296         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
8297         from linux-nat.c.
8298         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
8299         * common/linux-ptrace.c: New file.
8300         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
8301         * config/arm/linux.mh: Likewise.
8302         * config/i386/linux.mh: Likewise.
8303         * config/i386/linux64.mh: Likewise.
8304         * config/ia64/linux.mh: Likewise.
8305         * config/m32r/linux.mh: Likewise.
8306         * config/m68k/linux.mh: Likewise.
8307         * config/mips/linux.mh: Likewise.
8308         * config/pa/linux.mh: Likewise.
8309         * config/powerpc/linux.mh: Likewise.
8310         * config/powerpc/ppc64-linux.mh: Likewise.
8311         * config/powerpc/spu-linux.mh: Likewise.
8312         * config/s390/s390.mh: Likewise.
8313         * config/sparc/linux.mh: Likewise.
8314         * config/sparc/linux64.mh: Likewise.
8315         * config/xtensa/linux.mh: Likewise.
8316         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
8317         common/linux-procfs.c.
8318         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
8319
8320 2012-03-13  Hui Zhu  <teawater@gmail.com>
8321             Pedro Alves  <palves@redhat.com>
8322
8323         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
8324         CREATE_BREAKPOINT_FLAGS_INSERTED.
8325         (create_breakpoint_sal, create_breakpoints_sal)
8326         (base_breakpoint_create_breakpoints_sal)
8327         (tracepoint_create_breakpoints_sal)
8328         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
8329         down.
8330         (break_command_1, handle_gnu_v3_exceptions, trace_command)
8331         (ftrace_command, strace_command): Adjust.
8332         (create_tracepoint_from_upload): Pass
8333         CREATE_BREAKPOINT_FLAGS_INSERTED.
8334         * breakpoint.h (enum breakpoint_create_flags): New.
8335         (create_breakpoint): New flags parameter.
8336         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
8337         * python/py-breakpoint.c (bppy_init): Adjust.
8338         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
8339         * spu-tdep.c (spu_catch_start): Adjust.
8340
8341 2012-03-13  Pedro Alves  <palves@redhat.com>
8342             Hui Zhu  <teawater@gmail.com>
8343             Yao Qi  <yao@codesourcery.com>
8344
8345         * remote.c (struct remote_state): New field `starting_up'.
8346         (remote_start_remote): Set and clear it.
8347         (remote_can_download_tracepoint): If starting up, return false.
8348
8349 2012-03-13  Yao Qi  <yao@codesourcery.com>
8350
8351         * inferior.h (struct inferior): Remove fields any_syscall_count,
8352         syscalls_counts and total_syscalls_count.  Move them to new
8353         struct catch_syscall_inferior_data in breakpoint.c.
8354         * breakpoint.c: Call DEF_VEC_I(int).
8355         (struct catch_syscall_inferior_data): New.
8356         (get_catch_syscall_inferior_data): New.
8357         (catch_syscall_inferior_data_cleanup): New.
8358         (insert_catch_syscall): Update to access data in
8359         struct catch_syscall_inferior_data.
8360         (insert_catch_syscall): Likewise.
8361         (remove_catch_syscall): Likewise.
8362         (remove_catch_syscall): Likewise.
8363         (is_syscall_catchpoint_enabled): Likewise.
8364         (add_catch_command): Likewise.
8365         (_initialize_breakpoint): Register cleanup.
8366         * breakpoint.h: Removed DEF_VEC_I(int).
8367         * dwarf2loc.c: Call DEF_VEC_I(int).
8368         * mi/mi-main.c: Likewise.
8369
8370 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
8371
8372         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
8373
8374 2012-03-12  Chris January  <chris.january@allinea.com>
8375
8376         * aix-thread.c (_initialize_aix_thread): Add prototype.
8377         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
8378         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
8379
8380 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
8381
8382         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
8383         include of "amd64-nat.h".
8384
8385 2012-03-12  Tom Tromey  <tromey@redhat.com>
8386
8387         * buildsym.c (record_pending_block): Now static.
8388         * buildsym.h: (record_pending_block): Remove.
8389
8390 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
8391
8392         * amd64bsd-nat.c: Include amd64bsd-nat.h.
8393
8394 2012-03-09  Tom Tromey  <tromey@redhat.com>
8395
8396         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
8397         producer_is_gxx_lt_4_6>: New fields.
8398         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
8399
8400 2012-03-09  Tom Tromey  <tromey@redhat.com>
8401
8402         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
8403
8404 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
8405
8406         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
8407         prototype.
8408
8409 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
8410
8411         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
8412
8413 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8414
8415         Fix -Wmissing-prototypes build.
8416         * arm-linux-nat.c (get_thread_id): Make it static.
8417         * xtensa-linux-nat.c (get_thread_id): Likewise.
8418
8419 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
8420
8421         * server.c (process_point_options): If a conditional expression
8422         is found, only print a message if remote_debug is nonzero.
8423
8424 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
8425
8426         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
8427         of internal error for unknown/unsupported types.
8428
8429 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8430
8431         Fix CU relative vs. absolute DIE offsets.
8432         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
8433         offset to offset_in_cu.
8434         * dwarf2read.c (process_enumeration_scope): Add CU offset to
8435         TYPE_OFFSET.
8436         (dwarf2_fetch_die_location_block): Rename parameter offset to
8437         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
8438
8439 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8440
8441         * libunwind-frame.c: Rename to ...
8442         * ia64-libunwind-tdep.c: ... here.
8443         * libunwind-frame.h: Rename to ...
8444         * ia64-libunwind-tdep.h: ... here.
8445         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
8446         ia64-libunwind-tdep.h.
8447         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
8448         * README (--with-libunwind): Rename to ...
8449         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
8450         * config.in: Regenerate.
8451         * configure: Regenerate.
8452         * configure.ac: New option --with-libunwind-ia64, make the
8453         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
8454         Remove AC_DEFINE for HAVE_LIBUNWIND.
8455         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
8456         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
8457         Rename libunwind-frame in the general comment.
8458         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
8459         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
8460         Move forward declarations inside #ifndef.  Rename libunwind-frame in
8461         the general comment.
8462         * ia64-tdep.c: Rename libunwind-frame.h #include to
8463         ia64-libunwind-tdep.h.
8464         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
8465         (ia64_libunwind_descr): Rename libunwind-frame to
8466         ia64-libunwind-tdep in these function comments.
8467         * ia64-tdep.h: Rename libunwind-frame.h #include to
8468         ia64-libunwind-tdep.h.
8469         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
8470         ia64-libunwind-tdep in that data comment.
8471
8472 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8473
8474         * libunwind-frame.h (struct frame_unwind): New declaration.
8475
8476 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
8477
8478         * breakpoint.c (_initialize_breakpoint): Fix error in help of
8479         "set breakpoint condition-evaluation" command.
8480
8481 2012-03-08  Tristan Gingold  <gingold@adacore.com>
8482
8483         * sparc-stub.c: Move to stubs/
8484         * sh-stub.c: Likewise.
8485         * m68k-stub.c: Likewise.
8486         * m32r-stub.c: Likewise.
8487         * i386-stub.c: Likewise.
8488
8489 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
8490
8491         * m68klinux-tdep.c (m68k_linux_init_abi): Register
8492         linux_get_siginfo_type.
8493
8494         * m68klinux-nat.c: Include "gdb_proc_service.h".
8495         (PTRACE_GET_THREAD_AREA): Define.
8496         (ps_get_thread_area): New function.
8497
8498 2012-03-08  Yao Qi  <yao@codesourcery.com>
8499
8500         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
8501         `xsnprintf'.
8502         (remote_query_attached): Likewise.
8503         (remote_static_tracepoint_marker_at): Likewise.
8504         (remote_set_permissions): Likewise.
8505         (remote_detach_1, extended_remote_attach_1): Likewise.
8506         (send_g_packet, remote_vkill): Likewise.
8507         (extended_remote_disable_randomization): Likewise.
8508         (remote_add_target_side_condition): Likewise.
8509         (remote_insert_breakpoint): Likewise.
8510         (remote_remove_breakpoint): Likewise.
8511         (remote_insert_watchpoint): Likewise.
8512         (remote_remove_watchpoint): Likewise.
8513         (remote_insert_hw_breakpoint): Likewise.
8514         (remote_insert_hw_breakpoint): Likewise.
8515         (remote_remove_hw_breakpoint): Likewise.
8516         (remote_download_command_source): Likewise.
8517         (remote_download_tracepoint): Likewise.
8518         (remote_download_trace_state_variable): Likewise.
8519         (remote_disable_tracepoint): Likewise.
8520         (remote_trace_set_readonly_regions): Likewise.
8521         (remote_get_tracepoint_status): Likewise.
8522         (remote_trace_find): Likewise.
8523         (remote_get_trace_state_variable_value): Likewise.
8524         (remote_set_disconnected_tracing): Likewise.
8525         (remote_set_circular_trace_buffer): Likewise.
8526         (remote_get_min_fast_tracepoint_insn_len): Likewise.
8527         (remote_use_agent): Likewise.
8528         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
8529         Update callers.
8530
8531 2012-03-07  Pedro Alves  <palves@redhat.com>
8532
8533         * NEWS: Mention QProgramSignals.
8534         * inferior.h (update_signals_program_target): Declare.
8535         * infrun.c: (update_signals_program_target): New.
8536         (handle_command): Update the target of the new program signals
8537         array changes.
8538         * remote.c (PACKET_QProgramSignals): New enum.
8539         (last_program_signals_packet): New global.
8540         (remote_program_signals): New.
8541         (remote_start_remote): Update the target with the program signals
8542         list.
8543         (remote_protocol_features): Add entry for QPassSignals.
8544         (remote_open_1): Free anc clear last_program_signals_packet.
8545         (init_remote_ops): Install remote_program_signals.
8546         * target.c (update_current_target): Adjust.
8547         (target_program_signals): New.
8548         * target.h (struct target_ops) <to_program_signals>: New field.
8549         (target_program_signals): Declare.
8550
8551 2012-03-07  Pedro Alves  <palves@redhat.com>
8552
8553         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
8554         extensions.
8555
8556 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
8557
8558         * m68klinux-nat.c (getregs_supplies): Make static.
8559         (getfpregs_supplies): Likewise.
8560         (have_ptrace_getregs): Likewise.
8561
8562 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
8563
8564         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
8565         in call to get_die_type_at_offset.
8566
8567 2012-03-06  Stan Shebs  <stan@codesourcery.com>
8568
8569         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
8570         * mi/mi-cmd-disas.c: Ditto.
8571         * mi/mi-cmd-env.c: Ditto.
8572         * mi/mi-cmd-file.c: Ditto.
8573         * mi/mi-cmd-stack.c: Ditto.
8574         * mi/mi-cmd-target.c: Ditto.
8575         * mi/mi-cmd-var.c: Ditto.
8576         * mi/mi-cmds.c: Ditto.
8577         * mi/mi-cmds.h: Ditto.
8578         * mi/mi-console.c: Ditto.
8579         * mi/mi-getopt.c: Ditto.
8580         * mi/mi-getopt.h: Ditto.
8581         * mi/mi-interp.c: Ditto.
8582         * mi/mi-main.c: Ditto.
8583         * mi/mi-out.c: Ditto.
8584         * mi/mi-parse.c: Ditto.
8585         * mi/mi-parse.h: Ditto.
8586         * mi/mi-symbol-cmds.c: Ditto.
8587
8588         * mi/mi-getopt.h: Move mi_opt struct up.
8589         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
8590         return.
8591         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
8592
8593 2012-03-06  Tom Tromey  <tromey@redhat.com>
8594
8595         * proc-service.c (ps_pglobal_lookup): Set the current program
8596         space.
8597
8598 2012-03-06  Pedro Alves  <palves@redhat.com>
8599
8600         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
8601
8602 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
8603
8604         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
8605
8606 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8607
8608         Code cleanup.
8609         * common/linux-osdata.c (linux_common_core_of_thread): New function
8610         comment.
8611         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
8612         call by linux_common_core_of_thread.
8613         (linux_nat_core_of_thread_1): Remove.
8614         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
8615         * linux-thread-db.c: Include linux-osdata.h.
8616         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
8617         linux_common_core_of_thread.
8618
8619 2012-03-05  Tom Tromey  <tromey@redhat.com>
8620
8621         * value.c (value_primitive_field): Don't fetch contents for
8622         non-virtual bases.
8623
8624 2012-03-05  Tom Tromey  <tromey@redhat.com>
8625
8626         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
8627
8628 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8629
8630         * s390-nat.c: Include "gregset.h".
8631
8632 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8633
8634         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
8635         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
8636         (libunwind_load): New variable so_error, use it for dlerror.  Try to
8637         load also LIBUNWIND_SO_7.
8638
8639 2012-03-05  Pedro Alves  <palves@redhat.com>
8640
8641         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
8642         is not NULL, and remove resulting dead code.
8643
8644 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
8645
8646         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
8647         prologue to sh_analyze_prologue.
8648         (sh_analyze_prologue): Make better use of such an upper limit, and
8649         generally be more cautious about accessing memory.
8650
8651 2012-03-05  Tom Tromey  <tromey@redhat.com>
8652
8653         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
8654         _initialize_ia64_hpux_tdep.
8655
8656 2012-03-05  Pedro Alves  <palves@redhat.com>
8657
8658         PR gdb/13766
8659
8660         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
8661         the register state is clear, supply explicit zero, instead of
8662         marking the register unavailable.
8663
8664 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8665
8666         * NEWS: Mention OpenVMS ia64 new target.
8667
8668 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8669
8670         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
8671         (ia64_unw_accessors, ia64_unw_rse_accessors)
8672         (ia64_libunwind_descr): Declare.
8673         * ia64-vms-tdep.c: New file.
8674         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
8675         (ia64_libunwind_descr): Make them public.
8676         * configure.tgt: Add ia64-*-*vms*.
8677         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
8678         (ALLDEPFILES): Add ia64-vms-tdep.c
8679
8680 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8681
8682         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
8683         * remote.c (PACKET_qXfer_uib): New enum value.
8684         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
8685         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
8686         (_initialize_remote): Call add_packet_config_cmd for
8687         xfer:uib packet.
8688
8689 2012-03-05  Tristan Gingold  <gingold@adacore.com>
8690
8691         * osabi.c (gdb_osabi_names): Add OpenVMS.
8692         (generic_elf_osabi_sniffer): Likewise.
8693         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
8694
8695 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
8696
8697         Removed unused code.
8698         * libunwind-frame.c (libunwind_frame_unwind)
8699         (libunwind_frame_base_address): Remove.
8700         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
8701
8702 2012-03-04  Yao Qi  <yao@codesourcery.com>
8703
8704         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
8705         remove trailing new line.
8706         (agent_run_command, agent_run_command): Add _ markup.
8707         (agent_capability_check): Likewise.
8708
8709 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8710
8711         * breakpoint.c (set_condition_evaluation_mode): Set
8712         CONDITION_EVALUATION_MODE unconditionally.
8713
8714 2012-03-03  Yao Qi  <yao@codesourcery.com>
8715
8716         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
8717         * common/agent.h: Update declaration.
8718         * inf-child.c (inf_child_use_agent): New.
8719         (inf_child_can_use_agent): New.
8720         (inf_child_target): Initialize fields `to_use_agent'
8721         and `to_can_use_agent'.
8722         * agent.c (agent_new_objfile): New.
8723         (_initialize_agent): Add agent_new_objfile to new_objfile
8724         observer.
8725
8726         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8727         New.
8728         (linux_target_install_ops): Initialize field
8729         `to_static_tracepoint_markers_by_strid'.
8730         * remote.c (free_current_marker): Move it to ...
8731         * tracepoint.c (free_current_marker): ... here.  New.
8732         (cleanup_target_stop): New.
8733         * tracepoint.h: Declare free_current_marker.
8734         * NEWS: Add one entry about `info static-tracepoint-marker'.
8735
8736 2012-03-03  Yao Qi  <yao@codesourcery.com>
8737
8738         * common/agent.c (agent_loaded_p): New.
8739         (agent_look_up_symbols): New global.
8740         * common/agent.h: Declare agent_loaded_p.
8741
8742 2012-03-03  Yao Qi  <yao@codesourcery.com>
8743
8744         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
8745         (agent_capability_check, agent_capability_invalidate): New.
8746         (symbol_list): New array element.
8747         * common/agent.h (enum agent_capa): New.
8748         * target.c (target_pre_inferior): Call agent_capability_invalidate.
8749
8750 2012-03-03  Yao Qi  <yao@codesourcery.com>
8751
8752         * target.h (struct target_ops) <to_use_agent>: New field.
8753         (struct target_ops) <to_can_use_agent>: New field.
8754         (target_use_agent, target_can_use_agent): New macro.
8755         * target.c (update_current_target): Update.
8756         * remote.c: New enum `PACKET_QAgent'.
8757         (remote_protocol_features): Add a new element.
8758         (remote_use_agent, remote_can_use_agent): New.
8759         (init_remote_ops): Initialize field `can_use_agent' with
8760         remote_can_use_agent.  Intiailize field `use_agent' with
8761         remote_use_agent.
8762         * common/agent.c (use_agent): New global.
8763         * common/agent.h: Declare it.
8764         * tracepoint.c (info_static_tracepoint_markers_command): Add
8765         comment.
8766         * Makefile.in (SFILES): Add common/agent.c and agent.c.
8767         (COMMON_OBS): Add common/agent.o and agent.o
8768         (common-agent.o): New rule.
8769         * agent.c: New.
8770
8771 2012-03-03  Yao Qi  <yao@codesourcery.com>
8772
8773         * common/agent.c: New.
8774         * common/agent.h: New.
8775         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
8776         AC_CHECK_HEADERS.
8777         * configure, configh.in: Regenerated.
8778
8779 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
8780
8781         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
8782         unless it exists for this architecture.
8783
8784 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
8785
8786         * language.h (struct language_defn): New "method" la_read_var_value.
8787         * findvar.c: #include "language.h".
8788         (default_read_var_value): Renames read_var_value.  Rewrite
8789         function description.
8790         (read_var_value): New function.
8791         * value.h (default_read_var_value): Add prototype.
8792         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
8793         New functions.
8794         (ada_language_defn): Add entry for la_read_var_value.
8795         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
8796         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
8797         language_defn structures to add entry for new la_read_var_value
8798         field.
8799
8800 2012-03-02  Tom Tromey  <tromey@redhat.com>
8801             Pedro Alves  <palves@redhat.com>
8802
8803         PR breakpoints/13776:
8804         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
8805         breakpoints.
8806         (delete_longjmp_breakpoint_at_next_stop): New.
8807         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
8808         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
8809         before deleting the inferior.  Add comments.
8810         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
8811         breakpoints immediately, but only on next stop.  Move that code
8812         next to where we mark other breakpoints for deletion.
8813
8814 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
8815
8816         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
8817         marker.
8818         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
8819         violation.
8820
8821 2012-03-02  Pedro Alves  <palves@redhat.com>
8822
8823         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
8824
8825 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
8826
8827         Fix -Wmissing-prototypes build.
8828         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
8829         * remote-sim.c (gdbsim_has_all_memory): Likewise.
8830         (gdbsim_has_memory): Likewise.
8831
8832 2012-03-02  Yao Qi  <yao@codesourcery.com>
8833
8834         Fix -Wmissing-prototypes build.
8835         * charset.c (phony_iconv_open): Make static.
8836         (phony_iconv_close, phony_iconv): Likewise.
8837         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
8838         * i386-windows-nat.c (_initialize_i386_windows_nat): New
8839         prototype.
8840         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
8841         * ser-mingw.c (create_select_thread): Make static.
8842         * windows-termcap.c (tgetent): New prototype.
8843         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
8844
8845 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
8846
8847         Fix -Wmissing-prototypes build.
8848         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
8849         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
8850         (_initialize_loadable): New prototypes.
8851
8852 2012-03-02  Doug Evans  <dje@google.com>
8853
8854         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
8855         abbrev table, read_comp_unit will do it.
8856
8857 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8858
8859         Fix -Wmissing-prototypes build.
8860         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
8861         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
8862         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
8863         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
8864         (_initialize_arm_symbian_tdep): New prototype.
8865         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
8866         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
8867         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
8868         static.
8869         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
8870         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
8871         prototype.
8872         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
8873         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
8874         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
8875         static.
8876         * moxie-tdep.c (moxie_process_record): Likewise.
8877         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
8878         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
8879         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
8880         (_initialize_rl78_tdep): New prototype.
8881         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
8882         (_initialize_rx_tdep): New prototype.
8883         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
8884         (_initialize_darwin_solib): New prototype.
8885         * solib-spu.c: Include solib-spu.h.
8886         (_initialize_spu_solib): New prototype.
8887         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
8888         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
8889         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
8890         (tic6x_software_single_step): Make it static.
8891         (_initialize_tic6x_tdep): New prototype.
8892
8893 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8894
8895         Fix -Wmissing-prototypes build.
8896         * cris-tdep.c (cris_can_use_hardware_watchpoint)
8897         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
8898
8899 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
8900
8901         Fix -Wmissing-prototypes build.
8902         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
8903         (frv_have_stopped_data_address): Remove.
8904
8905 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
8906
8907         Fix -Wmissing-prototypes build.
8908         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
8909         * sh-tdep.c: Include sh64-tdep.h.
8910         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
8911         * sh64-tdep.c: Include sh64-tdep.h.
8912         * sh64-tdep.h: New file.
8913
8914 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
8915
8916         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
8917
8918 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
8919
8920         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
8921         sp_regnum once the gdbarch_init_osabi hook has been called.
8922
8923 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
8924
8925         * mips-tdep.c (mips32_bc1_pc): New function.
8926         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
8927         BPOSGE32 and BPOSGE64 instructions.
8928         (deal_with_atomic_sequence): Likewise.
8929         (mips32_instruction_has_delay_slot): Likewise.
8930
8931 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
8932             Chris Dearman  <chris@mips.com>
8933             Maciej W. Rozycki  <macro@codesourcery.com>
8934             Joseph Myers  <joseph@codesourcery.com>
8935
8936         * features/mips-dsp.xml: New file.
8937         * features/mips64-dsp.xml: New file.
8938         * features/mips-dsp-linux.xml: New file.
8939         * features/mips64-dsp-linux.xml: New file.
8940         * features/Makefile (WHICH): Add mips-dsp-linux and
8941         mips64-dsp-linux.
8942         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
8943         * features/mips-dsp-linux.c: New file.
8944         * features/mips64-dsp-linux.c: New file.
8945         * regformats/mips-dsp-linux.dat: New file.
8946         * regformats/mips64-dsp-linux.dat: New file.
8947         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
8948         registers.
8949         (mips64_linux_register_addr): Likewise.
8950         (mips64_linux_regsets_fetch_registers): Likewise.
8951         (mips64_linux_regsets_store_registers): Likewise.
8952         (mips64_linux_fetch_registers): Update call to
8953         mips64_linux_regsets_fetch_registers.
8954         (mips64_linux_store_registers): Update call to
8955         mips64_linux_regsets_store_registers.
8956         (mips_linux_read_description): Probe for DSP registers.
8957         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
8958         and initialize_tdesc_mips64_dsp_linux.
8959         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
8960         Remove padding of no longer used embedded register slots.
8961         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
8962         (MIPS_RESTART_REGNUM): Redefine enum value.
8963         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
8964         strings.
8965         (mips_tx39_reg_names): Likewise.
8966         (mips_linux_reg_names): New array of register names for Linux
8967         targets.
8968         (mips_register_name): Check for a null pointer in
8969         mips_processor_reg_names and return an empty string.
8970         (mips_register_type): Exclude embedded registers for the IRIX
8971         and Linux ABIs.
8972         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
8973         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
8974         DSP registers.
8975         (mips_stab_reg_to_regnum): Handle DSP accumulators.
8976         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
8977         (mips_gdbarch_init): Likewise.  Initialize internal register
8978         indices for the Linux ABI.  Use dynamic numbers to refer to
8979         registers, as applicable, while parsing the target description.
8980         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
8981
8982 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
8983
8984         * frame.h (read_frame_register_unsigned): Fix typo in function
8985         description.
8986
8987 2012-03-01  Pedro Alves  <palves@redhat.com>
8988
8989         * jit-reader.in [!__cplusplus]
8990         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
8991
8992 2012-03-01  Pedro Alves  <palves@redhat.com>
8993
8994         * configure.ac (build_warnings): Add -Wmissing-prototypes.
8995         * configure: Regenerate.
8996
8997 2012-03-01  Pedro Alves  <palves@redhat.com>
8998
8999         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
9000         * breakpoint.c (create_exception_master_breakpoint, trace_command)
9001         (ftrace_command, strace_command): Make static.
9002         * d-lang.c (_initialize_d_language): Declare.
9003         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
9004         * dwarf2loc.c (_initialize_dwarf2loc):
9005         * dwarf2read.c (process_psymtab_comp_unit): Make static.
9006         * exec.c (exec_get_section_table): Make static.
9007         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
9008         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
9009         * inferior.c (remove_inferior_command, add_inferior_command)
9010         (clone_inferior_command): Make static.
9011         * linux-nat.c (linux_nat_thread_address_space)
9012         (linux_nat_core_of_thread): Make static.
9013         * linux-tdep.c (_initialize_linux_tdep): Declare.
9014         * objc-lang.c (_initialize_objc_lang): Declare.
9015         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
9016         Make static.
9017         (_initialize_opencl_language): Declare.
9018         * record.c (_initialize_record): Declare.
9019         * remote.c (demand_private_info, remote_get_tib_address)
9020         (remote_supports_cond_tracepoints)
9021         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
9022         Make static.
9023         * skip.c (_initialize_step_skip): Declare.
9024         * symtab.c (skip_prologue_using_lineinfo): Make static.
9025         * tracepoint.c (delete_trace_state_variable)
9026         (trace_variable_command, delete_trace_variable_command)
9027         (get_uploaded_tsv, find_matching_tracepoint_location)
9028         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
9029         Make static.
9030         * value.c (pack_unsigned_long): Make static.
9031         * varobj.c (varobj_ensure_python_env): Make static.
9032         * windows-tdep.c (_initialize_windows_tdep): Declare.
9033         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
9034
9035 2012-03-01  Pedro Alves  <palves@redhat.com>
9036
9037         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
9038         gdbarch parameter.
9039         (linux_init_abi): Install it as has_shared_address_space gdbarch
9040         callback.
9041
9042 2012-03-01  Pedro Alves  <palves@redhat.com>
9043
9044         * observer.c (observer_test_first_notification_function)
9045         (observer_test_second_notification_function)
9046         (observer_test_third_notification_function): Add declarations.
9047
9048 2012-03-01  Pedro Alves  <palves@redhat.com>
9049
9050         * common/signals.c (default_target_signal_to_host)
9051         (default_target_signal_from_host): Move ...
9052         * arch-utils.c: ... here.
9053         * arch-utils.h (default_target_signal_to_host)
9054         (default_target_signal_from_host): Declare.
9055
9056         * common/signals.c (target_signal_from_command): Move ...
9057         * infrun.c: ... here.
9058         * inferior.h (target_signal_from_command): Declare.
9059         * target.h (target_signal_from_command)
9060         (default_target_signal_from_host, default_target_signal_to_host):
9061         Delete declarations.
9062
9063         * common/signals.c (_initialize_signals): Delete.
9064
9065 2012-03-01  Pedro Alves  <palves@redhat.com>
9066
9067         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
9068         both __cplusplus and !__cplusplus.
9069
9070 2012-03-01  Pedro Alves  <palves@redhat.com>
9071
9072         * psymtab.c (find_and_open_source): Delete declaration.
9073         * source.c (find_and_open_source): Move comment ...
9074         * source.h (find_and_open_source): ... to this new declaration.
9075
9076 2012-03-01  Pedro Alves  <palves@redhat.com>
9077
9078         * inline-frame.c: Include inline-frame.h.
9079
9080 2012-03-01  Pedro Alves  <palves@redhat.com>
9081
9082         * tui/tui-data.c (set_gen_win_origin): Delete.
9083         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
9084         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
9085
9086 2012-03-01  Pedro Alves  <palves@redhat.com>
9087
9088         * remote.c (encode_actions): Delete declaration.
9089         * tracepoint.c (encode_actions): Make extern.
9090         * tracepoint.h (encode_actions): Declare.
9091
9092 2012-03-01  Pedro Alves  <palves@redhat.com>
9093
9094         * python/py-breakpoint.c: Include python.h.
9095         * python/py-continueevent.c (create_continue_event_object): Make
9096         static.
9097         * python/py-lazy-string.c (stpy_get_type): Make static.
9098         * python/py-newobjfileevent.c (create_new_objfile_event_object):
9099         Make static.
9100         * python/py-utils.c (unicode_to_target_python_string): Make
9101         static.
9102         * python/py-value.c: Include python.h.
9103
9104 2012-03-01  Pedro Alves  <palves@redhat.com>
9105
9106         * inferior.c (delete_threads_of_inferior): Delete.
9107
9108 2012-03-01  Pedro Alves  <palves@redhat.com>
9109
9110         Import fallback definitions from glibc.
9111
9112         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
9113         ps_prochandle): Forward declare.
9114         (ps_err_e): Use glibc's comments.
9115         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
9116         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
9117         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
9118         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
9119         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
9120         (struct ps_prochandle): Adjust comment.
9121
9122 2012-03-01  Pedro Alves  <palves@redhat.com>
9123
9124         * ada-lang.c (ada_modulus_from_name): Delete.
9125         * ada-lex.l (lexer_init): Make static.
9126
9127 2012-03-01  Pedro Alves  <palves@redhat.com>
9128
9129         PR gdb/13767
9130
9131         * frame.c (read_frame_register_unsigned): New.
9132         * frame.h (read_frame_register_unsigned): Declare.
9133         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
9134         Handle it.
9135         (print_i387_control_word): New parameter `control_p'.  Handle it.
9136         (i387_print_float_info): Handle unavailable float registers.
9137
9138 2012-03-01  Keith Seitz  <keiths@redhat.com>
9139
9140         * linespec.c (decode_line_2): Sort the list of methods
9141         alphabetically before presenting the user with a selection
9142         menu.
9143
9144 2012-03-01  Doug Evans  <dje@google.com>
9145
9146         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
9147         has_namespace_info.
9148         (dwarf2_read_abbrevs): Remove corresponding initialization.
9149
9150 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
9151
9152         * NEWS: Mention new python command class gdb.COMMAND_USER.
9153         * cli/cli-cmds.c (show_user): Print error when used on a python
9154         command.
9155         (init_cli_cmds): Update documentation strings for "show user" and
9156         "set/show max-user-call-depth" to clarify that it does not apply to
9157         python commands.
9158         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
9159         error check.
9160         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
9161         gdb python api.
9162         * top.c (execute_command): Only execute a user-defined command as a
9163         legacy macro if c->user_commands is set.
9164
9165 2012-03-01  Tom Tromey  <tromey@redhat.com>
9166
9167         * valprint.h (struct generic_val_print_decorations): New.
9168         (generic_val_print): Declare.
9169         * valprint.c (generic_val_print): New function.
9170         * p-valprint.c (p_decorations): New global.
9171         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
9172         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
9173         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
9174         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
9175         * m2-valprint.c (m2_decorations): New global.
9176         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
9177         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
9178         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
9179         TYPE_CODE_ERROR>: Call generic_val_print.
9180         * f-valprint.c (f_decorations): New global.
9181         (f_val_print): Use print_function_pointer_address.
9182         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
9183         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
9184         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
9185         generic_val_print.
9186         * c-valprint.c (c_decorations): New global.
9187         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
9188         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
9189         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
9190         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
9191         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
9192         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
9193         case.
9194
9195 2012-03-01  Tom Tromey  <tromey@redhat.com>
9196
9197         * valprint.c (val_print): Update.
9198         * p-valprint (pascal_val_print): Return void.
9199         * p-lang.h (pascal_val_print): Return void.
9200         * m2-valprint.c (m2_val_print): Return void.
9201         * m2-lang.h (m2_val_print): Return void.
9202         * language.h (struct language_defn) <la_val_print>: Return void.
9203         * language.c (unk_lang_val_print): Return void.
9204         * jv-valprint.c (java_val_print): Return void.
9205         * jv-lang.h (java_val_print): Return void.
9206         * f-valprint.c (f_val_print): Return void.
9207         * f-lang.h (f_val_print): Return void.
9208         * d-valprint.c (d_val_print): Return void.
9209         (dynamic_array_type): Update.
9210         * d-lang.h (d_val_print): Return void.
9211         * c-valprint.c (c_val_print): Return void.
9212         * c-lang.h (c_val_print): Return void.
9213         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
9214         void.
9215         * ada-lang.h (ada_val_print): Return void.
9216
9217 2012-03-01  Tom Tromey  <tromey@redhat.com>
9218
9219         * value.h (val_print): Return void.
9220         * valprint.c (val_print): Return void.
9221
9222 2012-03-01  Tom Tromey  <tromey@redhat.com>
9223
9224         * value.h (common_val_print): Return void.
9225         * valprint.c (common_val_print): Return void.
9226
9227 2012-03-01  Tom Tromey  <tromey@redhat.com>
9228
9229         * value.h (value_print): Return void.
9230         * valprint.c (value_print): Return void.
9231         * p-valprint.c (pascal_value_print): Return void.
9232         * p-lang.h (pascal_value_print): Return void.
9233         * language.h (struct language_defn) <la_value_print>: Return
9234         void.
9235         * language.c (unk_lang_value_print): Return void.
9236         * jv-valprint.c (java_value_print): Return void.
9237         * jv-lang.h (java_value_print): Return void.
9238         * f-valprint.c (c_value_print): Don't declare.
9239         Include c-lang.h.
9240         * c-valprint.c (c_value_print): Return void.
9241         * c-lang.h (c_value_print): Return void.
9242         * ada-valprint.c (ada_value_print): Return void.
9243         * ada-lang.h (ada_value_print): Return void.
9244
9245 2012-03-01  Tom Tromey  <tromey@redhat.com>
9246
9247         * value.c (value_primitive_field): Handle virtual base classes.
9248
9249 2012-03-01  Tom Tromey  <tromey@redhat.com>
9250
9251         * gdbtypes.h (struct vbase): Remove.
9252
9253 2012-03-01  Tom Tromey  <tromey@redhat.com>
9254
9255         * c-valprint.c (print_function_pointer_address): Move...
9256         * valprint.c: ... here.  Make non-static.
9257         * m2-valprint.c (print_function_pointer_address): Remove.
9258         * valprint.h (print_function_pointer_address): Declare.
9259
9260 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
9261
9262         * NEWS: Document the fact that one can provide a condition when
9263         creating an Ada exception catchpoint.
9264
9265 2012-03-01  Tom Tromey  <tromey@redhat.com>
9266
9267         * valprint.c (val_print_type_code_flags): Fix placement of
9268         trailing brace.
9269
9270 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
9271
9272         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
9273         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
9274         environment variable before calling update-copyright.
9275
9276 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
9277
9278         * gnulib/extra/update-copyright: Update to the latest from
9279         gnulib's git repository.
9280         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
9281         variable to 2 instead of 1.
9282
9283 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9284
9285         * varobj.c (c_value_of_variable): Remove dead code.
9286
9287 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9288
9289         * ada-lex.p (processId): Do not modify already encoded IDs.
9290         Update function documentation.
9291
9292 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9293
9294         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
9295         "name" with "struct symbol *name_sym".
9296         * ada-exp.y (write_var_or_type): Update call to
9297         ada_find_renaming_symbol.
9298         "name" with "struct symbol *name_sym". Adjust Implementation
9299         accordingly.  Adjust the function documentation.
9300
9301 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9302
9303         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
9304         * ada-lang.c (ada_find_any_type): Add advance declaration.
9305         Make static.  Replace ada_find_any_symbol by
9306         ada_find_any_type_symbol.
9307         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
9308         Improve function description.  Make static.
9309         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
9310         Replace ada_find_any_symbol by ada_find_any_type_symbol.
9311
9312 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9313
9314         * ada-lang.c (struct tag_args): Delete.
9315         (ada_get_tsd_type): Function body moved up in source file.
9316         (ada_tag_name_1, ada_tag_name_2): Delete.
9317         (ada_get_tsd_from_tag): New function.
9318         (ada_tag_name_from_tsd): New function.
9319         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
9320         to determine the tag name.
9321
9322 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9323
9324         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
9325         declaration.
9326         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
9327         function.
9328
9329 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9330
9331         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
9332
9333 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9334
9335         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
9336         full searches.
9337
9338 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9339
9340         * ada-lang.c (constrained_packed_array_type): If there is a
9341         parallel XA type, use it to determine the array index type.
9342
9343 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9344
9345         * ada-valprint.c (ada_val_print_1): If our value is a reference
9346         to an array descriptor, dereference it before converting it
9347         to a simple array.
9348
9349 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9350
9351         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
9352         creating fixed value.
9353         (ada_value_ind, ada_coerce_ref, assign_component)
9354         (ada_evaluate_subexp): Remove call to unwrap_value before
9355         call to ada_to_fixed_value.
9356
9357 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9358
9359         * ada-lang.c (to_fixed_array_type): Set result's type name.
9360
9361 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
9362
9363         * ada-lang.c (catch_ada_exception_command_split): Add new
9364         argument cond_string.  Add support for condition at end of
9365         "catch exception" commands.
9366         (ada_decode_exception_location): Add new argument cond_string.
9367         Update call to catch_ada_exception_command_split.
9368         (create_ada_exception_catchpoint): Add new argument cond_string.
9369         Set the breakpoint condition if needed.
9370         (catch_ada_exception_command): Update call to
9371         ada_decode_exception_location.
9372         (ada_decode_assert_location): Add function documentation.
9373         Add support for condition at end of "catch assert" command.
9374         (catch_assert_command): Update calls to ada_decode_assert_location
9375         and create_ada_exception_catchpoint.
9376
9377 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
9378
9379         Fix disp-step-syscall.exp: fork: single step over fork.
9380         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
9381         (i386_linux_get_syscall_number_from_regcache): ... here, new function
9382         comment, change parameters gdbarch and ptid to regcache.  Remove
9383         parameter regcache, initialize gdbarch from regcache here.
9384         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
9385         New functions.
9386         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
9387         instead.
9388         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
9389         'syscall'.  Make the 'int' check more strict.
9390
9391 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
9392
9393         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
9394         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
9395         (i386_linux_intx80_sysenter_syscall_record): ... here.
9396         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
9397         Use the renamed function name.
9398
9399 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
9400
9401         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
9402         * breakpoint.c (until_break_command): Likewise.
9403         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
9404         * infcall.c (call_function_by_hand): Likewise.
9405         * infcmd.c (finish_forward): Likewise.
9406         * infrun.c (insert_exception_resume_breakpoint): Likewise.
9407
9408 2012-02-28  Tristan Gingold  <gingold@adacore.com>
9409
9410         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
9411         avoid variable assignments inside condition.
9412
9413 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
9414
9415         Fix static analysis issue found by cppcheck.
9416         * microblaze-tdep.c (microblaze_extract_return_value): Fix
9417         uninitialized BUF for size 2.
9418
9419 2012-02-27  Chris Dearman  <chris@mips.com>
9420             Nathan Froyd  <froydnj@codesourcery.com>
9421             Maciej W. Rozycki  <macro@codesourcery.com>
9422
9423         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
9424         (mips16_instruction_has_delay_slot): Likewise.
9425         (mips_segment_boundary): Likewise.
9426         (mips_adjust_breakpoint_address): Likewise.
9427         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
9428
9429 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
9430             Maciej W. Rozycki  <macro@codesourcery.com>
9431
9432         * infrun.c (handle_inferior_event): Don't proceed through
9433         shared library trampolines if stepping at the machine
9434         instruction level.
9435
9436 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
9437
9438         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
9439         too.
9440
9441 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
9442
9443         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
9444         (sh_stub_unwind_sniffer): New functions.
9445         (sh_stub_unwind): New variable.
9446         (sh_gdbarch_init): Wire everything.
9447
9448 2012-02-27  Pedro Alves  <palves@redhat.com>
9449
9450         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
9451         (linux_nat_post_attach_wait): Adjust to use
9452         linux_proc_pid_is_stopped.
9453         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
9454         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
9455         based on pid_is_stopped from both linux-nat.c and
9456         gdbserver/linux-low.c, and renamed.
9457
9458 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9459
9460         * remote.c (remote_watchpoint_addr_within_range): New function.
9461         (init_remote_ops): Use it.
9462
9463 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9464
9465         * target.h (target_watchpoint_addr_within_range): Document macro.
9466
9467 2012-02-24  Pedro Alves  <palves@redhat.com>
9468
9469         * stack.c (set_last_displayed_sal): Issue internal_error instead
9470         of warning, and issue it after clearing the last displayed sal.
9471
9472 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
9473             Pedro Alves  <palves@redhat.com>
9474
9475         * breakpoint.c (until_break_command): Install breakpoints after
9476         all frame manipulations.
9477
9478 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9479
9480         * remote.c (remote_supports_cond_breakpoints): New forward
9481         declaration.
9482         (remote_add_target_side_condition): New function.
9483         (remote_insert_breakpoint): Add target-side breakpoint
9484         conditional if supported.
9485         (remote_insert_hw_breakpoint): Likewise.
9486         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
9487         hook.
9488
9489         * target.c (update_current_target): Inherit
9490         to_supports_evaluation_of_breakpoint_conditions.
9491         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
9492
9493         * target.h (struct target_ops)
9494         <to_supports_evaluation_of_breakpoint_conditions>: New field.
9495         (target_supports_evaluation_of_breakpoint_conditions): New #define.
9496
9497         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
9498         (condition_evaluation_both, condition_evaluation_auto,
9499         condition_evaluation_host, condition_evaluation_target,
9500         condition_evaluation_enums, condition_evaluation_mode_1,
9501         condition_evaluation_mode): New static globals.
9502         (translate_condition_evaluation_mode): New function.
9503         (breakpoint_condition_evaluation_mode): New function.
9504         (gdb_evaluates_breakpoint_condition_p): New function.
9505         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
9506         (mark_breakpoint_modified): New function.
9507         (mark_breakpoint_location_modified): New function.
9508         (set_condition_evaluation_mode): New function.
9509         (show_condition_evaluation_mode): New function.
9510         (bp_location_compare_addrs): New function.
9511         (get_first_location_gte_addr): New helper function.
9512         (set_breakpoint_condition): Free condition bytecode if locations
9513         has become unconditional.  Call mark_breakpoint_modified (...).
9514         (condition_command): Call update_global_location_list (1) for
9515         breakpoints.
9516         (breakpoint_xfer_memory): Use is_breakpoint (...).
9517         (is_breakpoint): New function.
9518         (parse_cond_to_aexpr): New function.
9519         (build_target_condition_list): New function.
9520         (insert_bp_location): Handle target-side conditional
9521         breakpoints and call build_target_condition_list (...).
9522         (update_inserted_breakpoint_locations): New function.
9523         (insert_breakpoint_locations): Handle target-side conditional
9524         breakpoints.
9525         (bpstat_check_breakpoint_conditions): Add comment.
9526         (bp_condition_evaluator): New function.
9527         (bp_location_condition_evaluator): New function.
9528         (print_breakpoint_location): Print information on where the condition
9529         will be evaluated.
9530         (print_one_breakpoint_location): Likewise.
9531         (init_bp_location): Call mark_breakpoint_location_modified (...) for
9532         breakpoint location.
9533         (force_breakpoint_reinsertion): New functions.
9534         (update_global_location_list): Handle target-side breakpoint
9535         conditions.
9536         Reinsert locations that are already inserted if conditions have
9537         changed.
9538         (bp_location_dtor): Free agent expression bytecode.
9539         (disable_breakpoint): Call mark_breakpoint_modified (...).
9540         Call update_global_location_list (...) with parameter 1 for breakpoints.
9541         (disable_command): Call mark_breakpoint_location_modified (...).
9542         Call update_global_location_list (...) with parameter 1 for breakpoints.
9543         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
9544         (enable_command): mark_breakpoint_location_modified (...).
9545         (_initialize_breakpoint): Update documentation and add
9546         condition-evaluation breakpoint subcommand.
9547
9548         * breakpoint.h: Include ax.h.
9549         (condition_list): New data structure.
9550         (condition_status): New enum.
9551         (bp_target_info) <cond_list>: New field.
9552         (bp_location) <condition_changed, cond_bytecode>: New fields.
9553         (is_breakpoint): New prototype.
9554
9555 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9556
9557         * remote.c (remote_state) <cond_breakpoints>: New field.
9558         (PACKET_ConditionalBreakpoints): New enum.
9559         (remote_cond_breakpoint_feature): New function.
9560         (remote_protocol_features): Add new ConditionalBreakpoints entry.
9561         (remote_supports_cond_breakpoints): New function.
9562         (_initialize_remote): Add new packet configuration for
9563         target-side conditional breakpoints.
9564
9565 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9566
9567         * NEWS: Mention target-side conditional breakpoint support,
9568         new condition-evaluation breakpoint subcommand and remote
9569         packet extensions.
9570
9571 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
9572
9573         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
9574         number.
9575
9576 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
9577
9578         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
9579         (after_prologue): Remove.
9580
9581 2012-02-23  Tom Tromey  <tromey@redhat.com>
9582
9583         * jv-valprint.c (java_val_print): Remove dead code.
9584
9585 2012-02-23  Tristan Gingold  <gingold@adacore.com>
9586
9587         * ada-tasks.c (struct ada_tasks_inferior_data): Add
9588         known_tasks_element and known_tasks_length fields.
9589         (read_known_tasks_array): Change argument type.  Use pointer type
9590         and number of elements from DATA.  Adjust.
9591         (read_known_tasks_list): Likewise.
9592         (get_known_tasks_addr): Remove.
9593         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
9594         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
9595         type and array length.  Merge former get_known_tasks_addr code.
9596
9597 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
9598
9599         PR backtrace/13716
9600         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
9601         it after set_momentary_breakpoint.
9602
9603 2012-02-22  Sterling Augustine  <saugustine@google.com>
9604
9605         PR 13689:
9606         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
9607
9608 2012-02-22  Gary Benson  <gbenson@redhat.com>
9609
9610         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
9611         (find_slot_in_mapped_hash): Likewise.
9612
9613 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
9614
9615         PR build/13638
9616         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
9617         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
9618         * configure: Regenerate.
9619
9620 2012-02-21  Tristan Gingold  <gingold@adacore.com>
9621             Pedro Alves  <palves@redhat.com>
9622
9623         * ia64-tdep.c: Do not include libunwind-ia64.h.
9624         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
9625         Include libunwind-ia64.h instead of libunwind.h.
9626         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
9627         for libunwind.h existence.
9628         * configure, config.in: Regenerate.
9629
9630 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
9631
9632         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
9633         instead of value_rtti_target_type.
9634         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
9635         instead of value_rtti_target_type.
9636         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
9637         value_rtti_target_type.
9638         * valops.c (value_ind): Extract function readjust_indirect_value_type.
9639         (value_rtti_target_type): Rename to ...
9640         (value_rtti_indirect_type): ... here and make it indirect.  Update
9641         function comment.
9642         * value.c (readjust_indirect_value_type): New function.
9643         (coerce_ref): Support for enclosing type setting for references
9644         with readjust_indirect_value_type.
9645         * value.h (readjust_value_type): New declaration.
9646         (value_rtti_target_type): Rename to ...
9647         (value_rtti_indirect_type): ... here.
9648
9649 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
9650
9651         * MAINTAINERS (Write After Approval): Add myself to the list.
9652
9653 2012-02-20  Doug Evans  <dje@google.com>
9654
9655         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
9656         Rename objfile_p_char parameter to objfilep.
9657         (build_objfile_section_table): Result is now void.  All callers
9658         updated.
9659         * objfiles.h (struct objfile): Tweak comments, whitespace.
9660         (build_objfile_section_table): Update.
9661
9662         * elfread.c (elf_symfile_segments): Fix warning text.
9663
9664 2012-02-20  Tom Tromey  <tromey@redhat.com>
9665
9666         PR gdb/13498:
9667         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
9668         particular set of file names once.
9669         (dw2_map_symbol_filenames): Likewise.
9670
9671 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9672
9673         Code cleanup.
9674         * main.c (write_files): Remove the declaration.
9675         (external_editor_command): Move the declaration ...
9676         [GDBTK] (external_editor_command): ... here.  Fix the comment.
9677
9678 2012-02-20  Tom Tromey  <tromey@redhat.com>
9679
9680         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
9681         extraneous block.
9682
9683 2012-02-20  Tristan Gingold  <gingold@adacore.com>
9684
9685         * darwin-nat.h (enum darwin_msg_state): Add comments.
9686
9687 2012-02-20  Tristan Gingold  <gingold@adacore.com>
9688
9689         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
9690         value.
9691
9692 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
9693
9694         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
9695         between function description and implementation.
9696
9697 2012-02-17  Tom Tromey  <tromey@redhat.com>
9698
9699         PR python/12070:
9700         * python/py-event.c (event_object_getset): New global.
9701         (event_object_type): Reference it.
9702         * python/py-type.c (field_object_getset): New global.
9703         (field_object_type): Reference it.
9704         * python/python-internal.h (gdb_py_generic_dict): Declare.
9705         * python/py-utils.c (gdb_py_generic_dict): New function.
9706
9707 2012-02-17  Tristan Gingold  <gingold@adacore.com>
9708
9709         * solib-darwin.c (darwin_current_sos): Check magic and filetype
9710
9711 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
9712
9713         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
9714         TYPE_CALLING_CONVENTION annotation.
9715
9716 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
9717
9718         * MAINTAINERS: Add rx to target ISA section.
9719         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
9720         (ALLDEPFILES): Add rx-tdep.c.
9721
9722 2012-02-16  Tom Tromey  <tromey@redhat.com>
9723
9724         * symfile.c (symbol_file_add_main_1): Use inferior's
9725         symfile_flags.
9726         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
9727         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
9728         inferior.
9729         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
9730         inferior.
9731         (follow_exec): Use inferior's symfile_flags.
9732         * inferior.h (struct inferior) <symfile_flags>: New field.
9733
9734 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
9735
9736         PR gdb/9734:
9737         * remote-sim.c (gdbsim_create_inferior): Call error() when
9738         sim_create_inferior() fails.
9739
9740 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
9741
9742         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
9743
9744 2012-02-16  Tom Tromey  <tromey@redhat.com>
9745
9746         PR c++/13653:
9747         * thread.c (struct current_thread_cleanup) <was_removable>: New
9748         field.
9749         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
9750         (make_cleanup_restore_current_thread): Initialize new field.
9751
9752 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
9753
9754         * MAINTAINERS: Add rl78 to target ISA section.
9755         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
9756         (ALLDEPFILES): Add rl78-tdep.c.
9757         * NEWS: Mention rl78 as a new target.
9758
9759 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
9760
9761         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
9762         data.
9763         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
9764
9765 2012-02-15  Tom Tromey  <tromey@redhat.com>
9766
9767         PR gdb/12659:
9768         * infcmd.c (registers_info): Print just the current register's
9769         name.
9770
9771 2012-02-15  Tom Tromey  <tromey@redhat.com>
9772
9773         * python/py-symbol.c (sympy_value): Use _().
9774
9775 2012-02-15  Pedro Alves  <palves@redhat.com>
9776
9777         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
9778         output to be like native targets'.
9779         (remote_pid_to_str): Special case the null ptid.
9780
9781 2012-02-14  Stan Shebs  <stan@codesourcery.com>
9782
9783         * NEWS: Mention enable count command.
9784         * breakpoint.h (struct breakpoint): New field enable_count.
9785         * breakpoint.c (enable_breakpoint_disp): Add count argument.
9786         (enable_breakpoint): Add arg to call.
9787         (struct disp_data): New struct.
9788         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
9789         (do_map_enable_once_breakpoint): Create a struct and pass it.
9790         (do_map_enable_delete_breakpoint): Ditto.
9791         (do_map_enable_count_breakpoint): New function.
9792         (enable_count_command): New function.
9793         (bpstat_stop_status): Decrement enable_count.
9794         (print_one_breakpoint_location): Report enable count.
9795         (_initialize_breakpoint): Add enable count command.
9796
9797 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
9798
9799         * rl78-tdep.c (reggroups.h): Include.
9800         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
9801         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
9802         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
9803         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
9804         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
9805         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
9806         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
9807         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
9808         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
9809         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
9810         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
9811         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
9812         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
9813         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
9814         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
9815         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
9816         beginning of register list.
9817         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
9818         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
9819         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
9820         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
9821         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
9822         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
9823         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
9824         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
9825         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
9826         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
9827         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
9828         the pseudo registers.  Rearrange other pseudo registers too so
9829         that the bank registers appear at the end.
9830         (rl78_register_type): Account for the fact that the byte sized
9831         bank registers are now pseudo-registers.
9832         (rl78_register_name): Rearrange the register name array.  Make
9833         initial set of raw banked registers inaccessible.
9834         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
9835         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
9836         case for copying bytes back and forth between raw and pseudo
9837         versions of the banked registers.  Update other cases to reflect
9838         the changed names.
9839         (rl78_return_value): Update to account for changed names of
9840         raw registers.
9841         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
9842         rl78_register_sim_regno().
9843
9844 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
9845
9846         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
9847         the name parameter being passed to find_pc_partial_function().
9848
9849 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9850
9851         * MAINTAINERS: Step down from being ia64 target maintainer.
9852
9853 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
9854
9855         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
9856         compilation warning.
9857
9858 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
9859
9860         Fix crash on loaded shlibs without loaded exec_bfd.
9861         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
9862         (set_section_command): Replace exec_bfd by p->bfd.
9863
9864 2012-02-10  Tom Tromey  <tromey@redhat.com>
9865
9866         * linespec.c (decode_line_internal): Skip symtabs_from_filename
9867         when we have a C++ qualified name.
9868
9869 2012-02-10  Pedro Alves  <palves@redhat.com>
9870
9871         * inferior.c (inferior_pid_to_str): New.
9872         (print_inferior, inferior_command): Use it.
9873
9874 2012-02-10  Pedro Alves  <palves@redhat.com>
9875
9876         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
9877         the test CFLAGS.
9878         * configure: Regenerate.
9879
9880 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
9881
9882         * linespec.c (decode_line_internal): Fix comment correctness.
9883
9884 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
9885
9886         PR gdb/12953
9887         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
9888         * amd64bsd-nat.c: Add support for debug registers (adapted from
9889         i386bsd-nat.c).
9890         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
9891         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
9892         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
9893         (amd64bsd_dr_get_control): New functions.
9894         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
9895         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
9896         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
9897         watchpoints initialization.
9898         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
9899
9900 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
9901
9902         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
9903         flds_bnds.fields.
9904         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
9905
9906 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
9907
9908         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
9909
9910 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
9911
9912         * language.h (symbol_name_cmp_ftype): Renames
9913         symbol_name_match_p_ftype.
9914         (struct language_defn)[la_get_symbol_name_cmp]: Renames
9915         la_get_symbol_name_match_p.
9916         * ada-lang.c (ada_get_symbol_name_cmp): Renames
9917         ada_get_symbol_name_match_p.  Update comment.
9918         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
9919         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
9920         Renames symbol_name_match_p.  Update field type.
9921         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
9922         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
9923         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
9924         "la_get_symbol_name_cmp" in comments.
9925         * language.c: Likewise.
9926
9927 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9928
9929         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
9930         %eflags offset.
9931         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
9932         (amd64_sol2_gregset32_reg_offs): Likewise.
9933
9934 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
9935
9936         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
9937         of the returned BFD is allocated by GDB.
9938
9939 2012-02-07  Tom Tromey  <tromey@redhat.com>
9940
9941         PR python/12027:
9942         * python/python-internal.h (frame_object_type): Declare.
9943         * python/py-symbol.c (sympy_needs_frame): New function.
9944         (sympy_value): New function.
9945         (symbol_object_getset): Add "needs_frame".
9946         (symbol_object_methods): Add "value".
9947         * python/py-frame.c (frame_object_type): No longer static.
9948
9949 2012-02-07  Tom Tromey  <tromey@redhat.com>
9950
9951         PR python/13599:
9952         * python/py-symbol.c (sympy_line): New function.
9953         (symbol_object_getset): Add "line".
9954
9955 2012-02-07  Tom Tromey  <tromey@redhat.com>
9956
9957         * charset.c (find_charset_names): Check 'in' against NULL.
9958
9959 2012-02-06  Doug Evans  <dje@google.com>
9960
9961         * gdbtypes.h (struct main_type): Change type of name,tag_name,
9962         and fields.name members from char * to const char *.  All uses updated.
9963         (struct cplus_struct_type): Change type of fn_fieldlists.name member
9964         from char * to const char *.  All uses updated.
9965         (type_name_no_tag): Update.
9966         (lookup_unsigned_typename, lookup_signed_typename): Update.
9967         * gdbtypes.c (type_name_no_tag): Change result type
9968         from char * to const char *.  All callers updated.
9969         (lookup_unsigned_typename, lookup_signed_typename): Change type of
9970         name parameter from char * to const char *.
9971         * symtab.h (struct cplus_specific): Change type of demangled_name
9972         member from char * to const char *.  All uses updated.
9973         (struct general_symbol_info): Change type of name and
9974         mangled_lang.demangled_name members from char * to const char *.
9975         All uses updated.
9976         (symbol_get_demangled_name, symbol_natural_name): Update.
9977         (symbol_demangled_name, symbol_search_name): Update.
9978         * symtab.c (symbol_get_demangled_name): Change result type
9979         from char * to const char *.  All callers updated.
9980         (symbol_natural_name, symbol_demangled_name): Ditto.
9981         (symbol_search_name): Ditto.
9982         (completion_list_add_name): Change type of symname,sym_text,
9983         text,word parameters from char * to const char *.
9984         (completion_list_objc_symbol): Change type of sym_text,
9985         text,word parameters from char * to const char *.
9986         * ada-lang.c (find_struct_field): Change type of name parameter
9987         from char * to const char *.
9988         (encoded_ordered_before): Similarly for N0,N1 parameters.
9989         (old_renaming_is_invisible): Similarly for function_name parameter.
9990         (ada_type_name): Change result type from char * to const char *.
9991         All callers updated.
9992         * ada-lang.h (ada_type_name): Update.
9993         * buildsym.c (hashname): Change type of name parameter
9994         from char * to const char *.
9995         * buildsym.h (hashname): Update.
9996         * dbxread.c (end_psymtab): Change type of include_list parameter
9997         from char ** to const char **.
9998         * dwarf2read.c (determine_prefix): Change result type
9999         from char * to const char *.  All callers updated.
10000         * f-lang.c (find_common_for_function): Change type of name, funcname
10001         parameters from char * to const char *.
10002         * f-lang.c (find_common_for_function): Update.
10003         * f-valprint.c (list_all_visible_commons): Change type of funcname
10004         parameters from char * to const char *.
10005         * gdbarch.sh (static_transform_name): Change type of name parameter
10006         and result from char * to const char *.
10007         * gdbarch.c: Regenerate.
10008         * gdbarch.h: Regenerate.
10009         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
10010         of name parameter from char * to const char *.
10011         * jv-lang.c (java_primitive_type_from_name): Ditto.
10012         (java_demangled_signature_length): Similarly for signature parameter.
10013         (java_demangled_signature_copy): Ditto.
10014         (java_demangle_type_signature): Ditto.
10015         * jv-lang.h (java_primitive_type_from_name): Update.
10016         (java_demangle_type_signature): Update.
10017         * objc-lang.c (specialcmp): Change type of a,b parameters
10018         from char * to const char *.
10019         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
10020         from char * to const char *.  All callers updated.
10021         * p-lang.h (is_pascal_string_type): Update.
10022         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
10023         of name parameter from char * to const char *.
10024         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
10025         * utils.c (fprintf_symbol_filtered): Ditto.
10026         * defs.h (fprintf_symbol_filtered): Update.
10027         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
10028         * stabsread.h (end_psymtab): Update.
10029         * stack.c (find_frame_funname): Change type of funname parameter
10030         from char ** to const char **.
10031         * stack.h (find_frame_funname): Update.
10032         * typeprint.c (type_print): Change type of varstring parameter
10033         from char * to const char *.
10034         * value.h (type_print): Update.
10035         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
10036         from char * to const char *.  All callers updated.
10037         (xcoff_end_psymtab): Change type of include_list parameter
10038         from char ** to const char **.  All callers updated.
10039         (swap_sym): Similarly for name parameter.  All callers updated.
10040         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
10041         Use xstrdup.
10042         (process_coff_symbol): Use xstrdup.
10043         * stabsread.c (stabs_method_name_from_physname): Renamed from
10044         update_method_name_from_physname.  Change result type from void
10045         to char *.  All callers updated.
10046         (read_member_functions): In has_destructor case, store name in objfile
10047         obstack instead of malloc space.  In !has_stub case, fix mem leak.
10048
10049 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
10050
10051         * configure: Rebuild.
10052         * configure.ac: Put -L../bfd and -L../libiberty at the front of
10053         LDFLAGS.
10054
10055 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
10056
10057         * configure.tgt (rl78-*-elf): New target.
10058         * rl78-tdep.c: New file.
10059
10060 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
10061
10062         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
10063         and continue the loop.  Add QUIT statement.
10064
10065 2012-02-03  Tom Tromey  <tromey@redhat.com>
10066
10067         PR gdb/13596:
10068         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
10069         bfd_lookup_symbol_from_symtab.
10070         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
10071         gdb_bfd_lookup_symbol_from_symtab.
10072
10073 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
10074
10075         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
10076         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
10077         symbol.  Add assertion that sym2 is never NULL.
10078
10079 2012-02-02  Doug Evans  <dje@google.com>
10080
10081         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
10082         "name" parameter to const char ** from char **.  All callers updated.
10083         (find_pc_partial_function): Ditto.
10084         (cache_pc_function_name): Change type to const char * from char *.
10085         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
10086         (find_pc_partial_function): Update.
10087         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
10088         type of "name" parameter to const char * from char *.
10089         All uses updated.
10090         * arch-utils.c (generic_in_solib_return_trampoline): Change
10091         type of "name" parameter to const char * from char *.
10092         * arch-utils.h (generic_in_solib_return_trampoline): Update.
10093         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
10094         type of "name" parameter to const char * from char *.
10095         * gdbarch.sh (in_solib_return_trampoline): Ditto.
10096         * gdbarch.c: Regenerate.
10097         * gdbarch.h: Regenerate.
10098         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
10099         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
10100         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
10101         type of "name" parameter to const char * from char *.
10102         * skip.c (skip_function_pc): Ditto.
10103         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
10104         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
10105         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
10106         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
10107         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
10108         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
10109         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
10110         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
10111         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
10112
10113 2012-02-02  Pedro Alves  <palves@redhat.com>
10114
10115         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
10116         the current inferior has no execution.  Make sure the current
10117         remote process matches gdb's current inferior.
10118
10119 2012-02-02  Tom Tromey  <tromey@redhat.com>
10120
10121         PR gdb/13405:
10122         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
10123         read-only memory.
10124
10125 2012-02-02  Tom Tromey  <tromey@redhat.com>
10126
10127         PR gdb/9307:
10128         * symtab.c (lookup_language_this): Set block_found.
10129
10130 2012-02-01  Tom Tromey  <tromey@redhat.com>
10131
10132         PR gdb/13431:
10133         * jit.c (struct jit_inferior_data): Rewrite.
10134         (struct jit_objfile_data): New.
10135         (get_jit_objfile_data): New function.
10136         (add_objfile_entry): Update.
10137         (jit_read_descriptor): Return int.  Replace descriptor_addr
10138         argument with inf_data.  Update.  Don't call error.
10139         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
10140         descriptor here.
10141         (jit_inferior_init): Don't look up descriptor.  Don't call error.
10142         (jit_reset_inferior_data_and_breakpoints)
10143         (jit_inferior_created_observer): Remove.
10144         (jit_inferior_exit_hook): Update.
10145         (jit_executable_changed_observer): Remove.
10146         (jit_event_handler): Update.
10147         (free_objfile_data): Reset inferior data if needed.
10148         (_initialize_jit): Update.
10149
10150 2012-02-01  Tom Tromey  <tromey@redhat.com>
10151
10152         * jit.c (bfd_open_from_target_memory): Move higher in file.
10153
10154 2012-02-01  Tristan Gingold  <gingold@adacore.com>
10155
10156         * libunwind-frame.c (libunwind_load): Display message if dlopen
10157         failed.
10158
10159 2012-02-01  Gary Benson  <gbenson@redhat.com>
10160
10161         * symtab.h (symbol_found_callback_ftype): New typedef.
10162         (iterate_over_symbols): Use the above.
10163         * symtab.c (iterate_over_symbols): Likewise.
10164         * language.h (language_defn->la_iterate_over_symbols): Likewise.
10165         * ada-lang.c (ada_iterate_over_symbols): Likewise.
10166         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
10167         (iterate_name_matcher): Document return values.
10168         (collect_one_symbol): Likewise.
10169         (collect_function_symbols): Likewise.
10170         (collect_symbols): Likewise.
10171
10172 2012-02-01  Tom Tromey  <tromey@redhat.com>
10173
10174         * ada-lang.c (resolve_subexp): Update.
10175         (ada_lookup_symbol_list): Add 'full_search' argument.
10176         (ada_iterate_over_symbols): Pass 0 as full_search argument to
10177         ada_lookup_symbol_list.
10178         (ada_lookup_encoded_symbol): Update.
10179         (get_var_value): Update.
10180         * ada-exp.y (block_lookup): Update.
10181         (write_var_or_type): Update.
10182         (write_name_assoc): Update.
10183         * ada-lang.h (ada_lookup_symbol_list): Update.
10184
10185 2012-01-31  Tom Tromey  <tromey@redhat.com>
10186
10187         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
10188         comment.
10189
10190 2012-01-31  Doug Evans  <dje@google.com>
10191
10192         * symtab.h: Remove outdated comment.
10193         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
10194
10195 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
10196
10197         Fix build error in Darwin port.
10198         * i386-darwin-nat.c: Include i386-nat.h.
10199
10200 2012-01-30  Tom Tromey  <tromey@redhat.com>
10201
10202         PR breakpoints/13568:
10203         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
10204         argument.  Check for recursive includes.
10205         (dwarf_decode_macros): Create an include hash.
10206
10207 2012-01-30  Michael Eager  <eager@eagercon.com>
10208
10209         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
10210         * ppc-linux-tdep.c: Include glibc-tdep.h.
10211         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
10212         (powerpc_linux_in_plt_stub): New function.
10213         (powerpc_linux_in_dynsym_resolve_code): New function.
10214         (ppc_skip_trampoline_code): New function.
10215         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
10216         Use glibc_skip_solib_resolver.
10217
10218 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
10219
10220         Code cleanup: Make 1440 bytes of data segment read-only.
10221         * arch-utils.c (endian_enum): Make it const char *const [].
10222         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
10223         Likewise.
10224         * breakpoint.c (always_inserted_enums): Likewise.
10225         * cli/cli-cmds.c (script_ext_enums): Likewise.
10226         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
10227         enumlist parameter const char *const *.
10228         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
10229         const char *const *.
10230         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
10231         parameter const char *const *.
10232         * cris-tdep.c (cris_modes): Make it const char *const [].
10233         * filesystem.c (target_file_system_kinds): Likewise.
10234         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
10235         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
10236         (can_use_displaced_stepping_enum, scheduler_enums)
10237         (exec_direction_names): Likewise.
10238         * language.c (_initialize_language): Make the type_or_range_names and
10239         case_sensitive_names variables const char *const [].
10240         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
10241         * python/python.c (python_excp_enums): Likewise.
10242         * remote.c (interrupt_sequence_modes): Likewise.
10243         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
10244         * serial.c (logbase_enums): Likewise.
10245         * sh-tdep.c (sh_cc_enum): Likewise.
10246         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
10247         Likewise.
10248         * symtab.c (multiple_symbols_modes): Likewise.
10249         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
10250         Likewise.
10251         * utils.c (internal_problem_modes): Likewise.
10252
10253 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
10254
10255         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
10256         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
10257         result.
10258
10259 2012-01-27  Doug Evans  <dje@google.com>
10260
10261         * configure.ac (with_python): Fix absolute path handling for win32.
10262         * configure: Regenerate.
10263
10264 2012-01-26  Doug Evans  <dje@google.com>
10265
10266         * symtab.c: Whitespace cleanup, no code changes.
10267
10268         * symtab.c (lookup_symbol_in_language): Improve comment.
10269         (lookup_symbol_aux): Fix comment.
10270
10271         * psymtab.c (add_psymbol_to_list): Result is now "void".
10272         * psympriv.h (add_psymbol_to_list): Update.
10273
10274         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
10275
10276 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
10277
10278         Do not open script filenames twice.
10279         * cli/cli-cmds.c (source_script_from_stream): Pass to
10280         source_python_script also STREAM.
10281         * python/py-auto-load.c (source_section_scripts): Pass to
10282         source_python_script_for_objfile also STREAM.
10283         (auto_load_objfile_script): Pass to source_python_script_for_objfile
10284         also INPUT.
10285         * python/python-internal.h (source_python_script_for_objfile): New
10286         parameter file, rename parameter file to filename.
10287         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
10288         instead if !_WIN32.  Update the function comment.
10289         (source_python_script, source_python_script_for_objfile)
10290         (source_python_script): New parameter file, rename parameter file to
10291         filename.  Pass FILENAME to python_run_simple_file.
10292         * python/python.h (source_python_script): New parameter file, rename
10293         parameter file to filename.
10294
10295 2012-01-26  Pedro Alves  <palves@redhat.com>
10296
10297         * corelow.c (core_has_fake_pid): Delete.
10298         (core_close): Delete references to `core_has_fake_pid'.
10299         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
10300         (core_open): Delete references to `core_has_fake_pid'.
10301         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
10302         the removed global.
10303
10304 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
10305
10306         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
10307         Remove language parameter from name_matcher.  Adjust the comment.
10308         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
10309         Remove language parameter.
10310         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
10311         * linespec.c (iterate_name_matcher): Likewise.
10312         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
10313         name_matcher.  Adjust call accordingly.
10314         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
10315         (maintenance_check_symtabs): Adjust type of parameter "fun".
10316         * psymtab.h (maintenance_check_symtabs): Likewise.
10317
10318 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
10319
10320         * language.h (symbol_name_match_p_ftype): New typedef.
10321         (struct language_defn): Replace field la_symbol_name_compare
10322         by la_get_symbol_name_match_p.
10323         * ada-lang.c (ada_get_symbol_name_match_p): New function.
10324         (ada_language_defn): Use it.
10325         * linespec.c (struct symbol_matcher_data): New type.
10326         (iterate_name_matcher): Rewrite.
10327         (iterate_over_all_matching_symtabs): Pass a pointer to
10328         a symbol_matcher_data struct to expand_symtabs_matching
10329         instead of just the lookup name.
10330         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
10331         opencl-lang.c, p-lang.c, language.c: Delete field
10332         la_symbol_name_compare, and replace by NULL for new field
10333         la_get_symbol_name_match_p.
10334         * symfile.h (struct quick_symbol_functions): Update comment.
10335
10336 2012-01-25  Tom Tromey  <tromey@redhat.com>
10337
10338         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
10339         dereferencing.
10340
10341 2012-01-24  Tom Tromey  <tromey@redhat.com>
10342
10343         PR symtab/12406:
10344         * solib.c (update_solib_list): Update the program space's
10345         added_solibs and deleted_solibs fields.
10346         * progspace.h (struct program_space) <added_solibs,
10347         deleted_solibs>: New fields.
10348         (clear_program_space_solib_cache): Declare.
10349         * progspace.c (release_program_space): Call
10350         clear_program_space_solib_cache.
10351         (clear_program_space_solib_cache): New function.
10352         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
10353         bpstat_stop_status.  Use handle_solib_event.
10354         * breakpoint.c: Include gdb_regex.h.
10355         (print_solib_event): New function.
10356         (bpstat_print): Use print_solib_event.
10357         (bpstat_stop_status): Add special case for bp_shlib_event.
10358         (handle_solib_event): New function.
10359         (bpstat_what): Use handle_solib_event.
10360         (struct solib_catchpoint): New.
10361         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
10362         (breakpoint_hit_catch_solib, check_status_catch_solib)
10363         (print_it_catch_solib, print_one_catch_solib)
10364         (print_mention_catch_solib, print_recreate_catch_solib): New
10365         functions.
10366         (catch_solib_breakpoint_ops): New global.
10367         (catch_load_or_unload, catch_load_command_1)
10368         (catch_unload_command_1): New functions.
10369         (internal_bkpt_check_status): Add special case for
10370         bp_shlib_event.
10371         (internal_bkpt_print_it): Use print_solib_event.
10372         (initialize_breakpoint_ops): Initialize
10373         catch_solib_breakpoint_ops.
10374         (_initialize_breakpoint): Register "catch load" and "catch
10375         unload".
10376         * breakpoint.h (handle_solib_event): Declare.
10377         * NEWS: Add entry for "catch load" and "catch unload".
10378
10379 2012-01-24  Tom Tromey  <tromey@redhat.com>
10380
10381         * ada-lang.c: Include gdb_vecs.h.
10382         * charset.c: Include gdb_vecs.h.
10383         * tracepoint.h: Include gdb_vecs.h.
10384         * gdb_vecs.h: New file.
10385
10386 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
10387
10388         * breakpoint.c (breakpoint_hit_catch_fork)
10389         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
10390         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
10391         * infrun.c (inferior_has_forked, inferior_has_vforked)
10392         (inferior_has_execd, inferior_has_called_syscall): Delete.
10393         (handle_syscall_event): Get syscall_number from the execution
10394         control state's wait status.
10395         (wait_for_inferior): Don't clear syscall_number.
10396
10397 2012-01-24  Pedro Alves  <palves@redhat.com>
10398
10399         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
10400         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
10401         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
10402         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
10403         `ws' parameter.
10404         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
10405         false for events other than TARGET_SIGNAL_TRAP.
10406         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
10407         Add `ws' parameter.
10408         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
10409         events other than TARGET_SIGNAL_TRAP.
10410         (tracepoint_breakpoint_hit): Add `ws' parameter.
10411         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
10412         parameter.
10413         (bpstat_stop_status): Same.
10414         (pc_at_non_inline_function): Same.
10415         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
10416         to pass the current event's waitstatus to bpstat_stop_status
10417         and pc_at_non_inline_function.
10418
10419 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10420
10421         Code cleanup.
10422         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
10423         Update the function comment for it.
10424         (source_script_with_search): Call make_cleanup_fclose for STREAM.
10425         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
10426         for STREAM.
10427
10428 2012-01-24  Pedro Alves  <palves@redhat.com>
10429
10430         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
10431         outside `bs->stop' block.
10432         (bpstat_what): Rework bp_shlib_event handling.
10433         (internal_bkpt_check_status): If the breakpoint is a
10434         bp_shlib_event, then set bs->stop and bs->print if
10435         stop_on_solib_events is set.
10436
10437 2012-01-24  Gary Benson  <gbenson@redhat.com>
10438
10439         Delete #if 0'd out code.
10440         * stack.c (print_frame_label_vars): Remove.
10441         (catch_info): Likewise.
10442         (_initialize_stack): Remove "info catch" command.
10443         * NEWS: Mention the above.
10444
10445 2012-01-24  Pedro Alves  <palves@redhat.com>
10446
10447         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
10448         it.
10449         (remote_notice_new_inferior): If the remote end doesn't support
10450         the multiprocess extensions, then the PID is fake.
10451         (add_current_inferior_and_thread): New.
10452         (remote_start_remote): Use it.
10453         (extended_remote_attach_1): Adjust.
10454         (extended_remote_create_inferior_1): Use
10455         add_current_inferior_and_thread.
10456
10457 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10458
10459         Fix watchpoints to be specific for each inferior.
10460         * breakpoint.c (watchpoint_in_thread_scope): Verify also
10461         current_program_space.
10462         * i386-nat.c (i386_inferior_data_cleanup): New.
10463         (i386_inferior_data_get): Replace variable inf_data_local by an
10464         inferior_data call.
10465         (i386_use_watchpoints): Initialize i386_inferior_data.
10466         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
10467         specific iterate_over_lwps.
10468
10469 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10470
10471         Fix watchpoints across inferior fork.
10472         * amd64-linux-nat.c (update_debug_registers_callback): Update the
10473         comment for linux_nat_iterate_watchpoint_lwps.
10474         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10475         linux_nat_iterate_watchpoint_lwps.
10476         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
10477         * i386-linux-nat.c (update_debug_registers_callback): Update the
10478         comment for linux_nat_iterate_watchpoint_lwps.
10479         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10480         linux_nat_iterate_watchpoint_lwps.
10481         (i386_linux_prepare_to_resume): New comment on Linux kernel.
10482         * i386-nat.c: Include inferior.h.
10483         (dr_mirror): Remove.
10484         (i386_inferior_data, struct i386_inferior_data)
10485         (i386_inferior_data_get): New.
10486         (i386_debug_reg_state): Use i386_inferior_data_get.
10487         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
10488         (i386_insert_watchpoint, i386_remove_watchpoint)
10489         (i386_stopped_data_address, i386_insert_hw_breakpoint)
10490         (i386_remove_hw_breakpoint): New variable state, use
10491         i386_debug_reg_state instead of DR_MIRROR.
10492         * linux-nat.c (delete_lwp): New declaration.
10493         (num_lwps): Move here from downwards.
10494         (delete_lwp_cleanup): New.
10495         (linux_child_follow_fork): Create new child_lp, call
10496         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
10497         PTRACE_DETACH.
10498         (num_lwps): Move upwards.
10499         (linux_nat_iterate_watchpoint_lwps): New.
10500         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
10501         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
10502
10503 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
10504
10505         GDB 7.4 released.
10506
10507 2012-01-23  Pedro Alves  <palves@redhat.com>
10508
10509         * top.c (caution): Rename to ...
10510         (confirm): ... this.
10511         (show_caution): Rename to ...
10512         (show_confirm): ... this.
10513         (quit_cover): Adjust.
10514         (init_main): Adjust.
10515         * top.h (caution): Rename to ...
10516         (confirm): ... this.
10517         * utils.c (internal_vproblem, defaulted_query): Adjust.
10518
10519 2012-01-23  Pedro Alves  <palves@redhat.com>
10520
10521         * top.c (caution): Update comment.
10522         (execute_command): Don't consider the current value of `caution'.
10523
10524 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
10525
10526         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
10527
10528 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
10529
10530         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
10531         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
10532         * target.c (target_fileio_pwrite): Remove buffer address from
10533         debug output.
10534         (target_fileio_pread): Likewise.
10535
10536 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10537
10538         * NEWS: Document remote "info proc" and "generate-core-file".
10539
10540 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10541
10542         * gdbarch.sh (find_memory_regions): New callback.
10543         * gdbarch.c, gdbarch.h: Regenerate.
10544
10545         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
10546         callback before falling back to target method.
10547
10548         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
10549         (linux_target_install_ops): No longer install it.
10550
10551         * linux-tdep.c (linux_find_memory_regions): New function.
10552         (linux_init_abi): Install it.
10553
10554 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10555
10556         * gdbarch.sh (make_corefile_notes): New architecture callback.
10557         * gdbarch.c: Regenerate.
10558         * gdbarch.h: Likewise.
10559
10560         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
10561         before target_make_corefile_notes.  If NULL is returned, the
10562         target does not support core file generation.
10563
10564         * linux-nat.c: Include "linux-tdep.h".
10565         (find_signalled_thread, find_stop_signal): Remove.
10566         (linux_nat_do_thread_registers): Likewise.
10567         (struct linux_nat_corefile_thread_data): Likewise.
10568         (linux_nat_corefile_thread_callback): Likewise.
10569         (iterate_over_spus): Likewise.
10570         (struct linux_spu_corefile_data): Likewise.
10571         (linux_spu_corefile_callback): Likewise.
10572         (linux_spu_make_corefile_notes): Likewise.
10573         (linux_nat_collect_thread_registers): New function.
10574         (linux_nat_make_corefile_notes): Replace contents by call to
10575         linux_make_corefile_notes passing linux_nat_collect_thread_registers
10576         as native-only callback.
10577
10578         * linux-tdep.h: Include "bfd.h".
10579         (struct regcache): Add forward declaration.
10580         (linux_collect_thread_registers_ftype): New typedef.
10581         (linux_make_corefile_notes): Add prototype.
10582         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
10583         "regset.h", and "elf-bfd.h".
10584         (find_signalled_thread, find_stop_signal): New functions.
10585         (linux_spu_make_corefile_notes): Likewise.
10586         (linux_collect_thread_registers): Likewise.
10587         (struct linux_corefile_thread_data): New data structure.
10588         (linux_corefile_thread_callback): New funcion.
10589         (linux_make_corefile_notes): Likewise.
10590         (linux_make_corefile_notes_1): Likewise.
10591         (linux_init_abi): Install it.
10592
10593 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10594
10595         * gdbarch.sh (info_proc): New callback.
10596         * gdbarch.c, gdbarch.h: Regenerate.
10597
10598         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
10599         before falling back to the target info_proc callback.
10600
10601         * linux-nat.c: Do not include "cli/cli-utils.h".
10602         (linux_nat_info_proc): Remove.
10603         (linux_target_install_ops): No longer install it.
10604
10605         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
10606         (read_mapping): New function.
10607         (linux_info_proc): Likewise.
10608         (linux_init_abi): Install it.
10609
10610 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10611
10612         * defs.h (enum info_proc_what): Moved here from linux-nat.c
10613         * infcmd.c: (info_proc_cmd_1): New function.
10614         (info_proc_cmd): New function, moved here from equivalent routine
10615         orignally in linux-nat.c.
10616         (info_proc_cmd_mappings): Likewise.
10617         (info_proc_cmd_stat): Likewise.
10618         (info_proc_cmd_status): Likewise.
10619         (info_proc_cmd_cwd): Likewise.
10620         (info_proc_cmd_cmdline): Likewise.
10621         (info_proc_cmd_exe): Likewise.
10622         (info_proc_cmd_all): Likewise.
10623         (_initialize_infcmd): Install "info proc" command and subcommands.
10624
10625         * target.h (struct target_ops): Add to_info_proc.
10626         (target_info_proc): Add prototype.
10627         * target.c (target_info_proc): New function.
10628
10629         * procfs.c (procfs_info_proc): Add prototype.
10630         (info_proc_cmd): Rename into ...
10631         (procfs_info_proc): ... this.  Update argument types as appropriate
10632         for a to_info_proc implementation.  Handle "what" argument.
10633         (procfs_target): Install procfs_info_proc.
10634         (_initialize_procfs): No longer install "info proc" command.
10635
10636         * linux-nat.c: (enum info_proc_what): Remove.
10637         (linux_nat_info_proc_cmd_1): Rename into ...
10638         (linux_nat_info_proc): ... this.  Update argument types as appropriate
10639         for a to_info_proc implementation.
10640         (linux_nat_info_proc_cmd): Remove.
10641         (linux_nat_info_proc_cmd_mappings): Likewise.
10642         (linux_nat_info_proc_cmd_stat): Likewise.
10643         (linux_nat_info_proc_cmd_status): Likewise.
10644         (linux_nat_info_proc_cmd_cwd): Likewise.
10645         (linux_nat_info_proc_cmd_cmdline): Likewise.
10646         (linux_nat_info_proc_cmd_exe): Likewise.
10647         (linux_nat_info_proc_cmd_all): Likewise.
10648         (linux_target_install_ops): Install linux_nat_info_proc.
10649         (_initialize_linux_nat): No longer install "info proc" command
10650         and subcommands.
10651
10652 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
10653
10654         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
10655         * config.in, configure: Regenerate.
10656
10657         * target.h (struct target_ops): Add to_fileio_readlink.
10658         (target_fileio_readlink): Add prototype.
10659         * target.c (target_fileio_readlink): New function.
10660
10661         * inf-child.c: Conditionally include <sys/param.h>.
10662         (inf_child_fileio_readlink): New function.
10663         (inf_child_target): Install it.
10664
10665         * remote.c (PACKET_vFile_readlink): New enum value.
10666         (remote_hostio_readlink): New function.
10667         (init_remote_ops): Install it.
10668         (_initialize_remote): Handle vFile:readlink packet type.
10669
10670 2012-01-20  Pedro Alves  <palves@redhat.com>
10671             Ulrich Weigand  <ulrich.weigand@linaro.org>
10672
10673         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
10674         * config.in, configure: Regenerate.
10675
10676         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
10677         to_fileio_pread, to_fileio_close, to_fileio_unlink.
10678         (target_fileio_open): Add prototype.
10679         (target_fileio_pwrite): Likewise.
10680         (target_fileio_pread): Likewise.
10681         (target_fileio_close): Likewise.
10682         (target_fileio_unlink): Likewise.
10683         (target_fileio_read_alloc): Likewise.
10684         (target_fileio_read_stralloc): Likewise.
10685
10686         * target.c: Include "gdb/fileio.h".
10687         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
10688         (default_fileio_target): New function.
10689         (target_fileio_open): Likewise.
10690         (target_fileio_pwrite): Likewise.
10691         (target_fileio_pread): Likewise.
10692         (target_fileio_close): Likewise.
10693         (target_fileio_unlink): Likewise.
10694         (target_fileio_close_cleanup): Likewise.
10695         (target_fileio_read_alloc_1): Likewise.
10696         (target_fileio_read_alloc): Likewise.
10697         (target_fileio_read_stralloc): Likewise.
10698
10699         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
10700         <fcntl.h>, and <unistd.h>.
10701         (inf_child_fileio_open_flags_to_host): New function.
10702         (inf_child_errno_to_fileio_error): Likewise.
10703         (inf_child_fileio_open): Likewise.
10704         (inf_child_fileio_pwrite): Likewise.
10705         (inf_child_fileio_pread): Likewise.
10706         (inf_child_fileio_close): Likewise.
10707         (inf_child_fileio_unlink): Likewise.
10708         (inf_child_target): Install to_fileio routines.
10709
10710         * remote.c (init_remote_ops): Install to_fileio routines.
10711
10712 2012-01-20  Pedro Alves  <palves@redhat.com>
10713             Ulrich Weigand  <ulrich.weigand@linaro.org>
10714
10715         * remote.c (remote_multi_process_p): Only check for multi-process
10716         protocol feature, do not check for extended protocol.
10717         (remote_supports_multi_process): Check for extended protocol here.
10718         (set_general_process): Likewise.
10719         (extended_remote_kill): Likewise.
10720         (remote_pid_to_str): Likewise.
10721         (remote_query_supported): Always query multiprocess mode.
10722
10723 2012-01-20  Pedro Alves  <palves@redhat.com>
10724             Ulrich Weigand  <ulrich.weigand@linaro.org>
10725
10726         * inferior.h (struct inferior): Add fake_pid_p.
10727         * inferior.c (exit_inferior_1): Clear fake_pid_p.
10728         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
10729         magic_null_ptid since the remote side doesn't provide a real PID.
10730
10731 2012-01-19  Tom Tromey  <tromey@redhat.com>
10732
10733         * NEWS: Combine the two Python sections.
10734
10735 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
10736
10737         * target.h (target_close): Update comment on the target's unpush state.
10738
10739 2012-01-19  Pedro Alves  <palves@redhat.com>
10740
10741         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
10742         linux_nat_async directly instead of going through the target
10743         vector.
10744         * target.c (unpush_target): Close target after unpushing it, not
10745         before.
10746
10747 2012-01-19  Gary Benson  <gbenson@redhat.com>
10748
10749         * mdebugread.c (sort_blocks): Replace integer constants with ones
10750         derived from FIRST_LOCAL_BLOCK.
10751
10752 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
10753             Jan Kratochvil  <jan.kratochvil@redhat.com>
10754
10755         PR gdb/9538
10756         * symfile.c (find_separate_debug_file): New function.
10757         (terminate_after_last_dir_separator): Likewise.
10758         (find_separate_debug_file_by_debuglink): Also try realpath.
10759         * configure.ac (AC_CHECK_FUNCS): Add lstat.
10760         * configure: Regenerate.
10761         * config.in: Regenerate.
10762
10763 2012-01-18  Doug Evans  <dje@google.com>
10764
10765         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
10766         (main.o): Remove rule.
10767         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
10768         (--with-sysroot): Rewrite.
10769         * configure: Regenerate.
10770         * config.in: Regenerate.
10771
10772 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
10773
10774         * parse.c (initialize_expout): New function.
10775         (reallocate_expout): Likewise.
10776         (parse_exp_in_context): Use `initialize_expout' and
10777         `reallocate_expout' when appropriate.
10778
10779 2012-01-18  Pedro Alves  <palves@redhat.com>
10780
10781         * record.c (struct record_breakpoint, record_breakpoint_p)
10782         (record_breakpoints): New.
10783         (record_insert_breakpoint, record_remove_breakpoint): Manage
10784         record breakpoints list.  Only remove breakpoints from the
10785         inferior if they had been inserted there in the first place.
10786
10787 2012-01-17  Doug Evans  <dje@google.com>
10788
10789         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
10790         if we know we don't have a file name to look for.
10791
10792 2012-01-17  Pedro Alves  <palves@redhat.com>
10793
10794         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
10795         the frame's stop reason is UNWIND_UNAVAILABLE.
10796
10797 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10798
10799         Fix compilation error.
10800         * m2-exp.y (yyerror): Use ANSI C prototype.
10801
10802 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
10803
10804         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
10805         (growbuf_by_size): Likewise.
10806         (yyerror): Likewise.
10807         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
10808         (modblock): Remove variable (was #if 0'ed).
10809         (parse_number): Convert prototype from K&R to ANSI C.
10810         (yyerror): Likewise.
10811         * objc-exp.y (parse_number): Likewise.
10812         (yyerror): Likewise.
10813         (yylex): Remove #if 0'ed code.
10814         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
10815         (yyerror): Likewise.
10816
10817 2012-01-16  Tom Tromey  <tromey@redhat.com>
10818
10819         * NEWS: Add item.
10820         * symtab.h (compare_filenames_for_search): Declare.
10821         * symtab.c (compare_filenames_for_search): New function.
10822         (iterate_over_some_symtabs): Use it.
10823         * symfile.h (struct quick_symbol_functions)
10824         <map_symtabs_matching_filename>: Change spec.
10825         * psymtab.c (partial_map_symtabs_matching_filename): Use
10826         compare_filenames_for_search.  Update for new spec.
10827         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
10828         compare_filenames_for_search.  Update for new spec.
10829         * breakpoint.c (clear_command): Use compare_filenames_for_search.
10830
10831 2012-01-16  Tom Tromey  <tromey@redhat.com>
10832
10833         PR python/13281:
10834         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
10835         (struct main_type) <flag_flag_enum>: New field.
10836         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
10837         * NEWS: Add entries.
10838         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
10839         enums.
10840         * python/lib/gdb/printing.py (_EnumInstance): New class.
10841         (FlagEnumerationPrinter): Likewise.
10842
10843 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
10844
10845         * breakpoint.c (create_sals_from_address_default): New function.
10846         (create_breakpoints_sal_default): Likewise.
10847         (decode_linespec_default): Likewise.
10848         (is_marker_spec): Removed.
10849         (strace_marker_p): New function.
10850         (init_breakpoint_sal): Using `strace_marker_p' instead of
10851         `is_marker_spec'.
10852         (create_breakpoint): Call method `create_sals_from_address' from
10853         breakpoint_ops, replacing code that created SALs conditionally
10854         on the type of the breakpoint.  Call method `create_breakpoints_sal',
10855         replacing code that created breakpoints conditionally on the type
10856         wanted.
10857         (base_breakpoint_create_sals_from_address): New function.
10858         (base_breakpoint_create_breakpoints_sal): Likewise.
10859         (base_breakpoint_decode_linespec): Likewise.
10860         (base_breakpoint_ops): Add methods
10861         `base_breakpoint_create_sals_from_address',
10862         `base_breakpoint_create_breakpoints_sal' and
10863         `base_breakpoint_decode_linespec'.
10864         (bkpt_create_sals_from_address): New function.
10865         (bkpt_create_breakpoints_sal): Likewise.
10866         (bkpt_decode_linespec): Likewise.
10867         (tracepoint_create_sals_from_address): Likewise.
10868         (tracepoint_create_breakpoints_sal): Likewise.
10869         (tracepoint_decode_linespec): Likewise.
10870         (strace_marker_create_sals_from_address): Likewise.
10871         (strace_marker_create_breakpoints_sal): Likewise.
10872         (strace_marker_decode_linespec): Likewise.
10873         (strace_marker_breakpoint_ops): New variable.
10874         (addr_string_to_sals): Remove `marker_spec'.  Call method
10875         `decode_linespec' from breakpoint_ops, replacing code that decoded
10876         an address string into a SAL.  Use `strace_marker_p' instead of
10877         `marker_spec'.
10878         (strace_command): Decide whether we are dealing with a static
10879         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
10880         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
10881         * breakpoint.h (linespec_result, linespec_sals): New forward
10882         declarations.
10883         (breakpoint_ops) <create_sals_from_address>,
10884         <create_breakpoints_sal>, <decode_linespec>: New methods.
10885
10886 2012-01-14  Doug Evans  <dje@google.com>
10887
10888         * NEWS: Update text for "maint set python print-stack".
10889         It is deprecated in gdb 7.4 and deleted in 7.5.
10890
10891 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
10892
10893         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
10894         including curses.h.
10895
10896 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
10897
10898         * configure: Regenerate.
10899         * config.in: Regenerate.
10900
10901 2012-01-12  Keith Seitz  <keiths@redhat.com>
10902
10903         PR mi/10586
10904         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
10905         (ANONYMOUS_UNION_NAME): Define.
10906         (is_path_expr_parent): New function.
10907         (get_path_expr_parent): New function.
10908         (is_anonymous_child): New function.
10909         (create_child_with_value): If the child is anonymous and without
10910         a name, assign an object name to it.
10911         (c_describe_child): Use get_path_expr_parent to determine
10912         the parent expression.
10913         If there field represents an anonymous struct or union and
10914         has no name, set an appropriate display name and expression.
10915         (cplus_describe_child): Likewise.
10916
10917 2012-01-12  Pedro Alves  <palves@redhat.com>
10918
10919         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
10920         available when %ebp is found to be zero (outermost).
10921
10922 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
10923
10924         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
10925         an internal gdb_static_assert.
10926         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
10927
10928 2012-01-11  Tom Tromey  <tromey@redhat.com>
10929
10930         PR gdb/9598:
10931         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
10932         catch" and "catch throw".
10933
10934 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
10935
10936         * blockframe.c (block_innermost_frame): Start search from selected
10937         frame, if present, or otherwise the current frame.
10938
10939         * c-exp.y (variable): Update innermost_block for
10940         'block COLONCOLON NAME' clause.
10941         * m2-exp.y (variable): Ditto.
10942         * objc-exp.y (variable): Ditto.
10943
10944 2012-01-10  Tom Tromey  <tromey@redhat.com>
10945
10946         PR python/13199:
10947         * python/python.c (finish_python_initialization): Set sys.argv.
10948
10949 2012-01-10  Doug Evans  <dje@google.com>
10950
10951         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
10952         "want_line_info".  All callers updated.
10953         (dwarf_decode_lines_1): New function.
10954         (handle_DW_AT_stmt_list): Add function comment.
10955         New arg "want_line_info".  All callers updated.
10956         (read_file_scope,read_type_unit_scope): Move comment from
10957         handle_DW_AT_stmt_list to here.
10958
10959 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10960
10961         Fix regression after libiberty/ update for GCC PR 6057 and others.
10962         * c-exp.y (operator) <OPERATOR DELETE>
10963         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10964         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
10965         (make_builtin_type, make_name): New variable i, add gdb_assert.
10966         (operator) <OPERATOR NEW>: Update ARGS to 3.
10967         (operator) <OPERATOR DELETE>: Add trailing space.
10968         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
10969         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
10970         * cp-support.c (cp_canonicalize_string): Check NULL from
10971         cp_comp_to_string, call warning and return.
10972
10973 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10974
10975         Fix duplicate .o files after omitting libbfd.a.
10976         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
10977         (SFILES): Add corelow.c.
10978         (COMMON_OBS): Add corelow.o.
10979         (ALLDEPFILES): Remove corelow.c.
10980         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
10981         * config/alpha/alpha-osf3.mh: Likewise.
10982         * config/alpha/fbsd.mh: Likewise.
10983         * config/arm/nbsdaout.mh: Likewise.
10984         * config/arm/nbsdelf.mh: Likewise.
10985         * config/i386/i386gnu.mh: Likewise.
10986         * config/ia64/hpux.mh: Likewise.
10987         * config/ia64/linux.mh: Likewise.
10988         * config/m32r/linux.mh: Likewise.
10989         * config/m68k/linux.mh: Likewise.
10990         * config/mips/irix5.mh: Likewise.
10991         * config/mips/irix6.mh: Likewise.
10992         * config/pa/hpux.mh: Likewise.
10993         * config/pa/linux.mh: Likewise.
10994         * config/powerpc/aix.mh: Likewise.
10995         * config/sparc/linux.mh: Likewise.
10996         * config/sparc/linux64.mh: Likewise.
10997         * config/sparc/sol2.mh: Likewise.
10998         * config/vax/vax.mh: Likewise.
10999         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
11000         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
11001         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
11002         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
11003         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
11004         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
11005         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
11006         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
11007         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
11008         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
11009         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
11010         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
11011         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
11012         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
11013         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
11014         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
11015         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
11016         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
11017         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
11018         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
11019         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
11020         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
11021         corelow.o from gdb_target_obs.
11022         * corefile.c (core_target): Update the comment on NULL value.
11023         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
11024         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
11025         MATCHES.  Drop YUMMY set on NULL.
11026         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
11027         reclaim CORE_DATA if it is already NULL.
11028
11029 2012-01-09  Doug Evans  <dje@google.com>
11030
11031         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
11032         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
11033
11034 2012-01-09  Keith Seitz  <keiths@redhat.com>
11035
11036         * breakpoint.c (wrapper.h): Don't include.
11037
11038 2012-01-09  Keith Seitz  <keiths@redhat.com>
11039
11040         * Makefile.in (SFILES): Remove wrapper.c.
11041         (HFILES_NO_SRCDIR): Remove wrapper.h.
11042         (COMMON_OBS): Remove wrapper.o.
11043         * cli/cli-interp.c: Don't inlude wrapper.h.
11044         * corelow.c: Likewise.
11045         (core_open): Replace gdb_target_find_new_threads with
11046         TRY_CATCH around target_find_new_threads.
11047         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
11048         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
11049         * varobj.c (varobj_create): Likewise for parse_exp_1 and
11050         evaluate_expression.
11051         (varobj_set_value): Likewise for evaluate_expression and
11052         value_assign.
11053         (install_new_variable): Likewise for value_fetch_lazy.
11054         (adjust_value_for_child_access): Likewise for value_ind.
11055         (c_describe_child): Likewise for value_subscript and
11056         value_ind.
11057         (c_value_of_root): Likewise for evaluate_expression.
11058         * wrapper.c: Remove.
11059         * wrapper.h: Remove.
11060
11061 2012-01-09  Doug Evans  <dje@google.com>
11062
11063         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
11064         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
11065         "abfd" args with "section".  All callers updated.
11066         Error checking code moved ...
11067         (error_check_comp_unit_head): ... here.  New function.
11068         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
11069         Delete arg "abfd".  New arg "type_offset".  All callers updated.
11070         (create_debug_types_hash_table): Simplify by using
11071         read_and_check_type_unit_head.
11072
11073         * parser-defs.h (namecopy): Delete.
11074         * parse.c (namecopy, namecopy_size): Move into copy_name.
11075
11076 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11077
11078         Partially fix duplicate .o files after omitting libbfd.a.
11079         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
11080         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11081         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
11082         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11083         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
11084         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
11085         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11086
11087 2012-01-09  Pedro Alves  <palves@redhat.com>
11088
11089         * MAINTAINERS: Update my email address.
11090
11091 2012-01-08  Doug Evans  <dje@google.com>
11092
11093         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
11094         n_type_units.  Rename type_comp_units to all_type_units.
11095         All uses updated.
11096         (add_signatured_type_cu_to_table): Renamed from
11097         add_signatured_type_cu_to_list.  All callers updated.
11098
11099         * gdbtypes.h (struct cplus_struct_type): Delete member
11100         nfn_fields_total.  All uses removed.
11101
11102 2012-01-06  Doug Evans  <dje@google.com>
11103
11104         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
11105         to top of file.
11106         (dwarf2_find_comp_unit): Delete.
11107         (process_psymtab_comp_unit): Make result "void".
11108         Delete args buffer, info_ptr, buffer_size, and replace with
11109         "section".  All callers updated.
11110         (dwarf2_build_psymtabs_hard): Simplify.
11111
11112 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
11113             Thiago Jung Bauermann  <bauerman@br.ibm.com>
11114
11115         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
11116         before `struct gdb_exception'.
11117         * breakpoint.c (update_global_location_list_nothrow)
11118         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
11119         * cp-abi.c (value_rtti_type): Likewise.
11120         * cp-support.c (cp_validate_operator): Likewise.
11121         * infrun.c (insert_exception_resume_breakpoint)
11122         (check_exception_resume, keep_going): Likewise.
11123         * mi-interp.c (mi_breakpoint_created)
11124         (mi_breakpoint_modified): Likewise.
11125         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
11126         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
11127         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
11128
11129 2012-01-05  Doug Evans  <dje@google.com>
11130
11131         * dwarf2read.c (statement_prologue): Delete, unused.
11132
11133         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
11134         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
11135
11136         * dwarf2read.c (comp_unit_header): Delete, unused.
11137
11138 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
11139
11140         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
11141         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
11142
11143 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
11144
11145         * infrun.c (normal_stop): Don't skip calling the normal_stop
11146         observers if the thread was doing a multi-step, but stopped for
11147         some reason other than stepping.
11148
11149 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
11150
11151         * cli/cli-decode.h: Add comments.
11152         (CMD_LIST_AMBIGUOUS): Moved to command.h
11153         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
11154         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
11155         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
11156         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
11157         (add_com, add_com_alias, add_info, add_info_alias)
11158         (complete_on_cmdlist, complete_on_enum, help_list): Remove
11159         declarations.
11160         * command.h: Add and adjust comments.
11161         (CMD_LIST_AMBIGUOUS): Moved here.
11162         (help_cmd, help_cmd_list): Delete declarations.
11163
11164 2012-01-04  Doug Evans  <dje@google.com>
11165
11166         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
11167         All callers updated.
11168         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
11169         Replace all arguments with "per_cu".  All callers updated.
11170
11171         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
11172
11173         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
11174         New arg "per_cu".  All callers updated.
11175
11176         Delete #if 0'd out code.
11177         * language.c (binop_result_type): Delete.
11178         (simple_type, ordered_type, same_type, integral_type): Delete.
11179         (numeric_type, character_type, string_type, boolean_type): Delete.
11180         (float_type, structured_type): Delete.
11181         * language.h: Update.
11182
11183 2012-01-04  Tom Tromey  <tromey@redhat.com>
11184
11185         * python/py-value.c (valpy_binop): Initialize 'res_val'.
11186
11187 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11188
11189         * corefile.c (close_exec_file): Delete.
11190         (reopen_exec_file): Remove commented out code that seems related
11191         to close_exec_file, which is being deleted here.
11192         * inferior.h (close_exec_file): Delete.
11193         * fork-child.c (fork_inferior): Remove call to fork_inferior.
11194
11195 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11196
11197         * ada-lang.c: #include "cli/cli-utils.h".
11198         (get_selections): Use skip_spaces.
11199         (ada_get_next_arg): Use skip_spaces and skip_to_space.
11200         (catch_ada_exception_command_split): Use skip_spaces.
11201         (ada_decode_assert_location): Likewise.
11202
11203 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11204
11205         * linespec.c (decode_line_internal): Check for C++ or Java
11206         compound constructs only if the current language is C, C++
11207         or Java.
11208
11209 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11210
11211         Revert:
11212         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11213                     Joel Brobecker  <brobecker@adacore.com>
11214         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
11215         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
11216         3 times.
11217         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
11218         fall through into AT_ENTRY_POINT.
11219         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
11220         DUMMY_ADDR with it.
11221         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
11222         PPC_INSN_SIZE skip to 3 times.
11223
11224 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11225
11226         * linespec.c (add_minsym): Preserve function descriptors.
11227
11228 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
11229
11230         * breakpoint.c (all_locations_are_pending): Consider locations
11231         in program spaces executing during startup pending as well.
11232
11233 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11234
11235         Copyright year update in most files of the GDB Project.
11236
11237 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11238
11239         * copyright.sh: Delete.
11240         * copyright.py: Rewrite.
11241
11242 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11243
11244         * gnulib/extra/update-copyright: New file, imported from gnulib.
11245
11246 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11247
11248         * README (Copyright and License Notices): New section.
11249
11250 2012-01-03  Tom Tromey  <tromey@redhat.com>
11251
11252         PR python/12533:
11253         * python/py-value.c (valpy_dereference, valpy_get_address
11254         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
11255         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
11256         (valpy_absolute, valpy_richcompare): Free intermediate values.
11257
11258 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
11259
11260         * ada-lang.c: Reformat the copyright notice.
11261
11262 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11263
11264         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
11265         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
11266         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
11267         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
11268         Revert this part of:
11269         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11270         Build gdb directly from *.o files not using libgdb.a.
11271         * Makefile.in (COMMON_OBS): Remove solib-target.o.
11272
11273 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
11274
11275         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
11276         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
11277         Reformat the copyright header.
11278
11279 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11280
11281         Revert this part of:
11282         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11283         Remove the gdbtui binary.
11284         * gdb.c (main): Remove args.interpreter_p initialization.
11285         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
11286         * main.h (struct captured_main_args): Remove interpreter_p.
11287
11288 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
11289
11290         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
11291
11292 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
11293
11294         * top.c (print_gdb_version): Update copyright year.
11295
11296 2012-01-02  Yao Qi  <yao@codesourcery.com>
11297
11298         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
11299
11300 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11301             Joel Brobecker  <brobecker@adacore.com>
11302
11303         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
11304         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
11305         3 times.
11306         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
11307         fall through into AT_ENTRY_POINT.
11308         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
11309         DUMMY_ADDR with it.
11310         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
11311         PPC_INSN_SIZE skip to 3 times.
11312
11313 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11314
11315         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
11316         the return value.
11317         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
11318
11319 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11320
11321         Build gdb directly from *.o files not using libgdb.a.
11322         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
11323         (COMMON_OBS): Remove solib-target.o.
11324         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
11325         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
11326         (LIBGDB_OBS, libgdb.a): Move it above.
11327         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
11328         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
11329         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
11330         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
11331         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
11332         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
11333         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
11334         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
11335         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
11336         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
11337         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
11338         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
11339         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
11340         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
11341         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
11342         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
11343         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
11344         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
11345         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
11346         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
11347         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
11348         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
11349         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
11350         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
11351         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
11352         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
11353         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
11354
11355 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
11356
11357         Remove the gdbtui binary.
11358         * .gitignore (/gdbtui): Remove.
11359         * Makefile.in (TUI): Remove.
11360         (SUBDIR_TUI_OBS): Remove tui-main.o.
11361         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
11362         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
11363         (tui-main.o): Remove.
11364         (all_object_files): Remove tui-main.o.
11365         * NEWS: New note for the gdbtui removal.
11366         * configure: Rebuilt.
11367         * configure.ac: No longer add all-tui, clean-tui, install-tui and
11368         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
11369         CONFIG_UNINSTALL respectively.
11370         * gdb.c (main): Remove args.interpreter_p initialization.
11371         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
11372         * main.h (struct captured_main_args): Remove interpreter_p.
11373         * tui/tui-main.c: Remove.
11374
11375 2012-01-01  Doug Evans  <dje@google.com>
11376
11377         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
11378         (dwarf2_physname, read_import_statement): Ditto.
11379         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
11380         (process_structure_scope read_subroutine_type): Ditto.
11381         (read_typedef, load_partial_dies, read_partial_die): Ditto.
11382         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
11383         (dwarf2_fetch_die_location_block): Ditto.
11384         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
11385
11386         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
11387         All callers updated.
11388         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
11389         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
11390         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
11391
11392         * dwarf2read.c (load_cu): Move assert to more useful location.
11393
11394         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
11395         All callers updated.
11396
11397         * dwarf2read.c (dwarf2_per_objfile): Add comment.
11398         (dwarf2_elf_names): Minor reformat.
11399         (dwarf2_per_cu_data): Tweak comment.
11400         (dwarf2_read_section): Fix comment.
11401         (create_all_comp_units): Fix comment.
11402         (load_full_comp_unit): Fix comment.
11403         (process_full_comp_unit): Fix comment.
11404         (read_signatured_type): Fix comment.
11405
11406 For older changes see ChangeLog-2011.
11407 \f
11408 Local Variables:
11409 mode: change-log
11410 left-margin: 8
11411 fill-column: 74
11412 version-control: never
11413 coding: utf-8
11414 End: