Windows-specific iterate_over_objfiles_in_search_order
[external/binutils.git] / gdb / ChangeLog
1 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
2
3         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
4         Add declaration.
5         * windows-tdep.c: #include "objfiles.h".
6         (windows_iterate_over_objfiles_in_search_order): New function.
7         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
8         iterate_over_objfiles_in_search_order gdbarch method to
9         windows_iterate_over_objfiles_in_search_order.
10         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
11
12 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
13
14         * gdbarch.sh: Add generation of
15         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
16         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
17         (iterate_over_objfiles_in_search_order): New gdbarch method.
18         * gdbarch.h, gdbarch.c: Regenerate.
19         * objfiles.h (default_iterate_over_objfiles_in_search_order):
20         Add declaration.
21         * objfiles.c (default_iterate_over_objfiles_in_search_order):
22         New function.
23         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
24         out of lookup_symbol_aux_symtabs.
25         (lookup_symbol_aux_symtabs): Replace extracted-out code by
26         call to lookup_symbol_aux_objfile.
27         (struct global_sym_lookup_data): New type.
28         (lookup_symbol_global_iterator_cb): New function.
29         (lookup_symbol_global): Search for symbol using
30         gdbarch_iterate_over_objfiles_in_search_order and
31         lookup_symbol_global_iterator_cb.
32         * findvar.c (struct minsym_lookup_data): New type.
33         (minsym_lookup_iterator_cb): New function.
34         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
35         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
36         and minsym_lookup_iterator_cb.
37
38 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
39
40         Revert the following patch:
41         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
42         try locating the symbol in the symbol's own objfile first, before
43         extending the search to all objfiles.
44         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
45         out of lookup_symbol_aux_symtabs.
46         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
47         Replace extracted-out code by call to lookup_symbol_aux_objfile.
48         Do not search EXCLUDE_OBJFILE.
49         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
50         (lookup_symbol_global): Search for matches in the block's objfile
51         first, before searching all other objfiles.
52
53 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
54
55         * breakpoint.c (find_condition_and_thread): Stop parsing
56         as soon as the first invalid keyword is found.
57
58 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
59
60         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
61
62 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
63
64         * config/djgpp/djcheck.sh: Add copyright header.
65
66 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
67
68         * copyright.py (update_files, main): Fix path to update-copyright
69         script.
70
71 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
72
73         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
74         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
75         for which a reminder to update by hand is printed.
76
77 2012-06-04  Doug Evans  <dje@google.com>
78
79         * buildsym.c (make_blockvector): Add comment.
80
81 2012-06-04  Pedro Alves  <palves@redhat.com>
82
83         * arch-utils.c (default_gdb_signal_from_target): Delete.
84         * arch-utils.h (default_gdb_signal_from_target): Delete.
85         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
86         gdbarch_gdb_signal_from_target_p.
87         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
88         predicate).
89         * gdbarch.h: Regenerate.
90         * gdbarch.c: Regenerate.
91
92 2012-06-04  Pedro Alves  <palves@redhat.com>
93
94         * gdbarch.sh (gdb_signal_from_target): Mention that the
95         implementation of the method must be host independent.
96         * gdbarch.h: Regenerate.
97
98 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
99
100         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
101         parameters.
102         (target_read_memory_bfd): New function.
103         (symbol_file_add_from_memory): Use it.
104
105 2012-06-03  Doug Evans  <dje@google.com>
106
107         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
108         of primary symtab.
109         (basic_lookup_transparent_type): Ditto.
110
111         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
112         (ALL_PRIMARY_SYMTABS): Use it.
113         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
114         * dwarf2read.c (dw2_find_symbol_file): Ditto.
115         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
116         * symtab.c (lookup_symbol_aux_objfile): Ditto.
117         (basic_lookup_transparent_type): Ditto.
118
119 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
120
121         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
122         it to optimize resolution of demangled name.
123
124 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
125
126         * configure.ac (development): Define new variable.
127         Call AC_CHECK_LIB for mcheck if $development.
128         (ERROR_ON_WARNING): Enable it by default only if $development.
129         * config.in: Regenerate.
130         * configure: Regenerate.
131
132 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
133
134         * target.c (target_read_memory): Make LEN argument as size_t.
135         * target.h (target_read_memory): Likewise.
136
137 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
138
139         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
140
141 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
142
143         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
144         BookE interface for PowerPC server processors if not available
145         in the Linux Kernel.
146
147 2012-05-31  Keith Seitz  <keiths@redhat.com>
148
149         * linespec.c (decode_objc): Add cleanup to free
150         INFO.FILE_SYMTABS.
151         (find_linespec_symbols): Add cleanup to free CLASSES.
152         * symfile.c (find_separate_debug_file_by_debuglink): Add
153         cleanup to free DEBUGLINK.
154         * ui-out.c (clear_header_list): No need to check if
155         HEADER_NEXT.COLHDR is NULL.
156         Free HEADER_NEXT.COL_NAME.
157
158 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
159
160         * ada-lang.c (standard_lookup): Prevent uninitialized variable
161         warning.
162
163 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
164
165         * configure.host (gdb_host_cpu): Handle tilegx*.
166         (gdb_host): Handle tilegx-*-linux*.
167         * tilegx-linux-nat.c: New file.
168         * config/tilegx/linux.mh: New file.
169
170 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
171
172         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
173         tilegx-linux-tdep.o.
174         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
175         tilegx-linux-tdep.c.
176         * configure.tgt: Handle tilegx-*-linux*.
177         * tilegx-tdep.h: New file.
178         * tilegx-tdep.c: New file.
179         * tilegx-linux-tdep.c: New file.
180         * regformats/reg-tilegx.dat: New file.
181
182 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
183
184         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
185         accounting of hw watchpoints on ppc.
186
187 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
188
189         * source.c (openp): Expand tilde in path entries.
190
191 2012-05-29  Doug Evans  <dje@google.com>
192
193         * buildsym.c (block_compar): Fix comment.
194         (end_symtab): Fix and clarify some comments.
195
196         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
197         cleanup_undefined_types.
198         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
199         All callers updated.
200
201 2012-05-29  Tom Tromey  <tromey@redhat.com>
202
203         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
204         fails.
205         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
206         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
207         fails.
208         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
209         fails.
210
211 2012-05-29  Tristan Gingold  <gingold@adacore.com>
212
213         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
214         (struct darwin_info): ... New struct.
215         (solib_darwin_pspace_data): New variable.
216         (darwin_pspace_data_cleanup): New function.
217         (get_darwin_info): Likewise.
218         (darwin_dyld_version_ok, darwin_load_image_infos)
219         (darwin_solib_get_all_image_info_addr_at_init)
220         (darwin_solib_read_all_image_info_addr): Add info argument.
221         Adjust code.
222         (darwin_current_sos): Use per pspace structure.
223         (darwin_solib_create_inferior_hook): Likewise.
224         (darwin_clear_solib): Likewise.
225         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
226
227 2012-05-28  Pedro Alves  <palves@redhat.com>
228
229         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
230         block that uses them.  Clear ecss before handling each event.
231
232 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
233
234         * solib-svr4.c (svr4_current_sos): New comment on
235         svr4_current_sos_via_xfer_libraries fall back.
236
237 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
238
239         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
240         it as a fallback for TYPE_IS_OPAQUE.
241         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
242         symbols for lookup_symbol.
243
244 2012-05-24  John Steele Scott  <toojays@toojays.net>
245
246         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
247         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
248         (producer_is_gxx_lt_4_6): Move the checking and caching to...
249         (check_producer): ... this new function, which also checks for ICC
250         and caches the result.
251         (producer_is_icc): New function.
252         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
253         producer was ICC.
254
255 2012-05-24  Pedro Alves  <palves@redhat.com>
256
257         PR gdb/7205
258
259         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
260         (default_gdb_signal_to_target): ... this.  Add comment.
261         (default_gdb_signal_from_host): Rename to ...
262         (default_gdb_signal_from_target): ... this.  Add comment.
263         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
264         (default_gdb_signal_to_target): ... this.
265         (default_gdb_signal_from_host): Rename to ...
266         (default_gdb_signal_from_target): ... this.
267         * corelow.c (core_open): Adjust to naming change.  Replace comment.
268         * gdbarch.sh (gdb_signal_from_host): Rename to ...
269         (gdb_signal_from_target): ... this.  Adjust to
270         default_gdb_signal_from_host naming change.  Extend comment.
271         (gdb_signal_to_host): Rename to ...
272         (gdb_signal_to_target): ... this.  Adjust to
273         default_gdb_signal_to_host naming change.
274         * gdbarch.h, gdbarch.c: Renegerate.
275
276 2012-05-24  Pedro Alves  <palves@redhat.com>
277
278         PR gdb/7205
279
280         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
281
282 2012-05-24  Pedro Alves  <palves@redhat.com>
283
284         PR gdb/7205
285
286         Replace target_signal with gdb_signal throughout.
287
288 2012-05-24  Pedro Alves  <palves@redhat.com>
289
290         PR tui/14159
291
292         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
293         string, instead of reusing the va_list argument.
294
295 2012-05-24  Tom Tromey  <tromey@redhat.com>
296
297         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
298         Remove.
299
300 2012-05-23  Doug Evans  <dje@google.com>
301
302         * symtab.c (search_symbols): Formatting fixes.
303         (print_symbol_info): Formatting fixes.
304
305         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
306         int64_t change to leb128 API.
307         (read_encoded_value, decode_frame_entry_1): Ditto.
308         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
309         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
310         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
311         (execute_stack_op): Ditto.
312         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
313         (safe_read_uleb128, safe_read_sleb128): Ditto.
314         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
315         (dwarf2_compile_expr_to_ax): Ditto.
316         (locexpr_describe_location_piece): Ditto.
317         (disassemble_dwarf_expression): Ditto.
318         (locexpr_describe_location_1): Ditto.
319
320 2012-05-23  Stan Shebs  <stan@codesourcery.com>
321             Kwok Cheung Yeung  <kcy@codesourcery.com>
322
323         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
324         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
325         (mi-cmd-info.o): New rule.
326         * osdata.h (info_osdata_command): New declaration.
327         * osdata.c (info_osdata_command): Change to non-static.
328         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
329         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
330         * mi/mi-cmd-info.c: New file.
331
332 2012-05-23  Doug Evans  <dje@google.com>
333
334         * symtab.c (search_symbols): Pass NULL for file_matcher to
335         expand_symtabs_matching if there are no files to match.
336
337         * gdbtypes.c (lookup_typename): Simplify.
338
339 2012-05-23  Pedro Alves  <palves@redhat.com>
340
341         * arch-utils.h (default_target_signal_to_host): Delete.
342         * arch-utils.c (default_target_signal_to_host): Delete.
343         * gdbarch.sh (target_signal_to_host): Remove.
344         * gdbarch.h, gdbarch.c: Regenerate.
345
346 2012-05-22  Doug Evans  <dje@google.com>
347
348         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
349         "const gdb_byte *".
350         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
351         (execute_cfa_program): Update to match API of leb128 functions.
352         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
353         "const gdb_byte *".
354         (read_unsigned_leb128, read_signed_leb128): Delete.
355         (read_initial_length): Change type of buf argument to
356         "const gdb_byte *".
357         (read_encoded_value): Update to match API of leb128 functions.
358         (decode_frame_entry): Change result to "const gdb_byte *", and
359         similarly for "start" parameter.
360         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
361         (dwarf2_build_frame_info): Change local frame_ptr to
362         "const gdb_byte *".
363         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
364         read_uleb128, read_sleb128.  All callers updated.
365         (safe_skip_leb128): New function.
366         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
367         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
368         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
369         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
370         read_uleb128, read_sleb128.
371         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
372         (execute_stack_op): Update to match API of leb128 functions.
373         * dwarf2expr.h: #include "leb128.h".
374         (read_uleb128, read_sleb128): Delete.
375         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
376         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
377         * dwarf2loc.c (debug_loc_kind): New enum.
378         (decode_debug_loc_addresses): New function.
379         (decode_debug_loc_dwo_addresses): New function.
380         (dwarf2_find_location_expression): Rewrite.
381         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
382         (locexpr_describe_location_piece): Ditto.
383         (disassemble_dwarf_expression): Ditto.
384         (locexpr_describe_location_1): Ditto.
385         (loclist_describe_location): Rewrite.
386         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
387         * dwarf2read.c (die_reader_specs): New member "buffer_end".
388         (dwarf2_section_buffer_overflow_complaint): Renamed from
389         dwarf2_macros_too_long_complaint.  All callers updated.
390         (skip_leb128): Delete.
391         (init_cu_die_reader): Initialize reader->buffer_end.
392         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
393         (skip_form_bytes): New arg buffer_end.  All callers updated.
394         Replace call to skip_leb128 with gdb_skip_leb128.
395         (skip_unknown_opcode): New arg mac_end.  All callers updated.
396         (fill_in_loclist_baton): Initialize baton->from_dwo.
397
398 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
399
400         * mips-linux-nat.c (mips_linux_read_description): Use a more
401         verbose error message.
402
403 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
404
405         * NEWS: Add MIPS/Linux DSP support.
406         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
407         (SIGCONTEXT_DSPCTL): New macro.
408         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
409         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
410         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
411         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
412         (N64_SIGCONTEXT_HI3): Likewise.
413         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
414         (N64_SIGCONTEXT_LO3): Likewise.
415         (N64_SIGCONTEXT_DSPCTL): Likewise.
416         (N64_SIGCONTEXT_FPCSR): Clarify definition.
417         (mips_linux_o32_sigframe_init): Handle DSP registers.
418         (mips_linux_n32n64_sigframe_init): Likewise.
419
420 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
421
422         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
423         call to abort.
424
425 2012-05-22  Pedro Alves  <palves@redhat.com>
426
427         * target.h (store_waitstatus): Move declaration ...
428         * inf-child.h (store_waitstatus): ... here.
429         * target.c: Move inclusion of gdb_wait.h, and ...
430         (store_waitstatus): ... this ...
431         * inf-child.c: ... here.
432         * linux-nat.c: Include inf-child.h.
433         * rs6000-nat.c: Include inf-child.h.
434         * spu-linux-nat.c: Include inf-child.h.
435
436 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
437
438         * tracepoint.c (start_tracing): Add missing i18n markup.
439         (stop_tracing, set_trace_user): Ditto.
440         (set_trace_notes, set_trace_stop_notes): Ditto.
441
442 2012-05-21  Tom Tromey  <tromey@redhat.com>
443
444         PR c++/7173:
445         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
446         types.
447         * value.h (value_cast_pointers): Update.
448         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
449         (value_cast): Update.
450         (update_search_result): New function.
451         (do_search_struct_field): New, from search_struct_field.  Check
452         for ambiguous results.
453         (search_struct_field): Rewrite.
454         * infcall.c (value_arg_coerce): Update.
455         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
456         value_cast_pointers.
457         * ada-lang.c (ada_convert_actual): Update.
458
459 2012-05-21  Tom Tromey  <tromey@redhat.com>
460
461         * macroexp.c (macro_stringify): Terminate the string.
462
463 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
464
465         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
466         Describe it.
467         * auto-load.c (auto_load_expand_dir_vars): New function.
468         (auto_load_safe_path_vec_update): Use it, remove the
469         substitute_path_component call thanks to it.
470         (auto_load_objfile_script): Remove the debug_file_directory processing.
471         Use auto_load_expand_dir_vars, remove the substitute_path_component
472         call thanks to it.
473         * configure: Regenerate.
474         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
475         path.  Escape $ also for $debugdir.
476         (--with_auto_load_safe_path): Escape $ also for $debugdir.
477         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
478
479 2012-05-20  Doug Evans  <dje@google.com>
480
481         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
482         before use.  Check for symtab->includes == NULL before scanning it.
483
484 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
485
486         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
487
488 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
489
490         * NEWS: Add microMIPS support and "set mips compression",
491         "show mips compression" commands.
492         * mips-tdep.h (mips_isa): New enum.
493         (gdbarch_tdep): Add mips_isa.
494         (mips_pc_is_mips16): Update prototype.
495         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
496         * mips-tdep.c (mips_compression_mips16): New variable.
497         (mips_compression_micromips): Likewise.
498         (mips_compression_strings): Likewise.
499         (mips_compression_string): Likewise.
500         (is_mips16_isa, is_micromips_isa): New functions.
501         (is_mips16_addr): Rename to...
502         (is_compact_addr): ... this.
503         (unmake_mips16_addr): Likewise to...
504         (unmake_compact_addr): ... this.
505         (make_mips16_addr): Likewise to...
506         (make_compact_addr): ... this.
507         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
508         functions.
509         (mips_elf_make_msymbol_special): Handle microMIPS code.
510         (msymbol_is_special): Rename to...
511         (msymbol_is_mips16): ... this.
512         (mips_make_symbol_special, mips_pc_is_mips16): Update
513         accordingly.
514         (msymbol_is_mips, msymbol_is_micromips): New functions.
515         (mips16_to_32_reg): Rename to...
516         (mips_reg3_to_reg): ... this.
517         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
518         (mips_pc_isa): Likewise.
519         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
520         code.
521         (mips_fetch_instruction): Pass return status instead of printing
522         an error message if requested.  Handle microMIPS code.  Bail out
523         on an invalid ISA.
524         (micromips_op): New macro.
525         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
526         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
527         (b6s4_op, b7s3_reg): Likewise.
528         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
529         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
530         (mips_insn_size): New function.
531         (mips32_next_pc): Update mips_fetch_instruction call.
532         (micromips_relative_offset7): New function.
533         (micromips_relative_offset10): Likewise.
534         (micromips_relative_offset16): Likewise.
535         (micromips_pc_insn_size): Likewise.
536         (micromips_bc1_pc): Likewise.
537         (micromips_next_pc): Likewise.
538         (unpack_mips16): Update mips_fetch_instruction call.
539         (extended_mips16_next_pc): Update according to change to
540         mips16_to_32_reg.
541         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
542         code.
543         (mips16_scan_prologue): Update mips_fetch_instruction call.
544         Update according to change to mips16_to_32_reg.
545         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
546         (mips_insn16_frame_base_sniffer): Likewise.
547         (micromips_decode_imm9): New function.
548         (micromips_scan_prologue): Likewise.
549         (mips_micro_frame_cache): Likewise.
550         (mips_micro_frame_this_id): Likewise.
551         (mips_micro_frame_prev_register): Likewise.
552         (mips_micro_frame_sniffer): Likewise.
553         (mips_micro_frame_unwind): New variable.
554         (mips_micro_frame_base_address): New function.
555         (mips_micro_frame_base): New variable.
556         (mips_micro_frame_base_sniffer): New function.
557         (mips32_scan_prologue): Update mips_fetch_instruction call.
558         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
559         rather than for MIPS16.
560         (mips_insn32_frame_base_sniffer): Likewise.
561         (mips_addr_bits_remove): Handle microMIPS code.
562         (deal_with_atomic_sequence): Rename to...
563         (mips_deal_with_atomic_sequence): ... this.  Update the type
564         of the variable used to hold an instruction.  Remove the ISA bit
565         check.  Update mips_fetch_instruction call.
566         (micromips_deal_with_atomic_sequence): New function.
567         (deal_with_atomic_sequence): Likewise.
568         (mips_about_to_return): Handle microMIPS code.  Update
569         mips_fetch_instruction call.
570         (heuristic_proc_start): Check for the standard MIPS ISA rather
571         than for MIPS16.  Update mips_pc_is_mips16 and
572         mips_fetch_instruction calls.  Handle microMIPS code.
573         (mips_push_dummy_code): Handle microMIPS code.
574         (mips_eabi_push_dummy_call): Likewise.
575         (mips_o32_return_value): Update mips_pc_is_mips16 call.
576         (mips_o64_push_dummy_call): Handle microMIPS code.
577         (mips_o64_return_value): Update mips_pc_is_mips16 call.
578         (is_delayed): Remove function.
579         (mips_single_step_through_delay): Replace the call to is_delayed
580         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
581         Handle microMIPS code.
582         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
583         microMIPS code.
584         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
585         call.
586         (micromips_in_function_epilogue_p): New function.
587         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
588         call.
589         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
590         Handle microMIPS.
591         (gdb_print_insn_mips): Likewise.
592         (mips_breakpoint_from_pc): Likewise.
593         (mips_remote_breakpoint_from_pc): New function.
594         (mips32_instruction_has_delay_slot): Simplify making use of the
595         updated mips_fetch_instruction interface.
596         (micromips_instruction_has_delay_slot): New function.
597         (mips16_instruction_has_delay_slot): Simplify making use of the
598         updated mips_fetch_instruction interface.
599         (mips_adjust_breakpoint_address): Check for the standard MIPS
600         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr 
601         calls.  Handle microMIPS code.
602         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
603         (mips_skip_trampoline_code): Handle microMIPS code.
604         (global_mips_compression): New function.
605         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
606         file flags.  Register the microMIPS remote breakpoint handler
607         and heuristic frame unwinder.
608         (show_mips_compression): New function.
609         (_initialize_mips_tdep): Add the "set mips compression" and
610         "show mips compression" commands.
611
612 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
613
614         * ada-lang.c:
615         * ada-tasks.c:
616         * ada-varobj.c:
617         * amd64-darwin-tdep.c:
618         * arm-symbian-tdep.c:
619         * arm-tdep.c:
620         * avr-tdep.c:
621         * ax-gdb.c:
622         * bfin-linux-tdep.c:
623         * breakpoint.c:
624         * c-valprint.c:
625         * cli/cli-cmds.c:
626         * coffread.c:
627         * cp-support.c:
628         * cris-tdep.c:
629         * dwarf2-frame-tailcall.c:
630         * dwarf2-frame.c:
631         * dwarf2expr.c:
632         * dwarf2loc.c:
633         * dwarf2read.c:
634         * elfread.c:
635         * eval.c:
636         * expprint.c:
637         * f-valprint.c:
638         * frv-tdep.c:
639         * h8300-tdep.c:
640         * hppa-hpux-tdep.c:
641         * hppa-tdep.c:
642         * hppanbsd-tdep.c:
643         * i386-nto-tdep.c:
644         * i386-tdep.c:
645         * i387-tdep.c:
646         * ia64-tdep.c:
647         * jit.c:
648         * linespec.c:
649         * linux-tdep.c:
650         * lm32-tdep.c:
651         * m2-valprint.c:
652         * m32c-tdep.c:
653         * m32r-rom.c:
654         * m32r-tdep.c:
655         * m68k-tdep.c:
656         * m68klinux-tdep.c:
657         * mi/mi-main.c:
658         * microblaze-tdep.c:
659         * mips-linux-tdep.c:
660         * mips-tdep.c:
661         * mn10300-tdep.c:
662         * p-valprint.c:
663         * parse.c:
664         * ppc-linux-tdep.c:
665         * ppc-sysv-tdep.c:
666         * printcmd.c:
667         * python/py-finishbreakpoint.c:
668         * python/py-inferior.c:
669         * python/py-infthread.c:
670         * python/py-type.c:
671         * python/python.c:
672         * remote-fileio.c:
673         * remote-m32r-sdi.c:
674         * remote-mips.c:
675         * reverse.c:
676         * rl78-tdep.c:
677         * rs6000-aix-tdep.c:
678         * rs6000-tdep.c:
679         * s390-tdep.c:
680         * score-tdep.c:
681         * sh64-tdep.c:
682         * skip.c:
683         * solib-darwin.c:
684         * solib-dsbt.c:
685         * solib-frv.c:
686         * sparc-tdep.c:
687         * spu-multiarch.c:
688         * spu-tdep.c:
689         * stack.c:
690         * symfile.c:
691         * symtab.c:
692         * tic6x-tdep.c:
693         * tracepoint.c:
694         * v850-tdep.c:
695         * valarith.c:
696         * valprint.c:
697         * value.c:
698         * xcoffread.c:
699         * xtensa-tdep.c:
700         * ada-lang.c:
701         * ada-tasks.c:
702         * ada-varobj.c:
703         * amd64-darwin-tdep.c:
704         * arm-symbian-tdep.c:
705         * arm-tdep.c: Delete unused variables.
706
707 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
708
709         Rename $ddir to $datadir.
710         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
711         * auto-load.c (auto_load_safe_path_vec_update)
712         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
713         * configure: Regenerate.
714         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
715         Likewise.  Remove the 'use $ddir' help string.
716
717 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
718
719         * auto-load.c (show_auto_load_safe_path): Accept any combination of
720         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
721
722 2012-05-18  Tom Tromey  <tromey@redhat.com>
723
724         PR exp/13907:
725         * valprint.h (struct value_print_options) <symbol_print>: New
726         field.
727         * valprint.c (user_print_options): Add default for symbol_print.
728         (show_symbol_print): New function.
729         (generic_val_print): Respect symbol_print.
730         (_initialize_valprint): Add "print symbol" setting.
731         * f-valprint.c (f_val_print): Respect symbol_print.
732         * c-valprint.c (c_val_print): Respect symbol_print.
733         * NEWS: Update.
734         * printcmd.c (print_address_symbolic): Return int.  Ignore some
735         zero-size symbols.
736         (print_address_demangle): Return int.
737         * defs.h: (print_address_symbolic): Return int.
738         * value.h (print_address_demangle): Return int.
739
740 2012-05-18  Tom Tromey  <tromey@redhat.com>
741
742         * valprint.c (val_print_string): Don't print leading space.
743         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
744         print space before string or vtbl.
745         * m2-valprint.c (print_unpacked_pointer): Optionally print space
746         before string.
747         * jv-valprint.c (java_value_print): Print space before string.
748         * go-valprint.c (print_go_string): Print space before string.
749         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
750         space before string.
751         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
752         space before string or vtbl.
753         * auxv.c (fprint_target_auxv): Print space after address.
754
755 2012-05-18  Tom Tromey  <tromey@redhat.com>
756
757         * printcmd.c (print_address_demangle): Remove special case for 0.
758
759 2012-05-18  Tom Tromey  <tromey@redhat.com>
760
761         * printcmd.c (print_address_demangle): Add 'opts' argument.
762         * p-valprint.c (pascal_val_print): Update.
763         * jv-valprint.c (java_val_print): Update.
764         * value.h: Update.
765         * valprint.c (generic_val_print): Update.
766         (print_function_pointer_address): Add 'options' argument.  Remove
767         'addressprint' argument.  Update.
768         * m2-valprint.c (print_unpacked_pointer): Update.
769         * gnu-v3-abi.c (print_one_vtable): Update.
770         (gnuv3_print_method_ptr): Update.
771         * f-valprint.c (f_val_print): Update.
772         * cp-valprint.c (cp_print_value_fields): Update.
773         * valprint.h (print_function_pointer_address): Update.
774         * c-valprint.c (c_val_print): Update.
775
776 2012-05-18  Tom Tromey  <tromey@redhat.com>
777
778         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
779         directly corresponding to the found psymtab.
780         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
781         (dw2_find_pc_sect_symtab): Use it.
782         * block.h (blockvector_contains_pc): Declare.
783         * block.c (find_block_in_blockvector): New function.
784         (blockvector_for_pc_sect): Use it.
785         (blockvector_contains_pc): New function.
786
787 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
788
789         * mips-tdep.h (mips_write_pc): New prototype.
790         * mips-tdep.c (mips_write_pc): Make external, add description.
791         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
792         add description.
793
794 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
795
796         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
797         mips_regnum->pc.
798         (mips_unwind_pc, mips_write_pc): Likewise.
799         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
800         gdbarch_read_pc.
801
802 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
803
804         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
805         proc_warn, proc_error, proc_get_status, proc_flags,
806         proc_why, proc_what, proc_nsysarg, proc_sysargs,
807         proc_set_run_on_last_close, proc_unset_run_on_last_close,
808         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
809         proc_stop_process, proc_wait_for_stop, proc_run_process,
810         proc_set_traced_signals, proc_set_traced_faults,
811         proc_set_traced_sysentry, proc_set_traced_sysexit,
812         proc_set_held_signals, proc_get_held_signals,
813         proc_get_traced_signals, proc_get_traced_faults,
814         proc_get_traced_sysentry, proc_get_traced_sysexit,
815         proc_clear_current_fault, proc_set_current_signal,
816         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
817         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
818         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
819         proc_get_current_thread, proc_get_current_thread,
820         proc_get_current_thread, proc_update_threads,
821         proc_update_threads, proc_update_threads, proc_update_threads,
822         proc_iterate_over_threads, procfs_find_new_threads,
823         procfs_pid_to_str): Make static.  Remove advance declaration.
824         (proc_cursig): Make static.  Conditionalized defintion on
825         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
826         (proc_syscall, proc_set_kill_on_last_close,
827         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
828         proc_get_pending_signals, proc_get_signal_actions,
829         proc_trace_signal, proc_ignore_signal): Delete.
830
831 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
832
833         * coffread.c (cs_section_address): Passing proper argument for
834         `bfd_get_section_vma'.
835         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
836         `bfd_get_section_flags'.
837         * remote.c (remote_trace_set_readonly_regions): Likewise, for
838         `bfd_get_section_vma'.
839
840 2012-05-16  Tom Tromey  <tromey@redhat.com>
841
842         PR macros/13205:
843         * macrotab.h: (macro_define_special): Declare.
844         (enum macro_special_kind): New.
845         (struct macro_definition) <argc, replacement>: Update comments.
846         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
847         (macro_define_object_internal): New function.
848         (macro_define_object): Use it.
849         (macro_define_special): New function.
850         (fixup_definition): New function.
851         (macro_lookup_definition, foreach_macro_in_scope)
852         (foreach_macro): Use fixup_definition.
853         * macroexp.h (macro_stringify): Declare.
854         * macroexp.c (free_buffer_return_text): New function.
855         (stringify): Constify "arg".
856         (macro_stringify): New function.
857         * dwarf2read.c (macro_start_file): Call macro_define_special.
858
859 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
860             Maciej W. Rozycki  <macro@mips.com>
861
862         * breakpoint.h (bp_location): Add related_address member.
863         * inferior.h (get_return_value): Take a pointer to struct value
864         instead of struct type for the function requested.
865         * value.h (using_struct_return): Likewise.
866         * gdbarch.sh (return_value): Take a pointer to struct value
867         instead of struct type for the function requested.
868         * breakpoint.c (set_breakpoint_location_function): Initialize
869         related_address for bp_gnu_ifunc_resolver breakpoints.
870         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
871         requested function's address to gdbarch_return_value.
872         * eval.c (evaluate_subexp_standard): Pass the requested
873         function's address to using_struct_return.
874         * infcall.c (call_function_by_hand): Pass the requested
875         function's address to using_struct_return and
876         gdbarch_return_value.
877         * infcmd.c (get_return_value): Take a pointer to struct value
878         instead of struct type for the function requested.
879         (print_return_value): Update accordingly.
880         (finish_command_continuation): Likewise.
881         * stack.c (return_command): Pass the requested function's
882         address to using_struct_return and gdbarch_return_value.
883         * value.c (using_struct_return): Take a pointer to struct value
884         instead of struct type for the function requested.  Pass the
885         requested function's address to gdbarch_return_value.
886         * python/py-finishbreakpoint.c (finish_breakpoint_object):
887         New function_value member, replacing function_type.
888         (bpfinishpy_dealloc): Update accordingly.
889         (bpfinishpy_pre_stop_hook): Likewise.
890         (bpfinishpy_init): Likewise.  Record the requested function's
891         address.
892         * mips-tdep.c (mips_fval_reg): New enum.
893         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
894         words put in GP registers.
895         (mips_o64_push_dummy_call): Update a comment.
896         (mips_o32_return_value): Take a pointer to struct value instead
897         of struct type for the function requested and use it to check if
898         using the MIPS16 calling convention.  Return the designated
899         general purpose registers for floating-point values returned in
900         MIPS16 mode.
901         (mips_o64_return_value): Likewise.
902         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
903         (ppc_sysv_abi_broken_return_value): Likewise.
904         (ppc64_sysv_abi_return_value): Likewise.
905         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
906         value instead of struct type for the function requested.
907         * amd64-tdep.c (amd64_return_value): Likewise.
908         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
909         * arm-tdep.c (arm_return_value): Likewise.
910         * avr-tdep.c (avr_return_value): Likewise.
911         * bfin-tdep.c (bfin_return_value): Likewise.
912         * cris-tdep.c (cris_return_value): Likewise.
913         * frv-tdep.c (frv_return_value): Likewise.
914         * h8300-tdep.c (h8300_return_value): Likewise.
915         (h8300h_return_value): Likewise.
916         * hppa-tdep.c (hppa32_return_value): Likewise.
917         (hppa64_return_value): Likewise.
918         * i386-tdep.c (i386_return_value): Likewise.
919         * ia64-tdep.c (ia64_return_value): Likewise.
920         * iq2000-tdep.c (iq2000_return_value): Likewise.
921         * lm32-tdep.c (lm32_return_value): Likewise.
922         * m32c-tdep.c (m32c_return_value): Likewise.
923         * m32r-tdep.c (m32r_return_value): Likewise.
924         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
925         * m68k-tdep.c (m68k_return_value): Likewise.
926         (m68k_svr4_return_value): Likewise.
927         * m88k-tdep.c (m88k_return_value): Likewise.
928         * mep-tdep.c (mep_return_value): Likewise.
929         * microblaze-tdep.c (microblaze_return_value): Likewise.
930         * mn10300-tdep.c (mn10300_return_value): Likewise.
931         * moxie-tdep.c (moxie_return_value): Likewise.
932         * mt-tdep.c (mt_return_value): Likewise.
933         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
934         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
935         (ppc_sysv_abi_broken_return_value): Likewise.
936         (ppc64_sysv_abi_return_value): Likewise.
937         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
938         * rl78-tdep.c (rl78_return_value): Likewise.
939         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
940         * rx-tdep.c (rx_return_value): Likewise.
941         * s390-tdep.c (s390_return_value): Likewise.
942         * score-tdep.c (score_return_value): Likewise.
943         * sh-tdep.c (sh_return_value_nofpu): Likewise.
944         (sh_return_value_fpu): Likewise.
945         * sh64-tdep.c (sh64_return_value): Likewise.
946         * sparc-tdep.c (sparc32_return_value): Likewise.
947         * sparc64-tdep.c (sparc64_return_value): Likewise.
948         * spu-tdep.c (spu_return_value): Likewise.
949         * tic6x-tdep.c (tic6x_return_value): Likewise.
950         * v850-tdep.c (v850_return_value): Likewise.
951         * vax-tdep.c (vax_return_value): Likewise.
952         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
953         * xtensa-tdep.c (xtensa_return_value): Likewise.
954         * gdbarch.c: Regenerate.
955         * gdbarch.h: Regenerate.
956
957 2012-05-15  Tom Tromey  <tromey@redhat.com>
958
959         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
960
961 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
962
963         * breakpoint.c (init_breakpoint_sal): Add quotes around part
964         of command in two error message.
965
966 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
967
968         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
969
970 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
971
972         * breakpoint.c (find_condition_and_thread): Minor reformatting.
973
974 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
975
976         * NEWS (show auto-load scripts-directory): Add forgotten command.
977
978 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
979
980         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
981         parameters.
982
983 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
984
985         * amd64-tdep.c: Include features/i386/x32.c and
986         features/i386/x32-avx.c.
987         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
988         initialize_tdesc_x32_avx.
989
990 2012-05-14  Stan Shebs  <stan@codesourcery.com>
991
992         Add dynamic printf.
993         * breakpoint.h (enum bptype): New type bp_dprintf.
994         (struct breakpoint): New field extra_string.
995         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
996         (create_breakpoint): Add extra_string arg.
997         * breakpoint.c (dprintf_breakpoint_ops): New.
998         (is_breakpoint): Add bp_dprintf.
999         (bpstat_what): Add dprintf case.
1000         (bptype_string): Ditto.
1001         (print_one_breakpoint_location): Ditto.
1002         (init_bp_location): Ditto.
1003         (bkpt_print_mention): Ditto.
1004         (dprintf_style_enums): New array.
1005         (dprintf_style): New global.
1006         (dprintf_function): New global.
1007         (dprintf_channel): New global.
1008         (update_dprintf_command_list): New function.
1009         (update_dprintf_commands): New function.
1010         (init_breakpoint_sal): Add extra_string argument, handle it.
1011         (create_breakpoint_sal): Add extra_string argument.
1012         (create_breakpoints_sal): Add extra_string argument, update callers.
1013         (find_condition_and_thread): Add extra argument.
1014         (create_breakpoint): Add extra_string argument, record it.
1015         (dprintf_command): New function.
1016         (break_command_1): Add arg to create_breakpoint call.
1017         (handle_gnu_v3_exceptions): Ditto.
1018         (trace_command): Ditto.
1019         (ftrace_command): Ditto.
1020         (strace_command): Ditto.
1021         (bkpt_print_mention): Add dprintf case.
1022         (create_breakpoint_sal_default): Add extra_string argument.
1023         (_initialize_breakpoint): Add new commands.
1024         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
1025         * python/py-breakpoint.c (bppy_init): Ditto.
1026         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
1027
1028 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
1029
1030         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
1031
1032 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
1033
1034         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
1035         unsigned long long.
1036
1037 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
1038
1039         Add a new function gdb.find_pc_line to the Python API.
1040         * NEWS (Python Scripting): Add entry about the new function.
1041         * python/python.c (gdbpy_find_pc_line): New function which
1042         implements gdb.find_pc_line.
1043         (GdbMethods): Add entry for the new function.
1044
1045 2012-05-12  Pedro Alves  <palves@redhat.com>
1046
1047         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
1048         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
1049
1050 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
1051
1052         * inferior.c: Include completer.h
1053         (initialize_inferiors): Set completer of add-inferior to
1054         filename_completer.
1055
1056 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
1057
1058         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
1059         gdbarch_ptr_bit for x32 core dump.
1060
1061 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
1062
1063         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
1064         and features/i386/x32-avx-linux.c.
1065
1066 2012-05-11  Stan Shebs  <stan@codesourcery.com>
1067             Kwok Cheung Yeung  <kcy@codesourcery.com>
1068
1069         * NEWS: Describe new info os commands.
1070         * common/linux-osdata.c (PID_T, TIME_T): Define.
1071         (MAX_PID_T_STRLEN): New.
1072         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
1073         MAX_PID_T_STRLEN.
1074         (command_from_pid): Add comment.  Change to use PID_T.
1075         (commandline_from_pid):  Change to use PID_T.
1076         (user_from_pid): Add comment.
1077         (get_process_owner): Add comment. Change to use PID_T and
1078         MAX_PID_T_STRLEN.
1079         (get_number_of_cpu_cores): Add comment.
1080         (get_cores_used_by_process): Add comment.  Change to use PID_T and
1081         MAX_PID_T_STRLEN.
1082         (linux_xfer_osdata_processes): Change to use PID_T and
1083         MAX_PID_T_STRLEN.
1084         (compare_processes): New function.
1085         (linux_xfer_osdata_processgroups): New function.
1086         (linux_xfer_osdata_threads): Change to use PID_T.
1087         (linux_xfer_osdata_fds): New function.
1088         (format_socket_state, print_sockets): New functions.
1089         (union socket_addr): New union.
1090         (linux_xfer_osdata_isockets): New function.
1091         (time_from_time_t, group_from_gid): New functions.
1092         (linux_xfer_osdata_shm): New function.
1093         (linux_xfer_osdata_sem): New function.
1094         (linux_xfer_osdata_msg): New function.
1095         (linux_xfer_osdata_modules): New function.
1096         (osdata_table): Add new entries.
1097         * common/buffer.c (buffer_xml_printf): Add support for long and
1098         long long format specifiers.
1099
1100 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
1101
1102         * amd64-linux-tdep.h (tdesc_x32_linux): New.
1103         (tdesc_x32_avx_linux): Likewise.
1104
1105 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1106
1107         Implement multi-component --with-auto-load-dir.
1108         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
1109         entries.
1110         (--with-auto-load-safe-path): Update the default value description.
1111         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
1112         New.
1113         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
1114         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
1115         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
1116         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
1117         "set auto-load scripts-directory".
1118         * config.in: Regenerate.
1119         * configure: Regenerate.
1120         * configure.ac (--with-auto-load-dir): New configure option.
1121         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
1122
1123 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1124
1125         Provide $ddir substitution for --with-auto-load-safe-path.
1126         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
1127         entries.
1128         * auto-load.c: Include observer.h.
1129         (auto_load_safe_path_vec_update): Call substitute_path_component for
1130         each component.  New variable ddir_subst.
1131         (auto_load_gdb_datadir_changed): New function.
1132         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
1133         AUTO_LOAD_SAFE_PATH.  New comment.
1134         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
1135         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
1136         * config.in: Regenerate.
1137         * configure: Regenerate.
1138         * configure.ac (--auto-load-safe-path): Rename
1139         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
1140         GDB_DATADIR/auto-load.
1141         * defs.h (substitute_path_component): New declaration.
1142         * top.c: Include observer.h.
1143         (set_gdb_datadir): New function.
1144         (init_main): Install it for "set data-directory".
1145         * utils.c (substitute_path_component): New function.
1146
1147 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1148
1149         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
1150         * auto-load.c (auto_load_objfile_script): Remove check for NULL
1151         DEBUG_FILE_DIRECTORY.  Handle multiple components of
1152         DEBUG_FILE_DIRECTORY.
1153
1154 2012-05-10  Tom Tromey  <tromey@redhat.com>
1155
1156         * dwarf2read.c (recursively_write_psymbols): New function.
1157         (write_psymtabs_to_index): Use it.
1158
1159         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
1160         field.
1161         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
1162         (load_partial_comp_unit): Update.
1163         (queue_comp_unit): Add argument 'pretend_language'.
1164         (process_queue): Update.
1165         (psymtab_to_symtab_1): Skip dependencies that have a user.
1166         (load_partial_comp_unit_reader): Give meaning to the 'data'
1167         argument.
1168         (load_full_comp_unit): Add 'pretend_language' argument.
1169         (process_full_comp_unit): Add 'pretend_language' argument.  Set
1170         language on CU.
1171         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
1172         Update.
1173         (maybe_queue_comp_unit): Add 'pretend_language' argument.
1174         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
1175         Update.
1176         (prepare_one_comp_unit): Add 'pretend_language' argument.
1177
1178         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
1179         (struct dwarf2_per_objfile) <just_read_cus>: New field.
1180         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
1181         (dw2_do_instantiate_symtab): Check whether symtab was read in
1182         before queueing.
1183         (dw2_instantiate_symtab): Add assertion.  Call
1184         process_cu_includes.
1185         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
1186         (partial_symtab_p): New typedef.
1187         (set_partial_user): New function.
1188         (dwarf2_build_psymtabs_hard): Use set_partial_user.
1189         (scan_partial_symbols): Add imported CU to imported_symtabs.
1190         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
1191         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
1192         (get_symtab, recursively_compute_inclusions)
1193         (compute_symtab_includes, process_cu_includes)
1194         (process_imported_unit_die): New functions.
1195         (process_die) <DW_TAG_imported_unit>: New case.
1196         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
1197
1198         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
1199         comment.
1200         (struct partial_die_info) <locdesc>: Remove.
1201         <d>: New field.
1202         (process_psymtab_comp_unit): Add 'read_partial' argument.
1203         Update.
1204         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
1205         (scan_partial_symbols): Handle DW_TAG_imported_unit.
1206         (add_partial_symbol): Update.
1207         (process_die): Handle DW_TAG_partial_unit.
1208         (read_file_scope): Update comment.
1209         (load_partial_dies): Handle DW_TAG_imported_unit.
1210         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
1211         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
1212
1213 2012-05-10  Tom Tromey  <tromey@redhat.com>
1214
1215         * cc-with-dwz.sh: New file.
1216
1217 2012-05-10  Tom Tromey  <tromey@redhat.com>
1218
1219         * symtab.h (struct symtab) <includes, user>: New fields.
1220         * block.h (struct block_iterator) <d, idx, which>: New fields.
1221         * block.c (initialize_block_iterator, find_iterator_symtab)
1222         (block_iterator_step, block_iter_name_step)
1223         (block_iter_match_step): New functions.
1224         (block_iterator_first, block_iterator_next)
1225         (block_iter_name_first, block_iter_name_next)
1226         (block_iter_match_first, block_iter_match_next): Rewrite.
1227         (get_block_symtab): New function.
1228
1229 2012-05-10  Tom Tromey  <tromey@redhat.com>
1230
1231         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
1232         set_block_symtab.
1233         * jit.c (finalize_symtab): Use allocate_global_block,
1234         set_block_symtab.
1235         * buildsym.c (finish_block_internal): New function, from old
1236         finish_block.
1237         (finish_block): Rewrite.
1238         (end_symtab): Use finish_block_internal, set_block_symtab.
1239         * block.h (struct global_block): New.
1240         (allocate_global_block, set_block_symtab): Declare.
1241         * block.c (allocate_global_block, set_block_symtab): New
1242         functions.
1243
1244 2012-05-10  Tom Tromey  <tromey@redhat.com>
1245
1246         * psymtab.c (partial_map_expand_apply): Add assertion.
1247         (partial_map_symtabs_matching_filename): Skip included psymtabs.
1248         (psymtab_to_symtab): Find unshared psymtab.
1249         (dump_psymtab): Print including psymtabs.
1250         (recursively_search_psymtabs): New function.
1251         (expand_symtabs_matching_via_partial): Use it.
1252         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
1253         fields.
1254         (enum psymtab_search_status): New.
1255
1256 2012-05-10  Tom Tromey  <tromey@redhat.com>
1257
1258         * tracepoint.c (scope_info): Update.
1259         * symtab.c (lookup_block_symbol, iterate_over_symbols)
1260         (find_pc_sect_symtab, search_symbols)
1261         (default_make_symbol_completion_list_break_on)
1262         (make_file_symbol_completion_list): Update.
1263         * symmisc.c (dump_symtab_1): Update.
1264         * stack.c (print_frame_args, iterate_over_block_locals)
1265         (print_frame_labels, iterate_over_block_arg_vars): Update.
1266         * python/py-block.c (block_object) <dict>: Remove.
1267         <block>: New field.
1268         <iter>: Change type.
1269         (blpy_iter): Update.
1270         (blpy_block_syms_iternext): Update.
1271         * psymtab.c (map_block): Use block iterators.
1272         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
1273         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
1274         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
1275         * infrun.c (check_exception_resume): Update.
1276         * cp-support.c (make_symbol_overload_list_block): Update.
1277         * coffread.c (patch_opaque_types): Update.
1278         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
1279         * block.h (struct block_iterator): New.
1280         (block_iterator_first, block_iterator_next, block_iter_name_first)
1281         (block_iter_name_next, block_iter_match_first)
1282         (block_iter_match_next): Declare.
1283         (ALL_BLOCK_SYMBOLS): Redefine.
1284         * block.c (block_iterator_first, block_iterator_next)
1285         (block_iter_name_first, block_iter_name_next)
1286         (block_iter_match_first, block_iter_match_next): New functions.
1287         * ada-lang.c (ada_add_block_symbols)
1288         (ada_make_symbol_completion_list): Use block iterator.
1289
1290 2012-05-10  Tom Tromey  <tromey@redhat.com>
1291
1292         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
1293         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
1294         (lookup_partial_symbol, find_last_source_symtab_from_partial)
1295         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
1296         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
1297         Update.
1298
1299 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
1300
1301         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
1302         print-file-var-lib2.c, print-file-var-main.c and
1303         print-file-var.exp (located in gdb/testsuite/gdb.base).
1304
1305 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
1306
1307         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
1308         try locating the symbol in the symbol's own objfile first, before
1309         extending the search to all objfiles.
1310         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
1311         out of lookup_symbol_aux_symtabs.
1312         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
1313         Replace extracted-out code by call to lookup_symbol_aux_objfile.
1314         Do not search EXCLUDE_OBJFILE.
1315         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
1316         (lookup_symbol_global): Search for matches in the block's objfile
1317         first, before searching all other objfiles.
1318
1319 2012-05-10  Tristan Gingold  <gingold@adacore.com>
1320
1321         * printcmd.c (set_command): Add pre/post inc/dec.
1322
1323 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
1324
1325         * gdb.1: Document -ex option.
1326
1327 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
1328
1329         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
1330         * inferior.h (AT_SYMBOL): Delete.
1331
1332 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
1333
1334         * mips-tdep.c (mips_push_dummy_code): New function.
1335         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
1336         ON_STACK and install mips_push_dummy_code as our gdbarch
1337         push_dummy_code routine.
1338
1339 2012-05-09  Pedro Alves  <palves@redhat.com>
1340
1341         * target.c (set_maintenance_target_async_permitted): Rename to ...
1342         (set_target_async_command): ... this.
1343         (show_maintenance_target_async_permitted): Rename to ...
1344         (show_target_async_command): ... this.
1345         (initialize_targets): Adjust.
1346
1347 2012-05-08  Doug Evans  <dje@google.com>
1348
1349         * go-exp.y (classify_name): Add missing assignment of fields of
1350         yylval.ssym.
1351
1352 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
1353
1354         Display the ">" prompt in interactive mode while reading canned
1355         commands, even when the current interpreter is MI.
1356
1357         * interps.c (interp_set_temp): New function.
1358
1359         * interps.h (interp_set_temp): Add prototype.
1360
1361         * cli/cli-script.c (restore_interp): New cleanup function.
1362         (read_command_lines): Temporarily override the current interpreter
1363         with CLI and arrange for restoring the original one.
1364
1365 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
1366
1367         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
1368
1369 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
1370
1371         * probe.c (parse_probes): Move conditional to check for
1372         debuginfo files from here...
1373         * stap-probe.c (stap_get_probes): ... to here.
1374
1375 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
1376             H.J. Lu  <hongjiu.lu@intel.com>
1377
1378         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
1379         `movl %esp, %ebp' for the X32 ABI.
1380
1381 2012-05-07  Tom Tromey  <tromey@redhat.com>
1382
1383         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
1384         get_DW_TAG_name.
1385         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
1386         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
1387         (dwarf_stack_op_name): Remove.
1388         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
1389         (decode_locdesc): Use get_DW_OP_name.
1390         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
1391         (dwarf2_compile_expr_to_ax): Likewise.
1392         (disassemble_dwarf_expression): Likewise.
1393         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
1394
1395 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
1396
1397         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
1398         (sh_linux_sigtramp_cache): New function.
1399         (sh_linux_sigreturn_init): New function.
1400         (sh_linux_rt_sigreturn_init): New function.
1401         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
1402         patterns.
1403         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
1404         syscall codes.
1405         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
1406         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
1407         (sh_linux_init_abi): Add init calls to register new tramp_frame
1408         definitions under 32-bit SH, update comments.
1409
1410 2012-05-07  Pedro Alves  <palves@redhat.com>
1411
1412         PR gdb/10952
1413
1414         * amd64-linux-tdep.c: Include glibc-tdep.h.
1415         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
1416         gdbarch_skip_solib_resolver callback.
1417
1418 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1419
1420         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
1421         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
1422         (show_auto_load_safe_path): Check any-directory by comparison with "/".
1423         (add_auto_load_safe_path): Change the error message.
1424         (_initialize_auto_load): Change the "safe-path" help text.
1425         * configure: Regenerate
1426         * configure.ac (--without-auto-load-safe-path): Set
1427         WITH_AUTO_LOAD_SAFE_PATH to /.
1428
1429 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
1430
1431         * stap-probe.h: Do not include unecessary `probe.h'.
1432
1433 2012-05-05  Alan Modra  <amodra@gmail.com>
1434
1435         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
1436         bfd_und_section_ptr.
1437         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
1438         and bfd_com_section_ptr.
1439
1440 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
1441
1442         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
1443
1444 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
1445
1446         * windows-nat.h (segment_register_p_ftype): New typedef.
1447         (windows_set_segment_register_p): Add declaration.
1448         * windows-nat.c (segment_register_p): New static global.
1449         (windows_set_segment_register_p): New function.
1450         (do_windows_fetch_inferior_registers): Add special handling
1451         for segment registers.
1452         * amd64-windows-nat.c: #include "amd64-tdep.h".
1453         (amd64_windows_segment_register_p): New function.
1454         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
1455         * i386-windows-nat.c: #include "i386-tdep.h".
1456         (i386_windows_segment_register_p): New function.
1457         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
1458
1459 2012-05-04  Tristan Gingold  <gingold@adacore.com>
1460
1461         * printcmd.c (set_command): Emit a warning if the expression is not
1462         an assignment.
1463
1464 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
1465
1466         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
1467         Make static.
1468
1469 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
1470
1471         * stap-probe.c (stap_is_operator): Change declaration.
1472         (stap_get_opcode): Change return value.
1473         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
1474         `stap_parse_argument_1'.
1475
1476 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
1477
1478         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
1479         debug log.
1480
1481 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
1482
1483         Add two new methods global_block and static_block to gdb.Symtab
1484         objects.
1485         * NEWS (Python scripting): Add entry about the new methods.
1486         * python/py-symtab.c (stpy_global_block): New function which
1487         implements the gdb.Symtab.global_block() method.
1488         (stpy_static_block): New function which implements the
1489         gdb.Symtab.static_block() method.
1490         (symtab_object_methods): Add entries for the two new methods.
1491
1492 2012-05-03  Doug Evans  <dje@google.com>
1493
1494         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
1495         files.
1496
1497 2012-05-03  Yao Qi  <yao@codesourcery.com>
1498
1499         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
1500         space.
1501         (i386_process_record): Ditto.
1502
1503 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
1504
1505         * infcall.c (unwind_on_signal_p): Make static.
1506
1507 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
1508
1509         * sol-thread.c (solaris_pid_to_str): Make static.
1510         (_initialize_sol_thread): Add prototype.
1511
1512 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
1513
1514         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
1515
1516 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
1517
1518         * MAINTAINERS: Remove myself.
1519
1520 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1521
1522         Fix --without-auto-load-safe-path for MS-Windows host platform.
1523         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
1524
1525 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
1526
1527         * gdb_curses.h: Undefine KEY_EVENT before including curses
1528         headers.  Move "#undef MOUSE_MOVED" before any curses header
1529         inclusion.
1530
1531 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
1532
1533         * features/i386/i386-mmx-linux.c: Regenerate.
1534         * features/rs6000/powerpc-32.c: Likewise.
1535         * features/rs6000/powerpc-32l.c: Likewise.
1536         * features/rs6000/powerpc-403.c: Likewise.
1537         * features/rs6000/powerpc-403gc.c: Likewise.
1538         * features/rs6000/powerpc-405.c: Likewise.
1539         * features/rs6000/powerpc-505.c: Likewise.
1540         * features/rs6000/powerpc-601.c: Likewise.
1541         * features/rs6000/powerpc-602.c: Likewise.
1542         * features/rs6000/powerpc-603.c: Likewise.
1543         * features/rs6000/powerpc-604.c: Likewise.
1544         * features/rs6000/powerpc-64.c: Likewise.
1545         * features/rs6000/powerpc-64l.c: Likewise.
1546         * features/rs6000/powerpc-750.c: Likewise.
1547         * features/rs6000/powerpc-860.c: Likewise.
1548         * features/rs6000/powerpc-e500.c: Likewise.
1549         * features/rs6000/powerpc-e500l.c: Likewise.
1550         * features/rs6000/powerpc-isa205-32l.c: Likewise.
1551         * features/rs6000/powerpc-isa205-64l.c: Likewise.
1552         * features/rs6000/rs6000.c: Likewise.
1553
1554 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
1555
1556         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
1557         variable.
1558         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
1559         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
1560         (stap_parse_argument) <e>: Likewise.
1561         (handle_stap_probe) <byte_order>: Likewise.
1562
1563 2012-04-30  Doug Evans  <dje@google.com>
1564
1565         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
1566         init_and_read_dies_worker.  All callers updated.
1567         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
1568         replaced with init_cutu_and_read_dies.
1569         (load_partial_comp_unit): Pass 1 for use_existing_cu.
1570         (find_partial_die): Remove FIXME.  Don't free current CU.
1571
1572 2012-04-30  Sterling Augustine  <saugustine@google.com>
1573
1574         * contrib: New directory.
1575         * contrib/test_pubnames_and_indexes.py: New file.
1576
1577 2012-04-30  Doug Evans  <dje@google.com>
1578
1579         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
1580         All callers updated.
1581         (init_cu_die_reader): Verify the section is non-empty.
1582         (dwarf_decode_line_header): Don't dereference section->asection
1583         until we know the section is present.
1584
1585 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1586
1587         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
1588         probes.
1589
1590 2012-04-29  Yao Qi  <yao@codesourcery.com>
1591
1592         * gdb-code-style.el: New hook gdb-markup-hook
1593         and gdb-comment-hook.
1594
1595 2012-04-28  Doug Evans  <dje@google.com>
1596
1597         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
1598         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
1599         objfile->obfd.
1600         * symfile.h (dwarf2_debug_sections): New member addr.
1601         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
1602         (ctx_no_get_addr_index): New function.
1603         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
1604         (ctx_no_get_addr_index): Declare.
1605         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
1606         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
1607         (dwarf_expr_ctx_funcs): Update.
1608         (needs_get_addr_index): New function.
1609         (needs_frame_ctx_funcs): Update.
1610         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
1611         * dwarf2read.c: #include "gdbcore.h".
1612         (dwarf2_per_objfile): New members addr, dwo_files.
1613         (dwarf2_elf_names): Add entry for addr.
1614         (struct dwo_section_names): New type.
1615         (dwo_section_names): New static global.
1616         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
1617         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
1618         old debug_types_section member updated to use this.
1619         Rename member debug_types_section to info_or_types_section,
1620         all uses updated.
1621         (signatured_type): Rename member type_offset to type_offset_in_tu,
1622         all uses updated.  New member type_offset_in_section.
1623         (struct dwo_sections): New type.
1624         (struct dwo_unit): New type.
1625         (struct dwo_file): New type.
1626         (die_reader_specs): New member dwo_file.
1627         (dwarf2_locate_sections): Watch for .debug_addr.
1628         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
1629         (dwarf2_read_section): Get bfd of section from bfd's asection,
1630         instead of objfile.
1631         (create_cus_from_index): Initialize the_cu->info_or_types_section.
1632         (create_signatured_type_table_from_index): Initialize
1633         sig_type->info_or_types_section.
1634         (dw2_get_file_names): Statement lists for type units with DWO files
1635         live in the DWO file.
1636         (create_debug_types_hash_table): New function.
1637         (create_all_type_units): Rewrite.
1638         (init_cu_die_reader): New arg dwo_file, all callers updated.
1639         (init_and_read_dies_worker): Get section from
1640         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
1641         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
1642         continue reading the CU/TU from there.
1643         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
1644         updated.  Get section from this_cu->info_or_types_section.
1645         (create_all_comp_units): Initialize this_cu->info_or_types_section.
1646         (skip_one_die): New cases DW_FORM_GNU_addr_index,
1647         DW_FORM_GNU_str_index.
1648         (hash_dwo_file, eq_dwo_file): New functions.
1649         (allocate_dwo_file_hash_table): New function.
1650         (hash_dwo_unit, eq_dwo_unit): New functions.
1651         (allocate_dwo_unit_table): New function.
1652         (dwarf2_locate_dwo_sections): New function.
1653         (struct create_dwo_info_table_data): New type.
1654         (create_debug_info_hash_table_reader): New function.
1655         (create_debug_info_hash_table): New function.
1656         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
1657         (lookup_dwo_file): New function.
1658         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
1659         (free_dwo_file, free_dwo_file_cleanup): New functions.
1660         (free_dwo_file_from_slot, free_dwo_files): New functions.
1661         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
1662         (dwarf2_record_block_ranges): Ditto.
1663         (read_partial_die): Ditto.
1664         (process_enumeration_scope): Update to use type_offset_in_section.
1665         (read_full_die_1): New function.
1666         (read_full_die): Rewrite.
1667         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
1668         DW_FORM_GNU_str_index.
1669         (read_addr_index_1, read_addr_index): New functions.
1670         (read_addr_index_from_leb128): New function.
1671         (struct dwarf2_read_addr_index_data): New type.
1672         (dwarf2_read_addr_index_reader): New function.
1673         (dwarf2_read_addr_index): New function.
1674         (read_str_index): New function.
1675         (leb128_size): New function.
1676         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
1677         If processing a type unit from a DWO file, get the line section
1678         from the DWO file.
1679         (var_decode_location): Watch for DW_OP_GNU_addr_index.
1680         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
1681         DW_FORM_GNU_str_index.
1682         (lookup_die_type): Check whether section offset of type's die is
1683         known before looking it up.  Remove assert.  Condition can
1684         legimately happen for inter-cu type references.
1685         (dwarf_attr_name): Handle Fission attributes.
1686         (dwarf_form_name): Handle Fission forms.
1687         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
1688         DW_FORM_GNU_str_index.
1689         (follow_die_sig): Update to use type_offset_in_section.
1690         (decode_locdesc): New case DW_OP_GNU_addr_index.
1691         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
1692         DW_FORM_GNU_str_index.
1693         (cu_debug_loc_section): New function.
1694         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
1695         (dwarf2_per_objfile_free): Unmap .debug_addr section.
1696         Free DWO files if present.
1697         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
1698
1699         Refactor DIE reading.
1700         * dwarf2read.c (dwarf2_per_objfile): Replace members
1701         debug_info_type_hash and debug_types_type_hash with die_type_hash.
1702         (die_reader_specs): New member "die_section".  Temporarily make
1703         member "buffer" non-const, pending constifying all info_ptr uses.
1704         (die_reader_func_ftype): New typedef.
1705         (dw2_get_file_names_reader): New function.
1706         (dw2_get_file_names): Rewrite.
1707         (read_and_check_type_unit_head): Rename arg type_offset to
1708         type_offset_in_tu.
1709         (create_all_type_units): Improve debugging message.
1710         Improve dummy type unit check.
1711         (init_cu_die_reader): New arg "section".  All callers updated.
1712         (init_and_read_dies_worker): New function.
1713         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
1714         (init_cutu_and_read_dies_no_follow): New function.
1715         (init_cutu_and_read_dies_simple): New function.
1716         (process_psymtab_comp_unit_reader): New function.
1717         (process_psymtab_comp_unit): Delete args section,
1718         is_debug_types_section.  Rewrite.  All callers updated.
1719         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
1720         All callers updated.  Rewrite.
1721         (load_partial_comp_unit_reader): New function.
1722         (load_partial_comp_unit): Rewrite.
1723         (skip_children): New arg reader.  Delete args buffer, cu.
1724         All callers updated.
1725         (skip_one_die): New arg reader.  Delete args buffer, cu.
1726         All callers updated.
1727         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
1728         All callers updated.
1729         (load_full_comp_unit_reader): New function.
1730         (load_full_comp_unit): Rewrite.
1731         (read_comp_unit): Delete.
1732         (read_die_and_children_1): Delete, contents moved ...
1733         (read_die_and_children): ... here.
1734         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
1735         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
1736         All callers updated.
1737         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
1738         All callers updated.
1739         (find_partial_die): Rewrite load_all_dies support.
1740         (read_attribute_value): New arg reader.  Delete args abfd, cu.
1741         All callers updated.
1742         (read_attribute): New arg reader.  Delete args abfd, cu.
1743         All callers updated.
1744         (load_full_type_unit): Add assert.
1745         (read_signatured_type_reader): New function.
1746         (read_signatured_type): Rewrite.
1747         (free_stack_comp_unit): Remove call to age_cached_comp_units.
1748         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
1749         All callers updated.  Set per_cu->cu = NULL after freeing it.
1750         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
1751         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
1752         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
1753         (set_die_type): Update.
1754         (get_die_type_at_offset): Update.
1755         (read_file_scope): Call prepare_one_comp_unit.
1756         (read_type_unit_scope): Ditto.
1757         (prepare_one_comp_unit): Set producer if present.
1758
1759 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
1760
1761         * probe.c (compile_rx_or_error): Silence ARI warning about missing
1762          gettext function on `error'.
1763
1764 2012-04-27  Doug Evans  <dje@google.com>
1765
1766         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
1767         is empty.
1768
1769 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
1770             Tom Tromey  <tromey@redhat.com>
1771
1772         * breakpoint.c (struct breakpoint_objfile_data)
1773         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
1774         <exception_probes>: New fields.
1775         (free_breakpoint_probes): New function.
1776         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
1777         `_Unwind_DebugHook'.
1778         (create_exception_master_breakpoint): Likewise.
1779         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
1780         * infrun.c: Including necessary header files for handling SystemTap
1781         probes.
1782         (handle_inferior_event): Handling longjmp breakpoint and exceptions
1783         via SystemTap probes.
1784         (check_exception_resume): Remove `func' argument.  Handle exception
1785         unwinding breakpoint set via a SystemTap probe.
1786         (insert_exception_resume_from_probe): New function.
1787
1788 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
1789             Tom Tromey  <tromey@redhat.com>
1790             Jan Kratochvil  <jan.kratochvil@redhat.com>
1791
1792         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
1793         (COMMON_OBS): Likewise.
1794         (HFILES_NO_SRCDIR): Add `probe'.
1795         * NEWS: Mention support for static and SystemTap probes.
1796         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
1797         SystemTap probes' arguments parser.
1798         * arm-linux-tdep.c: Including headers needed to perform the parsing
1799         of SystemTap probes' arguments.
1800         (arm_stap_is_single_operand): New function.
1801         (arm_stap_parse_special_token): Likewise.
1802         (arm_linux_init_abi): Initializing proper fields used by SystemTap
1803         probes' arguments parser.
1804         * ax-gdb.c (require_rvalue): Removing static declaration.
1805         (gen_expr): Likewise.
1806         * ax-gdb.h (gen_expr): Declaring function.
1807         (require_rvalue): Likewise.
1808         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
1809         (bkpt_probe_breakpoint_ops): New variable.
1810         (momentary_breakpoint_from_master): Set the `probe' value.
1811         (add_location_to_breakpoint): Likewise.
1812         (break_command_1): Using proper breakpoint_ops according to the
1813         argument passed by the user in the command line.
1814         (bkpt_probe_insert_location): New function.
1815         (bkpt_probe_remove_location): Likewise.
1816         (bkpt_probe_create_sals_from_address): Likewise.
1817         (bkpt_probe_decode_linespec): Likewise.
1818         (tracepoint_probe_create_sals_from_address): Likewise.
1819         (tracepoint_probe_decode_linespec): Likewise.
1820         (tracepoint_probe_breakpoint_ops): New variable.
1821         (trace_command): Using proper breakpoint_ops according to the
1822         argument passed by the user in the command line.
1823         (initialize_breakpoint_ops): Initializing breakpoint_ops for
1824         static probes on breakpoints and tracepoints.
1825         * breakpoint.h (struct bp_location) <probe>: New field.
1826         * cli-utils.c (skip_spaces_const): New function.
1827         (extract_arg): Likewise.
1828         * cli-utils.h (skip_spaces_const): Likewise.
1829         (extract_arg): Likewise.
1830         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
1831         * configure.ac: Append `stap-probe.o' to be generated when ELF
1832         support is present.
1833         * configure: Regenerate.
1834         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
1835         * elfread.c: Include `probe.h' and `arch-utils.h'.
1836         (probe_key): New variable.
1837         (elf_get_probes): New function.
1838         (elf_get_probe_argument_count): Likewise.
1839         (elf_evaluate_probe_argument): Likewise.
1840         (elf_compile_to_ax): Likewise.
1841         (elf_symfile_relocate_probe): Likewise.
1842         (stap_probe_key_free): Likewise.
1843         (elf_probe_fns): New variable.
1844         (elf_sym_fns): Add `sym_probe_fns' value.
1845         (elf_sym_fns_lazy_psyms): Likewise.
1846         (elf_sym_fns_gdb_index): Likewise.
1847         (_initialize_elfread): Initialize objfile cache for static
1848         probes.
1849         * gdb_vecs.h (struct probe): New forward declaration.
1850         (probe_p): New VEC declaration.
1851         * gdbarch.c: Regenerate.
1852         * gdbarch.h: Regenerate.
1853         * gdbarch.sh (stap_integer_prefix): New variable.
1854         (stap_integer_suffix): Likewise.
1855         (stap_register_prefix): Likewise.
1856         (stap_register_suffix): Likewise.
1857         (stap_register_indirection_prefix): Likewise.
1858         (stap_register_indirection_suffix): Likewise.
1859         (stap_gdb_register_prefix): Likewise.
1860         (stap_gdb_register_suffix): Likewise.
1861         (stap_is_single_operand): New function.
1862         (stap_parse_special_token): Likewise.
1863         (struct stap_parse_info): Forward declaration.
1864         * i386-tdep.c: Including headers needed to perform the parsing
1865         of SystemTap probes' arguments.
1866         (i386_stap_is_single_operand): New function.
1867         (i386_stap_parse_special_token): Likewise.
1868         (i386_elf_init_abi): Initializing proper fields used by SystemTap
1869         probes' arguments parser.
1870         * i386-tdep.h (i386_stap_is_single_operand): New function.
1871         (i386_stap_parse_special_token): Likewise.
1872         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
1873         * mipsread.c (ecoff_sym_fns): Likewise.
1874         * objfiles.c (objfile_relocate1): Support relocation for static
1875         probes.
1876         * parse.c (prefixify_expression): Remove static declaration.
1877         (initialize_expout): Likewise.
1878         (reallocate_expout): Likewise.
1879         * parser-defs.h (initialize_expout): Declare function.
1880         (reallocate_expout): Likewise.
1881         (prefixify_expression): Likewise.
1882         * ppc-linux-tdep.c: Including headers needed to perform the parsing
1883         of SystemTap probes' arguments.
1884         (ppc_stap_is_single_operand): New function.
1885         (ppc_stap_parse_special_token): Likewise.
1886         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
1887         probes' arguments parser.
1888         * probe.c: New file, for generic statically defined probe support.
1889         * probe.h: Likewise.
1890         * s390-tdep.c: Including headers needed to perform the parsing of
1891         SystemTap probes' arguments.
1892         (s390_stap_is_single_operand): New function.
1893         (s390_gdbarch_init): Initializing proper fields used by SystemTap
1894         probes' arguments parser.
1895         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
1896         * stap-probe.c: New file, for SystemTap probe support.
1897         * stap-probe.h: Likewise.
1898         * symfile.h: Include `gdb_vecs.h'.
1899         (struct sym_probe_fns): New struct.
1900         (struct sym_fns) <sym_probe_fns>: New field.
1901         * symtab.c (init_sal): Initialize `probe' field.
1902         * symtab.h (struct probe): Forward declaration.
1903         (struct symtab_and_line) <probe>: New field.
1904         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
1905         locations.
1906         (stop_tracing): Likewise.
1907         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
1908
1909 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
1910             Tom Tromey  <tromey@redhat.com>
1911
1912         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
1913         and to compile agent expressions.
1914         * infrun.c (siginfo_make_value): New argument `ignore'.
1915         (siginfo_funcs): New struct.
1916         (_initialize_infrun): New argument when calling
1917         `create_internalvar_type_lazy'.
1918         * thread.c (thread_id_make_value): New argument `ignore'.
1919         (thread_funcs): New struct.
1920         (_initialize_thread): New argument when calling
1921         `create_internalvar_type_lazy'.
1922         * tracepoint.c (sdata_make_value): New argument `ignore'.
1923         (sdata_funcs): New struct.
1924         (_initialize_tracepoint): New argument when calling
1925         `create_internalvar_type_lazy'.
1926         * value.c (make_value): New struct.
1927         (create_internalvar_type_lazy): New argument `data'.
1928         (compile_internalvar_to_ax): New function.
1929         (value_of_internalvar): Properly handling `make_value' case.
1930         (clear_internalvar): Likewise.
1931         (show_convenience): Adding `TRY_CATCH' block.
1932         * value.h (internalvar_make_value): Delete, replace by...
1933         (struct internalvar_funcs): ... this.
1934         (create_internalvar_type_lazy) <fun>: Delete argument.
1935         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
1936         (compile_internalvar_to_ax): New function.
1937         * windows-tdep.c (tlb_make_value): New argument `ignore'.
1938         (tlb_funcs): New struct.
1939         (_initialize_windows_tdep): New argument when calling
1940         `create_internalvar_type_lazy'.
1941
1942 2012-04-27  Mark Wielaard  <mjw@redhat.com>
1943
1944         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
1945         see whether it is an address or a constant offset from DW_AT_low_pc.
1946         (dwarf2_record_block_ranges): Likewise.
1947         (read_partial_die): Likewise.
1948
1949 2012-04-26  Mark Wielaard  <mjw@redhat.com>
1950
1951         * MAINTAINERS (Write After Approval): Add myself to the list.
1952
1953 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
1954
1955         * proc-utils.h (proc_prettyprint_signalset): New prototype.
1956         (proc_prettyprint_signal): Likewise.
1957         (proc_prettyprint_faultset): Likewise.
1958         (proc_prettyprint_fault): Likewise.
1959         (proc_prettyprint_actionset): Likewise.
1960         (proc_prettyprint_flags): Move to new proc-flags.c section.
1961         (proc_prettyfprint_flags): New prototype.
1962         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
1963         (proc_syscall, proc_cursig): Likewise.
1964         (proc_set_kill_on_last_close): Likewise.
1965         (proc_unset_kill_on_last_close): Likewise.
1966         (proc_set_watchpoint): Make static.
1967         (proc_delete_dead_threads): Likewise.
1968         (procfs_set_watchpoint): Likewise.
1969         (_initialize_procfs): Add prototype.
1970         * proc-events.c: Include proc-utils.h.
1971         (init_syscall_table): Make static.
1972         * proc-api.c (_initialize_proc_api): Add prototype.
1973         * proc-flags.c: Include proc-utils.h.
1974
1975 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
1976
1977         * configure.ac: Add AC_ARG_PROGRAM.
1978         * configure: Regenerate.
1979
1980 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1981
1982         Fix DW_AT_lower_bound defaults for DWARF-4+.
1983         * dwarf2read.c (read_subrange_type): Remove initialization of low and
1984         high.  New variable low_default_is_valid.  Implement DWARF-4+
1985         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
1986         no default by the DWARF standard.
1987
1988 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
1989             Maciej W. Rozycki  <macro@codesourcery.com>
1990
1991         * infrun.c (handle_inferior_event): Move the check for return
1992         trampolines ahead of the check for function trampolines.
1993         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
1994         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
1995         (mips_str_mips16_ret_stub): Likewise.
1996         (mips_str_call_fp_stub): Likewise.
1997         (mips_str_call_stub): Likewise.
1998         (mips_str_fn_stub): Likewise.
1999         (mips_str_pic): Likewise.
2000         (mips_in_frame_stub): New function.
2001         (mips_unwind_pc): Return the return address rather than the PC
2002         if the PC of an intermediate frame is inside a call thunk.
2003         (mips_is_stub_suffix): New function.
2004         (mips_is_stub_mode): Likewise.
2005         (mips_get_mips16_fn_stub_pc): Likewise.
2006         (mips_skip_mips16_trampoline_code): Update to handle all the
2007         currently generated stub types.  Don't recurse into __fn_stub
2008         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
2009         Use cooked register accesses.
2010         (mips_in_return_stub): Reintroduce function.
2011         (mips_skip_trampoline_code): Traverse trampolines recursively.
2012         (mips_gdbarch_init): Handle MIPS16 return trampolines.
2013
2014 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
2015
2016         GDB 7.4.1 released.
2017
2018 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
2019
2020         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
2021         * features/arm-with-m-vfp-d16.xml: New file. Describes
2022         Cortex-M with VFPv4-sp-d16 FPU register layout.
2023         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
2024         * features/arm-with-m-vfp-d16.c: New. Generated from above.
2025         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
2026         (arm-register_g_packet_guesses): Add vfp-d16 guess.
2027         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
2028
2029 2012-04-25  Doug Evans  <dje@google.com>
2030
2031         * cli/cli-decode.c (print_doc_line): Use stream instead of
2032         current_uiout.
2033
2034 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
2035
2036         * features/arm-with-iwmmxt.c: Regenerate.
2037         * features/arm-with-m-fpa-layout.c: Likewise.
2038         * features/arm-with-m.c: Likewise.
2039         * features/arm-with-neon.c: Likewise.
2040         * features/arm-with-vfpv2.c: Likewise.
2041         * features/arm-with-vfpv3.c: Likewise.
2042         * features/mips-dsp-linux.c: Likewise.
2043         * features/mips-linux.c: Likewise.
2044         * features/mips64-dsp-linux.c: Likewise.
2045         * features/mips64-linux.c: Likewise.
2046         * features/s390-linux32.c: Likewise.
2047         * features/s390-linux32v1.c: Likewise.
2048         * features/s390-linux32v2.c: Likewise.
2049         * features/s390-linux64.c: Likewise.
2050         * features/s390-linux64v1.c: Likewise.
2051         * features/s390-linux64v2.c: Likewise.
2052         * features/s390x-linux64.c: Likewise.
2053         * features/s390x-linux64v1.c: Likewise.
2054         * features/s390x-linux64v2.c: Likewise.
2055         * features/tic6x-c62x-linux.c: Likewise.
2056         * features/tic6x-c62x.c: Likewise.
2057         * features/tic6x-c64x-linux.c: Likewise.
2058         * features/tic6x-c64x.c: Likewise.
2059         * features/tic6x-c64xp-linux.c: Likewise.
2060         * features/tic6x-c64xp.c: Likewise.
2061         * target-descriptions.c: Only generate `field_type' and `type'
2062         variables when needed.
2063
2064 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
2065
2066         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
2067
2068 2012-04-25  Doug Evans  <dje@google.com>
2069
2070         Initial pass at Go language support.
2071         * NEWS: Mention Go.
2072         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
2073         go-valprint.c.
2074         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
2075         (YYFILES): Add go-exp.c.
2076         (YYOBJ): Add go-exp.o.
2077         (local-maintainer-clean): Delete go-exp.c.
2078         * defs.h (enum language): Add language_go.
2079         * dwarf2read.c: #include "go-lang.h".
2080         (fixup_go_packaging): New function.
2081         (process_full_comp_unit): Call it when processing Go CUs.
2082         (dwarf2_physname): Add Go support.
2083         (read_file_scope): Handle missing language spec for GNU Go.
2084         (set_cu_language): Handle DW_LANG_Go.
2085         * go-exp.y: New file.
2086         * go-lang.h: New file.
2087         * go-lang.c: New file.
2088         * go-typeprint.c: New file.
2089         * go-valprint.c: New file.
2090         * symtab.c: #include "go-lang.h".
2091         (symbol_set_language): Handle language_go.
2092         (symbol_find_demangled_name, symbol_set_names): Ditto.
2093         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
2094
2095 2012-04-24  Jim Meyering  <meyering@redhat.com>
2096
2097         avoid a few strncpy-induced buffer overruns
2098         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
2099         fname and psargs before trying to concatenate.
2100         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
2101         "name" before applying strchr.
2102
2103 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
2104
2105         * CONTRIBUTE: Use unified diff instead of context diff when
2106         generating patches.
2107
2108 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
2109
2110         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
2111         code.  Handle JR.HB correctly.
2112
2113 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
2114
2115         * mips-tdep.c
2116         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
2117         with the other MIPS16 helpers.
2118
2119 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
2120
2121         * observer.sh: Conditionally declare `args', thus cleaning up
2122         unused instances of this variable.
2123
2124 2012-04-24  Yao Qi  <yao@codesourcery.com>
2125
2126         Revert this patch to allow breakpoint always-inserted
2127         in record target.
2128         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
2129         * breakpoint.c: Include record.h.
2130         (breakpoints_always_inserted_mode): Return false when the record
2131         target is in use.
2132
2133         * breakpoint.c (iterate_over_bp_locations): New.
2134         * breakpoint.h: Declare.
2135         New typedef walk_bp_location_callback.
2136         * record.c (record_open): Call record_init_record_breakpoints.
2137         (record_sync_record_breakpoints): New.
2138         (record_init_record_breakpoints): New.
2139         * NEWS: Mention supporting breakpoint always-inserted mode in
2140         record target.
2141
2142 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
2143
2144         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
2145         any thread.
2146
2147 2012-04-24  Yao Qi  <yao@codesourcery.com>
2148
2149         * breakpoint.c (ep_is_catchpoint): Renamed to ...
2150         (is_catchpoint): ... it.
2151         (print_one_breakpoint_location): Caller update.
2152         * breakpoint.h: Update declaration.
2153
2154 2012-04-23  David S. Miller  <davem@davemloft.net>
2155
2156         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
2157
2158 2012-04-23  Tom Tromey  <tromey@redhat.com>
2159
2160         * buildsym.c (add_free_pendings): Remove.
2161         * buildsym.h (add_free_pendings): Remove.
2162
2163 2012-04-23  Doug Evans  <dje@google.com>
2164
2165         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
2166         attr.u.unsnd instead of attr.u.addr.
2167         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
2168         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
2169         DW_FORM_ref_udata.
2170         (dump_die_shallow): Update cases DW_FORM_ref_addr,
2171         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
2172         DW_FORM_ref_udata.
2173         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
2174
2175 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
2176
2177         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
2178         (mips_o32_return_value): Likewise.
2179         (mips_o64_return_value): Likewise.
2180
2181 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
2182
2183         * ada-lang.c (ada_evaluate_subexp): Add cases for
2184         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
2185         their treatment in eval.c.
2186
2187 2012-04-21  David S. Miller  <davem@davemloft.net>
2188
2189         * sparc-tdep.c (X_DISP10): Define.
2190         (sparc_analyze_control_transfer): Handle compare-and-branch.
2191
2192 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
2193
2194         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
2195         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
2196
2197 2012-04-20  Nigel Stephens  <nigel@mips.com>
2198             Maciej W. Rozycki  <macro@codesourcery.com>
2199
2200         * mips-tdep.c (mips_float_register_p): New function.
2201         (mips_convert_register_float_case_p): Use mips_float_register_p.
2202         (mips_register_type): Likewise.
2203         (mips_print_register): Likewise.
2204         (print_gp_register_row): Likewise.
2205         (mips_print_registers_info): Likewise.
2206
2207 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
2208
2209         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
2210         of mips16 symbols.
2211
2212 2012-04-20  Andrew Pinski  <apinski@cavium.com>
2213
2214         * MAINTAINERS (Write After Approval): Add myself to the list.
2215
2216 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2217
2218         * MAINTAINERS: Update my e-mail address.
2219
2220 2012-04-20  Pedro Alves  <palves@redhat.com>
2221
2222         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
2223         $srcdir.
2224         * configure: Regenerate.
2225
2226 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2227
2228         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
2229         declaration.
2230         * gdb_vecs.h: Declare `const_char_ptr' VEC.
2231
2232 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2233
2234         Fix compilation compatibility with python-2.4
2235         * python/py-type.c (convert_field): Cast ADDRSTRING for
2236         PyObject_SetAttrString as non-const.  New comment.
2237
2238 2012-04-19  Tom Tromey  <tromey@redhat.com>
2239
2240         * top.c (quit_target): Use all_cleanups.
2241         * main.c (captured_command_loop): Use all_cleanups.
2242         * exceptions.c (throw_exception): Use all_cleanups.
2243
2244 2012-04-19  Pedro Alves  <palves@redhat.com>
2245
2246         * Makefile.in (GNULIB_BUILDDIR): New.
2247         (LIBGNU, INCGNU, GNULIB_H): Adjust.
2248         (SUBDIRS): Add $(GNULIB_BUILDDIR).
2249         (CLEANDIRS). Remove gnulib/import.
2250         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
2251         (all-lib): Ditto.
2252         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
2253         (gnulib/import/Makefile): Replace gnulib/import with
2254         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
2255         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
2256         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
2257         acx_configure_dir.m4.
2258         * acinclude.m4: Include acx_configure_dir.m4.
2259         * acx_configure_dir.m4: New file.
2260         * aclocal.m4: Regenerate.
2261         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
2262         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
2263         (GNULIB): New variable.
2264         (GNULIB_STDINT_H): Adjust.
2265         (AC_OUTPUT): Don't output gnulib/Makefile.
2266         * gdb/defs.h: Include build-gnulib/config.h.
2267         * aclocal.m4: Regenerate.
2268         * config.in: Regenerate.
2269         * configure: Regenerate.
2270
2271         * gnulib/Makefile.in: New file.
2272         * gnulib/configure.ac: New file.
2273         * gnulib/aclocal.m4: New file.
2274         * gnulib/config.in: New file.
2275         * gnulib/configure: New file.
2276         * gnulib/: Re-run gnulib-tool to adjust.
2277
2278 2012-04-19  Doug Evans  <dje@google.com>
2279
2280         * cleanups.h (struct cleanup): Move to cleanups.c.
2281         (make_cleanup_dtor_ftype): New typedef.
2282         (make_cleanup_dtor): Use it.
2283         (ALL_CLEANUPS): Replace with ...
2284         (all_cleanups): ... this.  Declare.  All uses updated.
2285         * cleanups.c: #include "gdb_assert.h".
2286         (sentinel_cleanup): New static global.
2287         (SENTINEL_CLEANUP): Define.
2288         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
2289         (make_my_cleanup2): Assert result is non-NULL.
2290         (all_cleanups): New function.
2291         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
2292         of NULL.
2293
2294 2012-04-19  Pedro Alves  <palves@redhat.com>
2295
2296         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
2297         Adjust paths to gnulib imported files.
2298
2299 2012-04-19  Pedro Alves  <palves@redhat.com>
2300
2301         * gnulib/: Move whole directory ...
2302         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
2303         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
2304         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
2305         (aclocal_m4_deps): Adjust.
2306         * aclocal.m4: Regenerate.
2307         * configure: Regenerate.
2308         * configure.ac: Adjust AC_OUTPUT output.
2309
2310 2012-04-19  Yao Qi  <yao@codesourcery.com>
2311
2312         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
2313         (vec.o): New rule.
2314         * vec.c: Move it ...
2315         * common/vec.c: ... here.
2316         * vec.h: Move it ...
2317         * common/vec.h: ... here.
2318
2319 2012-04-19  Yao Qi  <yao@codesourcery.com>
2320
2321         * gdb-code-style.el: New.
2322
2323 2012-04-18  Pedro Alves  <palves@redhat.com>
2324
2325         Update gnulib from latest git.
2326         (639ea5ae15e39fe48d43e04864b2997301e4b969)
2327
2328         * gnulib/Makefile.am: Update.
2329         * gnulib/dummy.c: Update.
2330         * gnulib/extra/arg-nonnull.h: Update.
2331         * gnulib/extra/c++defs.h: Update.
2332         * gnulib/extra/update-copyright: Update.
2333         * gnulib/extra/warn-on-use.h: Update.
2334         * gnulib/inttypes.in.h: Update.
2335         * gnulib/m4/00gnulib.m4: Update.
2336         * gnulib/m4/extensions.m4: Update.
2337         * gnulib/m4/gnulib-cache.m4: Update.
2338         * gnulib/m4/gnulib-common.m4: Update.
2339         * gnulib/m4/gnulib-comp.m4: Update.
2340         * gnulib/m4/gnulib-tool.m4: Update.
2341         * gnulib/m4/include_next.m4: Update.
2342         * gnulib/m4/inttypes-pri.m4: Update.
2343         * gnulib/m4/inttypes.m4: Update.
2344         * gnulib/m4/longlong.m4: Update.
2345         * gnulib/m4/memchr.m4: Update.
2346         * gnulib/m4/memmem.m4: Update.
2347         * gnulib/m4/mmap-anon.m4: Update.
2348         * gnulib/m4/multiarch.m4: Update.
2349         * gnulib/m4/onceonly.m4: Update.
2350         * gnulib/m4/stddef_h.m4: Update.
2351         * gnulib/m4/stdint.m4: Update.
2352         * gnulib/m4/string_h.m4: Update.
2353         * gnulib/m4/warn-on-use.m4: Update.
2354         * gnulib/m4/wchar_h.m4: Update.
2355         * gnulib/m4/wchar_t.m4: Update.
2356         * gnulib/m4/wint_t.m4: Update.
2357         * gnulib/memchr.c: Update.
2358         * gnulib/memmem.c: Update.
2359         * gnulib/stddef.in.h: Update.
2360         * gnulib/stdint.in.h: Update.
2361         * gnulib/str-two-way.h: Update.
2362         * gnulib/string.in.h: Update.
2363         * gnulib/wchar.in.h: Update.
2364
2365         * gnulib/extra/arg-nonnull.h: Delete.
2366         * gnulib/extra/c++defs.h: Delete.
2367         * gnulib/extra/warn-on-use.h: Delete.
2368         * gnulib/m4/wchar_h.m4: Delete.
2369         * gnulib/m4/wint_t.m4: Delete.
2370         * gnulib/wchar.in.h: Delete.
2371
2372         * gnulib/extra/snippets/arg-nonnull.h: New.
2373         * gnulib/extra/snippets/c++defs.h: New.
2374         * gnulib/extra/snippets/warn-on-use.h: New.
2375
2376         * aclocal.m4: Regenerate.
2377         * config.in: Regenerate.
2378         * configure: Regenerate.
2379         * gnulib/Makefile.in: Regenerate.
2380
2381 2012-04-18  Pedro Alves  <palves@redhat.com>
2382
2383         Reimport the update-copyright module from gnulib
2384         (250b80067c1e1d8faa0c42fb572f721975b929c5).
2385
2386         * configure: Regenerate.
2387         * gnulib/Makefile.am: Update.
2388         * gnulib/Makefile.in: Regenerate.
2389         * gnulib/extra/update-copyright: Update.
2390         * gnulib/m4/gnulib-cache.m4: Update.
2391         * gnulib/m4/gnulib-comp.m4: Update.
2392
2393 2012-04-18  Tristan Gingold  <gingold@adacore.com>
2394
2395         * configure.ac (aix): Put -lpthread into libs.
2396         * configure: Regenerate.
2397
2398 2012-04-18  Tom Tromey  <tromey@redhat.com>
2399
2400         * linespec.c (convert_linespec_to_sals): Don't use
2401         SYMBOL_OBJ_SECTION.
2402         (compare_msymbols): Arguments are minsym_and_objfile, not
2403         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
2404
2405 2012-04-18  Pedro Alves  <palves@redhat.com>
2406
2407         Revert gnulib/ part of:
2408         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
2409         Copyright year update in most files (performed by copyright.sh).
2410
2411 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
2412
2413         Fix 64-bit constants on 32-bit hosts.
2414         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
2415         from unsigned long to ULONGEST.
2416         (read_signed_leb128): Change declaration return type from long to
2417         LONGEST.
2418         (dwarf2_const_value_attr): Change declaration parameter value from long
2419         to LONGEST.
2420         (dwarf2_compute_name): Change variable value from long to LONGEST.
2421         (read_unsigned_leb128): Change return type, variable result and some
2422         casts from unsigned long to ULONGEST.
2423         (read_signed_leb128): Change return type, variable result and some
2424         casts from long to LONGEST.
2425         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
2426         value from long to LONGEST.
2427         (dwarf2_const_value): Change variable value from long to LONGEST.
2428         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
2429         plongest and hex_string.
2430         * symtab.h (struct general_symbol_info): Change ivalue from long to
2431         LONGEST, remove the comment.
2432         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
2433         Change SYMBOL_VALUE format strings to use plongest and hex_string.
2434
2435 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
2436
2437         PR symtab/7259:
2438         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
2439         * ada-lang.c (ada_discrete_type_high_bound)
2440         (ada_discrete_type_low_bound): Fix function comment.  Use
2441         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
2442         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
2443         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
2444         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
2445         Use TYPE_FIELD_ENUMVAL.
2446         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
2447         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
2448         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
2449         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
2450         TYPE_CODE_ENUM.
2451         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
2452         * dwarf2read.c (process_enumeration_scope): Likewise.
2453         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
2454         field.bitpos.
2455         (class StructMainTypePrettyPrinter): Support also
2456         FIELD_LOC_KIND_ENUMVAL.
2457         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
2458         TYPE_CODE_ENUM.
2459         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
2460         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
2461         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
2462         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
2463         field enumval.
2464         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
2465         accommodate enumval.
2466         (struct call_site): Adjust loc_kind to accommodate enumval.
2467         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
2468         (TYPE_FIELD_ENUMVAL): New macros.
2469         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
2470         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
2471         TYPE_CODE_ENUM.
2472         * p-typeprint.c (pascal_type_print_base): Likewise.
2473         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
2474         enumval.
2475         * python/lib/gdb/types.py (make_enum_dict): Likewise.
2476         * python/py-type.c (convert_field): New variable addrstring.  Use
2477         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
2478         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
2479         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
2480         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
2481         TYPE_CODE_ENUM.
2482         * valprint.c (generic_val_print): Likewise.
2483
2484 2012-04-17  Doug Evans  <dje@google.com>
2485
2486         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
2487
2488         * dwarf2read.c: Whitespace fixes.
2489         (lookup_signatured_type): Tweak comment.
2490         (get_die_type_at_offset): Fix comment.
2491
2492 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
2493
2494         * xcoffread.c (xcoff_secnum_to_sections): New function.
2495         (secnum_to_section, secnum_to_bfd_section): Reimplement
2496         using xcoff_secnum_to_sections.  Rename "secnum" parameter
2497         into "n_scnum".
2498         (RECORD_MINIMAL_SYMBOL): Delete.
2499         (record_minimal_symbol): New function.
2500         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
2501         by call to record_minimal_symbol and set misc_func_recorded
2502         to 1.  Set last_csect_sec to the XCOFF section index instead
2503         of GDB's section_offset index.  Update calls to
2504         prim_record_minimal_symbol_and_info to pass the BFD section
2505         as well.
2506
2507 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
2508
2509         * xcoffread.c (read_xcoff_symtab): Delete variables
2510         last_csect_val and last_csect_sec and associated code.
2511
2512 2012-04-17  Doug Evans  <dje@google.com>
2513
2514         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
2515         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
2516         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
2517         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
2518
2519         * cleanups.h: New file.
2520         * cleanups.c: New file.
2521         * Makefile.in (SFILES): Add cleanups.c.
2522         (HFILES_NO_SRCDIR): Add cleanups.h.
2523         (COMMON_OBS): Add cleanups.o.
2524         * defs.h (struct cleanup): Moved to cleanups.h.
2525         (do_cleanups,do_final_cleanups): Ditto.
2526         (discard_cleanups,discard_final_cleanups): Ditto
2527         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
2528         (save_cleanups,save_final_cleanups): Ditto.
2529         (restore_cleanups,restore_final_cleanups): Ditto.
2530         (null_cleanup): Ditto.
2531         (make_my_cleanup,make_my_cleanup2): Ditto.
2532         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
2533         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
2534         (do_cleanups,do_final_cleanups): Ditto.
2535         (discard_cleanups,discard_final_cleanups): Ditto
2536         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
2537         (save_cleanups,save_final_cleanups): Ditto.
2538         (restore_cleanups,restore_final_cleanups): Ditto.
2539         (null_cleanup): Ditto.
2540         (make_my_cleanup,make_my_cleanup2): Ditto.
2541         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
2542
2543         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
2544         make_my_cleanup.
2545         (make_cleanup_dyn_string_delete): Ditto.
2546         (make_cleanup_ui_file_delete): Ditto.
2547         (make_cleanup_ui_out_redirect_pop): Ditto.
2548         (make_cleanup_free_section_addr_info): Ditto.
2549         (make_cleanup_restore_integer): Ditto.
2550         (make_cleanup_unpush_target): Ditto.
2551         (make_cleanup_value_free_to_mark): Ditto.
2552         (make_cleanup_value_free): Ditto.
2553         (make_cleanup_free_so): Ditto.
2554
2555 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2556
2557         New option "set debug auto-load".
2558         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
2559         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
2560         (auto_load_safe_path_vec_update)
2561         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
2562         if DEBUG_AUTO_LOAD.
2563         (file_is_auto_load_safe): New parameters debug_fmt and ....
2564         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
2565         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
2566         caller by explanatory string.
2567         (_initialize_auto_load): Register "set debug auto-load".
2568         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
2569         and ....
2570         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
2571         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
2572         by explanatory string.
2573         * main.c (captured_main): Likewise.
2574         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2575         (source_section_scripts): Likewise.
2576
2577 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2578
2579         New option "set auto-load safe-path".
2580         * NEWS: New commands "set auto-load safe-path"
2581         and "show auto-load safe-path".
2582         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
2583         (auto_load_safe_path, auto_load_safe_path_vec)
2584         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
2585         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
2586         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
2587         (source_gdb_script_for_objfile): New variable is_safe.  Call
2588         file_is_auto_load_safe.  Return if it is not.
2589         (struct loaded_script): New field loaded.
2590         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
2591         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
2592         output "Missing" to "No".
2593         (_initialize_auto_load): New variable cmd.  Initialize
2594         auto_load_safe_path.  Register "set auto-load safe-path",
2595         "show auto-load safe-path" and "add-auto-load-safe-path".
2596         * auto-load.h (maybe_add_script): Add parameter loaded.
2597         (file_is_auto_load_safe): New declaration.
2598         * config.in: Regenerate.
2599         * configure: Regenerate.
2600         * configure.ac: New parameters --with-auto-load-safe-path
2601         and --without-auto-load-safe-path.
2602         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
2603         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
2604         * main.c (captured_main): Check file_is_auto_load_safe for
2605         LOCAL_GDBINIT.
2606         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
2607         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
2608         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
2609         not.
2610
2611 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2612
2613         auto-load: Implementation.
2614         * NEWS: New descriptions for "info auto-load",
2615         "info auto-load gdb-scripts", "info auto-load python-scripts",
2616         "info auto-load local-gdbinit" and "info auto-load libthread-db".
2617         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
2618         and "show auto-load-scripts".  New description for "set auto-load",
2619         "show auto-load", "set auto-load gdb-scripts",
2620         "show auto-load gdb-scripts", "set auto-load python-scripts",
2621         "show auto-load python-scripts", "set auto-load local-gdbinit",
2622         "show auto-load local-gdbinit", "set auto-load libthread-db" and
2623         "show auto-load libthread-db".
2624         * auto-load.c: Remove include python/python-internal.h.  Add includes
2625         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
2626         cli/cli-setshow.h.
2627         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
2628         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
2629         (gdbpy_global_auto_load): Rename to ...
2630         (global_auto_load): ... here.
2631         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
2632         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
2633         (script_language_gdb, source_gdb_script_for_objfile): New.
2634         (struct loaded_script): New field language.
2635         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
2636         LANGUAGE.
2637         (maybe_add_script): Add parameter language.  Drop redundant
2638         entry.full_path initialization.  Initialize entry.language and
2639         (*slot)->language.
2640         (auto_load_objfile_script): Change parameter suffix to language.
2641         Remove the call of maybe_add_script.
2642         Call language->source_script_for_objfile.
2643         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
2644         New.
2645         (collect_matching_scripts): Adjust it for
2646         struct collect_matching_scripts_data.
2647         (auto_load_info_scripts_pattern_nl): New variable.
2648         (info_auto_load_scripts): Rename to ...
2649         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
2650         for struct collect_matching_scripts_data.
2651         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
2652         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
2653         (auto_load_show_cmdlist_get, info_auto_load_cmd)
2654         (auto_load_info_cmdlist_get): New.
2655         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
2656         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
2657         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
2658         "info auto-load local-gdbinit".
2659         * auto-load.h (struct script_language): New.
2660         (gdbpy_global_auto_load): Rename to ...
2661         (global_auto_load): ... here.
2662         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
2663         (auto_load_local_gdbinit_loaded): New declarations.
2664         (maybe_add_script): New parameter language.
2665         (auto_load_objfile_script): Change parameter suffix to language.
2666         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
2667         (auto_load_info_scripts, auto_load_set_cmdlist_get)
2668         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
2669         declarations.
2670         * linux-thread-db.c: Include auto-load.h and ctype.h.
2671         (auto_load_thread_db, show_auto_load_thread_db): New.
2672         (struct thread_db_info): New field filename.
2673         (delete_thread_db_info): Call xfree for FILENAME.
2674         (try_thread_db_load): Initialize FILENAME.
2675         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
2676         if !AUTO_LOAD_THREAD_DB.
2677         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
2678         (_initialize_thread_db): Install auto_load_thread_db
2679         as "set auto-load libthread-db" and install info_auto_load_libthread_db
2680         as "info auto-load libthread-db".
2681         * main.c (captured_main): Rename gdbpy_global_auto_load to
2682         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
2683         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
2684         (print_gdb_help): Extend the help for 'local init file'.
2685         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
2686         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
2687         (auto_load_scripts): Rename to ...
2688         (auto_load_python_scripts): ... here, update the comment.
2689         (gdbpy_load_auto_script_for_objfile): New declaration.
2690         (show_auto_load_python_scripts, script_language_python)
2691         (gdbpy_load_auto_script_for_objfile): New.
2692         (source_section_scripts): Refactor the code.
2693         (load_auto_scripts_for_objfile): Rename to ...
2694         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
2695         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
2696         (info_auto_load_python_scripts): New.
2697         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
2698         Rename "set auto-load-scripts" to "set auto-load python-scripts".
2699         Register "set auto-load-scripts" as its deprecated alias.  Register
2700         "info auto-load python-scripts".  Register "info auto-load-scripts" as
2701         its deprecated alias.
2702         (load_auto_scripts_for_objfile): Rename to ...
2703         (gdbpy_load_auto_scripts_for_objfile): ... here.
2704         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
2705         (gdbpy_load_auto_scripts_for_objfile): ... here.
2706
2707 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2708
2709         auto-load: Move files.
2710         * Makefile.in (SFILES): Add auto-load.c.
2711         (HFILES_NO_SRCDIR): Add auto-load.h.
2712         (COMMON_OBS): Add auto-load.o.
2713         (distclean): Change .gdbinit for gdb-gdb.gdb.
2714         * auto-load.c: New file, with parts from python/py-auto-load.c.
2715         * auto-load.h: New file, with parts from python/python.h.
2716         * configure: Regenerate.
2717         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
2718         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
2719         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
2720         * main.c: Include auto-load.h.
2721         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
2722         command.h, observer.h and progspace.h to auto-load.c.  Add include
2723         auto-load.h.
2724         (gdbpy_global_auto_load, struct auto_load_pspace_info)
2725         (struct loaded_script, auto_load_pspace_data)
2726         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
2727         (hash_loaded_script_entry, eq_loaded_script_entry)
2728         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
2729         (maybe_add_script): Move to auto-load.c.
2730         (source_section_scripts): Change maybe_add_script parameters passing,
2731         use script_not_found_warning_print.
2732         (clear_section_scripts, auto_load_objfile_script)
2733         (auto_load_new_objfile, loaded_script_ptr)
2734         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
2735         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
2736         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
2737         auto_load_new_objfile and info_auto_load_scripts initizations to
2738         auto-load.c.
2739         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
2740
2741 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2742
2743         Code cleanup.
2744         * charset.c (find_charset_names): Remove variables ix and elt.
2745         Use free_char_ptr_vec.
2746         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
2747         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
2748         debugdir_end.  New variable debugdir_len.
2749         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
2750         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
2751         declarations.
2752         * progspace.c (clear_program_space_solib_cache): Remove variables ix
2753         and elt.  Use free_char_ptr_vec.
2754         * source.c (add_path): Remove variables argv, arg and argv_index.
2755         New variables dir_vec, back_to, ix and name.
2756         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
2757         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
2758         no longer expecting DIRNAME_SEPARATOR.
2759         (openp): Remove variable p, p1 and len.  New variables dir_vec,
2760         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
2761         no longer expecting DIRNAME_SEPARATOR.
2762         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
2763         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
2764         debugdir_end.
2765         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
2766         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
2767         (dirnames_to_char_ptr_vec): New functions.
2768
2769 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2770
2771         Code cleanup.
2772         * source.c (add_path): Remove always true conditional 'p == 0' and
2773         unindent its code block.
2774
2775 2012-04-17  Pedro Alves  <palves@redhat.com>
2776
2777         * gdbtypes.h (FIELD_BITPOS): Rename to ...
2778         (FIELD_BITPOS_LVAL): ... this.
2779         (FIELD_BITPOS): New.
2780         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
2781         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
2782         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
2783         SET_FIELD_BITPOS.
2784         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
2785         SET_FIELD_BITPOS.
2786         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
2787         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
2788         * target-descriptions.c (tdesc_gdb_type): Adjust to use
2789         SET_FIELD_BITPOS.
2790
2791 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2792
2793         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
2794         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
2795         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
2796         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
2797         * jv-lang.c (java_link_class_type): Likewise, once.
2798         * stabsread.c (read_enum_type): Likewise.
2799
2800 2012-04-16  Yao Qi  <yao@codesourcery.com>
2801
2802         * common/agent.c (agent_run_command): Add one more parameter `len'.
2803         Update callers.
2804         * common/agent.h: Update declaration.
2805         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
2806         Update.
2807         (linux_child_static_tracepoint_markers_by_strid): Ditto.
2808
2809 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
2810
2811         PR mi/13393
2812         * value.c (value_actual_type): New function.
2813         * value.h (value_actual_type): New declaration.
2814         * varobj.c (update_type_if_necessary): New function.
2815         (varobj_create): Call value_actual_type instead of
2816         value_type.
2817         (install_dynamic_child): distinct changed and type changed MI variable
2818         objects.
2819         (update_dynamic_varobj_children): Updated for install_dynamic_child
2820         change.  All callers updated.
2821         (varobj_update): Support for MI variable object type change if
2822         the value changed and RTTI is used to determine the type.
2823         (create_child_with_value): Call value_actual_type instead of
2824         value_type.
2825         (adjust_value_for_child_access): Extended with a new parameter which
2826         specify whether the given value should be casted to enclosing type.
2827         All callers updated.
2828
2829 2012-04-14  Yao Qi  <yao@codesourcery.com>
2830
2831         Import gnulib module inttypes from git
2832         (250b80067c1e1d8faa0c42fb572f721975b929c5)
2833         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
2834         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
2835         gnulib/m4/inttypes-pri.m4
2836         * aclocal.m4, config.in, configure: Regenerated.
2837         * gnulib/Makefile.am: Update.
2838         * gnulib/Makefile.in: Update.
2839         * gnulib/m4/gnulib-cache.m4: Update.
2840         * gnulib/m4/gnulib-comp.m4: Update.
2841         * gnulib/inttypes.in.h: New.
2842         * gnulib/m4/inttypes-pri.m4: New.
2843         * gnulib/m4/inttypes.m4: New.
2844
2845 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
2846
2847         * infrun.c (resume): Update PC address to the real PC after
2848         preparing to do displaced stepping.
2849
2850 2012-04-12  Doug Evans  <dje@google.com>
2851
2852         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
2853         All callers updated.
2854
2855 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
2856
2857         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
2858
2859 2012-04-12  Doug Evans  <dje@google.com>
2860
2861         * dwarf2read.c (create_all_type_units): Renamed from
2862         create_debug_types_hash_table.  All callers updated.
2863
2864         * dwarf2read.c (create_signatured_type_table_from_index): Rename
2865         local type_sig to sig_type, type_offset to type_offset_in_tu.
2866         (hash_signatured_type): Renamed from hash_type_signature,
2867         all callers updated.
2868         (eq_signatured_type): Renamed from eq_type_signature,
2869         all callers updated.
2870         (create_debug_types_hash_table): Rename local type_sig to sig_type.
2871         (process_enumeration_scope): Ditto.
2872         (lookup_signatured_type_at_offset): Ditto.
2873         (load_full_type_unit, read_signatured_type): Ditto.
2874
2875 2012-04-12  Yao Qi  <yao@codesourcery.com>
2876
2877         * remote.c (async_remote_interrupt): Correct function name in
2878         debug message.
2879         (async_remote_interrupt_twice): Ditto.
2880
2881 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
2882
2883         * source.c (find_and_open_source): Consistently pass resulting
2884         full path through xfullpath.
2885
2886 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
2887
2888         Provide more specific displaced-stepping memory error message.
2889         * infrun.c (displaced_step_prepare): New variable status.  Call
2890         target_read_memory instead of read_memory, provide more specific
2891         error message.
2892
2893 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2894
2895         PR gdb/13901
2896         * darwin-nat.c (darwin_execvp): Revert previous patch.
2897
2898 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2899
2900         PR gdb/13901
2901         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
2902         in case of change.
2903
2904 2012-04-11  Tristan Gingold  <gingold@adacore.com>
2905
2906         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
2907         warning.
2908
2909 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
2910
2911         New command 'explore' which helps explore values and types in
2912         scope.
2913         * NEWS: Add an entry about the new 'explore' command.
2914         * data-directory/Makefile.in: Add gdb/command/explore.py
2915         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
2916         command using the GDB Python API.
2917
2918 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
2919
2920         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
2921         extension in jump target calculation.
2922
2923 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
2924
2925         * mips-tdep.c (mips32_next_pc): Handle JALX.
2926
2927 2012-04-10  Yao Qi  <yao@codesourcery.com>
2928
2929         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
2930
2931 2012-04-10  Yao Qi  <yao@codesourcery.com>
2932
2933         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
2934         and gnulib/m4/gnulib-tool.m4.
2935
2936 2012-04-10  Doug Evans  <dje@google.com>
2937
2938         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
2939         (load_partial_dies): Clarify comment.
2940         (find_partial_die): Support rereading type units.
2941         Clarify CU handling, if we know offset is in CU, don't search for the
2942         containing CU.  Add comment regarding memory waste.
2943
2944 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
2945
2946         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
2947         i386/x32-avx and i386/x32-avx-linux.
2948         (i386/x32-expedite): New.
2949         (i386/x32-linux-expedite): Likewise.
2950         (i386/x32-avx-expedite): Likewise.
2951         (i386/x32-avx-linux-expedite): Likewise.
2952         ($(outdir)/i386/x32.dat): Likewise.
2953         ($(outdir)/i386/x32-linux.dat): Likewise.
2954         ($(outdir)/i386/x32-avx.dat): Likewise.
2955         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
2956
2957         * features/i386/x32-avx-linux.xml: New file.
2958         * features/i386/x32-avx.xml: Likewise.
2959         * features/i386/x32-core.xml: Likewise.
2960         * features/i386/x32-linux.xml: Likewise.
2961         * features/i386/x32.xml: Likewise.
2962
2963         * features/i386/x32-avx-linux.c: New.  Generated.
2964         * features/i386/x32-avx.c: Likewise.
2965         * features/i386/x32-linux.c: Likewise.
2966         * features/i386/x32.c: Likewise.
2967         * regformats/i386/x32-avx-linux.dat: Likewise.
2968         * regformats/i386/x32-avx.dat: Likewise.
2969         * regformats/i386/x32-linux.dat: Likewise.
2970         * regformats/i386/x32.dat: Likewise.
2971
2972 2012-04-10  Tristan Gingold  <gingold@adacore.com>
2973
2974         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
2975         code to kill the inferior.
2976
2977 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
2978
2979         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2980         defines.
2981         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2982         defines.
2983         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
2984         (yyvsp): New defines.
2985         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2986         defines.
2987         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2988         defines.
2989         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2990         defines.
2991         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2992         defines.
2993         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
2994         defines.
2995
2996 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
2997
2998         * sparc64-tdep.c (sparc64_store_arguments)
2999         (sparc64_store_arguments): Fix coding style.
3000
3001 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
3002
3003         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
3004         complex floats, adjust some related comments and tighten a related
3005         assertion.
3006         (sparc64_extract_return_value): Handle complex floats.
3007
3008 2012-04-07  Doug Evans  <dje@google.com>
3009
3010         * dwarf2read.c (load_partial_dies): Change condition to assert.
3011
3012 2012-04-06  Doug Evans  <dje@google.com>
3013
3014         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
3015         "mov %rsp,%rbp".
3016
3017 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
3018
3019         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
3020         fencepost error.
3021         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
3022         (v850_gdbarch_init): Set `num_regs' as appropriate for the
3023         architecture.
3024
3025 2012-04-05  Keith Seitz  <keiths@redhat.com>
3026
3027         * linespec.c (decode_compound): Remove.
3028         (enum offset_relative_sign): New enum.
3029         (struct line_offset): New struct.
3030         (struct linespec): New struct.
3031         (struct linespec_state): Move file_symtabs,
3032         user_filename, and user_function into struct linespec.
3033         Make result an anonymous struct holding vectors of
3034         symbolp and minsym_and_objfile_d.
3035         Add language member.
3036         (enum ls_token_type): New enum.
3037         (linespec_keywords): New array.
3038         (struct ls_token): New struct.
3039         (struct ls_parser): New struct.
3040         (linespec_lexer_lex_number): New function.
3041         (linespec_lexer_lex_keyword): New function.
3042         (is_ada_operator): New function.
3043         (skip_quote_char): New function.
3044         (copy_token_string): New function.
3045         (is_closing_quote_enclosed): New function.
3046         (find_parameter_list_end): New function.
3047         (linespec_lexer_lex_string): New function.
3048         (linespec_lexer_lex_one): New function.
3049         (linespec_lexer_consume_token): New function.
3050         (linespec_lexer_peek_token): New function.
3051         (cplusplus_error): Remove unused function.
3052         (find_methods): Update comment.
3053         (find_toplevel_char): Return const.
3054         (is_objc_method_format): Remove unused function.
3055         (find_toplevel_string): New function.
3056         (is_linespec_boundary): Remove.
3057         (symbol_not_found_error): New function.
3058         (find_method_overload_end): Remove function.
3059         (unexpected_linespec_error): New function.
3060         (keep_name_info): Remove.
3061         (linespec_parse_line_offset): New function.
3062         (linespec_parse_basic): New function.
3063         (canonicalize_linespec): New function.
3064         (decode_line_internal): Remove.
3065         (create_sals_line_offset): New function adapted from
3066         decode_all_digits.
3067         (convert_linespec_to_sals): New function.
3068         (parse_linespec): New function.
3069         (linespec_parser_new): New function.
3070         (linespec_state_destructor): Change parameter type to
3071         struct linespec_state *.
3072         Add language parameter.
3073         Remove freeing of moved members.
3074         (linespec_parser_delete): New function.
3075         (decode_line_full): Use parse_linespec and linespec_parser_new.
3076         (decode_line_1): Likewise.
3077         (decode_indirect): Rename to ...
3078         (linespec_expression_to_pc): ... this and rewrite
3079         to simply find CORE_ADDR, storing this result for later
3080         conversion to SALs.
3081         (locate_first_half): Remove.
3082         (deocde_objc): Add parameter LS.
3083         Initialize new struct collect_info members.
3084         Handle minimal symbols, too.
3085         (decode_compound): Delete.
3086         (lookup_prefix_sym): Rewrite.
3087         (compare_msymbols): New function.
3088         (find_method): Rewrite.
3089         Do not call cplusplus_error.
3090         (symtabs_from_filename): Rewrite.
3091         (collect_function_symbols): Delete.
3092         (find_function_symbols): Rewrite without ARGPTR-style
3093         processing.
3094         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
3095         (decode_dollar): Adapted and renamed to ...
3096         (linespec_parse_variable): ... this.
3097         (find_linespec_symbols): New function.
3098         (decode_label): Adapted and renamed to ...
3099         (find_label_symbols): ... this.
3100         (decode_digits_list_mode): Add and use LS argument.
3101         (decode_digits_ordinary): Likewise.
3102         (collect_symbols): Do not collect SALs, just symbols and msymbols.
3103         If in list mode, allow any symbol class.  Otherwise, only
3104         permit LOC_BLOCK symbols.
3105         (minsym_found): Update comments.
3106         (search_minsyms_for_name): Do not convert the matching symbol
3107         into a SAL.  Simply push the symbol and objfile into the
3108         result vector.
3109         (decode_variable): Delete. Contents adapted into
3110         find_linespec_symbols.
3111
3112         * cp-support.c (SKIP_SPACE): Remove.
3113         (operator_tokens): Remove unused global.
3114         (cp_validate_operator): Remove.
3115         * cp-support.h (cp_validate_operator): Remove declaration.
3116
3117 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
3118
3119         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
3120         for TYPE_VPTR_FIELDNO.
3121         * valprint.c (valprint_check_validity): Make it global, move the
3122         function comment ...
3123         * value.h (valprint_check_validity): ... to this new declaration.
3124
3125 2012-04-02  Tristan Gingold  <gingold@adacore.com>
3126
3127         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
3128         the STATE32 api for i386 state.
3129         (i386_darwin_store_inferior_registers): Likewise.
3130
3131 2012-04-02  Tristan Gingold  <gingold@adacore.com>
3132
3133         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
3134         SS offset.
3135         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
3136         format_string.
3137
3138 2012-04-02  Tristan Gingold  <gingold@adacore.com>
3139
3140         PR gdb/13901
3141         * darwin-nat.c (darwin_execvp): Set binary preference.
3142
3143 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3144
3145         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
3146
3147 2012-03-30  Tom Tromey  <tromey@redhat.com>
3148
3149         * python/python.c (gdbpy_decode_line): Move cleanup creation out
3150         of TRY_CATCH.  Fix error handling.
3151         * python/py-value.c (convert_value_from_python): Move 'old'
3152         declaration to innermost scope.
3153
3154 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3155             Andrey Smirnov  <andrew.smirnov@gmail.com>
3156
3157         -Wshadow warning fix.
3158         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
3159         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
3160         Adjust code accordingly.
3161
3162 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3163
3164         * ada-lang.c (symbol_completion_add): Rename parameter
3165         "encoded" into "encoded_p".  Ajust code and documentation
3166         accordingly.
3167
3168 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3169             Andrey Smirnov  <andrew.smirnov@gmail.com>
3170
3171         -Wshadow warning fix.
3172         * ada-lang.c (symbol_completion_add): Rename parameter
3173         "wild_match" into wild_match_p.  Update code and documentation
3174         accordingly.
3175
3176 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3177
3178         * ada-lang.c (symbol_completion_match): Rename parameter
3179         "encoded" into "encoded_p".  Ajust code and documentation
3180         accordingly.
3181
3182 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3183             Andrey Smirnov  <andrew.smirnov@gmail.com>
3184
3185         -Wshadow warning fix.
3186         * ada-lang.c (symbol_completion_match): Rename parameter
3187         "wild_match" into "wild_match_p".  Adjust code and function
3188         documentation accordingly.
3189
3190 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3191             Andrey Smirnov  <andrew.smirnov@gmail.com>
3192
3193         -Wshadow warning fix.
3194         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
3195         "symbol_info" into "info".  Adjust code accordingly.
3196         (ada_lookup_symbol): Likewise.
3197
3198 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3199
3200         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
3201         of this function's documentation.
3202
3203 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3204             Andrey Smirnov  <andrew.smirnov@gmail.com>
3205
3206         -Wshadow warning fix.
3207         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
3208         variable into "wild_match_p".  Adjust code accordingly.
3209
3210 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3211             Andrey Smirnov  <andrew.smirnov@gmail.com>
3212
3213         -Wshadow warning fix.
3214         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
3215         parameter into "wild_match_p".  Adjust code accordingly.
3216         Document this parameter in the function description.
3217
3218 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3219             Andrey Smirnov  <andrew.smirnov@gmail.com>
3220
3221         -Wshadow warning fix.
3222         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
3223         "wild_match" parameter to "wild_match_p" (-Wshadow).
3224
3225 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3226
3227         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
3228         in function documentation.
3229
3230 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3231             Andrey Smirnov  <andrew.smirnov@gmail.com>
3232
3233         -Wshadow warning fix.
3234         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
3235         variable into wild_match_p.  Adjust code accordingly.
3236
3237 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3238             Andrey Smirnov  <andrew.smirnov@gmail.com>
3239
3240         * ada-valprint.c (ada_val_print_1): Move the code handling
3241         TYPE_CODE_ENUM inside its own lexical block.  Declare
3242         variables len and val there, instead of in the function's
3243         top level block.  Avoid declaring deref_val again in a way
3244         that shadows another variable of the same name declared
3245         in one of the up-level blocks.  Just re-use the up-level
3246         variable instead.
3247
3248 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3249
3250         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
3251         Replace block_found argument by symbol_info.  Adjust
3252         implementation accordingly.  Add function documentation.
3253         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
3254         Fix documentation.
3255         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
3256         * ada-exp.y (write_object_renaming): Adjust to new
3257         ada_lookup_encoded_symbol API.
3258
3259 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
3260
3261         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
3262         documentation.
3263
3264 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
3265
3266         * v850-tdep.c: Add the enum values for mpu and fpu registers.
3267         (v850_register_name): Add the mpu and fpu register names.
3268         (v850e_register_name): Add the mpu and fpu register names.
3269         (v850e2_register_name): New function.
3270         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
3271         bfd_mach_v850e2v3.
3272
3273 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
3274
3275         * NEWS: Add entry for Ada varobj support.
3276
3277 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
3278
3279         * varobj.c (default_value_is_changeable_p): New function,
3280         extracted from varobj_value_is_changeable_p.  Add declaration.
3281         (ada_value_is_changeable_p): New function, extracted from
3282         varobj_value_is_changeable_p.  Add declaration.
3283         (struct language_specific): New field "value_is_changeable_p".
3284         (languages): Add entries for new field.
3285         (varobj_create): Set language before calling install_new_value.
3286         (varobj_value_is_changeable_p): Reimplement to call the varobj's
3287         "value_is_changeable_p" language callback.
3288
3289 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
3290
3291         * ada-varobj.h, ada-varobj.c: New files.
3292         * Makefile.in (SFILES): Add ada-varobj.c.
3293         (HFILES_NO_SRCDIR): Add ada-varobj.h.
3294         (COMMON_OBS): Add ada-varobj.o.
3295
3296 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
3297
3298         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
3299         (struct language_specific): New field "value_has_mutated".
3300         (languages): Set field "value_has_mutated" in each entry of array.
3301         (varobj_value_has_mutated): New function.
3302         (varobj_udpdate): Add handling of type mutation.
3303         (value_of_root): Add handling of type mutation.
3304         (ada_value_has_mutated): New function.
3305
3306 2012-03-28  Pedro Alves  <palves@redhat.com>
3307
3308         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
3309         Always supply $fr0 as 0.0 and $fr1 as 1.0.
3310
3311 2012-03-28  Tom Tromey  <tromey@redhat.com>
3312
3313         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
3314         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
3315         before returning.
3316
3317 2012-03-28  Tom Tromey  <tromey@redhat.com>
3318
3319         * .dir-locals.el: New file.
3320
3321 2012-03-28  Pedro Alves  <palves@redhat.com>
3322
3323         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
3324
3325 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
3326
3327         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
3328         handling for r0.
3329
3330 2012-03-27  Pedro Alves  <palves@redhat.com>
3331
3332         Eliminate struct ui_stream.
3333
3334         * ui-out.h (struct ui_stream): Delete.
3335         (ui_out_field_stream): Adjust prototype.
3336         (ui_out_stream_new, ui_out_stream_delete)
3337         (make_cleanup_ui_out_stream_delete): Delete declarations.
3338         * ui-out.c (ui_out_field_stream): Change prototype to take a
3339         ui_file instead of a ui_stream.  Adjust.
3340         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
3341         (make_cleanup_ui_out_stream_delete): Delete.
3342         * breakpoint.c (print_breakpoint_location)
3343         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
3344         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
3345         * disasm.c (dump_insns): Ditto.
3346         (do_mixed_source_and_assembly, do_assembly_only): Adjust
3347         prototype.
3348         (gdb_disassembly): Use ui_file/mem_fileopen instead of
3349         ui_stream/ui_out_stream_new.
3350         * infcmd.c (print_return_value): Ditto.
3351         * osdata.c (info_osdata_command): Don't allocate a local
3352         ui_stream.
3353         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
3354         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
3355         * tracepoint.c (print_one_static_tracepoint_marker): Don't
3356         allocate a local ui_stream.
3357         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
3358         instead of ui_stream/ui_out_stream_new.
3359         (list_args_or_locals): Don't allocate a local ui_stream.
3360         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
3361         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
3362         ui_stream/ui_out_stream_new.
3363         * cli/cli-setshow.c (do_setshow_command): Ditto.
3364
3365 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
3366
3367         * arm-linux-tdep.c (arm_linux_init_abi): Call
3368         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
3369         * arm-tdep.c (arm_process_record): New function.
3370         (deallocate_reg_mem): New function.
3371         (decode_insn): New function.
3372         (thumb_record_branch): New function.
3373         (thumb_record_ldm_stm_swi(): New function.
3374         (thumb_record_misc): New function.
3375         (thumb_record_ld_st_stack): New function.
3376         (thumb_record_ld_st_imm_offset): New function.
3377         (thumb_record_ld_st_reg_offset(): New function.
3378         (thumb_record_add_sub_cmp_mov): New function.
3379         (thumb_record_shift_add_sub): New function.
3380         (arm_record_coproc_data_proc): New function.
3381         (arm_record_coproc): New function.
3382         (arm_record_b_bl): New function.
3383         (arm_record_ld_st_multiple): New function.
3384         (arm_record_ld_st_reg_offset): New function.
3385         (arm_record_ld_st_imm_offset): New function.
3386         (arm_record_data_proc_imm): New function.
3387         (arm_record_data_proc_misc_ld_str): New function.
3388         (arm_record_extension_space): New function.
3389         (arm_record_strx): New function.
3390         (sbo_sbz): New function.
3391         (struct insn_decode_record): New structure for arm insn record.
3392         (REG_ALLOC): New macro for reg allocations.
3393         (MEM_ALLOC): New macro for memory allocations.
3394         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
3395
3396 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
3397
3398         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
3399         (store_register): Likewise.
3400
3401 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
3402
3403         * MAINTAINERS (Write After Approval): Add myself to the list.
3404
3405 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
3406
3407         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
3408         Describe also the option "auto".
3409
3410 2012-03-22  Richard Henderson  <rth@redhat.com>
3411
3412         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
3413         * sparc-nat.c (sparc_xfer_wcookie): Make static.
3414
3415 2012-03-22  Richard Henderson  <rth@redhat.com>
3416
3417         * jit.c (jit_read_code_entry): Compute alignment and offset of
3418         int64_t member before computing entry_size.
3419
3420 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
3421
3422         Python scripting: Add new method Value.referenced_value to
3423         gdb.Value which can dereference pointer as well as reference
3424         values.
3425         * NEWS: Add entry under 'Python scripting' about the new method
3426         Value.referenced_value on gdb.Value objects.
3427         * python/py-value.c (valpy_referenced_value): New function
3428         defining a new method on gdb.Value objects which can dereference
3429         pointer and reference values.
3430
3431 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
3432
3433         * MAINTAINERS (Write After Approval): Add myself to the list.
3434
3435 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
3436
3437         * symtab.c (skip_prologue_sal): Change test to check for "main()"
3438         in addition to "main".
3439
3440 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
3441
3442         * expression.h (op_name): Add declaration.
3443         * expprint.c (op_name): Remove declaration.  Make non-static.
3444         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
3445
3446 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
3447
3448         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
3449         of struct siginfo.
3450         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
3451         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
3452         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
3453         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
3454         (linux_nat_get_siginfo): Likewise.
3455         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
3456         (linux_nat_get_siginfo): Likewise.
3457         * linux-tdep.c (linux_get_siginfo_type): Likewise.
3458         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
3459         * procfs.c (gdb_siginfo_t): Likewise.
3460
3461 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
3462
3463         * .gitignore: Ignore more files.
3464
3465 2012-03-20  Pedro Alves  <palves@redhat.com>
3466
3467         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
3468         returns.
3469
3470 2012-03-20  Yao Qi  <yao@codesourcery.com>
3471
3472         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
3473         comment.
3474
3475 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3476
3477         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
3478         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
3479         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
3480         sect_offset.
3481         * dwarf2expr.h (cu_offset, sect_offset): New types.
3482         (struct dwarf_expr_context_funcs) <dwarf_call>
3483         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
3484         sect_offset.
3485         (struct dwarf_expr_context) <len>: Improve the comment.
3486         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
3487         cu_offset and sect_offset.
3488         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
3489         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
3490         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
3491         * dwarf2loc.h: Include dwarf2expr.h.
3492         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
3493         and sect_offset.
3494         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
3495         Improve the comment.
3496         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
3497         (struct signatured_type, struct line_header, struct partial_die_info)
3498         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
3499         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
3500         (get_die_type_at_offset, create_cus_from_index)
3501         (create_signatured_type_table_from_index, dw2_get_file_names)
3502         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
3503         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
3504         (create_debug_types_hash_table, process_psymtab_comp_unit)
3505         (load_partial_comp_unit, create_all_comp_units)
3506         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
3507         (load_full_comp_unit, dwarf2_physname, read_import_statement)
3508         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
3509         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
3510         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
3511         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
3512         (find_partial_die, read_attribute_value, lookup_die_type)
3513         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
3514         (is_ref_attr): New function comment.
3515         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
3516         Use cu_offset and sect_offset.
3517         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
3518         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
3519         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
3520         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
3521         (offset_and_type_hash, offset_and_type_eq, set_die_type)
3522         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
3523         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
3524         sect_offset.
3525
3526 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3527
3528         Code cleanup.
3529         * python/py-auto-load.c (source_section_scripts): New variable back_to.
3530         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
3531         with xfree.
3532         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
3533
3534 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3535
3536         * NEWS: Describe new options --init-command=FILE, -ix and
3537         --init-eval-command=COMMAND, -iex.
3538         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
3539         CMDARG_INIT_COMMAND.
3540         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
3541         "init-command", "init-eval-command", "ix" and "iex" to the variable
3542         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
3543         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
3544         (print_gdb_help): Describe --init-command=FILE, -ix and
3545         --init-eval-command=COMMAND, -iex.
3546
3547 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3548
3549         Code cleanup.
3550         * main.c (struct cmdarg): Move it here from main.  Add more comments.
3551         (cmdarg_s, VEC (cmdarg_s)): New.
3552         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
3553         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
3554         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
3555         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
3556         of CMDARG.
3557
3558 2012-03-19  Tom Tromey  <tromey@redhat.com>
3559
3560         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
3561
3562 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3563
3564         PR symtab/13777
3565         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
3566         GCC >=4.5.
3567
3568 2012-03-16  Chris January  <chris.january@allinea.com>
3569
3570         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
3571         of clear.
3572
3573 2012-03-16  Chris January  <chris.january@allinea.com>
3574
3575         * source.c (add_path): Use memmove instead of strcpy because the
3576         strings overlap.
3577
3578 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
3579
3580         * value.h (set_value_parent): Add declaration.
3581         * value.c (set_value_parent): New function.
3582         (value_address): If VALUE->PARENT is not NULL, then use it as
3583         the base address instead of VALUE->LOCATION.address.
3584         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
3585         the same as OBJ's address.  Adjust V's offset accordingly.
3586         Set V's parent.
3587
3588 2012-03-16  Gary Benson  <gbenson@redhat.com>
3589
3590         PR breakpoints/10738
3591         * dwarf2read.c (use_deprecated_index_sections): New global.
3592         (struct partial_die_info): New member may_be_inlined.
3593         (read_partial_die): Set may_be_inlined where appropriate.
3594         (add_partial_subprogram): Add partial symbols for partial
3595         DIEs that may be inlined.
3596         (new_symbol_full): Add inlined subroutines to the current
3597         scope.
3598         (write_psymtabs_to_index): Bump version number.
3599         (dwarf2_read_index): Read only version 6 indices unless
3600         use_deprecated_index_sections is set.
3601         * linespec.c (symbol_and_data_callback): New structure.
3602         (iterate_inline_only): New function.
3603         (iterate_over_all_matching_symtabs): New argument
3604         "include_inline".  If nonzero, also call the callback for
3605         symbols representing inlined subroutines.
3606         (lookup_prefix_sym): Pass extra argument to the above.
3607         (find_function_symbols): Likewise.
3608         (add_matching_symbols_to_info): Likewise.
3609         * NEWS: Mention that GDB can now set breakpoints on inlined
3610         functions.
3611
3612 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
3613
3614         * p-typeprint.c (pascal_type_print_method_args):
3615         Fix display of parameter of methods.
3616
3617 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
3618
3619         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
3620         Add missing prototype.
3621
3622 2012-03-16  Yao Qi  <yao@codesourcery.com>
3623             Jan Kratochvil  <jan.kratochvil@redhat.com>
3624
3625         Fix false compilation warning.
3626         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
3627
3628 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
3629             Pedro Alves  <pedro@codesourcery.com>
3630
3631         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
3632         (arm_register_g_packet_guesses): New function.
3633         (arm_gdbarch_init): Don't force a target description with
3634         registers when the executable is detected as M-profile.  Instead
3635         set gdbarch->tdep->is_m.  Register `g' packet guesses.
3636         (_initialize_arm_tdep): Initialize the new target description.
3637         * features/arm-with-m-fpa-layout.xml: New description.
3638         * features/arm-with-m-fpa-layout.c: New, generated.
3639
3640 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
3641
3642         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
3643         Update function description.
3644         (insert_bp_location): Do not wipe bl->target_info out.
3645         * mem-break.c: #include "gdb_string.h".
3646         (default_memory_insert_breakpoint): Do not call target_read_memory
3647         with a pointer to the breakpoint's shadow_contents buffer.  Use
3648         a local buffer instead.
3649         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
3650
3651 2012-03-15  Tom Tromey  <tromey@redhat.com>
3652
3653         * NEWS: Mention "info vtbl", not "info vtable".
3654         * cp-support.c (info_vtbl_command): Fix comment.
3655         (_initialize_cp_support): Fix text.
3656
3657 2012-03-15  Tom Tromey  <tromey@redhat.com>
3658
3659         * cp-valprint.c (cp_print_value_fields): Use
3660         print_function_pointer_address for vtable slot.
3661
3662 2012-03-15  Tom Tromey  <tromey@redhat.com>
3663
3664         * gnu-v3-abi.c (struct value_and_voffset): New.
3665         (hash_value_and_voffset, eq_value_and_voffset)
3666         (compare_value_and_voffset, compute_vtable_size)
3667         (print_one_vtable, gnuv3_print_vtable): New functions.
3668         (init_gnuv3_ops): Initialize 'print_vtable' field.
3669         * cp-support.c (info_vtbl_command): New function.
3670         (_initialize_cp_support): Add "info vtbl".
3671         * cp-abi.h (cplus_print_vtable): Declare.
3672         (struct cp_abi_ops) <print_vtable>: New field.
3673         * cp-abi.c (cplus_print_vtable): New function.
3674         * NEWS: Update.
3675
3676 2012-03-15  Tom Tromey  <tromey@redhat.com>
3677
3678         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
3679         iterate_over_symbols.
3680
3681 2012-03-14  Doug Evans  <dje@google.com>
3682
3683         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
3684         DW_OP_GNU_parameter_ref.
3685
3686 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
3687
3688         Fix double prompt of 'interpreter-exec mi'.
3689         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
3690         (mi_interpreter_resume): use it.
3691         (mi_execute_command_input_handler): New function.
3692         * mi/mi-main.c (mi_execute_command): Move prompt printing to
3693         mi_execute_command_input_handler.
3694
3695 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
3696
3697         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
3698         prototype.
3699         (darwin_debug_port_info): Make static.
3700         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
3701         * machoread.c (_initialize_machoread): Add prototype.
3702         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
3703         (i386_darwin_set_control, i386_darwin_get_control)
3704         i386_darwin_dr_set_addr, i386_darwin_get_addr)
3705         i386_darwin_get_status, i386_darwin_get_control):
3706         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
3707
3708 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
3709
3710         * ax-gdb.c (gen_usual_unary): Remove special handling of
3711         enum and bool types.
3712
3713 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
3714
3715         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
3716
3717 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
3718
3719         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
3720
3721 2012-03-13  Chris January  <chris.january@allinea.com>
3722
3723         * aix-thread.c (fill_sprs): Store the floating point registers
3724         at the correct offsets into vals.
3725
3726 2012-03-13  Doug Evans  <dje@google.com>
3727
3728         * NEWS: Mention symbol-reloading has been deleted.
3729         * symfile.c (symbol_reloading): Delete.
3730         (show_symbol_reloading): Delete.
3731         (_initialize_symfile): Delete set/show symbol-reloading.
3732
3733         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
3734         read_in_chain until we have successfully read it in.
3735         (load_full_comp_unit): Ditto.
3736         (read_signatured_type): Add comment.
3737
3738 2012-03-13  Chris January  <chris.january@allinea.com>
3739
3740         * stabsread.c (fix_common_block): Change type of valu argument
3741         to CORE_ADDR.
3742
3743 2012-03-13  Chris January  <chris.january@allinea.com>
3744
3745         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
3746         instruction.
3747
3748 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3749
3750         * common/linux-procfs.c (linux_proc_get_int): New, from
3751         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
3752         field.
3753         (linux_proc_get_tgid): Only call linux_proc_get_int.
3754         (linux_proc_get_tracerpid): New.
3755         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
3756         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
3757         linux_proc_pid_has_state.
3758         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
3759         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
3760         (linux_ptrace_attach_warnings): New.
3761         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
3762         New declaration.
3763         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
3764         (linux_nat_attach): New variables ex, buffer, message and message_s.
3765         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
3766
3767 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3768
3769         * Makefile.in (linux-ptrace.o): New.
3770         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
3771         from linux-nat.c.
3772         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
3773         * common/linux-ptrace.c: New file.
3774         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
3775         * config/arm/linux.mh: Likewise.
3776         * config/i386/linux.mh: Likewise.
3777         * config/i386/linux64.mh: Likewise.
3778         * config/ia64/linux.mh: Likewise.
3779         * config/m32r/linux.mh: Likewise.
3780         * config/m68k/linux.mh: Likewise.
3781         * config/mips/linux.mh: Likewise.
3782         * config/pa/linux.mh: Likewise.
3783         * config/powerpc/linux.mh: Likewise.
3784         * config/powerpc/ppc64-linux.mh: Likewise.
3785         * config/powerpc/spu-linux.mh: Likewise.
3786         * config/s390/s390.mh: Likewise.
3787         * config/sparc/linux.mh: Likewise.
3788         * config/sparc/linux64.mh: Likewise.
3789         * config/xtensa/linux.mh: Likewise.
3790         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
3791         common/linux-procfs.c.
3792         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
3793
3794 2012-03-13  Hui Zhu  <teawater@gmail.com>
3795             Pedro Alves  <palves@redhat.com>
3796
3797         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
3798         CREATE_BREAKPOINT_FLAGS_INSERTED.
3799         (create_breakpoint_sal, create_breakpoints_sal)
3800         (base_breakpoint_create_breakpoints_sal)
3801         (tracepoint_create_breakpoints_sal)
3802         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
3803         down.
3804         (break_command_1, handle_gnu_v3_exceptions, trace_command)
3805         (ftrace_command, strace_command): Adjust.
3806         (create_tracepoint_from_upload): Pass
3807         CREATE_BREAKPOINT_FLAGS_INSERTED.
3808         * breakpoint.h (enum breakpoint_create_flags): New.
3809         (create_breakpoint): New flags parameter.
3810         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3811         * python/py-breakpoint.c (bppy_init): Adjust.
3812         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
3813         * spu-tdep.c (spu_catch_start): Adjust.
3814
3815 2012-03-13  Pedro Alves  <palves@redhat.com>
3816             Hui Zhu  <teawater@gmail.com>
3817             Yao Qi  <yao@codesourcery.com>
3818
3819         * remote.c (struct remote_state): New field `starting_up'.
3820         (remote_start_remote): Set and clear it.
3821         (remote_can_download_tracepoint): If starting up, return false.
3822
3823 2012-03-13  Yao Qi  <yao@codesourcery.com>
3824
3825         * inferior.h (struct inferior): Remove fields any_syscall_count,
3826         syscalls_counts and total_syscalls_count.  Move them to new
3827         struct catch_syscall_inferior_data in breakpoint.c.
3828         * breakpoint.c: Call DEF_VEC_I(int).
3829         (struct catch_syscall_inferior_data): New.
3830         (get_catch_syscall_inferior_data): New.
3831         (catch_syscall_inferior_data_cleanup): New.
3832         (insert_catch_syscall): Update to access data in
3833         struct catch_syscall_inferior_data.
3834         (insert_catch_syscall): Likewise.
3835         (remove_catch_syscall): Likewise.
3836         (remove_catch_syscall): Likewise.
3837         (is_syscall_catchpoint_enabled): Likewise.
3838         (add_catch_command): Likewise.
3839         (_initialize_breakpoint): Register cleanup.
3840         * breakpoint.h: Removed DEF_VEC_I(int).
3841         * dwarf2loc.c: Call DEF_VEC_I(int).
3842         * mi/mi-main.c: Likewise.
3843
3844 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
3845
3846         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
3847
3848 2012-03-12  Chris January  <chris.january@allinea.com>
3849
3850         * aix-thread.c (_initialize_aix_thread): Add prototype.
3851         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
3852         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
3853
3854 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
3855
3856         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
3857         include of "amd64-nat.h".
3858
3859 2012-03-12  Tom Tromey  <tromey@redhat.com>
3860
3861         * buildsym.c (record_pending_block): Now static.
3862         * buildsym.h: (record_pending_block): Remove.
3863
3864 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
3865
3866         * amd64bsd-nat.c: Include amd64bsd-nat.h.
3867
3868 2012-03-09  Tom Tromey  <tromey@redhat.com>
3869
3870         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
3871         producer_is_gxx_lt_4_6>: New fields.
3872         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
3873
3874 2012-03-09  Tom Tromey  <tromey@redhat.com>
3875
3876         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
3877
3878 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3879
3880         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
3881         prototype.
3882
3883 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3884
3885         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
3886
3887 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3888
3889         Fix -Wmissing-prototypes build.
3890         * arm-linux-nat.c (get_thread_id): Make it static.
3891         * xtensa-linux-nat.c (get_thread_id): Likewise.
3892
3893 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3894
3895         * server.c (process_point_options): If a conditional expression
3896         is found, only print a message if remote_debug is nonzero.
3897
3898 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
3899
3900         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
3901         of internal error for unknown/unsupported types.
3902
3903 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3904
3905         Fix CU relative vs. absolute DIE offsets.
3906         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
3907         offset to offset_in_cu.
3908         * dwarf2read.c (process_enumeration_scope): Add CU offset to
3909         TYPE_OFFSET.
3910         (dwarf2_fetch_die_location_block): Rename parameter offset to
3911         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
3912
3913 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3914
3915         * libunwind-frame.c: Rename to ...
3916         * ia64-libunwind-tdep.c: ... here.
3917         * libunwind-frame.h: Rename to ...
3918         * ia64-libunwind-tdep.h: ... here.
3919         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
3920         ia64-libunwind-tdep.h.
3921         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
3922         * README (--with-libunwind): Rename to ...
3923         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
3924         * config.in: Regenerate.
3925         * configure: Regenerate.
3926         * configure.ac: New option --with-libunwind-ia64, make the
3927         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
3928         Remove AC_DEFINE for HAVE_LIBUNWIND.
3929         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
3930         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
3931         Rename libunwind-frame in the general comment.
3932         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
3933         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
3934         Move forward declarations inside #ifndef.  Rename libunwind-frame in
3935         the general comment.
3936         * ia64-tdep.c: Rename libunwind-frame.h #include to
3937         ia64-libunwind-tdep.h.
3938         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
3939         (ia64_libunwind_descr): Rename libunwind-frame to
3940         ia64-libunwind-tdep in these function comments.
3941         * ia64-tdep.h: Rename libunwind-frame.h #include to
3942         ia64-libunwind-tdep.h.
3943         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
3944         ia64-libunwind-tdep in that data comment.
3945
3946 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3947
3948         * libunwind-frame.h (struct frame_unwind): New declaration.
3949
3950 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
3951
3952         * breakpoint.c (_initialize_breakpoint): Fix error in help of
3953         "set breakpoint condition-evaluation" command.
3954
3955 2012-03-08  Tristan Gingold  <gingold@adacore.com>
3956
3957         * sparc-stub.c: Move to stubs/
3958         * sh-stub.c: Likewise.
3959         * m68k-stub.c: Likewise.
3960         * m32r-stub.c: Likewise.
3961         * i386-stub.c: Likewise.
3962
3963 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
3964
3965         * m68klinux-tdep.c (m68k_linux_init_abi): Register
3966         linux_get_siginfo_type.
3967
3968         * m68klinux-nat.c: Include "gdb_proc_service.h".
3969         (PTRACE_GET_THREAD_AREA): Define.
3970         (ps_get_thread_area): New function.
3971
3972 2012-03-08  Yao Qi  <yao@codesourcery.com>
3973
3974         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
3975         `xsnprintf'.
3976         (remote_query_attached): Likewise.
3977         (remote_static_tracepoint_marker_at): Likewise.
3978         (remote_set_permissions): Likewise.
3979         (remote_detach_1, extended_remote_attach_1): Likewise.
3980         (send_g_packet, remote_vkill): Likewise.
3981         (extended_remote_disable_randomization): Likewise.
3982         (remote_add_target_side_condition): Likewise.
3983         (remote_insert_breakpoint): Likewise.
3984         (remote_remove_breakpoint): Likewise.
3985         (remote_insert_watchpoint): Likewise.
3986         (remote_remove_watchpoint): Likewise.
3987         (remote_insert_hw_breakpoint): Likewise.
3988         (remote_insert_hw_breakpoint): Likewise.
3989         (remote_remove_hw_breakpoint): Likewise.
3990         (remote_download_command_source): Likewise.
3991         (remote_download_tracepoint): Likewise.
3992         (remote_download_trace_state_variable): Likewise.
3993         (remote_disable_tracepoint): Likewise.
3994         (remote_trace_set_readonly_regions): Likewise.
3995         (remote_get_tracepoint_status): Likewise.
3996         (remote_trace_find): Likewise.
3997         (remote_get_trace_state_variable_value): Likewise.
3998         (remote_set_disconnected_tracing): Likewise.
3999         (remote_set_circular_trace_buffer): Likewise.
4000         (remote_get_min_fast_tracepoint_insn_len): Likewise.
4001         (remote_use_agent): Likewise.
4002         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
4003         Update callers.
4004
4005 2012-03-07  Pedro Alves  <palves@redhat.com>
4006
4007         * NEWS: Mention QProgramSignals.
4008         * inferior.h (update_signals_program_target): Declare.
4009         * infrun.c: (update_signals_program_target): New.
4010         (handle_command): Update the target of the new program signals
4011         array changes.
4012         * remote.c (PACKET_QProgramSignals): New enum.
4013         (last_program_signals_packet): New global.
4014         (remote_program_signals): New.
4015         (remote_start_remote): Update the target with the program signals
4016         list.
4017         (remote_protocol_features): Add entry for QPassSignals.
4018         (remote_open_1): Free anc clear last_program_signals_packet.
4019         (init_remote_ops): Install remote_program_signals.
4020         * target.c (update_current_target): Adjust.
4021         (target_program_signals): New.
4022         * target.h (struct target_ops) <to_program_signals>: New field.
4023         (target_program_signals): Declare.
4024
4025 2012-03-07  Pedro Alves  <palves@redhat.com>
4026
4027         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
4028         extensions.
4029
4030 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
4031
4032         * m68klinux-nat.c (getregs_supplies): Make static.
4033         (getfpregs_supplies): Likewise.
4034         (have_ptrace_getregs): Likewise.
4035
4036 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
4037
4038         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
4039         in call to get_die_type_at_offset.
4040
4041 2012-03-06  Stan Shebs  <stan@codesourcery.com>
4042
4043         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
4044         * mi/mi-cmd-disas.c: Ditto.
4045         * mi/mi-cmd-env.c: Ditto.
4046         * mi/mi-cmd-file.c: Ditto.
4047         * mi/mi-cmd-stack.c: Ditto.
4048         * mi/mi-cmd-target.c: Ditto.
4049         * mi/mi-cmd-var.c: Ditto.
4050         * mi/mi-cmds.c: Ditto.
4051         * mi/mi-cmds.h: Ditto.
4052         * mi/mi-console.c: Ditto.
4053         * mi/mi-getopt.c: Ditto.
4054         * mi/mi-getopt.h: Ditto.
4055         * mi/mi-interp.c: Ditto.
4056         * mi/mi-main.c: Ditto.
4057         * mi/mi-out.c: Ditto.
4058         * mi/mi-parse.c: Ditto.
4059         * mi/mi-parse.h: Ditto.
4060         * mi/mi-symbol-cmds.c: Ditto.
4061
4062         * mi/mi-getopt.h: Move mi_opt struct up.
4063         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
4064         return.
4065         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
4066
4067 2012-03-06  Tom Tromey  <tromey@redhat.com>
4068
4069         * proc-service.c (ps_pglobal_lookup): Set the current program
4070         space.
4071
4072 2012-03-06  Pedro Alves  <palves@redhat.com>
4073
4074         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
4075
4076 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
4077
4078         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
4079
4080 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4081
4082         Code cleanup.
4083         * common/linux-osdata.c (linux_common_core_of_thread): New function
4084         comment.
4085         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
4086         call by linux_common_core_of_thread.
4087         (linux_nat_core_of_thread_1): Remove.
4088         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
4089         * linux-thread-db.c: Include linux-osdata.h.
4090         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
4091         linux_common_core_of_thread.
4092
4093 2012-03-05  Tom Tromey  <tromey@redhat.com>
4094
4095         * value.c (value_primitive_field): Don't fetch contents for
4096         non-virtual bases.
4097
4098 2012-03-05  Tom Tromey  <tromey@redhat.com>
4099
4100         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
4101
4102 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4103
4104         * s390-nat.c: Include "gregset.h".
4105
4106 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4107
4108         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
4109         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
4110         (libunwind_load): New variable so_error, use it for dlerror.  Try to
4111         load also LIBUNWIND_SO_7.
4112
4113 2012-03-05  Pedro Alves  <palves@redhat.com>
4114
4115         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
4116         is not NULL, and remove resulting dead code.
4117
4118 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
4119
4120         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
4121         prologue to sh_analyze_prologue.
4122         (sh_analyze_prologue): Make better use of such an upper limit, and
4123         generally be more cautious about accessing memory.
4124
4125 2012-03-05  Tom Tromey  <tromey@redhat.com>
4126
4127         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
4128         _initialize_ia64_hpux_tdep.
4129
4130 2012-03-05  Pedro Alves  <palves@redhat.com>
4131
4132         PR gdb/13766
4133
4134         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
4135         the register state is clear, supply explicit zero, instead of
4136         marking the register unavailable.
4137
4138 2012-03-05  Tristan Gingold  <gingold@adacore.com>
4139
4140         * NEWS: Mention OpenVMS ia64 new target.
4141
4142 2012-03-05  Tristan Gingold  <gingold@adacore.com>
4143
4144         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
4145         (ia64_unw_accessors, ia64_unw_rse_accessors)
4146         (ia64_libunwind_descr): Declare.
4147         * ia64-vms-tdep.c: New file.
4148         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
4149         (ia64_libunwind_descr): Make them public.
4150         * configure.tgt: Add ia64-*-*vms*.
4151         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
4152         (ALLDEPFILES): Add ia64-vms-tdep.c
4153
4154 2012-03-05  Tristan Gingold  <gingold@adacore.com>
4155
4156         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
4157         * remote.c (PACKET_qXfer_uib): New enum value.
4158         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
4159         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
4160         (_initialize_remote): Call add_packet_config_cmd for
4161         xfer:uib packet.
4162
4163 2012-03-05  Tristan Gingold  <gingold@adacore.com>
4164
4165         * osabi.c (gdb_osabi_names): Add OpenVMS.
4166         (generic_elf_osabi_sniffer): Likewise.
4167         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
4168
4169 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4170
4171         Removed unused code.
4172         * libunwind-frame.c (libunwind_frame_unwind)
4173         (libunwind_frame_base_address): Remove.
4174         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
4175
4176 2012-03-04  Yao Qi  <yao@codesourcery.com>
4177
4178         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
4179         remove trailing new line.
4180         (agent_run_command, agent_run_command): Add _ markup.
4181         (agent_capability_check): Likewise.
4182
4183 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4184
4185         * breakpoint.c (set_condition_evaluation_mode): Set
4186         CONDITION_EVALUATION_MODE unconditionally.
4187
4188 2012-03-03  Yao Qi  <yao@codesourcery.com>
4189
4190         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
4191         * common/agent.h: Update declaration.
4192         * inf-child.c (inf_child_use_agent): New.
4193         (inf_child_can_use_agent): New.
4194         (inf_child_target): Initialize fields `to_use_agent'
4195         and `to_can_use_agent'.
4196         * agent.c (agent_new_objfile): New.
4197         (_initialize_agent): Add agent_new_objfile to new_objfile
4198         observer.
4199
4200         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
4201         New.
4202         (linux_target_install_ops): Initialize field
4203         `to_static_tracepoint_markers_by_strid'.
4204         * remote.c (free_current_marker): Move it to ...
4205         * tracepoint.c (free_current_marker): ... here.  New.
4206         (cleanup_target_stop): New.
4207         * tracepoint.h: Declare free_current_marker.
4208         * NEWS: Add one entry about `info static-tracepoint-marker'.
4209
4210 2012-03-03  Yao Qi  <yao@codesourcery.com>
4211
4212         * common/agent.c (agent_loaded_p): New.
4213         (agent_look_up_symbols): New global.
4214         * common/agent.h: Declare agent_loaded_p.
4215
4216 2012-03-03  Yao Qi  <yao@codesourcery.com>
4217
4218         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
4219         (agent_capability_check, agent_capability_invalidate): New.
4220         (symbol_list): New array element.
4221         * common/agent.h (enum agent_capa): New.
4222         * target.c (target_pre_inferior): Call agent_capability_invalidate.
4223
4224 2012-03-03  Yao Qi  <yao@codesourcery.com>
4225
4226         * target.h (struct target_ops) <to_use_agent>: New field.
4227         (struct target_ops) <to_can_use_agent>: New field.
4228         (target_use_agent, target_can_use_agent): New macro.
4229         * target.c (update_current_target): Update.
4230         * remote.c: New enum `PACKET_QAgent'.
4231         (remote_protocol_features): Add a new element.
4232         (remote_use_agent, remote_can_use_agent): New.
4233         (init_remote_ops): Initialize field `can_use_agent' with
4234         remote_can_use_agent.  Intiailize field `use_agent' with
4235         remote_use_agent.
4236         * common/agent.c (use_agent): New global.
4237         * common/agent.h: Declare it.
4238         * tracepoint.c (info_static_tracepoint_markers_command): Add
4239         comment.
4240         * Makefile.in (SFILES): Add common/agent.c and agent.c.
4241         (COMMON_OBS): Add common/agent.o and agent.o
4242         (common-agent.o): New rule.
4243         * agent.c: New.
4244
4245 2012-03-03  Yao Qi  <yao@codesourcery.com>
4246
4247         * common/agent.c: New.
4248         * common/agent.h: New.
4249         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
4250         AC_CHECK_HEADERS.
4251         * configure, configh.in: Regenerated.
4252
4253 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
4254
4255         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
4256         unless it exists for this architecture.
4257
4258 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
4259
4260         * language.h (struct language_defn): New "method" la_read_var_value.
4261         * findvar.c: #include "language.h".
4262         (default_read_var_value): Renames read_var_value.  Rewrite
4263         function description.
4264         (read_var_value): New function.
4265         * value.h (default_read_var_value): Add prototype.
4266         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
4267         New functions.
4268         (ada_language_defn): Add entry for la_read_var_value.
4269         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
4270         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
4271         language_defn structures to add entry for new la_read_var_value
4272         field.
4273
4274 2012-03-02  Tom Tromey  <tromey@redhat.com>
4275             Pedro Alves  <palves@redhat.com>
4276
4277         PR breakpoints/13776:
4278         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
4279         breakpoints.
4280         (delete_longjmp_breakpoint_at_next_stop): New.
4281         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
4282         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
4283         before deleting the inferior.  Add comments.
4284         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
4285         breakpoints immediately, but only on next stop.  Move that code
4286         next to where we mark other breakpoints for deletion.
4287
4288 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
4289
4290         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
4291         marker.
4292         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
4293         violation.
4294
4295 2012-03-02  Pedro Alves  <palves@redhat.com>
4296
4297         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
4298
4299 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
4300
4301         Fix -Wmissing-prototypes build.
4302         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
4303         * remote-sim.c (gdbsim_has_all_memory): Likewise.
4304         (gdbsim_has_memory): Likewise.
4305
4306 2012-03-02  Yao Qi  <yao@codesourcery.com>
4307
4308         Fix -Wmissing-prototypes build.
4309         * charset.c (phony_iconv_open): Make static.
4310         (phony_iconv_close, phony_iconv): Likewise.
4311         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
4312         * i386-windows-nat.c (_initialize_i386_windows_nat): New
4313         prototype.
4314         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
4315         * ser-mingw.c (create_select_thread): Make static.
4316         * windows-termcap.c (tgetent): New prototype.
4317         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
4318
4319 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
4320
4321         Fix -Wmissing-prototypes build.
4322         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
4323         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
4324         (_initialize_loadable): New prototypes.
4325
4326 2012-03-02  Doug Evans  <dje@google.com>
4327
4328         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
4329         abbrev table, read_comp_unit will do it.
4330
4331 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4332
4333         Fix -Wmissing-prototypes build.
4334         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
4335         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
4336         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
4337         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
4338         (_initialize_arm_symbian_tdep): New prototype.
4339         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
4340         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
4341         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
4342         static.
4343         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
4344         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
4345         prototype.
4346         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
4347         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
4348         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
4349         static.
4350         * moxie-tdep.c (moxie_process_record): Likewise.
4351         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
4352         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
4353         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
4354         (_initialize_rl78_tdep): New prototype.
4355         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
4356         (_initialize_rx_tdep): New prototype.
4357         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
4358         (_initialize_darwin_solib): New prototype.
4359         * solib-spu.c: Include solib-spu.h.
4360         (_initialize_spu_solib): New prototype.
4361         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
4362         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
4363         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
4364         (tic6x_software_single_step): Make it static.
4365         (_initialize_tic6x_tdep): New prototype.
4366
4367 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4368
4369         Fix -Wmissing-prototypes build.
4370         * cris-tdep.c (cris_can_use_hardware_watchpoint)
4371         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
4372
4373 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4374
4375         Fix -Wmissing-prototypes build.
4376         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
4377         (frv_have_stopped_data_address): Remove.
4378
4379 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4380
4381         Fix -Wmissing-prototypes build.
4382         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
4383         * sh-tdep.c: Include sh64-tdep.h.
4384         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
4385         * sh64-tdep.c: Include sh64-tdep.h.
4386         * sh64-tdep.h: New file.
4387
4388 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
4389
4390         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
4391
4392 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
4393
4394         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
4395         sp_regnum once the gdbarch_init_osabi hook has been called.
4396
4397 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
4398
4399         * mips-tdep.c (mips32_bc1_pc): New function.
4400         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
4401         BPOSGE32 and BPOSGE64 instructions.
4402         (deal_with_atomic_sequence): Likewise.
4403         (mips32_instruction_has_delay_slot): Likewise.
4404
4405 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
4406             Chris Dearman  <chris@mips.com>
4407             Maciej W. Rozycki  <macro@codesourcery.com>
4408             Joseph Myers  <joseph@codesourcery.com>
4409
4410         * features/mips-dsp.xml: New file.
4411         * features/mips64-dsp.xml: New file.
4412         * features/mips-dsp-linux.xml: New file.
4413         * features/mips64-dsp-linux.xml: New file.
4414         * features/Makefile (WHICH): Add mips-dsp-linux and
4415         mips64-dsp-linux.
4416         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
4417         * features/mips-dsp-linux.c: New file.
4418         * features/mips64-dsp-linux.c: New file.
4419         * regformats/mips-dsp-linux.dat: New file.
4420         * regformats/mips64-dsp-linux.dat: New file.
4421         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
4422         registers.
4423         (mips64_linux_register_addr): Likewise.
4424         (mips64_linux_regsets_fetch_registers): Likewise.
4425         (mips64_linux_regsets_store_registers): Likewise.
4426         (mips64_linux_fetch_registers): Update call to
4427         mips64_linux_regsets_fetch_registers.
4428         (mips64_linux_store_registers): Update call to
4429         mips64_linux_regsets_store_registers.
4430         (mips_linux_read_description): Probe for DSP registers.
4431         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
4432         and initialize_tdesc_mips64_dsp_linux.
4433         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
4434         Remove padding of no longer used embedded register slots.
4435         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
4436         (MIPS_RESTART_REGNUM): Redefine enum value.
4437         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
4438         strings.
4439         (mips_tx39_reg_names): Likewise.
4440         (mips_linux_reg_names): New array of register names for Linux
4441         targets.
4442         (mips_register_name): Check for a null pointer in
4443         mips_processor_reg_names and return an empty string.
4444         (mips_register_type): Exclude embedded registers for the IRIX
4445         and Linux ABIs.
4446         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
4447         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
4448         DSP registers.
4449         (mips_stab_reg_to_regnum): Handle DSP accumulators.
4450         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
4451         (mips_gdbarch_init): Likewise.  Initialize internal register
4452         indices for the Linux ABI.  Use dynamic numbers to refer to
4453         registers, as applicable, while parsing the target description.
4454         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
4455
4456 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
4457
4458         * frame.h (read_frame_register_unsigned): Fix typo in function
4459         description.
4460
4461 2012-03-01  Pedro Alves  <palves@redhat.com>
4462
4463         * jit-reader.in [!__cplusplus]
4464         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
4465
4466 2012-03-01  Pedro Alves  <palves@redhat.com>
4467
4468         * configure.ac (build_warnings): Add -Wmissing-prototypes.
4469         * configure: Regenerate.
4470
4471 2012-03-01  Pedro Alves  <palves@redhat.com>
4472
4473         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
4474         * breakpoint.c (create_exception_master_breakpoint, trace_command)
4475         (ftrace_command, strace_command): Make static.
4476         * d-lang.c (_initialize_d_language): Declare.
4477         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
4478         * dwarf2loc.c (_initialize_dwarf2loc):
4479         * dwarf2read.c (process_psymtab_comp_unit): Make static.
4480         * exec.c (exec_get_section_table): Make static.
4481         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
4482         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
4483         * inferior.c (remove_inferior_command, add_inferior_command)
4484         (clone_inferior_command): Make static.
4485         * linux-nat.c (linux_nat_thread_address_space)
4486         (linux_nat_core_of_thread): Make static.
4487         * linux-tdep.c (_initialize_linux_tdep): Declare.
4488         * objc-lang.c (_initialize_objc_lang): Declare.
4489         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
4490         Make static.
4491         (_initialize_opencl_language): Declare.
4492         * record.c (_initialize_record): Declare.
4493         * remote.c (demand_private_info, remote_get_tib_address)
4494         (remote_supports_cond_tracepoints)
4495         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
4496         Make static.
4497         * skip.c (_initialize_step_skip): Declare.
4498         * symtab.c (skip_prologue_using_lineinfo): Make static.
4499         * tracepoint.c (delete_trace_state_variable)
4500         (trace_variable_command, delete_trace_variable_command)
4501         (get_uploaded_tsv, find_matching_tracepoint_location)
4502         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
4503         Make static.
4504         * value.c (pack_unsigned_long): Make static.
4505         * varobj.c (varobj_ensure_python_env): Make static.
4506         * windows-tdep.c (_initialize_windows_tdep): Declare.
4507         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
4508
4509 2012-03-01  Pedro Alves  <palves@redhat.com>
4510
4511         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
4512         gdbarch parameter.
4513         (linux_init_abi): Install it as has_shared_address_space gdbarch
4514         callback.
4515
4516 2012-03-01  Pedro Alves  <palves@redhat.com>
4517
4518         * observer.c (observer_test_first_notification_function)
4519         (observer_test_second_notification_function)
4520         (observer_test_third_notification_function): Add declarations.
4521
4522 2012-03-01  Pedro Alves  <palves@redhat.com>
4523
4524         * common/signals.c (default_target_signal_to_host)
4525         (default_target_signal_from_host): Move ...
4526         * arch-utils.c: ... here.
4527         * arch-utils.h (default_target_signal_to_host)
4528         (default_target_signal_from_host): Declare.
4529
4530         * common/signals.c (target_signal_from_command): Move ...
4531         * infrun.c: ... here.
4532         * inferior.h (target_signal_from_command): Declare.
4533         * target.h (target_signal_from_command)
4534         (default_target_signal_from_host, default_target_signal_to_host):
4535         Delete declarations.
4536
4537         * common/signals.c (_initialize_signals): Delete.
4538
4539 2012-03-01  Pedro Alves  <palves@redhat.com>
4540
4541         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
4542         both __cplusplus and !__cplusplus.
4543
4544 2012-03-01  Pedro Alves  <palves@redhat.com>
4545
4546         * psymtab.c (find_and_open_source): Delete declaration.
4547         * source.c (find_and_open_source): Move comment ...
4548         * source.h (find_and_open_source): ... to this new declaration.
4549
4550 2012-03-01  Pedro Alves  <palves@redhat.com>
4551
4552         * inline-frame.c: Include inline-frame.h.
4553
4554 2012-03-01  Pedro Alves  <palves@redhat.com>
4555
4556         * tui/tui-data.c (set_gen_win_origin): Delete.
4557         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
4558         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
4559
4560 2012-03-01  Pedro Alves  <palves@redhat.com>
4561
4562         * remote.c (encode_actions): Delete declaration.
4563         * tracepoint.c (encode_actions): Make extern.
4564         * tracepoint.h (encode_actions): Declare.
4565
4566 2012-03-01  Pedro Alves  <palves@redhat.com>
4567
4568         * python/py-breakpoint.c: Include python.h.
4569         * python/py-continueevent.c (create_continue_event_object): Make
4570         static.
4571         * python/py-lazy-string.c (stpy_get_type): Make static.
4572         * python/py-newobjfileevent.c (create_new_objfile_event_object):
4573         Make static.
4574         * python/py-utils.c (unicode_to_target_python_string): Make
4575         static.
4576         * python/py-value.c: Include python.h.
4577
4578 2012-03-01  Pedro Alves  <palves@redhat.com>
4579
4580         * inferior.c (delete_threads_of_inferior): Delete.
4581
4582 2012-03-01  Pedro Alves  <palves@redhat.com>
4583
4584         Import fallback definitions from glibc.
4585
4586         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
4587         ps_prochandle): Forward declare.
4588         (ps_err_e): Use glibc's comments.
4589         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
4590         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
4591         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
4592         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
4593         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
4594         (struct ps_prochandle): Adjust comment.
4595
4596 2012-03-01  Pedro Alves  <palves@redhat.com>
4597
4598         * ada-lang.c (ada_modulus_from_name): Delete.
4599         * ada-lex.l (lexer_init): Make static.
4600
4601 2012-03-01  Pedro Alves  <palves@redhat.com>
4602
4603         PR gdb/13767
4604
4605         * frame.c (read_frame_register_unsigned): New.
4606         * frame.h (read_frame_register_unsigned): Declare.
4607         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
4608         Handle it.
4609         (print_i387_control_word): New parameter `control_p'.  Handle it.
4610         (i387_print_float_info): Handle unavailable float registers.
4611
4612 2012-03-01  Keith Seitz  <keiths@redhat.com>
4613
4614         * linespec.c (decode_line_2): Sort the list of methods
4615         alphabetically before presenting the user with a selection
4616         menu.
4617
4618 2012-03-01  Doug Evans  <dje@google.com>
4619
4620         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
4621         has_namespace_info.
4622         (dwarf2_read_abbrevs): Remove corresponding initialization.
4623
4624 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
4625
4626         * NEWS: Mention new python command class gdb.COMMAND_USER.
4627         * cli/cli-cmds.c (show_user): Print error when used on a python
4628         command.
4629         (init_cli_cmds): Update documentation strings for "show user" and
4630         "set/show max-user-call-depth" to clarify that it does not apply to
4631         python commands.
4632         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
4633         error check.
4634         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
4635         gdb python api.
4636         * top.c (execute_command): Only execute a user-defined command as a
4637         legacy macro if c->user_commands is set.
4638
4639 2012-03-01  Tom Tromey  <tromey@redhat.com>
4640
4641         * valprint.h (struct generic_val_print_decorations): New.
4642         (generic_val_print): Declare.
4643         * valprint.c (generic_val_print): New function.
4644         * p-valprint.c (p_decorations): New global.
4645         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
4646         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
4647         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
4648         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
4649         * m2-valprint.c (m2_decorations): New global.
4650         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
4651         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
4652         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
4653         TYPE_CODE_ERROR>: Call generic_val_print.
4654         * f-valprint.c (f_decorations): New global.
4655         (f_val_print): Use print_function_pointer_address.
4656         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
4657         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
4658         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
4659         generic_val_print.
4660         * c-valprint.c (c_decorations): New global.
4661         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
4662         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
4663         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
4664         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
4665         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
4666         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
4667         case.
4668
4669 2012-03-01  Tom Tromey  <tromey@redhat.com>
4670
4671         * valprint.c (val_print): Update.
4672         * p-valprint (pascal_val_print): Return void.
4673         * p-lang.h (pascal_val_print): Return void.
4674         * m2-valprint.c (m2_val_print): Return void.
4675         * m2-lang.h (m2_val_print): Return void.
4676         * language.h (struct language_defn) <la_val_print>: Return void.
4677         * language.c (unk_lang_val_print): Return void.
4678         * jv-valprint.c (java_val_print): Return void.
4679         * jv-lang.h (java_val_print): Return void.
4680         * f-valprint.c (f_val_print): Return void.
4681         * f-lang.h (f_val_print): Return void.
4682         * d-valprint.c (d_val_print): Return void.
4683         (dynamic_array_type): Update.
4684         * d-lang.h (d_val_print): Return void.
4685         * c-valprint.c (c_val_print): Return void.
4686         * c-lang.h (c_val_print): Return void.
4687         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
4688         void.
4689         * ada-lang.h (ada_val_print): Return void.
4690
4691 2012-03-01  Tom Tromey  <tromey@redhat.com>
4692
4693         * value.h (val_print): Return void.
4694         * valprint.c (val_print): Return void.
4695
4696 2012-03-01  Tom Tromey  <tromey@redhat.com>
4697
4698         * value.h (common_val_print): Return void.
4699         * valprint.c (common_val_print): Return void.
4700
4701 2012-03-01  Tom Tromey  <tromey@redhat.com>
4702
4703         * value.h (value_print): Return void.
4704         * valprint.c (value_print): Return void.
4705         * p-valprint.c (pascal_value_print): Return void.
4706         * p-lang.h (pascal_value_print): Return void.
4707         * language.h (struct language_defn) <la_value_print>: Return
4708         void.
4709         * language.c (unk_lang_value_print): Return void.
4710         * jv-valprint.c (java_value_print): Return void.
4711         * jv-lang.h (java_value_print): Return void.
4712         * f-valprint.c (c_value_print): Don't declare.
4713         Include c-lang.h.
4714         * c-valprint.c (c_value_print): Return void.
4715         * c-lang.h (c_value_print): Return void.
4716         * ada-valprint.c (ada_value_print): Return void.
4717         * ada-lang.h (ada_value_print): Return void.
4718
4719 2012-03-01  Tom Tromey  <tromey@redhat.com>
4720
4721         * value.c (value_primitive_field): Handle virtual base classes.
4722
4723 2012-03-01  Tom Tromey  <tromey@redhat.com>
4724
4725         * gdbtypes.h (struct vbase): Remove.
4726
4727 2012-03-01  Tom Tromey  <tromey@redhat.com>
4728
4729         * c-valprint.c (print_function_pointer_address): Move...
4730         * valprint.c: ... here.  Make non-static.
4731         * m2-valprint.c (print_function_pointer_address): Remove.
4732         * valprint.h (print_function_pointer_address): Declare.
4733
4734 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
4735
4736         * NEWS: Document the fact that one can provide a condition when
4737         creating an Ada exception catchpoint.
4738
4739 2012-03-01  Tom Tromey  <tromey@redhat.com>
4740
4741         * valprint.c (val_print_type_code_flags): Fix placement of
4742         trailing brace.
4743
4744 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
4745
4746         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
4747         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
4748         environment variable before calling update-copyright.
4749
4750 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
4751
4752         * gnulib/extra/update-copyright: Update to the latest from
4753         gnulib's git repository.
4754         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
4755         variable to 2 instead of 1.
4756
4757 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4758
4759         * varobj.c (c_value_of_variable): Remove dead code.
4760
4761 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4762
4763         * ada-lex.p (processId): Do not modify already encoded IDs.
4764         Update function documentation.
4765
4766 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4767
4768         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
4769         "name" with "struct symbol *name_sym".
4770         * ada-exp.y (write_var_or_type): Update call to
4771         ada_find_renaming_symbol.
4772         "name" with "struct symbol *name_sym". Adjust Implementation
4773         accordingly.  Adjust the function documentation.
4774
4775 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4776
4777         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
4778         * ada-lang.c (ada_find_any_type): Add advance declaration.
4779         Make static.  Replace ada_find_any_symbol by
4780         ada_find_any_type_symbol.
4781         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
4782         Improve function description.  Make static.
4783         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
4784         Replace ada_find_any_symbol by ada_find_any_type_symbol.
4785
4786 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4787
4788         * ada-lang.c (struct tag_args): Delete.
4789         (ada_get_tsd_type): Function body moved up in source file.
4790         (ada_tag_name_1, ada_tag_name_2): Delete.
4791         (ada_get_tsd_from_tag): New function.
4792         (ada_tag_name_from_tsd): New function.
4793         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
4794         to determine the tag name.
4795
4796 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4797
4798         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
4799         declaration.
4800         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
4801         function.
4802
4803 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4804
4805         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
4806
4807 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4808
4809         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
4810         full searches.
4811
4812 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4813
4814         * ada-lang.c (constrained_packed_array_type): If there is a
4815         parallel XA type, use it to determine the array index type.
4816
4817 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4818
4819         * ada-valprint.c (ada_val_print_1): If our value is a reference
4820         to an array descriptor, dereference it before converting it
4821         to a simple array.
4822
4823 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4824
4825         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
4826         creating fixed value.
4827         (ada_value_ind, ada_coerce_ref, assign_component)
4828         (ada_evaluate_subexp): Remove call to unwrap_value before
4829         call to ada_to_fixed_value.
4830
4831 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4832
4833         * ada-lang.c (to_fixed_array_type): Set result's type name.
4834
4835 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
4836
4837         * ada-lang.c (catch_ada_exception_command_split): Add new
4838         argument cond_string.  Add support for condition at end of
4839         "catch exception" commands.
4840         (ada_decode_exception_location): Add new argument cond_string.
4841         Update call to catch_ada_exception_command_split.
4842         (create_ada_exception_catchpoint): Add new argument cond_string.
4843         Set the breakpoint condition if needed.
4844         (catch_ada_exception_command): Update call to
4845         ada_decode_exception_location.
4846         (ada_decode_assert_location): Add function documentation.
4847         Add support for condition at end of "catch assert" command.
4848         (catch_assert_command): Update calls to ada_decode_assert_location
4849         and create_ada_exception_catchpoint.
4850
4851 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4852
4853         Fix disp-step-syscall.exp: fork: single step over fork.
4854         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
4855         (i386_linux_get_syscall_number_from_regcache): ... here, new function
4856         comment, change parameters gdbarch and ptid to regcache.  Remove
4857         parameter regcache, initialize gdbarch from regcache here.
4858         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
4859         New functions.
4860         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
4861         instead.
4862         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
4863         'syscall'.  Make the 'int' check more strict.
4864
4865 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4866
4867         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
4868         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
4869         (i386_linux_intx80_sysenter_syscall_record): ... here.
4870         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
4871         Use the renamed function name.
4872
4873 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
4874
4875         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
4876         * breakpoint.c (until_break_command): Likewise.
4877         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
4878         * infcall.c (call_function_by_hand): Likewise.
4879         * infcmd.c (finish_forward): Likewise.
4880         * infrun.c (insert_exception_resume_breakpoint): Likewise.
4881
4882 2012-02-28  Tristan Gingold  <gingold@adacore.com>
4883
4884         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
4885         avoid variable assignments inside condition.
4886
4887 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4888
4889         Fix static analysis issue found by cppcheck.
4890         * microblaze-tdep.c (microblaze_extract_return_value): Fix
4891         uninitialized BUF for size 2.
4892
4893 2012-02-27  Chris Dearman  <chris@mips.com>
4894             Nathan Froyd  <froydnj@codesourcery.com>
4895             Maciej W. Rozycki  <macro@codesourcery.com>
4896
4897         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
4898         (mips16_instruction_has_delay_slot): Likewise.
4899         (mips_segment_boundary): Likewise.
4900         (mips_adjust_breakpoint_address): Likewise.
4901         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
4902
4903 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
4904             Maciej W. Rozycki  <macro@codesourcery.com>
4905
4906         * infrun.c (handle_inferior_event): Don't proceed through
4907         shared library trampolines if stepping at the machine
4908         instruction level.
4909
4910 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
4911
4912         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
4913         too.
4914
4915 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
4916
4917         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
4918         (sh_stub_unwind_sniffer): New functions.
4919         (sh_stub_unwind): New variable.
4920         (sh_gdbarch_init): Wire everything.
4921
4922 2012-02-27  Pedro Alves  <palves@redhat.com>
4923
4924         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
4925         (linux_nat_post_attach_wait): Adjust to use
4926         linux_proc_pid_is_stopped.
4927         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
4928         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
4929         based on pid_is_stopped from both linux-nat.c and
4930         gdbserver/linux-low.c, and renamed.
4931
4932 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
4933
4934         * remote.c (remote_watchpoint_addr_within_range): New function.
4935         (init_remote_ops): Use it.
4936
4937 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
4938
4939         * target.h (target_watchpoint_addr_within_range): Document macro.
4940
4941 2012-02-24  Pedro Alves  <palves@redhat.com>
4942
4943         * stack.c (set_last_displayed_sal): Issue internal_error instead
4944         of warning, and issue it after clearing the last displayed sal.
4945
4946 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4947             Pedro Alves  <palves@redhat.com>
4948
4949         * breakpoint.c (until_break_command): Install breakpoints after
4950         all frame manipulations.
4951
4952 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
4953
4954         * remote.c (remote_supports_cond_breakpoints): New forward
4955         declaration.
4956         (remote_add_target_side_condition): New function.
4957         (remote_insert_breakpoint): Add target-side breakpoint
4958         conditional if supported.
4959         (remote_insert_hw_breakpoint): Likewise.
4960         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
4961         hook.
4962
4963         * target.c (update_current_target): Inherit
4964         to_supports_evaluation_of_breakpoint_conditions.
4965         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
4966
4967         * target.h (struct target_ops)
4968         <to_supports_evaluation_of_breakpoint_conditions>: New field.
4969         (target_supports_evaluation_of_breakpoint_conditions): New #define.
4970
4971         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
4972         (condition_evaluation_both, condition_evaluation_auto,
4973         condition_evaluation_host, condition_evaluation_target,
4974         condition_evaluation_enums, condition_evaluation_mode_1,
4975         condition_evaluation_mode): New static globals.
4976         (translate_condition_evaluation_mode): New function.
4977         (breakpoint_condition_evaluation_mode): New function.
4978         (gdb_evaluates_breakpoint_condition_p): New function.
4979         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
4980         (mark_breakpoint_modified): New function.
4981         (mark_breakpoint_location_modified): New function.
4982         (set_condition_evaluation_mode): New function.
4983         (show_condition_evaluation_mode): New function.
4984         (bp_location_compare_addrs): New function.
4985         (get_first_location_gte_addr): New helper function.
4986         (set_breakpoint_condition): Free condition bytecode if locations
4987         has become unconditional.  Call mark_breakpoint_modified (...).
4988         (condition_command): Call update_global_location_list (1) for
4989         breakpoints.
4990         (breakpoint_xfer_memory): Use is_breakpoint (...).
4991         (is_breakpoint): New function.
4992         (parse_cond_to_aexpr): New function.
4993         (build_target_condition_list): New function.
4994         (insert_bp_location): Handle target-side conditional
4995         breakpoints and call build_target_condition_list (...).
4996         (update_inserted_breakpoint_locations): New function.
4997         (insert_breakpoint_locations): Handle target-side conditional
4998         breakpoints.
4999         (bpstat_check_breakpoint_conditions): Add comment.
5000         (bp_condition_evaluator): New function.
5001         (bp_location_condition_evaluator): New function.
5002         (print_breakpoint_location): Print information on where the condition
5003         will be evaluated.
5004         (print_one_breakpoint_location): Likewise.
5005         (init_bp_location): Call mark_breakpoint_location_modified (...) for
5006         breakpoint location.
5007         (force_breakpoint_reinsertion): New functions.
5008         (update_global_location_list): Handle target-side breakpoint
5009         conditions.
5010         Reinsert locations that are already inserted if conditions have
5011         changed.
5012         (bp_location_dtor): Free agent expression bytecode.
5013         (disable_breakpoint): Call mark_breakpoint_modified (...).
5014         Call update_global_location_list (...) with parameter 1 for breakpoints.
5015         (disable_command): Call mark_breakpoint_location_modified (...).
5016         Call update_global_location_list (...) with parameter 1 for breakpoints.
5017         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
5018         (enable_command): mark_breakpoint_location_modified (...).
5019         (_initialize_breakpoint): Update documentation and add
5020         condition-evaluation breakpoint subcommand.
5021
5022         * breakpoint.h: Include ax.h.
5023         (condition_list): New data structure.
5024         (condition_status): New enum.
5025         (bp_target_info) <cond_list>: New field.
5026         (bp_location) <condition_changed, cond_bytecode>: New fields.
5027         (is_breakpoint): New prototype.
5028
5029 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
5030
5031         * remote.c (remote_state) <cond_breakpoints>: New field.
5032         (PACKET_ConditionalBreakpoints): New enum.
5033         (remote_cond_breakpoint_feature): New function.
5034         (remote_protocol_features): Add new ConditionalBreakpoints entry.
5035         (remote_supports_cond_breakpoints): New function.
5036         (_initialize_remote): Add new packet configuration for
5037         target-side conditional breakpoints.
5038
5039 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
5040
5041         * NEWS: Mention target-side conditional breakpoint support,
5042         new condition-evaluation breakpoint subcommand and remote
5043         packet extensions.
5044
5045 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
5046
5047         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
5048         number.
5049
5050 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
5051
5052         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
5053         (after_prologue): Remove.
5054
5055 2012-02-23  Tom Tromey  <tromey@redhat.com>
5056
5057         * jv-valprint.c (java_val_print): Remove dead code.
5058
5059 2012-02-23  Tristan Gingold  <gingold@adacore.com>
5060
5061         * ada-tasks.c (struct ada_tasks_inferior_data): Add
5062         known_tasks_element and known_tasks_length fields.
5063         (read_known_tasks_array): Change argument type.  Use pointer type
5064         and number of elements from DATA.  Adjust.
5065         (read_known_tasks_list): Likewise.
5066         (get_known_tasks_addr): Remove.
5067         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
5068         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
5069         type and array length.  Merge former get_known_tasks_addr code.
5070
5071 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
5072
5073         PR backtrace/13716
5074         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
5075         it after set_momentary_breakpoint.
5076
5077 2012-02-22  Sterling Augustine  <saugustine@google.com>
5078
5079         PR 13689:
5080         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
5081
5082 2012-02-22  Gary Benson  <gbenson@redhat.com>
5083
5084         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
5085         (find_slot_in_mapped_hash): Likewise.
5086
5087 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5088
5089         PR build/13638
5090         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
5091         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
5092         * configure: Regenerate.
5093
5094 2012-02-21  Tristan Gingold  <gingold@adacore.com>
5095             Pedro Alves  <palves@redhat.com>
5096
5097         * ia64-tdep.c: Do not include libunwind-ia64.h.
5098         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
5099         Include libunwind-ia64.h instead of libunwind.h.
5100         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
5101         for libunwind.h existence.
5102         * configure, config.in: Regenerate.
5103
5104 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
5105
5106         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
5107         instead of value_rtti_target_type.
5108         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
5109         instead of value_rtti_target_type.
5110         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
5111         value_rtti_target_type.
5112         * valops.c (value_ind): Extract function readjust_indirect_value_type.
5113         (value_rtti_target_type): Rename to ...
5114         (value_rtti_indirect_type): ... here and make it indirect.  Update
5115         function comment.
5116         * value.c (readjust_indirect_value_type): New function.
5117         (coerce_ref): Support for enclosing type setting for references
5118         with readjust_indirect_value_type.
5119         * value.h (readjust_value_type): New declaration.
5120         (value_rtti_target_type): Rename to ...
5121         (value_rtti_indirect_type): ... here.
5122
5123 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
5124
5125         * MAINTAINERS (Write After Approval): Add myself to the list.
5126
5127 2012-02-20  Doug Evans  <dje@google.com>
5128
5129         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
5130         Rename objfile_p_char parameter to objfilep.
5131         (build_objfile_section_table): Result is now void.  All callers
5132         updated.
5133         * objfiles.h (struct objfile): Tweak comments, whitespace.
5134         (build_objfile_section_table): Update.
5135
5136         * elfread.c (elf_symfile_segments): Fix warning text.
5137
5138 2012-02-20  Tom Tromey  <tromey@redhat.com>
5139
5140         PR gdb/13498:
5141         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
5142         particular set of file names once.
5143         (dw2_map_symbol_filenames): Likewise.
5144
5145 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5146
5147         Code cleanup.
5148         * main.c (write_files): Remove the declaration.
5149         (external_editor_command): Move the declaration ...
5150         [GDBTK] (external_editor_command): ... here.  Fix the comment.
5151
5152 2012-02-20  Tom Tromey  <tromey@redhat.com>
5153
5154         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
5155         extraneous block.
5156
5157 2012-02-20  Tristan Gingold  <gingold@adacore.com>
5158
5159         * darwin-nat.h (enum darwin_msg_state): Add comments.
5160
5161 2012-02-20  Tristan Gingold  <gingold@adacore.com>
5162
5163         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
5164         value.
5165
5166 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
5167
5168         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
5169         between function description and implementation.
5170
5171 2012-02-17  Tom Tromey  <tromey@redhat.com>
5172
5173         PR python/12070:
5174         * python/py-event.c (event_object_getset): New global.
5175         (event_object_type): Reference it.
5176         * python/py-type.c (field_object_getset): New global.
5177         (field_object_type): Reference it.
5178         * python/python-internal.h (gdb_py_generic_dict): Declare.
5179         * python/py-utils.c (gdb_py_generic_dict): New function.
5180
5181 2012-02-17  Tristan Gingold  <gingold@adacore.com>
5182
5183         * solib-darwin.c (darwin_current_sos): Check magic and filetype
5184
5185 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
5186
5187         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
5188         TYPE_CALLING_CONVENTION annotation.
5189
5190 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
5191
5192         * MAINTAINERS: Add rx to target ISA section.
5193         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
5194         (ALLDEPFILES): Add rx-tdep.c.
5195
5196 2012-02-16  Tom Tromey  <tromey@redhat.com>
5197
5198         * symfile.c (symbol_file_add_main_1): Use inferior's
5199         symfile_flags.
5200         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
5201         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
5202         inferior.
5203         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
5204         inferior.
5205         (follow_exec): Use inferior's symfile_flags.
5206         * inferior.h (struct inferior) <symfile_flags>: New field.
5207
5208 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
5209
5210         PR gdb/9734:
5211         * remote-sim.c (gdbsim_create_inferior): Call error() when
5212         sim_create_inferior() fails.
5213
5214 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
5215
5216         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
5217
5218 2012-02-16  Tom Tromey  <tromey@redhat.com>
5219
5220         PR c++/13653:
5221         * thread.c (struct current_thread_cleanup) <was_removable>: New
5222         field.
5223         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
5224         (make_cleanup_restore_current_thread): Initialize new field.
5225
5226 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
5227
5228         * MAINTAINERS: Add rl78 to target ISA section.
5229         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
5230         (ALLDEPFILES): Add rl78-tdep.c.
5231         * NEWS: Mention rl78 as a new target.
5232
5233 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
5234
5235         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
5236         data.
5237         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
5238
5239 2012-02-15  Tom Tromey  <tromey@redhat.com>
5240
5241         PR gdb/12659:
5242         * infcmd.c (registers_info): Print just the current register's
5243         name.
5244
5245 2012-02-15  Tom Tromey  <tromey@redhat.com>
5246
5247         * python/py-symbol.c (sympy_value): Use _().
5248
5249 2012-02-15  Pedro Alves  <palves@redhat.com>
5250
5251         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
5252         output to be like native targets'.
5253         (remote_pid_to_str): Special case the null ptid.
5254
5255 2012-02-14  Stan Shebs  <stan@codesourcery.com>
5256
5257         * NEWS: Mention enable count command.
5258         * breakpoint.h (struct breakpoint): New field enable_count.
5259         * breakpoint.c (enable_breakpoint_disp): Add count argument.
5260         (enable_breakpoint): Add arg to call.
5261         (struct disp_data): New struct.
5262         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
5263         (do_map_enable_once_breakpoint): Create a struct and pass it.
5264         (do_map_enable_delete_breakpoint): Ditto.
5265         (do_map_enable_count_breakpoint): New function.
5266         (enable_count_command): New function.
5267         (bpstat_stop_status): Decrement enable_count.
5268         (print_one_breakpoint_location): Report enable count.
5269         (_initialize_breakpoint): Add enable count command.
5270
5271 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
5272
5273         * rl78-tdep.c (reggroups.h): Include.
5274         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
5275         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
5276         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
5277         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
5278         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
5279         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
5280         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
5281         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
5282         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
5283         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
5284         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
5285         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
5286         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
5287         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
5288         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
5289         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
5290         beginning of register list.
5291         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
5292         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
5293         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
5294         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
5295         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
5296         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
5297         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
5298         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
5299         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
5300         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
5301         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
5302         the pseudo registers.  Rearrange other pseudo registers too so
5303         that the bank registers appear at the end.
5304         (rl78_register_type): Account for the fact that the byte sized
5305         bank registers are now pseudo-registers.
5306         (rl78_register_name): Rearrange the register name array.  Make
5307         initial set of raw banked registers inaccessible.
5308         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
5309         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
5310         case for copying bytes back and forth between raw and pseudo
5311         versions of the banked registers.  Update other cases to reflect
5312         the changed names.
5313         (rl78_return_value): Update to account for changed names of
5314         raw registers.
5315         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
5316         rl78_register_sim_regno().
5317
5318 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
5319
5320         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
5321         the name parameter being passed to find_pc_partial_function().
5322
5323 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5324
5325         * MAINTAINERS: Step down from being ia64 target maintainer.
5326
5327 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
5328
5329         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
5330         compilation warning.
5331
5332 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
5333
5334         Fix crash on loaded shlibs without loaded exec_bfd.
5335         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
5336         (set_section_command): Replace exec_bfd by p->bfd.
5337
5338 2012-02-10  Tom Tromey  <tromey@redhat.com>
5339
5340         * linespec.c (decode_line_internal): Skip symtabs_from_filename
5341         when we have a C++ qualified name.
5342
5343 2012-02-10  Pedro Alves  <palves@redhat.com>
5344
5345         * inferior.c (inferior_pid_to_str): New.
5346         (print_inferior, inferior_command): Use it.
5347
5348 2012-02-10  Pedro Alves  <palves@redhat.com>
5349
5350         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
5351         the test CFLAGS.
5352         * configure: Regenerate.
5353
5354 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
5355
5356         * linespec.c (decode_line_internal): Fix comment correctness.
5357
5358 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
5359
5360         PR gdb/12953
5361         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
5362         * amd64bsd-nat.c: Add support for debug registers (adapted from
5363         i386bsd-nat.c).
5364         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
5365         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
5366         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
5367         (amd64bsd_dr_get_control): New functions.
5368         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
5369         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
5370         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
5371         watchpoints initialization.
5372         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
5373
5374 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
5375
5376         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
5377         flds_bnds.fields.
5378         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
5379
5380 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
5381
5382         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
5383
5384 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
5385
5386         * language.h (symbol_name_cmp_ftype): Renames
5387         symbol_name_match_p_ftype.
5388         (struct language_defn)[la_get_symbol_name_cmp]: Renames
5389         la_get_symbol_name_match_p.
5390         * ada-lang.c (ada_get_symbol_name_cmp): Renames
5391         ada_get_symbol_name_match_p.  Update comment.
5392         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
5393         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
5394         Renames symbol_name_match_p.  Update field type.
5395         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
5396         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
5397         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
5398         "la_get_symbol_name_cmp" in comments.
5399         * language.c: Likewise.
5400
5401 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5402
5403         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
5404         %eflags offset.
5405         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
5406         (amd64_sol2_gregset32_reg_offs): Likewise.
5407
5408 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
5409
5410         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
5411         of the returned BFD is allocated by GDB.
5412
5413 2012-02-07  Tom Tromey  <tromey@redhat.com>
5414
5415         PR python/12027:
5416         * python/python-internal.h (frame_object_type): Declare.
5417         * python/py-symbol.c (sympy_needs_frame): New function.
5418         (sympy_value): New function.
5419         (symbol_object_getset): Add "needs_frame".
5420         (symbol_object_methods): Add "value".
5421         * python/py-frame.c (frame_object_type): No longer static.
5422
5423 2012-02-07  Tom Tromey  <tromey@redhat.com>
5424
5425         PR python/13599:
5426         * python/py-symbol.c (sympy_line): New function.
5427         (symbol_object_getset): Add "line".
5428
5429 2012-02-07  Tom Tromey  <tromey@redhat.com>
5430
5431         * charset.c (find_charset_names): Check 'in' against NULL.
5432
5433 2012-02-06  Doug Evans  <dje@google.com>
5434
5435         * gdbtypes.h (struct main_type): Change type of name,tag_name,
5436         and fields.name members from char * to const char *.  All uses updated.
5437         (struct cplus_struct_type): Change type of fn_fieldlists.name member
5438         from char * to const char *.  All uses updated.
5439         (type_name_no_tag): Update.
5440         (lookup_unsigned_typename, lookup_signed_typename): Update.
5441         * gdbtypes.c (type_name_no_tag): Change result type
5442         from char * to const char *.  All callers updated.
5443         (lookup_unsigned_typename, lookup_signed_typename): Change type of
5444         name parameter from char * to const char *.
5445         * symtab.h (struct cplus_specific): Change type of demangled_name
5446         member from char * to const char *.  All uses updated.
5447         (struct general_symbol_info): Change type of name and
5448         mangled_lang.demangled_name members from char * to const char *.
5449         All uses updated.
5450         (symbol_get_demangled_name, symbol_natural_name): Update.
5451         (symbol_demangled_name, symbol_search_name): Update.
5452         * symtab.c (symbol_get_demangled_name): Change result type
5453         from char * to const char *.  All callers updated.
5454         (symbol_natural_name, symbol_demangled_name): Ditto.
5455         (symbol_search_name): Ditto.
5456         (completion_list_add_name): Change type of symname,sym_text,
5457         text,word parameters from char * to const char *.
5458         (completion_list_objc_symbol): Change type of sym_text,
5459         text,word parameters from char * to const char *.
5460         * ada-lang.c (find_struct_field): Change type of name parameter
5461         from char * to const char *.
5462         (encoded_ordered_before): Similarly for N0,N1 parameters.
5463         (old_renaming_is_invisible): Similarly for function_name parameter.
5464         (ada_type_name): Change result type from char * to const char *.
5465         All callers updated.
5466         * ada-lang.h (ada_type_name): Update.
5467         * buildsym.c (hashname): Change type of name parameter
5468         from char * to const char *.
5469         * buildsym.h (hashname): Update.
5470         * dbxread.c (end_psymtab): Change type of include_list parameter
5471         from char ** to const char **.
5472         * dwarf2read.c (determine_prefix): Change result type
5473         from char * to const char *.  All callers updated.
5474         * f-lang.c (find_common_for_function): Change type of name, funcname
5475         parameters from char * to const char *.
5476         * f-lang.c (find_common_for_function): Update.
5477         * f-valprint.c (list_all_visible_commons): Change type of funcname
5478         parameters from char * to const char *.
5479         * gdbarch.sh (static_transform_name): Change type of name parameter
5480         and result from char * to const char *.
5481         * gdbarch.c: Regenerate.
5482         * gdbarch.h: Regenerate.
5483         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
5484         of name parameter from char * to const char *.
5485         * jv-lang.c (java_primitive_type_from_name): Ditto.
5486         (java_demangled_signature_length): Similarly for signature parameter.
5487         (java_demangled_signature_copy): Ditto.
5488         (java_demangle_type_signature): Ditto.
5489         * jv-lang.h (java_primitive_type_from_name): Update.
5490         (java_demangle_type_signature): Update.
5491         * objc-lang.c (specialcmp): Change type of a,b parameters
5492         from char * to const char *.
5493         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
5494         from char * to const char *.  All callers updated.
5495         * p-lang.h (is_pascal_string_type): Update.
5496         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
5497         of name parameter from char * to const char *.
5498         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
5499         * utils.c (fprintf_symbol_filtered): Ditto.
5500         * defs.h (fprintf_symbol_filtered): Update.
5501         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
5502         * stabsread.h (end_psymtab): Update.
5503         * stack.c (find_frame_funname): Change type of funname parameter
5504         from char ** to const char **.
5505         * stack.h (find_frame_funname): Update.
5506         * typeprint.c (type_print): Change type of varstring parameter
5507         from char * to const char *.
5508         * value.h (type_print): Update.
5509         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
5510         from char * to const char *.  All callers updated.
5511         (xcoff_end_psymtab): Change type of include_list parameter
5512         from char ** to const char **.  All callers updated.
5513         (swap_sym): Similarly for name parameter.  All callers updated.
5514         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
5515         Use xstrdup.
5516         (process_coff_symbol): Use xstrdup.
5517         * stabsread.c (stabs_method_name_from_physname): Renamed from
5518         update_method_name_from_physname.  Change result type from void
5519         to char *.  All callers updated.
5520         (read_member_functions): In has_destructor case, store name in objfile
5521         obstack instead of malloc space.  In !has_stub case, fix mem leak.
5522
5523 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
5524
5525         * configure: Rebuild.
5526         * configure.ac: Put -L../bfd and -L../libiberty at the front of
5527         LDFLAGS.
5528
5529 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
5530
5531         * configure.tgt (rl78-*-elf): New target.
5532         * rl78-tdep.c: New file.
5533
5534 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
5535
5536         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
5537         and continue the loop.  Add QUIT statement.
5538
5539 2012-02-03  Tom Tromey  <tromey@redhat.com>
5540
5541         PR gdb/13596:
5542         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
5543         bfd_lookup_symbol_from_symtab.
5544         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
5545         gdb_bfd_lookup_symbol_from_symtab.
5546
5547 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
5548
5549         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
5550         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
5551         symbol.  Add assertion that sym2 is never NULL.
5552
5553 2012-02-02  Doug Evans  <dje@google.com>
5554
5555         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
5556         "name" parameter to const char ** from char **.  All callers updated.
5557         (find_pc_partial_function): Ditto.
5558         (cache_pc_function_name): Change type to const char * from char *.
5559         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
5560         (find_pc_partial_function): Update.
5561         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
5562         type of "name" parameter to const char * from char *.
5563         All uses updated.
5564         * arch-utils.c (generic_in_solib_return_trampoline): Change
5565         type of "name" parameter to const char * from char *.
5566         * arch-utils.h (generic_in_solib_return_trampoline): Update.
5567         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
5568         type of "name" parameter to const char * from char *.
5569         * gdbarch.sh (in_solib_return_trampoline): Ditto.
5570         * gdbarch.c: Regenerate.
5571         * gdbarch.h: Regenerate.
5572         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
5573         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
5574         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
5575         type of "name" parameter to const char * from char *.
5576         * skip.c (skip_function_pc): Ditto.
5577         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
5578         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
5579         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
5580         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
5581         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
5582         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
5583         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
5584         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
5585         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
5586
5587 2012-02-02  Pedro Alves  <palves@redhat.com>
5588
5589         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
5590         the current inferior has no execution.  Make sure the current
5591         remote process matches gdb's current inferior.
5592
5593 2012-02-02  Tom Tromey  <tromey@redhat.com>
5594
5595         PR gdb/13405:
5596         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
5597         read-only memory.
5598
5599 2012-02-02  Tom Tromey  <tromey@redhat.com>
5600
5601         PR gdb/9307:
5602         * symtab.c (lookup_language_this): Set block_found.
5603
5604 2012-02-01  Tom Tromey  <tromey@redhat.com>
5605
5606         PR gdb/13431:
5607         * jit.c (struct jit_inferior_data): Rewrite.
5608         (struct jit_objfile_data): New.
5609         (get_jit_objfile_data): New function.
5610         (add_objfile_entry): Update.
5611         (jit_read_descriptor): Return int.  Replace descriptor_addr
5612         argument with inf_data.  Update.  Don't call error.
5613         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
5614         descriptor here.
5615         (jit_inferior_init): Don't look up descriptor.  Don't call error.
5616         (jit_reset_inferior_data_and_breakpoints)
5617         (jit_inferior_created_observer): Remove.
5618         (jit_inferior_exit_hook): Update.
5619         (jit_executable_changed_observer): Remove.
5620         (jit_event_handler): Update.
5621         (free_objfile_data): Reset inferior data if needed.
5622         (_initialize_jit): Update.
5623
5624 2012-02-01  Tom Tromey  <tromey@redhat.com>
5625
5626         * jit.c (bfd_open_from_target_memory): Move higher in file.
5627
5628 2012-02-01  Tristan Gingold  <gingold@adacore.com>
5629
5630         * libunwind-frame.c (libunwind_load): Display message if dlopen
5631         failed.
5632
5633 2012-02-01  Gary Benson  <gbenson@redhat.com>
5634
5635         * symtab.h (symbol_found_callback_ftype): New typedef.
5636         (iterate_over_symbols): Use the above.
5637         * symtab.c (iterate_over_symbols): Likewise.
5638         * language.h (language_defn->la_iterate_over_symbols): Likewise.
5639         * ada-lang.c (ada_iterate_over_symbols): Likewise.
5640         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
5641         (iterate_name_matcher): Document return values.
5642         (collect_one_symbol): Likewise.
5643         (collect_function_symbols): Likewise.
5644         (collect_symbols): Likewise.
5645
5646 2012-02-01  Tom Tromey  <tromey@redhat.com>
5647
5648         * ada-lang.c (resolve_subexp): Update.
5649         (ada_lookup_symbol_list): Add 'full_search' argument.
5650         (ada_iterate_over_symbols): Pass 0 as full_search argument to
5651         ada_lookup_symbol_list.
5652         (ada_lookup_encoded_symbol): Update.
5653         (get_var_value): Update.
5654         * ada-exp.y (block_lookup): Update.
5655         (write_var_or_type): Update.
5656         (write_name_assoc): Update.
5657         * ada-lang.h (ada_lookup_symbol_list): Update.
5658
5659 2012-01-31  Tom Tromey  <tromey@redhat.com>
5660
5661         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
5662         comment.
5663
5664 2012-01-31  Doug Evans  <dje@google.com>
5665
5666         * symtab.h: Remove outdated comment.
5667         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
5668
5669 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
5670
5671         Fix build error in Darwin port.
5672         * i386-darwin-nat.c: Include i386-nat.h.
5673
5674 2012-01-30  Tom Tromey  <tromey@redhat.com>
5675
5676         PR breakpoints/13568:
5677         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
5678         argument.  Check for recursive includes.
5679         (dwarf_decode_macros): Create an include hash.
5680
5681 2012-01-30  Michael Eager  <eager@eagercon.com>
5682
5683         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
5684         * ppc-linux-tdep.c: Include glibc-tdep.h.
5685         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
5686         (powerpc_linux_in_plt_stub): New function.
5687         (powerpc_linux_in_dynsym_resolve_code): New function.
5688         (ppc_skip_trampoline_code): New function.
5689         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
5690         Use glibc_skip_solib_resolver.
5691
5692 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5693
5694         Code cleanup: Make 1440 bytes of data segment read-only.
5695         * arch-utils.c (endian_enum): Make it const char *const [].
5696         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
5697         Likewise.
5698         * breakpoint.c (always_inserted_enums): Likewise.
5699         * cli/cli-cmds.c (script_ext_enums): Likewise.
5700         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
5701         enumlist parameter const char *const *.
5702         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
5703         const char *const *.
5704         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
5705         parameter const char *const *.
5706         * cris-tdep.c (cris_modes): Make it const char *const [].
5707         * filesystem.c (target_file_system_kinds): Likewise.
5708         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
5709         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
5710         (can_use_displaced_stepping_enum, scheduler_enums)
5711         (exec_direction_names): Likewise.
5712         * language.c (_initialize_language): Make the type_or_range_names and
5713         case_sensitive_names variables const char *const [].
5714         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
5715         * python/python.c (python_excp_enums): Likewise.
5716         * remote.c (interrupt_sequence_modes): Likewise.
5717         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
5718         * serial.c (logbase_enums): Likewise.
5719         * sh-tdep.c (sh_cc_enum): Likewise.
5720         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
5721         Likewise.
5722         * symtab.c (multiple_symbols_modes): Likewise.
5723         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
5724         Likewise.
5725         * utils.c (internal_problem_modes): Likewise.
5726
5727 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
5728
5729         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
5730         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
5731         result.
5732
5733 2012-01-27  Doug Evans  <dje@google.com>
5734
5735         * configure.ac (with_python): Fix absolute path handling for win32.
5736         * configure: Regenerate.
5737
5738 2012-01-26  Doug Evans  <dje@google.com>
5739
5740         * symtab.c: Whitespace cleanup, no code changes.
5741
5742         * symtab.c (lookup_symbol_in_language): Improve comment.
5743         (lookup_symbol_aux): Fix comment.
5744
5745         * psymtab.c (add_psymbol_to_list): Result is now "void".
5746         * psympriv.h (add_psymbol_to_list): Update.
5747
5748         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
5749
5750 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
5751
5752         Do not open script filenames twice.
5753         * cli/cli-cmds.c (source_script_from_stream): Pass to
5754         source_python_script also STREAM.
5755         * python/py-auto-load.c (source_section_scripts): Pass to
5756         source_python_script_for_objfile also STREAM.
5757         (auto_load_objfile_script): Pass to source_python_script_for_objfile
5758         also INPUT.
5759         * python/python-internal.h (source_python_script_for_objfile): New
5760         parameter file, rename parameter file to filename.
5761         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
5762         instead if !_WIN32.  Update the function comment.
5763         (source_python_script, source_python_script_for_objfile)
5764         (source_python_script): New parameter file, rename parameter file to
5765         filename.  Pass FILENAME to python_run_simple_file.
5766         * python/python.h (source_python_script): New parameter file, rename
5767         parameter file to filename.
5768
5769 2012-01-26  Pedro Alves  <palves@redhat.com>
5770
5771         * corelow.c (core_has_fake_pid): Delete.
5772         (core_close): Delete references to `core_has_fake_pid'.
5773         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
5774         (core_open): Delete references to `core_has_fake_pid'.
5775         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
5776         the removed global.
5777
5778 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
5779
5780         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
5781         Remove language parameter from name_matcher.  Adjust the comment.
5782         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
5783         Remove language parameter.
5784         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
5785         * linespec.c (iterate_name_matcher): Likewise.
5786         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
5787         name_matcher.  Adjust call accordingly.
5788         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
5789         (maintenance_check_symtabs): Adjust type of parameter "fun".
5790         * psymtab.h (maintenance_check_symtabs): Likewise.
5791
5792 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
5793
5794         * language.h (symbol_name_match_p_ftype): New typedef.
5795         (struct language_defn): Replace field la_symbol_name_compare
5796         by la_get_symbol_name_match_p.
5797         * ada-lang.c (ada_get_symbol_name_match_p): New function.
5798         (ada_language_defn): Use it.
5799         * linespec.c (struct symbol_matcher_data): New type.
5800         (iterate_name_matcher): Rewrite.
5801         (iterate_over_all_matching_symtabs): Pass a pointer to
5802         a symbol_matcher_data struct to expand_symtabs_matching
5803         instead of just the lookup name.
5804         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
5805         opencl-lang.c, p-lang.c, language.c: Delete field
5806         la_symbol_name_compare, and replace by NULL for new field
5807         la_get_symbol_name_match_p.
5808         * symfile.h (struct quick_symbol_functions): Update comment.
5809
5810 2012-01-25  Tom Tromey  <tromey@redhat.com>
5811
5812         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
5813         dereferencing.
5814
5815 2012-01-24  Tom Tromey  <tromey@redhat.com>
5816
5817         PR symtab/12406:
5818         * solib.c (update_solib_list): Update the program space's
5819         added_solibs and deleted_solibs fields.
5820         * progspace.h (struct program_space) <added_solibs,
5821         deleted_solibs>: New fields.
5822         (clear_program_space_solib_cache): Declare.
5823         * progspace.c (release_program_space): Call
5824         clear_program_space_solib_cache.
5825         (clear_program_space_solib_cache): New function.
5826         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
5827         bpstat_stop_status.  Use handle_solib_event.
5828         * breakpoint.c: Include gdb_regex.h.
5829         (print_solib_event): New function.
5830         (bpstat_print): Use print_solib_event.
5831         (bpstat_stop_status): Add special case for bp_shlib_event.
5832         (handle_solib_event): New function.
5833         (bpstat_what): Use handle_solib_event.
5834         (struct solib_catchpoint): New.
5835         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
5836         (breakpoint_hit_catch_solib, check_status_catch_solib)
5837         (print_it_catch_solib, print_one_catch_solib)
5838         (print_mention_catch_solib, print_recreate_catch_solib): New
5839         functions.
5840         (catch_solib_breakpoint_ops): New global.
5841         (catch_load_or_unload, catch_load_command_1)
5842         (catch_unload_command_1): New functions.
5843         (internal_bkpt_check_status): Add special case for
5844         bp_shlib_event.
5845         (internal_bkpt_print_it): Use print_solib_event.
5846         (initialize_breakpoint_ops): Initialize
5847         catch_solib_breakpoint_ops.
5848         (_initialize_breakpoint): Register "catch load" and "catch
5849         unload".
5850         * breakpoint.h (handle_solib_event): Declare.
5851         * NEWS: Add entry for "catch load" and "catch unload".
5852
5853 2012-01-24  Tom Tromey  <tromey@redhat.com>
5854
5855         * ada-lang.c: Include gdb_vecs.h.
5856         * charset.c: Include gdb_vecs.h.
5857         * tracepoint.h: Include gdb_vecs.h.
5858         * gdb_vecs.h: New file.
5859
5860 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
5861
5862         * breakpoint.c (breakpoint_hit_catch_fork)
5863         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
5864         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
5865         * infrun.c (inferior_has_forked, inferior_has_vforked)
5866         (inferior_has_execd, inferior_has_called_syscall): Delete.
5867         (handle_syscall_event): Get syscall_number from the execution
5868         control state's wait status.
5869         (wait_for_inferior): Don't clear syscall_number.
5870
5871 2012-01-24  Pedro Alves  <palves@redhat.com>
5872
5873         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
5874         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
5875         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
5876         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
5877         `ws' parameter.
5878         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
5879         false for events other than TARGET_SIGNAL_TRAP.
5880         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
5881         Add `ws' parameter.
5882         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
5883         events other than TARGET_SIGNAL_TRAP.
5884         (tracepoint_breakpoint_hit): Add `ws' parameter.
5885         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
5886         parameter.
5887         (bpstat_stop_status): Same.
5888         (pc_at_non_inline_function): Same.
5889         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
5890         to pass the current event's waitstatus to bpstat_stop_status
5891         and pc_at_non_inline_function.
5892
5893 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5894
5895         Code cleanup.
5896         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
5897         Update the function comment for it.
5898         (source_script_with_search): Call make_cleanup_fclose for STREAM.
5899         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
5900         for STREAM.
5901
5902 2012-01-24  Pedro Alves  <palves@redhat.com>
5903
5904         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
5905         outside `bs->stop' block.
5906         (bpstat_what): Rework bp_shlib_event handling.
5907         (internal_bkpt_check_status): If the breakpoint is a
5908         bp_shlib_event, then set bs->stop and bs->print if
5909         stop_on_solib_events is set.
5910
5911 2012-01-24  Gary Benson  <gbenson@redhat.com>
5912
5913         Delete #if 0'd out code.
5914         * stack.c (print_frame_label_vars): Remove.
5915         (catch_info): Likewise.
5916         (_initialize_stack): Remove "info catch" command.
5917         * NEWS: Mention the above.
5918
5919 2012-01-24  Pedro Alves  <palves@redhat.com>
5920
5921         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
5922         it.
5923         (remote_notice_new_inferior): If the remote end doesn't support
5924         the multiprocess extensions, then the PID is fake.
5925         (add_current_inferior_and_thread): New.
5926         (remote_start_remote): Use it.
5927         (extended_remote_attach_1): Adjust.
5928         (extended_remote_create_inferior_1): Use
5929         add_current_inferior_and_thread.
5930
5931 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5932
5933         Fix watchpoints to be specific for each inferior.
5934         * breakpoint.c (watchpoint_in_thread_scope): Verify also
5935         current_program_space.
5936         * i386-nat.c (i386_inferior_data_cleanup): New.
5937         (i386_inferior_data_get): Replace variable inf_data_local by an
5938         inferior_data call.
5939         (i386_use_watchpoints): Initialize i386_inferior_data.
5940         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
5941         specific iterate_over_lwps.
5942
5943 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5944
5945         Fix watchpoints across inferior fork.
5946         * amd64-linux-nat.c (update_debug_registers_callback): Update the
5947         comment for linux_nat_iterate_watchpoint_lwps.
5948         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
5949         linux_nat_iterate_watchpoint_lwps.
5950         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
5951         * i386-linux-nat.c (update_debug_registers_callback): Update the
5952         comment for linux_nat_iterate_watchpoint_lwps.
5953         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
5954         linux_nat_iterate_watchpoint_lwps.
5955         (i386_linux_prepare_to_resume): New comment on Linux kernel.
5956         * i386-nat.c: Include inferior.h.
5957         (dr_mirror): Remove.
5958         (i386_inferior_data, struct i386_inferior_data)
5959         (i386_inferior_data_get): New.
5960         (i386_debug_reg_state): Use i386_inferior_data_get.
5961         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
5962         (i386_insert_watchpoint, i386_remove_watchpoint)
5963         (i386_stopped_data_address, i386_insert_hw_breakpoint)
5964         (i386_remove_hw_breakpoint): New variable state, use
5965         i386_debug_reg_state instead of DR_MIRROR.
5966         * linux-nat.c (delete_lwp): New declaration.
5967         (num_lwps): Move here from downwards.
5968         (delete_lwp_cleanup): New.
5969         (linux_child_follow_fork): Create new child_lp, call
5970         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
5971         PTRACE_DETACH.
5972         (num_lwps): Move upwards.
5973         (linux_nat_iterate_watchpoint_lwps): New.
5974         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
5975         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
5976
5977 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
5978
5979         GDB 7.4 released.
5980
5981 2012-01-23  Pedro Alves  <palves@redhat.com>
5982
5983         * top.c (caution): Rename to ...
5984         (confirm): ... this.
5985         (show_caution): Rename to ...
5986         (show_confirm): ... this.
5987         (quit_cover): Adjust.
5988         (init_main): Adjust.
5989         * top.h (caution): Rename to ...
5990         (confirm): ... this.
5991         * utils.c (internal_vproblem, defaulted_query): Adjust.
5992
5993 2012-01-23  Pedro Alves  <palves@redhat.com>
5994
5995         * top.c (caution): Update comment.
5996         (execute_command): Don't consider the current value of `caution'.
5997
5998 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
5999
6000         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
6001
6002 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
6003
6004         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
6005         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
6006         * target.c (target_fileio_pwrite): Remove buffer address from
6007         debug output.
6008         (target_fileio_pread): Likewise.
6009
6010 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6011
6012         * NEWS: Document remote "info proc" and "generate-core-file".
6013
6014 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6015
6016         * gdbarch.sh (find_memory_regions): New callback.
6017         * gdbarch.c, gdbarch.h: Regenerate.
6018
6019         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
6020         callback before falling back to target method.
6021
6022         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
6023         (linux_target_install_ops): No longer install it.
6024
6025         * linux-tdep.c (linux_find_memory_regions): New function.
6026         (linux_init_abi): Install it.
6027
6028 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6029
6030         * gdbarch.sh (make_corefile_notes): New architecture callback.
6031         * gdbarch.c: Regenerate.
6032         * gdbarch.h: Likewise.
6033
6034         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
6035         before target_make_corefile_notes.  If NULL is returned, the
6036         target does not support core file generation.
6037
6038         * linux-nat.c: Include "linux-tdep.h".
6039         (find_signalled_thread, find_stop_signal): Remove.
6040         (linux_nat_do_thread_registers): Likewise.
6041         (struct linux_nat_corefile_thread_data): Likewise.
6042         (linux_nat_corefile_thread_callback): Likewise.
6043         (iterate_over_spus): Likewise.
6044         (struct linux_spu_corefile_data): Likewise.
6045         (linux_spu_corefile_callback): Likewise.
6046         (linux_spu_make_corefile_notes): Likewise.
6047         (linux_nat_collect_thread_registers): New function.
6048         (linux_nat_make_corefile_notes): Replace contents by call to
6049         linux_make_corefile_notes passing linux_nat_collect_thread_registers
6050         as native-only callback.
6051
6052         * linux-tdep.h: Include "bfd.h".
6053         (struct regcache): Add forward declaration.
6054         (linux_collect_thread_registers_ftype): New typedef.
6055         (linux_make_corefile_notes): Add prototype.
6056         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
6057         "regset.h", and "elf-bfd.h".
6058         (find_signalled_thread, find_stop_signal): New functions.
6059         (linux_spu_make_corefile_notes): Likewise.
6060         (linux_collect_thread_registers): Likewise.
6061         (struct linux_corefile_thread_data): New data structure.
6062         (linux_corefile_thread_callback): New funcion.
6063         (linux_make_corefile_notes): Likewise.
6064         (linux_make_corefile_notes_1): Likewise.
6065         (linux_init_abi): Install it.
6066
6067 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6068
6069         * gdbarch.sh (info_proc): New callback.
6070         * gdbarch.c, gdbarch.h: Regenerate.
6071
6072         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
6073         before falling back to the target info_proc callback.
6074
6075         * linux-nat.c: Do not include "cli/cli-utils.h".
6076         (linux_nat_info_proc): Remove.
6077         (linux_target_install_ops): No longer install it.
6078
6079         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
6080         (read_mapping): New function.
6081         (linux_info_proc): Likewise.
6082         (linux_init_abi): Install it.
6083
6084 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6085
6086         * defs.h (enum info_proc_what): Moved here from linux-nat.c
6087         * infcmd.c: (info_proc_cmd_1): New function.
6088         (info_proc_cmd): New function, moved here from equivalent routine
6089         orignally in linux-nat.c.
6090         (info_proc_cmd_mappings): Likewise.
6091         (info_proc_cmd_stat): Likewise.
6092         (info_proc_cmd_status): Likewise.
6093         (info_proc_cmd_cwd): Likewise.
6094         (info_proc_cmd_cmdline): Likewise.
6095         (info_proc_cmd_exe): Likewise.
6096         (info_proc_cmd_all): Likewise.
6097         (_initialize_infcmd): Install "info proc" command and subcommands.
6098
6099         * target.h (struct target_ops): Add to_info_proc.
6100         (target_info_proc): Add prototype.
6101         * target.c (target_info_proc): New function.
6102
6103         * procfs.c (procfs_info_proc): Add prototype.
6104         (info_proc_cmd): Rename into ...
6105         (procfs_info_proc): ... this.  Update argument types as appropriate
6106         for a to_info_proc implementation.  Handle "what" argument.
6107         (procfs_target): Install procfs_info_proc.
6108         (_initialize_procfs): No longer install "info proc" command.
6109
6110         * linux-nat.c: (enum info_proc_what): Remove.
6111         (linux_nat_info_proc_cmd_1): Rename into ...
6112         (linux_nat_info_proc): ... this.  Update argument types as appropriate
6113         for a to_info_proc implementation.
6114         (linux_nat_info_proc_cmd): Remove.
6115         (linux_nat_info_proc_cmd_mappings): Likewise.
6116         (linux_nat_info_proc_cmd_stat): Likewise.
6117         (linux_nat_info_proc_cmd_status): Likewise.
6118         (linux_nat_info_proc_cmd_cwd): Likewise.
6119         (linux_nat_info_proc_cmd_cmdline): Likewise.
6120         (linux_nat_info_proc_cmd_exe): Likewise.
6121         (linux_nat_info_proc_cmd_all): Likewise.
6122         (linux_target_install_ops): Install linux_nat_info_proc.
6123         (_initialize_linux_nat): No longer install "info proc" command
6124         and subcommands.
6125
6126 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
6127
6128         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
6129         * config.in, configure: Regenerate.
6130
6131         * target.h (struct target_ops): Add to_fileio_readlink.
6132         (target_fileio_readlink): Add prototype.
6133         * target.c (target_fileio_readlink): New function.
6134
6135         * inf-child.c: Conditionally include <sys/param.h>.
6136         (inf_child_fileio_readlink): New function.
6137         (inf_child_target): Install it.
6138
6139         * remote.c (PACKET_vFile_readlink): New enum value.
6140         (remote_hostio_readlink): New function.
6141         (init_remote_ops): Install it.
6142         (_initialize_remote): Handle vFile:readlink packet type.
6143
6144 2012-01-20  Pedro Alves  <palves@redhat.com>
6145             Ulrich Weigand  <ulrich.weigand@linaro.org>
6146
6147         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
6148         * config.in, configure: Regenerate.
6149
6150         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
6151         to_fileio_pread, to_fileio_close, to_fileio_unlink.
6152         (target_fileio_open): Add prototype.
6153         (target_fileio_pwrite): Likewise.
6154         (target_fileio_pread): Likewise.
6155         (target_fileio_close): Likewise.
6156         (target_fileio_unlink): Likewise.
6157         (target_fileio_read_alloc): Likewise.
6158         (target_fileio_read_stralloc): Likewise.
6159
6160         * target.c: Include "gdb/fileio.h".
6161         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
6162         (default_fileio_target): New function.
6163         (target_fileio_open): Likewise.
6164         (target_fileio_pwrite): Likewise.
6165         (target_fileio_pread): Likewise.
6166         (target_fileio_close): Likewise.
6167         (target_fileio_unlink): Likewise.
6168         (target_fileio_close_cleanup): Likewise.
6169         (target_fileio_read_alloc_1): Likewise.
6170         (target_fileio_read_alloc): Likewise.
6171         (target_fileio_read_stralloc): Likewise.
6172
6173         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
6174         <fcntl.h>, and <unistd.h>.
6175         (inf_child_fileio_open_flags_to_host): New function.
6176         (inf_child_errno_to_fileio_error): Likewise.
6177         (inf_child_fileio_open): Likewise.
6178         (inf_child_fileio_pwrite): Likewise.
6179         (inf_child_fileio_pread): Likewise.
6180         (inf_child_fileio_close): Likewise.
6181         (inf_child_fileio_unlink): Likewise.
6182         (inf_child_target): Install to_fileio routines.
6183
6184         * remote.c (init_remote_ops): Install to_fileio routines.
6185
6186 2012-01-20  Pedro Alves  <palves@redhat.com>
6187             Ulrich Weigand  <ulrich.weigand@linaro.org>
6188
6189         * remote.c (remote_multi_process_p): Only check for multi-process
6190         protocol feature, do not check for extended protocol.
6191         (remote_supports_multi_process): Check for extended protocol here.
6192         (set_general_process): Likewise.
6193         (extended_remote_kill): Likewise.
6194         (remote_pid_to_str): Likewise.
6195         (remote_query_supported): Always query multiprocess mode.
6196
6197 2012-01-20  Pedro Alves  <palves@redhat.com>
6198             Ulrich Weigand  <ulrich.weigand@linaro.org>
6199
6200         * inferior.h (struct inferior): Add fake_pid_p.
6201         * inferior.c (exit_inferior_1): Clear fake_pid_p.
6202         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
6203         magic_null_ptid since the remote side doesn't provide a real PID.
6204
6205 2012-01-19  Tom Tromey  <tromey@redhat.com>
6206
6207         * NEWS: Combine the two Python sections.
6208
6209 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
6210
6211         * target.h (target_close): Update comment on the target's unpush state.
6212
6213 2012-01-19  Pedro Alves  <palves@redhat.com>
6214
6215         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
6216         linux_nat_async directly instead of going through the target
6217         vector.
6218         * target.c (unpush_target): Close target after unpushing it, not
6219         before.
6220
6221 2012-01-19  Gary Benson  <gbenson@redhat.com>
6222
6223         * mdebugread.c (sort_blocks): Replace integer constants with ones
6224         derived from FIRST_LOCAL_BLOCK.
6225
6226 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
6227             Jan Kratochvil  <jan.kratochvil@redhat.com>
6228
6229         PR gdb/9538
6230         * symfile.c (find_separate_debug_file): New function.
6231         (terminate_after_last_dir_separator): Likewise.
6232         (find_separate_debug_file_by_debuglink): Also try realpath.
6233         * configure.ac (AC_CHECK_FUNCS): Add lstat.
6234         * configure: Regenerate.
6235         * config.in: Regenerate.
6236
6237 2012-01-18  Doug Evans  <dje@google.com>
6238
6239         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
6240         (main.o): Remove rule.
6241         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
6242         (--with-sysroot): Rewrite.
6243         * configure: Regenerate.
6244         * config.in: Regenerate.
6245
6246 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
6247
6248         * parse.c (initialize_expout): New function.
6249         (reallocate_expout): Likewise.
6250         (parse_exp_in_context): Use `initialize_expout' and
6251         `reallocate_expout' when appropriate.
6252
6253 2012-01-18  Pedro Alves  <palves@redhat.com>
6254
6255         * record.c (struct record_breakpoint, record_breakpoint_p)
6256         (record_breakpoints): New.
6257         (record_insert_breakpoint, record_remove_breakpoint): Manage
6258         record breakpoints list.  Only remove breakpoints from the
6259         inferior if they had been inserted there in the first place.
6260
6261 2012-01-17  Doug Evans  <dje@google.com>
6262
6263         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
6264         if we know we don't have a file name to look for.
6265
6266 2012-01-17  Pedro Alves  <palves@redhat.com>
6267
6268         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
6269         the frame's stop reason is UNWIND_UNAVAILABLE.
6270
6271 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
6272
6273         Fix compilation error.
6274         * m2-exp.y (yyerror): Use ANSI C prototype.
6275
6276 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6277
6278         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
6279         (growbuf_by_size): Likewise.
6280         (yyerror): Likewise.
6281         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
6282         (modblock): Remove variable (was #if 0'ed).
6283         (parse_number): Convert prototype from K&R to ANSI C.
6284         (yyerror): Likewise.
6285         * objc-exp.y (parse_number): Likewise.
6286         (yyerror): Likewise.
6287         (yylex): Remove #if 0'ed code.
6288         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
6289         (yyerror): Likewise.
6290
6291 2012-01-16  Tom Tromey  <tromey@redhat.com>
6292
6293         * NEWS: Add item.
6294         * symtab.h (compare_filenames_for_search): Declare.
6295         * symtab.c (compare_filenames_for_search): New function.
6296         (iterate_over_some_symtabs): Use it.
6297         * symfile.h (struct quick_symbol_functions)
6298         <map_symtabs_matching_filename>: Change spec.
6299         * psymtab.c (partial_map_symtabs_matching_filename): Use
6300         compare_filenames_for_search.  Update for new spec.
6301         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
6302         compare_filenames_for_search.  Update for new spec.
6303         * breakpoint.c (clear_command): Use compare_filenames_for_search.
6304
6305 2012-01-16  Tom Tromey  <tromey@redhat.com>
6306
6307         PR python/13281:
6308         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
6309         (struct main_type) <flag_flag_enum>: New field.
6310         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
6311         * NEWS: Add entries.
6312         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
6313         enums.
6314         * python/lib/gdb/printing.py (_EnumInstance): New class.
6315         (FlagEnumerationPrinter): Likewise.
6316
6317 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6318
6319         * breakpoint.c (create_sals_from_address_default): New function.
6320         (create_breakpoints_sal_default): Likewise.
6321         (decode_linespec_default): Likewise.
6322         (is_marker_spec): Removed.
6323         (strace_marker_p): New function.
6324         (init_breakpoint_sal): Using `strace_marker_p' instead of
6325         `is_marker_spec'.
6326         (create_breakpoint): Call method `create_sals_from_address' from
6327         breakpoint_ops, replacing code that created SALs conditionally
6328         on the type of the breakpoint.  Call method `create_breakpoints_sal',
6329         replacing code that created breakpoints conditionally on the type
6330         wanted.
6331         (base_breakpoint_create_sals_from_address): New function.
6332         (base_breakpoint_create_breakpoints_sal): Likewise.
6333         (base_breakpoint_decode_linespec): Likewise.
6334         (base_breakpoint_ops): Add methods
6335         `base_breakpoint_create_sals_from_address',
6336         `base_breakpoint_create_breakpoints_sal' and
6337         `base_breakpoint_decode_linespec'.
6338         (bkpt_create_sals_from_address): New function.
6339         (bkpt_create_breakpoints_sal): Likewise.
6340         (bkpt_decode_linespec): Likewise.
6341         (tracepoint_create_sals_from_address): Likewise.
6342         (tracepoint_create_breakpoints_sal): Likewise.
6343         (tracepoint_decode_linespec): Likewise.
6344         (strace_marker_create_sals_from_address): Likewise.
6345         (strace_marker_create_breakpoints_sal): Likewise.
6346         (strace_marker_decode_linespec): Likewise.
6347         (strace_marker_breakpoint_ops): New variable.
6348         (addr_string_to_sals): Remove `marker_spec'.  Call method
6349         `decode_linespec' from breakpoint_ops, replacing code that decoded
6350         an address string into a SAL.  Use `strace_marker_p' instead of
6351         `marker_spec'.
6352         (strace_command): Decide whether we are dealing with a static
6353         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
6354         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
6355         * breakpoint.h (linespec_result, linespec_sals): New forward
6356         declarations.
6357         (breakpoint_ops) <create_sals_from_address>,
6358         <create_breakpoints_sal>, <decode_linespec>: New methods.
6359
6360 2012-01-14  Doug Evans  <dje@google.com>
6361
6362         * NEWS: Update text for "maint set python print-stack".
6363         It is deprecated in gdb 7.4 and deleted in 7.5.
6364
6365 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
6366
6367         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
6368         including curses.h.
6369
6370 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
6371
6372         * configure: Regenerate.
6373         * config.in: Regenerate.
6374
6375 2012-01-12  Keith Seitz  <keiths@redhat.com>
6376
6377         PR mi/10586
6378         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
6379         (ANONYMOUS_UNION_NAME): Define.
6380         (is_path_expr_parent): New function.
6381         (get_path_expr_parent): New function.
6382         (is_anonymous_child): New function.
6383         (create_child_with_value): If the child is anonymous and without
6384         a name, assign an object name to it.
6385         (c_describe_child): Use get_path_expr_parent to determine
6386         the parent expression.
6387         If there field represents an anonymous struct or union and
6388         has no name, set an appropriate display name and expression.
6389         (cplus_describe_child): Likewise.
6390
6391 2012-01-12  Pedro Alves  <palves@redhat.com>
6392
6393         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
6394         available when %ebp is found to be zero (outermost).
6395
6396 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
6397
6398         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
6399         an internal gdb_static_assert.
6400         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
6401
6402 2012-01-11  Tom Tromey  <tromey@redhat.com>
6403
6404         PR gdb/9598:
6405         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
6406         catch" and "catch throw".
6407
6408 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
6409
6410         * blockframe.c (block_innermost_frame): Start search from selected
6411         frame, if present, or otherwise the current frame.
6412
6413         * c-exp.y (variable): Update innermost_block for
6414         'block COLONCOLON NAME' clause.
6415         * m2-exp.y (variable): Ditto.
6416         * objc-exp.y (variable): Ditto.
6417
6418 2012-01-10  Tom Tromey  <tromey@redhat.com>
6419
6420         PR python/13199:
6421         * python/python.c (finish_python_initialization): Set sys.argv.
6422
6423 2012-01-10  Doug Evans  <dje@google.com>
6424
6425         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
6426         "want_line_info".  All callers updated.
6427         (dwarf_decode_lines_1): New function.
6428         (handle_DW_AT_stmt_list): Add function comment.
6429         New arg "want_line_info".  All callers updated.
6430         (read_file_scope,read_type_unit_scope): Move comment from
6431         handle_DW_AT_stmt_list to here.
6432
6433 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6434
6435         Fix regression after libiberty/ update for GCC PR 6057 and others.
6436         * c-exp.y (operator) <OPERATOR DELETE>
6437         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
6438         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
6439         (make_builtin_type, make_name): New variable i, add gdb_assert.
6440         (operator) <OPERATOR NEW>: Update ARGS to 3.
6441         (operator) <OPERATOR DELETE>: Add trailing space.
6442         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
6443         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
6444         * cp-support.c (cp_canonicalize_string): Check NULL from
6445         cp_comp_to_string, call warning and return.
6446
6447 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
6448
6449         Fix duplicate .o files after omitting libbfd.a.
6450         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
6451         (SFILES): Add corelow.c.
6452         (COMMON_OBS): Add corelow.o.
6453         (ALLDEPFILES): Remove corelow.c.
6454         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
6455         * config/alpha/alpha-osf3.mh: Likewise.
6456         * config/alpha/fbsd.mh: Likewise.
6457         * config/arm/nbsdaout.mh: Likewise.
6458         * config/arm/nbsdelf.mh: Likewise.
6459         * config/i386/i386gnu.mh: Likewise.
6460         * config/ia64/hpux.mh: Likewise.
6461         * config/ia64/linux.mh: Likewise.
6462         * config/m32r/linux.mh: Likewise.
6463         * config/m68k/linux.mh: Likewise.
6464         * config/mips/irix5.mh: Likewise.
6465         * config/mips/irix6.mh: Likewise.
6466         * config/pa/hpux.mh: Likewise.
6467         * config/pa/linux.mh: Likewise.
6468         * config/powerpc/aix.mh: Likewise.
6469         * config/sparc/linux.mh: Likewise.
6470         * config/sparc/linux64.mh: Likewise.
6471         * config/sparc/sol2.mh: Likewise.
6472         * config/vax/vax.mh: Likewise.
6473         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
6474         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
6475         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
6476         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
6477         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
6478         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
6479         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
6480         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
6481         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
6482         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
6483         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
6484         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
6485         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
6486         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
6487         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
6488         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
6489         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
6490         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
6491         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
6492         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
6493         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
6494         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
6495         corelow.o from gdb_target_obs.
6496         * corefile.c (core_target): Update the comment on NULL value.
6497         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
6498         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
6499         MATCHES.  Drop YUMMY set on NULL.
6500         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
6501         reclaim CORE_DATA if it is already NULL.
6502
6503 2012-01-09  Doug Evans  <dje@google.com>
6504
6505         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
6506         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
6507
6508 2012-01-09  Keith Seitz  <keiths@redhat.com>
6509
6510         * breakpoint.c (wrapper.h): Don't include.
6511
6512 2012-01-09  Keith Seitz  <keiths@redhat.com>
6513
6514         * Makefile.in (SFILES): Remove wrapper.c.
6515         (HFILES_NO_SRCDIR): Remove wrapper.h.
6516         (COMMON_OBS): Remove wrapper.o.
6517         * cli/cli-interp.c: Don't inlude wrapper.h.
6518         * corelow.c: Likewise.
6519         (core_open): Replace gdb_target_find_new_threads with
6520         TRY_CATCH around target_find_new_threads.
6521         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
6522         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
6523         * varobj.c (varobj_create): Likewise for parse_exp_1 and
6524         evaluate_expression.
6525         (varobj_set_value): Likewise for evaluate_expression and
6526         value_assign.
6527         (install_new_variable): Likewise for value_fetch_lazy.
6528         (adjust_value_for_child_access): Likewise for value_ind.
6529         (c_describe_child): Likewise for value_subscript and
6530         value_ind.
6531         (c_value_of_root): Likewise for evaluate_expression.
6532         * wrapper.c: Remove.
6533         * wrapper.h: Remove.
6534
6535 2012-01-09  Doug Evans  <dje@google.com>
6536
6537         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
6538         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
6539         "abfd" args with "section".  All callers updated.
6540         Error checking code moved ...
6541         (error_check_comp_unit_head): ... here.  New function.
6542         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
6543         Delete arg "abfd".  New arg "type_offset".  All callers updated.
6544         (create_debug_types_hash_table): Simplify by using
6545         read_and_check_type_unit_head.
6546
6547         * parser-defs.h (namecopy): Delete.
6548         * parse.c (namecopy, namecopy_size): Move into copy_name.
6549
6550 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
6551
6552         Partially fix duplicate .o files after omitting libbfd.a.
6553         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
6554         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
6555         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
6556         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
6557         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
6558         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
6559         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
6560
6561 2012-01-09  Pedro Alves  <palves@redhat.com>
6562
6563         * MAINTAINERS: Update my email address.
6564
6565 2012-01-08  Doug Evans  <dje@google.com>
6566
6567         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
6568         n_type_units.  Rename type_comp_units to all_type_units.
6569         All uses updated.
6570         (add_signatured_type_cu_to_table): Renamed from
6571         add_signatured_type_cu_to_list.  All callers updated.
6572
6573         * gdbtypes.h (struct cplus_struct_type): Delete member
6574         nfn_fields_total.  All uses removed.
6575
6576 2012-01-06  Doug Evans  <dje@google.com>
6577
6578         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
6579         to top of file.
6580         (dwarf2_find_comp_unit): Delete.
6581         (process_psymtab_comp_unit): Make result "void".
6582         Delete args buffer, info_ptr, buffer_size, and replace with
6583         "section".  All callers updated.
6584         (dwarf2_build_psymtabs_hard): Simplify.
6585
6586 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
6587             Thiago Jung Bauermann  <bauerman@br.ibm.com>
6588
6589         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
6590         before `struct gdb_exception'.
6591         * breakpoint.c (update_global_location_list_nothrow)
6592         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
6593         * cp-abi.c (value_rtti_type): Likewise.
6594         * cp-support.c (cp_validate_operator): Likewise.
6595         * infrun.c (insert_exception_resume_breakpoint)
6596         (check_exception_resume, keep_going): Likewise.
6597         * mi-interp.c (mi_breakpoint_created)
6598         (mi_breakpoint_modified): Likewise.
6599         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
6600         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
6601         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
6602
6603 2012-01-05  Doug Evans  <dje@google.com>
6604
6605         * dwarf2read.c (statement_prologue): Delete, unused.
6606
6607         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
6608         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
6609
6610         * dwarf2read.c (comp_unit_header): Delete, unused.
6611
6612 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
6613
6614         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
6615         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
6616
6617 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
6618
6619         * infrun.c (normal_stop): Don't skip calling the normal_stop
6620         observers if the thread was doing a multi-step, but stopped for
6621         some reason other than stepping.
6622
6623 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
6624
6625         * cli/cli-decode.h: Add comments.
6626         (CMD_LIST_AMBIGUOUS): Moved to command.h
6627         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
6628         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
6629         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
6630         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
6631         (add_com, add_com_alias, add_info, add_info_alias)
6632         (complete_on_cmdlist, complete_on_enum, help_list): Remove
6633         declarations.
6634         * command.h: Add and adjust comments.
6635         (CMD_LIST_AMBIGUOUS): Moved here.
6636         (help_cmd, help_cmd_list): Delete declarations.
6637
6638 2012-01-04  Doug Evans  <dje@google.com>
6639
6640         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
6641         All callers updated.
6642         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
6643         Replace all arguments with "per_cu".  All callers updated.
6644
6645         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
6646
6647         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
6648         New arg "per_cu".  All callers updated.
6649
6650         Delete #if 0'd out code.
6651         * language.c (binop_result_type): Delete.
6652         (simple_type, ordered_type, same_type, integral_type): Delete.
6653         (numeric_type, character_type, string_type, boolean_type): Delete.
6654         (float_type, structured_type): Delete.
6655         * language.h: Update.
6656
6657 2012-01-04  Tom Tromey  <tromey@redhat.com>
6658
6659         * python/py-value.c (valpy_binop): Initialize 'res_val'.
6660
6661 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6662
6663         * corefile.c (close_exec_file): Delete.
6664         (reopen_exec_file): Remove commented out code that seems related
6665         to close_exec_file, which is being deleted here.
6666         * inferior.h (close_exec_file): Delete.
6667         * fork-child.c (fork_inferior): Remove call to fork_inferior.
6668
6669 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6670
6671         * ada-lang.c: #include "cli/cli-utils.h".
6672         (get_selections): Use skip_spaces.
6673         (ada_get_next_arg): Use skip_spaces and skip_to_space.
6674         (catch_ada_exception_command_split): Use skip_spaces.
6675         (ada_decode_assert_location): Likewise.
6676
6677 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6678
6679         * linespec.c (decode_line_internal): Check for C++ or Java
6680         compound constructs only if the current language is C, C++
6681         or Java.
6682
6683 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6684
6685         Revert:
6686         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6687                     Joel Brobecker  <brobecker@adacore.com>
6688         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
6689         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
6690         3 times.
6691         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
6692         fall through into AT_ENTRY_POINT.
6693         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
6694         DUMMY_ADDR with it.
6695         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
6696         PPC_INSN_SIZE skip to 3 times.
6697
6698 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6699
6700         * linespec.c (add_minsym): Preserve function descriptors.
6701
6702 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
6703
6704         * breakpoint.c (all_locations_are_pending): Consider locations
6705         in program spaces executing during startup pending as well.
6706
6707 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6708
6709         Copyright year update in most files of the GDB Project.
6710
6711 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6712
6713         * copyright.sh: Delete.
6714         * copyright.py: Rewrite.
6715
6716 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6717
6718         * gnulib/extra/update-copyright: New file, imported from gnulib.
6719
6720 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
6721
6722         * README (Copyright and License Notices): New section.
6723
6724 2012-01-03  Tom Tromey  <tromey@redhat.com>
6725
6726         PR python/12533:
6727         * python/py-value.c (valpy_dereference, valpy_get_address
6728         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
6729         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
6730         (valpy_absolute, valpy_richcompare): Free intermediate values.
6731
6732 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
6733
6734         * ada-lang.c: Reformat the copyright notice.
6735
6736 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6737
6738         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
6739         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
6740         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
6741         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
6742         Revert this part of:
6743         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6744         Build gdb directly from *.o files not using libgdb.a.
6745         * Makefile.in (COMMON_OBS): Remove solib-target.o.
6746
6747 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
6748
6749         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
6750         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
6751         Reformat the copyright header.
6752
6753 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6754
6755         Revert this part of:
6756         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6757         Remove the gdbtui binary.
6758         * gdb.c (main): Remove args.interpreter_p initialization.
6759         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
6760         * main.h (struct captured_main_args): Remove interpreter_p.
6761
6762 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
6763
6764         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
6765
6766 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
6767
6768         * top.c (print_gdb_version): Update copyright year.
6769
6770 2012-01-02  Yao Qi  <yao@codesourcery.com>
6771
6772         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
6773
6774 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6775             Joel Brobecker  <brobecker@adacore.com>
6776
6777         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
6778         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
6779         3 times.
6780         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
6781         fall through into AT_ENTRY_POINT.
6782         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
6783         DUMMY_ADDR with it.
6784         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
6785         PPC_INSN_SIZE skip to 3 times.
6786
6787 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6788
6789         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
6790         the return value.
6791         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
6792
6793 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6794
6795         Build gdb directly from *.o files not using libgdb.a.
6796         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
6797         (COMMON_OBS): Remove solib-target.o.
6798         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
6799         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
6800         (LIBGDB_OBS, libgdb.a): Move it above.
6801         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
6802         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
6803         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
6804         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
6805         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
6806         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
6807         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
6808         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
6809         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
6810         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
6811         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
6812         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
6813         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
6814         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
6815         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
6816         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
6817         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
6818         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
6819         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
6820         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
6821         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
6822         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
6823         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
6824         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
6825         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
6826         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
6827         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
6828
6829 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6830
6831         Remove the gdbtui binary.
6832         * .gitignore (/gdbtui): Remove.
6833         * Makefile.in (TUI): Remove.
6834         (SUBDIR_TUI_OBS): Remove tui-main.o.
6835         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
6836         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
6837         (tui-main.o): Remove.
6838         (all_object_files): Remove tui-main.o.
6839         * NEWS: New note for the gdbtui removal.
6840         * configure: Rebuilt.
6841         * configure.ac: No longer add all-tui, clean-tui, install-tui and
6842         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
6843         CONFIG_UNINSTALL respectively.
6844         * gdb.c (main): Remove args.interpreter_p initialization.
6845         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
6846         * main.h (struct captured_main_args): Remove interpreter_p.
6847         * tui/tui-main.c: Remove.
6848
6849 2012-01-01  Doug Evans  <dje@google.com>
6850
6851         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
6852         (dwarf2_physname, read_import_statement): Ditto.
6853         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
6854         (process_structure_scope read_subroutine_type): Ditto.
6855         (read_typedef, load_partial_dies, read_partial_die): Ditto.
6856         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
6857         (dwarf2_fetch_die_location_block): Ditto.
6858         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
6859
6860         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
6861         All callers updated.
6862         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
6863         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
6864         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
6865
6866         * dwarf2read.c (load_cu): Move assert to more useful location.
6867
6868         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
6869         All callers updated.
6870
6871         * dwarf2read.c (dwarf2_per_objfile): Add comment.
6872         (dwarf2_elf_names): Minor reformat.
6873         (dwarf2_per_cu_data): Tweak comment.
6874         (dwarf2_read_section): Fix comment.
6875         (create_all_comp_units): Fix comment.
6876         (load_full_comp_unit): Fix comment.
6877         (process_full_comp_unit): Fix comment.
6878         (read_signatured_type): Fix comment.
6879
6880 For older changes see ChangeLog-2011.
6881 \f
6882 Local Variables:
6883 mode: change-log
6884 left-margin: 8
6885 fill-column: 74
6886 version-control: never
6887 coding: utf-8
6888 End: