* symmisc.c: Whitespace fixes.
[external/binutils.git] / gdb / ChangeLog
1 2012-12-04  Doug Evans  <dje@google.com>
2
3         * symmisc.c: Whitespace fixes.
4
5 2012-12-04  Karthik Bhat  <kv.bhat@samsung.com>
6
7         * i386-tdep.c (i386_skip_prologue): Using symbol table
8         to find the end of prologue for clang compiled binaries.
9         * amd64-tdep.c (amd64_skip_prologue): Using symbol table
10         to find the end of prologue for clang compiled binaries.
11
12 2012-12-03  Doug Evans  <dje@google.com>
13
14         * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
15         (dw2_find_symbol_file): Delete unused local file_data.
16
17 2012-12-03  Tom Tromey  <tromey@redhat.com>
18
19         * ada-exp.y (write_object_renaming, write_var_or_type)
20         (write_ambiguous_var, write_var_from_sym): Make blocks const.
21         * ada-lang.c (replace_operator_with_call)
22         (find_old_style_renaming_symbol): Make blocks const.
23         * ada-lang.h (ada_find_renaming_symbol): Update.
24         (struct ada_symbol_info) <block>: Now const.
25         * breakpoint.c (watch_command_1): Update.
26         * breakpoint.h (struct watchpoint) <exp_valid_block,
27         cond_exp_valid_block>: Now const.
28         * c-exp.y (classify_inner_name, classify_name): Make block
29         argument const.
30         * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
31         const.
32         * expression.h (innermost_block, parse_exp_1): Update.
33         (union exp_element) <block>: Now const.
34         * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
35         (lookup_struct): Make block argument const.
36         * gdbtypes.h (lookup_template_type): Update.
37         * go-exp.y (classify_name, classify_packaged_name)
38         (package_name_p): Make block argument const.
39         * objc-lang.c (lookup_struct_typedef): Make block argument const.
40         * objc-lang.h (lookup_struct_typedef): Update.
41         * parse.c (parse_exp_in_context, parse_exp_1)
42         (write_exp_elt_block): Make block arguments const.
43         (expression_context_block, innermost_block): Now const.
44         * parser-defs.h (write_exp_elt_block): Update.
45         (expression_context_block, innermost_block, block_found): Now
46         const.
47         * printcmd.c (struct display) <block>: Now const.
48         * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
49         * valops.c (address_of_variable): Make block argument const.
50         * value.h (value_of_variable): Update.
51         * varobj.c (struct varobj_root) <valid_block>: Now const.
52
53 2012-11-30  Yao Qi  <yao@codesourcery.com>
54
55         * breakpoint.c (print_one_breakpoint_location): Indent code.
56
57 2012-11-30  Yao Qi  <yao@codesourcery.com>
58
59         * breakpoint.c (print_one_breakpoint_location): Combine two
60         blocks handling 'hit count' together.
61
62 2012-11-30  Yao Qi  <yao@codesourcery.com>
63
64         * infrun.c (error_is_running, ensure_not_running): Move them
65         to ...
66         * infcmd.c (error_is_running, ensure_not_running): ... here.
67         Make them 'static'.
68         * inferior.h: Remove declarations of error_is_running and
69         ensure_not_running.
70
71 2012-11-30  Yao Qi  <yao@codesourcery.com>
72
73         * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
74         check REGNUM >= 0.
75
76 2012-11-30  Yao Qi  <yao@codesourcery.com>
77
78         * infrun.c: Make the declaration of 'init_infwait_state'
79         static.
80         (init_infwait_state): Make it 'static'.
81
82 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
83
84         * python/python.c (finalize_python): Cast unused PyGILState_Ensure
85         return value to void to avoid compiler warning.
86
87 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
88
89         * opencl-lang.c (opencl_print_type): New function.
90         (opencl_language_arch_info): Install it.
91
92 2012-11-29  Tom Tromey  <tromey@redhat.com>
93
94         * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
95         xvasprintf.
96         * common/common-utils.c (xasprintf, xvasprintf): Remove.
97         * common/common-utils.h (xasprintf, xvasprintf): Remove.
98
99 2012-11-29  Jerome Guitton  <guitton@adacore.com>
100
101         * ada-lang.c (ada_is_interface_tag): New function.
102         (ada_is_ignored_field): Add interface tags to the list
103         of ignored fields.
104
105 2012-11-29  Jerome Guitton  <guitton@adacore.com>
106
107         * ada-lang.h (ada_tag_value_at_base_address): New function
108         declaration.
109         * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
110         New functions.
111         (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
112         relocate the class-wide value if need be.
113         (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
114         Let ada_tag_value_at_base_address relocate the class-wide access/ref
115         before dereferencing it.
116         * ada-valprint.c (ada_val_print_1): Relocate to base address
117         before displaying the content of an interface-wide ref.
118
119 2012-11-29  Jerome Guitton  <guitton@adacore.com>
120
121         * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
122
123 2012-11-29  Joel Brobecker  <brobecker@adacore.com>
124
125         GDB 7.5.1 released.
126
127 2012-11-29  Yao Qi  <yao@codesourcery.com>
128             Tom Tromey  <tromey@redhat.com>
129
130         * eval.c (evaluate_subexp_standard): Get the correct pointer
131         type for TYPE_CODE_MEMBERPTR.
132
133 2012-11-28  Edjunior Machado  <emachado@linux.vnet.ibm.com>
134
135         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
136         since now it is being done by binutils' powerpc_init_dialect().
137
138 2012-11-28  Tom Tromey  <tromey@redhat.com>
139
140         PR gdb/14290:
141         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
142         (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
143         Use it.
144         * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
145         * gdb_bfd.c (gdb_bfd_mark_parent): New function.
146         (gdb_bfd_openr_next_archived_file): Use it.
147
148 2012-11-28  Markus Metzger <markus.t.metzger@intel.com>
149
150         * configure.ac: Check for linux/perf_event.h.
151         * config.in: Regenerated.
152         * configure: Regenerated.
153
154 2012-11-28  Yao Qi  <yao@codesourcery.com>
155
156         * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
157         abbreviate 'delete tracepoints' to 'delete tr'.
158         * corefile.c (_initialize_core): Call add_alias_cmd to
159         abbreviate 'set gnutarget' to 'set g'.
160         * value.c (_initialize_values): Call add_alias_cmd to abbreviate
161         'show convenience' to 'show conv'.
162
163 2012-11-27  Joel Brobecker  <brobecker@adacore.com>
164
165         * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
166         call to sparc_supply_fpregset.
167         (fill_fpregset): Fix first parameter in call to
168         sparc_collect_fpregset.
169
170 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
171             Kazu Hirata  <kazu@codesourcery.com>
172             Yao Qi  <yao@codesourcery.com>
173
174         * objfiles.c (init_entry_point_info): Call
175         gdbarch_convert_from_func_ptr_addr and
176         gdbarch_addr_bits_remove here ...
177         (entry_point_address_query): ... instead of here.
178         * solib-svr4.c (exec_entry_point): Call
179         gdbarch_addr_bits_remove.
180         * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
181         the entry address.
182
183 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
184             Yao Qi  <yao@codesourcery.com>
185
186         * eval.c (evaluate_subexp_standard): Add handling of
187         TYPE_CODE_MEMBERPTR when calling functions.  Correct the
188         result of ptype for calling a TYPE_CODE_METHODPTR.
189
190 2012-11-27  Yao Qi  <yao@codesourcery.com>
191
192         * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
193         warning.
194         Add i18n markup.
195
196 2012-11-26  Alexander Larsson  <alexl@redhat.com>
197             Jan Kratochvil  <jan.kratochvil@redhat.com>
198             Tom Tromey  <tromey@redhat.com>
199
200         * NEWS: Mention mini debuginfo feature.
201         * minidebug.c: New file.
202         * configure.ac: Check for lzma.
203         * configure, config.in: Rebuild.
204         * Makefile.in (LIBLZMA): New variable.
205         (CLIBS): Include LIBLZMA.
206         (SFILES): Mention minidebug.c.
207         (COMMON_OBS): Mention minidebug.o.
208         * symfile.c (read_symbols): New function.
209         (syms_from_objfile, reread_symbols): Call it.
210         * symfile.h (find_separate_debug_file_in_section): Declare.
211
212 2012-11-26  Keith Seitz  <keiths@redhat.com>
213
214         * exec.c (exec_file_attach): Move cleanup after verifying that
215         memory has in fact been allocated.
216
217 2012-11-26  Tom Tromey  <tromey@redhat.com>
218
219         * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
220         * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
221         SYMBOL_SYMTAB.
222         * skip.c (skip_info): Use SYMBOL_SYMTAB.
223
224 2012-11-26  Maxime Villard  <rustyBSD@gmx.fr>
225             Pedro Alves  <palves@redhat.com>
226
227         * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
228         size parameter passed to readlink by one byte.
229         * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
230         * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
231         * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
232         * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
233         size by one byte.
234
235 2012-11-26  Yao Qi  <yao@codesourcery.com>
236
237         * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
238         extraneous parentheses.
239
240 2012-11-26  Yao Qi  <yao@codesourcery.com>
241
242         * remote.c (remote_start_remote): Typo fix.
243
244 2012-11-23  David S. Miller  <davem@davemloft.net>
245
246         * sparc-tdep.h (struct sparc_fpregset): New data structure.
247         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
248         sparc32_sol2_fpregset): Declare new globals.
249         (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
250         'fpregset' argument.
251         * sparc64-tdep.h (sparc64_supply_fpregset,
252         sparc64_collect_fpregset): Likewise.
253         (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
254         globals.
255         * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
256         (sparc_fpregset): Declare new global.
257         (sparc_supply_fpregset, sparc_collect_fpregset): Add new
258         'fpregset' argument.
259         * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
260         into handler.
261         (fill_fpregset): Likewise.
262         (_initialize_sparc_linux_nat): Set sparc_fpregset to
263         sparc32_bsd_fpregset.
264         * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
265         sparc32_bsd_fpregset down into handler.
266         (sparc32_linux_collect_core_fpregset): Likewise.
267         * sparc-nat.c (sparc_fpregset): Define.
268         (sparc_supply_fpregset): Add 'fpregset' argument.
269         (sparc_collect_fpregset): Likewise.
270         (sparc_fetch_inferior_registers): Pass sparc_fpregset down
271         into fpregset handler.
272         (sparc_store_inferior_registers): Likewise.
273         (_initialize_sparc_nat): Set sparc_fpregset to
274         sparc32_sunos4_fpregset if NULL.
275         * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
276         down into handler.
277         (fill_fpregset): Likewise.
278         * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
279         * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
280         use it to compute offsets.
281         (sparc32_collect_fpregset): Likewise.
282         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
283         * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
284         down into handler.
285         (fill_fpregset): Likewise.
286         * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
287         Likewise.
288         (sparc64_linux_collect_core_fpregset): Likewise.
289         * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
290         * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
291         use it to compute offsets.
292         (sparc64_collect_fpregset): Likewise.
293         (sparc64_bsd_fpregset): Define.
294         * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
295         sparc64_bsd_fpregset down into handler.
296         (sparc64fbsd_collect_fpregset): Likewise.
297         * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
298         and pass sparc{32,64}_bsd_fpregset down into handler.
299         (sparc64nbsd_collect_fpregset): Likewise.
300         * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
301         sparc64_bsd_fpregset down into handler.
302         * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
303         * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
304         to sparc32_bsd_fpregset.
305         * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
306         sparc32_bsd_fpregset down into sparc32_supply_fpregset.
307         (sparc32nbsd_supply_fpregset): Likewise.
308
309 2012-11-21  Tom Tromey  <tromey@redhat.com>
310
311         * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
312         field.
313         (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
314         Remove.
315         * c-typeprint.c (c_type_print_base): Update.
316
317 2012-11-21  Yao Qi  <yao@codesourcery.com>
318
319         PR tdep/7438
320         * gdbarch.sh (smash_text_address): Remove.
321         * gdbarch.c, gdbarch.h: Regenerate.
322         * arm-tdep.c (arm_smash_text_address): Remove.
323         (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
324         * hppa-tdep.c (hppa_smash_text_address): Remove.
325         (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
326         (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
327         Caller update.
328         * coffread.c (coff_symtab_read): Caller update.
329         * dbxread.c (process_one_symbol): Likewise.
330         * elfread.c (record_minimal_symbol): Likewise.
331         * somread.c (som_symtab_read): Likewise.
332
333 2012-11-20  Pierre Muller  <muller@sourceware.org>
334
335         ARI fixes: sprintf rule.
336         Replace sprintf function calls for char arrays by
337         calls to xsnprintf calls.
338         * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
339         (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
340         (arm_neon_quad_read, arm_pseudo_read): Ditto.
341         (arm_neon_quad_write, arm_pseudo_write): Ditto.
342         * breakpoint.c (condition_completer): Ditto.
343         (create_tracepoint_from_upload): Ditto.
344         * dwarf2read.c (file_full_name): Ditto.
345         * gcore.c (gcore_command): Ditto.
346         * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
347         * go32-nat.c (go32_sysinfo): Ditto.
348         * interps.c (interp_set): Ditto.
349         * m32c-tdep.c (make_types): Ditto.
350         * ppc-linux-nat.c (fetch_register, store_register): Ditto.
351         * remote-m32r-sdi.c (m32r_open): Ditto.
352         * sol-thread.c (td_err_string): Ditto.
353         (td_state_string, solaris_pid_to_str): Ditto.
354         * symtab.c (gdb_mangle_name): Ditto.
355         * cli/cli-script.c (execute_control_command): Ditto.
356         (define_command, document_command): Ditto.
357         * tui/tui-io.c (tui_rl_display_match_list): Ditto.
358         * tui/tui-stack.c (tui_make_status_line): Ditto.
359         * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
360
361 2012-11-20  Mike Frysinger  <vapier@gentoo.org>
362
363         * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
364         it when looking at ptr->func.
365         * command.h (complete_on_cmdlist): Add a fourth arg.
366         * completer.c (complete_line_internal): Add local ignore_help_classes,
367         and set it to 1 when reason is not handle_help.  Pass this down to
368         lookup_cmd_1 and complete_on_cmdlist.
369
370 2012-11-20  Tom Tromey  <tromey@redhat.com>
371
372         * completer.c (count_struct_fields): Remove.
373         (expression_completer): Don't call count_struct_fields.
374
375 2012-11-20  Pedro Alves  <palves@redhat.com>
376
377         * annotate.c (breakpoints_changed): Rename to ...
378         (annotate_breakpoints_changed): ... this.
379         (annotate_stopped, breakpoint_changed): Adjust caller.
380         * annotate.h (breakpoints_changed): Rename to ...
381         (annotate_breakpoints_changed): ... this.
382         * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
383         (do_map_commands_command, init_raw_breakpoint, clear_command)
384         (set_ignore_count, enable_breakpoint_disp): Adjust callers.
385
386 2012-11-20  David S. Miller  <davem@davemloft.net>
387
388         * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
389         (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
390         sysconf.
391         (get_cores_used_by_process): Update comment.
392
393 2012-11-20  Yao Qi  <yao@codesourcery.com>
394
395         * objfiles.c (init_entry_point_info): Remove trailing spaces.
396
397 2012-11-20  Yao Qi  <yao@codesourcery.com>
398
399         * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
400         to deprecated_context_hook.
401
402 2012-11-19  Yao Qi  <yao@codesourcery.com>
403
404         * infrun.c (infwait_state): Add static.
405
406 2012-11-16  Keith Seitz  <keiths@redhat.com>
407
408         PR c++/13615
409         * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
410         parameter and pass it to lookup_symbol_file.
411         (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
412         to search base classes.
413         (cp_lookup_symbol_namespace): Likewise.
414         (lookup_namespace_scope): Likewise.
415         (lookup_symbol_file): Add SEARCH parameter.
416         If SEARCH is non-zero and no symbol is found, lookup the class
417         and call cp_lookup_nested_symbol.
418         (find_symbol_in_baseclass): New function.
419         (cp_lookup_nested_symbol): Do not let
420         cp_lookup_symbol_in_namespace search through base classes.
421         Do that later when there is no global symbol match.
422
423 2012-11-16  Doug Evans  <dje@google.com>
424
425         * main.c (gdb_datadir_provided): New static global.
426         (get_init_files): If --data-directory is provided,
427         and SYSTEM_GDBINIT lives in data-directory, look for it there.
428         * NEWS: Mention it.
429
430 2012-11-15  Pierre Muller  <muller@sourceware.org>
431
432         ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
433         * gdb_stat.h: Delete. Moved to common directory.
434         * common/gdb_stat.h: New file.
435         * gdb_wait.h: Delete. Moved to common directory.
436         * common/gdb_wait.h: New file.
437         * Makefile.in (H_FILES_NO_SRC): Adapt to new header
438         location.
439         * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
440         location.
441         (stat.h rule): Adapt to new gdb_stat.h location.
442         * common/linux-osdata.c: Include "gdb_stat.h" header instead of
443         <sys/stat.h> header.
444         * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
445         <sys/wait.h> header.
446
447 2012-11-15  Pierre Muller  <muller@sourceware.org>
448
449         * configure.ac (AC_HEADER_STAT): Remove.
450         * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
451         and corresponding code.
452         * configure: Regenerate.
453         * config.in: Regenerate.
454
455 2012-11-15  Pierre Muller  <muller@sourceware.org>
456
457         ARI xasprintf rule fixes.
458         * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
459         instead of xasprintf.
460         (open_and_init_dwp_file): Ditto.
461
462 2012-11-14  Luis Machado  <lgustavo@codesourcery.com>
463
464         * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
465         target types.
466
467 2012-11-14  Tom Tromey  <tromey@redhat.com>
468
469         * configure, config.in: Rebuild.
470         * configure.ac: Don't check for ctype.h, time.h.
471         * expprint.c: Don't use HAVE_CTYPE_H.
472
473 2012-11-13  Tom Tromey  <tromey@redhat.com>
474
475         * gdbarch.h, gdbarch.c: Rebuild.
476         * gdbarch.sh (set_target_gdbarch): Rename from
477         deprecated_target_gdbarch_select_hack.
478         * arch-utils.c (gdbarch_update_p): Update.
479         (set_gdbarch_from_file): Update.
480
481 2012-11-14  Pierre Muller  <muller@sourceware.org>
482
483         * MAINTAINERS (Responsible Maintainers/misc): Add myself
484         as responsible of contrib/ari directory.
485
486 2012-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
487             Yao Qi  <yao@codesourcery.com>
488
489         * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
490         bit of EXC_RETURN.
491         (arm_m_exception_cache, arm_m_exception_this_id)
492         (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
493         (arm_m_exception_unwind): New.
494         (arm_gdbarch_init): Register arm_m_exception_unwind.
495
496 2012-11-13  Giuseppe Montalto  <giuseppe.montalto@st.com>
497
498         * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
499         parameter COUNT, for pattern filling of memory regions.
500         * NEWS: Mention it.
501
502 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
503
504         * disasm.h (DISASSEMBLY_FILENAME): New macro.
505         * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
506         to print_source_lines ().
507         * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
508         flag.
509         * source.c (print_source_lines_base): Prefix source line with
510         filename if PRINT_SOURCE_LINES_FILENAME flag is set.
511
512 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
513
514         * symtab.h (print_source_lines_flags): New enum.
515         * source.c (print_source_lines_base): Change noerror to flags.
516         (print_source_lines): Change noerror to flags.
517
518 2012-11-13  Pierre Muller  <muller@sourceware.org>
519
520         ARI fixes: Avoid sprintf function use rule.
521         * charset.c (convert_between_encodings): Use xsnprintf.
522         * cli-out.c (cli_field_int): Likewise.
523         * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
524         * expprint.c (op_name_standard): Likewise.
525         * frv-tdep.c (set_variant_num_gprs): Likewise.
526         (set_variant_num_fprs): Likewise.
527         * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
528         * nto-tdep.c (nto_find_and_open_solib): Likewise.
529         (nto_init_solib_absolute_prefix): Likewise.
530         * source.c (init_source_path): Likewise.
531         (print_source_lines_base): Likewise.
532         * valprint.c (print_wchar): Likewise.
533         * mi/mi-out.c (mi_field_int): Likewise.
534         windows-nat.c (windows_pid_to_exec_file): Likewise.
535         (windows_create_inferior): Likewise.
536         (_initialize_check_for_gdb_ini): Likewise.
537
538 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
539
540         * frame.h (deprecated_frame_register_read): Renames
541         frame_register_read.
542         * frame.c (deprecated_frame_register_read): Renames
543         frame_register_read.  Update all callers.
544         * i386-tdep.c: Update all callers of frame_register_read.
545         * infcmd.c: Likewise.
546         * jit.c: Likewise.
547         * mips-tdep.c: Likewise.
548         * mt-tdep.c: Likewise.
549         * sh64-tdep.c: Likewise.
550
551 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
552
553         * frame.h (frame_register_read): Remove FIXME comment.
554         * frame.c (frame_register_read): Add suggestion explaining
555         which function to use in place of this one.
556
557 2012-11-12  Tom Tromey  <tromey@redhat.com>
558
559         * python/python.c (start_type_printers): Initialize 'result_obj'.
560
561 2012-11-12  Tom Tromey  <tromey@redhat.com>
562
563         * NEWS: Update.
564         * data-directory/Makefile.in (PYTHON_FILES): Add
565         type_printers.py.
566         * python/lib/gdb/command/type_printers.py: New file.
567         * python/lib/gdb/command/types.py (TypePrinter): New class.
568         (_get_some_type_recognizers, get_type_recognizers,
569         apply_type_recognizers, register_type_printer): New
570         functions.
571         * python/py-objfile.c (objfile_object) <type_printers>: New
572         field.
573         (objfpy_dealloc): Decref new field.
574         (objfpy_new): Set new field.
575         (objfpy_get_type_printers, objfpy_set_type_printers): New
576         functions.
577         (objfile_to_objfile_object): Set new field.
578         (objfile_getset): Add "type_printers".
579         * python/py-progspace.c (pspace_object) <type_printers>: New
580         field.
581         (pspy_dealloc): Decref new field.
582         (pspy_new): Set new field.
583         (pspy_get_type_printers, pspy_set_type_printers): New functions.
584         (pspace_to_pspace_object): Set new field.
585         (pspace_getset): Add "type_printers".
586         * python/python.c (start_type_printers, apply_type_printers,
587         free_type_printers): New functions.
588         (_initialize_python): Set gdb.type_printers.
589         * python/python.h (start_type_printers, apply_type_printers,
590         free_type_printers): Declare.
591         * typeprint.c (type_print_raw_options, default_ptype_flags):
592         Update for new fields.
593         (do_free_global_table, create_global_typedef_table,
594         find_global_typedef): New functions.
595         (find_typedef_in_hash): Use find_global_typedef.
596         (whatis_exp): Use create_global_typedef_table.  Change cleanup
597         handling.
598         * typeprint.h (struct type_print_options) <global_typedefs,
599         global_printers>: New fields.
600
601 2012-11-12  Tom Tromey  <tromey@redhat.com>
602
603         * c-typeprint.c (find_typedef_for_canonicalize,
604         print_name_maybe_canonical): New functions.
605         (c_print_type): Look up type name.
606         (cp_type_print_derivation_info): Add flags argument.  Use
607         print_name_maybe_canonical.
608         (cp_type_print_method_args): Add wrapping.
609         (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
610         (c_type_print_template_args): New function.
611         (c_type_print_base): Change wrapping.  Use
612         print_name_maybe_canonical.
613         <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
614         type name lookups.
615         * gdbtypes.c (types_equal): No longer static.
616         * gdbtypes.h (types_equal): Declare.
617         * typeprint.c (type_print_raw_options, default_ptype_flags):
618         Update.
619         (struct typedef_hash_table): New.
620         (hash_typedef_field, eq_typedef_field,
621         recursively_update_typedef_hash, add_template_parameters,
622         create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
623         make_cleanup_free_typedef_hash, copy_typedef_hash_element,
624         copy_typedef_hash, find_typedef_in_hash): New functions.
625         * typeprint.h (struct type_print_options) <local_typedefs>:
626         New field.
627         (recursively_update_typedef_hash, add_template_parameters,
628         create_typedef_hash, free_typedef_hash,
629         make_cleanup_free_typedef_hash, copy_typedef_hash,
630         find_typedef_in_hash): Declare.
631
632 2012-11-12  Tom Tromey  <tromey@redhat.com>
633
634         * cp-support.c (inspect_type,
635         replace_typedefs_qualified_name, replace_typedefs): Add
636         finder, data arguments.  Call as needed.
637         (cp_canonicalize_string_full): New function.
638         (cp_canonicalize_string_no_typedefs): Rewrite.
639         * cp-support.h (canonicalization_ftype): New typedef.
640         (cp_canonicalize_string_full): Declare.
641
642 2012-11-12  Tom Tromey  <tromey@redhat.com>
643
644         * NEWS: Update.
645         * c-typeprint.c (c_type_print_base): Handle print_method and
646         print_typedefs flags.
647         * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
648         * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
649         options.
650         * typeprint.c (type_print_raw_options, default_ptype_flags):
651         Update for new field.s
652         (whatis_exp): Parse flags.  Use LA_PRINT_TYPE.
653         (setprinttypelist, showprinttypelist, print_methods,
654         print_typedefs): New globals.
655         (set_print_type, show_print_type, set_print_type_methods,
656         show_print_type_methods, set_print_type_typedefs,
657         show_print_type_typedefs): New functions.
658         (_initialize_typeprint): Update documentation.  Add "print
659         type methods" and "print type typedefs" parameters.
660         * typeprint.h (struct type_print_options) <print_methods,
661         print_typedefs>: New fields.
662
663 2012-11-12  Tom Tromey  <tromey@redhat.com>
664
665         * c-typeprint.c (cp_type_print_method_args): Add flags
666         argument.  Call c_print_type, not type_print.
667         (c_type_print_base): Call c_print_type, not type_print.
668         Update.
669
670 2012-11-12  Tom Tromey  <tromey@redhat.com>
671
672         * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
673         to type-printing functions.
674         * ada-lang.h (ada_print_type): Add argument.
675         * ada-typeprint.c (print_array_type, print_variant_clauses,
676         print_variant_part, print_selected_record_field_types,
677         print_record_field_types, print_unchecked_union_type,
678         print_func_type, ada_print_type): Add flags argument.
679         (ada_print_typedef): Update.
680         * c-exp.y (OPERATOR conversion_type_id): Update.
681         * c-lang.h (c_print_type, c_type_print_base): Update.
682         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
683         c_type_print_modifier, c_type_print_args,
684         c_type_print_varspec_suffix, c_type_print_base): Add flags
685         argument.
686         * cp-valprint.c (cp_print_class_member): Update.
687         * dwarf2read.c (dwarf2_compute_name): Update.
688         * f-lang.h (f_print_type): Add argument.
689         * f-typeprint.c (f_print_type): Add flags argument.
690         * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
691         * go-lang.h (go_print_type): Add argument.
692         * go-typeprint.c (go_print_type): Add flags argument.
693         * jv-lang.h (java_print_type): Add argument.
694         * jv-typeprint.c (java_type_print_base, java_print_type): Add
695         flags argument.
696         * language.c (unk_lang_print_type): Add flags argument.
697         * language.h (struct language_defn) <la_print_type>: Add flags
698         argument.
699         (LA_PRINT_TYPE): Likewise.
700         * m2-lang.h (m2_print_type): Add argument.
701         * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
702         m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
703         m2_unbounded_array, m2_record_fields): Add flags argument.
704         * p-lang.h (pascal_print_type, pascal_type_print_base,
705         pascal_type_print_varspec_prefix): Add argument.
706         * p-typeprint.c (pascal_print_type,
707         pascal_type_print_varspec_prefix, pascal_print_func_args,
708         pascal_type_print_varspec_suffix, pascal_type_print_base): Add
709         flags argument.
710         * symmisc.c (print_symbol): Update.
711         * typeprint.c (type_print_raw_options, default_ptype_flags):
712         New globals.
713         (type_print): Update.
714         * typeprint.h (struct type_print_options): New.
715         (type_print_raw_options): Declare.
716         (c_type_print_varspec_suffix, c_type_print_args): Add argument.
717
718 2012-11-10  Keith Seitz  <keiths@redhat.com>
719
720         * breakpoint.c (clear_command): Add cleanup for
721         sals.sals if an argument is given.
722
723         * linespec.c (parse_linespec): Do cleanups after
724         parsing a convenience variable.
725
726 2012-11-10  Keith Seitz  <keiths@redhat.com>
727
728         PR gdb/14288
729         * c-valprint.c (c_val_print): For character arrays
730         with "print null" option on, print ellipses if
731         the output is truncated and the next character is not \000.
732         * valprint.c (MAX_WCHARS): Define.
733         (WCHAR_BUFLEN): Likewise.
734         (WCHAR_BUFLEN_MAX): Likewise.
735         (struct converted_character): New structure.
736         (count_next_character): New function.
737         (print_converted_chars_to_obstack): New function.
738         (generic_printstr): Rewrite using count_next_character
739         and print_converted_chars_to_obstack.
740
741 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
742
743         * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
744         while executing the gdb command.
745         (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
746         are called from prompt_for_continue.
747         * tui/tui-io.c (tui_redisplay_readline): Likewise.
748
749 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
750
751         PR tui/9584
752
753         * tui/tui.c (tui_rl_command_key): Do not call execute_command
754         but insert the command to execute in readline's buffer.
755
756 2012-11-09  Tom Tromey  <tromey@redhat.com>
757
758         * gdbarch.sh (target_gdbarch): Remove macro.
759         (get_target_gdbarch): Rename to target_gdbarch.
760         * gdbarch.c, gdbarch.h: Rebuild.
761         * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
762         arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
763         darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
764         filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
765         ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
766         linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
767         mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
768         mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
769         nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
770         procfs.c, progspace.c, ravenscar-thread.c, record.c,
771         remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
772         rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
773         solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
774         solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
775         solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
776         spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
777         target-descriptions.c, target.c, target.h, tracepoint.c,
778         windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
779         common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
780         python/py-inferior.c, python/python.c: Update.
781
782 2012-11-09  Andrew Burgess  <aburgess@broadcom.com>
783
784         * source.c (print_source_lines_base): Add fullname field giving
785         full path to file in mi output.
786         * NEWS: Mention the new fullname field.
787
788 2012-11-09  Yao Qi  <yao@codesourcery.com>
789
790         * NEWS: Mention the fix to the ambiguity of 'fo' command.
791
792 2012-11-09  Pedro Alves  <palves@redhat.com>
793
794         PR gdb/14306
795
796         * infrun.c: Include target-descriptions.h.
797         (follow_exec): Fetch new target description.
798
799 2012-11-09  Yao Qi  <yao@codesourcery.com>
800
801         * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
802         0x8d (lea).
803
804 2012-11-09  Yao Qi  <yao@codesourcery.com>
805
806         * breakpoint.c: Declare set_tracepoint_count.
807         (install_breakpoint): Call set_tracepoint_count if B is a
808         tracepoint.
809         (trace_command): Don't call set_tracepoint_count.  Re-indent.
810         (strace_command, ftrace_command):
811         (create_tracepoint_from_upload): Likewise.
812
813 2012-11-09  Pedro Alves  <palves@redhat.com>
814
815         * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
816         (get_target_gdbarch) <gdbarch.h>: New function.
817         (startup_gdbarch) <gdbarch.h>: Declare.
818         <gdbarch.c> (target_gdbarch): Delete.
819         <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
820         current inferior's gdbarch.
821         <gdbarch.c> (get_target_gdbarch): New function.
822         * inferior.c: Include target-descriptions.h.
823         (free_inferior): Free target description info.
824         (add_inferior_with_spaces): Set the inferior's initial
825         architecture.
826         (clone_inferior_command): Copy the original inferior's target
827         description if it was user specified.
828         (initialize_inferiors): Add comment.
829         * inferior.h (struct target_desc_info): Forward declare.
830         (struct inferior) <gdbarch>: New field.
831         * linux-nat.c: Include target-descriptions.h.
832         (linux_child_follow_fork): Copy the parent's architecture and
833         target description to the child.
834         * target-descriptions.c: Include inferior.h.
835         (struct target_desc_info): New structure, holding the equivalents
836         of ...
837         (target_desc_fetched, current_target_desc)
838         (target_description_filename): ... these removed globals.
839         (get_tdesc_info, target_desc_info_from_user_p)
840         (copy_inferior_target_desc_info, target_desc_info_free): New.
841         (target_desc_fetched, current_target_desc)
842         (target_description_filename): Reimplemented as convenience
843         macros.
844         (tdesc_filename_cmd_string): New global.
845         (set_tdesc_filename_cmd): Copy the string manipulated by the "set
846         tdescs filename ..." commands to the per-inferior equivalent.
847         (show_tdesc_filename_cmd): Get the value to show from the
848         per-inferior description filename.
849         (_initilize_target_descriptions): Change the "set/show tdesc
850         filename" commands' variable.
851         * target-descriptions.h (struct target_desc, struct target_desc_info)
852         (struct inferior): Forward declare.
853         (target_find_description, target_clear_description)
854         (target_current_description): Adjust comments.
855         (copy_inferior_target_desc_info, target_desc_info_free)
856         (target_desc_info_from_user_p). Declare.
857
858 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
859
860         * tui/tui-hooks.c (tui_about_to_proceed): New function.
861         (tui_target_wait_hook): Remove.
862         (tui_install_hooks): Install the about_to_proceed observer.
863         (tui_remove_hooks): And remove it here.
864
865 2012-11-08  Tom Tromey  <tromey@redhat.com>
866
867         * linux-tdep.c (linux_make_siginfo_note): New function.
868         (linux_make_corefile_notes): Use it.
869         * corelow.c (get_core_siginfo): New function.
870         (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
871
872 2012-11-08  Tom Tromey  <tromey@redhat.com>
873
874         PR gdb/14704:
875         * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
876         (zlib_decompress_section): Remove.
877         (gdb_bfd_map_section): Only check for compressed section
878         in mmap case.  Use bfd_get_full_section_contents.
879         * osabi.c (check_note): Add 'sectsize' argument.  Read
880         section data.
881         (generic_elf_osabi_sniff_abi_tag_sections): Don't read
882         section data.  Update for check_note change.
883         * xcoffread.c (xcoff_initial_scan): Use
884         bfd_get_full_section_contents.
885         * py-auto-load.c (auto_load_section_scripts): Use
886         bfd_get_full_section_contents.
887         * contrib/cc-with-tweaks.sh: Add -Z option.
888
889 2012-11-08  Tom Tromey  <tromey@redhat.com>
890
891         * python/py-bpevent.c: Include defs.h.
892         * python/py-continueevent.c: Include defs.h.
893         * python/py-event.c: Include defs.h.
894         * python/py-event.h: Don't include defs.h.
895         * python/py-events.h: Don't include defs.h.
896         * python/py-evts.c: Include defs.h.
897         * python/py-exitedevent.c: Include defs.h.
898         * python/py-newobjfileevent.c: Include defs.h.
899         * python/py-signalevent.c: Include defs.h.
900         * python/py-stopevent.c: Include defs.h.
901         * python/py-threadevent.c: Include defs.h.
902
903 2012-11-08  Pierre Muller  <muller@sourceware.org>
904
905         * update-web-ari.sh (print_heading): Add number of files
906         checked.
907         (nb_files): New variable counting the number of sources
908         files found by gdb_find.sh script.
909         (debug_awk): New variable to allow extra debug output.
910         (indexes): Add more information if DEBUG_AWK is set.
911
912 2012-11-08  Edjunior Machado  <emachado@linux.vnet.ibm.com>
913
914         * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
915         ppc64_standard_linkage3): Mark ld r11 instructions as optional,
916         following the change in PLT call stubs on linker.
917
918 2012-11-08  Pierre Muller  <muller@sourceware.org>
919
920         * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
921         as default language.
922         (AWK): Use = instead of == for sh test to avoid warning.
923         (Linux rule): Correct [:digit] into [[:digit:]].
924         (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
925         (vasprintf rule): Adapt to common subdirectory moves.
926         (xasprintf rule): Idem.
927         (xvasprintf rule): Idem.
928         (var_boolean rule): Accept occurence in == or != test.
929
930         * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
931
932 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
933
934         * tui/tui-hooks.c (tui_inferior_exit): New function.
935         (tui_detach_hook): Remove.
936         (tui_install_hooks): Install the inferior exit observer.
937         (tui_remove_hooks): Remove it.
938
939 2012-11-08  Yao Qi  <yao@codesourcery.com>
940
941         PR gdb/14777.
942         * source.c (_initialize_source): Call add_com_alias to abbreviate
943         'forward-search' as 'fo'.
944
945 2012-11-07  Pedro Alves  <palves@redhat.com>
946
947         * arm-tdep.c: Make defs.h be the first include.
948         * coff-pe-read.c: Ditto.
949         * gnu-nat.c: Ditto.
950         * go32-nat.c: Ditto.
951         * i386-nat.c: Ditto.
952         * ppcnbsd-nat.c: Ditto.
953         * ada-varobj.h: Don't include defs.h.
954         * i386-darwin-tdep.h: Ditto.
955         * i386-nat.h: Ditto.
956
957 2012-11-07  Pedro Alves  <palves@redhat.com>
958
959         * MAINTAINERS: New FSF-appointed maintainers replace the Steering
960         Committee.
961
962 2012-11-07  Pierre Muller  <muller@sourceware.org>
963
964         * common/linux-osdata.c (dirent.h): ARI fix: Remove.
965         File already uses "gdb_dirent.h" header.
966
967 2012-11-07  Yao Qi  <yao@codesourcery.com>
968
969         * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
970         tracepoint_count'.
971
972 2012-11-06  Tom Tromey  <tromey@redhat.com>
973
974         * target.h (inferior_has_forked, inferior_has_vforked)
975         (inferior_has_execd, inferior_has_called_syscall): Remove
976         declarations.
977
978 2012-11-06  Pierre Muller  <muller@sourceware.org>
979
980         * remote.c (remote_insert_hw_breakpoint): ARI fix,
981         add missing internalization markup.
982
983 2012-11-06  Pedro Alves  <palves@redhat.com>
984
985         PR gdb/14810
986
987         * breakpoint.c (bpstat_stop_status): Skip disabled locations.
988
989 2012-11-06  Pierre Muller  <muller@sourceware.org>
990
991         * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
992         is not executable.
993
994 2012-11-05  Joel Brobecker  <brobecker@adacore.com>
995
996         * gnulib/update-gnulib.sh: New script.
997
998 2012-11-05  Stephane Carrez  <Stephane.Carrez@gmail.com>
999
1000         * MAINTAINERS: Update my email address.
1001
1002 2012-11-05  Tom Tromey  <tromey@redhat.com>
1003
1004         * frame.c (put_frame_register): Don't use temporary buffer.
1005
1006 2012-11-05  Pedro Alves  <palves@redhat.com>
1007
1008         * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1009         child.  Clear 'pending_detach'.
1010         * infrun.c (handle_vfork_child_exec_or_exit): Clear
1011         'pending_detach' in the vfork parent.
1012
1013 2012-11-05  Doug Evans  <dje@google.com>
1014
1015         Add support for DWP files.  http://gcc.gnu.org/wiki/DebugFissionDWP
1016         * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1017         * dwarf2read.c: #include "elf-bfd.h".
1018         (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1019         (dwop_section_names): Renamed from dwo_section names.  All uses
1020         updated.  Add entries for .debug_cu_index, .debug_tu_index.
1021         (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1022         All uses updated.
1023         (struct dwp_sections): New type.
1024         (struct virtual_dwo_sections): New type.
1025         (struct dwp_hash_table): New type.
1026         (struct dwp_file): New type.
1027         (init_cutu_and_read_dies): Ensure DWO info/types section has been
1028         read in.  Handle DWOs coming from DWP files.
1029         (lookup_dwo_file_slot): New function.
1030         (dwarf2_locate_dwo_sections): Move definition closer to use.
1031         (create_dwo_debug_info_hash_table_reader): Renamed from
1032         create_debug_info_hash_table_reader.  All callers updated.
1033         (create_dwo_debug_info_hash_table): Renamed from
1034         create_debug_info_hash_table.  All callers updated.
1035         (create_dwp_hash_table): New function.
1036         (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1037         (lookup_dwo_in_dwp): New function.
1038         (try_open_dwop_file): Renamed from try_open_dwo_file.  New parameter
1039         is_dwp.  All callers updated.
1040         (open_dwop_file): Renamed from open_dwo_file.  All callers updated.
1041         (open_and_init_dwo_file): Renamed from init_dwo_file.
1042         All callers updated.
1043         (lookup_dwo_file): Delete.
1044         (dwarf2_locate_dwp_sections): New function.
1045         (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1046         (allocate_dwp_loaded_cutus_table): New function.
1047         (open_and_init_dwp_file): New function.
1048         (lookup_dwo_cutu): New function.
1049         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1050
1051 2012-11-03  Yao Qi  <yao@codesourcery.com>
1052
1053         Fix PR gdb/14617.
1054         * breakpoint.c (trace_pass_set_count): Call
1055         observer_notify_breakpoint_modified instead of
1056         observer_notify_tracepoint_modified.
1057         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1058
1059 2012-11-02  Tom Tromey  <tromey@redhat.com>
1060
1061         * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1062         argument to complete_on_enum.
1063
1064 2012-11-02  Tom Tromey  <tromey@redhat.com>
1065
1066         * configure: Rebuild.
1067         * configure.ac (build_warnings): Add -Wempty-body.
1068         * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1069         * remote.c (handle_notification): Use braces for empty 'else' body.
1070         * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1071         'else' body.
1072         * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1073         'else' body.
1074         * solib-som.c (som_relocate_section_addresses): Use braces
1075         for empty 'else' body.
1076         * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1077         (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1078
1079 2012-11-02  Pedro Alves  <palves@redhat.com>
1080
1081         PR gdb/14766
1082
1083         * infrun.c (handle_inferior_event)
1084         <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1085         null_ptid before handling a vfork child exec or exit.  Switch to
1086         the event ptid afterwards.
1087
1088 2012-11-02  Yao Qi  <yao@codesourcery.com>
1089
1090         * std-operator.def: Remove OP_LABELED.
1091         * eval.c: Remove the declaration of 'get_label'.
1092         (get_label): Remove.
1093         (evaluate_struct_tuple): Remove code handling OP_LABELED.
1094         Update comment.
1095         Remove local variable 'variantno' and related code.
1096         Replace 'substruct_type' with 'struct_type'.  Replace 'subfieldno'
1097         with 'fieldno'.
1098         * expprint.c (print_subexp_standard): Likewise.
1099         (dump_subexp_body_standard): Likewise.
1100         * parse.c (operator_length_standard): Likewise.
1101
1102 2012-11-01  Pierre Muller  <muller@ics.u-strasbg.fr>
1103
1104         Incorporate ARI web page generator into GDB sources.
1105         * contrib/ari/create-web-ari-in-src.sh: New file.
1106         * contrib/ari/gdb_ari.sh: New file.
1107         * contrib/ari/gdb_find.sh: New file.
1108         * contrib/ari/update-web-ari.sh: New file.
1109
1110 2012-10-31  Tom Tromey  <tromey@redhat.com>
1111
1112         * gdbarch.c: Rebuild.
1113         * gdbarch.sh: Remove references to gdbarch_swap.
1114         * corelow.c (core_open): Remove obsolete comment.
1115
1116 2012-10-31  Andrew Burgess  <aburgess@broadcom.com>
1117
1118         PR cli/14772
1119         * c-typeprint.c (c_print_type): Don't print a space for vector
1120         types, this is handled within the suffix.
1121         (c_type_print_varspec_suffix): Add a space to vector suffix.
1122
1123 2012-10-26  Pedro Alves  <palves@redhat.com>
1124
1125         * amd64-tdep.c (amd64_relocate_instruction): Use
1126         store_unsigned_integer instead of memcpy.
1127         * i386-tdep.c (i386_relocate_instruction): Ditto.
1128
1129 2012-10-26  Pedro Alves  <palves@redhat.com>
1130
1131         * infrun.c (handle_inferior_event): Merge handling of
1132         TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1133         switch case.
1134
1135 2012-10-26  Pedro Alves  <palves@redhat.com>
1136
1137         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1138         Remove comment.
1139
1140 2012-10-26  Pedro Alves  <palves@redhat.com>
1141
1142         * target.c (target_waitstatus_to_string): Handle
1143         TARGET_WAITKIND_VFORK_DONE.
1144
1145 2012-10-26  Pedro Alves  <palves@redhat.com>
1146
1147         * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1148         as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1149
1150 2012-10-24  Tristan Gingold  <gingold@adacore.com>
1151
1152         * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1153         Add comments.
1154
1155 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1156
1157         * ravenscar-thread.c (ravenscar_wait): Only update the list
1158         of threads and inferior_ptid if the inferior is still alive.
1159
1160 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1161
1162         * ada-lang.c (is_known_support_routine): Use lbasename when
1163         matching the symtab's filename against
1164         known_runtime_file_name_patterns.
1165
1166 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1167
1168         * ada-lang.c (ada_same_array_size_p): New function.
1169         (ada_promote_array_of_integrals): New function.
1170         (coerce_for_assign): Add handling of arrays where the elements
1171         are integrals of a smaller size than the size of the target
1172         array element type.
1173
1174 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1175
1176         * doublest.c (convert_doublest_to_floatformat): Fix comparison
1177         against maximum exponent value.
1178
1179 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1180
1181         * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1182         "unwind-seh.c".
1183
1184 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1185
1186         * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1187         strip typedef layer when computing the fixed type's field type,
1188         only when computing its size.
1189
1190 2012-10-24  Mark Kettenis  <kettenis@gnu.org>
1191
1192         PR gdb/12783
1193         * i386-tdep.c (i386_return_value): Handle complex double and long
1194         double.
1195
1196 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1197
1198         * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1199         New local variable args_len.
1200         Quote the name of the executable when computing the command line.
1201
1202 2012-10-23  Mark Kettenis  <kettenis@gnu.org>
1203
1204         PR gdb/12796
1205         PR gdb/12798
1206         PR gdb/12800
1207         * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1208         AMD64_FTAG_REGNUM.
1209         * amd64-tdep.c (amd64_classify): Classify complex types.
1210         (amd64_return_value): Handle the COMPLEX_X87 class.
1211
1212 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1213
1214         * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1215         (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1216
1217 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1218
1219         * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1220         function.
1221         (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1222         to amd64_windows_auto_wide_charset.
1223
1224 2012-10-23  Yao Qi  <yao@codesourcery.com>
1225
1226         * event-top.c (mark_async_signal_handler_wrapper): Remove.
1227         * event-top.h: Remove its declaration.
1228         (async_request_quit): Call mark_async_signal_handler instead of
1229         mark_async_signal_handler_wrapper.
1230         (async_do_nothing, async_disconnect): Likewise.
1231         (async_stop_sig): Likewise.
1232         * remote.c (handle_remote_sigint): Likewise.
1233         (handle_remote_sigint_twice): Likewise.
1234
1235 2012-10-23  Yao Qi  <yao@codesourcery.com>
1236
1237         * event-top.c (sigint_token, sighup_token): Replace 'void *'
1238         with 'static struct async_signal_handler *'.
1239         (sighup_token, sigquit_token, sigstp_token): Likewise.
1240
1241 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
1242
1243         * gdbarch.sh (function_list): Use 'pstring' when printing
1244         a variable which could return NULL.
1245         * gdbarch.c: Regenerate.
1246
1247 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
1248             Tom Tromey  <tromey@redhat.com>
1249
1250         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1251         inneffective if condition by gdb assertion.  Add function
1252         description comment.
1253
1254 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
1255
1256         * parser-defs.h (struct exp_descriptor): Document constraint
1257         on return value for "op_name" callbacks.
1258
1259 2012-10-18  Tom Tromey  <tromey@redhat.com>
1260
1261         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1262         * symtab.c (iterate_over_some_symtabs): Constify.
1263         * source.h (symtab_to_fullname): Return 'const char *'.
1264         * source.c (symtab_to_fullname): Return 'const char *'.
1265         * python/py-symtab.c (stpy_fullname): Constify.
1266         * cli/cli-cmds.c (edit_command): Constify.
1267         * breakpoint.c (print_breakpoint_location)
1268         (update_static_tracepoint): Constify.
1269
1270 2012-10-18  Tom Tromey  <tromey@redhat.com>
1271
1272         * breakpoint.c (compare_breakpoints): Fix comparison.
1273
1274 2012-10-18  Tom Tromey  <tromey@redhat.com>
1275
1276         * valprint.c (generic_emit_char, generic_printstr): Pass size of
1277         gdb_wchar_t to convert_between_encodings.
1278
1279 2012-10-17  Yao Qi  <yao@codesourcery.com>
1280
1281         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1282         more parameter 'inferior'.
1283         * corefile.c (write_memory_with_notification): Caller update.
1284
1285         * mi/mi-cmd-var.c: Include "mi-main.h".
1286         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1287         to 1 and restore it later.
1288         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1289         and "data-write-memory-bytes.
1290         * mi/mi-interp.c: Include objfiles.h.
1291         (mi_interpreter_init): Call observer_attach_memory_changed.
1292         (mi_memory_changed): New.
1293         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1294         New field.
1295
1296         * NEWS: Mention new MI notification "memory-changed".
1297
1298 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
1299
1300         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1301
1302 2012-10-15  Doug Evans  <dje@google.com>
1303
1304         New option -nh: inhibit loading of ~/.gdbinit.
1305         * NEWS: Mention -nh.
1306         * main.c (captured_main): Recognize and process -nh.
1307         (print_gdb_help): Mention -nh.
1308         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
1309
1310 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
1311
1312         PR backtrace/14646
1313         PR gdb/14647
1314         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1315         pc_regnum_from_eax.
1316         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1317         nor pc_regnum_from_eax.
1318         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1319         nor pc_regnum_from_eax.
1320
1321 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1322
1323         Fix entry values resolving in inlined frames.
1324         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1325         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
1326         entries of FRAME.
1327
1328 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
1329
1330         * configure.ac: Build with -DMS_WIN64 if building with Python
1331         enabled using GCC on amd64-windows.
1332         * configure: Regenerate.
1333
1334 2012-10-15  Tom Tromey  <tromey@redhat.com>
1335
1336         PR python/14635:
1337         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1338         to Py_None.
1339
1340 2012-10-15  Tom Tromey  <tromey@redhat.com>
1341
1342         PR python/14634:
1343         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1344
1345 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
1346
1347         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1348         reset thread numbering back to 1.
1349
1350 2012-10-11  Doug Evans  <dje@google.com>
1351
1352         PR breakpoints/14643.
1353         * linespec.c (struct ls_parser): New member keyword_ok.
1354         (linespec_lexer_lex_string): Add comment.
1355         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1356         for one.
1357         (parse_linespec): Set keyword_ok.
1358
1359 2012-10-10  Doug Evans  <dje@google.com>
1360
1361         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1362         "0x" prefix on address in log message.
1363
1364         * dwarf2read.c (read_1_byte): Add const to buf parameter.
1365         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1366         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1367         (lookup_dwo_file): Add const to dwo_name parameter.
1368         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1369
1370 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1371
1372         Fix crash during stepping on ppc32.
1373         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1374         SYM.
1375
1376 2012-10-03  Doug Evans  <dje@google.com>
1377
1378         PR symtab/14601
1379         * buildsym.c (buildsym_init): Reset using_directives to NULL.
1380
1381 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
1382
1383         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1384         output and use uint32_t not long to ensure 4 byte size.
1385
1386 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
1387
1388         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1389         unref'ed it.
1390
1391 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
1392
1393         * target.c (simple_search_memory): Include access length in
1394         warning message.
1395
1396 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
1397             Edjunior Machado  <emachado@linux.vnet.ibm.com>
1398
1399         PR gdb/13989
1400         * solib.c (solib_find): Prevent GDB from loading native libraries when
1401         debugging a cross-target corefile.
1402
1403 2012-09-28  selven  <pcthegreat@gmail.com>
1404
1405         Make definition match declaration.
1406
1407         * regcache.c (regcache_register_status): Change return type to
1408         enum register_status.
1409
1410 2012-09-28  Yao Qi  <yao@codesourcery.com>
1411
1412         * mi/mi-main.c (mi_cmd_data_write_memory): Call
1413         write_memory_with_notification instead of write_memory.
1414         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
1415         instead of target_write_memory.
1416
1417 2012-09-28  Yao Qi  <yao@codesourcery.com>
1418
1419         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
1420         when the length of content is not an even number.
1421
1422 2012-09-27  Tom Tromey  <tromey@redhat.com>
1423
1424         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
1425         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
1426
1427 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1428
1429         * sol-thread.c (sol_thread_fetch_registers)
1430         (sol_thread_store_registers): Delete commented out code.
1431
1432 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1433
1434         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1435         Move these functions to sparc-sol-thread.c.
1436         * sparc-sol-thread.c: New file.
1437         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
1438         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
1439         configurations.
1440         * configure: Regenerate.
1441
1442 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1443
1444         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1445         Remove commented-out code.
1446
1447 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1448
1449         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1450         Enable this code for sparc hosts only.
1451
1452 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1453
1454         * procfs.h (procfs_find_LDT_entry): Add declaration.
1455         * sol-thread.c (ps_lgetLDT): Delete local declaration of
1456         function procfs_find_LDT_entry.
1457
1458 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1459
1460         * procfs.c (proc_get_LDT_entry): Make static.
1461
1462 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1463
1464         * procfs.c (proc_find_memory_regions): Fix declaration.
1465
1466 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1467
1468         * amd64-tdep.c (amd64_return_value): Revert previous change
1469         that used TYPE_LENGTH directly.
1470         * bfin-tdep.c (bfin_extract_return_value): Likewise.
1471         (bfin_store_return_value): Likewise.
1472         * cris-tdep.c (cris_store_return_value): Likewise.
1473         (cris_extract_return_value): Likewise.
1474         * h8300-tdep.c (h8300_extract_return_value): Likewise.
1475         * hppa-tdep.c (hppa64_return_value): Likewise.
1476         * lm32-tdep.c (lm32_store_return_value): Likewise.
1477         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1478         * spu-tdep.c (spu_value_from_register): Likewise.
1479         * vax-tdep.c (vax_return_value): Likewise.
1480
1481 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1482
1483         * gdbtypes.c (lookup_array_range_type): Expand parameters
1484         LOW_BOUND and HIGH_BOUND to LONGEST.
1485         (lookup_string_range_type): Likewise.
1486         * gdbtypes.h (lookup_array_range_type): Likewise.
1487         (lookup_string_range_type): Likewise.
1488         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
1489         Expand HIGHBOUND to ssize_t.
1490         (value_string): Likewise.
1491         * value.h (value_cstring): Expand parameter LEN to ssize_t.
1492         (value_string): Likewise.
1493
1494 2012-09-27  Yao Qi  <yao@codesourcery.com>
1495
1496         PR breakpoints/13898
1497         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
1498         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
1499         per breakpoint type.
1500
1501 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
1502
1503         * procfs.c: Add gdb_bfd header.
1504         * rs6000-nat.c: Likewise.
1505         * solib-pa64.c: Likewise.
1506         * spu-linux-nat.c: Likewise.
1507         * windows-nat.c: Likewise.
1508
1509 2012-09-26  Tom Tromey  <tromey@redhat.com>
1510
1511         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
1512
1513 2012-09-26  Tom Tromey  <tromey@redhat.com>
1514
1515         * dwarf2read.c (mark_common_block_symbol_computed): New function.
1516         (read_common_block): Handle child DIEs with
1517         DW_AT_data_member_location.
1518         (new_symbol_full): Add special case for common blocks.
1519
1520 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1521             Tom Tromey  <tromey@redhat.com>
1522
1523         * dwarf2read.c (read_common_block): Rewrite.
1524         (new_symbol_full): Handle DW_TAG_common_block.
1525         * f-lang.c (head_common_list, find_common_for_function):
1526         Remove.
1527         * f-lang.h (struct common_entry, struct saved_f77_common,
1528         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
1529         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
1530         BLANK_COMMON_NAME_LOCAL): Remove.
1531         (struct common_block): New.
1532         * f-valprint.c (list_all_visible_commons): Remove.
1533         (info_common_command_for_block): New function.
1534         (info_common_command): Use it.
1535         * stack.c (iterate_over_block_locals): Special case for
1536         COMMON_BLOCK_DOMAIN.
1537         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
1538         constant.
1539         (struct general_symbol_info) <value.common_block>: New field.
1540         (SYMBOL_VALUE_COMMON_BLOCK): New define.
1541
1542 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1543             Tom Tromey  <tromey@redhat.com>
1544
1545         * f-lang.c (allocate_saved_bf_node,
1546         allocate_saved_function_node, allocate_saved_f77_common_node,
1547         allocate_common_entry_node, tail_common_list, current_common,
1548         saved_bf_list, saved_bf_list_end, current_head_bf_list,
1549         tmp_bf_ptr, add_common_block, add_common_entry,
1550         find_first_common_named, patch_common_entries,
1551         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
1552         global_remote_debug, get_bf_for_fcn, saved_function_list,
1553         saved_function_list_end, clear_function_list, struct saved_fcn,
1554         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
1555         SAVED_BF, SAVED_BF_PTR): Remove.
1556         * f-lang.h (tail_common_list, current_common,
1557         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
1558         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
1559         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
1560         real_main_c_value): Remove.
1561         * f-valprint.c (there_is_a_visible_common_named): Remove.
1562
1563 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
1564
1565         * breakpoint.c (update_global_location_list): Ignore previous
1566         duplicate status of a breakpoint when starting a new scan for
1567         duplicate breakpoints.
1568
1569 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
1570         PR breakpoints/14419
1571         * arm-tdep.c (arm_skip_prologue): Extending producer check to
1572         support LLVM compiler.
1573
1574 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
1575
1576         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
1577         * bfin-tdep.c (bfin_extract_return_value): Likewise.
1578         (bfin_store_return_value): Likewise.
1579         * cris-tdep.c (cris_store_return_value): Likewise.
1580         (cris_extract_return_value): Likewise.
1581         * h8300-tdep.c (h8300_extract_return_value): Likewise.
1582         * hppa-tdep.c (hppa64_return_value): Likewise.
1583         * lm32-tdep.c (lm32_store_return_value): Likewise.
1584         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1585         * spu-tdep.c (spu_value_from_register): Likewise.
1586         * vax-tdep.c (vax_return_value): Likewise.
1587
1588 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
1589
1590         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
1591         parameter LEN to ssize_t.
1592
1593 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
1594
1595         * ada-valprint.c (ada_val_print_1): Eliminate single-use
1596         variable LEN.
1597         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
1598         directly.
1599         (alpha_store_return_value): Likewise.
1600         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
1601         (amd64_push_arguments): Likewise.
1602         * ax-gdb.c (gen_trace_static_fields): Likewise.
1603         (gen_traced_pop): Likewise.
1604         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1605         * breakpoint.c (update_watchpoint): Likewise.
1606         * findcmd.c (parse_find_args): Use local variable for type
1607         instead of length.
1608         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
1609         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
1610         (h8300_store_return_value): Likewise.
1611         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
1612         Use i386_darwin_arg_type_alignment directly.
1613         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
1614         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
1615         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
1616         (m68hc11_extract_return_value): Likewise.
1617         * mep-tdep.c (mep_push_dummy_call): Likewise.
1618         * printcmd.c (float_type_from_length): Likewise.
1619         * s390-tdep.c (s390_value_from_register): Likewise.
1620         * stack.c (read_frame_arg): Likewise.
1621         * tracepoint.c (encode_actions_1): Likewise.
1622         * valops.c (value_fetch_lazy): Use local variable for type
1623         instead of length.  Use TYPE_LENGTH directly.
1624         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
1625
1626 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
1627
1628         * symtab.c (skip_prologue_sal): Fix typo in comment.
1629
1630 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
1631
1632         * linespec.c (create_sals_line_offset): Fix typo in comment.
1633
1634 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
1635
1636         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
1637         use plongest to print the array size.
1638
1639 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1640
1641         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
1642         * p-valprint.c (pascal_type_print_base): Likewise.
1643
1644 2012-09-22  Yao Qi  <yao@codesourcery.com>
1645
1646         * remote.c (remote_get_trace_status): Remove setting default
1647         values of fields of 'ts'.
1648
1649 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
1650
1651         Fix internal error on canonicalization of clang types.
1652         * cp-name-parser.y (operator): New comment at make_operator call for
1653         new, delete, new[] and delete[].
1654         (exp): Use "sizeof ".  Add new comment at make_operator call.
1655
1656 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
1657
1658         Fix disassemble without parameters in tailcall frame.
1659         * cli/cli-cmds.c (disassemble_current_function): Use
1660         get_frame_address_in_block.
1661
1662 2012-09-21  Tom Tromey  <tromey@redhat.com>
1663
1664         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
1665         TYPE_CODE_UNION>: Unify, removing a goto.
1666
1667 2012-09-21  Tom Tromey  <tromey@redhat.com>
1668
1669         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
1670
1671 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
1672
1673         * findvar.c (read_frame_register_value): Mark the result value as
1674         optimized out if any of the input registers have been optimized out.
1675
1676 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
1677
1678         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
1679
1680 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
1681
1682         * eval.c (evaluate_subexp_standard): Eliminate single-use
1683         variable LOWER.
1684
1685 2012-09-21  Yao Qi  <yao@codesourcery.com>
1686
1687         * mi/mi-interp.c: Declare mi_record_changed.
1688         (mi_interpreter_init): Call observer_attach_record_changed.
1689         (mi_record_changed): New.
1690         * record.c (record_open): Call observer_notify_record_changed.
1691         (cmd_record_stop): Call observer_notify_record_changed.
1692         * NEWS: Mention it.
1693
1694 2012-09-20  Tom Tromey  <tromey@redhat.com>
1695
1696         * NEWS: Update.
1697         * python/python.c (finalize_python): New function.
1698         (_initialize_python): Make a final cleanup.
1699
1700 2012-09-19  Doug Evans  <dje@google.com>
1701
1702         * buildsym.h (param_symbols): Delete, unused.
1703         (context_stack): Delete member "params", unused.
1704         * buildsym.c (push_context): Update.
1705         * dwarf2read.c (read_func_scope): Update.
1706
1707 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
1708
1709         * sh-tdep.c (sh_register_convert_to_virtual)
1710         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
1711         all callers.  Just do a memcpy if not the little-endian case.
1712
1713         * h8300-tdep.c (h8300_gdbarch_init): Invoke
1714         set_gdbarch_double_format and set_gdbarch_long_double_format.
1715         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
1716         set_gdbarch_double_format.
1717         * sh-tdep.c (sh_gdbarch_init): Likewise.
1718
1719         * NEWS: Document the removal of SH's 'regs' command.
1720         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
1721         command.
1722
1723 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
1724
1725         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
1726         `jump'.
1727
1728 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
1729
1730         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
1731         language when iterating over symbols.
1732
1733 2012-09-18  Yao Qi  <yao@codesourcery.com>
1734
1735         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
1736         (mi_interpreter_init): Call observer_attach_tsv_created and
1737         observer_attach_tsv_deleted.
1738         (mi_tsv_created, mi_tsv_deleted): New.
1739         * tracepoint.c (delete_trace_state_variable): Call
1740         observer_notify_tsv_deleted.
1741         (trace_variable_command): Call observer_notify_tsv_created.
1742         (delete_trace_variable_command): Call
1743         observer_notify_tsv_deleted.
1744         (create_tsv_from_upload): Call observer_notify_tsv_created.
1745         * NEWS: Mention it.
1746
1747 2012-09-18  Yao Qi  <yao@codesourcery.com>
1748
1749         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
1750         if traceframe changed.
1751         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
1752         "trace-find".
1753         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
1754         (mi_interpreter_init): Hook mi_traceframe_changed to observer
1755         'traceframe_changed'.
1756         (mi_traceframe_changed): New.
1757         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
1758         New field.
1759         * NEWS: Mention the new MI notification.
1760
1761 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
1762
1763         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
1764
1765 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1766
1767         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
1768         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
1769         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
1770         Extend code also for PaX support.  Convert all gdb_assert to warning
1771         calls.
1772
1773 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1774
1775         Implement auto-load user conveniences suggested by Doug Evans.
1776         * auto-load.c: Include top.h.
1777         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
1778         (_initialize_auto_load): New variable scripts_directory_help.  Mention
1779         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
1780         scripts-directory.  Document in online help one can use also files for
1781         set auto-load safe-path.
1782         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
1783         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
1784
1785 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
1786
1787         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
1788         of LEN.
1789
1790 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
1791
1792         * m2-valprint.c (m2_print_array_contents): Eliminate variable
1793         ELTLEN and use TYPE_LENGTH directly.
1794         (m2_val_print): Likewise.
1795         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
1796         variable LEN and use TYPE_LENGTH directly.
1797         (m68k_svr4_store_return_value): Likewise.
1798         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
1799         ARGLEN and use TYPE_LENGTH directly.
1800         (mips_o64_push_dummy_call): Likewise.
1801         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
1802         variable LENGTH and use TYPE_LENGTH directly.
1803         (s390_function_arg_float): Likewise.
1804         (s390_function_arg_integer): Likewise.
1805         (s390_push_dummy_call): Likewise.
1806         (s390_return_value_convention): Likewise.
1807         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
1808         TYPE_LENGTH directly.
1809
1810 2012-09-17  Yao Qi  <yao@codesourcery.com>
1811
1812         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
1813         Update comment to add_setshow_integer_cmd.
1814         * cli/cli-setshow.c (do_set_command): Handle case
1815         'var_zuinteger_unlimited'.
1816         (do_show_command): Likewise.
1817         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
1818         for command 'remotetimeout'.
1819         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
1820         to var_integer.
1821         * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
1822         for command 'set listsize'.
1823
1824 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
1825
1826         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
1827         variable LEN.
1828
1829 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1830
1831         PR 14119
1832         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
1833         (frame_pop): Drop also TAILCALL_FRAME frames.
1834         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
1835
1836 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1837             Pedro Alves  <palves@redhat.com>
1838
1839         PR 14548
1840         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
1841         function start if we are already at function start.  Both for
1842         reverse-next and for reverse-step into function without line number
1843         info.
1844
1845 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
1846
1847         Code cleanup - rename 'inline' depth to 'artificial' depth.
1848         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
1849         frame_id_artificial_p, extend the comment.
1850         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
1851         * frame.c (fprint_frame_id): Rename at a user, change debug output
1852         text to "artificial=".
1853         (skip_inlined_frames): Rename to ...
1854         (skip_artificial_frames): ... here.  Extend the comment.
1855         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
1856         (frame_id_inlined_p): Rename to ...
1857         (frame_id_artificial_p): ... here.  Rename at a user.
1858         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
1859         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
1860         at a user.
1861         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
1862         Extend the comment.
1863         (frame_id_inlined_p): Rename to ...
1864         (frame_id_artificial_p): ... here.
1865         * inline-frame.c (inline_frame_this_id): Rename at a user.
1866
1867 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
1868
1869         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
1870         vector variables using vector_size syntax rather than array
1871         syntax.
1872
1873 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
1874
1875         * valarith.c (value_concat): Replace unsafe ALLOCA with
1876         XMALLOC/XFREE.
1877
1878 2012-09-14  Pedro Alves  <palves@redhat.com>
1879
1880         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
1881
1882 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
1883
1884         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
1885         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
1886         data-directory as appropriate.
1887
1888 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
1889
1890         * printcmd.c (ui_printf): Eliminate single-use variable
1891         PARAM_LEN.
1892
1893 2012-09-14  Yao Qi  <yao@codesourcery.com>
1894             Pedro Alves  <palves@redhat.com>
1895
1896         * valops.c (value_assign): Move observer_notify_target_changed
1897         below to replace reinit_frame_cache.
1898
1899 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
1900
1901         Refactor Python "gdb" module into a proper Python package, by
1902         introducing a new "_gdb" module for code implemented in C, and
1903         using reload/__import__ instead of exec.
1904         * python/lib/gdb/__init__.py: Import * from _gdb.
1905         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
1906         prompt_hook, sys.argv): Moved from finish_python_initialization.
1907         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
1908         (packages, auto_load_packages): New list and function replacing
1909         module_dict and auto-loading code, using __file__ instead of
1910         gdb.PYTHONDIR and reload/__import__ instead of exec.
1911         (GdbSetPythonDirectory): Replacing function of the same name
1912         from finish_python_initialization, using reload/__import__ instead
1913         of exec, as well as call auto_load_packages.
1914         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
1915         gdb_python_module and not gdb_module.
1916         * python/python-internal.h (gdb_python_module): Declare.
1917         * python/python.c (gdb_python_module): New global.
1918         (before_prompt_hook): Check gdb_python_module and not gdb_module.
1919         (_initialize_python): Rename gdb module to _gdb.
1920         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
1921         (finish_python_initialization): Move Python code to
1922         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
1923         __main__.
1924
1925 2012-09-13  Pedro Alves  <palves@redhat.com>
1926
1927         * Makefile.in (COMMON_OBS): Add registry.o.
1928         * registry.c: New file.
1929         * registry.h (struct registry_container): Declare.
1930         (registry_data_callback): New typedef.
1931         (struct registry_data, struct registry_data_registration, struct
1932         registry_data_registry): New type.
1933         (register_data_with_cleanup, registry_alloc_data)
1934         (registry_callback_adaptor, registry_clear_data)
1935         (registry_container_free_data, registry_set_data, registry_data):
1936         Declare.
1937         (DEFINE_REGISTRY): Refactor structures and functions as shims over
1938         the new common structures and functions.
1939         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
1940         callback typedefs.
1941
1942 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
1943
1944         * remote.c (remote_insert_hw_breakpoint): Throw exception if
1945         there is an error inserting hardware breakpoints and use the
1946         error message from the target.
1947
1948         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
1949         Catch this exception and print the error message contained within. Do not
1950         print the default hardware error breakpoint message in this case.
1951
1952 2012-09-12  Doug Evans  <dje@google.com>
1953
1954         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
1955         cu == NULL.
1956
1957 2012-09-11  Doug Evans  <dje@google.com>
1958
1959         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
1960         .gdb_index symbol attributes if there are none.
1961
1962 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
1963
1964         * symtab.h (struct minimal_symbol) [has_size]: New field.
1965         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
1966         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
1967         * printcmd.c (build_address_symbolic): Only filter out zero-sized
1968         minimal symbols if the symbol's size is actually known.
1969         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
1970         of msymbol's size field.  Add comment.
1971         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
1972         SET_MSYMBOL_SIZE to set the minimal symbol size.
1973
1974 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
1975
1976         * minsyms.c (install_minimal_symbols): Use memset to fill entire
1977         minimal_symbol struct object, rather than setting some of its
1978         fields one by one.
1979
1980 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
1981
1982         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
1983         passed_a_ptr flag when displaying typedef types.
1984
1985 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
1986
1987         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
1988         the optimized_out flag is preserved.
1989
1990 2012-09-10  Anthony Green  <green@moxielogic.com>
1991
1992         * moxie-tdep.c (moxie_analyze_prologue): Update for function
1993         prologue changes in GCC.
1994
1995 2012-09-10  Keith Seitz  <keiths@redhat.com>
1996
1997         PR gdb/13483
1998         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
1999         (BOOL_CONVERSION_BADNESS): ... this.
2000         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2001         (rank_one_type): Allow all boolean conversions
2002         permitted by the standard.
2003
2004 2012-09-06  Tom Tromey  <tromey@redhat.com>
2005
2006         * python/py-newobjfileevent.c (create_new_objfile_event_object):
2007         Don't decref py_objfile.
2008
2009 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
2010
2011         Do not enable -lmcheck by default when Python is enabled with
2012         threading support.
2013         * configure.ac: (python_has_threads) New variable, by testing
2014         if WITH_THREAD is defined in Python.h.
2015         Move --enable-lmcheck after --with-python.
2016         Do not enable -lmcheck by default if python_has_threads=yes.
2017         Warn if --enable-lmcheck and python_has_threads=yes.
2018         * configure: Regenerate.
2019
2020 2012-08-31  Yao Qi  <yao@codesourcery.com>
2021
2022         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2023         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2024         Update some commands.
2025         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2026         * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
2027         to 1.
2028
2029 2012-08-31  Yao Qi  <yao@codesourcery.com>
2030
2031         * mi/mi-cmds.c (mi_cmds): Add 'static'.
2032
2033 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
2034
2035         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2036
2037 2012-08-29  Doug Evans  <dje@google.com>
2038
2039         * main.c (print_gdb_help): Remove reference to
2040         --use-deprecated-index-sections.
2041
2042 2012-08-28  Yao Qi  <yao@codesourcery.com>
2043
2044         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2045         (init_cmds): Call add_setshow_uinteger_cmd for command
2046         'max-user-call-depth'.
2047         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2048         declaration of 'max_user_call_depth'.
2049         * frame.c (backtrace_limit): Add 'unsigned'.
2050         (_initialize_frame): Call add_setshow_uinteger_cmd for command
2051         'limit'.
2052         * remote.c (remoteaddresssize): Add 'unsigned'.
2053         (remote_address_masked): Change local var 'address_size' to
2054         'unsigned'.
2055         (_initialize_remote): Call add_setshow_uinteger_cmd for
2056         'remoteaddresssize'.
2057         * top.c (history_size): Add 'unsigned'.
2058         (show_commands): Change local variables to 'unsigned'.
2059         (set_history_size_command): Don't check history_size is negative.
2060         Adjust the condition to call unstifle_history and set history_size
2061         to UNIT_MAX.
2062
2063 2012-08-28  Pedro Alves  <palves@redhat.com>
2064
2065         PR gdb/14428
2066
2067         * infcmd.c (default_print_one_register_info): New, factored out
2068         from default_print_registers_info.
2069         (default_print_registers_info): Use it.  Mark value unavailable if
2070         necessary.
2071         (registers_info): Print user registers with
2072         default_print_one_register_info.
2073
2074 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
2075
2076         PR tui/14486
2077         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2078         is not NULL before referencing it.
2079
2080 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2081
2082         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2083         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
2084         original PC for it.
2085
2086 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
2087             Jan Kratochvil  <jan.kratochvil@redhat.com>
2088
2089         * auto-load.c (auto_load_objfile_script): Rename to ...
2090         (auto_load_objfile_script_1): ... here, change variable realname to
2091         parameter realname, document it, add return value, add variable retval.
2092         (auto_load_objfile_script): New function.
2093
2094 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2095
2096         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2097         followed by a whitespace.
2098
2099 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2100
2101         PR gdb/14494.
2102         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2103         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2104         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2105         here.
2106
2107 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
2108
2109         * memattr.c (create_mem_region): Fix memory region overlapping
2110         checking.
2111
2112 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2113
2114         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2115         with xmalloc/cleanup.
2116         * mt-tdep.c (mt_push_dummy_call): Likewise.
2117         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2118         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2119
2120 2012-08-24  Yao Qi  <yao@codesourcery.com>
2121
2122         * jv-exp.y (push_expression_name): Add "." at the end of error
2123         message.
2124
2125 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
2126
2127         Document how to return from "python-interactive" to GDB.
2128         * python/python.c (_initialize_python): Update documentation.
2129
2130 2012-08-23  Pedro Alves  <palves@redhat.com>
2131
2132         * infrun.c (_initialize_infrun) <handle command help text>:
2133         Mention that multiple signals are supported.
2134
2135 2012-08-23  Pedro Alves  <palves@redhat.com>
2136
2137         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2138         string.
2139
2140 2012-08-23  Yao Qi  <yao@codesourcery.com>
2141
2142         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2143         (tfind_1): Don't call registers_changed, set_traceframe_num,
2144         and clear_traceframe_info.
2145         Call set_current_traceframe.
2146         (set_current_traceframe): call set_traceframe_num.
2147
2148 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
2149
2150         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2151         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2152
2153 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2154
2155         Enable readline in Python in a GDB-specific way and block the
2156         standard Python readline module to prevent conflicts with GDB.
2157         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2158         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2159         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2160         * python/py-gdb-readline.c: New file.
2161         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2162         prototype.
2163         * python/python.c (_initialize_python): Call
2164         gdbpy_initialize_gdb_readline.
2165
2166 2012-08-22  Keith Seitz  <keiths@redhat.com>
2167
2168         * defs.h: Include build-gnulib/config.h
2169
2170 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
2171
2172         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2173         and blx pc.
2174
2175 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2176
2177         Add a new "python-interactive" command that starts a standard
2178         Python interactive prompt with "pi" as alias, and add "py" as
2179         an alias to "python".
2180         * NEWS: Mention the new commands.
2181         * python/python.c (eval_python_command): New function.
2182         (python_interactive_command): For "python-interactive" with
2183         arguments, call eval_python_command.  For "python-interactive"
2184         without arguments, call PyRun_InteractiveLoop.
2185         (_initialize_python): Add "python-interactive" command with
2186         "pi" as alias, and add "py" as an alias to "python".
2187
2188 2012-08-22  Tom Tromey  <tromey@redhat.com>
2189
2190         * defs.h (quit_flag): Don't declare.
2191         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2192         (QUIT): Use new functions.
2193         * event-top.c (command_handler): Use clear_quit_flag.
2194         (handle_sigint): Use set_quit_flag.
2195         (async_request_quit): Use check_quit_flag.  Don't check
2196         immediate_quit.
2197         * exceptions.c (throw_exception): Use clear_quit_flag.
2198         * main.c (captured_main): Use clear_quit_flag.
2199         * python/python.c (clear_quit_flag, set_quit_flag)
2200         (check_quit_flag): New functions.
2201         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2202         clear_quit_flag.
2203         * remote.c (remote_wait_as): Use check_quit_flag,
2204         clear_quit_flag.
2205         (remote_start_remote): Call QUIT.
2206         * symfile.c (load_progress): Use check_quit_flag.
2207         * top.c (command_loop): Use clear_quit_flag.
2208         (command_line_input): Call QUIT.
2209         * utils.c (quit_flag): Conditionally define.
2210         (clear_quit_flag, check_quit_flag, set_quit_flag): New
2211         functions.
2212         (prompt_for_continue): Call QUIT.  Use quit, not
2213         async_request_quit.
2214         * remote-mips.c (mips_expect_timeout): Call QUIT.
2215         * monitor.c (monitor_expect): Call QUIT.
2216
2217 2012-08-22  Tom Tromey  <tromey@redhat.com>
2218
2219         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2220         (async_init_signals): Update.
2221         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2222         (SIGWINCH_HANDLER_BODY): Remove.
2223
2224 2012-08-22  Tom Tromey  <tromey@redhat.com>
2225
2226         * jit.c (jit_object_close_impl): Don't malloc the objfile
2227         name.
2228         * objfiles.c (allocate_objfile): Don't malloc the objfile
2229         name.
2230         (free_objfile): Don't free the objfile name.
2231         * objfiles.h (struct objfile) <name>: Update comment.
2232         * symfile.c (reread_symbols): Fix reference counting.  Don't
2233         malloc objfile name.
2234
2235 2012-08-22  Tom Tromey  <tromey@redhat.com>
2236
2237         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2238         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2239         (symfile_bfd_open): Likewise.
2240         (generic_load): Likewise.
2241         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2242         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2243         gdb_bfd_open.
2244         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2245         Use gdb_bfd_open.
2246         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2247         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2248         (pmon_load_fast): Likewise.
2249         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2250         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2251         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2252         (macho_check_dsym): Likewise.
2253         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2254         (m32r_upload_command): Likewise.
2255         * gdb_bfd.h (gdb_bfd_cache): Declare.
2256         * gdb_bfd.c (struct gdb_bfd_data): New.
2257         (gdb_bfd_cache): New global.
2258         (struct gdb_bfd_cache_search): New.
2259         (hash_bfd): New function.
2260         (eq_bfd): Likewise.
2261         (gdb_bfd_open): Likewise.
2262         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2263         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
2264         gdb_bfd_data.
2265         * exec.c (exec_file_attach): Use gdb_bfd_open.
2266         * dsrec.c (load_srec): Use gdb_bfd_open.
2267
2268 2012-08-22  Tom Tromey  <tromey@redhat.com>
2269
2270         * dwarf2read.c (macro_start_file): Update.
2271         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2272         (free_objfile_per_bfd_storage): Destroy macro_cache.
2273         (allocate_objfile, free_objfile): Update.
2274         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2275         New field.
2276         (struct objfile) <macro_cache>: Remove.
2277         * symfile.c (reread_symbols): Update.
2278         * symmisc.c (print_symbol_bcache_statistics): Update.
2279         (print_objfile_statistics): Update.
2280
2281 2012-08-22  Tom Tromey  <tromey@redhat.com>
2282
2283         * elfread.c (elf_symtab_read): Update.
2284         * objfiles.c (objfiles_bfd_data): New global.
2285         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2286         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2287         (allocate_objfile, free_objfile): Update.
2288         (_initialize_objfiles): Initialize objfiles_bfd_data.
2289         * objfiles.h (struct objfile_per_bfd_storage): New.
2290         (struct objfile) <per_bfd>: New field.
2291         <filename_cache>: Remove.
2292         (set_objfile_per_bfd): Declare.
2293         * symfile.c (reread_symbols): Update.  Call
2294         set_objfile_per_bfd.
2295         (allocate_symtab): Update.
2296         * symmisc.c (print_symbol_bcache_statistics): Update.
2297         (print_objfile_statistics): Print the size of the BFD obstack.
2298
2299 2012-08-22  Tom Tromey  <tromey@redhat.com>
2300
2301         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
2302         * gdb_bfd.c: Use DEFINE_REGISTRY.
2303         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2304         (gdb_bfd_ref): Call bfd_alloc_data.
2305         (gdb_bfd_unref): Call bfd_free_data.
2306
2307 2012-08-22  Tom Tromey  <tromey@redhat.com>
2308
2309         * registry.h (struct registry_fields): New.
2310         (REGISTRY_FIELDS): Redefine.
2311         (REGISTRY_ACCESS_FIELD): New macro.
2312         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
2313         functions.
2314
2315 2012-08-22  Tom Tromey  <tromey@redhat.com>
2316
2317         * auto-load.c (_initialize_auto_load): Update.
2318         * solib-svr4.c (_initialize_svr4_solib): Update
2319         * solib-dsbt.c (_initialize_dsbt_solib): Update.
2320         * solib-darwin.c (_initialize_darwin_solib): Update.
2321         * registry.h: New file.
2322         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2323         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2324         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
2325         (register_program_space_data_with_cleanup)
2326         (register_program_space_data, program_space_alloc_data)
2327         (clear_program_space_data, set_program_space_data)
2328         (program_space_data): Don't declare.
2329         * progspace.c: Use DEFINE_REGISTRY.
2330         (struct program_space_data, struct
2331         program_space_data_registration, struct
2332         program_space_data_registry, program_space_data_registry)
2333         (register_program_space_data_with_cleanup)
2334         (register_program_space_data, program_space_alloc_data)
2335         (program_space_free_data, clear_program_space_data)
2336         (set_program_space_data, program_space_data): Remove.
2337         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
2338         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2339         (register_objfile_data_with_cleanup, register_objfile_data)
2340         (clear_objfile_data, set_objfile_data, objfile_data): Don't
2341         declare.
2342         * objfiles.c: Use DEFINE_REGISTRY.
2343         (struct objfile_data, struct objfile_data_registration, struct
2344         objfile_data_registry, objfile_data_registry)
2345         (register_objfile_data_with_cleanup, register_objfile_data)
2346         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2347         (set_objfile_data, objfile_data): Remove.
2348         (_initialize_objfiles): Update.
2349         * jit.c (_initialize_jit): Update.
2350         * inflow.c (_initialize_inflow): Update.
2351         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
2352         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2353         (register_inferior_data_with_cleanup, register_inferior_data)
2354         (clear_inferior_data, set_inferior_data, inferior_data): Don't
2355         declare.
2356         * inferior.c: Use DEFINE_REGISTRY.
2357         (struct inferior_data, struct inferior_data_registration, struct
2358         inferior_data_registry, inferior_data_registry)
2359         (register_inferior_data_with_cleanup, register_inferior_data)
2360         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
2361         (set_inferior_data, inferior_data): Remove.
2362         * auxv.c (_initialize_auxv): Update.
2363         * ada-lang.c (_initialize_ada_language): Update.
2364         * breakpoint.c (_initialize_breakpoint): Update.
2365         * i386-nat.c (i386_use_watchpoints): Update.
2366
2367 2012-08-22  Tom Tromey  <tromey@redhat.com>
2368
2369         * exec.c (exec_close, exec_file_attach): Update.
2370         (add_to_section_table): Initialize 'key' field.
2371         (add_target_sections, remove_target_sections): Add 'key' argument.
2372         * exec.h (add_target_sections, remove_target_sections): Add
2373         'key' argument.
2374         * solib.c (solib_map_sections, update_solib_list, clear_solib)
2375         (reload_shared_libraries_1): Update.
2376         * target.h (struct target_section) <key>: New field.
2377
2378 2012-08-22  Tom Tromey  <tromey@redhat.com>
2379
2380         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2381
2382 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
2383
2384         * symfile.c (allocate_symtab): Use host_address_to_string
2385         function instead of cast of pointer to long which is not
2386         compatible with x86_64-w64-mingw32 build.
2387
2388 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2389
2390         * mips-tdep.c (is_octeon): New function.
2391         (is_octeon_bbit_op): New function.
2392         (mips32_next_pc): Handle Octeon's bbit instructions.
2393         (mips32_instruction_has_delay_slot): Likewise.
2394
2395 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2396
2397         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
2398         before the function.
2399
2400 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2401
2402         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
2403
2404 2012-08-19  Keith Seitz  <keiths@redhat.com>
2405
2406         PR c++/14365
2407         * c-typeprint.c (c_type_print_varspec_prefix): Pass
2408         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
2409
2410 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
2411
2412         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
2413         The typo broke "make TAGS".
2414
2415 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
2416
2417         GDB 7.5 released.
2418
2419 2012-08-17  Keith Seitz  <keiths@redhat.com>
2420
2421         PR c++/13356
2422         * gdbtypes.c (strict_type_checking): New variable.
2423         (show_strict_type_checking): New function.
2424         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
2425         if strict type checking is disabled.
2426         (_initialize_gdbtypes): Add "check type" subcommand.
2427         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
2428
2429 2012-08-17  Keith Seitz  <keiths@redhat.com>
2430
2431         * language.h (type_mode): Remove.
2432         (type_check): Remove.
2433         (struct language_defn): Remove la_type_check.
2434         (STRICT_TYPE): Remove unused macro.
2435         (type_error): Remove.
2436         * language.c (set_type_range_case): Renamed to ...
2437         (set_range_case): ... this.  Update all callers.
2438         Remove type_mode/type_check.
2439         (type_mode): Remove.
2440         (type_check): Remove.
2441         (show_type_command): Remove.
2442         (set_type_command): Remove.
2443         (language_info): Remove type checking output.
2444         (type_error): Remove unused function.
2445         (range_error): Update comment.
2446         (unknown_language_defn): Remove la_type_check.
2447         (auto_language_defn): Likewise.
2448         (local_language_defn): Likewise.
2449         (_initialize_language): Remove "check type" subcommand.
2450         * ada-lang.c (ada_language_defn): Remove la_type_check.
2451         * c-lang.c (c_language_defn): Likewise.
2452         (cplus_language_defn): Likewise.
2453         (asm_language_defn): Likewise.
2454         (minimal_language_defn): Likewise.
2455         * d-lang.c (d_language_defn): Likewise.
2456         * f-lang.c (f_language_defn): Likewise.
2457         * go-lang.c (go_language_defn): Likewise.
2458         * jv-lang.c (java_language_defn): Likewise.
2459         * m2-lang.c (m2_language_defn): Likewise.
2460         * objc-lang.c (objc_language_defn): Likewise.
2461         * opencl-lang.c (opencl_language_defn): Likewise.
2462         * p-lang.c (pascal_language_defn): Likewise.
2463
2464 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
2465
2466         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
2467
2468 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2469
2470         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
2471         New function.
2472         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
2473         using the regache.  Use ia64_hpux_get_register_from_save_state_t
2474         to access the bsp and bspstore registers if not.
2475
2476 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2477
2478         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
2479         * breakpoint.c (detach_breakpoints): Change pid parameter into
2480         a ptid.  Adjust code accordingly.
2481         * infrun.c (handle_inferior_event): Delete variable child_pid.
2482         Update call to detach_breakpoints to pass the child ptid for
2483         fork events.
2484         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
2485         assert that inferior_ptid's lwp is zero.
2486         (linux_handle_extended_wait): Update call to detach_breakpoints.
2487         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
2488         detach_breakpoints.
2489
2490 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2491
2492         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
2493         parent, only call detach_breakpoints if tts.tts_event ==
2494         TTEVT_VFORK.
2495
2496 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2497
2498         * dwarf2-frame.c (dwarf2_frame_cache): Use
2499         get_frame_address_in_block instead of get_frame_pc as
2500         the bound for executing the frame's FDE.
2501
2502 2012-08-16  Yao Qi  <yao@codesourcery.com>
2503
2504         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
2505         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
2506         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
2507         (c_type_print_varspec_suffix): Likewise.
2508         * eval.c (evaluate_subexp_standard): Likewise.
2509         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
2510         (f_type_print_varspec_suffix): Likewise.
2511         * gdbtypes.c (is_scalar_type): Likewise.
2512         (recursive_dump_type): Likewise.
2513         * infcall.c (value_arg_coerce): Likewise.
2514         * m2-valprint.c (m2_val_print): Likewise.
2515         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
2516         (pascal_type_print_varspec_suffix): Likewise.
2517         (pascal_type_print_base): Likewise.
2518         * p-valprint.c (pascal_val_print): Likewise.
2519         (pascal_val_print): Likewise.
2520         * valops.c (value_slice): Likewise.
2521         * valprint.c (scalar_type_p): Likewise.
2522         * valarith.c (value_bitstring_subscript): Remove.
2523         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
2524         Remove comment on TYPE_CODE_BITSTRING.
2525
2526         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
2527         TYPE_CODE_BITSTRING.
2528
2529         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
2530         slot 0.
2531
2532 2012-08-16  Yao Qi  <yao@codesourcery.com>
2533
2534         * tracepoint.c (trace_find_none_command): Remove.
2535         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
2536
2537 2012-08-16  Yao Qi  <yao@codesourcery.com>
2538
2539         * remote.c (handle_notification): Remove parameter 'length'.
2540         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
2541
2542 2012-08-15  Keith Seitz  <keiths@redhat.com>
2543
2544         * gdbtypes.c (opaque_type_resolution): Make static.
2545         Add missing comment.
2546         (overload_debug): Add missing comment.
2547         (show_opaque_type_resolution): Likewise.
2548         (show_overload_debug): Likewise.
2549         (print_bit_vector): Remove unnecessary forward declaration.
2550         (print_arg_types): Likewise.
2551         (dump_fn_fieldlists): Likewise.
2552         (print_cplus_stuff): Likewise.
2553
2554 2012-08-15  Tom Tromey  <tromey@redhat.com>
2555
2556         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
2557         (gdb_bfd_ref): Initialize new field.
2558         (gdb_bfd_unref): Unref the archive BFD.
2559         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
2560         parent archive.
2561
2562 2012-08-15  Tom Tromey  <tromey@redhat.com>
2563
2564         PR python/14387:
2565         * python/py-bpevent.c (create_breakpoint_event_object): Update
2566         comment.
2567         * python/py-event.c (evpy_add_attribute): Update comment.
2568         * python/py-exitedevent.c (create_exited_event_object): Fix
2569         reference counting and error handling.
2570         * python/py-newobjfileevent.c (create_new_objfile_event_object):
2571         Fix reference counting.
2572         * python/py-signalevent.c (create_signal_event_object): Fix
2573         reference counting and error handling.
2574         * python/py-stopevent.c (emit_stop_event): Fix reference
2575         counting.
2576         * python/py-threadevent.c (get_event_thread): Return a
2577         borrowed reference.
2578         * python/py-type.c (convert_field): Fix reference counting.
2579
2580 2012-08-15  Tom Tromey  <tromey@redhat.com>
2581
2582         * dwarf2read.c (dwarf_decode_macro_bytes)
2583         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
2584         as hash key.
2585
2586 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
2587
2588         * infcmd.c (_initialize_infcmd): Update help text for the signal,
2589         stepi, nexti, finish, next, step, jump, and continue commands.
2590         * infrun.c (_initialize_infrun): Update help text for the handle
2591         command.
2592
2593 2012-08-14  Doug Evans  <dje@google.com>
2594
2595         * gdbtypes.c (struct extra): Delete, unused.
2596
2597         * gdbtypes.c: Whitespace cleanup.
2598         (address_space_name_to_int): Remove "extern" from definition.
2599         (_initialize_gdbtypes): Declare with initialize_file_ftype.
2600
2601         * gdbtypes.c (make_pointer_type): Remove redundant setting of
2602         TYPE_POINTER_TYPE (type).
2603
2604 2012-08-14  Gary Benson  <gbenson@redhat.com>
2605
2606         * solib-svr4.c (svr4_free_library_list): Use free_so.
2607
2608 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
2609
2610         * .gitignore: Add go-exp.c.
2611
2612 2012-08-13  Doug Evans  <dje@google.com>
2613
2614         * value.c (show_convenience): Tweak comment.
2615         (_initialize_values): Mention convenience functions in the help text
2616         for "show convenience".
2617
2618 2012-08-13  Yao Qi  <yao@codesourcery.com>
2619
2620         * std-operator.def: Remove TERNOP_SLICE_COUNT.
2621         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
2622         TERNOP_SLICE_COUNT.
2623         * eval.c (evaluate_subexp_standard): Likewise.
2624         * expprint.c (print_subexp_standard): Likewise.
2625         (dump_subexp_body_standard): Likewise.
2626         * parse.c (operator_length_standard): Likewise.
2627
2628 2012-08-13  Yao Qi  <yao@codesourcery.com>
2629
2630         * std-operator.def: Remove OP_BITSTRING.
2631         * breakpoint.c (watchpoint_exp_is_const): Update.
2632         * eval.c (evaluate_subexp_standard): Remove handling to
2633         OP_BITSTRING.
2634         * expprint.c (print_subexp_standard): Likewise.
2635         (dump_subexp_body_standard): Likewise.
2636         * parse.c (operator_length_standard): Likewise.
2637         * valops.c (value_bitstring): Remove.
2638         * value.h: Remove the declaration of 'value_bitstring'.
2639
2640 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
2641
2642         * linespec.c (find_methods): Remove unused variables `i1' and
2643         `name_len'.
2644         (decode_line_full): Likewise for `arg_start'.
2645
2646 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
2647
2648         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
2649         (zlib_decompress_section): Likewise for `section_data'.
2650         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
2651
2652 2012-08-10  Doug Evans  <dje@google.com>
2653
2654         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
2655         * NEWS: Document them.
2656         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
2657         function/strfns.py.
2658         * python/py-type.c (typy_array_1): New function.
2659         (typy_array): Call it.
2660         (typy_vector): New function.
2661         (type_object_methods): Add "vector".
2662         * python/lib/gdb/function/__init__.py: New file.
2663         * python/lib/gdb/function/strfns.py: New file.
2664
2665 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
2666
2667         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
2668         for TYPE_FIELD_BITPOS.
2669         (typy_get_sizeof): Likewise for TYPE_LENGTH.
2670
2671 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
2672
2673         PR cli/10436:
2674         * common/vec.h (VEC_merge): Define.
2675         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
2676         (DEF_VEC_ALLOC_FUNC_P): Likewise.
2677         (DEF_VEC_ALLOC_FUNC_O): Likewise.
2678         * completer.c: Include gdb_signals.h.
2679         (signal_completer): Define.
2680         * completer.h (signal_completer): Add prototype.
2681         * infcmd.c (_initialize_infcmd): Assign the command
2682         completer for "signal" to handle_completer.
2683         * infrun.c: Include completer.h.
2684         (handle_completer): Define.
2685         (_initialize_infrun): Declare a new local variable c.  Store the
2686         result of add_com("handle") to it.  Assign the command
2687         completer for "handle" to handle_completer.
2688
2689 2012-08-09  Yao Qi  <yao@codesourcery.com>
2690
2691         * cli/cli-decode.c (set_cmd_prefix): New.
2692         (lookup_cmd_for_prefixlist): New.
2693         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
2694         of each cmd_list_element in *prefixlist.
2695         (add_setshow_cmd_full): set_cmd_prefix.
2696         (add_alias_cmd): Likewise.
2697         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
2698         Declare 'auto_boolean_enums'.
2699         * cli/cli-setshow.c: Include "observer.h".
2700         (notify_command_param_changed_p): New.
2701         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
2702         Remove 'static'.
2703         (do_setshow_command): Split it to ...
2704         (do_set_command, do_show_command): ... them.  New.
2705         (do_set_command): Call observer_notify_command_param_changed if
2706         notify_command_param_changed_p returns true.
2707         (cmd_show_list): Caller update.
2708         * auto-load.c (set_auto_load_cmd): Likewise.
2709         * remote.c (show_remote_cmd): Likewise.
2710         * cli/cli-setshow.h: Update declarations.
2711         * top.c (execute_command): Call do_set_command and do_show_command.
2712
2713         * NEWS: Mention new MI notification.
2714         * mi/mi-interp.c: Declare mi_command_param_changed.
2715         (mi_interpreter_init): Attach mi_command_param_changed to
2716         observer command_param_changed.
2717         (mi_command_param_changed): New.
2718         Remove mi_suppress_breakpoint_notifications.
2719         Define global variable mi_suppress_notification.
2720         (mi_breakpoint_created): Update.
2721         (mi_breakpoint_deleted): Likewise.
2722         (mi_breakpoint_modified): Likewise.
2723         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
2724         'gdb-set' and set mi_suppress_notification.
2725         * mi/mi-main.h: (mi_suppress_notification): New struct.
2726
2727 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
2728             Jan Kratochvil  <jan.kratochvil@redhat.com>
2729
2730         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
2731
2732 2012-08-09  Yao Qi  <yao@codesourcery.com>
2733
2734         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
2735         (skiplist): Move it to skip.c.
2736         (init_cmd_lists): Remove code setting enablebreaklist and
2737         skiplist to NULL.
2738         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
2739         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
2740         skiplist.
2741         * gdbcmd.h: Likewise.
2742         * skip.c (_initialize_step_skip): Move 'skiplist' from
2743         cli/cli-cmds.c.
2744
2745 2012-08-09  Yao Qi  <yao@codesourcery.com>
2746
2747         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
2748         * gnu-nat.c, symfile.c: Likewise.
2749
2750 2012-08-08  Aaron Gamble  <agamble@google.com>
2751
2752         * utils.c (prompt_for_continue_wait_time): New static global.
2753         (make_command_stats_cleanup): Initialize it.
2754         (report_command_stats): Subtract time waiting for user.
2755         (prompt_for_continue): Track time waiting for user.
2756         (defaulted_query): Track time waiting for user.
2757
2758 2012-08-08  Doug Evans  <dje@google.com>
2759
2760         * eval.c (evaluate_subexp_standard): Fix thinko in handling
2761         UNOP_MEMVAL_TYPE.
2762         * expprint.c (print_subexp_standard, case OP_TYPE): New.
2763         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
2764         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
2765         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
2766         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
2767         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
2768         elt.
2769         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
2770         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
2771         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
2772         (dump_prefix_expression): Handle OP_TYPE.
2773
2774 2012-08-08  Keith Seitz  <keiths@redhat.com>
2775
2776         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
2777         addr_start.
2778
2779 2012-08-08  Doug Evans  <dje@google.com>
2780
2781         * linux-thread-db.c: #include "gdb_vecs.h".
2782         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
2783         updated.
2784         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
2785         (thread_db_load_search): Use a vector to iterate over path elements.
2786         Handle text appearing after "$pdir".
2787
2788         * gdb_string.h: Moved to ...
2789         * common/gdb_string.h: ... here.
2790         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
2791         gdb_string.h and gdb_assert.h.
2792
2793 2012-08-08  Yao Qi  <yao@codesourcery.com>
2794
2795         * tic6x-tdep.c (tic6x_register_to_value): Remove.
2796         (tic6x_value_to_register): Likewise.
2797         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
2798         and set_gdbarch_value_to_register.
2799
2800 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
2801             Jean-Marc Saffroy  <saffroy@gmail.com>
2802
2803         PR 11804
2804         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
2805         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
2806         * gcore.c (gcore_create_callback): New function comment.  Add modified
2807         parameter.  Only write modified regions.  Set SEC_READONLY exactly
2808         according to MODIFIED.
2809         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
2810         the passed modified value to FUNC.
2811         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
2812         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
2813         first.  New variables modified and has_anonymous.  Parse the lines of
2814         smaps file.  Add the passed MODIFIED value to FUNC.
2815         * procfs.c (find_memory_regions_callback): Add the passed modified
2816         value.
2817
2818 2012-08-06  Tom Tromey  <tromey@redhat.com>
2819
2820         * dwarf2-frame.c (clear_pointer_cleanup): New function.
2821         (dwarf2_frame_cache): Use it.
2822         * frame-unwind.h (frame_sniffer_ftype): Document prologue
2823         cache initialization constraint.
2824
2825 2012-08-06  Tom Tromey  <tromey@redhat.com>
2826
2827         PR python/14386:
2828         * varobj.c (update_dynamic_varobj_children): Don't call
2829         PyIter_Check.
2830
2831 2012-08-06  Tom Tromey  <tromey@redhat.com>
2832
2833         PR cli/14392:
2834         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
2835
2836 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
2837
2838         * NEWS: New entry for 'cd' default parameters.
2839         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
2840
2841 2012-08-03  Tom Tromey  <tromey@redhat.com>
2842
2843         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
2844         return.
2845
2846 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
2847
2848         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
2849         to attempting lseek/write.
2850         (inf_child_fileio_pread): Likewise for pread.
2851
2852 2012-08-02  Yao Qi  <yao@codesourcery.com>
2853
2854         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
2855         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
2856         add_setshow_zinteger_cmd.
2857         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
2858         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
2859         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
2860         instead of add_setshow_zinteger_cmd.
2861         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
2862         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
2863         instead of add_setshow_zinteger_cmd.
2864         * frame.c (frame_debug): Add 'unsigned'.
2865         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
2866         add_setshow_zinteger_cmd.
2867         * frame.h: Update the declaration of 'frame_debug'.
2868         * gdbtypes.c (overload_debug): Add 'unsigned'.
2869         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
2870         add_setshow_zinteger_cmd.
2871         * inferior.h: Update declaration of 'debug_infrun'.
2872         * infrun.c (debug_infrun): Add 'unsigned'.
2873         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
2874         add_setshow_zinteger_cmd.
2875         * jit.c (jit_debug): Add 'unsigned'.
2876         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
2877         add_setshow_zinteger_cmd.
2878         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
2879         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
2880         instead of add_setshow_zinteger_cmd.
2881         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
2882         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
2883         add_setshow_zinteger_cmd.
2884         * machoread.c (mach_o_debug_level): Add 'unsigned'.
2885         (_initialize_machoread): Call add_setshow_zuinteger_cmd
2886         instead of add_setshow_zinteger_cmd.
2887         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
2888         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
2889         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
2890         intead of add_setshow_zinteger_cmd.
2891         * mips-tdep.c (mips_debug): Add 'unsigned'.
2892         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
2893         instead of add_setshow_zinteger_cmd.
2894         * monitor.c (monitor_debug): Add 'unsigned'.
2895         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
2896         add_setshow_zinteger_cmd.
2897         * observer.c (observer_debug): Add 'unsigned'.
2898         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
2899         add_setshow_zinteger_cmd.
2900         * parse.c (expressiondebug): Add 'unsigned'.
2901         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
2902         add_setshow_zinteger_cmd.
2903         * record.c (record_debug): Add 'unsigned'.
2904         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
2905         add_setshow_zinteger_cmd.
2906         * record.h: Update the declaration of 'record_debug'.
2907         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
2908         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
2909         add_setshow_zinteger_cmd.
2910         * serial.c (global_serial_debug_p): Add 'unsigned'.
2911         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
2912         add_setshow_zinteger_cmd.
2913         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
2914         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
2915         add_setshow_zinteger_cmd.
2916         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
2917         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
2918         add_setshow_zinteger_cmd.
2919         * target.c (targetdebug): Add 'unsigned'.
2920         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
2921         add_setshow_zinteger_cmd.
2922         * valops.c (overload_debug): Add 'unsigned'.
2923         * varobj.c (varobjdebug): Add 'unsigned'.
2924         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
2925         add_setshow_zinteger_cmd.
2926         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
2927         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
2928         instead of add_setshow_zinteger_cmd.
2929
2930         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
2931         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
2932         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
2933         instead of add_setshow_zinteger_cmd.
2934         * gdbarch.c, gdbarch.h: Re-generated.
2935
2936 2012-08-02  Yao Qi  <yao@codesourcery.com>
2937
2938         * nto-tdep.c: Don't include cli/cli-decode.h and
2939         cli/cli-cmds.h.
2940         (_initialize_nto_tdep): Remove.
2941         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
2942         Remove field.
2943         Remove macro nto_internal_debugging.
2944
2945 2012-08-01  Richard Henderson  <rth@redhat.com>
2946
2947         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
2948         (mep-*-*) [gdb_target_obs]: Likewise.
2949
2950 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
2951
2952         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
2953         linux_get_siginfo_type.
2954
2955 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
2956
2957         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
2958         AT_ENTRY_POINT.
2959         (call_function_by_hand) <ON_STACK>: Call write_memory with
2960         gdbarch_breakpoint_from_pc, if possible.
2961         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
2962         here.
2963
2964 2012-07-31  Yao Qi  <yao@codesourcery.com>
2965
2966         * tracepoint.c: Add 'static' for some variables.
2967
2968 2012-07-31  Yao Qi  <yao@codesourcery.com>
2969
2970         * go32-nat.c: Declare _initialize_go32_nat.
2971         * ser-go32.c: Declare _initialize_ser_dos.
2972         * top.c (do_chdir_cleanup): Add 'static'.
2973
2974 2012-07-30  Keith Seitz  <keiths@redhat.com>
2975
2976         * linespec.c (linespec_lex_number): A number followed
2977         by quotes is a valid number, too.
2978
2979 2012-07-30  Tom Tromey  <tromey@redhat.com>
2980
2981         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
2982
2983 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
2984
2985         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
2986         attempt to 4-byte-align HW breakpoint addresses for Thumb.
2987
2988 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
2989
2990         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
2991         invalid or reevaluated to prevent prevent references to possibly
2992         delete'd type objects being left in the varobj.
2993
2994 2012-07-27  Tom Tromey  <tromey@redhat.com>
2995             Jan Kratochvil  <jan.kratochvil@redhat.com>
2996
2997         * copying.awk: Print buffer-read-only and vi ro markers.
2998         * copying.c: Rebuild.
2999         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3000         * gdbarch.c, gdbarch.h: Rebuild.
3001         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3002         buffer-read-only and vi ro markers.
3003         * features/arm-with-iwmmxt.c: Rebuild.
3004         * features/arm-with-m-fpa-layout.c: Rebuild.
3005         * features/arm-with-m-vfp-d16.c: Rebuild.
3006         * features/arm-with-m.c: Rebuild.
3007         * features/arm-with-neon.c: Rebuild.
3008         * features/arm-with-vfpv2.c: Rebuild.
3009         * features/arm-with-vfpv3.c: Rebuild.
3010         * features/i386/amd64-avx-linux.c: Rebuild.
3011         * features/i386/amd64-avx.c: Rebuild.
3012         * features/i386/amd64-linux.c: Rebuild.
3013         * features/i386/amd64.c: Rebuild.
3014         * features/i386/i386-avx-linux.c: Rebuild.
3015         * features/i386/i386-avx.c: Rebuild.
3016         * features/i386/i386-linux.c: Rebuild.
3017         * features/i386/i386-mmx-linux.c: Rebuild.
3018         * features/i386/i386-mmx.c: Rebuild.
3019         * features/i386/i386.c: Rebuild.
3020         * features/i386/x32-avx-linux.c: Rebuild.
3021         * features/i386/x32-avx.c: Rebuild.
3022         * features/i386/x32-linux.c: Rebuild.
3023         * features/i386/x32.c: Rebuild.
3024         * features/mips-dsp-linux.c: Rebuild.
3025         * features/mips-linux.c: Rebuild.
3026         * features/mips64-dsp-linux.c: Rebuild.
3027         * features/mips64-linux.c: Rebuild.
3028         * features/rs6000/powerpc-32.c: Rebuild.
3029         * features/rs6000/powerpc-32l.c: Rebuild.
3030         * features/rs6000/powerpc-403.c: Rebuild.
3031         * features/rs6000/powerpc-403gc.c: Rebuild.
3032         * features/rs6000/powerpc-405.c: Rebuild.
3033         * features/rs6000/powerpc-505.c: Rebuild.
3034         * features/rs6000/powerpc-601.c: Rebuild.
3035         * features/rs6000/powerpc-602.c: Rebuild.
3036         * features/rs6000/powerpc-603.c: Rebuild.
3037         * features/rs6000/powerpc-604.c: Rebuild.
3038         * features/rs6000/powerpc-64.c: Rebuild.
3039         * features/rs6000/powerpc-64l.c: Rebuild.
3040         * features/rs6000/powerpc-7400.c: Rebuild.
3041         * features/rs6000/powerpc-750.c: Rebuild.
3042         * features/rs6000/powerpc-860.c: Rebuild.
3043         * features/rs6000/powerpc-altivec32.c: Rebuild.
3044         * features/rs6000/powerpc-altivec32l.c: Rebuild.
3045         * features/rs6000/powerpc-altivec64.c: Rebuild.
3046         * features/rs6000/powerpc-altivec64l.c: Rebuild.
3047         * features/rs6000/powerpc-cell32l.c: Rebuild.
3048         * features/rs6000/powerpc-cell64l.c: Rebuild.
3049         * features/rs6000/powerpc-e500.c: Rebuild.
3050         * features/rs6000/powerpc-e500l.c: Rebuild.
3051         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3052         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3053         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3054         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3055         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3056         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3057         * features/rs6000/powerpc-vsx32.c: Rebuild.
3058         * features/rs6000/powerpc-vsx32l.c: Rebuild.
3059         * features/rs6000/powerpc-vsx64.c: Rebuild.
3060         * features/rs6000/powerpc-vsx64l.c: Rebuild.
3061         * features/rs6000/rs6000.c: Rebuild.
3062         * features/s390-linux32.c: Rebuild.
3063         * features/s390-linux32v1.c: Rebuild.
3064         * features/s390-linux32v2.c: Rebuild.
3065         * features/s390-linux64.c: Rebuild.
3066         * features/s390-linux64v1.c: Rebuild.
3067         * features/s390-linux64v2.c: Rebuild.
3068         * features/s390x-linux64.c: Rebuild.
3069         * features/s390x-linux64v1.c: Rebuild.
3070         * features/s390x-linux64v2.c: Rebuild.
3071         * features/tic6x-c62x-linux.c: Rebuild.
3072         * features/tic6x-c62x.c: Rebuild.
3073         * features/tic6x-c64x-linux.c: Rebuild.
3074         * features/tic6x-c64x.c: Rebuild.
3075         * features/tic6x-c64xp-linux.c: Rebuild.
3076         * features/tic6x-c64xp.c: Rebuild.
3077
3078 2012-07-27  Tom Tromey  <tromey@redhat.com>
3079
3080         * c-exp.y (classify_name): Avoid assignment in condition.
3081
3082 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
3083
3084         * amd64-windows-tdep.c: Include "frame.h".
3085         (amd64_windows_skip_trampoline_code): New function.
3086         (amd64_windows_init_abi): Add trampoline registration.
3087
3088 2012-07-27  Yao Qi  <yao@codesourcery.com>
3089
3090         * tracepoint.c (cur_traceframe_number): Remove.
3091         (set_tfile_traceframe): Remove.
3092         (tfile_trace_find, tfile_fetch_registers): Update callers.
3093         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3094         (tfile_open, tfile_trace_find): Likewise.
3095
3096 2012-07-27  Yao Qi  <yao@codesourcery.com>
3097
3098         * thread.c (switch_to_thread): Don't call registers_changed.
3099
3100 2012-07-26  Tom Tromey  <tromey@redhat.com>
3101
3102         * Makefile.in (SFILES): Remove objc-exp.y.
3103         (YYFILES): Remove objc-exp.c.
3104         (YYOBJ): Remove objc-exp.o.
3105         (local-maintainer-clean): Don't mention objc-exp.c.
3106         * c-exp.y: Include objc-lang.h.
3107         (%union) <class>: New field.
3108         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3109         (exp): Clone subscript production for OBJC_LBRAC.  Add various
3110         Objective C productions.
3111         (msglist, msgarglist, msgarg): New productions.
3112         (array_mod, func_mod, operator): Clone productions for
3113         OBJC_LBRAC.
3114         (parse_string_or_char): Handle '@' strings.
3115         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
3116         (classify_name): Check la_name_of_this.  Recognize ObjC class
3117         names.
3118         * objc-exp.y: Remove.
3119         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3120         * objc-lang.h (objc_parse, objc_error): Don't declare.
3121
3122 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
3123
3124         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3125
3126 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3127
3128         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3129         and decrement.
3130
3131 2012-07-26  Tom Tromey  <tromey@redhat.com>
3132
3133         * copying.c: Rebuild.
3134         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
3135         'no_class'.
3136
3137 2012-07-26  Tom Tromey  <tromey@redhat.com>
3138
3139         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3140         immediate_quit.
3141         (print_objfile_statistics): Likewise.
3142         (maintenance_print_symbols): Likewise.
3143         (maintenance_print_msymbols): Likewise.
3144         (maintenance_print_objfiles): Likewise.
3145         * psymtab.c (print_partial_symbols): Call QUIT.
3146         (maintenance_print_psymbols): Likewise.  Don't modify
3147         immediate_quit.
3148         * copying.c (show_copying_command): Don't modify immediate_quit.
3149         (show_warranty_command): Likewise.
3150         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3151
3152 2012-07-26  Keith Seitz  <keiths@redhat.com>
3153
3154         * linespec.c (linespec_lexer_lex_number): The input
3155         is also a valid number if the next character is a comma
3156         or colon.
3157
3158 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
3159
3160         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3161         configure options.
3162
3163 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3164
3165         * machoread.c: Include gdb_bfd.h.
3166
3167 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3168
3169         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3170         offset.
3171
3172 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
3173
3174         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3175         SIZE to size_t.
3176         (dwarf2_evaluate_loc_desc): Likewise.
3177         (dwarf2_loc_desc_needs_frame): Likewise.
3178         (locexpr_describe_location_1): Likewise.
3179         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3180         size_t.
3181         (struct dwarf2_loclist_baton): Likewise.
3182         * dwarf2read.c (struct dwarf_block): Likewise.
3183         (dump_die_shallow): Use pulongest to print dwarf_block.size.
3184         (decode_locdesc): Expand SIZE and I to size_t.
3185
3186 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
3187
3188         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3189
3190 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3191
3192         * doublest.c (convert_doublest_to_floatformat): If the exponent
3193         is too small, treat the value as zero.  If the exponent is too
3194         large, treat the value as infinity.
3195
3196 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3197
3198         * configure.ac: Add --enable-lmcheck configure option.
3199         * configure: Regenerate.
3200
3201 2012-07-25  Tom Tromey  <tromey@redhat.com>
3202
3203         * NEWS: Mention maint info bfds.
3204         * gdb_bfd.c (all_bfds): New global.
3205         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3206         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3207         New functions.
3208
3209 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
3210
3211         * configure.tgt: Add v850*-*-rtems*.
3212
3213 2012-07-25  Tom Tromey  <tromey@redhat.com>
3214
3215         * macrotab.c (macro_bcache_str): Remove cast.
3216
3217 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
3218
3219         * linespec.c (linespec_lexer_lex_number): Update comments,
3220         change the return and add check to make sure the input is
3221         the decimal numbers.
3222         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3223         false, call linespec_lexer_lex_string.
3224
3225 2012-07-24  Tom Tromey  <tromey@redhat.com>
3226
3227         * symfile.c (symbol_file_add): Don't open BFD twice.
3228
3229 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
3230
3231         * breakpoint.c (create_breakpoint): Store condition for pending
3232         breakpoints.
3233
3234 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
3235
3236         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3237         (m68k_return_value): Handle complex types like structures.
3238         (m68k_svr4_return_value): Likewise.
3239
3240 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
3241
3242         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3243         parameters to bfd_get_section_name.
3244
3245 2012-07-24  Yao Qi  <yao@codesourcery.com>
3246
3247         * cli/cli-setshow.c: Handle case 'var_uinteger'
3248         and 'var_zuninteger' together.  Handle case 'var_integer' and
3249         'var_zinteger' together.
3250
3251 2012-07-23  Keith Seitz  <keiths@redhat.com>
3252
3253         * linespec.c (convert_linespec_to_sal): Don't add
3254         any symbols to the result vector if symbol_to_sal
3255         returns zero.
3256
3257 2012-07-23  Keith Seitz  <keiths@redhat.com>
3258
3259         * linespec.c (decode_objc): Record the function name
3260         in the linespec.
3261
3262 2012-07-23  Tom Tromey  <tromey@redhat.com>
3263
3264         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
3265         counting.
3266         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3267         (map_vmap): Acquire a reference to the BFD.
3268
3269 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
3270
3271         * p-valprint.c (pascal_object_print_value): Replace potentially
3272         unsafe alloca with xmalloc/xfree.
3273         * valops.c (search_struct_method): Likewise.
3274
3275 2012-07-23  Tom Tromey  <tromey@redhat.com>
3276
3277         * solib-svr4.c (enable_break): Update.
3278         * bfd-target.h (target_bfd_reopen): Update documentation.
3279
3280 2012-07-23  Tom Tromey  <tromey@redhat.com>
3281
3282         * symfile.c (separate_debug_file_exists): Update.
3283         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3284         (reread_symbols): Update.
3285         * elfread.c (build_id_verify): Update.
3286         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3287         bfd_open_maybe_remote.
3288
3289 2012-07-23  Tom Tromey  <tromey@redhat.com>
3290
3291         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3292
3293 2012-07-23  Tom Tromey  <tromey@redhat.com>
3294
3295         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3296         and 'abfd'.
3297         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3298         and 'abfd'.
3299         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3300         * machoread.c (macho_add_oso_symfile): Make a cleanup for
3301         'abfd'.
3302         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3303         * objfiles.c (allocate_objfile): Acquire a new reference.
3304         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3305         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3306         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3307         a cleanup for 'nbfd'.
3308         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3309         for 'nbfd'.
3310         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3311         make a cleanup for 'abfd'.
3312         (symbol_file_add): Make a BFD cleanup.
3313
3314 2012-07-23  Tom Tromey  <tromey@redhat.com>
3315
3316         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3317         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3318         * corelow.c (core_open): Use gdb_bfd_fopen.
3319         * dsrec.c (load_srec): Use gdb_bfd_openr.
3320         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3321         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3322         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3323         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3324         (gdb_bfd_fdopenr): New functions.
3325         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3326         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3327         (gdb_bfd_fdopenr): Declare.
3328         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3329         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3330         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3331         gdb_bfd_openr_next_archived_file.
3332         (macho_check_dsym): Use gdb_bfd_openr.
3333         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3334         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3335         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3336         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3337         gdb_bfd_openr.
3338         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3339         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3340         gdb_bfd_openr_next_archived_file.
3341         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3342         Use gdb_bfd_openr.
3343         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3344         gdb_bfd_openr.
3345         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3346         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3347         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3348         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3349         (symfile_bfd_open): Use gdb_bfd_fopen.
3350         (generic_load): Use gdb_bfd_openr.
3351         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3352
3353 2012-07-23  Tom Tromey  <tromey@redhat.com>
3354
3355         * bfd-target.c (target_bfd_reopen): Update.
3356         * cli/cli-dump.c (bfd_openr_with_cleanup)
3357         (bfd_openw_with_cleanup): Update.
3358         * corelow.c (core_open): Update.
3359         * dsrec.c (load_srec): Update.
3360         * exec.c (exec_file_attach): Update.
3361         * gcore.c (create_gcore_bfd): Update.
3362         * gdb_bfd.c (gdb_bfd_ref): Return void.
3363         (gdb_bfd_open): Update.
3364         * gdb_bfd.h (gdb_bfd_ref): Return void.
3365         Update comments.
3366         * jit.c (jit_bfd_try_read_symtab): Update.
3367         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3368         * machoread.c (macho_symfile_read_all_oso): Update.
3369         (macho_check_dsym): Update.
3370         * procfs.c (insert_dbx_link_bpt_in_file): Update.
3371         * remote-m32r-sdi.c (m32r_load): Update.
3372         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3373         * rs6000-nat.c (add_vmap): Update.
3374         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3375         Update.
3376         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3377         * solib-spu.c (spu_bfd_open): Update.
3378         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3379         * spu-linux-nat.c (spu_bfd_open): Update.
3380         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3381         (generic_load): Update.
3382         * windows-nat.c (windows_make_so): Update.
3383
3384 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
3385
3386         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3387
3388 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
3389
3390         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3391         SIGTRAMP_FRAME unwinding.
3392
3393 2012-07-20  Doug Evans  <dje@google.com>
3394
3395         * NEWS: Document new options "set/show use-deprecated-index-sections",
3396         and delete reference to --use-deprecated-index-sections.
3397         * symfile.h (use_deprecated_index_sections): Delete.
3398         * dwarf2read.c (use_deprecated_index_sections): Make static.
3399         (read_index_from_section): Update wording of how to load
3400         deprecated index sections.
3401         (_initialize_dwarf2_read): New options
3402         "set/show use-deprecated-index-sections".
3403         * main.c (captured_main): Delete --use-deprecated-index-sections.
3404
3405 2012-07-20  Pedro Alves  <palves@redhat.com>
3406
3407         PR threads/11692
3408         PR gdb/12203
3409
3410         * infrun.c (handle_inferior_event) <new thread>: Don't special
3411         case minus_one_ptid.
3412         <TARGET_WAITKIND_SPURIOUS>: Ditto.
3413         * linux-thread-db.c (thread_get_info_callback): Don't return early
3414         if the thread is zombie.
3415         (thread_from_lwp): Change return type to void.  Rewrite stale
3416         comment.
3417         (attach_thread): Don't return early if the thread is zombie,
3418         instead set its "dying" flag.
3419         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
3420         (find_new_threads_callback): Don't return early if the thread is
3421         zombie.
3422
3423 2012-07-20  Pedro Alves  <palves@redhat.com>
3424
3425         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
3426         * target.c (target_wait): Likewise.
3427         (str_comma_list_concat_elem, do_option, target_options_to_string):
3428         New functions.
3429         * target.h (target_options_to_string): Declare.
3430
3431 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
3432             Tom Tromey  <tromey@redhat.com>
3433
3434         * dwarf2read.c (dwarf_decode_macros)
3435         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
3436         DW_MACRO_GNU_transparent_include_alt>: New cases.
3437         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
3438         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
3439
3440 2012-07-20  Tom Tromey  <tromey@redhat.com>
3441
3442         * dwarf2read.c (try_open_dwo_file): Don't call
3443         gdb_bfd_stash_filename.
3444
3445 2012-07-20  Pedro Alves  <palves@redhat.com>
3446
3447         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3448         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
3449         (i386_process_record): Tweak description comments.
3450
3451 2012-07-20  Pedro Alves  <palves@redhat.com>
3452
3453         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3454         (i386_process_record): Use record_read_memory.
3455         * record.c (record_read_memory): New function.
3456         (record_arch_list_add_mem, record_exec_insn): Use
3457         record_read_memory.
3458         * record.h (record_read_memory): Declare.
3459
3460 2012-07-20  Yao Qi  <yao@codesourcery.com>
3461
3462         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
3463         NULL for xfree.
3464
3465 2012-07-19  Pedro Alves  <palves@redhat.com>
3466
3467         * record.c (record_resume): Ask the target beneath to report all
3468         signals.
3469
3470 2012-07-19  Doug Evans  <dje@google.com>
3471
3472         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
3473         there's no section at address zero.
3474         (dwarf2_record_block_ranges): Ditto.
3475
3476 2012-07-19  Yao Qi  <yao@codesourcery.com>
3477
3478         * command.h, remote.c: Fix a typo in comment.
3479
3480 2012-07-19  Tom Tromey  <tromey@redhat.com>
3481
3482         PR exp/13206:
3483         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
3484         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
3485         OP_DECLTYPE>: New cases.
3486         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
3487         (type_exp): Add new productions.
3488         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
3489         and decltype.
3490         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
3491         New case.
3492         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
3493         OP_DECLTYPE>: New case.
3494         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
3495         New case.
3496         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
3497         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
3498
3499 2012-07-19  Tom Tromey  <tromey@redhat.com>
3500
3501         * c-exp.y (enum token_flags): New.
3502         (struct token) <cxx_only>: Remove.
3503         <flags>: New field.
3504         (tokentab3, tokentab2, ident_tokens): Update.
3505         (lex_one_token): Update.  Handle FLAG_SHADOW.
3506
3507 2012-07-19  Tom Tromey  <tromey@redhat.com>
3508
3509         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
3510         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
3511         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
3512         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
3513         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
3514         type_exp production where appropriate.
3515         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
3516         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
3517         <UNOP_MEMVAL_TYPE>: New case.
3518         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
3519         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
3520         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
3521         <UNOP_MEMVAL_TYPE>: New case.
3522         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
3523         UNOP_REINTERPRET_CAST>: Update.
3524         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
3525         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
3526         UNOP_REINTERPRET_CAST>: Update.
3527         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
3528         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
3529         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
3530         constants.
3531
3532 2012-07-19  Yao Qi  <yao@codesourcery.com>
3533             Jan Kratochvil <jan.kratochvil@redhat.com>
3534
3535         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
3536         and case 'var_optional_filename' together.
3537         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
3538         instead of add_setshow_optional_filename_cmd for setshow command
3539         'args'.  Set completer for 'set args'.
3540
3541 2012-07-18  Doug Evans  <dje@google.com>
3542
3543         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
3544         * common/gdb_vecs.c: New file, contents from utils.c.
3545         * common/host-defs.h: New file, contents from defs.h.
3546         * utils.h: New file, contents from defs.h.
3547         * defs.h: Move all declarations of objects defined in utils.c
3548         to utils.h (except QUIT() and related).
3549         #include "utils.h", "host-defs.h".
3550         * probe.h (probe_p): Move here from gdb_vecs.h.
3551         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
3552         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
3553         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
3554         * Makefile.in (SFILES): Add common/gdb_vecs.c.
3555         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
3556         (COMMON_OBS): Add gdb_vecs.o.
3557         (gdb_vecs.o): New rule.
3558
3559 2012-07-18  Keith Seitz  <keiths@redhat.com>
3560
3561         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
3562         parameter.  If non-zero, use SYMNAME as the canonical name
3563         for the SaL.
3564         Update all callers.
3565         (convert_linespec_to_sals): Use add_sal_to_sals for
3566         expressions, too.
3567         (decode_line_full): No need to "fill in missing canonical names"
3568         anymore. Simply make cleanups for the allocated names.
3569
3570 2012-07-18  Keith Seitz  <keiths@redhat.com>
3571
3572         * linespec.c (struct linespec): Constify expression,
3573         source_filename, function_name, and label_name.
3574         (symbol_not_found_error): Make all parameters const.
3575         (linespec_parser_delete): No need to check for NULL
3576         when using xfree. Cast const char * to char * for xfree.
3577
3578 2012-07-18  Keith Seitz  <keiths@redhat.com>
3579
3580         * breakpoint.c (invalid_thread_id_error): New function.
3581         (find_condition_and_thread): Use invalid_thread_id_error.
3582         (watch_command_1): Likewise.
3583
3584 2012-07-18  Tom Tromey  <tromey@redhat.com>
3585
3586         * cc-with-index.sh, cc-with-dwz.sh: Remove.
3587         * contrib/cc-with-tweaks.sh: New file.
3588
3589 2012-07-18  Tom Tromey  <tromey@redhat.com>
3590
3591         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
3592         (locate_dwz_sections): Recognize .gdb_index.
3593         (create_cus_from_index_list): New function.
3594         (create_cus_from_index): Use it.  Handle .dwz data.
3595         (read_index_from_section): New function, extracted from
3596         dwarf2_read_index.
3597         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
3598         if needed.
3599
3600 2012-07-18  Tom Tromey  <tromey@redhat.com>
3601
3602         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
3603         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
3604         <is_dwz>: New field.
3605         (struct dwz_file): New.
3606         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
3607         (locate_dwz_sections, dwarf2_get_dwz_file)
3608         (get_abbrev_section_for_cu): New functions.
3609         (error_check_comp_unit_head, read_and_check_comp_unit_head)
3610         (read_and_check_type_unit_head): Add abbrev_section argument.
3611         (create_debug_types_hash_table): Update.
3612         (init_cutu_and_read_dies): Use proper abbrev section.
3613         (init_cutu_and_read_dies_no_follow): Likewise.
3614         (set_partial_user): Do nothing if PST==NULL.
3615         (read_comp_units_from_section): New function.
3616         (create_all_comp_units): Use it.
3617         (scan_partial_symbols, partial_die_parent_scope): Update.
3618         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
3619         (process_imported_unit_die, read_partial_die): Handle .dwz files.
3620         (find_partial_die): Add offset_in_dwz argument.  Update.
3621         (guess_partial_die_structure_name, fixup_partial_die): Update.
3622         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
3623         DW_FORM_GNU_strp_alt.
3624         (read_indirect_string_from_dwz): New function.
3625         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
3626         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
3627         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
3628         (follow_die_offset): Add offset_in_dwz argument.
3629         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
3630         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
3631         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
3632         Handle new macro forms.
3633         (dwarf_decode_macros): Update.
3634         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
3635         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
3636         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
3637         (create_debug_types_hash_table): Use correct abbrev section.
3638         (get_debug_line_section): New function.
3639         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
3640         (process_full_comp_unit): Pass 'required' argument to
3641         end_symtab_get_static_block.
3642         * buildsym.h (end_symtab_get_static_block): Update.
3643         * buildsym.c (end_symtab_get_static_block): Add 'required'
3644         argument.
3645         (end_symtab, end_expandable_symtab): Update.
3646
3647 2012-07-18  Tom Tromey  <tromey@redhat.com>
3648
3649         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
3650         (pagesize): Remove.
3651         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
3652         (zlib_decompress_section): Remove.
3653         (dwarf2_read_section): Use gdb_bfd_map_section.
3654         (munmap_section_buffer): Remove.
3655         (free_dwo_file, dwarf2_per_objfile_free): Don't use
3656         munmap_section_buffer.
3657         * gdb_bfd.c: Include zlib.h, sys/mman.h.
3658         (struct gdb_bfd_section_data): New.
3659         (free_one_bfd_section): New function.
3660         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
3661         (get_section_descriptor, zlib_decompress_section)
3662         (gdb_bfd_map_section): New functions.
3663         * gdb_bfd.h (gdb_bfd_map_section): Declare.
3664
3665 2012-07-18  Tom Tromey  <tromey@redhat.com>
3666
3667         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
3668
3669 2012-07-18  Tom Tromey  <tromey@redhat.com>
3670
3671         * gdb_bfd.c (struct gdb_bfd_data): New.
3672         (gdb_bfd_cache): New global.
3673         (struct gdb_bfd_cache_search): New.
3674         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
3675         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
3676         * gdb_bfd.h (gdb_bfd_open): Declare.
3677
3678 2012-07-18  Tom Tromey  <tromey@redhat.com>
3679
3680         * utils.c (make_cleanup_bfd_unref): Rename from
3681         make_cleanup_bfd_close.
3682         * defs.h (make_cleanup_bfd_unref): Rename from
3683         make_cleanup_bfd_close.
3684         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
3685         (bfd_openw_with_cleanup): Update.
3686         * corelow.c (core_open): Update.
3687         * dsrec.c (load_srec): Update.
3688         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3689         * remote-m32r-sdi.c (m32r_load): Update.
3690         * remote-mips.c (mips_load_srec): Update.
3691         (pmon_load_fast): Update.
3692         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3693         Update.
3694         (darwin_bfd_open): Update.
3695         * solib.c (solib_bfd_fopen): Update.
3696         * symfile-mem.c (symbol_file_add_from_memory): Update.
3697         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
3698         (symfile_bfd_open): Update.
3699         (generic_load): Update.
3700
3701 2012-07-18  Tom Tromey  <tromey@redhat.com>
3702
3703         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
3704         (pmon_load_fast): Likewise.
3705         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
3706         (m32r_upload_command): Likewise.
3707         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
3708         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3709         Use make_cleanup_bfd_close.
3710
3711 2012-07-18  Tom Tromey  <tromey@redhat.com>
3712
3713         * symfile.c (symfile_bfd_open): Don't copy name.  Call
3714         gdb_bfd_stash_filename.
3715         (load_command): Open the new BFD before freeing the old.
3716         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
3717         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
3718         Call gdb_bfd_stash_filename.
3719         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
3720         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
3721         gdb_bfd_stash_filename.
3722         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3723         Free found_pathname.
3724         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
3725         gdb_bfd_stash_filename.
3726         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
3727         * machoread.c (macho_add_oso_symfile): Call
3728         gdb_bfd_stash_filename.
3729         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
3730         gdb_bfd_stash_filename.
3731         (macho_check_dsym): Don't copy filename.  Call
3732         gdb_bfd_stash_filename.
3733         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
3734         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
3735         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
3736         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
3737         * exec.c (exec_close): Don't free the BFD's filename.
3738         (exec_file_attach): Don't copy the filename.  Call
3739         gdb_bfd_stash_filename.
3740         * corelow.c (core_close): Don't free the BFD's filename.
3741         (core_open): Call gdb_bfd_stash_filename.
3742         * corefile.c (reopen_exec_file): Remove #if 0 code.
3743         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
3744         pathname.
3745         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
3746
3747 2012-07-18  Tom Tromey  <tromey@redhat.com>
3748
3749         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
3750         gdb_bfd_unref.
3751         (free_dwo_file): Use gdb_bfd_unref.
3752         * cli/cli-dump.c: Include gdb_bfd.h.
3753         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
3754         (bfd_openr_with_cleanup): Likewise.
3755         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
3756         gdb_bfd_unref.
3757         * utils.c: Include gdb_bfd.h.
3758         (do_bfd_close_cleanup): Use gdb_bfd_unref.
3759         * symfile.c: Include gdb_bfd.h.
3760         (separate_debug_file_exists): Use gdb_bfd_unref.
3761         (bfd_open_maybe_remote): Use gdb_bfd_ref.
3762         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
3763         (generic_load): Use gdb_bfd_ref.
3764         (reread_symbols): Use gdb_bfd_unref.
3765         * symfile-mem.c: Include gdb_bfd.h.
3766         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
3767         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
3768         * solib.c: Include gdb_bfd.h.
3769         (solib_bfd_fopen): Use gdb_bfd_ref.
3770         (solib_bfd_open): Use gdb_bfd_unref.
3771         (free_so_symbols): Use gdb_bfd_unref.
3772         (reload_shared_libraries_1): Use gdb_bfd_unref.
3773         * solib-spu.c: Include gdb_bfd.h.
3774         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
3775         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
3776         gdb_bfd_unref.
3777         * solib-frv.c: Include gdb_bfd.h.
3778         (enable_break2): Use gdb_bfd_unref.
3779         * solib-dsbt.c: Include gdb_bfd.h.
3780         (enable_break2): Use gdb_bfd_unref.
3781         * solib-darwin.c: Include gdb_bfd.h.
3782         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
3783         gdb_bfd_unref.
3784         (darwin_bfd_open): Use gdb_bfd_unref.
3785         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
3786         * remote-mips.c: Include gdb_bfd.h.
3787         (mips_load_srec): Use gdb_bfd_ref.
3788         (pmon_load_fast): Use gdb_bfd_ref.
3789         * remote-m32r-sdi.c: Include gdb_bfd.h.
3790         (m32r_load): Use gdb_bfd_ref.
3791         * record.c: Include gdb_bfd.h.
3792         (record_save_cleanups): Use gdb_bfd_unref.
3793         (cmd_record_save): Use gdb_bfd_unref.
3794         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
3795         gdb_bfd_unref.
3796         * objfiles.h (gdb_bfd_close_or_warn): Remove.
3797         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
3798         * objfiles.c: Include gdb_bfd.h.
3799         (free_objfile): Use gdb_bfd_unref.
3800         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
3801         gdb_bfd.c.
3802         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
3803         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
3804         (macho_check_dsym): Likewise.
3805         * m32r-rom.c: Include gdb_bfd.h.
3806         (m32r_load): Use gdb_bfd_ref.
3807         (m32r_upload_command): Use gdb_bfd_ref.
3808         * jit.c: Include gdb_bfd.h.
3809         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
3810         * gdb_bfd.h: New file.
3811         * gdb_bfd.c: New file.
3812         * gcore.c: Include gdb_bfd.h.
3813         (create_gcore_bfd): Use gdb_bfd_ref.
3814         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
3815         (gcore_command): Use gdb_bfd_unref.
3816         * exec.c: Include gdb_bfd.h.
3817         (exec_close): Use gdb_bfd_unref.
3818         (exec_close_1): Use gdb_bfd_unref.
3819         (exec_file_attach): Use gdb_bfd_ref.
3820         * elfread.c: Include gdb_bfd.h.
3821         (build_id_verify): Use gdb_bfd_unref.
3822         * dsrec.c: Include gdb_bfd.h.
3823         (load_srec): Use gdb_bfd_ref.
3824         * corelow.c: Include gdb_bfd.h.
3825         (core_close): Use gdb_bfd_unref.
3826         (core_open): Use gdb_bfd_ref.
3827         * bfd-target.c: Include gdb_bfd.h.
3828         (target_bfd_xclose): Use gdb_bfd_unref.
3829         (target_bfd_reopen): Use gdb_bfd_ref.
3830         * Makefile.in (SFILES): Add gdb_bfd.c.
3831         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
3832         (COMMON_OBS): Add gdb_bfd.o.
3833
3834 2012-07-18  Keith Seitz  <keiths@redhat.com>
3835
3836         * breakpoint.c (find_condition_and_thread): Initialize
3837         TASK and REST.
3838         (create_breakpiont): find_condition_and_thread will now
3839         initialize COND_STRING, THREAD, and REST (and TASK).
3840         (addr_string_to_sals): Likewise.
3841
3842 2012-07-18  Pedro Alves  <palves@redhat.com>
3843
3844         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
3845         Pull the single step breakpoints out of the target.
3846
3847 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
3848
3849         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
3850         * stap-probe.c (compile_probe_arg): Likewise.
3851
3852 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
3853
3854         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
3855         (elf_compile_to_ax): Likewise.
3856         * infrun.c (insert_exception_resume_from_probe): Likewise.
3857         (check_exception_resume): Remove `objfile' variable.
3858         * probe.c (find_probe_by_pc): Remove `objfile' argument.
3859         (struct probe_and_objfile, probe_and_objfile_s): Delete.
3860         (collect_probes): Adjust return value to `VEC (probe_p) *'.
3861         (compare_entries): Rename to...
3862         (compare_probes): ...this.  Adjust function to work with
3863         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
3864         respectively.
3865         (gen_ui_out_table_header_info): Adjust `probes' argument to be
3866         `VEC (probe_p) *'.
3867         (print_ui_out_info): Adjust argument to be `struct probe *'.
3868         (info_probes_for_ops): Adjust internal computations to use
3869         `VEC (probe_p) *'.
3870         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
3871         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
3872         gen_info_probes_table_values>: Remove `objfile' argument.
3873         (struct probe) <objfile>: New field.
3874         (find_probe_by_pc): Remove `objfile' argument.
3875         * stap-probe.c (stap_parse_probe_arguments): Likewise.
3876         (stap_get_probe_argument_count): Likewise.
3877         (stap_get_arg): Likewise.
3878         (stap_evaluate_probe_argument): Likewise.
3879         (stap_compile_to_ax): Likewise.
3880         (compile_probe_arg): Refactor not to pass `objfile' anymore.
3881         (handle_stap_probe): Fill `objfile' field from `struct probe'.
3882         (stap_gen_info_probes_table_header): Remove `objfile' argument.
3883         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
3884         sym_compile_to_ax>: Likewise.
3885
3886 2012-07-18  Terry Guo  <terry.guo@arm.com>
3887
3888         PR 14329
3889         * defs.h (GDB_MI_MSG_WIDTH): New.
3890         * ser_base (ser_base_read_error_fd): New function.
3891         (do_ser_base_readchar): Poll error file descriptor as well as
3892         standard output.
3893         (generic_readchar): Refactor error handling.
3894
3895 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
3896
3897         * NEWS: Create a new section for the next release branch.
3898         Rename the section of the current branch, now that it has
3899         been cut.
3900
3901 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
3902
3903         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
3904         * version.in: Bump version to 7.5.50.20120718-cvs.
3905
3906 2012-07-17  Keith Seitz  <keiths@redhat.com>
3907
3908         * linespec.c (linespec_parse_line_offset): Make parameter
3909         const.
3910
3911 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3912
3913         PR 11914
3914         * f-valprint.c (info_common_command): New variable frame_id.
3915         Reinitialize FI form FRAME_ID after each print_variable_and_value.
3916         * printcmd.c (print_variable_and_value): Extend function comment.
3917         Add comment for invalidated FRAME.
3918         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
3919         FI form FRAME_ID after each print_frame_local_vars.
3920         (struct print_variable_and_value_data): Change frame to frame_id.
3921         (do_print_variable_and_value): New variable frame, initialize it from
3922         p->frame_id.  Add comment for invalidated FRAME.
3923         (print_frame_local_vars, print_frame_arg_vars): New function comment.
3924         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
3925         for invalidated FRAME.
3926
3927 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
3928             Pedro Alves  <palves@redhat.com>
3929
3930         * linux-nat.c (linux_nat_detach): Don't unregister from the event
3931         loop.
3932
3933 2012-07-16  Tom Tromey  <tromey@redhat.com>
3934
3935         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
3936
3937 2012-07-15  Doug Evans  <dje@google.com>
3938
3939         * dwarf2read.c (stmt_list_hash): New struct.
3940         (type_unit_group): Embed "per_cu" member, remove pointer.
3941         New union member "t", move member "tus" into it, all uses updated.
3942         New member "hash", replaces member "line_offset, all uses updated.
3943         (quick_file_names): Replace member "offset" with "hash", all uses
3944         updated.
3945         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
3946         (hash_file_name_entry, eq_file_name_entry): Call them.
3947         (hash_type_unit_group, eq_type_unit_group): Ditto.
3948         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
3949         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
3950         (dw2_get_file_names): Update.
3951         (create_type_unit_group): Replace "per_cu" arg with "cu".
3952         All callers updated.  Fix "quick" (.gdb_index) handling.
3953         (get_type_unit_group): Replace "per_cu" arg with "cu".
3954         All callers updated.
3955         (build_type_unit_groups): Don't reset tu_stats.
3956
3957         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
3958         "tab_cur_size".  Change member "tab" to be a htab_t.
3959         (create_filename_seen_cache): Update.
3960         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
3961         (filename_seen): Update.
3962
3963 2012-07-13  Doug Evans  <dje@google.com>
3964
3965         * symtab.c (filename_seen): Update comment.
3966
3967 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3968             Doug Evans  <dje@google.com>
3969
3970         * buildsym.c (end_symtab_1): Split it to ...
3971         (end_symtab_get_static_block): ... this ...
3972         (end_symtab_from_static_block): ... and this function.
3973         (end_symtab, end_expandable_symtab): Call them.
3974         * buildsym.h (end_symtab_get_static_block)
3975         (end_symtab_from_static_block): New declarations.
3976         * dwarf2read.c (process_full_comp_unit): New variable static_block.
3977         Set its valid CU ranges.
3978
3979 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3980
3981         * dwarf2loc.c (disassemble_dwarf_expression): Handle
3982         DW_OP_GNU_parameter_ref.
3983
3984 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3985
3986         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
3987         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
3988
3989 2012-07-13  Doug Evans  <dje@google.com>
3990
3991         * symtab.c (output_source_filename): Delete unnecessary forward decl.
3992         (filename_seen_cache): New struct.
3993         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
3994         (create_filename_seen_cache): New function.
3995         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
3996         (filename_seen): Delete arg "first".  New arg "cache".  All callers
3997         updated.
3998         (output_source_filename_data): New struct.
3999         (output_source_filename): Delete arg "first".  New arg "data".
4000         All callers updated.
4001         (sources_info): Delete local "first".  New locals "data", "cleanups".
4002         Rewrite to use filename_seen_cache.
4003         (add_partial_filename_data): Delete member "first".  New member
4004         "filename_seen_cache".  All uses updated.
4005         (make_source_files_completion_list): Rewrite to use
4006         filename_seen_cache.
4007
4008 2012-07-12  Doug Evans  <dje@google.com>
4009
4010         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4011
4012 2012-07-10  Doug Evans  <dje@google.com>
4013
4014         PR gdb/13498
4015         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4016         all_type_unit_groups, type_unit_groups, tu_stats.
4017         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4018         All uses updated.  Add type_unit_group to union "s".
4019         (type_unit_group): New struct.
4020         (IS_TYPE_UNIT_GROUP): New macro.
4021         (abbrev_table): Delete unused member "section".
4022         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4023         (dw2_get_cu): Assert not used with type_unit_group.
4024         (dw2_get_primary_cu): New function.
4025         (dw2_build_type_unit_groups_reader): New function.
4026         (dw2_build_type_unit_groups): New function.
4027         (dw2_get_file_names): Assert not called on type units.
4028         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4029         Redo loop to iterate over type unit groups instead of type units.
4030         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4031         (read_abbrev_offset): New function.
4032         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
4033         updated.
4034         (create_partial_symtab): New function.
4035         (process_psymtab_comp_unit_reader): Assert not used with type units.
4036         Call create_partial_symtab.
4037         (process_psymtab_type_unit): Delete.
4038         (hash_type_unit_group, eq_type_unit_group): New functions.
4039         (allocate_type_unit_groups_table): New function.
4040         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4041         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4042         (create_type_unit_group, get_type_unit_group): New functions.
4043         (tu_abbrev_offset): New struct.
4044         (sort_tu_by_abbrev_offset): New function.
4045         (add_type_unit_group_to_table): New function.
4046         (build_type_unit_groups): New function.
4047         (build_type_psymtabs_reader): New function.
4048         (build_type_psymtab_dependencies): New function.
4049         (build_type_psymtabs): Rewrite.
4050         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4051         is seen in a type unit.
4052         (process_queue): Move symtab expansion debugging printfs here.
4053         Call process_full_type_unit for type units.
4054         (compute_symtab_includes): Assert not called for type units.
4055         (process_cu_includes): Don't call compute_symtab_includes for
4056         type units.
4057         (process_full_type_unit): New function.
4058         (process_imported_unit_die): Flag an error if called for type units.
4059         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
4060         updated.  Assert not called for type units.
4061         (read_file_scope): Call dwarf2_start_symtab.
4062         (setup_type_unit_groups): New function.
4063         (read_type_unit_scope): Rewrite.
4064         (abbrev_table_read_table): Initialize abbrev_table->offset.
4065         (abbrev_table_free_cleanup): New function.
4066         (dwarf2_start_symtab): New function.
4067         (load_full_type_unit): Assert not called for type unit groups.
4068         * buildsym.c (finish_block_internal): New arg "expandable".
4069         All callers updated.
4070         (start_symtab): Move most contents to ...
4071         (restart_symtab): ... here.  New function.
4072         (reset_symtab_globals): New function.
4073         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
4074         Call reset_symtab_globals.
4075         (end_symtab, end_expandable_symtab): New functions.
4076         (set_missing_symtab, augment_type_symtab): New functions.
4077         * buildsym.h (end_expandable_symtab): Declare.
4078         (augment_type_symtab, restart_symtab): Declare.
4079         * psympriv.h (struct partial_symtab): New member "anonymous".
4080         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4081         anonymous psymtabs.
4082         (read_psymtabs_with_filename): Ditto.
4083         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4084         (expand_symtabs_matching_via_partial): Ditto.
4085         (dump_psymtab): Update.
4086         * dictionary.c (dict_add_pending): New function.
4087         * dictionary.h (dict_add_pending): Declare.
4088
4089 2012-07-09  Doug Evans  <dje@google.com>
4090
4091         * buildsym.c (start_subfile): Remove unnecessary check for
4092         name == NULL.
4093
4094         * psymtab.c (allocate_psymtab): Use host_address_to_string.
4095
4096         * dwarf2read.c (load_full_type_unit): Simplify.
4097
4098         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4099         to struct signatured_type **.  All uses updated.
4100
4101         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4102         All callers updated.
4103
4104 2012-07-09  Tom Tromey  <tromey@redhat.com>
4105
4106         * c-exp.y (check_parameter_typelist): New function.
4107         (parameter_typelist): Call it.
4108         * eval.c (make_params): Handle '(void)' case.
4109         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4110         '(void)' case.
4111
4112 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4113
4114         * common/linux-ptrace.c: Include gdb_assert.h.
4115         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4116         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4117         stdint.h.
4118         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4119         functions.
4120         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4121         * linux-nat.c (linux_child_post_attach)
4122         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4123
4124 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4125
4126         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4127         nptl <2.7 bug workaround for core files.
4128
4129 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4130
4131         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4132         clearing.
4133         (save_siginfo): Remove.
4134         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4135         call.
4136         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4137         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4138         * linux-nat.h (struct lwp_info): Remove field siginfo.
4139
4140 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4141
4142         Code cleanup for the next patch.
4143         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4144         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4145         call for it.
4146         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4147         (ia64_linux_stopped_data_address):
4148         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4149         the return value.
4150         * linux-nat.h (linux_nat_get_siginfo): Likewise.
4151         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4152         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4153         call for it.
4154
4155 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4156
4157         PR 14321
4158         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4159         Increase buffer sizes to 2x we need, not just 2x of the previous size.
4160
4161 2012-07-06  Tom Tromey  <tromey@redhat.com>
4162
4163         * c-exp.y (DOTDOTDOT): New token.
4164         (func_mod, exp): Use parameter_typelist.
4165         (parameter_typelist): New production.
4166         (tokentab3): Add "..." token.
4167         * eval.c (make_params): Handle varargs.
4168         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4169         varargs.
4170
4171 2012-07-06  Tom Tromey  <tromey@redhat.com>
4172
4173         PR exp/9608:
4174         * c-exp.y (%union) <tvec>: Change type.
4175         (func_mod): Now uses <tvec> type.
4176         (exp): Update for tvec change.
4177         (direct_abs_decl): Push the typelist.
4178         (func_mod): Return a typelist.
4179         (nonempty_typelist): Update for tvec change.
4180         * gdbtypes.c (lookup_function_type_with_arguments): New function.
4181         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4182         * parse.c (pop_type_list): New function.
4183         (push_typelist): New function.
4184         (follow_types): Handle tp_function_with_arguments.
4185         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
4186         (enum type_pieces) <tp_function_with_arguments>: New constant.
4187         (union type_stack_elt) <typelist_val>: New field.
4188         (push_typelist): Declare.
4189
4190 2012-07-06  Tom Tromey  <tromey@redhat.com>
4191
4192         * c-exp.y (%union) <type_stack>: New field.
4193         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
4194         (ptr_operator_ts): New production.
4195         (ptype): Update.
4196         * parse.c (type_stack_reserve): New function.
4197         (check_type_stack_depth): Use it.
4198         (pop_type_stack, append_type_stack, push_type_stack)
4199         (get_type_stack, type_stack_cleanup): New functions.
4200         (follow_types): Handle tp_type_stack.
4201         (_initialize_parse): Simplify initialization.
4202         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4203         constant.
4204         (union type_stack_elt) <stack_val>: New field.
4205         (get_type_stack, append_type_stack, push_type_stack)
4206         (type_stack_cleanup): Declare.
4207
4208 2012-07-06  Tom Tromey  <tromey@redhat.com>
4209
4210         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4211         Remove.
4212         (struct type_stack): New.
4213         * parse.c (type_stack, type_stack_size, type_stack_depth):
4214         Remove.
4215         (type_stack): New global.
4216         (parse_exp_in_context, check_type_stack_depth)
4217         (insert_into_type_stack, insert_type, push_type, push_type_int)
4218         (insert_type_address_space, pop_type, pop_type_int)
4219         (_initialize_parse): Update.
4220
4221 2012-07-06  Tom Tromey  <tromey@redhat.com>
4222
4223         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4224         Remove %type.
4225
4226 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4227
4228         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4229
4230 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4231             Jan Kratochvil  <jan.kratochvil@redhat.com>
4232
4233         * cp-valprint.c (cp_print_value): Replace potentially unsafe
4234         alloca with xmalloc/xfree.
4235
4236 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4237
4238         * MAINTAINERS (Write After Approval): Add myself to the list.
4239
4240 2012-07-05  Doug Evans  <dje@google.com>
4241
4242         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4243
4244 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4245
4246         * ax-gdb.c (cli/cli-utils.h): New include.
4247         (linespec.h): Ditto.
4248         (agent_eval_command_one): New function.
4249         (agent_command_1): Ditto.
4250         (agent_command): Call function agent_command_1.
4251         (agent_eval_command): Ditto.
4252         (_initialize_ax_gdb): Change help for "maint agent"
4253         and "maint agent-eval".
4254
4255 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4256
4257         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4258         * cli/cli-utils.c (check_for_argument): New function.
4259         * cli/cli-utils.h (check_for_argument): Ditto.
4260
4261 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4262
4263         * NEWS: Mention x32 ABI support.
4264
4265 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4266
4267         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4268         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4269
4270         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4271         and pc_regnum_from_eax to -1.  Update SP regnum from
4272         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4273         needed.
4274
4275         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4276         pc_regnum_from_eax.
4277
4278 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4279
4280         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4281         * dwarf2expr.h: Include gdbtypes.h.
4282         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4283         these forward declarations.
4284         (cu_offset, sect_offset): Move these ...
4285         * gdbtypes.h: Remove include dwarf2expr.h.
4286         (cu_offset, sect_offset): ... here.
4287
4288 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
4289
4290         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4291         (amd64_linux_sigtramp_code): This.
4292         (amd64_x32_linux_sigtramp_code): New.
4293         (LINUX_SIGTRAMP_LEN): Updated.
4294         (amd64_linux_sigtramp_start): Check x32 sigtramp.
4295
4296 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4297
4298         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4299
4300 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4301
4302         * config.in: Regenerate.
4303         * configure: Regenerate.
4304         * configure.ac: Remove check for gnu/libc-version.h.
4305         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4306         gnu/libc-version.h.
4307         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4308         variables libc_version, libc_major and libc_minor.  Replace sscanf by
4309         inferior_has_bug.  Extend the comment.
4310
4311 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4312
4313         * linux-thread-db.c (inferior_has_bug): New function.
4314         (thread_db_find_new_threads_silently): Return boolean as checked by
4315         inferior_has_bug, describe it in the comments.
4316         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4317         earlier.  Abort the initialization if it returned non-zero.
4318         (thread_db_new_objfile): Exclude debug files.
4319         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
4320         if UNTIL_NO_NEW,
4321
4322 2012-07-02  Doug Evans  <dje@google.com>
4323
4324         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4325         related to queue management.
4326
4327         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4328         instead of "debug dwarf2-die" in debugging printfs.
4329         (create_debug_info_hash_table_reader): Ditto.
4330         (create_debug_info_hash_table): Ditto.
4331         (init_dwo_file): Ditto.
4332         (init_cutu_and_read_dies): Add debugging printf.
4333         (init_cutu_and_read_dies_no_follow): Ditto.
4334         (process_psymtab_comp_unit_reader): Ditto.
4335
4336 2012-07-02  Stan Shebs  <stan@codesourcery.com>
4337
4338         Add target-side support for dynamic printf.
4339         * NEWS: Mention the additional style.
4340         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4341         (struct bp_location): New field cmd_bytecode.
4342         * breakpoint.c: Include format.h.
4343         (disconnected_dprintf): New global.
4344         (parse_cmd_to_aexpr): New function.
4345         (build_target_command_list): New function.
4346         (insert_bp_location): Call it.
4347         (remove_breakpoints_pid): Skip dprintf breakpoints.
4348         (print_one_breakpoint_location): Ditto.
4349         (dprintf_style_agent): New global.
4350         (dprintf_style_enums): Add dprintf_style_agent.
4351         (update_dprintf_command_list): Add agent case.
4352         (agent_printf_command): New function.
4353         (_initialize_breakpoint): Add new commands.
4354         * common/ax.def (printf): New bytecode.
4355         * ax.h (ax_string): Declare.
4356         * ax-gdb.h (gen_printf): Declare.
4357         * ax-gdb.c: Include cli-utils.h, format.h.
4358         (gen_printf): New function.
4359         (maint_agent_print_command): New function.
4360         (_initialize_ax_gdb): Add maint agent-printf command.
4361         * ax-general.c (ax_string): New function.
4362         (ax_print): Add printf disassembly.
4363         * Makefile.in (SFILES): Add format.c
4364         (COMMON_OBS): Add format.o.
4365         * common/format.h: New file.
4366         * common/format.c: New file.
4367         * printcmd.c: Include format.h.
4368         (ui_printf): Call parse_format_string.
4369         * remote.c (remote_state): New field breakpoint_commands.
4370         (PACKET_BreakpointCommands): New enum.
4371         (remote_breakpoint_commands_feature): New function.
4372         (remote_protocol_features): Add new BreakpointCommands entry.
4373         (remote_can_run_breakpoint_commands): New function.
4374         (remote_add_target_side_commands): New function.
4375         (remote_insert_breakpoint): Call it.
4376         (remote_insert_hw_breakpoint): Ditto.
4377         (_initialize_remote): Add new packet configuration for
4378         target-side breakpoint commands.
4379         * target.h (struct target_ops): New field
4380         to_can_run_breakpoint_commands.
4381         (target_can_run_breakpoint_commands): New macro.
4382         * target.c (update_current_target): Handle
4383         to_can_run_breakpoint_commands.
4384
4385 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4386
4387         Execute -ix and -iex only after system and user gdbinit files.
4388         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4389         processing down after gdbinit files.
4390
4391 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4392
4393         Add fnmatch-gnu module.
4394         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4395         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4396         * gnulib/aclocal.m4: Regenerate.
4397         * gnulib/config.in: Regenerate.
4398         * gnulib/configure: Regenerate.
4399         * gnulib/import/dummy.c: Remove.
4400         * gnulib/import/Makefile.am: Regenerate.
4401         * gnulib/import/Makefile.in: Likewise.
4402         * gnulib/import/m4/gnulib-cache.m4: Likewise.
4403         * gnulib/import/m4/gnulib-comp.m4: Likewise.
4404         * gnulib/import/alloca.c: New file.
4405         * gnulib/import/alloca.in.h: Likewise.
4406         * gnulib/import/config.charset: Likewise.
4407         * gnulib/import/fnmatch.c: Likewise.
4408         * gnulib/import/fnmatch.in.h: Likewise.
4409         * gnulib/import/fnmatch_loop.c: Likewise.
4410         * gnulib/import/localcharset.c: Likewise.
4411         * gnulib/import/localcharset.h: Likewise.
4412         * gnulib/import/m4/alloca.m4: Likewise.
4413         * gnulib/import/m4/codeset.m4: Likewise.
4414         * gnulib/import/m4/configmake.m4: Likewise.
4415         * gnulib/import/m4/fcntl-o.m4: Likewise.
4416         * gnulib/import/m4/fnmatch.m4: Likewise.
4417         * gnulib/import/m4/glibc21.m4: Likewise.
4418         * gnulib/import/m4/localcharset.m4: Likewise.
4419         * gnulib/import/m4/locale-fr.m4: Likewise.
4420         * gnulib/import/m4/locale-ja.m4: Likewise.
4421         * gnulib/import/m4/locale-zh.m4: Likewise.
4422         * gnulib/import/m4/mbrtowc.m4: Likewise.
4423         * gnulib/import/m4/mbsinit.m4: Likewise.
4424         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
4425         * gnulib/import/m4/mbstate_t.m4: Likewise.
4426         * gnulib/import/m4/stdbool.m4: Likewise.
4427         * gnulib/import/m4/wchar_h.m4: Likewise.
4428         * gnulib/import/m4/wctype_h.m4: Likewise.
4429         * gnulib/import/m4/wint_t.m4: Likewise.
4430         * gnulib/import/mbrtowc.c: Likewise.
4431         * gnulib/import/mbsinit.c: Likewise.
4432         * gnulib/import/mbsrtowcs-impl.h: Likewise.
4433         * gnulib/import/mbsrtowcs-state.c: Likewise.
4434         * gnulib/import/mbsrtowcs.c: Likewise.
4435         * gnulib/import/ref-add.sin: Likewise.
4436         * gnulib/import/ref-del.sin: Likewise.
4437         * gnulib/import/stdbool.in.h: Likewise.
4438         * gnulib/import/streq.h: Likewise.
4439         * gnulib/import/strnlen1.c: Likewise.
4440         * gnulib/import/strnlen1.h: Likewise.
4441         * gnulib/import/verify.h: Likewise.
4442         * gnulib/import/wchar.in.h: Likewise.
4443         * gnulib/import/wctype.in.h: Likewise.
4444
4445 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4446
4447         Support shell wildcards for 'set auto-load safe-path'.
4448         * auto-load.c: Include fnmatch.h.
4449         (filename_is_in_dir): Rename to ...
4450         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
4451         it.  Update function comment.  Rename dir_len to pattern_len.  New
4452         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
4453         messages.  Use gdb_filename_fnmatch.
4454         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
4455         pattern.
4456         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
4457         * defs.h (gdb_filename_fnmatch): New declaration.
4458         * utils.c: Include fnmatch.h.
4459         (gdb_filename_fnmatch): New function.
4460
4461 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
4462
4463         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
4464         `-probe' and `-probe-stap' options.
4465
4466 2012-07-01  Yao Qi  <yao@codesourcery.com>
4467
4468         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
4469         always_inserted_off, and always_inserted_enums.
4470         Change always_inserted_mode's type to 'enum auto_boolean'.
4471         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
4472         callers.
4473         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
4474         of add_setshow_enum_cmd.
4475         * infrun.c: Remove can_use_displaced_stepping_auto,
4476         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
4477         can_use_displaced_stepping_enum.
4478         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
4479         (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
4480         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
4481         add_setshow_enum_cmd.
4482
4483 2012-06-30  Doug Evans  <dje@google.com>
4484
4485         * dwarf2read.c (signatured_type): Make "per_cu" member first.
4486         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
4487         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
4488
4489 2012-06-29  Doug Evans  <dje@google.com>
4490
4491         * linespec.c: #include "stack.h".
4492         (decode_line_with_current_source): Moved here from symtab.c and
4493         renamed from decode_line_spec.  All callers updated.
4494         (decode_line_with_last_displayed): Moved here from breakpoint.c and
4495         renamed from decode_line_spec_1.  All callers updated.
4496         * linespec.h (decode_line_with_current_source): Move declaration here
4497         from symtab.h and renamed from decode_line_spec.
4498         (decode_line_with_last_displayed): Move declaration here from symtab.h
4499         and renamed from decode_line_spec_1.
4500         * macrocmd.c: #include "linespec.h".
4501         * symtab.c: Remove #include "linespec.h".
4502
4503 2012-06-28  Doug Evans  <dje@google.com>
4504
4505         * dwarf2read.c (get_cu_length): New function.
4506         (offset_in_cu_p, error_check_comp_unit_head): Call it.
4507         (create_debug_types_hash_table): Ditto.
4508         (init_cutu_and_read_dies): Ditto.
4509         (init_cutu_and_read_dies_no_follow): Ditto.
4510
4511         * dwarf2read.c (dwarf2_find_base_address): Move definition.
4512
4513         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
4514         (struct abbrev_table): Define.
4515         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
4516         abbrev_table.
4517         (init_cutu_and_read_dies): Update.
4518         (abbrev_table_alloc_abbrev): New function.  Replaces
4519         dwarf_alloc_abbrev.  All callers updated.
4520         (abbrev_table_add_abbrev): New function.
4521         (abbrev_table_lookup_abbrev): New function.  Replaces
4522         dwarf2_lookup_abbrev.  All callers updated.
4523         (abbrev_table_read_table): New function.  Contents moved here from
4524         dwarf2_read_abbrevs.
4525         (dwarf2_read_abbrevs): Call it.
4526         (abbrev_table_free): New function.
4527         (dwarf2_free_abbrev_table): Call it.
4528
4529 2012-06-28  Stan Shebs  <stan@codesourcery.com>
4530
4531         * osdata.c (info_osdata_command): Filter out "Title" columns
4532         from non-MI uses.
4533         * common/linux-osdata.c (struct osdata_type): Add title field.
4534         (osdata_table): Add titles to each entry.
4535         (linux_command_xfer_osdata): Add a column for title data.
4536
4537 2012-06-28  Stan Shebs  <stan@codesourcery.com>
4538
4539         Make logging work for MI.
4540         * NEWS: Mention it.
4541         * interps.h (interp_set_logging_ftype): New typedef.
4542         (struct interp_procs): New field set_logging_proc.
4543         (current_interp_set_logging): Declare.
4544         * interps.c (current_interp_set_logging): New function.
4545         * cli/cli-logging.c: Include interps.h.
4546         (set_logging_redirect): Call current_interp_set_logging.
4547         (pop_output_files): Ditto.
4548         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
4549         * mi/mi-console.h (mi_console_set_raw): Declare.
4550         * mi/mi-console.c (mi_console_set_raw): New function.
4551         * mi/mi-interp.c (saved_raw_stdout): New global.
4552         (mi_set_logging): New function.
4553         (_initialize_mi_interp): Add it to interp procs.
4554
4555 2012-06-28  Doug Evans  <dje@google.com>
4556
4557         * symtab.c (lookup_symbol_aux_objfile): Use
4558         ALL_OBJFILE_PRIMARY_SYMTABS.
4559
4560         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
4561
4562 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4563
4564         * common/buffer.c: Include inttypes.h and stdint.h.
4565         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
4566
4567 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4568             Pedro Alves  <palves@redhat.com>
4569
4570         * gdbthread.h (ALL_THREADS): New macro.
4571         (thread_list): Declare.
4572         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
4573         going, but instead fall through to the stepping handling.
4574         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
4575         the passed in signal.  Adjust debug output.
4576         (resume_callback): Rename to ...
4577         (linux_nat_resume_callback): ... this.  Pass the thread's last
4578         stop signal, if in "pass" state.
4579         (linux_nat_resume): Adjust to rename.
4580         (stop_wait_callback): New assertion.  Don't respawn signals;
4581         instead let the LWP remain with SIGNALLED set.
4582         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
4583         * remote.c (append_pending_thread_resumptions): New.
4584         (remote_vcont_resume): Call it.
4585         * target.h (target_resume): Extend comment.
4586
4587 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
4588
4589         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
4590
4591 2012-06-27  Doug Evans  <dje@google.com>
4592
4593         * dwarf2read.c (dwarf2_cu): Add ranges_base.
4594         Delete have_addr_base, unused.  All uses updated.
4595         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
4596         (dwarf2_get_pc_bounds): Add ranges_base.
4597         (dwarf2_record_block_ranges): Ditto.
4598
4599 2012-06-27  Tom Tromey  <tromey@redhat.com>
4600
4601         PR macros/7961:
4602         * varobj.c (varobj_create): Update.
4603         (varobj_set_value): Update.
4604         * tracepoint.c (validate_actionline): Update.
4605         (encode_actions_1): Update.
4606         * parse.c (parse_exp_1): Add 'pc' argument.
4607         (parse_exp_in_context): Add 'pc' argument.  Change how
4608         expression_context_pc is set.
4609         (parse_expression): Update.
4610         (parse_field_expression): Update.
4611         * expression.h (parse_exp_1): Update.
4612         * eval.c (parse_to_comma_and_eval): Update.
4613         * breakpoint.c (set_breakpoint_condition): Update.
4614         (update_watchpoint): Update.
4615         (init_breakpoint_sal): Update
4616         (find_condition_and_thread): Update.
4617         (watch_command_1): Update.
4618         (update_breakpoint_locations): Update.
4619         * ada-lang.c (ada_read_renaming_var_value): Update.
4620         (create_excep_cond_exprs): Update.
4621
4622 2012-06-27  Doug Evans  <dje@google.com>
4623
4624         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
4625         type units.
4626
4627 2012-06-26  Doug Evans  <dje@google.com>
4628
4629         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
4630         prototype.
4631         (error_check_comp_unit_head): New arg abbrev_section.  All callers
4632         updated.
4633         (read_and_check_comp_unit_head): Ditto.
4634         (read_and_check_type_unit_head): Ditto.
4635
4636 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
4637
4638         New attribute 'last' for gdb.Symtab_and_line.
4639         * NEWS (Python Scripting): Add entry about the new attribute.
4640         * python/py-symtab.c (salpy_get_last): New function which
4641         implements the get method for the 'last' attribute of
4642         gdb.Symtab_and_line.
4643         (sal_object_getset): Add entry for the 'last' attribute.
4644
4645 2012-06-26  Doug Evans  <dje@google.com>
4646
4647         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
4648         (dwo_sections): Add macinfo, macro.
4649         (dwarf2_locate_dwo_sections): Watch for macro sections.
4650         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
4651         All callers updated.  Handle DWO files.
4652
4653         * NEWS: Mention new options "set debug dwarf2-read" and
4654         "set debug symtab-create".
4655         * dwarf2read.c (dwarf2_read_debug): New static global.
4656         (dwarf2_build_psymtabs_hard): Add debugging printfs.
4657         (process_queue): Ditto.
4658         (process_full_comp_unit): Ditto.
4659         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
4660         * elfread.c (elf_symfile_read): Add debugging printf.
4661         * minsyms.c (install_minimal_symbols): Ditto.
4662         * psymtab.c (allocate_psymtab): Ditto.
4663         * symfile.c (allocate_symtab): Ditto.
4664         * symtab.c (symtab_create_debug): New global.
4665         (_initialize_symtab): Add new option "set debug symtab-create".
4666         * symtab.h (symtab_create_debug): Declare.
4667
4668         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
4669         (lookup_dwo_type_unit): Ditto.
4670
4671 2012-06-26  Roland McGrath  <roland@hack.frob.com>
4672             H.J. Lu  <hongjiu.lu@intel.com>
4673
4674         * amd64-linux-nat.c: Include <sys/user.h>.
4675         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
4676         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
4677         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
4678
4679         * configure.ac: Check if the fs_base and gs_base members of
4680         `struct user_regs_struct' exist.
4681         * config.in: Regenerated.
4682         * configure: Likewise.
4683
4684 2012-06-25  Michael Eager  <eager@eagercon.com>
4685
4686         PR python/14291
4687         * python/python.c (gdbpy_write): Check for interrupted output.
4688
4689 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
4690
4691         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
4692         register as a stack alignment in ARM mode.
4693
4694 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4695
4696         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
4697         * gnulib/config.in: Regenerate.
4698         * gnulib/configure: Likewise.
4699         * gnulib/import/m4/extensions.m4: Update it.
4700         * gnulib/import/m4/gnulib-common.m4: Likewise.
4701         * gnulib/import/m4/memmem.m4: Likewise.
4702         * gnulib/import/m4/mmap-anon.m4: Likewise.
4703         * gnulib/import/m4/multiarch.m4: Likewise.
4704         * gnulib/import/stdint.in.h: Likewise.
4705
4706 2012-06-24  Yao Qi  <yao@codesourcery.com>
4707
4708         * corefile.c (write_memory_with_notification): New.
4709         * gdbcore.h: Declare write_memory_with_notification.
4710         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
4711         'observer_notify_memory_changed' with 'write_memory_with_notification'.
4712         * valops.c (value_assign): Likewise.
4713         * python/py-inferior.c (infpy_write_memory): Call
4714         'write_memory_with_notification'.
4715
4716 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4717
4718         * cc-with-index.sh: Use also -ex "set auto-load no".
4719
4720 2012-06-23  Doug Evans  <dje@google.com>
4721
4722         PR 14125
4723         * NEWS: Document additions to .gdb_index.
4724         * dwarf2read.c: #include "gdb/gdb-index.h".
4725         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
4726         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
4727         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
4728         (dwarf2_read_index): Recognize version 7.
4729         (dw2_do_expand_symtabs_matching): New args want_specific_block,
4730         block_kind, domain): All callers updated.
4731         (dw2_find_symbol_file): Handle new index CU values.
4732         (dw2_expand_symtabs_matching): Match symbol kind if requested.
4733         (add_index_entry): New args is_static, kind.  All callers updated.
4734         (offset_type_compare, uniquify_cu_indices): New functions
4735         (symbol_kind): New function.
4736         (write_psymtabs_to_index): Remove duplicate CU values.
4737         (write_psymtabs_to_index): Write .gdb_index version 7.
4738
4739 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
4740
4741         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
4742         * configure: Regenerate.
4743
4744 2012-06-20  Yao Qi  <yao@codesourcery.com>
4745
4746         * python/py-inferior.c: Update comments of infpy_read_memory
4747         and infpy_write_memory.
4748
4749 2012-06-19  Tom Tromey  <tromey@redhat.com>
4750
4751         PR exp/9514:
4752         * parser-defs.h (insert_type, insert_type_address_space): Declare.
4753         (push_type_address_space): Remove.
4754         * parse.c (insert_into_type_stack): New function.
4755         (insert_type): Likewise.
4756         (insert_type_address_space): Rename from push_type_address_space.
4757         Insert tp_space_identifier.
4758         * c-exp.y (ptr_operator): New production.
4759         (abs_decl): Use ptr_operator.
4760         (space_identifier): Call insert_type_address_space.
4761         (ptype): Don't use const_or_volatile_or_space_identifier.
4762         (const_or_volatile_noopt): Call insert_type.
4763         (conversion_type_id, conversion_declarator): New productions.
4764         (operator): Use conversion_type_id.
4765
4766 2012-06-18  Doug Evans  <dje@google.com>
4767
4768         * symtab.h (minimal_symbol): New member created_by_gdb.
4769         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
4770         created by gdb.
4771         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
4772         (search_symbols): Call it instead of lookup_symbol.
4773         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
4774
4775         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
4776         Adjust address for DW_OP_GNU_addr_index.
4777         * dwarf2expr.h (dwarf_expr_context): Update comment.
4778         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
4779         all callers updated.  Handle TLS vars described with
4780         DW_OP_GNU_const_index.
4781         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
4782         and DW_OP_GNU_const_index.
4783         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
4784
4785         * block.c (find_block_in_blockvector): Make explicit the fact that we
4786         ignore GLOBAL_BLOCK.
4787
4788 2012-06-18  Tom Tromey  <tromey@redhat.com>
4789
4790         * c-exp.y (operator): Remove trailing space after "delete" and
4791         "delete[]".
4792
4793 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
4794             Jan Kratochvil  <jan.kratochvil@redhat.com>
4795
4796         Switch i386 and derived targets to ON_STACK.
4797         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
4798         (amd64_dicos_init_abi): Remove its installment.
4799         * dicos-tdep.c (dicos_init_abi): Remove the
4800         set_gdbarch_call_dummy_location call.  Update the comment here.
4801         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
4802         (i386_dicos_init_abi): Remove its installment.
4803         * i386-tdep.c (i386_push_dummy_code): New function.
4804         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
4805         i386_push_dummy_code.
4806
4807 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4808
4809         Remove stale dummy frames.
4810         * breakpoint.c: Include dummy-frame.h.
4811         (longjmp_breakpoint_ops): New variable.
4812         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
4813         bp_longjmp_call_dummy.
4814         (bpstat_what, bptype_string, print_one_breakpoint_location)
4815         (init_bp_location): Support bp_longjmp_call_dummy.
4816         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
4817         (set_longjmp_breakpoint_for_call_dummy)
4818         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
4819         functions.
4820         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
4821         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
4822         FIXME comment and extend the other comment for bp_call_dummy.
4823         (set_longjmp_breakpoint_for_call_dummy)
4824         (check_longjmp_breakpoint_for_call_dummy): New declarations.
4825         * dummy-frame.c: Include gdbthread.h.
4826         (pop_dummy_frame_bpt): New function.
4827         (pop_dummy_frame): Call pop_dummy_frame_bpt.
4828         (dummy_frame_discard): New function.
4829         (cleanup_dummy_frames): Update the comment about longjmps.
4830         * dummy-frame.h (dummy_frame_discard): New declaration.
4831         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
4832         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
4833         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
4834         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
4835         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
4836         keep_going if IS_LONGJMP and there is no other reason to stop.
4837
4838 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
4839
4840         * remote-sim.c (sim_command_completer): Initialize
4841         variable 'result'.
4842
4843 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
4844
4845         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
4846         * dwarf2loc.c (call_site_parameter_matches): Support
4847         CALL_SITE_PARAMETER_PARAM_OFFSET.
4848         (needs_dwarf_reg_entry_value): Push stub value.
4849         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
4850         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
4851         * gdbtypes.h (enum call_site_parameter_kind): New item
4852         CALL_SITE_PARAMETER_PARAM_OFFSET.
4853         (struct call_site.parameter.u): New field param_offset.
4854
4855 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
4856
4857         Code cleanup: Generalize call_site.parameter key.
4858         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
4859         variable dwarf_reg.  New variable kind_u.  Update parameters to
4860         push_dwarf_reg_entry_value.
4861         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4862         * dwarf2expr.h (enum call_site_parameter_kind)
4863         (union call_site_parameter_u): Forward declarations.
4864         (struct dwarf_expr_context_funcs): Update parameters and their
4865         description for push_dwarf_reg_entry_value.
4866         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4867         * dwarf2loc.c (call_site_parameter_matches): New function.
4868         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
4869         description.  Use call_site_parameter_matches.
4870         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
4871         Update parameters and their description.
4872         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
4873         New variable kind_u.  Adjust the caller for updated parameters.
4874         (needs_dwarf_reg_entry_value): Update parameters.
4875         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
4876         instead of attr.  Update for the changed fields of struct
4877         call_site_parameter.
4878         * gdbtypes.h: Include dwarf2expr.h.
4879         (enum call_site_parameter_kind): New.
4880         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
4881         fb_offset into new union u.
4882
4883 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
4884
4885         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
4886         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
4887         for x32.
4888
4889 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
4890
4891         * amd64-linux-nat.c (compat_x32_clock_t): New.
4892         (compat_x32_siginfo_t): Likewise.
4893         (compat_x32_siginfo_from_siginfo): Likewise.
4894         (siginfo_from_compat_x32_siginfo): Likewise.
4895         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
4896         and siginfo_from_compat_x32_siginfo for x32.
4897
4898 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
4899
4900         * tracepoint.c (tfile_xfer_partial): Add a lseek.
4901
4902 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
4903
4904         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
4905         instead of gdbarch_ptr_bit.
4906         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
4907         (amd64_supply_native_gregset): Likewise.
4908         (amd64_collect_native_gregset): Likewise.
4909         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
4910         (amd64_supply_xsave): Likewise.
4911         (amd64_collect_fxsave): Likewise.
4912         (amd64_collect_xsave): Likewise.
4913
4914 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
4915
4916         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
4917         (amd64_linux_read_description): Check DS segment register for
4918         x32 process.
4919
4920 2012-06-15  Tom Tromey  <tromey@redhat.com>
4921
4922         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
4923         init_cutu_and_read_dies.
4924
4925 2012-06-15  Iain Sandoe <iain@codesourcery.com>
4926
4927         * MAINTAINERS (Write After Approval): Add myself to the list.
4928
4929 2012-06-15  Tom Tromey  <tromey@redhat.com>
4930
4931         * valops.c (value_find_oload_method_list): Now static.
4932         * value.h (value_find_oload_method_list): Don't declare.
4933
4934 2012-06-15  Tom Tromey  <tromey@redhat.com>
4935
4936         * valops.c (find_overload_match): Use value_ind.
4937
4938 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
4939
4940         * infrun.c (handle_inferior_event): Correct indentation.
4941
4942 2012-06-14  Doug Evans  <dje@google.com>
4943
4944         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
4945         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
4946         All uses updated.
4947         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
4948         updated.  Handle DEBUG_LOC_START_LENGTH.
4949         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
4950         (loclist_describe_location): Ditto.
4951
4952 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
4953
4954         PR backtrace/13866
4955         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
4956         after hiding inline functions.
4957
4958 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4959
4960         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
4961         _initialize_inf_ttrace.
4962
4963 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4964
4965         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
4966         _initialize_hppa_hpux_nat.
4967
4968 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
4969
4970         * remote-sim.c (sim_command_completer): Change type of return
4971         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
4972
4973 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
4974             Jan Kratochvil  <jan.kratochvil@redhat.com>
4975
4976         PR tdep/14222
4977         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
4978         stack on a 16-byte boundary.
4979
4980 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
4981
4982         * jit.c (finalize_symtab): Set function's return type to 'void' by
4983         default.
4984
4985 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
4986             H.J. Lu  <hongjiu.lu@intel.com>
4987
4988         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
4989         Move bits common to both the classic LP64 and the new x32 ILP32
4990         ABI here.
4991         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
4992         (amd64_x32_linux_init_abi): New function.
4993         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
4994         subtype.
4995
4996         * i386-tdep.h (i386_pseudo_register_name): New prototype.
4997         * i386-tdep.c (i386_pseudo_register_name): Make public.
4998         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
4999         * amd64-tdep.c (amd64_dword_names): Add "eip".
5000         (amd64_x32_pseudo_register_type): New function
5001         (amd64_x32_init_abi): New function.
5002
5003 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5004
5005         PR build/14003
5006         * inferior.h (struct inferior_suspend_state): Comment out.
5007         (struct inferior): Comment out the field suspend.
5008         * infrun.c (struct infcall_suspend_state): Comment out the field
5009         inferior_suspend.
5010         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5011         out its assignment.
5012
5013 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5014
5015         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5016         * c-exp.y (classify_inner_name): Remove caller assumptions in the
5017         function comment.  Return ERROR for unresolved cases.  Implement
5018         returning proper NAME.
5019         (yylex): Accept also NAME from classify_inner_name.
5020         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5021         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
5022         LOC_TYPEDEF type.
5023         * cp-support.h (cp_lookup_nested_type): Update its declaration.
5024
5025 2012-06-13  Tom Tromey  <tromey@redhat.com>
5026
5027         * breakpoint.c (condition_completer): New function.
5028         (_initialize_breakpoint): Use it.
5029         * value.c (complete_internalvar): New function.
5030         * value.h (complete_internalvar): Declare.
5031
5032 2012-06-13  Tom Tromey  <tromey@redhat.com>
5033
5034         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5035         * breakpoint.c (catch_syscall_completer): Return a VEC.
5036         * cli/cli-cmds.c (complete_command): Update.
5037         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5038         (complete_on_enum): Likewise.
5039         * command.h: Include gdb_vecs.h.
5040         (completer_ftype): Change return type.
5041         (complete_on_cmdlist, complete_on_enum): Likewise.
5042         * completer.c (noop_completer, filename_completer)
5043         (location_completer): Return a VEC.
5044         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
5045         to a VEC.
5046         (expression_completer, complete_line_internal, complete_line)
5047         (command_completer): Return a VEC.
5048         (gdb_completion_word_break_characters, line_completion_function):
5049         Update.
5050         * completer.h: Include gdb_vecs.h.
5051         (complete_line, noop_completer, filename_completer)
5052         (expression_completer, location_completer, command_completer):
5053         Update.
5054         * f-lang.c (f_word_break_characters): Return a VEC.
5055         * interps.c (interpreter_completer): Return a VEC.
5056         * language.h (struct language_defn)
5057         <la_make_symbol_completion_list>: Return a VEC.
5058         * python/py-cmd.c (cmdpy_completer): Return a VEC.
5059         * symtab.c (free_completion_list): Take a VEC.
5060         (return_val_size, return_val_index): Remove.
5061         (return_val): Now a VEC.
5062         (completion_list_add_name): Update.
5063         (default_make_symbol_completion_list_break_on)
5064         (default_make_symbol_completion_list, make_symbol_completion_list)
5065         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5066         Return a VEC.
5067         (add_filename_to_list): Update.
5068         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5069         <list>: Now a VEC.
5070         (maybe_add_partial_symtab_filename): Update.
5071         (make_source_files_completion_list): Return a VEC.
5072         * symtab.h (default_make_symbol_completion_list_break_on)
5073         (default_make_symbol_completion_list, make_symbol_completion_list)
5074         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5075         (make_source_files_completion_list): Update.
5076
5077 2012-06-13  Tom Tromey  <tromey@redhat.com>
5078
5079         * breakpoint.c (add_catch_command): Use completer_ftype.
5080         * breakpoint.h: Include command.h.
5081         (add_catch_command): Use completer_ftype.
5082         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5083         * cli/cli-decode.h (struct cmd_list_element) <completer>:
5084         Use completer_ftype.
5085         * command.h (completer_ftype): New typedef.
5086         (set_cmd_completer): Use it.
5087         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5088         completer_ftype.
5089
5090 2012-06-13  Pedro Alves  <palves@redhat.com>
5091
5092         Partial revert of previous change.
5093
5094         * serial.c (scb_base): New global.
5095         (serial_for_fd): New.
5096         (serial_open, serial_fdopen_ops): Link new serial in open serials
5097         chain.
5098         (do_serial_close): Unlink serial from the open serials chain.
5099
5100 2012-06-12  Pedro Alves  <palves@redhat.com>
5101
5102         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5103         threads here.
5104         (prepare_for_detach): No longer context switch here in non-stop
5105         mode.
5106         (fetch_inferior_event): Ditto.
5107         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5108         to the event thread before removing breakpoints.  Switch to the
5109         event thread before inserting breakpoints and resuming.
5110         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5111         event thread before resuming.
5112         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5113         Switch to the event thread before removing breakpoints.
5114
5115 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
5116
5117         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5118         special characters correctly for the Windows shells.  See
5119         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5120         report.
5121         [!__MINGW32__]: Remove extra double quote character from special
5122         characters.
5123
5124 2012-06-11  Stan Shebs  <stan@codesourcery.com>
5125
5126         * ui-out.h: Remove #if 0 declarations.
5127         * ui-out.c: Remove #if 0 functions.
5128
5129 2012-06-11  Pedro Alves  <palves@redhat.com>
5130
5131         * ser-base.c (run_async_handler_and_reschedule): New.
5132         (fd_event, push_event): Use it.
5133         * serial.c (serial_open, serial_fdopen_ops): Set the initial
5134         reference count to 1.
5135         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
5136         instead of xfree.
5137         (serial_is_open, serial_ref, serial_unref): New.
5138         * serial.h (serial_open): Adjust comment.
5139         (serial_is_open): Declare.
5140         (serial_close): Adjust comment.
5141         (serial_ref, serial_unref) Declare.
5142         (struct serial): New field 'refcnt'.
5143
5144 2012-06-11  Pedro Alves  <palves@redhat.com>
5145
5146         Remove #if 0'd "connect" command, and unnecessary associated
5147         refcounting and serial reuse bits.
5148
5149         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5150         * serial.c (last_serial_opened): Delete.
5151         (scb_base): Delete.
5152         (serial_open): Adjust.
5153         (serial_for_fd): Delete.
5154         (serial_fdopen_ops, do_serial_close): Adjust.
5155         (serial_fdopen_ops): Adjust.
5156
5157 2012-06-11  Pedro Alves  <palves@redhat.com>
5158
5159         * serial.c (do_serial_close): Remove early return when SCB is
5160         null.
5161
5162 2012-06-11  Tom Tromey  <tromey@redhat.com>
5163
5164         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5165
5166 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5167
5168         Fix regression by the "ambiguous linespec" series.
5169         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
5170         get_last_displayed_symtab and get_last_displayed_line and depending
5171         on CURSAL.
5172
5173 2012-06-11  Tom Tromey  <tromey@redhat.com>
5174
5175         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5176         (dw2_find_symbol_file): Use it.
5177
5178 2012-06-11  Michael Eager  <eager@eagercon.com>
5179
5180         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5181         * mips-linux-tdep.h (mips_signals): New
5182
5183 2012-06-11  Tom Tromey  <tromey@redhat.com>
5184
5185         * infrun.c (handle_inferior_event)
5186         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5187         breakpoint.
5188         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5189         exception logic in all cases.  Update comments.
5190         (insert_longjmp_resume_breakpoint): Set the exception resume
5191         breakpoint.
5192
5193 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
5194
5195         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5196
5197 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
5198
5199         * valarith.c (binop_types_user_defined_p): Fix a typo.
5200
5201 2012-06-08  Yao Qi  <yao@codesourcery.com>
5202             Chung-Lin Tang <cltang@codesourcery.com>
5203
5204         * arch-utils.c (default_return_in_first_hidden_param_p): New.
5205         * arch-utils.h: Declare.
5206         * gdbarch.sh: Add return_in_first_hidden_param_p.
5207         * gdbarch.c, gdbarch.h: Regenerated.
5208         * infcall.c (call_function_by_hand): Call
5209         gdbarch_return_in_first_hidden_param_p instead of
5210         language_pass_by_reference.
5211
5212         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5213         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5214         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5215         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5216         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5217         `cplus_return_struct_by_reference'.
5218         (tic6x_return_value): Handle language cplusplus.
5219         (tic6x_return_in_first_hidden_param_p): New.
5220         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5221
5222 2012-06-07  Doug Evans  <dje@google.com>
5223
5224         * dwarf2read.c (dwarf2_cu): Add comment.
5225
5226 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5227
5228         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5229         variable.
5230         (mips_eabi_push_dummy_call): Likewise.
5231         (mips_n32n64_push_dummy_call): Likewise.
5232         (mips_o32_push_dummy_call): Likewise.
5233         (mips_o64_push_dummy_call): Likewise.
5234
5235 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5236
5237         * mips-tdep.c (mips_convert_register_p): Correct coding style.
5238
5239 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5240
5241         * mips-tdep.c (mips_pseudo_register_type): Use
5242         mips_float_register_p.
5243
5244 2012-06-06  Pedro Alves  <palves@redhat.com>
5245
5246         * infrun.c (handle_inferior_event): Remove calls to
5247         reinit_frame_cache that follow a context_switch call.
5248
5249 2012-06-06  Pedro Alves  <palves@redhat.com>
5250
5251         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5252         context_switch and remove stale comment.
5253
5254 2012-06-06  Pedro Alves  <palves@redhat.com>
5255
5256         * infrun.c (struct execution_control_state): Remove
5257         `new_thread_event' field.
5258         (handle_inferior_event): Simplify new threads handling; don't
5259         resume the inferior if we find a new thread.
5260
5261 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
5262
5263         * NEWS: Document the deprecation of SH's 'regs' command.
5264         * inferior.h (all_registers_info): Add function declaration.
5265         * sh-tdep.c (sh_show_regs): Remove variable.
5266         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5267         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5268         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5269         (sh_show_regs_command): Remove functions.
5270         (sh_gdbarch_init): Don't set sh_show_regs.
5271         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5272         'info all-registers'.
5273         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5274         (sh64_show_regs): Remove functions.
5275         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5276
5277 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5278
5279         * configure.ac: Move development=true below AC_INIT.
5280         * configure: Regenerate.
5281
5282 2012-06-05  Stan Shebs  <stan@codesourcery.com>
5283
5284         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5285         gdb_stdout.
5286
5287 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
5288
5289         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5290         argument as ssize_t.
5291         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5292         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5293         * target.c (target_read_stack, target_write_memory)
5294         (target_write_raw_memory): Likewise.
5295         * target.h (target_read_stack, target_write_memory)
5296         (target_write_raw_memory): Likewise.
5297
5298 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5299
5300         * symfile-mem.c: Change gdb_static_assert to ssize_t.
5301         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5302         * target.c (target_read_memory): Change LEN to ssize_t.
5303         * target.h (target_read_memory): Change LEN to ssize_t.
5304
5305 2012-06-05  Pedro Alves  <palves@redhat.com>
5306
5307         PR backtrace/13866
5308
5309         * breakpoint.c (until_break_command): Only fetch the selected
5310         frame after decode_line_1.
5311
5312 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
5313
5314         * solib-svr4.c (enable_break): Don't fallback to setting the solib
5315         event breakpoint at _start, __start or main if a program
5316         interpreter is not found.
5317
5318 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5319
5320         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5321         Add declaration.
5322         * windows-tdep.c: #include "objfiles.h".
5323         (windows_iterate_over_objfiles_in_search_order): New function.
5324         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5325         iterate_over_objfiles_in_search_order gdbarch method to
5326         windows_iterate_over_objfiles_in_search_order.
5327         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5328
5329 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5330
5331         * gdbarch.sh: Add generation of
5332         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5333         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
5334         (iterate_over_objfiles_in_search_order): New gdbarch method.
5335         * gdbarch.h, gdbarch.c: Regenerate.
5336         * objfiles.h (default_iterate_over_objfiles_in_search_order):
5337         Add declaration.
5338         * objfiles.c (default_iterate_over_objfiles_in_search_order):
5339         New function.
5340         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5341         out of lookup_symbol_aux_symtabs.
5342         (lookup_symbol_aux_symtabs): Replace extracted-out code by
5343         call to lookup_symbol_aux_objfile.
5344         (struct global_sym_lookup_data): New type.
5345         (lookup_symbol_global_iterator_cb): New function.
5346         (lookup_symbol_global): Search for symbol using
5347         gdbarch_iterate_over_objfiles_in_search_order and
5348         lookup_symbol_global_iterator_cb.
5349         * findvar.c (struct minsym_lookup_data): New type.
5350         (minsym_lookup_iterator_cb): New function.
5351         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5352         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5353         and minsym_lookup_iterator_cb.
5354
5355 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5356
5357         Revert the following patch:
5358         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5359         try locating the symbol in the symbol's own objfile first, before
5360         extending the search to all objfiles.
5361         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5362         out of lookup_symbol_aux_symtabs.
5363         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5364         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5365         Do not search EXCLUDE_OBJFILE.
5366         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5367         (lookup_symbol_global): Search for matches in the block's objfile
5368         first, before searching all other objfiles.
5369
5370 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5371
5372         * breakpoint.c (find_condition_and_thread): Stop parsing
5373         as soon as the first invalid keyword is found.
5374
5375 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5376
5377         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5378
5379 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5380
5381         * config/djgpp/djcheck.sh: Add copyright header.
5382
5383 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5384
5385         * copyright.py (update_files, main): Fix path to update-copyright
5386         script.
5387
5388 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5389
5390         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5391         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5392         for which a reminder to update by hand is printed.
5393
5394 2012-06-04  Doug Evans  <dje@google.com>
5395
5396         * buildsym.c (make_blockvector): Add comment.
5397
5398 2012-06-04  Pedro Alves  <palves@redhat.com>
5399
5400         * arch-utils.c (default_gdb_signal_from_target): Delete.
5401         * arch-utils.h (default_gdb_signal_from_target): Delete.
5402         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
5403         gdbarch_gdb_signal_from_target_p.
5404         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
5405         predicate).
5406         * gdbarch.h: Regenerate.
5407         * gdbarch.c: Regenerate.
5408
5409 2012-06-04  Pedro Alves  <palves@redhat.com>
5410
5411         * gdbarch.sh (gdb_signal_from_target): Mention that the
5412         implementation of the method must be host independent.
5413         * gdbarch.h: Regenerate.
5414
5415 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5416
5417         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
5418         parameters.
5419         (target_read_memory_bfd): New function.
5420         (symbol_file_add_from_memory): Use it.
5421
5422 2012-06-03  Doug Evans  <dje@google.com>
5423
5424         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
5425         of primary symtab.
5426         (basic_lookup_transparent_type): Ditto.
5427
5428         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
5429         (ALL_PRIMARY_SYMTABS): Use it.
5430         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
5431         * dwarf2read.c (dw2_find_symbol_file): Ditto.
5432         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
5433         * symtab.c (lookup_symbol_aux_objfile): Ditto.
5434         (basic_lookup_transparent_type): Ditto.
5435
5436 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
5437
5438         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
5439         it to optimize resolution of demangled name.
5440
5441 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
5442
5443         * configure.ac (development): Define new variable.
5444         Call AC_CHECK_LIB for mcheck if $development.
5445         (ERROR_ON_WARNING): Enable it by default only if $development.
5446         * config.in: Regenerate.
5447         * configure: Regenerate.
5448
5449 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
5450
5451         * target.c (target_read_memory): Make LEN argument as size_t.
5452         * target.h (target_read_memory): Likewise.
5453
5454 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
5455
5456         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
5457
5458 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5459
5460         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
5461         BookE interface for PowerPC server processors if not available
5462         in the Linux Kernel.
5463
5464 2012-05-31  Keith Seitz  <keiths@redhat.com>
5465
5466         * linespec.c (decode_objc): Add cleanup to free
5467         INFO.FILE_SYMTABS.
5468         (find_linespec_symbols): Add cleanup to free CLASSES.
5469         * symfile.c (find_separate_debug_file_by_debuglink): Add
5470         cleanup to free DEBUGLINK.
5471         * ui-out.c (clear_header_list): No need to check if
5472         HEADER_NEXT.COLHDR is NULL.
5473         Free HEADER_NEXT.COL_NAME.
5474
5475 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
5476
5477         * ada-lang.c (standard_lookup): Prevent uninitialized variable
5478         warning.
5479
5480 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
5481
5482         * configure.host (gdb_host_cpu): Handle tilegx*.
5483         (gdb_host): Handle tilegx-*-linux*.
5484         * tilegx-linux-nat.c: New file.
5485         * config/tilegx/linux.mh: New file.
5486
5487 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
5488
5489         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
5490         tilegx-linux-tdep.o.
5491         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
5492         tilegx-linux-tdep.c.
5493         * configure.tgt: Handle tilegx-*-linux*.
5494         * tilegx-tdep.h: New file.
5495         * tilegx-tdep.c: New file.
5496         * tilegx-linux-tdep.c: New file.
5497         * regformats/reg-tilegx.dat: New file.
5498
5499 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5500
5501         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
5502         accounting of hw watchpoints on ppc.
5503
5504 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
5505
5506         * source.c (openp): Expand tilde in path entries.
5507
5508 2012-05-29  Doug Evans  <dje@google.com>
5509
5510         * buildsym.c (block_compar): Fix comment.
5511         (end_symtab): Fix and clarify some comments.
5512
5513         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
5514         cleanup_undefined_types.
5515         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
5516         All callers updated.
5517
5518 2012-05-29  Tom Tromey  <tromey@redhat.com>
5519
5520         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
5521         fails.
5522         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
5523         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
5524         fails.
5525         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
5526         fails.
5527
5528 2012-05-29  Tristan Gingold  <gingold@adacore.com>
5529
5530         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
5531         (struct darwin_info): ... New struct.
5532         (solib_darwin_pspace_data): New variable.
5533         (darwin_pspace_data_cleanup): New function.
5534         (get_darwin_info): Likewise.
5535         (darwin_dyld_version_ok, darwin_load_image_infos)
5536         (darwin_solib_get_all_image_info_addr_at_init)
5537         (darwin_solib_read_all_image_info_addr): Add info argument.
5538         Adjust code.
5539         (darwin_current_sos): Use per pspace structure.
5540         (darwin_solib_create_inferior_hook): Likewise.
5541         (darwin_clear_solib): Likewise.
5542         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
5543
5544 2012-05-28  Pedro Alves  <palves@redhat.com>
5545
5546         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
5547         block that uses them.  Clear ecss before handling each event.
5548
5549 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5550
5551         * solib-svr4.c (svr4_current_sos): New comment on
5552         svr4_current_sos_via_xfer_libraries fall back.
5553
5554 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5555
5556         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
5557         it as a fallback for TYPE_IS_OPAQUE.
5558         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
5559         symbols for lookup_symbol.
5560
5561 2012-05-24  John Steele Scott  <toojays@toojays.net>
5562
5563         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
5564         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
5565         (producer_is_gxx_lt_4_6): Move the checking and caching to...
5566         (check_producer): ... this new function, which also checks for ICC
5567         and caches the result.
5568         (producer_is_icc): New function.
5569         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
5570         producer was ICC.
5571
5572 2012-05-24  Pedro Alves  <palves@redhat.com>
5573
5574         PR gdb/7205
5575
5576         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
5577         (default_gdb_signal_to_target): ... this.  Add comment.
5578         (default_gdb_signal_from_host): Rename to ...
5579         (default_gdb_signal_from_target): ... this.  Add comment.
5580         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
5581         (default_gdb_signal_to_target): ... this.
5582         (default_gdb_signal_from_host): Rename to ...
5583         (default_gdb_signal_from_target): ... this.
5584         * corelow.c (core_open): Adjust to naming change.  Replace comment.
5585         * gdbarch.sh (gdb_signal_from_host): Rename to ...
5586         (gdb_signal_from_target): ... this.  Adjust to
5587         default_gdb_signal_from_host naming change.  Extend comment.
5588         (gdb_signal_to_host): Rename to ...
5589         (gdb_signal_to_target): ... this.  Adjust to
5590         default_gdb_signal_to_host naming change.
5591         * gdbarch.h, gdbarch.c: Renegerate.
5592
5593 2012-05-24  Pedro Alves  <palves@redhat.com>
5594
5595         PR gdb/7205
5596
5597         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
5598
5599 2012-05-24  Pedro Alves  <palves@redhat.com>
5600
5601         PR gdb/7205
5602
5603         Replace target_signal with gdb_signal throughout.
5604
5605 2012-05-24  Pedro Alves  <palves@redhat.com>
5606
5607         PR tui/14159
5608
5609         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
5610         string, instead of reusing the va_list argument.
5611
5612 2012-05-24  Tom Tromey  <tromey@redhat.com>
5613
5614         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
5615         Remove.
5616
5617 2012-05-23  Doug Evans  <dje@google.com>
5618
5619         * symtab.c (search_symbols): Formatting fixes.
5620         (print_symbol_info): Formatting fixes.
5621
5622         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
5623         int64_t change to leb128 API.
5624         (read_encoded_value, decode_frame_entry_1): Ditto.
5625         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
5626         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
5627         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
5628         (execute_stack_op): Ditto.
5629         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
5630         (safe_read_uleb128, safe_read_sleb128): Ditto.
5631         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
5632         (dwarf2_compile_expr_to_ax): Ditto.
5633         (locexpr_describe_location_piece): Ditto.
5634         (disassemble_dwarf_expression): Ditto.
5635         (locexpr_describe_location_1): Ditto.
5636
5637 2012-05-23  Stan Shebs  <stan@codesourcery.com>
5638             Kwok Cheung Yeung  <kcy@codesourcery.com>
5639
5640         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
5641         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
5642         (mi-cmd-info.o): New rule.
5643         * osdata.h (info_osdata_command): New declaration.
5644         * osdata.c (info_osdata_command): Change to non-static.
5645         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
5646         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
5647         * mi/mi-cmd-info.c: New file.
5648
5649 2012-05-23  Doug Evans  <dje@google.com>
5650
5651         * symtab.c (search_symbols): Pass NULL for file_matcher to
5652         expand_symtabs_matching if there are no files to match.
5653
5654         * gdbtypes.c (lookup_typename): Simplify.
5655
5656 2012-05-23  Pedro Alves  <palves@redhat.com>
5657
5658         * arch-utils.h (default_target_signal_to_host): Delete.
5659         * arch-utils.c (default_target_signal_to_host): Delete.
5660         * gdbarch.sh (target_signal_to_host): Remove.
5661         * gdbarch.h, gdbarch.c: Regenerate.
5662
5663 2012-05-22  Doug Evans  <dje@google.com>
5664
5665         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
5666         "const gdb_byte *".
5667         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
5668         (execute_cfa_program): Update to match API of leb128 functions.
5669         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
5670         "const gdb_byte *".
5671         (read_unsigned_leb128, read_signed_leb128): Delete.
5672         (read_initial_length): Change type of buf argument to
5673         "const gdb_byte *".
5674         (read_encoded_value): Update to match API of leb128 functions.
5675         (decode_frame_entry): Change result to "const gdb_byte *", and
5676         similarly for "start" parameter.
5677         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
5678         (dwarf2_build_frame_info): Change local frame_ptr to
5679         "const gdb_byte *".
5680         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
5681         read_uleb128, read_sleb128.  All callers updated.
5682         (safe_skip_leb128): New function.
5683         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
5684         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
5685         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
5686         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
5687         read_uleb128, read_sleb128.
5688         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
5689         (execute_stack_op): Update to match API of leb128 functions.
5690         * dwarf2expr.h: #include "leb128.h".
5691         (read_uleb128, read_sleb128): Delete.
5692         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
5693         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
5694         * dwarf2loc.c (debug_loc_kind): New enum.
5695         (decode_debug_loc_addresses): New function.
5696         (decode_debug_loc_dwo_addresses): New function.
5697         (dwarf2_find_location_expression): Rewrite.
5698         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
5699         (locexpr_describe_location_piece): Ditto.
5700         (disassemble_dwarf_expression): Ditto.
5701         (locexpr_describe_location_1): Ditto.
5702         (loclist_describe_location): Rewrite.
5703         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
5704         * dwarf2read.c (die_reader_specs): New member "buffer_end".
5705         (dwarf2_section_buffer_overflow_complaint): Renamed from
5706         dwarf2_macros_too_long_complaint.  All callers updated.
5707         (skip_leb128): Delete.
5708         (init_cu_die_reader): Initialize reader->buffer_end.
5709         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
5710         (skip_form_bytes): New arg buffer_end.  All callers updated.
5711         Replace call to skip_leb128 with gdb_skip_leb128.
5712         (skip_unknown_opcode): New arg mac_end.  All callers updated.
5713         (fill_in_loclist_baton): Initialize baton->from_dwo.
5714
5715 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
5716
5717         * mips-linux-nat.c (mips_linux_read_description): Use a more
5718         verbose error message.
5719
5720 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
5721
5722         * NEWS: Add MIPS/Linux DSP support.
5723         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
5724         (SIGCONTEXT_DSPCTL): New macro.
5725         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
5726         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
5727         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
5728         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
5729         (N64_SIGCONTEXT_HI3): Likewise.
5730         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
5731         (N64_SIGCONTEXT_LO3): Likewise.
5732         (N64_SIGCONTEXT_DSPCTL): Likewise.
5733         (N64_SIGCONTEXT_FPCSR): Clarify definition.
5734         (mips_linux_o32_sigframe_init): Handle DSP registers.
5735         (mips_linux_n32n64_sigframe_init): Likewise.
5736
5737 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
5738
5739         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
5740         call to abort.
5741
5742 2012-05-22  Pedro Alves  <palves@redhat.com>
5743
5744         * target.h (store_waitstatus): Move declaration ...
5745         * inf-child.h (store_waitstatus): ... here.
5746         * target.c: Move inclusion of gdb_wait.h, and ...
5747         (store_waitstatus): ... this ...
5748         * inf-child.c: ... here.
5749         * linux-nat.c: Include inf-child.h.
5750         * rs6000-nat.c: Include inf-child.h.
5751         * spu-linux-nat.c: Include inf-child.h.
5752
5753 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
5754
5755         * tracepoint.c (start_tracing): Add missing i18n markup.
5756         (stop_tracing, set_trace_user): Ditto.
5757         (set_trace_notes, set_trace_stop_notes): Ditto.
5758
5759 2012-05-21  Tom Tromey  <tromey@redhat.com>
5760
5761         PR c++/7173:
5762         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
5763         types.
5764         * value.h (value_cast_pointers): Update.
5765         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
5766         (value_cast): Update.
5767         (update_search_result): New function.
5768         (do_search_struct_field): New, from search_struct_field.  Check
5769         for ambiguous results.
5770         (search_struct_field): Rewrite.
5771         * infcall.c (value_arg_coerce): Update.
5772         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
5773         value_cast_pointers.
5774         * ada-lang.c (ada_convert_actual): Update.
5775
5776 2012-05-21  Tom Tromey  <tromey@redhat.com>
5777
5778         * macroexp.c (macro_stringify): Terminate the string.
5779
5780 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
5781
5782         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
5783         Describe it.
5784         * auto-load.c (auto_load_expand_dir_vars): New function.
5785         (auto_load_safe_path_vec_update): Use it, remove the
5786         substitute_path_component call thanks to it.
5787         (auto_load_objfile_script): Remove the debug_file_directory processing.
5788         Use auto_load_expand_dir_vars, remove the substitute_path_component
5789         call thanks to it.
5790         * configure: Regenerate.
5791         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
5792         path.  Escape $ also for $debugdir.
5793         (--with_auto_load_safe_path): Escape $ also for $debugdir.
5794         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
5795
5796 2012-05-20  Doug Evans  <dje@google.com>
5797
5798         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
5799         before use.  Check for symtab->includes == NULL before scanning it.
5800
5801 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5802
5803         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
5804
5805 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
5806
5807         * NEWS: Add microMIPS support and "set mips compression",
5808         "show mips compression" commands.
5809         * mips-tdep.h (mips_isa): New enum.
5810         (gdbarch_tdep): Add mips_isa.
5811         (mips_pc_is_mips16): Update prototype.
5812         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
5813         * mips-tdep.c (mips_compression_mips16): New variable.
5814         (mips_compression_micromips): Likewise.
5815         (mips_compression_strings): Likewise.
5816         (mips_compression_string): Likewise.
5817         (is_mips16_isa, is_micromips_isa): New functions.
5818         (is_mips16_addr): Rename to...
5819         (is_compact_addr): ... this.
5820         (unmake_mips16_addr): Likewise to...
5821         (unmake_compact_addr): ... this.
5822         (make_mips16_addr): Likewise to...
5823         (make_compact_addr): ... this.
5824         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
5825         functions.
5826         (mips_elf_make_msymbol_special): Handle microMIPS code.
5827         (msymbol_is_special): Rename to...
5828         (msymbol_is_mips16): ... this.
5829         (mips_make_symbol_special, mips_pc_is_mips16): Update
5830         accordingly.
5831         (msymbol_is_mips, msymbol_is_micromips): New functions.
5832         (mips16_to_32_reg): Rename to...
5833         (mips_reg3_to_reg): ... this.
5834         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
5835         (mips_pc_isa): Likewise.
5836         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
5837         code.
5838         (mips_fetch_instruction): Pass return status instead of printing
5839         an error message if requested.  Handle microMIPS code.  Bail out
5840         on an invalid ISA.
5841         (micromips_op): New macro.
5842         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
5843         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
5844         (b6s4_op, b7s3_reg): Likewise.
5845         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
5846         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
5847         (mips_insn_size): New function.
5848         (mips32_next_pc): Update mips_fetch_instruction call.
5849         (micromips_relative_offset7): New function.
5850         (micromips_relative_offset10): Likewise.
5851         (micromips_relative_offset16): Likewise.
5852         (micromips_pc_insn_size): Likewise.
5853         (micromips_bc1_pc): Likewise.
5854         (micromips_next_pc): Likewise.
5855         (unpack_mips16): Update mips_fetch_instruction call.
5856         (extended_mips16_next_pc): Update according to change to
5857         mips16_to_32_reg.
5858         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
5859         code.
5860         (mips16_scan_prologue): Update mips_fetch_instruction call.
5861         Update according to change to mips16_to_32_reg.
5862         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
5863         (mips_insn16_frame_base_sniffer): Likewise.
5864         (micromips_decode_imm9): New function.
5865         (micromips_scan_prologue): Likewise.
5866         (mips_micro_frame_cache): Likewise.
5867         (mips_micro_frame_this_id): Likewise.
5868         (mips_micro_frame_prev_register): Likewise.
5869         (mips_micro_frame_sniffer): Likewise.
5870         (mips_micro_frame_unwind): New variable.
5871         (mips_micro_frame_base_address): New function.
5872         (mips_micro_frame_base): New variable.
5873         (mips_micro_frame_base_sniffer): New function.
5874         (mips32_scan_prologue): Update mips_fetch_instruction call.
5875         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
5876         rather than for MIPS16.
5877         (mips_insn32_frame_base_sniffer): Likewise.
5878         (mips_addr_bits_remove): Handle microMIPS code.
5879         (deal_with_atomic_sequence): Rename to...
5880         (mips_deal_with_atomic_sequence): ... this.  Update the type
5881         of the variable used to hold an instruction.  Remove the ISA bit
5882         check.  Update mips_fetch_instruction call.
5883         (micromips_deal_with_atomic_sequence): New function.
5884         (deal_with_atomic_sequence): Likewise.
5885         (mips_about_to_return): Handle microMIPS code.  Update
5886         mips_fetch_instruction call.
5887         (heuristic_proc_start): Check for the standard MIPS ISA rather
5888         than for MIPS16.  Update mips_pc_is_mips16 and
5889         mips_fetch_instruction calls.  Handle microMIPS code.
5890         (mips_push_dummy_code): Handle microMIPS code.
5891         (mips_eabi_push_dummy_call): Likewise.
5892         (mips_o32_return_value): Update mips_pc_is_mips16 call.
5893         (mips_o64_push_dummy_call): Handle microMIPS code.
5894         (mips_o64_return_value): Update mips_pc_is_mips16 call.
5895         (is_delayed): Remove function.
5896         (mips_single_step_through_delay): Replace the call to is_delayed
5897         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
5898         Handle microMIPS code.
5899         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
5900         microMIPS code.
5901         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
5902         call.
5903         (micromips_in_function_epilogue_p): New function.
5904         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
5905         call.
5906         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
5907         Handle microMIPS.
5908         (gdb_print_insn_mips): Likewise.
5909         (mips_breakpoint_from_pc): Likewise.
5910         (mips_remote_breakpoint_from_pc): New function.
5911         (mips32_instruction_has_delay_slot): Simplify making use of the
5912         updated mips_fetch_instruction interface.
5913         (micromips_instruction_has_delay_slot): New function.
5914         (mips16_instruction_has_delay_slot): Simplify making use of the
5915         updated mips_fetch_instruction interface.
5916         (mips_adjust_breakpoint_address): Check for the standard MIPS
5917         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
5918         calls.  Handle microMIPS code.
5919         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
5920         (mips_skip_trampoline_code): Handle microMIPS code.
5921         (global_mips_compression): New function.
5922         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
5923         file flags.  Register the microMIPS remote breakpoint handler
5924         and heuristic frame unwinder.
5925         (show_mips_compression): New function.
5926         (_initialize_mips_tdep): Add the "set mips compression" and
5927         "show mips compression" commands.
5928
5929 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
5930
5931         * ada-lang.c:
5932         * ada-tasks.c:
5933         * ada-varobj.c:
5934         * amd64-darwin-tdep.c:
5935         * arm-symbian-tdep.c:
5936         * arm-tdep.c:
5937         * avr-tdep.c:
5938         * ax-gdb.c:
5939         * bfin-linux-tdep.c:
5940         * breakpoint.c:
5941         * c-valprint.c:
5942         * cli/cli-cmds.c:
5943         * coffread.c:
5944         * cp-support.c:
5945         * cris-tdep.c:
5946         * dwarf2-frame-tailcall.c:
5947         * dwarf2-frame.c:
5948         * dwarf2expr.c:
5949         * dwarf2loc.c:
5950         * dwarf2read.c:
5951         * elfread.c:
5952         * eval.c:
5953         * expprint.c:
5954         * f-valprint.c:
5955         * frv-tdep.c:
5956         * h8300-tdep.c:
5957         * hppa-hpux-tdep.c:
5958         * hppa-tdep.c:
5959         * hppanbsd-tdep.c:
5960         * i386-nto-tdep.c:
5961         * i386-tdep.c:
5962         * i387-tdep.c:
5963         * ia64-tdep.c:
5964         * jit.c:
5965         * linespec.c:
5966         * linux-tdep.c:
5967         * lm32-tdep.c:
5968         * m2-valprint.c:
5969         * m32c-tdep.c:
5970         * m32r-rom.c:
5971         * m32r-tdep.c:
5972         * m68k-tdep.c:
5973         * m68klinux-tdep.c:
5974         * mi/mi-main.c:
5975         * microblaze-tdep.c:
5976         * mips-linux-tdep.c:
5977         * mips-tdep.c:
5978         * mn10300-tdep.c:
5979         * p-valprint.c:
5980         * parse.c:
5981         * ppc-linux-tdep.c:
5982         * ppc-sysv-tdep.c:
5983         * printcmd.c:
5984         * python/py-finishbreakpoint.c:
5985         * python/py-inferior.c:
5986         * python/py-infthread.c:
5987         * python/py-type.c:
5988         * python/python.c:
5989         * remote-fileio.c:
5990         * remote-m32r-sdi.c:
5991         * remote-mips.c:
5992         * reverse.c:
5993         * rl78-tdep.c:
5994         * rs6000-aix-tdep.c:
5995         * rs6000-tdep.c:
5996         * s390-tdep.c:
5997         * score-tdep.c:
5998         * sh64-tdep.c:
5999         * skip.c:
6000         * solib-darwin.c:
6001         * solib-dsbt.c:
6002         * solib-frv.c:
6003         * sparc-tdep.c:
6004         * spu-multiarch.c:
6005         * spu-tdep.c:
6006         * stack.c:
6007         * symfile.c:
6008         * symtab.c:
6009         * tic6x-tdep.c:
6010         * tracepoint.c:
6011         * v850-tdep.c:
6012         * valarith.c:
6013         * valprint.c:
6014         * value.c:
6015         * xcoffread.c:
6016         * xtensa-tdep.c:
6017         * ada-lang.c:
6018         * ada-tasks.c:
6019         * ada-varobj.c:
6020         * amd64-darwin-tdep.c:
6021         * arm-symbian-tdep.c:
6022         * arm-tdep.c: Delete unused variables.
6023
6024 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6025
6026         Rename $ddir to $datadir.
6027         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6028         * auto-load.c (auto_load_safe_path_vec_update)
6029         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6030         * configure: Regenerate.
6031         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6032         Likewise.  Remove the 'use $ddir' help string.
6033
6034 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6035
6036         * auto-load.c (show_auto_load_safe_path): Accept any combination of
6037         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6038
6039 2012-05-18  Tom Tromey  <tromey@redhat.com>
6040
6041         PR exp/13907:
6042         * valprint.h (struct value_print_options) <symbol_print>: New
6043         field.
6044         * valprint.c (user_print_options): Add default for symbol_print.
6045         (show_symbol_print): New function.
6046         (generic_val_print): Respect symbol_print.
6047         (_initialize_valprint): Add "print symbol" setting.
6048         * f-valprint.c (f_val_print): Respect symbol_print.
6049         * c-valprint.c (c_val_print): Respect symbol_print.
6050         * NEWS: Update.
6051         * printcmd.c (print_address_symbolic): Return int.  Ignore some
6052         zero-size symbols.
6053         (print_address_demangle): Return int.
6054         * defs.h: (print_address_symbolic): Return int.
6055         * value.h (print_address_demangle): Return int.
6056
6057 2012-05-18  Tom Tromey  <tromey@redhat.com>
6058
6059         * valprint.c (val_print_string): Don't print leading space.
6060         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6061         print space before string or vtbl.
6062         * m2-valprint.c (print_unpacked_pointer): Optionally print space
6063         before string.
6064         * jv-valprint.c (java_value_print): Print space before string.
6065         * go-valprint.c (print_go_string): Print space before string.
6066         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6067         space before string.
6068         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6069         space before string or vtbl.
6070         * auxv.c (fprint_target_auxv): Print space after address.
6071
6072 2012-05-18  Tom Tromey  <tromey@redhat.com>
6073
6074         * printcmd.c (print_address_demangle): Remove special case for 0.
6075
6076 2012-05-18  Tom Tromey  <tromey@redhat.com>
6077
6078         * printcmd.c (print_address_demangle): Add 'opts' argument.
6079         * p-valprint.c (pascal_val_print): Update.
6080         * jv-valprint.c (java_val_print): Update.
6081         * value.h: Update.
6082         * valprint.c (generic_val_print): Update.
6083         (print_function_pointer_address): Add 'options' argument.  Remove
6084         'addressprint' argument.  Update.
6085         * m2-valprint.c (print_unpacked_pointer): Update.
6086         * gnu-v3-abi.c (print_one_vtable): Update.
6087         (gnuv3_print_method_ptr): Update.
6088         * f-valprint.c (f_val_print): Update.
6089         * cp-valprint.c (cp_print_value_fields): Update.
6090         * valprint.h (print_function_pointer_address): Update.
6091         * c-valprint.c (c_val_print): Update.
6092
6093 2012-05-18  Tom Tromey  <tromey@redhat.com>
6094
6095         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6096         directly corresponding to the found psymtab.
6097         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6098         (dw2_find_pc_sect_symtab): Use it.
6099         * block.h (blockvector_contains_pc): Declare.
6100         * block.c (find_block_in_blockvector): New function.
6101         (blockvector_for_pc_sect): Use it.
6102         (blockvector_contains_pc): New function.
6103
6104 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6105
6106         * mips-tdep.h (mips_write_pc): New prototype.
6107         * mips-tdep.c (mips_write_pc): Make external, add description.
6108         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6109         add description.
6110
6111 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6112
6113         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6114         mips_regnum->pc.
6115         (mips_unwind_pc, mips_write_pc): Likewise.
6116         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6117         gdbarch_read_pc.
6118
6119 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
6120
6121         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6122         proc_warn, proc_error, proc_get_status, proc_flags,
6123         proc_why, proc_what, proc_nsysarg, proc_sysargs,
6124         proc_set_run_on_last_close, proc_unset_run_on_last_close,
6125         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6126         proc_stop_process, proc_wait_for_stop, proc_run_process,
6127         proc_set_traced_signals, proc_set_traced_faults,
6128         proc_set_traced_sysentry, proc_set_traced_sysexit,
6129         proc_set_held_signals, proc_get_held_signals,
6130         proc_get_traced_signals, proc_get_traced_faults,
6131         proc_get_traced_sysentry, proc_get_traced_sysexit,
6132         proc_clear_current_fault, proc_set_current_signal,
6133         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6134         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6135         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6136         proc_get_current_thread, proc_get_current_thread,
6137         proc_get_current_thread, proc_update_threads,
6138         proc_update_threads, proc_update_threads, proc_update_threads,
6139         proc_iterate_over_threads, procfs_find_new_threads,
6140         procfs_pid_to_str): Make static.  Remove advance declaration.
6141         (proc_cursig): Make static.  Conditionalized defintion on
6142         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6143         (proc_syscall, proc_set_kill_on_last_close,
6144         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6145         proc_get_pending_signals, proc_get_signal_actions,
6146         proc_trace_signal, proc_ignore_signal): Delete.
6147
6148 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6149
6150         * coffread.c (cs_section_address): Passing proper argument for
6151         `bfd_get_section_vma'.
6152         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6153         `bfd_get_section_flags'.
6154         * remote.c (remote_trace_set_readonly_regions): Likewise, for
6155         `bfd_get_section_vma'.
6156
6157 2012-05-16  Tom Tromey  <tromey@redhat.com>
6158
6159         PR macros/13205:
6160         * macrotab.h: (macro_define_special): Declare.
6161         (enum macro_special_kind): New.
6162         (struct macro_definition) <argc, replacement>: Update comments.
6163         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6164         (macro_define_object_internal): New function.
6165         (macro_define_object): Use it.
6166         (macro_define_special): New function.
6167         (fixup_definition): New function.
6168         (macro_lookup_definition, foreach_macro_in_scope)
6169         (foreach_macro): Use fixup_definition.
6170         * macroexp.h (macro_stringify): Declare.
6171         * macroexp.c (free_buffer_return_text): New function.
6172         (stringify): Constify "arg".
6173         (macro_stringify): New function.
6174         * dwarf2read.c (macro_start_file): Call macro_define_special.
6175
6176 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
6177             Maciej W. Rozycki  <macro@mips.com>
6178
6179         * breakpoint.h (bp_location): Add related_address member.
6180         * inferior.h (get_return_value): Take a pointer to struct value
6181         instead of struct type for the function requested.
6182         * value.h (using_struct_return): Likewise.
6183         * gdbarch.sh (return_value): Take a pointer to struct value
6184         instead of struct type for the function requested.
6185         * breakpoint.c (set_breakpoint_location_function): Initialize
6186         related_address for bp_gnu_ifunc_resolver breakpoints.
6187         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6188         requested function's address to gdbarch_return_value.
6189         * eval.c (evaluate_subexp_standard): Pass the requested
6190         function's address to using_struct_return.
6191         * infcall.c (call_function_by_hand): Pass the requested
6192         function's address to using_struct_return and
6193         gdbarch_return_value.
6194         * infcmd.c (get_return_value): Take a pointer to struct value
6195         instead of struct type for the function requested.
6196         (print_return_value): Update accordingly.
6197         (finish_command_continuation): Likewise.
6198         * stack.c (return_command): Pass the requested function's
6199         address to using_struct_return and gdbarch_return_value.
6200         * value.c (using_struct_return): Take a pointer to struct value
6201         instead of struct type for the function requested.  Pass the
6202         requested function's address to gdbarch_return_value.
6203         * python/py-finishbreakpoint.c (finish_breakpoint_object):
6204         New function_value member, replacing function_type.
6205         (bpfinishpy_dealloc): Update accordingly.
6206         (bpfinishpy_pre_stop_hook): Likewise.
6207         (bpfinishpy_init): Likewise.  Record the requested function's
6208         address.
6209         * mips-tdep.c (mips_fval_reg): New enum.
6210         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6211         words put in GP registers.
6212         (mips_o64_push_dummy_call): Update a comment.
6213         (mips_o32_return_value): Take a pointer to struct value instead
6214         of struct type for the function requested and use it to check if
6215         using the MIPS16 calling convention.  Return the designated
6216         general purpose registers for floating-point values returned in
6217         MIPS16 mode.
6218         (mips_o64_return_value): Likewise.
6219         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6220         (ppc_sysv_abi_broken_return_value): Likewise.
6221         (ppc64_sysv_abi_return_value): Likewise.
6222         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6223         value instead of struct type for the function requested.
6224         * amd64-tdep.c (amd64_return_value): Likewise.
6225         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6226         * arm-tdep.c (arm_return_value): Likewise.
6227         * avr-tdep.c (avr_return_value): Likewise.
6228         * bfin-tdep.c (bfin_return_value): Likewise.
6229         * cris-tdep.c (cris_return_value): Likewise.
6230         * frv-tdep.c (frv_return_value): Likewise.
6231         * h8300-tdep.c (h8300_return_value): Likewise.
6232         (h8300h_return_value): Likewise.
6233         * hppa-tdep.c (hppa32_return_value): Likewise.
6234         (hppa64_return_value): Likewise.
6235         * i386-tdep.c (i386_return_value): Likewise.
6236         * ia64-tdep.c (ia64_return_value): Likewise.
6237         * iq2000-tdep.c (iq2000_return_value): Likewise.
6238         * lm32-tdep.c (lm32_return_value): Likewise.
6239         * m32c-tdep.c (m32c_return_value): Likewise.
6240         * m32r-tdep.c (m32r_return_value): Likewise.
6241         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6242         * m68k-tdep.c (m68k_return_value): Likewise.
6243         (m68k_svr4_return_value): Likewise.
6244         * m88k-tdep.c (m88k_return_value): Likewise.
6245         * mep-tdep.c (mep_return_value): Likewise.
6246         * microblaze-tdep.c (microblaze_return_value): Likewise.
6247         * mn10300-tdep.c (mn10300_return_value): Likewise.
6248         * moxie-tdep.c (moxie_return_value): Likewise.
6249         * mt-tdep.c (mt_return_value): Likewise.
6250         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6251         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6252         (ppc_sysv_abi_broken_return_value): Likewise.
6253         (ppc64_sysv_abi_return_value): Likewise.
6254         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6255         * rl78-tdep.c (rl78_return_value): Likewise.
6256         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6257         * rx-tdep.c (rx_return_value): Likewise.
6258         * s390-tdep.c (s390_return_value): Likewise.
6259         * score-tdep.c (score_return_value): Likewise.
6260         * sh-tdep.c (sh_return_value_nofpu): Likewise.
6261         (sh_return_value_fpu): Likewise.
6262         * sh64-tdep.c (sh64_return_value): Likewise.
6263         * sparc-tdep.c (sparc32_return_value): Likewise.
6264         * sparc64-tdep.c (sparc64_return_value): Likewise.
6265         * spu-tdep.c (spu_return_value): Likewise.
6266         * tic6x-tdep.c (tic6x_return_value): Likewise.
6267         * v850-tdep.c (v850_return_value): Likewise.
6268         * vax-tdep.c (vax_return_value): Likewise.
6269         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6270         * xtensa-tdep.c (xtensa_return_value): Likewise.
6271         * gdbarch.c: Regenerate.
6272         * gdbarch.h: Regenerate.
6273
6274 2012-05-15  Tom Tromey  <tromey@redhat.com>
6275
6276         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6277
6278 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6279
6280         * breakpoint.c (init_breakpoint_sal): Add quotes around part
6281         of command in two error message.
6282
6283 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6284
6285         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6286
6287 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6288
6289         * breakpoint.c (find_condition_and_thread): Minor reformatting.
6290
6291 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6292
6293         * NEWS (show auto-load scripts-directory): Add forgotten command.
6294
6295 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6296
6297         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6298         parameters.
6299
6300 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
6301
6302         * amd64-tdep.c: Include features/i386/x32.c and
6303         features/i386/x32-avx.c.
6304         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6305         initialize_tdesc_x32_avx.
6306
6307 2012-05-14  Stan Shebs  <stan@codesourcery.com>
6308
6309         Add dynamic printf.
6310         * breakpoint.h (enum bptype): New type bp_dprintf.
6311         (struct breakpoint): New field extra_string.
6312         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6313         (create_breakpoint): Add extra_string arg.
6314         * breakpoint.c (dprintf_breakpoint_ops): New.
6315         (is_breakpoint): Add bp_dprintf.
6316         (bpstat_what): Add dprintf case.
6317         (bptype_string): Ditto.
6318         (print_one_breakpoint_location): Ditto.
6319         (init_bp_location): Ditto.
6320         (bkpt_print_mention): Ditto.
6321         (dprintf_style_enums): New array.
6322         (dprintf_style): New global.
6323         (dprintf_function): New global.
6324         (dprintf_channel): New global.
6325         (update_dprintf_command_list): New function.
6326         (update_dprintf_commands): New function.
6327         (init_breakpoint_sal): Add extra_string argument, handle it.
6328         (create_breakpoint_sal): Add extra_string argument.
6329         (create_breakpoints_sal): Add extra_string argument, update callers.
6330         (find_condition_and_thread): Add extra argument.
6331         (create_breakpoint): Add extra_string argument, record it.
6332         (dprintf_command): New function.
6333         (break_command_1): Add arg to create_breakpoint call.
6334         (handle_gnu_v3_exceptions): Ditto.
6335         (trace_command): Ditto.
6336         (ftrace_command): Ditto.
6337         (strace_command): Ditto.
6338         (bkpt_print_mention): Add dprintf case.
6339         (create_breakpoint_sal_default): Add extra_string argument.
6340         (_initialize_breakpoint): Add new commands.
6341         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6342         * python/py-breakpoint.c (bppy_init): Ditto.
6343         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6344
6345 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
6346
6347         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6348
6349 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
6350
6351         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6352         unsigned long long.
6353
6354 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
6355
6356         Add a new function gdb.find_pc_line to the Python API.
6357         * NEWS (Python Scripting): Add entry about the new function.
6358         * python/python.c (gdbpy_find_pc_line): New function which
6359         implements gdb.find_pc_line.
6360         (GdbMethods): Add entry for the new function.
6361
6362 2012-05-12  Pedro Alves  <palves@redhat.com>
6363
6364         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6365         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6366
6367 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
6368
6369         * inferior.c: Include completer.h
6370         (initialize_inferiors): Set completer of add-inferior to
6371         filename_completer.
6372
6373 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6374
6375         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6376         gdbarch_ptr_bit for x32 core dump.
6377
6378 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6379
6380         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6381         and features/i386/x32-avx-linux.c.
6382
6383 2012-05-11  Stan Shebs  <stan@codesourcery.com>
6384             Kwok Cheung Yeung  <kcy@codesourcery.com>
6385
6386         * NEWS: Describe new info os commands.
6387         * common/linux-osdata.c (PID_T, TIME_T): Define.
6388         (MAX_PID_T_STRLEN): New.
6389         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
6390         MAX_PID_T_STRLEN.
6391         (command_from_pid): Add comment.  Change to use PID_T.
6392         (commandline_from_pid):  Change to use PID_T.
6393         (user_from_pid): Add comment.
6394         (get_process_owner): Add comment. Change to use PID_T and
6395         MAX_PID_T_STRLEN.
6396         (get_number_of_cpu_cores): Add comment.
6397         (get_cores_used_by_process): Add comment.  Change to use PID_T and
6398         MAX_PID_T_STRLEN.
6399         (linux_xfer_osdata_processes): Change to use PID_T and
6400         MAX_PID_T_STRLEN.
6401         (compare_processes): New function.
6402         (linux_xfer_osdata_processgroups): New function.
6403         (linux_xfer_osdata_threads): Change to use PID_T.
6404         (linux_xfer_osdata_fds): New function.
6405         (format_socket_state, print_sockets): New functions.
6406         (union socket_addr): New union.
6407         (linux_xfer_osdata_isockets): New function.
6408         (time_from_time_t, group_from_gid): New functions.
6409         (linux_xfer_osdata_shm): New function.
6410         (linux_xfer_osdata_sem): New function.
6411         (linux_xfer_osdata_msg): New function.
6412         (linux_xfer_osdata_modules): New function.
6413         (osdata_table): Add new entries.
6414         * common/buffer.c (buffer_xml_printf): Add support for long and
6415         long long format specifiers.
6416
6417 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6418
6419         * amd64-linux-tdep.h (tdesc_x32_linux): New.
6420         (tdesc_x32_avx_linux): Likewise.
6421
6422 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6423
6424         Implement multi-component --with-auto-load-dir.
6425         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
6426         entries.
6427         (--with-auto-load-safe-path): Update the default value description.
6428         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
6429         New.
6430         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
6431         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
6432         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
6433         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
6434         "set auto-load scripts-directory".
6435         * config.in: Regenerate.
6436         * configure: Regenerate.
6437         * configure.ac (--with-auto-load-dir): New configure option.
6438         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
6439
6440 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6441
6442         Provide $ddir substitution for --with-auto-load-safe-path.
6443         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
6444         entries.
6445         * auto-load.c: Include observer.h.
6446         (auto_load_safe_path_vec_update): Call substitute_path_component for
6447         each component.  New variable ddir_subst.
6448         (auto_load_gdb_datadir_changed): New function.
6449         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6450         AUTO_LOAD_SAFE_PATH.  New comment.
6451         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6452         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
6453         * config.in: Regenerate.
6454         * configure: Regenerate.
6455         * configure.ac (--auto-load-safe-path): Rename
6456         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
6457         GDB_DATADIR/auto-load.
6458         * defs.h (substitute_path_component): New declaration.
6459         * top.c: Include observer.h.
6460         (set_gdb_datadir): New function.
6461         (init_main): Install it for "set data-directory".
6462         * utils.c (substitute_path_component): New function.
6463
6464 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6465
6466         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
6467         * auto-load.c (auto_load_objfile_script): Remove check for NULL
6468         DEBUG_FILE_DIRECTORY.  Handle multiple components of
6469         DEBUG_FILE_DIRECTORY.
6470
6471 2012-05-10  Tom Tromey  <tromey@redhat.com>
6472
6473         * dwarf2read.c (recursively_write_psymbols): New function.
6474         (write_psymtabs_to_index): Use it.
6475
6476         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
6477         field.
6478         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
6479         (load_partial_comp_unit): Update.
6480         (queue_comp_unit): Add argument 'pretend_language'.
6481         (process_queue): Update.
6482         (psymtab_to_symtab_1): Skip dependencies that have a user.
6483         (load_partial_comp_unit_reader): Give meaning to the 'data'
6484         argument.
6485         (load_full_comp_unit): Add 'pretend_language' argument.
6486         (process_full_comp_unit): Add 'pretend_language' argument.  Set
6487         language on CU.
6488         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
6489         Update.
6490         (maybe_queue_comp_unit): Add 'pretend_language' argument.
6491         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
6492         Update.
6493         (prepare_one_comp_unit): Add 'pretend_language' argument.
6494
6495         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
6496         (struct dwarf2_per_objfile) <just_read_cus>: New field.
6497         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
6498         (dw2_do_instantiate_symtab): Check whether symtab was read in
6499         before queueing.
6500         (dw2_instantiate_symtab): Add assertion.  Call
6501         process_cu_includes.
6502         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
6503         (partial_symtab_p): New typedef.
6504         (set_partial_user): New function.
6505         (dwarf2_build_psymtabs_hard): Use set_partial_user.
6506         (scan_partial_symbols): Add imported CU to imported_symtabs.
6507         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
6508         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
6509         (get_symtab, recursively_compute_inclusions)
6510         (compute_symtab_includes, process_cu_includes)
6511         (process_imported_unit_die): New functions.
6512         (process_die) <DW_TAG_imported_unit>: New case.
6513         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
6514
6515         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
6516         comment.
6517         (struct partial_die_info) <locdesc>: Remove.
6518         <d>: New field.
6519         (process_psymtab_comp_unit): Add 'read_partial' argument.
6520         Update.
6521         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
6522         (scan_partial_symbols): Handle DW_TAG_imported_unit.
6523         (add_partial_symbol): Update.
6524         (process_die): Handle DW_TAG_partial_unit.
6525         (read_file_scope): Update comment.
6526         (load_partial_dies): Handle DW_TAG_imported_unit.
6527         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
6528         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
6529
6530 2012-05-10  Tom Tromey  <tromey@redhat.com>
6531
6532         * cc-with-dwz.sh: New file.
6533
6534 2012-05-10  Tom Tromey  <tromey@redhat.com>
6535
6536         * symtab.h (struct symtab) <includes, user>: New fields.
6537         * block.h (struct block_iterator) <d, idx, which>: New fields.
6538         * block.c (initialize_block_iterator, find_iterator_symtab)
6539         (block_iterator_step, block_iter_name_step)
6540         (block_iter_match_step): New functions.
6541         (block_iterator_first, block_iterator_next)
6542         (block_iter_name_first, block_iter_name_next)
6543         (block_iter_match_first, block_iter_match_next): Rewrite.
6544         (get_block_symtab): New function.
6545
6546 2012-05-10  Tom Tromey  <tromey@redhat.com>
6547
6548         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
6549         set_block_symtab.
6550         * jit.c (finalize_symtab): Use allocate_global_block,
6551         set_block_symtab.
6552         * buildsym.c (finish_block_internal): New function, from old
6553         finish_block.
6554         (finish_block): Rewrite.
6555         (end_symtab): Use finish_block_internal, set_block_symtab.
6556         * block.h (struct global_block): New.
6557         (allocate_global_block, set_block_symtab): Declare.
6558         * block.c (allocate_global_block, set_block_symtab): New
6559         functions.
6560
6561 2012-05-10  Tom Tromey  <tromey@redhat.com>
6562
6563         * psymtab.c (partial_map_expand_apply): Add assertion.
6564         (partial_map_symtabs_matching_filename): Skip included psymtabs.
6565         (psymtab_to_symtab): Find unshared psymtab.
6566         (dump_psymtab): Print including psymtabs.
6567         (recursively_search_psymtabs): New function.
6568         (expand_symtabs_matching_via_partial): Use it.
6569         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
6570         fields.
6571         (enum psymtab_search_status): New.
6572
6573 2012-05-10  Tom Tromey  <tromey@redhat.com>
6574
6575         * tracepoint.c (scope_info): Update.
6576         * symtab.c (lookup_block_symbol, iterate_over_symbols)
6577         (find_pc_sect_symtab, search_symbols)
6578         (default_make_symbol_completion_list_break_on)
6579         (make_file_symbol_completion_list): Update.
6580         * symmisc.c (dump_symtab_1): Update.
6581         * stack.c (print_frame_args, iterate_over_block_locals)
6582         (print_frame_labels, iterate_over_block_arg_vars): Update.
6583         * python/py-block.c (block_object) <dict>: Remove.
6584         <block>: New field.
6585         <iter>: Change type.
6586         (blpy_iter): Update.
6587         (blpy_block_syms_iternext): Update.
6588         * psymtab.c (map_block): Use block iterators.
6589         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
6590         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
6591         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
6592         * infrun.c (check_exception_resume): Update.
6593         * cp-support.c (make_symbol_overload_list_block): Update.
6594         * coffread.c (patch_opaque_types): Update.
6595         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
6596         * block.h (struct block_iterator): New.
6597         (block_iterator_first, block_iterator_next, block_iter_name_first)
6598         (block_iter_name_next, block_iter_match_first)
6599         (block_iter_match_next): Declare.
6600         (ALL_BLOCK_SYMBOLS): Redefine.
6601         * block.c (block_iterator_first, block_iterator_next)
6602         (block_iter_name_first, block_iter_name_next)
6603         (block_iter_match_first, block_iter_match_next): New functions.
6604         * ada-lang.c (ada_add_block_symbols)
6605         (ada_make_symbol_completion_list): Use block iterator.
6606
6607 2012-05-10  Tom Tromey  <tromey@redhat.com>
6608
6609         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
6610         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
6611         (lookup_partial_symbol, find_last_source_symtab_from_partial)
6612         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
6613         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
6614         Update.
6615
6616 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
6617
6618         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
6619         print-file-var-lib2.c, print-file-var-main.c and
6620         print-file-var.exp (located in gdb/testsuite/gdb.base).
6621
6622 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
6623
6624         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
6625         try locating the symbol in the symbol's own objfile first, before
6626         extending the search to all objfiles.
6627         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6628         out of lookup_symbol_aux_symtabs.
6629         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
6630         Replace extracted-out code by call to lookup_symbol_aux_objfile.
6631         Do not search EXCLUDE_OBJFILE.
6632         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
6633         (lookup_symbol_global): Search for matches in the block's objfile
6634         first, before searching all other objfiles.
6635
6636 2012-05-10  Tristan Gingold  <gingold@adacore.com>
6637
6638         * printcmd.c (set_command): Add pre/post inc/dec.
6639
6640 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
6641
6642         * gdb.1: Document -ex option.
6643
6644 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
6645
6646         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
6647         * inferior.h (AT_SYMBOL): Delete.
6648
6649 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
6650
6651         * mips-tdep.c (mips_push_dummy_code): New function.
6652         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
6653         ON_STACK and install mips_push_dummy_code as our gdbarch
6654         push_dummy_code routine.
6655
6656 2012-05-09  Pedro Alves  <palves@redhat.com>
6657
6658         * target.c (set_maintenance_target_async_permitted): Rename to ...
6659         (set_target_async_command): ... this.
6660         (show_maintenance_target_async_permitted): Rename to ...
6661         (show_target_async_command): ... this.
6662         (initialize_targets): Adjust.
6663
6664 2012-05-08  Doug Evans  <dje@google.com>
6665
6666         * go-exp.y (classify_name): Add missing assignment of fields of
6667         yylval.ssym.
6668
6669 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
6670
6671         Display the ">" prompt in interactive mode while reading canned
6672         commands, even when the current interpreter is MI.
6673
6674         * interps.c (interp_set_temp): New function.
6675
6676         * interps.h (interp_set_temp): Add prototype.
6677
6678         * cli/cli-script.c (restore_interp): New cleanup function.
6679         (read_command_lines): Temporarily override the current interpreter
6680         with CLI and arrange for restoring the original one.
6681
6682 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
6683
6684         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
6685
6686 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
6687
6688         * probe.c (parse_probes): Move conditional to check for
6689         debuginfo files from here...
6690         * stap-probe.c (stap_get_probes): ... to here.
6691
6692 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
6693             H.J. Lu  <hongjiu.lu@intel.com>
6694
6695         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
6696         `movl %esp, %ebp' for the X32 ABI.
6697
6698 2012-05-07  Tom Tromey  <tromey@redhat.com>
6699
6700         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
6701         get_DW_TAG_name.
6702         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
6703         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
6704         (dwarf_stack_op_name): Remove.
6705         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
6706         (decode_locdesc): Use get_DW_OP_name.
6707         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
6708         (dwarf2_compile_expr_to_ax): Likewise.
6709         (disassemble_dwarf_expression): Likewise.
6710         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
6711
6712 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
6713
6714         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
6715         (sh_linux_sigtramp_cache): New function.
6716         (sh_linux_sigreturn_init): New function.
6717         (sh_linux_rt_sigreturn_init): New function.
6718         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
6719         patterns.
6720         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
6721         syscall codes.
6722         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
6723         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
6724         (sh_linux_init_abi): Add init calls to register new tramp_frame
6725         definitions under 32-bit SH, update comments.
6726
6727 2012-05-07  Pedro Alves  <palves@redhat.com>
6728
6729         PR gdb/10952
6730
6731         * amd64-linux-tdep.c: Include glibc-tdep.h.
6732         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
6733         gdbarch_skip_solib_resolver callback.
6734
6735 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
6736
6737         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
6738         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
6739         (show_auto_load_safe_path): Check any-directory by comparison with "/".
6740         (add_auto_load_safe_path): Change the error message.
6741         (_initialize_auto_load): Change the "safe-path" help text.
6742         * configure: Regenerate
6743         * configure.ac (--without-auto-load-safe-path): Set
6744         WITH_AUTO_LOAD_SAFE_PATH to /.
6745
6746 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
6747
6748         * stap-probe.h: Do not include unecessary `probe.h'.
6749
6750 2012-05-05  Alan Modra  <amodra@gmail.com>
6751
6752         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
6753         bfd_und_section_ptr.
6754         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
6755         and bfd_com_section_ptr.
6756
6757 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
6758
6759         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
6760
6761 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
6762
6763         * windows-nat.h (segment_register_p_ftype): New typedef.
6764         (windows_set_segment_register_p): Add declaration.
6765         * windows-nat.c (segment_register_p): New static global.
6766         (windows_set_segment_register_p): New function.
6767         (do_windows_fetch_inferior_registers): Add special handling
6768         for segment registers.
6769         * amd64-windows-nat.c: #include "amd64-tdep.h".
6770         (amd64_windows_segment_register_p): New function.
6771         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
6772         * i386-windows-nat.c: #include "i386-tdep.h".
6773         (i386_windows_segment_register_p): New function.
6774         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
6775
6776 2012-05-04  Tristan Gingold  <gingold@adacore.com>
6777
6778         * printcmd.c (set_command): Emit a warning if the expression is not
6779         an assignment.
6780
6781 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
6782
6783         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
6784         Make static.
6785
6786 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
6787
6788         * stap-probe.c (stap_is_operator): Change declaration.
6789         (stap_get_opcode): Change return value.
6790         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
6791         `stap_parse_argument_1'.
6792
6793 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
6794
6795         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
6796         debug log.
6797
6798 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
6799
6800         Add two new methods global_block and static_block to gdb.Symtab
6801         objects.
6802         * NEWS (Python scripting): Add entry about the new methods.
6803         * python/py-symtab.c (stpy_global_block): New function which
6804         implements the gdb.Symtab.global_block() method.
6805         (stpy_static_block): New function which implements the
6806         gdb.Symtab.static_block() method.
6807         (symtab_object_methods): Add entries for the two new methods.
6808
6809 2012-05-03  Doug Evans  <dje@google.com>
6810
6811         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
6812         files.
6813
6814 2012-05-03  Yao Qi  <yao@codesourcery.com>
6815
6816         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
6817         space.
6818         (i386_process_record): Ditto.
6819
6820 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6821
6822         * infcall.c (unwind_on_signal_p): Make static.
6823
6824 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6825
6826         * sol-thread.c (solaris_pid_to_str): Make static.
6827         (_initialize_sol_thread): Add prototype.
6828
6829 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
6830
6831         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
6832
6833 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
6834
6835         * MAINTAINERS: Remove myself.
6836
6837 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
6838
6839         Fix --without-auto-load-safe-path for MS-Windows host platform.
6840         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
6841
6842 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
6843
6844         * gdb_curses.h: Undefine KEY_EVENT before including curses
6845         headers.  Move "#undef MOUSE_MOVED" before any curses header
6846         inclusion.
6847
6848 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
6849
6850         * features/i386/i386-mmx-linux.c: Regenerate.
6851         * features/rs6000/powerpc-32.c: Likewise.
6852         * features/rs6000/powerpc-32l.c: Likewise.
6853         * features/rs6000/powerpc-403.c: Likewise.
6854         * features/rs6000/powerpc-403gc.c: Likewise.
6855         * features/rs6000/powerpc-405.c: Likewise.
6856         * features/rs6000/powerpc-505.c: Likewise.
6857         * features/rs6000/powerpc-601.c: Likewise.
6858         * features/rs6000/powerpc-602.c: Likewise.
6859         * features/rs6000/powerpc-603.c: Likewise.
6860         * features/rs6000/powerpc-604.c: Likewise.
6861         * features/rs6000/powerpc-64.c: Likewise.
6862         * features/rs6000/powerpc-64l.c: Likewise.
6863         * features/rs6000/powerpc-750.c: Likewise.
6864         * features/rs6000/powerpc-860.c: Likewise.
6865         * features/rs6000/powerpc-e500.c: Likewise.
6866         * features/rs6000/powerpc-e500l.c: Likewise.
6867         * features/rs6000/powerpc-isa205-32l.c: Likewise.
6868         * features/rs6000/powerpc-isa205-64l.c: Likewise.
6869         * features/rs6000/rs6000.c: Likewise.
6870
6871 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
6872
6873         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
6874         variable.
6875         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
6876         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
6877         (stap_parse_argument) <e>: Likewise.
6878         (handle_stap_probe) <byte_order>: Likewise.
6879
6880 2012-04-30  Doug Evans  <dje@google.com>
6881
6882         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
6883         init_and_read_dies_worker.  All callers updated.
6884         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
6885         replaced with init_cutu_and_read_dies.
6886         (load_partial_comp_unit): Pass 1 for use_existing_cu.
6887         (find_partial_die): Remove FIXME.  Don't free current CU.
6888
6889 2012-04-30  Sterling Augustine  <saugustine@google.com>
6890
6891         * contrib: New directory.
6892         * contrib/test_pubnames_and_indexes.py: New file.
6893
6894 2012-04-30  Doug Evans  <dje@google.com>
6895
6896         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
6897         All callers updated.
6898         (init_cu_die_reader): Verify the section is non-empty.
6899         (dwarf_decode_line_header): Don't dereference section->asection
6900         until we know the section is present.
6901
6902 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
6903
6904         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
6905         probes.
6906
6907 2012-04-29  Yao Qi  <yao@codesourcery.com>
6908
6909         * gdb-code-style.el: New hook gdb-markup-hook
6910         and gdb-comment-hook.
6911
6912 2012-04-28  Doug Evans  <dje@google.com>
6913
6914         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
6915         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
6916         objfile->obfd.
6917         * symfile.h (dwarf2_debug_sections): New member addr.
6918         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
6919         (ctx_no_get_addr_index): New function.
6920         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
6921         (ctx_no_get_addr_index): Declare.
6922         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
6923         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
6924         (dwarf_expr_ctx_funcs): Update.
6925         (needs_get_addr_index): New function.
6926         (needs_frame_ctx_funcs): Update.
6927         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
6928         * dwarf2read.c: #include "gdbcore.h".
6929         (dwarf2_per_objfile): New members addr, dwo_files.
6930         (dwarf2_elf_names): Add entry for addr.
6931         (struct dwo_section_names): New type.
6932         (dwo_section_names): New static global.
6933         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
6934         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
6935         old debug_types_section member updated to use this.
6936         Rename member debug_types_section to info_or_types_section,
6937         all uses updated.
6938         (signatured_type): Rename member type_offset to type_offset_in_tu,
6939         all uses updated.  New member type_offset_in_section.
6940         (struct dwo_sections): New type.
6941         (struct dwo_unit): New type.
6942         (struct dwo_file): New type.
6943         (die_reader_specs): New member dwo_file.
6944         (dwarf2_locate_sections): Watch for .debug_addr.
6945         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
6946         (dwarf2_read_section): Get bfd of section from bfd's asection,
6947         instead of objfile.
6948         (create_cus_from_index): Initialize the_cu->info_or_types_section.
6949         (create_signatured_type_table_from_index): Initialize
6950         sig_type->info_or_types_section.
6951         (dw2_get_file_names): Statement lists for type units with DWO files
6952         live in the DWO file.
6953         (create_debug_types_hash_table): New function.
6954         (create_all_type_units): Rewrite.
6955         (init_cu_die_reader): New arg dwo_file, all callers updated.
6956         (init_and_read_dies_worker): Get section from
6957         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
6958         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
6959         continue reading the CU/TU from there.
6960         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
6961         updated.  Get section from this_cu->info_or_types_section.
6962         (create_all_comp_units): Initialize this_cu->info_or_types_section.
6963         (skip_one_die): New cases DW_FORM_GNU_addr_index,
6964         DW_FORM_GNU_str_index.
6965         (hash_dwo_file, eq_dwo_file): New functions.
6966         (allocate_dwo_file_hash_table): New function.
6967         (hash_dwo_unit, eq_dwo_unit): New functions.
6968         (allocate_dwo_unit_table): New function.
6969         (dwarf2_locate_dwo_sections): New function.
6970         (struct create_dwo_info_table_data): New type.
6971         (create_debug_info_hash_table_reader): New function.
6972         (create_debug_info_hash_table): New function.
6973         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
6974         (lookup_dwo_file): New function.
6975         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
6976         (free_dwo_file, free_dwo_file_cleanup): New functions.
6977         (free_dwo_file_from_slot, free_dwo_files): New functions.
6978         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
6979         (dwarf2_record_block_ranges): Ditto.
6980         (read_partial_die): Ditto.
6981         (process_enumeration_scope): Update to use type_offset_in_section.
6982         (read_full_die_1): New function.
6983         (read_full_die): Rewrite.
6984         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
6985         DW_FORM_GNU_str_index.
6986         (read_addr_index_1, read_addr_index): New functions.
6987         (read_addr_index_from_leb128): New function.
6988         (struct dwarf2_read_addr_index_data): New type.
6989         (dwarf2_read_addr_index_reader): New function.
6990         (dwarf2_read_addr_index): New function.
6991         (read_str_index): New function.
6992         (leb128_size): New function.
6993         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
6994         If processing a type unit from a DWO file, get the line section
6995         from the DWO file.
6996         (var_decode_location): Watch for DW_OP_GNU_addr_index.
6997         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
6998         DW_FORM_GNU_str_index.
6999         (lookup_die_type): Check whether section offset of type's die is
7000         known before looking it up.  Remove assert.  Condition can
7001         legimately happen for inter-cu type references.
7002         (dwarf_attr_name): Handle Fission attributes.
7003         (dwarf_form_name): Handle Fission forms.
7004         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7005         DW_FORM_GNU_str_index.
7006         (follow_die_sig): Update to use type_offset_in_section.
7007         (decode_locdesc): New case DW_OP_GNU_addr_index.
7008         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7009         DW_FORM_GNU_str_index.
7010         (cu_debug_loc_section): New function.
7011         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7012         (dwarf2_per_objfile_free): Unmap .debug_addr section.
7013         Free DWO files if present.
7014         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7015
7016         Refactor DIE reading.
7017         * dwarf2read.c (dwarf2_per_objfile): Replace members
7018         debug_info_type_hash and debug_types_type_hash with die_type_hash.
7019         (die_reader_specs): New member "die_section".  Temporarily make
7020         member "buffer" non-const, pending constifying all info_ptr uses.
7021         (die_reader_func_ftype): New typedef.
7022         (dw2_get_file_names_reader): New function.
7023         (dw2_get_file_names): Rewrite.
7024         (read_and_check_type_unit_head): Rename arg type_offset to
7025         type_offset_in_tu.
7026         (create_all_type_units): Improve debugging message.
7027         Improve dummy type unit check.
7028         (init_cu_die_reader): New arg "section".  All callers updated.
7029         (init_and_read_dies_worker): New function.
7030         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7031         (init_cutu_and_read_dies_no_follow): New function.
7032         (init_cutu_and_read_dies_simple): New function.
7033         (process_psymtab_comp_unit_reader): New function.
7034         (process_psymtab_comp_unit): Delete args section,
7035         is_debug_types_section.  Rewrite.  All callers updated.
7036         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7037         All callers updated.  Rewrite.
7038         (load_partial_comp_unit_reader): New function.
7039         (load_partial_comp_unit): Rewrite.
7040         (skip_children): New arg reader.  Delete args buffer, cu.
7041         All callers updated.
7042         (skip_one_die): New arg reader.  Delete args buffer, cu.
7043         All callers updated.
7044         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
7045         All callers updated.
7046         (load_full_comp_unit_reader): New function.
7047         (load_full_comp_unit): Rewrite.
7048         (read_comp_unit): Delete.
7049         (read_die_and_children_1): Delete, contents moved ...
7050         (read_die_and_children): ... here.
7051         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
7052         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
7053         All callers updated.
7054         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
7055         All callers updated.
7056         (find_partial_die): Rewrite load_all_dies support.
7057         (read_attribute_value): New arg reader.  Delete args abfd, cu.
7058         All callers updated.
7059         (read_attribute): New arg reader.  Delete args abfd, cu.
7060         All callers updated.
7061         (load_full_type_unit): Add assert.
7062         (read_signatured_type_reader): New function.
7063         (read_signatured_type): Rewrite.
7064         (free_stack_comp_unit): Remove call to age_cached_comp_units.
7065         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7066         All callers updated.  Set per_cu->cu = NULL after freeing it.
7067         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7068         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7069         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7070         (set_die_type): Update.
7071         (get_die_type_at_offset): Update.
7072         (read_file_scope): Call prepare_one_comp_unit.
7073         (read_type_unit_scope): Ditto.
7074         (prepare_one_comp_unit): Set producer if present.
7075
7076 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
7077
7078         * probe.c (compile_rx_or_error): Silence ARI warning about missing
7079          gettext function on `error'.
7080
7081 2012-04-27  Doug Evans  <dje@google.com>
7082
7083         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7084         is empty.
7085
7086 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7087             Tom Tromey  <tromey@redhat.com>
7088
7089         * breakpoint.c (struct breakpoint_objfile_data)
7090         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7091         <exception_probes>: New fields.
7092         (free_breakpoint_probes): New function.
7093         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7094         `_Unwind_DebugHook'.
7095         (create_exception_master_breakpoint): Likewise.
7096         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7097         * infrun.c: Including necessary header files for handling SystemTap
7098         probes.
7099         (handle_inferior_event): Handling longjmp breakpoint and exceptions
7100         via SystemTap probes.
7101         (check_exception_resume): Remove `func' argument.  Handle exception
7102         unwinding breakpoint set via a SystemTap probe.
7103         (insert_exception_resume_from_probe): New function.
7104
7105 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7106             Tom Tromey  <tromey@redhat.com>
7107             Jan Kratochvil  <jan.kratochvil@redhat.com>
7108
7109         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7110         (COMMON_OBS): Likewise.
7111         (HFILES_NO_SRCDIR): Add `probe'.
7112         * NEWS: Mention support for static and SystemTap probes.
7113         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7114         SystemTap probes' arguments parser.
7115         * arm-linux-tdep.c: Including headers needed to perform the parsing
7116         of SystemTap probes' arguments.
7117         (arm_stap_is_single_operand): New function.
7118         (arm_stap_parse_special_token): Likewise.
7119         (arm_linux_init_abi): Initializing proper fields used by SystemTap
7120         probes' arguments parser.
7121         * ax-gdb.c (require_rvalue): Removing static declaration.
7122         (gen_expr): Likewise.
7123         * ax-gdb.h (gen_expr): Declaring function.
7124         (require_rvalue): Likewise.
7125         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7126         (bkpt_probe_breakpoint_ops): New variable.
7127         (momentary_breakpoint_from_master): Set the `probe' value.
7128         (add_location_to_breakpoint): Likewise.
7129         (break_command_1): Using proper breakpoint_ops according to the
7130         argument passed by the user in the command line.
7131         (bkpt_probe_insert_location): New function.
7132         (bkpt_probe_remove_location): Likewise.
7133         (bkpt_probe_create_sals_from_address): Likewise.
7134         (bkpt_probe_decode_linespec): Likewise.
7135         (tracepoint_probe_create_sals_from_address): Likewise.
7136         (tracepoint_probe_decode_linespec): Likewise.
7137         (tracepoint_probe_breakpoint_ops): New variable.
7138         (trace_command): Using proper breakpoint_ops according to the
7139         argument passed by the user in the command line.
7140         (initialize_breakpoint_ops): Initializing breakpoint_ops for
7141         static probes on breakpoints and tracepoints.
7142         * breakpoint.h (struct bp_location) <probe>: New field.
7143         * cli-utils.c (skip_spaces_const): New function.
7144         (extract_arg): Likewise.
7145         * cli-utils.h (skip_spaces_const): Likewise.
7146         (extract_arg): Likewise.
7147         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7148         * configure.ac: Append `stap-probe.o' to be generated when ELF
7149         support is present.
7150         * configure: Regenerate.
7151         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7152         * elfread.c: Include `probe.h' and `arch-utils.h'.
7153         (probe_key): New variable.
7154         (elf_get_probes): New function.
7155         (elf_get_probe_argument_count): Likewise.
7156         (elf_evaluate_probe_argument): Likewise.
7157         (elf_compile_to_ax): Likewise.
7158         (elf_symfile_relocate_probe): Likewise.
7159         (stap_probe_key_free): Likewise.
7160         (elf_probe_fns): New variable.
7161         (elf_sym_fns): Add `sym_probe_fns' value.
7162         (elf_sym_fns_lazy_psyms): Likewise.
7163         (elf_sym_fns_gdb_index): Likewise.
7164         (_initialize_elfread): Initialize objfile cache for static
7165         probes.
7166         * gdb_vecs.h (struct probe): New forward declaration.
7167         (probe_p): New VEC declaration.
7168         * gdbarch.c: Regenerate.
7169         * gdbarch.h: Regenerate.
7170         * gdbarch.sh (stap_integer_prefix): New variable.
7171         (stap_integer_suffix): Likewise.
7172         (stap_register_prefix): Likewise.
7173         (stap_register_suffix): Likewise.
7174         (stap_register_indirection_prefix): Likewise.
7175         (stap_register_indirection_suffix): Likewise.
7176         (stap_gdb_register_prefix): Likewise.
7177         (stap_gdb_register_suffix): Likewise.
7178         (stap_is_single_operand): New function.
7179         (stap_parse_special_token): Likewise.
7180         (struct stap_parse_info): Forward declaration.
7181         * i386-tdep.c: Including headers needed to perform the parsing
7182         of SystemTap probes' arguments.
7183         (i386_stap_is_single_operand): New function.
7184         (i386_stap_parse_special_token): Likewise.
7185         (i386_elf_init_abi): Initializing proper fields used by SystemTap
7186         probes' arguments parser.
7187         * i386-tdep.h (i386_stap_is_single_operand): New function.
7188         (i386_stap_parse_special_token): Likewise.
7189         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7190         * mipsread.c (ecoff_sym_fns): Likewise.
7191         * objfiles.c (objfile_relocate1): Support relocation for static
7192         probes.
7193         * parse.c (prefixify_expression): Remove static declaration.
7194         (initialize_expout): Likewise.
7195         (reallocate_expout): Likewise.
7196         * parser-defs.h (initialize_expout): Declare function.
7197         (reallocate_expout): Likewise.
7198         (prefixify_expression): Likewise.
7199         * ppc-linux-tdep.c: Including headers needed to perform the parsing
7200         of SystemTap probes' arguments.
7201         (ppc_stap_is_single_operand): New function.
7202         (ppc_stap_parse_special_token): Likewise.
7203         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7204         probes' arguments parser.
7205         * probe.c: New file, for generic statically defined probe support.
7206         * probe.h: Likewise.
7207         * s390-tdep.c: Including headers needed to perform the parsing of
7208         SystemTap probes' arguments.
7209         (s390_stap_is_single_operand): New function.
7210         (s390_gdbarch_init): Initializing proper fields used by SystemTap
7211         probes' arguments parser.
7212         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7213         * stap-probe.c: New file, for SystemTap probe support.
7214         * stap-probe.h: Likewise.
7215         * symfile.h: Include `gdb_vecs.h'.
7216         (struct sym_probe_fns): New struct.
7217         (struct sym_fns) <sym_probe_fns>: New field.
7218         * symtab.c (init_sal): Initialize `probe' field.
7219         * symtab.h (struct probe): Forward declaration.
7220         (struct symtab_and_line) <probe>: New field.
7221         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7222         locations.
7223         (stop_tracing): Likewise.
7224         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7225
7226 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7227             Tom Tromey  <tromey@redhat.com>
7228
7229         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7230         and to compile agent expressions.
7231         * infrun.c (siginfo_make_value): New argument `ignore'.
7232         (siginfo_funcs): New struct.
7233         (_initialize_infrun): New argument when calling
7234         `create_internalvar_type_lazy'.
7235         * thread.c (thread_id_make_value): New argument `ignore'.
7236         (thread_funcs): New struct.
7237         (_initialize_thread): New argument when calling
7238         `create_internalvar_type_lazy'.
7239         * tracepoint.c (sdata_make_value): New argument `ignore'.
7240         (sdata_funcs): New struct.
7241         (_initialize_tracepoint): New argument when calling
7242         `create_internalvar_type_lazy'.
7243         * value.c (make_value): New struct.
7244         (create_internalvar_type_lazy): New argument `data'.
7245         (compile_internalvar_to_ax): New function.
7246         (value_of_internalvar): Properly handling `make_value' case.
7247         (clear_internalvar): Likewise.
7248         (show_convenience): Adding `TRY_CATCH' block.
7249         * value.h (internalvar_make_value): Delete, replace by...
7250         (struct internalvar_funcs): ... this.
7251         (create_internalvar_type_lazy) <fun>: Delete argument.
7252         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7253         (compile_internalvar_to_ax): New function.
7254         * windows-tdep.c (tlb_make_value): New argument `ignore'.
7255         (tlb_funcs): New struct.
7256         (_initialize_windows_tdep): New argument when calling
7257         `create_internalvar_type_lazy'.
7258
7259 2012-04-27  Mark Wielaard  <mjw@redhat.com>
7260
7261         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7262         see whether it is an address or a constant offset from DW_AT_low_pc.
7263         (dwarf2_record_block_ranges): Likewise.
7264         (read_partial_die): Likewise.
7265
7266 2012-04-26  Mark Wielaard  <mjw@redhat.com>
7267
7268         * MAINTAINERS (Write After Approval): Add myself to the list.
7269
7270 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7271
7272         * proc-utils.h (proc_prettyprint_signalset): New prototype.
7273         (proc_prettyprint_signal): Likewise.
7274         (proc_prettyprint_faultset): Likewise.
7275         (proc_prettyprint_fault): Likewise.
7276         (proc_prettyprint_actionset): Likewise.
7277         (proc_prettyprint_flags): Move to new proc-flags.c section.
7278         (proc_prettyfprint_flags): New prototype.
7279         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7280         (proc_syscall, proc_cursig): Likewise.
7281         (proc_set_kill_on_last_close): Likewise.
7282         (proc_unset_kill_on_last_close): Likewise.
7283         (proc_set_watchpoint): Make static.
7284         (proc_delete_dead_threads): Likewise.
7285         (procfs_set_watchpoint): Likewise.
7286         (_initialize_procfs): Add prototype.
7287         * proc-events.c: Include proc-utils.h.
7288         (init_syscall_table): Make static.
7289         * proc-api.c (_initialize_proc_api): Add prototype.
7290         * proc-flags.c: Include proc-utils.h.
7291
7292 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7293
7294         * configure.ac: Add AC_ARG_PROGRAM.
7295         * configure: Regenerate.
7296
7297 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7298
7299         Fix DW_AT_lower_bound defaults for DWARF-4+.
7300         * dwarf2read.c (read_subrange_type): Remove initialization of low and
7301         high.  New variable low_default_is_valid.  Implement DWARF-4+
7302         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
7303         no default by the DWARF standard.
7304
7305 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
7306             Maciej W. Rozycki  <macro@codesourcery.com>
7307
7308         * infrun.c (handle_inferior_event): Move the check for return
7309         trampolines ahead of the check for function trampolines.
7310         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7311         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7312         (mips_str_mips16_ret_stub): Likewise.
7313         (mips_str_call_fp_stub): Likewise.
7314         (mips_str_call_stub): Likewise.
7315         (mips_str_fn_stub): Likewise.
7316         (mips_str_pic): Likewise.
7317         (mips_in_frame_stub): New function.
7318         (mips_unwind_pc): Return the return address rather than the PC
7319         if the PC of an intermediate frame is inside a call thunk.
7320         (mips_is_stub_suffix): New function.
7321         (mips_is_stub_mode): Likewise.
7322         (mips_get_mips16_fn_stub_pc): Likewise.
7323         (mips_skip_mips16_trampoline_code): Update to handle all the
7324         currently generated stub types.  Don't recurse into __fn_stub
7325         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
7326         Use cooked register accesses.
7327         (mips_in_return_stub): Reintroduce function.
7328         (mips_skip_trampoline_code): Traverse trampolines recursively.
7329         (mips_gdbarch_init): Handle MIPS16 return trampolines.
7330
7331 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
7332
7333         GDB 7.4.1 released.
7334
7335 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
7336
7337         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7338         * features/arm-with-m-vfp-d16.xml: New file. Describes
7339         Cortex-M with VFPv4-sp-d16 FPU register layout.
7340         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7341         * features/arm-with-m-vfp-d16.c: New. Generated from above.
7342         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7343         (arm-register_g_packet_guesses): Add vfp-d16 guess.
7344         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7345
7346 2012-04-25  Doug Evans  <dje@google.com>
7347
7348         * cli/cli-decode.c (print_doc_line): Use stream instead of
7349         current_uiout.
7350
7351 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
7352
7353         * features/arm-with-iwmmxt.c: Regenerate.
7354         * features/arm-with-m-fpa-layout.c: Likewise.
7355         * features/arm-with-m.c: Likewise.
7356         * features/arm-with-neon.c: Likewise.
7357         * features/arm-with-vfpv2.c: Likewise.
7358         * features/arm-with-vfpv3.c: Likewise.
7359         * features/mips-dsp-linux.c: Likewise.
7360         * features/mips-linux.c: Likewise.
7361         * features/mips64-dsp-linux.c: Likewise.
7362         * features/mips64-linux.c: Likewise.
7363         * features/s390-linux32.c: Likewise.
7364         * features/s390-linux32v1.c: Likewise.
7365         * features/s390-linux32v2.c: Likewise.
7366         * features/s390-linux64.c: Likewise.
7367         * features/s390-linux64v1.c: Likewise.
7368         * features/s390-linux64v2.c: Likewise.
7369         * features/s390x-linux64.c: Likewise.
7370         * features/s390x-linux64v1.c: Likewise.
7371         * features/s390x-linux64v2.c: Likewise.
7372         * features/tic6x-c62x-linux.c: Likewise.
7373         * features/tic6x-c62x.c: Likewise.
7374         * features/tic6x-c64x-linux.c: Likewise.
7375         * features/tic6x-c64x.c: Likewise.
7376         * features/tic6x-c64xp-linux.c: Likewise.
7377         * features/tic6x-c64xp.c: Likewise.
7378         * target-descriptions.c: Only generate `field_type' and `type'
7379         variables when needed.
7380
7381 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
7382
7383         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7384
7385 2012-04-25  Doug Evans  <dje@google.com>
7386
7387         Initial pass at Go language support.
7388         * NEWS: Mention Go.
7389         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7390         go-valprint.c.
7391         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7392         (YYFILES): Add go-exp.c.
7393         (YYOBJ): Add go-exp.o.
7394         (local-maintainer-clean): Delete go-exp.c.
7395         * defs.h (enum language): Add language_go.
7396         * dwarf2read.c: #include "go-lang.h".
7397         (fixup_go_packaging): New function.
7398         (process_full_comp_unit): Call it when processing Go CUs.
7399         (dwarf2_physname): Add Go support.
7400         (read_file_scope): Handle missing language spec for GNU Go.
7401         (set_cu_language): Handle DW_LANG_Go.
7402         * go-exp.y: New file.
7403         * go-lang.h: New file.
7404         * go-lang.c: New file.
7405         * go-typeprint.c: New file.
7406         * go-valprint.c: New file.
7407         * symtab.c: #include "go-lang.h".
7408         (symbol_set_language): Handle language_go.
7409         (symbol_find_demangled_name, symbol_set_names): Ditto.
7410         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
7411
7412 2012-04-24  Jim Meyering  <meyering@redhat.com>
7413
7414         avoid a few strncpy-induced buffer overruns
7415         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
7416         fname and psargs before trying to concatenate.
7417         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
7418         "name" before applying strchr.
7419
7420 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
7421
7422         * CONTRIBUTE: Use unified diff instead of context diff when
7423         generating patches.
7424
7425 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
7426
7427         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
7428         code.  Handle JR.HB correctly.
7429
7430 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
7431
7432         * mips-tdep.c
7433         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
7434         with the other MIPS16 helpers.
7435
7436 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
7437
7438         * observer.sh: Conditionally declare `args', thus cleaning up
7439         unused instances of this variable.
7440
7441 2012-04-24  Yao Qi  <yao@codesourcery.com>
7442
7443         Revert this patch to allow breakpoint always-inserted
7444         in record target.
7445         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
7446         * breakpoint.c: Include record.h.
7447         (breakpoints_always_inserted_mode): Return false when the record
7448         target is in use.
7449
7450         * breakpoint.c (iterate_over_bp_locations): New.
7451         * breakpoint.h: Declare.
7452         New typedef walk_bp_location_callback.
7453         * record.c (record_open): Call record_init_record_breakpoints.
7454         (record_sync_record_breakpoints): New.
7455         (record_init_record_breakpoints): New.
7456         * NEWS: Mention supporting breakpoint always-inserted mode in
7457         record target.
7458
7459 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
7460
7461         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
7462         any thread.
7463
7464 2012-04-24  Yao Qi  <yao@codesourcery.com>
7465
7466         * breakpoint.c (ep_is_catchpoint): Renamed to ...
7467         (is_catchpoint): ... it.
7468         (print_one_breakpoint_location): Caller update.
7469         * breakpoint.h: Update declaration.
7470
7471 2012-04-23  David S. Miller  <davem@davemloft.net>
7472
7473         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
7474
7475 2012-04-23  Tom Tromey  <tromey@redhat.com>
7476
7477         * buildsym.c (add_free_pendings): Remove.
7478         * buildsym.h (add_free_pendings): Remove.
7479
7480 2012-04-23  Doug Evans  <dje@google.com>
7481
7482         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
7483         attr.u.unsnd instead of attr.u.addr.
7484         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
7485         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
7486         DW_FORM_ref_udata.
7487         (dump_die_shallow): Update cases DW_FORM_ref_addr,
7488         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
7489         DW_FORM_ref_udata.
7490         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
7491
7492 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
7493
7494         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
7495         (mips_o32_return_value): Likewise.
7496         (mips_o64_return_value): Likewise.
7497
7498 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
7499
7500         * ada-lang.c (ada_evaluate_subexp): Add cases for
7501         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
7502         their treatment in eval.c.
7503
7504 2012-04-21  David S. Miller  <davem@davemloft.net>
7505
7506         * sparc-tdep.c (X_DISP10): Define.
7507         (sparc_analyze_control_transfer): Handle compare-and-branch.
7508
7509 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
7510
7511         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
7512         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
7513
7514 2012-04-20  Nigel Stephens  <nigel@mips.com>
7515             Maciej W. Rozycki  <macro@codesourcery.com>
7516
7517         * mips-tdep.c (mips_float_register_p): New function.
7518         (mips_convert_register_float_case_p): Use mips_float_register_p.
7519         (mips_register_type): Likewise.
7520         (mips_print_register): Likewise.
7521         (print_gp_register_row): Likewise.
7522         (mips_print_registers_info): Likewise.
7523
7524 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
7525
7526         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
7527         of mips16 symbols.
7528
7529 2012-04-20  Andrew Pinski  <apinski@cavium.com>
7530
7531         * MAINTAINERS (Write After Approval): Add myself to the list.
7532
7533 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7534
7535         * MAINTAINERS: Update my e-mail address.
7536
7537 2012-04-20  Pedro Alves  <palves@redhat.com>
7538
7539         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
7540         $srcdir.
7541         * configure: Regenerate.
7542
7543 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7544
7545         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
7546         declaration.
7547         * gdb_vecs.h: Declare `const_char_ptr' VEC.
7548
7549 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7550
7551         Fix compilation compatibility with python-2.4
7552         * python/py-type.c (convert_field): Cast ADDRSTRING for
7553         PyObject_SetAttrString as non-const.  New comment.
7554
7555 2012-04-19  Tom Tromey  <tromey@redhat.com>
7556
7557         * top.c (quit_target): Use all_cleanups.
7558         * main.c (captured_command_loop): Use all_cleanups.
7559         * exceptions.c (throw_exception): Use all_cleanups.
7560
7561 2012-04-19  Pedro Alves  <palves@redhat.com>
7562
7563         * Makefile.in (GNULIB_BUILDDIR): New.
7564         (LIBGNU, INCGNU, GNULIB_H): Adjust.
7565         (SUBDIRS): Add $(GNULIB_BUILDDIR).
7566         (CLEANDIRS). Remove gnulib/import.
7567         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
7568         (all-lib): Ditto.
7569         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
7570         (gnulib/import/Makefile): Replace gnulib/import with
7571         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
7572         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
7573         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
7574         acx_configure_dir.m4.
7575         * acinclude.m4: Include acx_configure_dir.m4.
7576         * acx_configure_dir.m4: New file.
7577         * aclocal.m4: Regenerate.
7578         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
7579         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
7580         (GNULIB): New variable.
7581         (GNULIB_STDINT_H): Adjust.
7582         (AC_OUTPUT): Don't output gnulib/Makefile.
7583         * gdb/defs.h: Include build-gnulib/config.h.
7584         * aclocal.m4: Regenerate.
7585         * config.in: Regenerate.
7586         * configure: Regenerate.
7587
7588         * gnulib/Makefile.in: New file.
7589         * gnulib/configure.ac: New file.
7590         * gnulib/aclocal.m4: New file.
7591         * gnulib/config.in: New file.
7592         * gnulib/configure: New file.
7593         * gnulib/: Re-run gnulib-tool to adjust.
7594
7595 2012-04-19  Doug Evans  <dje@google.com>
7596
7597         * cleanups.h (struct cleanup): Move to cleanups.c.
7598         (make_cleanup_dtor_ftype): New typedef.
7599         (make_cleanup_dtor): Use it.
7600         (ALL_CLEANUPS): Replace with ...
7601         (all_cleanups): ... this.  Declare.  All uses updated.
7602         * cleanups.c: #include "gdb_assert.h".
7603         (sentinel_cleanup): New static global.
7604         (SENTINEL_CLEANUP): Define.
7605         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
7606         (make_my_cleanup2): Assert result is non-NULL.
7607         (all_cleanups): New function.
7608         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
7609         of NULL.
7610
7611 2012-04-19  Pedro Alves  <palves@redhat.com>
7612
7613         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
7614         Adjust paths to gnulib imported files.
7615
7616 2012-04-19  Pedro Alves  <palves@redhat.com>
7617
7618         * gnulib/: Move whole directory ...
7619         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
7620         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
7621         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
7622         (aclocal_m4_deps): Adjust.
7623         * aclocal.m4: Regenerate.
7624         * configure: Regenerate.
7625         * configure.ac: Adjust AC_OUTPUT output.
7626
7627 2012-04-19  Yao Qi  <yao@codesourcery.com>
7628
7629         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
7630         (vec.o): New rule.
7631         * vec.c: Move it ...
7632         * common/vec.c: ... here.
7633         * vec.h: Move it ...
7634         * common/vec.h: ... here.
7635
7636 2012-04-19  Yao Qi  <yao@codesourcery.com>
7637
7638         * gdb-code-style.el: New.
7639
7640 2012-04-18  Pedro Alves  <palves@redhat.com>
7641
7642         Update gnulib from latest git.
7643         (639ea5ae15e39fe48d43e04864b2997301e4b969)
7644
7645         * gnulib/Makefile.am: Update.
7646         * gnulib/dummy.c: Update.
7647         * gnulib/extra/arg-nonnull.h: Update.
7648         * gnulib/extra/c++defs.h: Update.
7649         * gnulib/extra/update-copyright: Update.
7650         * gnulib/extra/warn-on-use.h: Update.
7651         * gnulib/inttypes.in.h: Update.
7652         * gnulib/m4/00gnulib.m4: Update.
7653         * gnulib/m4/extensions.m4: Update.
7654         * gnulib/m4/gnulib-cache.m4: Update.
7655         * gnulib/m4/gnulib-common.m4: Update.
7656         * gnulib/m4/gnulib-comp.m4: Update.
7657         * gnulib/m4/gnulib-tool.m4: Update.
7658         * gnulib/m4/include_next.m4: Update.
7659         * gnulib/m4/inttypes-pri.m4: Update.
7660         * gnulib/m4/inttypes.m4: Update.
7661         * gnulib/m4/longlong.m4: Update.
7662         * gnulib/m4/memchr.m4: Update.
7663         * gnulib/m4/memmem.m4: Update.
7664         * gnulib/m4/mmap-anon.m4: Update.
7665         * gnulib/m4/multiarch.m4: Update.
7666         * gnulib/m4/onceonly.m4: Update.
7667         * gnulib/m4/stddef_h.m4: Update.
7668         * gnulib/m4/stdint.m4: Update.
7669         * gnulib/m4/string_h.m4: Update.
7670         * gnulib/m4/warn-on-use.m4: Update.
7671         * gnulib/m4/wchar_h.m4: Update.
7672         * gnulib/m4/wchar_t.m4: Update.
7673         * gnulib/m4/wint_t.m4: Update.
7674         * gnulib/memchr.c: Update.
7675         * gnulib/memmem.c: Update.
7676         * gnulib/stddef.in.h: Update.
7677         * gnulib/stdint.in.h: Update.
7678         * gnulib/str-two-way.h: Update.
7679         * gnulib/string.in.h: Update.
7680         * gnulib/wchar.in.h: Update.
7681
7682         * gnulib/extra/arg-nonnull.h: Delete.
7683         * gnulib/extra/c++defs.h: Delete.
7684         * gnulib/extra/warn-on-use.h: Delete.
7685         * gnulib/m4/wchar_h.m4: Delete.
7686         * gnulib/m4/wint_t.m4: Delete.
7687         * gnulib/wchar.in.h: Delete.
7688
7689         * gnulib/extra/snippets/arg-nonnull.h: New.
7690         * gnulib/extra/snippets/c++defs.h: New.
7691         * gnulib/extra/snippets/warn-on-use.h: New.
7692
7693         * aclocal.m4: Regenerate.
7694         * config.in: Regenerate.
7695         * configure: Regenerate.
7696         * gnulib/Makefile.in: Regenerate.
7697
7698 2012-04-18  Pedro Alves  <palves@redhat.com>
7699
7700         Reimport the update-copyright module from gnulib
7701         (250b80067c1e1d8faa0c42fb572f721975b929c5).
7702
7703         * configure: Regenerate.
7704         * gnulib/Makefile.am: Update.
7705         * gnulib/Makefile.in: Regenerate.
7706         * gnulib/extra/update-copyright: Update.
7707         * gnulib/m4/gnulib-cache.m4: Update.
7708         * gnulib/m4/gnulib-comp.m4: Update.
7709
7710 2012-04-18  Tristan Gingold  <gingold@adacore.com>
7711
7712         * configure.ac (aix): Put -lpthread into libs.
7713         * configure: Regenerate.
7714
7715 2012-04-18  Tom Tromey  <tromey@redhat.com>
7716
7717         * linespec.c (convert_linespec_to_sals): Don't use
7718         SYMBOL_OBJ_SECTION.
7719         (compare_msymbols): Arguments are minsym_and_objfile, not
7720         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
7721
7722 2012-04-18  Pedro Alves  <palves@redhat.com>
7723
7724         Revert gnulib/ part of:
7725         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
7726         Copyright year update in most files (performed by copyright.sh).
7727
7728 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
7729
7730         Fix 64-bit constants on 32-bit hosts.
7731         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
7732         from unsigned long to ULONGEST.
7733         (read_signed_leb128): Change declaration return type from long to
7734         LONGEST.
7735         (dwarf2_const_value_attr): Change declaration parameter value from long
7736         to LONGEST.
7737         (dwarf2_compute_name): Change variable value from long to LONGEST.
7738         (read_unsigned_leb128): Change return type, variable result and some
7739         casts from unsigned long to ULONGEST.
7740         (read_signed_leb128): Change return type, variable result and some
7741         casts from long to LONGEST.
7742         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
7743         value from long to LONGEST.
7744         (dwarf2_const_value): Change variable value from long to LONGEST.
7745         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
7746         plongest and hex_string.
7747         * symtab.h (struct general_symbol_info): Change ivalue from long to
7748         LONGEST, remove the comment.
7749         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
7750         Change SYMBOL_VALUE format strings to use plongest and hex_string.
7751
7752 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
7753
7754         PR symtab/7259:
7755         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
7756         * ada-lang.c (ada_discrete_type_high_bound)
7757         (ada_discrete_type_low_bound): Fix function comment.  Use
7758         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7759         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
7760         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7761         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
7762         Use TYPE_FIELD_ENUMVAL.
7763         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
7764         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7765         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
7766         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
7767         TYPE_CODE_ENUM.
7768         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
7769         * dwarf2read.c (process_enumeration_scope): Likewise.
7770         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
7771         field.bitpos.
7772         (class StructMainTypePrettyPrinter): Support also
7773         FIELD_LOC_KIND_ENUMVAL.
7774         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
7775         TYPE_CODE_ENUM.
7776         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7777         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
7778         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
7779         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
7780         field enumval.
7781         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
7782         accommodate enumval.
7783         (struct call_site): Adjust loc_kind to accommodate enumval.
7784         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
7785         (TYPE_FIELD_ENUMVAL): New macros.
7786         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
7787         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
7788         TYPE_CODE_ENUM.
7789         * p-typeprint.c (pascal_type_print_base): Likewise.
7790         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
7791         enumval.
7792         * python/lib/gdb/types.py (make_enum_dict): Likewise.
7793         * python/py-type.c (convert_field): New variable addrstring.  Use
7794         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7795         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
7796         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
7797         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
7798         TYPE_CODE_ENUM.
7799         * valprint.c (generic_val_print): Likewise.
7800
7801 2012-04-17  Doug Evans  <dje@google.com>
7802
7803         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
7804
7805         * dwarf2read.c: Whitespace fixes.
7806         (lookup_signatured_type): Tweak comment.
7807         (get_die_type_at_offset): Fix comment.
7808
7809 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
7810
7811         * xcoffread.c (xcoff_secnum_to_sections): New function.
7812         (secnum_to_section, secnum_to_bfd_section): Reimplement
7813         using xcoff_secnum_to_sections.  Rename "secnum" parameter
7814         into "n_scnum".
7815         (RECORD_MINIMAL_SYMBOL): Delete.
7816         (record_minimal_symbol): New function.
7817         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
7818         by call to record_minimal_symbol and set misc_func_recorded
7819         to 1.  Set last_csect_sec to the XCOFF section index instead
7820         of GDB's section_offset index.  Update calls to
7821         prim_record_minimal_symbol_and_info to pass the BFD section
7822         as well.
7823
7824 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
7825
7826         * xcoffread.c (read_xcoff_symtab): Delete variables
7827         last_csect_val and last_csect_sec and associated code.
7828
7829 2012-04-17  Doug Evans  <dje@google.com>
7830
7831         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
7832         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7833         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
7834         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
7835
7836         * cleanups.h: New file.
7837         * cleanups.c: New file.
7838         * Makefile.in (SFILES): Add cleanups.c.
7839         (HFILES_NO_SRCDIR): Add cleanups.h.
7840         (COMMON_OBS): Add cleanups.o.
7841         * defs.h (struct cleanup): Moved to cleanups.h.
7842         (do_cleanups,do_final_cleanups): Ditto.
7843         (discard_cleanups,discard_final_cleanups): Ditto
7844         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7845         (save_cleanups,save_final_cleanups): Ditto.
7846         (restore_cleanups,restore_final_cleanups): Ditto.
7847         (null_cleanup): Ditto.
7848         (make_my_cleanup,make_my_cleanup2): Ditto.
7849         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7850         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
7851         (do_cleanups,do_final_cleanups): Ditto.
7852         (discard_cleanups,discard_final_cleanups): Ditto
7853         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7854         (save_cleanups,save_final_cleanups): Ditto.
7855         (restore_cleanups,restore_final_cleanups): Ditto.
7856         (null_cleanup): Ditto.
7857         (make_my_cleanup,make_my_cleanup2): Ditto.
7858         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7859
7860         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
7861         make_my_cleanup.
7862         (make_cleanup_dyn_string_delete): Ditto.
7863         (make_cleanup_ui_file_delete): Ditto.
7864         (make_cleanup_ui_out_redirect_pop): Ditto.
7865         (make_cleanup_free_section_addr_info): Ditto.
7866         (make_cleanup_restore_integer): Ditto.
7867         (make_cleanup_unpush_target): Ditto.
7868         (make_cleanup_value_free_to_mark): Ditto.
7869         (make_cleanup_value_free): Ditto.
7870         (make_cleanup_free_so): Ditto.
7871
7872 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7873
7874         New option "set debug auto-load".
7875         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
7876         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
7877         (auto_load_safe_path_vec_update)
7878         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
7879         if DEBUG_AUTO_LOAD.
7880         (file_is_auto_load_safe): New parameters debug_fmt and ....
7881         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
7882         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
7883         caller by explanatory string.
7884         (_initialize_auto_load): Register "set debug auto-load".
7885         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
7886         and ....
7887         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7888         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
7889         by explanatory string.
7890         * main.c (captured_main): Likewise.
7891         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
7892         (source_section_scripts): Likewise.
7893
7894 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7895
7896         New option "set auto-load safe-path".
7897         * NEWS: New commands "set auto-load safe-path"
7898         and "show auto-load safe-path".
7899         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
7900         (auto_load_safe_path, auto_load_safe_path_vec)
7901         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
7902         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
7903         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
7904         (source_gdb_script_for_objfile): New variable is_safe.  Call
7905         file_is_auto_load_safe.  Return if it is not.
7906         (struct loaded_script): New field loaded.
7907         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
7908         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
7909         output "Missing" to "No".
7910         (_initialize_auto_load): New variable cmd.  Initialize
7911         auto_load_safe_path.  Register "set auto-load safe-path",
7912         "show auto-load safe-path" and "add-auto-load-safe-path".
7913         * auto-load.h (maybe_add_script): Add parameter loaded.
7914         (file_is_auto_load_safe): New declaration.
7915         * config.in: Regenerate.
7916         * configure: Regenerate.
7917         * configure.ac: New parameters --with-auto-load-safe-path
7918         and --without-auto-load-safe-path.
7919         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7920         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
7921         * main.c (captured_main): Check file_is_auto_load_safe for
7922         LOCAL_GDBINIT.
7923         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
7924         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
7925         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
7926         not.
7927
7928 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
7929
7930         auto-load: Implementation.
7931         * NEWS: New descriptions for "info auto-load",
7932         "info auto-load gdb-scripts", "info auto-load python-scripts",
7933         "info auto-load local-gdbinit" and "info auto-load libthread-db".
7934         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
7935         and "show auto-load-scripts".  New description for "set auto-load",
7936         "show auto-load", "set auto-load gdb-scripts",
7937         "show auto-load gdb-scripts", "set auto-load python-scripts",
7938         "show auto-load python-scripts", "set auto-load local-gdbinit",
7939         "show auto-load local-gdbinit", "set auto-load libthread-db" and
7940         "show auto-load libthread-db".
7941         * auto-load.c: Remove include python/python-internal.h.  Add includes
7942         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
7943         cli/cli-setshow.h.
7944         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
7945         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
7946         (gdbpy_global_auto_load): Rename to ...
7947         (global_auto_load): ... here.
7948         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7949         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
7950         (script_language_gdb, source_gdb_script_for_objfile): New.
7951         (struct loaded_script): New field language.
7952         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
7953         LANGUAGE.
7954         (maybe_add_script): Add parameter language.  Drop redundant
7955         entry.full_path initialization.  Initialize entry.language and
7956         (*slot)->language.
7957         (auto_load_objfile_script): Change parameter suffix to language.
7958         Remove the call of maybe_add_script.
7959         Call language->source_script_for_objfile.
7960         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
7961         New.
7962         (collect_matching_scripts): Adjust it for
7963         struct collect_matching_scripts_data.
7964         (auto_load_info_scripts_pattern_nl): New variable.
7965         (info_auto_load_scripts): Rename to ...
7966         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
7967         for struct collect_matching_scripts_data.
7968         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
7969         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
7970         (auto_load_show_cmdlist_get, info_auto_load_cmd)
7971         (auto_load_info_cmdlist_get): New.
7972         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
7973         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
7974         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
7975         "info auto-load local-gdbinit".
7976         * auto-load.h (struct script_language): New.
7977         (gdbpy_global_auto_load): Rename to ...
7978         (global_auto_load): ... here.
7979         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7980         (auto_load_local_gdbinit_loaded): New declarations.
7981         (maybe_add_script): New parameter language.
7982         (auto_load_objfile_script): Change parameter suffix to language.
7983         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
7984         (auto_load_info_scripts, auto_load_set_cmdlist_get)
7985         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
7986         declarations.
7987         * linux-thread-db.c: Include auto-load.h and ctype.h.
7988         (auto_load_thread_db, show_auto_load_thread_db): New.
7989         (struct thread_db_info): New field filename.
7990         (delete_thread_db_info): Call xfree for FILENAME.
7991         (try_thread_db_load): Initialize FILENAME.
7992         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
7993         if !AUTO_LOAD_THREAD_DB.
7994         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
7995         (_initialize_thread_db): Install auto_load_thread_db
7996         as "set auto-load libthread-db" and install info_auto_load_libthread_db
7997         as "info auto-load libthread-db".
7998         * main.c (captured_main): Rename gdbpy_global_auto_load to
7999         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8000         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8001         (print_gdb_help): Extend the help for 'local init file'.
8002         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8003         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8004         (auto_load_scripts): Rename to ...
8005         (auto_load_python_scripts): ... here, update the comment.
8006         (gdbpy_load_auto_script_for_objfile): New declaration.
8007         (show_auto_load_python_scripts, script_language_python)
8008         (gdbpy_load_auto_script_for_objfile): New.
8009         (source_section_scripts): Refactor the code.
8010         (load_auto_scripts_for_objfile): Rename to ...
8011         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8012         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8013         (info_auto_load_python_scripts): New.
8014         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8015         Rename "set auto-load-scripts" to "set auto-load python-scripts".
8016         Register "set auto-load-scripts" as its deprecated alias.  Register
8017         "info auto-load python-scripts".  Register "info auto-load-scripts" as
8018         its deprecated alias.
8019         (load_auto_scripts_for_objfile): Rename to ...
8020         (gdbpy_load_auto_scripts_for_objfile): ... here.
8021         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8022         (gdbpy_load_auto_scripts_for_objfile): ... here.
8023
8024 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8025
8026         auto-load: Move files.
8027         * Makefile.in (SFILES): Add auto-load.c.
8028         (HFILES_NO_SRCDIR): Add auto-load.h.
8029         (COMMON_OBS): Add auto-load.o.
8030         (distclean): Change .gdbinit for gdb-gdb.gdb.
8031         * auto-load.c: New file, with parts from python/py-auto-load.c.
8032         * auto-load.h: New file, with parts from python/python.h.
8033         * configure: Regenerate.
8034         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8035         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8036         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8037         * main.c: Include auto-load.h.
8038         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8039         command.h, observer.h and progspace.h to auto-load.c.  Add include
8040         auto-load.h.
8041         (gdbpy_global_auto_load, struct auto_load_pspace_info)
8042         (struct loaded_script, auto_load_pspace_data)
8043         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8044         (hash_loaded_script_entry, eq_loaded_script_entry)
8045         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8046         (maybe_add_script): Move to auto-load.c.
8047         (source_section_scripts): Change maybe_add_script parameters passing,
8048         use script_not_found_warning_print.
8049         (clear_section_scripts, auto_load_objfile_script)
8050         (auto_load_new_objfile, loaded_script_ptr)
8051         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8052         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8053         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8054         auto_load_new_objfile and info_auto_load_scripts initizations to
8055         auto-load.c.
8056         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8057
8058 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8059
8060         Code cleanup.
8061         * charset.c (find_charset_names): Remove variables ix and elt.
8062         Use free_char_ptr_vec.
8063         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8064         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8065         debugdir_end.  New variable debugdir_len.
8066         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8067         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8068         declarations.
8069         * progspace.c (clear_program_space_solib_cache): Remove variables ix
8070         and elt.  Use free_char_ptr_vec.
8071         * source.c (add_path): Remove variables argv, arg and argv_index.
8072         New variables dir_vec, back_to, ix and name.
8073         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
8074         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
8075         no longer expecting DIRNAME_SEPARATOR.
8076         (openp): Remove variable p, p1 and len.  New variables dir_vec,
8077         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
8078         no longer expecting DIRNAME_SEPARATOR.
8079         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8080         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8081         debugdir_end.
8082         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8083         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8084         (dirnames_to_char_ptr_vec): New functions.
8085
8086 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8087
8088         Code cleanup.
8089         * source.c (add_path): Remove always true conditional 'p == 0' and
8090         unindent its code block.
8091
8092 2012-04-17  Pedro Alves  <palves@redhat.com>
8093
8094         * gdbtypes.h (FIELD_BITPOS): Rename to ...
8095         (FIELD_BITPOS_LVAL): ... this.
8096         (FIELD_BITPOS): New.
8097         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8098         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8099         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8100         SET_FIELD_BITPOS.
8101         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8102         SET_FIELD_BITPOS.
8103         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8104         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8105         * target-descriptions.c (tdesc_gdb_type): Adjust to use
8106         SET_FIELD_BITPOS.
8107
8108 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8109
8110         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8111         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8112         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8113         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8114         * jv-lang.c (java_link_class_type): Likewise, once.
8115         * stabsread.c (read_enum_type): Likewise.
8116
8117 2012-04-16  Yao Qi  <yao@codesourcery.com>
8118
8119         * common/agent.c (agent_run_command): Add one more parameter `len'.
8120         Update callers.
8121         * common/agent.h: Update declaration.
8122         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8123         Update.
8124         (linux_child_static_tracepoint_markers_by_strid): Ditto.
8125
8126 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
8127
8128         PR mi/13393
8129         * value.c (value_actual_type): New function.
8130         * value.h (value_actual_type): New declaration.
8131         * varobj.c (update_type_if_necessary): New function.
8132         (varobj_create): Call value_actual_type instead of
8133         value_type.
8134         (install_dynamic_child): distinct changed and type changed MI variable
8135         objects.
8136         (update_dynamic_varobj_children): Updated for install_dynamic_child
8137         change.  All callers updated.
8138         (varobj_update): Support for MI variable object type change if
8139         the value changed and RTTI is used to determine the type.
8140         (create_child_with_value): Call value_actual_type instead of
8141         value_type.
8142         (adjust_value_for_child_access): Extended with a new parameter which
8143         specify whether the given value should be casted to enclosing type.
8144         All callers updated.
8145
8146 2012-04-14  Yao Qi  <yao@codesourcery.com>
8147
8148         Import gnulib module inttypes from git
8149         (250b80067c1e1d8faa0c42fb572f721975b929c5)
8150         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8151         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8152         gnulib/m4/inttypes-pri.m4
8153         * aclocal.m4, config.in, configure: Regenerated.
8154         * gnulib/Makefile.am: Update.
8155         * gnulib/Makefile.in: Update.
8156         * gnulib/m4/gnulib-cache.m4: Update.
8157         * gnulib/m4/gnulib-comp.m4: Update.
8158         * gnulib/inttypes.in.h: New.
8159         * gnulib/m4/inttypes-pri.m4: New.
8160         * gnulib/m4/inttypes.m4: New.
8161
8162 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
8163
8164         * infrun.c (resume): Update PC address to the real PC after
8165         preparing to do displaced stepping.
8166
8167 2012-04-12  Doug Evans  <dje@google.com>
8168
8169         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8170         All callers updated.
8171
8172 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
8173
8174         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8175
8176 2012-04-12  Doug Evans  <dje@google.com>
8177
8178         * dwarf2read.c (create_all_type_units): Renamed from
8179         create_debug_types_hash_table.  All callers updated.
8180
8181         * dwarf2read.c (create_signatured_type_table_from_index): Rename
8182         local type_sig to sig_type, type_offset to type_offset_in_tu.
8183         (hash_signatured_type): Renamed from hash_type_signature,
8184         all callers updated.
8185         (eq_signatured_type): Renamed from eq_type_signature,
8186         all callers updated.
8187         (create_debug_types_hash_table): Rename local type_sig to sig_type.
8188         (process_enumeration_scope): Ditto.
8189         (lookup_signatured_type_at_offset): Ditto.
8190         (load_full_type_unit, read_signatured_type): Ditto.
8191
8192 2012-04-12  Yao Qi  <yao@codesourcery.com>
8193
8194         * remote.c (async_remote_interrupt): Correct function name in
8195         debug message.
8196         (async_remote_interrupt_twice): Ditto.
8197
8198 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
8199
8200         * source.c (find_and_open_source): Consistently pass resulting
8201         full path through xfullpath.
8202
8203 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8204
8205         Provide more specific displaced-stepping memory error message.
8206         * infrun.c (displaced_step_prepare): New variable status.  Call
8207         target_read_memory instead of read_memory, provide more specific
8208         error message.
8209
8210 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8211
8212         PR gdb/13901
8213         * darwin-nat.c (darwin_execvp): Revert previous patch.
8214
8215 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8216
8217         PR gdb/13901
8218         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8219         in case of change.
8220
8221 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8222
8223         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8224         warning.
8225
8226 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
8227
8228         New command 'explore' which helps explore values and types in
8229         scope.
8230         * NEWS: Add an entry about the new 'explore' command.
8231         * data-directory/Makefile.in: Add gdb/command/explore.py
8232         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8233         command using the GDB Python API.
8234
8235 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8236
8237         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8238         extension in jump target calculation.
8239
8240 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8241
8242         * mips-tdep.c (mips32_next_pc): Handle JALX.
8243
8244 2012-04-10  Yao Qi  <yao@codesourcery.com>
8245
8246         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8247
8248 2012-04-10  Yao Qi  <yao@codesourcery.com>
8249
8250         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8251         and gnulib/m4/gnulib-tool.m4.
8252
8253 2012-04-10  Doug Evans  <dje@google.com>
8254
8255         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8256         (load_partial_dies): Clarify comment.
8257         (find_partial_die): Support rereading type units.
8258         Clarify CU handling, if we know offset is in CU, don't search for the
8259         containing CU.  Add comment regarding memory waste.
8260
8261 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
8262
8263         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8264         i386/x32-avx and i386/x32-avx-linux.
8265         (i386/x32-expedite): New.
8266         (i386/x32-linux-expedite): Likewise.
8267         (i386/x32-avx-expedite): Likewise.
8268         (i386/x32-avx-linux-expedite): Likewise.
8269         ($(outdir)/i386/x32.dat): Likewise.
8270         ($(outdir)/i386/x32-linux.dat): Likewise.
8271         ($(outdir)/i386/x32-avx.dat): Likewise.
8272         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8273
8274         * features/i386/x32-avx-linux.xml: New file.
8275         * features/i386/x32-avx.xml: Likewise.
8276         * features/i386/x32-core.xml: Likewise.
8277         * features/i386/x32-linux.xml: Likewise.
8278         * features/i386/x32.xml: Likewise.
8279
8280         * features/i386/x32-avx-linux.c: New.  Generated.
8281         * features/i386/x32-avx.c: Likewise.
8282         * features/i386/x32-linux.c: Likewise.
8283         * features/i386/x32.c: Likewise.
8284         * regformats/i386/x32-avx-linux.dat: Likewise.
8285         * regformats/i386/x32-avx.dat: Likewise.
8286         * regformats/i386/x32-linux.dat: Likewise.
8287         * regformats/i386/x32.dat: Likewise.
8288
8289 2012-04-10  Tristan Gingold  <gingold@adacore.com>
8290
8291         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8292         code to kill the inferior.
8293
8294 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8295
8296         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8297         defines.
8298         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8299         defines.
8300         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8301         (yyvsp): New defines.
8302         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8303         defines.
8304         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8305         defines.
8306         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8307         defines.
8308         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8309         defines.
8310         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8311         defines.
8312
8313 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8314
8315         * sparc64-tdep.c (sparc64_store_arguments)
8316         (sparc64_store_arguments): Fix coding style.
8317
8318 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
8319
8320         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8321         complex floats, adjust some related comments and tighten a related
8322         assertion.
8323         (sparc64_extract_return_value): Handle complex floats.
8324
8325 2012-04-07  Doug Evans  <dje@google.com>
8326
8327         * dwarf2read.c (load_partial_dies): Change condition to assert.
8328
8329 2012-04-06  Doug Evans  <dje@google.com>
8330
8331         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8332         "mov %rsp,%rbp".
8333
8334 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
8335
8336         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8337         fencepost error.
8338         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8339         (v850_gdbarch_init): Set `num_regs' as appropriate for the
8340         architecture.
8341
8342 2012-04-05  Keith Seitz  <keiths@redhat.com>
8343
8344         * linespec.c (decode_compound): Remove.
8345         (enum offset_relative_sign): New enum.
8346         (struct line_offset): New struct.
8347         (struct linespec): New struct.
8348         (struct linespec_state): Move file_symtabs,
8349         user_filename, and user_function into struct linespec.
8350         Make result an anonymous struct holding vectors of
8351         symbolp and minsym_and_objfile_d.
8352         Add language member.
8353         (enum ls_token_type): New enum.
8354         (linespec_keywords): New array.
8355         (struct ls_token): New struct.
8356         (struct ls_parser): New struct.
8357         (linespec_lexer_lex_number): New function.
8358         (linespec_lexer_lex_keyword): New function.
8359         (is_ada_operator): New function.
8360         (skip_quote_char): New function.
8361         (copy_token_string): New function.
8362         (is_closing_quote_enclosed): New function.
8363         (find_parameter_list_end): New function.
8364         (linespec_lexer_lex_string): New function.
8365         (linespec_lexer_lex_one): New function.
8366         (linespec_lexer_consume_token): New function.
8367         (linespec_lexer_peek_token): New function.
8368         (cplusplus_error): Remove unused function.
8369         (find_methods): Update comment.
8370         (find_toplevel_char): Return const.
8371         (is_objc_method_format): Remove unused function.
8372         (find_toplevel_string): New function.
8373         (is_linespec_boundary): Remove.
8374         (symbol_not_found_error): New function.
8375         (find_method_overload_end): Remove function.
8376         (unexpected_linespec_error): New function.
8377         (keep_name_info): Remove.
8378         (linespec_parse_line_offset): New function.
8379         (linespec_parse_basic): New function.
8380         (canonicalize_linespec): New function.
8381         (decode_line_internal): Remove.
8382         (create_sals_line_offset): New function adapted from
8383         decode_all_digits.
8384         (convert_linespec_to_sals): New function.
8385         (parse_linespec): New function.
8386         (linespec_parser_new): New function.
8387         (linespec_state_destructor): Change parameter type to
8388         struct linespec_state *.
8389         Add language parameter.
8390         Remove freeing of moved members.
8391         (linespec_parser_delete): New function.
8392         (decode_line_full): Use parse_linespec and linespec_parser_new.
8393         (decode_line_1): Likewise.
8394         (decode_indirect): Rename to ...
8395         (linespec_expression_to_pc): ... this and rewrite
8396         to simply find CORE_ADDR, storing this result for later
8397         conversion to SALs.
8398         (locate_first_half): Remove.
8399         (deocde_objc): Add parameter LS.
8400         Initialize new struct collect_info members.
8401         Handle minimal symbols, too.
8402         (decode_compound): Delete.
8403         (lookup_prefix_sym): Rewrite.
8404         (compare_msymbols): New function.
8405         (find_method): Rewrite.
8406         Do not call cplusplus_error.
8407         (symtabs_from_filename): Rewrite.
8408         (collect_function_symbols): Delete.
8409         (find_function_symbols): Rewrite without ARGPTR-style
8410         processing.
8411         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
8412         (decode_dollar): Adapted and renamed to ...
8413         (linespec_parse_variable): ... this.
8414         (find_linespec_symbols): New function.
8415         (decode_label): Adapted and renamed to ...
8416         (find_label_symbols): ... this.
8417         (decode_digits_list_mode): Add and use LS argument.
8418         (decode_digits_ordinary): Likewise.
8419         (collect_symbols): Do not collect SALs, just symbols and msymbols.
8420         If in list mode, allow any symbol class.  Otherwise, only
8421         permit LOC_BLOCK symbols.
8422         (minsym_found): Update comments.
8423         (search_minsyms_for_name): Do not convert the matching symbol
8424         into a SAL.  Simply push the symbol and objfile into the
8425         result vector.
8426         (decode_variable): Delete. Contents adapted into
8427         find_linespec_symbols.
8428
8429         * cp-support.c (SKIP_SPACE): Remove.
8430         (operator_tokens): Remove unused global.
8431         (cp_validate_operator): Remove.
8432         * cp-support.h (cp_validate_operator): Remove declaration.
8433
8434 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8435
8436         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
8437         for TYPE_VPTR_FIELDNO.
8438         * valprint.c (valprint_check_validity): Make it global, move the
8439         function comment ...
8440         * value.h (valprint_check_validity): ... to this new declaration.
8441
8442 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8443
8444         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
8445         the STATE32 api for i386 state.
8446         (i386_darwin_store_inferior_registers): Likewise.
8447
8448 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8449
8450         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
8451         SS offset.
8452         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8453         format_string.
8454
8455 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8456
8457         PR gdb/13901
8458         * darwin-nat.c (darwin_execvp): Set binary preference.
8459
8460 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8461
8462         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
8463
8464 2012-03-30  Tom Tromey  <tromey@redhat.com>
8465
8466         * python/python.c (gdbpy_decode_line): Move cleanup creation out
8467         of TRY_CATCH.  Fix error handling.
8468         * python/py-value.c (convert_value_from_python): Move 'old'
8469         declaration to innermost scope.
8470
8471 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8472             Andrey Smirnov  <andrew.smirnov@gmail.com>
8473
8474         -Wshadow warning fix.
8475         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
8476         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
8477         Adjust code accordingly.
8478
8479 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8480
8481         * ada-lang.c (symbol_completion_add): Rename parameter
8482         "encoded" into "encoded_p".  Ajust code and documentation
8483         accordingly.
8484
8485 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8486             Andrey Smirnov  <andrew.smirnov@gmail.com>
8487
8488         -Wshadow warning fix.
8489         * ada-lang.c (symbol_completion_add): Rename parameter
8490         "wild_match" into wild_match_p.  Update code and documentation
8491         accordingly.
8492
8493 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8494
8495         * ada-lang.c (symbol_completion_match): Rename parameter
8496         "encoded" into "encoded_p".  Ajust code and documentation
8497         accordingly.
8498
8499 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8500             Andrey Smirnov  <andrew.smirnov@gmail.com>
8501
8502         -Wshadow warning fix.
8503         * ada-lang.c (symbol_completion_match): Rename parameter
8504         "wild_match" into "wild_match_p".  Adjust code and function
8505         documentation accordingly.
8506
8507 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8508             Andrey Smirnov  <andrew.smirnov@gmail.com>
8509
8510         -Wshadow warning fix.
8511         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
8512         "symbol_info" into "info".  Adjust code accordingly.
8513         (ada_lookup_symbol): Likewise.
8514
8515 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8516
8517         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
8518         of this function's documentation.
8519
8520 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8521             Andrey Smirnov  <andrew.smirnov@gmail.com>
8522
8523         -Wshadow warning fix.
8524         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
8525         variable into "wild_match_p".  Adjust code accordingly.
8526
8527 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8528             Andrey Smirnov  <andrew.smirnov@gmail.com>
8529
8530         -Wshadow warning fix.
8531         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
8532         parameter into "wild_match_p".  Adjust code accordingly.
8533         Document this parameter in the function description.
8534
8535 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8536             Andrey Smirnov  <andrew.smirnov@gmail.com>
8537
8538         -Wshadow warning fix.
8539         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
8540         "wild_match" parameter to "wild_match_p" (-Wshadow).
8541
8542 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8543
8544         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
8545         in function documentation.
8546
8547 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8548             Andrey Smirnov  <andrew.smirnov@gmail.com>
8549
8550         -Wshadow warning fix.
8551         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
8552         variable into wild_match_p.  Adjust code accordingly.
8553
8554 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8555             Andrey Smirnov  <andrew.smirnov@gmail.com>
8556
8557         * ada-valprint.c (ada_val_print_1): Move the code handling
8558         TYPE_CODE_ENUM inside its own lexical block.  Declare
8559         variables len and val there, instead of in the function's
8560         top level block.  Avoid declaring deref_val again in a way
8561         that shadows another variable of the same name declared
8562         in one of the up-level blocks.  Just re-use the up-level
8563         variable instead.
8564
8565 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8566
8567         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
8568         Replace block_found argument by symbol_info.  Adjust
8569         implementation accordingly.  Add function documentation.
8570         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
8571         Fix documentation.
8572         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
8573         * ada-exp.y (write_object_renaming): Adjust to new
8574         ada_lookup_encoded_symbol API.
8575
8576 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8577
8578         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
8579         documentation.
8580
8581 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
8582
8583         * v850-tdep.c: Add the enum values for mpu and fpu registers.
8584         (v850_register_name): Add the mpu and fpu register names.
8585         (v850e_register_name): Add the mpu and fpu register names.
8586         (v850e2_register_name): New function.
8587         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
8588         bfd_mach_v850e2v3.
8589
8590 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
8591
8592         * NEWS: Add entry for Ada varobj support.
8593
8594 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
8595
8596         * varobj.c (default_value_is_changeable_p): New function,
8597         extracted from varobj_value_is_changeable_p.  Add declaration.
8598         (ada_value_is_changeable_p): New function, extracted from
8599         varobj_value_is_changeable_p.  Add declaration.
8600         (struct language_specific): New field "value_is_changeable_p".
8601         (languages): Add entries for new field.
8602         (varobj_create): Set language before calling install_new_value.
8603         (varobj_value_is_changeable_p): Reimplement to call the varobj's
8604         "value_is_changeable_p" language callback.
8605
8606 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
8607
8608         * ada-varobj.h, ada-varobj.c: New files.
8609         * Makefile.in (SFILES): Add ada-varobj.c.
8610         (HFILES_NO_SRCDIR): Add ada-varobj.h.
8611         (COMMON_OBS): Add ada-varobj.o.
8612
8613 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
8614
8615         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
8616         (struct language_specific): New field "value_has_mutated".
8617         (languages): Set field "value_has_mutated" in each entry of array.
8618         (varobj_value_has_mutated): New function.
8619         (varobj_udpdate): Add handling of type mutation.
8620         (value_of_root): Add handling of type mutation.
8621         (ada_value_has_mutated): New function.
8622
8623 2012-03-28  Pedro Alves  <palves@redhat.com>
8624
8625         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
8626         Always supply $fr0 as 0.0 and $fr1 as 1.0.
8627
8628 2012-03-28  Tom Tromey  <tromey@redhat.com>
8629
8630         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
8631         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
8632         before returning.
8633
8634 2012-03-28  Tom Tromey  <tromey@redhat.com>
8635
8636         * .dir-locals.el: New file.
8637
8638 2012-03-28  Pedro Alves  <palves@redhat.com>
8639
8640         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
8641
8642 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
8643
8644         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
8645         handling for r0.
8646
8647 2012-03-27  Pedro Alves  <palves@redhat.com>
8648
8649         Eliminate struct ui_stream.
8650
8651         * ui-out.h (struct ui_stream): Delete.
8652         (ui_out_field_stream): Adjust prototype.
8653         (ui_out_stream_new, ui_out_stream_delete)
8654         (make_cleanup_ui_out_stream_delete): Delete declarations.
8655         * ui-out.c (ui_out_field_stream): Change prototype to take a
8656         ui_file instead of a ui_stream.  Adjust.
8657         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
8658         (make_cleanup_ui_out_stream_delete): Delete.
8659         * breakpoint.c (print_breakpoint_location)
8660         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
8661         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
8662         * disasm.c (dump_insns): Ditto.
8663         (do_mixed_source_and_assembly, do_assembly_only): Adjust
8664         prototype.
8665         (gdb_disassembly): Use ui_file/mem_fileopen instead of
8666         ui_stream/ui_out_stream_new.
8667         * infcmd.c (print_return_value): Ditto.
8668         * osdata.c (info_osdata_command): Don't allocate a local
8669         ui_stream.
8670         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
8671         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
8672         * tracepoint.c (print_one_static_tracepoint_marker): Don't
8673         allocate a local ui_stream.
8674         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
8675         instead of ui_stream/ui_out_stream_new.
8676         (list_args_or_locals): Don't allocate a local ui_stream.
8677         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
8678         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
8679         ui_stream/ui_out_stream_new.
8680         * cli/cli-setshow.c (do_setshow_command): Ditto.
8681
8682 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
8683
8684         * arm-linux-tdep.c (arm_linux_init_abi): Call
8685         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
8686         * arm-tdep.c (arm_process_record): New function.
8687         (deallocate_reg_mem): New function.
8688         (decode_insn): New function.
8689         (thumb_record_branch): New function.
8690         (thumb_record_ldm_stm_swi(): New function.
8691         (thumb_record_misc): New function.
8692         (thumb_record_ld_st_stack): New function.
8693         (thumb_record_ld_st_imm_offset): New function.
8694         (thumb_record_ld_st_reg_offset(): New function.
8695         (thumb_record_add_sub_cmp_mov): New function.
8696         (thumb_record_shift_add_sub): New function.
8697         (arm_record_coproc_data_proc): New function.
8698         (arm_record_coproc): New function.
8699         (arm_record_b_bl): New function.
8700         (arm_record_ld_st_multiple): New function.
8701         (arm_record_ld_st_reg_offset): New function.
8702         (arm_record_ld_st_imm_offset): New function.
8703         (arm_record_data_proc_imm): New function.
8704         (arm_record_data_proc_misc_ld_str): New function.
8705         (arm_record_extension_space): New function.
8706         (arm_record_strx): New function.
8707         (sbo_sbz): New function.
8708         (struct insn_decode_record): New structure for arm insn record.
8709         (REG_ALLOC): New macro for reg allocations.
8710         (MEM_ALLOC): New macro for memory allocations.
8711         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
8712
8713 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
8714
8715         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
8716         (store_register): Likewise.
8717
8718 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
8719
8720         * MAINTAINERS (Write After Approval): Add myself to the list.
8721
8722 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
8723
8724         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
8725         Describe also the option "auto".
8726
8727 2012-03-22  Richard Henderson  <rth@redhat.com>
8728
8729         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
8730         * sparc-nat.c (sparc_xfer_wcookie): Make static.
8731
8732 2012-03-22  Richard Henderson  <rth@redhat.com>
8733
8734         * jit.c (jit_read_code_entry): Compute alignment and offset of
8735         int64_t member before computing entry_size.
8736
8737 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
8738
8739         Python scripting: Add new method Value.referenced_value to
8740         gdb.Value which can dereference pointer as well as reference
8741         values.
8742         * NEWS: Add entry under 'Python scripting' about the new method
8743         Value.referenced_value on gdb.Value objects.
8744         * python/py-value.c (valpy_referenced_value): New function
8745         defining a new method on gdb.Value objects which can dereference
8746         pointer and reference values.
8747
8748 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
8749
8750         * MAINTAINERS (Write After Approval): Add myself to the list.
8751
8752 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
8753
8754         * symtab.c (skip_prologue_sal): Change test to check for "main()"
8755         in addition to "main".
8756
8757 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
8758
8759         * expression.h (op_name): Add declaration.
8760         * expprint.c (op_name): Remove declaration.  Make non-static.
8761         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
8762
8763 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
8764
8765         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
8766         of struct siginfo.
8767         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
8768         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
8769         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
8770         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
8771         (linux_nat_get_siginfo): Likewise.
8772         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
8773         (linux_nat_get_siginfo): Likewise.
8774         * linux-tdep.c (linux_get_siginfo_type): Likewise.
8775         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
8776         * procfs.c (gdb_siginfo_t): Likewise.
8777
8778 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
8779
8780         * .gitignore: Ignore more files.
8781
8782 2012-03-20  Pedro Alves  <palves@redhat.com>
8783
8784         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
8785         returns.
8786
8787 2012-03-20  Yao Qi  <yao@codesourcery.com>
8788
8789         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
8790         comment.
8791
8792 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8793
8794         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
8795         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
8796         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
8797         sect_offset.
8798         * dwarf2expr.h (cu_offset, sect_offset): New types.
8799         (struct dwarf_expr_context_funcs) <dwarf_call>
8800         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
8801         sect_offset.
8802         (struct dwarf_expr_context) <len>: Improve the comment.
8803         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
8804         cu_offset and sect_offset.
8805         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
8806         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
8807         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
8808         * dwarf2loc.h: Include dwarf2expr.h.
8809         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
8810         and sect_offset.
8811         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
8812         Improve the comment.
8813         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
8814         (struct signatured_type, struct line_header, struct partial_die_info)
8815         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
8816         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
8817         (get_die_type_at_offset, create_cus_from_index)
8818         (create_signatured_type_table_from_index, dw2_get_file_names)
8819         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
8820         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
8821         (create_debug_types_hash_table, process_psymtab_comp_unit)
8822         (load_partial_comp_unit, create_all_comp_units)
8823         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
8824         (load_full_comp_unit, dwarf2_physname, read_import_statement)
8825         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
8826         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
8827         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
8828         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
8829         (find_partial_die, read_attribute_value, lookup_die_type)
8830         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
8831         (is_ref_attr): New function comment.
8832         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
8833         Use cu_offset and sect_offset.
8834         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
8835         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
8836         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
8837         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
8838         (offset_and_type_hash, offset_and_type_eq, set_die_type)
8839         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
8840         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
8841         sect_offset.
8842
8843 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8844
8845         Code cleanup.
8846         * python/py-auto-load.c (source_section_scripts): New variable back_to.
8847         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
8848         with xfree.
8849         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
8850
8851 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8852
8853         * NEWS: Describe new options --init-command=FILE, -ix and
8854         --init-eval-command=COMMAND, -iex.
8855         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
8856         CMDARG_INIT_COMMAND.
8857         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
8858         "init-command", "init-eval-command", "ix" and "iex" to the variable
8859         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
8860         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
8861         (print_gdb_help): Describe --init-command=FILE, -ix and
8862         --init-eval-command=COMMAND, -iex.
8863
8864 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8865
8866         Code cleanup.
8867         * main.c (struct cmdarg): Move it here from main.  Add more comments.
8868         (cmdarg_s, VEC (cmdarg_s)): New.
8869         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
8870         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
8871         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
8872         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
8873         of CMDARG.
8874
8875 2012-03-19  Tom Tromey  <tromey@redhat.com>
8876
8877         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
8878
8879 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8880
8881         PR symtab/13777
8882         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
8883         GCC >=4.5.
8884
8885 2012-03-16  Chris January  <chris.january@allinea.com>
8886
8887         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
8888         of clear.
8889
8890 2012-03-16  Chris January  <chris.january@allinea.com>
8891
8892         * source.c (add_path): Use memmove instead of strcpy because the
8893         strings overlap.
8894
8895 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
8896
8897         * value.h (set_value_parent): Add declaration.
8898         * value.c (set_value_parent): New function.
8899         (value_address): If VALUE->PARENT is not NULL, then use it as
8900         the base address instead of VALUE->LOCATION.address.
8901         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
8902         the same as OBJ's address.  Adjust V's offset accordingly.
8903         Set V's parent.
8904
8905 2012-03-16  Gary Benson  <gbenson@redhat.com>
8906
8907         PR breakpoints/10738
8908         * dwarf2read.c (use_deprecated_index_sections): New global.
8909         (struct partial_die_info): New member may_be_inlined.
8910         (read_partial_die): Set may_be_inlined where appropriate.
8911         (add_partial_subprogram): Add partial symbols for partial
8912         DIEs that may be inlined.
8913         (new_symbol_full): Add inlined subroutines to the current
8914         scope.
8915         (write_psymtabs_to_index): Bump version number.
8916         (dwarf2_read_index): Read only version 6 indices unless
8917         use_deprecated_index_sections is set.
8918         * linespec.c (symbol_and_data_callback): New structure.
8919         (iterate_inline_only): New function.
8920         (iterate_over_all_matching_symtabs): New argument
8921         "include_inline".  If nonzero, also call the callback for
8922         symbols representing inlined subroutines.
8923         (lookup_prefix_sym): Pass extra argument to the above.
8924         (find_function_symbols): Likewise.
8925         (add_matching_symbols_to_info): Likewise.
8926         * NEWS: Mention that GDB can now set breakpoints on inlined
8927         functions.
8928
8929 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
8930
8931         * p-typeprint.c (pascal_type_print_method_args):
8932         Fix display of parameter of methods.
8933
8934 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
8935
8936         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
8937         Add missing prototype.
8938
8939 2012-03-16  Yao Qi  <yao@codesourcery.com>
8940             Jan Kratochvil  <jan.kratochvil@redhat.com>
8941
8942         Fix false compilation warning.
8943         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
8944
8945 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
8946             Pedro Alves  <pedro@codesourcery.com>
8947
8948         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
8949         (arm_register_g_packet_guesses): New function.
8950         (arm_gdbarch_init): Don't force a target description with
8951         registers when the executable is detected as M-profile.  Instead
8952         set gdbarch->tdep->is_m.  Register `g' packet guesses.
8953         (_initialize_arm_tdep): Initialize the new target description.
8954         * features/arm-with-m-fpa-layout.xml: New description.
8955         * features/arm-with-m-fpa-layout.c: New, generated.
8956
8957 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
8958
8959         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
8960         Update function description.
8961         (insert_bp_location): Do not wipe bl->target_info out.
8962         * mem-break.c: #include "gdb_string.h".
8963         (default_memory_insert_breakpoint): Do not call target_read_memory
8964         with a pointer to the breakpoint's shadow_contents buffer.  Use
8965         a local buffer instead.
8966         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
8967
8968 2012-03-15  Tom Tromey  <tromey@redhat.com>
8969
8970         * NEWS: Mention "info vtbl", not "info vtable".
8971         * cp-support.c (info_vtbl_command): Fix comment.
8972         (_initialize_cp_support): Fix text.
8973
8974 2012-03-15  Tom Tromey  <tromey@redhat.com>
8975
8976         * cp-valprint.c (cp_print_value_fields): Use
8977         print_function_pointer_address for vtable slot.
8978
8979 2012-03-15  Tom Tromey  <tromey@redhat.com>
8980
8981         * gnu-v3-abi.c (struct value_and_voffset): New.
8982         (hash_value_and_voffset, eq_value_and_voffset)
8983         (compare_value_and_voffset, compute_vtable_size)
8984         (print_one_vtable, gnuv3_print_vtable): New functions.
8985         (init_gnuv3_ops): Initialize 'print_vtable' field.
8986         * cp-support.c (info_vtbl_command): New function.
8987         (_initialize_cp_support): Add "info vtbl".
8988         * cp-abi.h (cplus_print_vtable): Declare.
8989         (struct cp_abi_ops) <print_vtable>: New field.
8990         * cp-abi.c (cplus_print_vtable): New function.
8991         * NEWS: Update.
8992
8993 2012-03-15  Tom Tromey  <tromey@redhat.com>
8994
8995         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
8996         iterate_over_symbols.
8997
8998 2012-03-14  Doug Evans  <dje@google.com>
8999
9000         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9001         DW_OP_GNU_parameter_ref.
9002
9003 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9004
9005         Fix double prompt of 'interpreter-exec mi'.
9006         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9007         (mi_interpreter_resume): use it.
9008         (mi_execute_command_input_handler): New function.
9009         * mi/mi-main.c (mi_execute_command): Move prompt printing to
9010         mi_execute_command_input_handler.
9011
9012 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
9013
9014         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9015         prototype.
9016         (darwin_debug_port_info): Make static.
9017         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9018         * machoread.c (_initialize_machoread): Add prototype.
9019         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9020         (i386_darwin_set_control, i386_darwin_get_control)
9021         i386_darwin_dr_set_addr, i386_darwin_get_addr)
9022         i386_darwin_get_status, i386_darwin_get_control):
9023         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9024
9025 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9026
9027         * ax-gdb.c (gen_usual_unary): Remove special handling of
9028         enum and bool types.
9029
9030 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9031
9032         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9033
9034 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9035
9036         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9037
9038 2012-03-13  Chris January  <chris.january@allinea.com>
9039
9040         * aix-thread.c (fill_sprs): Store the floating point registers
9041         at the correct offsets into vals.
9042
9043 2012-03-13  Doug Evans  <dje@google.com>
9044
9045         * NEWS: Mention symbol-reloading has been deleted.
9046         * symfile.c (symbol_reloading): Delete.
9047         (show_symbol_reloading): Delete.
9048         (_initialize_symfile): Delete set/show symbol-reloading.
9049
9050         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9051         read_in_chain until we have successfully read it in.
9052         (load_full_comp_unit): Ditto.
9053         (read_signatured_type): Add comment.
9054
9055 2012-03-13  Chris January  <chris.january@allinea.com>
9056
9057         * stabsread.c (fix_common_block): Change type of valu argument
9058         to CORE_ADDR.
9059
9060 2012-03-13  Chris January  <chris.january@allinea.com>
9061
9062         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9063         instruction.
9064
9065 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9066
9067         * common/linux-procfs.c (linux_proc_get_int): New, from
9068         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9069         field.
9070         (linux_proc_get_tgid): Only call linux_proc_get_int.
9071         (linux_proc_get_tracerpid): New.
9072         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9073         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9074         linux_proc_pid_has_state.
9075         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9076         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9077         (linux_ptrace_attach_warnings): New.
9078         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9079         New declaration.
9080         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9081         (linux_nat_attach): New variables ex, buffer, message and message_s.
9082         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9083
9084 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9085
9086         * Makefile.in (linux-ptrace.o): New.
9087         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9088         from linux-nat.c.
9089         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9090         * common/linux-ptrace.c: New file.
9091         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9092         * config/arm/linux.mh: Likewise.
9093         * config/i386/linux.mh: Likewise.
9094         * config/i386/linux64.mh: Likewise.
9095         * config/ia64/linux.mh: Likewise.
9096         * config/m32r/linux.mh: Likewise.
9097         * config/m68k/linux.mh: Likewise.
9098         * config/mips/linux.mh: Likewise.
9099         * config/pa/linux.mh: Likewise.
9100         * config/powerpc/linux.mh: Likewise.
9101         * config/powerpc/ppc64-linux.mh: Likewise.
9102         * config/powerpc/spu-linux.mh: Likewise.
9103         * config/s390/s390.mh: Likewise.
9104         * config/sparc/linux.mh: Likewise.
9105         * config/sparc/linux64.mh: Likewise.
9106         * config/xtensa/linux.mh: Likewise.
9107         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9108         common/linux-procfs.c.
9109         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9110
9111 2012-03-13  Hui Zhu  <teawater@gmail.com>
9112             Pedro Alves  <palves@redhat.com>
9113
9114         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
9115         CREATE_BREAKPOINT_FLAGS_INSERTED.
9116         (create_breakpoint_sal, create_breakpoints_sal)
9117         (base_breakpoint_create_breakpoints_sal)
9118         (tracepoint_create_breakpoints_sal)
9119         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
9120         down.
9121         (break_command_1, handle_gnu_v3_exceptions, trace_command)
9122         (ftrace_command, strace_command): Adjust.
9123         (create_tracepoint_from_upload): Pass
9124         CREATE_BREAKPOINT_FLAGS_INSERTED.
9125         * breakpoint.h (enum breakpoint_create_flags): New.
9126         (create_breakpoint): New flags parameter.
9127         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9128         * python/py-breakpoint.c (bppy_init): Adjust.
9129         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9130         * spu-tdep.c (spu_catch_start): Adjust.
9131
9132 2012-03-13  Pedro Alves  <palves@redhat.com>
9133             Hui Zhu  <teawater@gmail.com>
9134             Yao Qi  <yao@codesourcery.com>
9135
9136         * remote.c (struct remote_state): New field `starting_up'.
9137         (remote_start_remote): Set and clear it.
9138         (remote_can_download_tracepoint): If starting up, return false.
9139
9140 2012-03-13  Yao Qi  <yao@codesourcery.com>
9141
9142         * inferior.h (struct inferior): Remove fields any_syscall_count,
9143         syscalls_counts and total_syscalls_count.  Move them to new
9144         struct catch_syscall_inferior_data in breakpoint.c.
9145         * breakpoint.c: Call DEF_VEC_I(int).
9146         (struct catch_syscall_inferior_data): New.
9147         (get_catch_syscall_inferior_data): New.
9148         (catch_syscall_inferior_data_cleanup): New.
9149         (insert_catch_syscall): Update to access data in
9150         struct catch_syscall_inferior_data.
9151         (insert_catch_syscall): Likewise.
9152         (remove_catch_syscall): Likewise.
9153         (remove_catch_syscall): Likewise.
9154         (is_syscall_catchpoint_enabled): Likewise.
9155         (add_catch_command): Likewise.
9156         (_initialize_breakpoint): Register cleanup.
9157         * breakpoint.h: Removed DEF_VEC_I(int).
9158         * dwarf2loc.c: Call DEF_VEC_I(int).
9159         * mi/mi-main.c: Likewise.
9160
9161 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
9162
9163         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9164
9165 2012-03-12  Chris January  <chris.january@allinea.com>
9166
9167         * aix-thread.c (_initialize_aix_thread): Add prototype.
9168         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9169         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9170
9171 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
9172
9173         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9174         include of "amd64-nat.h".
9175
9176 2012-03-12  Tom Tromey  <tromey@redhat.com>
9177
9178         * buildsym.c (record_pending_block): Now static.
9179         * buildsym.h: (record_pending_block): Remove.
9180
9181 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
9182
9183         * amd64bsd-nat.c: Include amd64bsd-nat.h.
9184
9185 2012-03-09  Tom Tromey  <tromey@redhat.com>
9186
9187         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9188         producer_is_gxx_lt_4_6>: New fields.
9189         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9190
9191 2012-03-09  Tom Tromey  <tromey@redhat.com>
9192
9193         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9194
9195 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9196
9197         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9198         prototype.
9199
9200 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9201
9202         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9203
9204 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9205
9206         Fix -Wmissing-prototypes build.
9207         * arm-linux-nat.c (get_thread_id): Make it static.
9208         * xtensa-linux-nat.c (get_thread_id): Likewise.
9209
9210 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9211
9212         * server.c (process_point_options): If a conditional expression
9213         is found, only print a message if remote_debug is nonzero.
9214
9215 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
9216
9217         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9218         of internal error for unknown/unsupported types.
9219
9220 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9221
9222         Fix CU relative vs. absolute DIE offsets.
9223         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9224         offset to offset_in_cu.
9225         * dwarf2read.c (process_enumeration_scope): Add CU offset to
9226         TYPE_OFFSET.
9227         (dwarf2_fetch_die_location_block): Rename parameter offset to
9228         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
9229
9230 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9231
9232         * libunwind-frame.c: Rename to ...
9233         * ia64-libunwind-tdep.c: ... here.
9234         * libunwind-frame.h: Rename to ...
9235         * ia64-libunwind-tdep.h: ... here.
9236         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9237         ia64-libunwind-tdep.h.
9238         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9239         * README (--with-libunwind): Rename to ...
9240         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9241         * config.in: Regenerate.
9242         * configure: Regenerate.
9243         * configure.ac: New option --with-libunwind-ia64, make the
9244         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
9245         Remove AC_DEFINE for HAVE_LIBUNWIND.
9246         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9247         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9248         Rename libunwind-frame in the general comment.
9249         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9250         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9251         Move forward declarations inside #ifndef.  Rename libunwind-frame in
9252         the general comment.
9253         * ia64-tdep.c: Rename libunwind-frame.h #include to
9254         ia64-libunwind-tdep.h.
9255         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9256         (ia64_libunwind_descr): Rename libunwind-frame to
9257         ia64-libunwind-tdep in these function comments.
9258         * ia64-tdep.h: Rename libunwind-frame.h #include to
9259         ia64-libunwind-tdep.h.
9260         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9261         ia64-libunwind-tdep in that data comment.
9262
9263 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9264
9265         * libunwind-frame.h (struct frame_unwind): New declaration.
9266
9267 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9268
9269         * breakpoint.c (_initialize_breakpoint): Fix error in help of
9270         "set breakpoint condition-evaluation" command.
9271
9272 2012-03-08  Tristan Gingold  <gingold@adacore.com>
9273
9274         * sparc-stub.c: Move to stubs/
9275         * sh-stub.c: Likewise.
9276         * m68k-stub.c: Likewise.
9277         * m32r-stub.c: Likewise.
9278         * i386-stub.c: Likewise.
9279
9280 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
9281
9282         * m68klinux-tdep.c (m68k_linux_init_abi): Register
9283         linux_get_siginfo_type.
9284
9285         * m68klinux-nat.c: Include "gdb_proc_service.h".
9286         (PTRACE_GET_THREAD_AREA): Define.
9287         (ps_get_thread_area): New function.
9288
9289 2012-03-08  Yao Qi  <yao@codesourcery.com>
9290
9291         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9292         `xsnprintf'.
9293         (remote_query_attached): Likewise.
9294         (remote_static_tracepoint_marker_at): Likewise.
9295         (remote_set_permissions): Likewise.
9296         (remote_detach_1, extended_remote_attach_1): Likewise.
9297         (send_g_packet, remote_vkill): Likewise.
9298         (extended_remote_disable_randomization): Likewise.
9299         (remote_add_target_side_condition): Likewise.
9300         (remote_insert_breakpoint): Likewise.
9301         (remote_remove_breakpoint): Likewise.
9302         (remote_insert_watchpoint): Likewise.
9303         (remote_remove_watchpoint): Likewise.
9304         (remote_insert_hw_breakpoint): Likewise.
9305         (remote_insert_hw_breakpoint): Likewise.
9306         (remote_remove_hw_breakpoint): Likewise.
9307         (remote_download_command_source): Likewise.
9308         (remote_download_tracepoint): Likewise.
9309         (remote_download_trace_state_variable): Likewise.
9310         (remote_disable_tracepoint): Likewise.
9311         (remote_trace_set_readonly_regions): Likewise.
9312         (remote_get_tracepoint_status): Likewise.
9313         (remote_trace_find): Likewise.
9314         (remote_get_trace_state_variable_value): Likewise.
9315         (remote_set_disconnected_tracing): Likewise.
9316         (remote_set_circular_trace_buffer): Likewise.
9317         (remote_get_min_fast_tracepoint_insn_len): Likewise.
9318         (remote_use_agent): Likewise.
9319         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9320         Update callers.
9321
9322 2012-03-07  Pedro Alves  <palves@redhat.com>
9323
9324         * NEWS: Mention QProgramSignals.
9325         * inferior.h (update_signals_program_target): Declare.
9326         * infrun.c: (update_signals_program_target): New.
9327         (handle_command): Update the target of the new program signals
9328         array changes.
9329         * remote.c (PACKET_QProgramSignals): New enum.
9330         (last_program_signals_packet): New global.
9331         (remote_program_signals): New.
9332         (remote_start_remote): Update the target with the program signals
9333         list.
9334         (remote_protocol_features): Add entry for QPassSignals.
9335         (remote_open_1): Free anc clear last_program_signals_packet.
9336         (init_remote_ops): Install remote_program_signals.
9337         * target.c (update_current_target): Adjust.
9338         (target_program_signals): New.
9339         * target.h (struct target_ops) <to_program_signals>: New field.
9340         (target_program_signals): Declare.
9341
9342 2012-03-07  Pedro Alves  <palves@redhat.com>
9343
9344         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9345         extensions.
9346
9347 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
9348
9349         * m68klinux-nat.c (getregs_supplies): Make static.
9350         (getfpregs_supplies): Likewise.
9351         (have_ptrace_getregs): Likewise.
9352
9353 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
9354
9355         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9356         in call to get_die_type_at_offset.
9357
9358 2012-03-06  Stan Shebs  <stan@codesourcery.com>
9359
9360         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9361         * mi/mi-cmd-disas.c: Ditto.
9362         * mi/mi-cmd-env.c: Ditto.
9363         * mi/mi-cmd-file.c: Ditto.
9364         * mi/mi-cmd-stack.c: Ditto.
9365         * mi/mi-cmd-target.c: Ditto.
9366         * mi/mi-cmd-var.c: Ditto.
9367         * mi/mi-cmds.c: Ditto.
9368         * mi/mi-cmds.h: Ditto.
9369         * mi/mi-console.c: Ditto.
9370         * mi/mi-getopt.c: Ditto.
9371         * mi/mi-getopt.h: Ditto.
9372         * mi/mi-interp.c: Ditto.
9373         * mi/mi-main.c: Ditto.
9374         * mi/mi-out.c: Ditto.
9375         * mi/mi-parse.c: Ditto.
9376         * mi/mi-parse.h: Ditto.
9377         * mi/mi-symbol-cmds.c: Ditto.
9378
9379         * mi/mi-getopt.h: Move mi_opt struct up.
9380         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9381         return.
9382         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9383
9384 2012-03-06  Tom Tromey  <tromey@redhat.com>
9385
9386         * proc-service.c (ps_pglobal_lookup): Set the current program
9387         space.
9388
9389 2012-03-06  Pedro Alves  <palves@redhat.com>
9390
9391         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9392
9393 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
9394
9395         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9396
9397 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9398
9399         Code cleanup.
9400         * common/linux-osdata.c (linux_common_core_of_thread): New function
9401         comment.
9402         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
9403         call by linux_common_core_of_thread.
9404         (linux_nat_core_of_thread_1): Remove.
9405         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
9406         * linux-thread-db.c: Include linux-osdata.h.
9407         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
9408         linux_common_core_of_thread.
9409
9410 2012-03-05  Tom Tromey  <tromey@redhat.com>
9411
9412         * value.c (value_primitive_field): Don't fetch contents for
9413         non-virtual bases.
9414
9415 2012-03-05  Tom Tromey  <tromey@redhat.com>
9416
9417         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
9418
9419 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9420
9421         * s390-nat.c: Include "gregset.h".
9422
9423 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9424
9425         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
9426         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
9427         (libunwind_load): New variable so_error, use it for dlerror.  Try to
9428         load also LIBUNWIND_SO_7.
9429
9430 2012-03-05  Pedro Alves  <palves@redhat.com>
9431
9432         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
9433         is not NULL, and remove resulting dead code.
9434
9435 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
9436
9437         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
9438         prologue to sh_analyze_prologue.
9439         (sh_analyze_prologue): Make better use of such an upper limit, and
9440         generally be more cautious about accessing memory.
9441
9442 2012-03-05  Tom Tromey  <tromey@redhat.com>
9443
9444         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
9445         _initialize_ia64_hpux_tdep.
9446
9447 2012-03-05  Pedro Alves  <palves@redhat.com>
9448
9449         PR gdb/13766
9450
9451         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
9452         the register state is clear, supply explicit zero, instead of
9453         marking the register unavailable.
9454
9455 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9456
9457         * NEWS: Mention OpenVMS ia64 new target.
9458
9459 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9460
9461         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
9462         (ia64_unw_accessors, ia64_unw_rse_accessors)
9463         (ia64_libunwind_descr): Declare.
9464         * ia64-vms-tdep.c: New file.
9465         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
9466         (ia64_libunwind_descr): Make them public.
9467         * configure.tgt: Add ia64-*-*vms*.
9468         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
9469         (ALLDEPFILES): Add ia64-vms-tdep.c
9470
9471 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9472
9473         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
9474         * remote.c (PACKET_qXfer_uib): New enum value.
9475         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
9476         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
9477         (_initialize_remote): Call add_packet_config_cmd for
9478         xfer:uib packet.
9479
9480 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9481
9482         * osabi.c (gdb_osabi_names): Add OpenVMS.
9483         (generic_elf_osabi_sniffer): Likewise.
9484         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
9485
9486 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9487
9488         Removed unused code.
9489         * libunwind-frame.c (libunwind_frame_unwind)
9490         (libunwind_frame_base_address): Remove.
9491         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
9492
9493 2012-03-04  Yao Qi  <yao@codesourcery.com>
9494
9495         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
9496         remove trailing new line.
9497         (agent_run_command, agent_run_command): Add _ markup.
9498         (agent_capability_check): Likewise.
9499
9500 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9501
9502         * breakpoint.c (set_condition_evaluation_mode): Set
9503         CONDITION_EVALUATION_MODE unconditionally.
9504
9505 2012-03-03  Yao Qi  <yao@codesourcery.com>
9506
9507         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
9508         * common/agent.h: Update declaration.
9509         * inf-child.c (inf_child_use_agent): New.
9510         (inf_child_can_use_agent): New.
9511         (inf_child_target): Initialize fields `to_use_agent'
9512         and `to_can_use_agent'.
9513         * agent.c (agent_new_objfile): New.
9514         (_initialize_agent): Add agent_new_objfile to new_objfile
9515         observer.
9516
9517         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
9518         New.
9519         (linux_target_install_ops): Initialize field
9520         `to_static_tracepoint_markers_by_strid'.
9521         * remote.c (free_current_marker): Move it to ...
9522         * tracepoint.c (free_current_marker): ... here.  New.
9523         (cleanup_target_stop): New.
9524         * tracepoint.h: Declare free_current_marker.
9525         * NEWS: Add one entry about `info static-tracepoint-marker'.
9526
9527 2012-03-03  Yao Qi  <yao@codesourcery.com>
9528
9529         * common/agent.c (agent_loaded_p): New.
9530         (agent_look_up_symbols): New global.
9531         * common/agent.h: Declare agent_loaded_p.
9532
9533 2012-03-03  Yao Qi  <yao@codesourcery.com>
9534
9535         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
9536         (agent_capability_check, agent_capability_invalidate): New.
9537         (symbol_list): New array element.
9538         * common/agent.h (enum agent_capa): New.
9539         * target.c (target_pre_inferior): Call agent_capability_invalidate.
9540
9541 2012-03-03  Yao Qi  <yao@codesourcery.com>
9542
9543         * target.h (struct target_ops) <to_use_agent>: New field.
9544         (struct target_ops) <to_can_use_agent>: New field.
9545         (target_use_agent, target_can_use_agent): New macro.
9546         * target.c (update_current_target): Update.
9547         * remote.c: New enum `PACKET_QAgent'.
9548         (remote_protocol_features): Add a new element.
9549         (remote_use_agent, remote_can_use_agent): New.
9550         (init_remote_ops): Initialize field `can_use_agent' with
9551         remote_can_use_agent.  Intiailize field `use_agent' with
9552         remote_use_agent.
9553         * common/agent.c (use_agent): New global.
9554         * common/agent.h: Declare it.
9555         * tracepoint.c (info_static_tracepoint_markers_command): Add
9556         comment.
9557         * Makefile.in (SFILES): Add common/agent.c and agent.c.
9558         (COMMON_OBS): Add common/agent.o and agent.o
9559         (common-agent.o): New rule.
9560         * agent.c: New.
9561
9562 2012-03-03  Yao Qi  <yao@codesourcery.com>
9563
9564         * common/agent.c: New.
9565         * common/agent.h: New.
9566         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
9567         AC_CHECK_HEADERS.
9568         * configure, configh.in: Regenerated.
9569
9570 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
9571
9572         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
9573         unless it exists for this architecture.
9574
9575 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
9576
9577         * language.h (struct language_defn): New "method" la_read_var_value.
9578         * findvar.c: #include "language.h".
9579         (default_read_var_value): Renames read_var_value.  Rewrite
9580         function description.
9581         (read_var_value): New function.
9582         * value.h (default_read_var_value): Add prototype.
9583         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
9584         New functions.
9585         (ada_language_defn): Add entry for la_read_var_value.
9586         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
9587         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
9588         language_defn structures to add entry for new la_read_var_value
9589         field.
9590
9591 2012-03-02  Tom Tromey  <tromey@redhat.com>
9592             Pedro Alves  <palves@redhat.com>
9593
9594         PR breakpoints/13776:
9595         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
9596         breakpoints.
9597         (delete_longjmp_breakpoint_at_next_stop): New.
9598         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
9599         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
9600         before deleting the inferior.  Add comments.
9601         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
9602         breakpoints immediately, but only on next stop.  Move that code
9603         next to where we mark other breakpoints for deletion.
9604
9605 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
9606
9607         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
9608         marker.
9609         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
9610         violation.
9611
9612 2012-03-02  Pedro Alves  <palves@redhat.com>
9613
9614         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
9615
9616 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
9617
9618         Fix -Wmissing-prototypes build.
9619         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
9620         * remote-sim.c (gdbsim_has_all_memory): Likewise.
9621         (gdbsim_has_memory): Likewise.
9622
9623 2012-03-02  Yao Qi  <yao@codesourcery.com>
9624
9625         Fix -Wmissing-prototypes build.
9626         * charset.c (phony_iconv_open): Make static.
9627         (phony_iconv_close, phony_iconv): Likewise.
9628         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
9629         * i386-windows-nat.c (_initialize_i386_windows_nat): New
9630         prototype.
9631         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
9632         * ser-mingw.c (create_select_thread): Make static.
9633         * windows-termcap.c (tgetent): New prototype.
9634         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
9635
9636 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
9637
9638         Fix -Wmissing-prototypes build.
9639         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
9640         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
9641         (_initialize_loadable): New prototypes.
9642
9643 2012-03-02  Doug Evans  <dje@google.com>
9644
9645         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
9646         abbrev table, read_comp_unit will do it.
9647
9648 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9649
9650         Fix -Wmissing-prototypes build.
9651         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
9652         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
9653         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
9654         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
9655         (_initialize_arm_symbian_tdep): New prototype.
9656         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
9657         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
9658         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
9659         static.
9660         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
9661         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
9662         prototype.
9663         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
9664         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
9665         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
9666         static.
9667         * moxie-tdep.c (moxie_process_record): Likewise.
9668         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
9669         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
9670         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
9671         (_initialize_rl78_tdep): New prototype.
9672         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
9673         (_initialize_rx_tdep): New prototype.
9674         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
9675         (_initialize_darwin_solib): New prototype.
9676         * solib-spu.c: Include solib-spu.h.
9677         (_initialize_spu_solib): New prototype.
9678         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
9679         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
9680         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
9681         (tic6x_software_single_step): Make it static.
9682         (_initialize_tic6x_tdep): New prototype.
9683
9684 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9685
9686         Fix -Wmissing-prototypes build.
9687         * cris-tdep.c (cris_can_use_hardware_watchpoint)
9688         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
9689
9690 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9691
9692         Fix -Wmissing-prototypes build.
9693         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
9694         (frv_have_stopped_data_address): Remove.
9695
9696 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9697
9698         Fix -Wmissing-prototypes build.
9699         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
9700         * sh-tdep.c: Include sh64-tdep.h.
9701         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
9702         * sh64-tdep.c: Include sh64-tdep.h.
9703         * sh64-tdep.h: New file.
9704
9705 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
9706
9707         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
9708
9709 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
9710
9711         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
9712         sp_regnum once the gdbarch_init_osabi hook has been called.
9713
9714 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
9715
9716         * mips-tdep.c (mips32_bc1_pc): New function.
9717         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
9718         BPOSGE32 and BPOSGE64 instructions.
9719         (deal_with_atomic_sequence): Likewise.
9720         (mips32_instruction_has_delay_slot): Likewise.
9721
9722 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
9723             Chris Dearman  <chris@mips.com>
9724             Maciej W. Rozycki  <macro@codesourcery.com>
9725             Joseph Myers  <joseph@codesourcery.com>
9726
9727         * features/mips-dsp.xml: New file.
9728         * features/mips64-dsp.xml: New file.
9729         * features/mips-dsp-linux.xml: New file.
9730         * features/mips64-dsp-linux.xml: New file.
9731         * features/Makefile (WHICH): Add mips-dsp-linux and
9732         mips64-dsp-linux.
9733         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
9734         * features/mips-dsp-linux.c: New file.
9735         * features/mips64-dsp-linux.c: New file.
9736         * regformats/mips-dsp-linux.dat: New file.
9737         * regformats/mips64-dsp-linux.dat: New file.
9738         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
9739         registers.
9740         (mips64_linux_register_addr): Likewise.
9741         (mips64_linux_regsets_fetch_registers): Likewise.
9742         (mips64_linux_regsets_store_registers): Likewise.
9743         (mips64_linux_fetch_registers): Update call to
9744         mips64_linux_regsets_fetch_registers.
9745         (mips64_linux_store_registers): Update call to
9746         mips64_linux_regsets_store_registers.
9747         (mips_linux_read_description): Probe for DSP registers.
9748         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
9749         and initialize_tdesc_mips64_dsp_linux.
9750         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
9751         Remove padding of no longer used embedded register slots.
9752         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
9753         (MIPS_RESTART_REGNUM): Redefine enum value.
9754         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
9755         strings.
9756         (mips_tx39_reg_names): Likewise.
9757         (mips_linux_reg_names): New array of register names for Linux
9758         targets.
9759         (mips_register_name): Check for a null pointer in
9760         mips_processor_reg_names and return an empty string.
9761         (mips_register_type): Exclude embedded registers for the IRIX
9762         and Linux ABIs.
9763         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
9764         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
9765         DSP registers.
9766         (mips_stab_reg_to_regnum): Handle DSP accumulators.
9767         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
9768         (mips_gdbarch_init): Likewise.  Initialize internal register
9769         indices for the Linux ABI.  Use dynamic numbers to refer to
9770         registers, as applicable, while parsing the target description.
9771         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
9772
9773 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
9774
9775         * frame.h (read_frame_register_unsigned): Fix typo in function
9776         description.
9777
9778 2012-03-01  Pedro Alves  <palves@redhat.com>
9779
9780         * jit-reader.in [!__cplusplus]
9781         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
9782
9783 2012-03-01  Pedro Alves  <palves@redhat.com>
9784
9785         * configure.ac (build_warnings): Add -Wmissing-prototypes.
9786         * configure: Regenerate.
9787
9788 2012-03-01  Pedro Alves  <palves@redhat.com>
9789
9790         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
9791         * breakpoint.c (create_exception_master_breakpoint, trace_command)
9792         (ftrace_command, strace_command): Make static.
9793         * d-lang.c (_initialize_d_language): Declare.
9794         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
9795         * dwarf2loc.c (_initialize_dwarf2loc):
9796         * dwarf2read.c (process_psymtab_comp_unit): Make static.
9797         * exec.c (exec_get_section_table): Make static.
9798         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
9799         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
9800         * inferior.c (remove_inferior_command, add_inferior_command)
9801         (clone_inferior_command): Make static.
9802         * linux-nat.c (linux_nat_thread_address_space)
9803         (linux_nat_core_of_thread): Make static.
9804         * linux-tdep.c (_initialize_linux_tdep): Declare.
9805         * objc-lang.c (_initialize_objc_lang): Declare.
9806         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
9807         Make static.
9808         (_initialize_opencl_language): Declare.
9809         * record.c (_initialize_record): Declare.
9810         * remote.c (demand_private_info, remote_get_tib_address)
9811         (remote_supports_cond_tracepoints)
9812         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
9813         Make static.
9814         * skip.c (_initialize_step_skip): Declare.
9815         * symtab.c (skip_prologue_using_lineinfo): Make static.
9816         * tracepoint.c (delete_trace_state_variable)
9817         (trace_variable_command, delete_trace_variable_command)
9818         (get_uploaded_tsv, find_matching_tracepoint_location)
9819         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
9820         Make static.
9821         * value.c (pack_unsigned_long): Make static.
9822         * varobj.c (varobj_ensure_python_env): Make static.
9823         * windows-tdep.c (_initialize_windows_tdep): Declare.
9824         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
9825
9826 2012-03-01  Pedro Alves  <palves@redhat.com>
9827
9828         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
9829         gdbarch parameter.
9830         (linux_init_abi): Install it as has_shared_address_space gdbarch
9831         callback.
9832
9833 2012-03-01  Pedro Alves  <palves@redhat.com>
9834
9835         * observer.c (observer_test_first_notification_function)
9836         (observer_test_second_notification_function)
9837         (observer_test_third_notification_function): Add declarations.
9838
9839 2012-03-01  Pedro Alves  <palves@redhat.com>
9840
9841         * common/signals.c (default_target_signal_to_host)
9842         (default_target_signal_from_host): Move ...
9843         * arch-utils.c: ... here.
9844         * arch-utils.h (default_target_signal_to_host)
9845         (default_target_signal_from_host): Declare.
9846
9847         * common/signals.c (target_signal_from_command): Move ...
9848         * infrun.c: ... here.
9849         * inferior.h (target_signal_from_command): Declare.
9850         * target.h (target_signal_from_command)
9851         (default_target_signal_from_host, default_target_signal_to_host):
9852         Delete declarations.
9853
9854         * common/signals.c (_initialize_signals): Delete.
9855
9856 2012-03-01  Pedro Alves  <palves@redhat.com>
9857
9858         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
9859         both __cplusplus and !__cplusplus.
9860
9861 2012-03-01  Pedro Alves  <palves@redhat.com>
9862
9863         * psymtab.c (find_and_open_source): Delete declaration.
9864         * source.c (find_and_open_source): Move comment ...
9865         * source.h (find_and_open_source): ... to this new declaration.
9866
9867 2012-03-01  Pedro Alves  <palves@redhat.com>
9868
9869         * inline-frame.c: Include inline-frame.h.
9870
9871 2012-03-01  Pedro Alves  <palves@redhat.com>
9872
9873         * tui/tui-data.c (set_gen_win_origin): Delete.
9874         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
9875         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
9876
9877 2012-03-01  Pedro Alves  <palves@redhat.com>
9878
9879         * remote.c (encode_actions): Delete declaration.
9880         * tracepoint.c (encode_actions): Make extern.
9881         * tracepoint.h (encode_actions): Declare.
9882
9883 2012-03-01  Pedro Alves  <palves@redhat.com>
9884
9885         * python/py-breakpoint.c: Include python.h.
9886         * python/py-continueevent.c (create_continue_event_object): Make
9887         static.
9888         * python/py-lazy-string.c (stpy_get_type): Make static.
9889         * python/py-newobjfileevent.c (create_new_objfile_event_object):
9890         Make static.
9891         * python/py-utils.c (unicode_to_target_python_string): Make
9892         static.
9893         * python/py-value.c: Include python.h.
9894
9895 2012-03-01  Pedro Alves  <palves@redhat.com>
9896
9897         * inferior.c (delete_threads_of_inferior): Delete.
9898
9899 2012-03-01  Pedro Alves  <palves@redhat.com>
9900
9901         Import fallback definitions from glibc.
9902
9903         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
9904         ps_prochandle): Forward declare.
9905         (ps_err_e): Use glibc's comments.
9906         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
9907         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
9908         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
9909         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
9910         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
9911         (struct ps_prochandle): Adjust comment.
9912
9913 2012-03-01  Pedro Alves  <palves@redhat.com>
9914
9915         * ada-lang.c (ada_modulus_from_name): Delete.
9916         * ada-lex.l (lexer_init): Make static.
9917
9918 2012-03-01  Pedro Alves  <palves@redhat.com>
9919
9920         PR gdb/13767
9921
9922         * frame.c (read_frame_register_unsigned): New.
9923         * frame.h (read_frame_register_unsigned): Declare.
9924         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
9925         Handle it.
9926         (print_i387_control_word): New parameter `control_p'.  Handle it.
9927         (i387_print_float_info): Handle unavailable float registers.
9928
9929 2012-03-01  Keith Seitz  <keiths@redhat.com>
9930
9931         * linespec.c (decode_line_2): Sort the list of methods
9932         alphabetically before presenting the user with a selection
9933         menu.
9934
9935 2012-03-01  Doug Evans  <dje@google.com>
9936
9937         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
9938         has_namespace_info.
9939         (dwarf2_read_abbrevs): Remove corresponding initialization.
9940
9941 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
9942
9943         * NEWS: Mention new python command class gdb.COMMAND_USER.
9944         * cli/cli-cmds.c (show_user): Print error when used on a python
9945         command.
9946         (init_cli_cmds): Update documentation strings for "show user" and
9947         "set/show max-user-call-depth" to clarify that it does not apply to
9948         python commands.
9949         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
9950         error check.
9951         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
9952         gdb python api.
9953         * top.c (execute_command): Only execute a user-defined command as a
9954         legacy macro if c->user_commands is set.
9955
9956 2012-03-01  Tom Tromey  <tromey@redhat.com>
9957
9958         * valprint.h (struct generic_val_print_decorations): New.
9959         (generic_val_print): Declare.
9960         * valprint.c (generic_val_print): New function.
9961         * p-valprint.c (p_decorations): New global.
9962         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
9963         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
9964         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
9965         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
9966         * m2-valprint.c (m2_decorations): New global.
9967         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
9968         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
9969         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
9970         TYPE_CODE_ERROR>: Call generic_val_print.
9971         * f-valprint.c (f_decorations): New global.
9972         (f_val_print): Use print_function_pointer_address.
9973         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
9974         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
9975         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
9976         generic_val_print.
9977         * c-valprint.c (c_decorations): New global.
9978         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
9979         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
9980         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
9981         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
9982         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
9983         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
9984         case.
9985
9986 2012-03-01  Tom Tromey  <tromey@redhat.com>
9987
9988         * valprint.c (val_print): Update.
9989         * p-valprint (pascal_val_print): Return void.
9990         * p-lang.h (pascal_val_print): Return void.
9991         * m2-valprint.c (m2_val_print): Return void.
9992         * m2-lang.h (m2_val_print): Return void.
9993         * language.h (struct language_defn) <la_val_print>: Return void.
9994         * language.c (unk_lang_val_print): Return void.
9995         * jv-valprint.c (java_val_print): Return void.
9996         * jv-lang.h (java_val_print): Return void.
9997         * f-valprint.c (f_val_print): Return void.
9998         * f-lang.h (f_val_print): Return void.
9999         * d-valprint.c (d_val_print): Return void.
10000         (dynamic_array_type): Update.
10001         * d-lang.h (d_val_print): Return void.
10002         * c-valprint.c (c_val_print): Return void.
10003         * c-lang.h (c_val_print): Return void.
10004         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10005         void.
10006         * ada-lang.h (ada_val_print): Return void.
10007
10008 2012-03-01  Tom Tromey  <tromey@redhat.com>
10009
10010         * value.h (val_print): Return void.
10011         * valprint.c (val_print): Return void.
10012
10013 2012-03-01  Tom Tromey  <tromey@redhat.com>
10014
10015         * value.h (common_val_print): Return void.
10016         * valprint.c (common_val_print): Return void.
10017
10018 2012-03-01  Tom Tromey  <tromey@redhat.com>
10019
10020         * value.h (value_print): Return void.
10021         * valprint.c (value_print): Return void.
10022         * p-valprint.c (pascal_value_print): Return void.
10023         * p-lang.h (pascal_value_print): Return void.
10024         * language.h (struct language_defn) <la_value_print>: Return
10025         void.
10026         * language.c (unk_lang_value_print): Return void.
10027         * jv-valprint.c (java_value_print): Return void.
10028         * jv-lang.h (java_value_print): Return void.
10029         * f-valprint.c (c_value_print): Don't declare.
10030         Include c-lang.h.
10031         * c-valprint.c (c_value_print): Return void.
10032         * c-lang.h (c_value_print): Return void.
10033         * ada-valprint.c (ada_value_print): Return void.
10034         * ada-lang.h (ada_value_print): Return void.
10035
10036 2012-03-01  Tom Tromey  <tromey@redhat.com>
10037
10038         * value.c (value_primitive_field): Handle virtual base classes.
10039
10040 2012-03-01  Tom Tromey  <tromey@redhat.com>
10041
10042         * gdbtypes.h (struct vbase): Remove.
10043
10044 2012-03-01  Tom Tromey  <tromey@redhat.com>
10045
10046         * c-valprint.c (print_function_pointer_address): Move...
10047         * valprint.c: ... here.  Make non-static.
10048         * m2-valprint.c (print_function_pointer_address): Remove.
10049         * valprint.h (print_function_pointer_address): Declare.
10050
10051 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10052
10053         * NEWS: Document the fact that one can provide a condition when
10054         creating an Ada exception catchpoint.
10055
10056 2012-03-01  Tom Tromey  <tromey@redhat.com>
10057
10058         * valprint.c (val_print_type_code_flags): Fix placement of
10059         trailing brace.
10060
10061 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10062
10063         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10064         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10065         environment variable before calling update-copyright.
10066
10067 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10068
10069         * gnulib/extra/update-copyright: Update to the latest from
10070         gnulib's git repository.
10071         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10072         variable to 2 instead of 1.
10073
10074 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10075
10076         * varobj.c (c_value_of_variable): Remove dead code.
10077
10078 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10079
10080         * ada-lex.p (processId): Do not modify already encoded IDs.
10081         Update function documentation.
10082
10083 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10084
10085         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10086         "name" with "struct symbol *name_sym".
10087         * ada-exp.y (write_var_or_type): Update call to
10088         ada_find_renaming_symbol.
10089         "name" with "struct symbol *name_sym". Adjust Implementation
10090         accordingly.  Adjust the function documentation.
10091
10092 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10093
10094         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10095         * ada-lang.c (ada_find_any_type): Add advance declaration.
10096         Make static.  Replace ada_find_any_symbol by
10097         ada_find_any_type_symbol.
10098         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10099         Improve function description.  Make static.
10100         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10101         Replace ada_find_any_symbol by ada_find_any_type_symbol.
10102
10103 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10104
10105         * ada-lang.c (struct tag_args): Delete.
10106         (ada_get_tsd_type): Function body moved up in source file.
10107         (ada_tag_name_1, ada_tag_name_2): Delete.
10108         (ada_get_tsd_from_tag): New function.
10109         (ada_tag_name_from_tsd): New function.
10110         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10111         to determine the tag name.
10112
10113 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10114
10115         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10116         declaration.
10117         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10118         function.
10119
10120 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10121
10122         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10123
10124 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10125
10126         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10127         full searches.
10128
10129 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10130
10131         * ada-lang.c (constrained_packed_array_type): If there is a
10132         parallel XA type, use it to determine the array index type.
10133
10134 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10135
10136         * ada-valprint.c (ada_val_print_1): If our value is a reference
10137         to an array descriptor, dereference it before converting it
10138         to a simple array.
10139
10140 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10141
10142         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10143         creating fixed value.
10144         (ada_value_ind, ada_coerce_ref, assign_component)
10145         (ada_evaluate_subexp): Remove call to unwrap_value before
10146         call to ada_to_fixed_value.
10147
10148 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10149
10150         * ada-lang.c (to_fixed_array_type): Set result's type name.
10151
10152 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10153
10154         * ada-lang.c (catch_ada_exception_command_split): Add new
10155         argument cond_string.  Add support for condition at end of
10156         "catch exception" commands.
10157         (ada_decode_exception_location): Add new argument cond_string.
10158         Update call to catch_ada_exception_command_split.
10159         (create_ada_exception_catchpoint): Add new argument cond_string.
10160         Set the breakpoint condition if needed.
10161         (catch_ada_exception_command): Update call to
10162         ada_decode_exception_location.
10163         (ada_decode_assert_location): Add function documentation.
10164         Add support for condition at end of "catch assert" command.
10165         (catch_assert_command): Update calls to ada_decode_assert_location
10166         and create_ada_exception_catchpoint.
10167
10168 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10169
10170         Fix disp-step-syscall.exp: fork: single step over fork.
10171         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10172         (i386_linux_get_syscall_number_from_regcache): ... here, new function
10173         comment, change parameters gdbarch and ptid to regcache.  Remove
10174         parameter regcache, initialize gdbarch from regcache here.
10175         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10176         New functions.
10177         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10178         instead.
10179         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10180         'syscall'.  Make the 'int' check more strict.
10181
10182 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10183
10184         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10185         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10186         (i386_linux_intx80_sysenter_syscall_record): ... here.
10187         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10188         Use the renamed function name.
10189
10190 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10191
10192         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10193         * breakpoint.c (until_break_command): Likewise.
10194         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10195         * infcall.c (call_function_by_hand): Likewise.
10196         * infcmd.c (finish_forward): Likewise.
10197         * infrun.c (insert_exception_resume_breakpoint): Likewise.
10198
10199 2012-02-28  Tristan Gingold  <gingold@adacore.com>
10200
10201         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10202         avoid variable assignments inside condition.
10203
10204 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
10205
10206         Fix static analysis issue found by cppcheck.
10207         * microblaze-tdep.c (microblaze_extract_return_value): Fix
10208         uninitialized BUF for size 2.
10209
10210 2012-02-27  Chris Dearman  <chris@mips.com>
10211             Nathan Froyd  <froydnj@codesourcery.com>
10212             Maciej W. Rozycki  <macro@codesourcery.com>
10213
10214         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10215         (mips16_instruction_has_delay_slot): Likewise.
10216         (mips_segment_boundary): Likewise.
10217         (mips_adjust_breakpoint_address): Likewise.
10218         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10219
10220 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
10221             Maciej W. Rozycki  <macro@codesourcery.com>
10222
10223         * infrun.c (handle_inferior_event): Don't proceed through
10224         shared library trampolines if stepping at the machine
10225         instruction level.
10226
10227 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
10228
10229         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10230         too.
10231
10232 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
10233
10234         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10235         (sh_stub_unwind_sniffer): New functions.
10236         (sh_stub_unwind): New variable.
10237         (sh_gdbarch_init): Wire everything.
10238
10239 2012-02-27  Pedro Alves  <palves@redhat.com>
10240
10241         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10242         (linux_nat_post_attach_wait): Adjust to use
10243         linux_proc_pid_is_stopped.
10244         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10245         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10246         based on pid_is_stopped from both linux-nat.c and
10247         gdbserver/linux-low.c, and renamed.
10248
10249 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10250
10251         * remote.c (remote_watchpoint_addr_within_range): New function.
10252         (init_remote_ops): Use it.
10253
10254 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10255
10256         * target.h (target_watchpoint_addr_within_range): Document macro.
10257
10258 2012-02-24  Pedro Alves  <palves@redhat.com>
10259
10260         * stack.c (set_last_displayed_sal): Issue internal_error instead
10261         of warning, and issue it after clearing the last displayed sal.
10262
10263 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10264             Pedro Alves  <palves@redhat.com>
10265
10266         * breakpoint.c (until_break_command): Install breakpoints after
10267         all frame manipulations.
10268
10269 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10270
10271         * remote.c (remote_supports_cond_breakpoints): New forward
10272         declaration.
10273         (remote_add_target_side_condition): New function.
10274         (remote_insert_breakpoint): Add target-side breakpoint
10275         conditional if supported.
10276         (remote_insert_hw_breakpoint): Likewise.
10277         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10278         hook.
10279
10280         * target.c (update_current_target): Inherit
10281         to_supports_evaluation_of_breakpoint_conditions.
10282         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10283
10284         * target.h (struct target_ops)
10285         <to_supports_evaluation_of_breakpoint_conditions>: New field.
10286         (target_supports_evaluation_of_breakpoint_conditions): New #define.
10287
10288         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10289         (condition_evaluation_both, condition_evaluation_auto,
10290         condition_evaluation_host, condition_evaluation_target,
10291         condition_evaluation_enums, condition_evaluation_mode_1,
10292         condition_evaluation_mode): New static globals.
10293         (translate_condition_evaluation_mode): New function.
10294         (breakpoint_condition_evaluation_mode): New function.
10295         (gdb_evaluates_breakpoint_condition_p): New function.
10296         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10297         (mark_breakpoint_modified): New function.
10298         (mark_breakpoint_location_modified): New function.
10299         (set_condition_evaluation_mode): New function.
10300         (show_condition_evaluation_mode): New function.
10301         (bp_location_compare_addrs): New function.
10302         (get_first_location_gte_addr): New helper function.
10303         (set_breakpoint_condition): Free condition bytecode if locations
10304         has become unconditional.  Call mark_breakpoint_modified (...).
10305         (condition_command): Call update_global_location_list (1) for
10306         breakpoints.
10307         (breakpoint_xfer_memory): Use is_breakpoint (...).
10308         (is_breakpoint): New function.
10309         (parse_cond_to_aexpr): New function.
10310         (build_target_condition_list): New function.
10311         (insert_bp_location): Handle target-side conditional
10312         breakpoints and call build_target_condition_list (...).
10313         (update_inserted_breakpoint_locations): New function.
10314         (insert_breakpoint_locations): Handle target-side conditional
10315         breakpoints.
10316         (bpstat_check_breakpoint_conditions): Add comment.
10317         (bp_condition_evaluator): New function.
10318         (bp_location_condition_evaluator): New function.
10319         (print_breakpoint_location): Print information on where the condition
10320         will be evaluated.
10321         (print_one_breakpoint_location): Likewise.
10322         (init_bp_location): Call mark_breakpoint_location_modified (...) for
10323         breakpoint location.
10324         (force_breakpoint_reinsertion): New functions.
10325         (update_global_location_list): Handle target-side breakpoint
10326         conditions.
10327         Reinsert locations that are already inserted if conditions have
10328         changed.
10329         (bp_location_dtor): Free agent expression bytecode.
10330         (disable_breakpoint): Call mark_breakpoint_modified (...).
10331         Call update_global_location_list (...) with parameter 1 for breakpoints.
10332         (disable_command): Call mark_breakpoint_location_modified (...).
10333         Call update_global_location_list (...) with parameter 1 for breakpoints.
10334         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10335         (enable_command): mark_breakpoint_location_modified (...).
10336         (_initialize_breakpoint): Update documentation and add
10337         condition-evaluation breakpoint subcommand.
10338
10339         * breakpoint.h: Include ax.h.
10340         (condition_list): New data structure.
10341         (condition_status): New enum.
10342         (bp_target_info) <cond_list>: New field.
10343         (bp_location) <condition_changed, cond_bytecode>: New fields.
10344         (is_breakpoint): New prototype.
10345
10346 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10347
10348         * remote.c (remote_state) <cond_breakpoints>: New field.
10349         (PACKET_ConditionalBreakpoints): New enum.
10350         (remote_cond_breakpoint_feature): New function.
10351         (remote_protocol_features): Add new ConditionalBreakpoints entry.
10352         (remote_supports_cond_breakpoints): New function.
10353         (_initialize_remote): Add new packet configuration for
10354         target-side conditional breakpoints.
10355
10356 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10357
10358         * NEWS: Mention target-side conditional breakpoint support,
10359         new condition-evaluation breakpoint subcommand and remote
10360         packet extensions.
10361
10362 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10363
10364         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10365         number.
10366
10367 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
10368
10369         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10370         (after_prologue): Remove.
10371
10372 2012-02-23  Tom Tromey  <tromey@redhat.com>
10373
10374         * jv-valprint.c (java_val_print): Remove dead code.
10375
10376 2012-02-23  Tristan Gingold  <gingold@adacore.com>
10377
10378         * ada-tasks.c (struct ada_tasks_inferior_data): Add
10379         known_tasks_element and known_tasks_length fields.
10380         (read_known_tasks_array): Change argument type.  Use pointer type
10381         and number of elements from DATA.  Adjust.
10382         (read_known_tasks_list): Likewise.
10383         (get_known_tasks_addr): Remove.
10384         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10385         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
10386         type and array length.  Merge former get_known_tasks_addr code.
10387
10388 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
10389
10390         PR backtrace/13716
10391         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10392         it after set_momentary_breakpoint.
10393
10394 2012-02-22  Sterling Augustine  <saugustine@google.com>
10395
10396         PR 13689:
10397         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
10398
10399 2012-02-22  Gary Benson  <gbenson@redhat.com>
10400
10401         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
10402         (find_slot_in_mapped_hash): Likewise.
10403
10404 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10405
10406         PR build/13638
10407         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
10408         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
10409         * configure: Regenerate.
10410
10411 2012-02-21  Tristan Gingold  <gingold@adacore.com>
10412             Pedro Alves  <palves@redhat.com>
10413
10414         * ia64-tdep.c: Do not include libunwind-ia64.h.
10415         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
10416         Include libunwind-ia64.h instead of libunwind.h.
10417         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
10418         for libunwind.h existence.
10419         * configure, config.in: Regenerate.
10420
10421 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
10422
10423         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
10424         instead of value_rtti_target_type.
10425         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
10426         instead of value_rtti_target_type.
10427         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
10428         value_rtti_target_type.
10429         * valops.c (value_ind): Extract function readjust_indirect_value_type.
10430         (value_rtti_target_type): Rename to ...
10431         (value_rtti_indirect_type): ... here and make it indirect.  Update
10432         function comment.
10433         * value.c (readjust_indirect_value_type): New function.
10434         (coerce_ref): Support for enclosing type setting for references
10435         with readjust_indirect_value_type.
10436         * value.h (readjust_value_type): New declaration.
10437         (value_rtti_target_type): Rename to ...
10438         (value_rtti_indirect_type): ... here.
10439
10440 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
10441
10442         * MAINTAINERS (Write After Approval): Add myself to the list.
10443
10444 2012-02-20  Doug Evans  <dje@google.com>
10445
10446         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
10447         Rename objfile_p_char parameter to objfilep.
10448         (build_objfile_section_table): Result is now void.  All callers
10449         updated.
10450         * objfiles.h (struct objfile): Tweak comments, whitespace.
10451         (build_objfile_section_table): Update.
10452
10453         * elfread.c (elf_symfile_segments): Fix warning text.
10454
10455 2012-02-20  Tom Tromey  <tromey@redhat.com>
10456
10457         PR gdb/13498:
10458         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
10459         particular set of file names once.
10460         (dw2_map_symbol_filenames): Likewise.
10461
10462 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
10463
10464         Code cleanup.
10465         * main.c (write_files): Remove the declaration.
10466         (external_editor_command): Move the declaration ...
10467         [GDBTK] (external_editor_command): ... here.  Fix the comment.
10468
10469 2012-02-20  Tom Tromey  <tromey@redhat.com>
10470
10471         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
10472         extraneous block.
10473
10474 2012-02-20  Tristan Gingold  <gingold@adacore.com>
10475
10476         * darwin-nat.h (enum darwin_msg_state): Add comments.
10477
10478 2012-02-20  Tristan Gingold  <gingold@adacore.com>
10479
10480         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
10481         value.
10482
10483 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
10484
10485         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
10486         between function description and implementation.
10487
10488 2012-02-17  Tom Tromey  <tromey@redhat.com>
10489
10490         PR python/12070:
10491         * python/py-event.c (event_object_getset): New global.
10492         (event_object_type): Reference it.
10493         * python/py-type.c (field_object_getset): New global.
10494         (field_object_type): Reference it.
10495         * python/python-internal.h (gdb_py_generic_dict): Declare.
10496         * python/py-utils.c (gdb_py_generic_dict): New function.
10497
10498 2012-02-17  Tristan Gingold  <gingold@adacore.com>
10499
10500         * solib-darwin.c (darwin_current_sos): Check magic and filetype
10501
10502 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
10503
10504         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
10505         TYPE_CALLING_CONVENTION annotation.
10506
10507 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
10508
10509         * MAINTAINERS: Add rx to target ISA section.
10510         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
10511         (ALLDEPFILES): Add rx-tdep.c.
10512
10513 2012-02-16  Tom Tromey  <tromey@redhat.com>
10514
10515         * symfile.c (symbol_file_add_main_1): Use inferior's
10516         symfile_flags.
10517         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
10518         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
10519         inferior.
10520         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
10521         inferior.
10522         (follow_exec): Use inferior's symfile_flags.
10523         * inferior.h (struct inferior) <symfile_flags>: New field.
10524
10525 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
10526
10527         PR gdb/9734:
10528         * remote-sim.c (gdbsim_create_inferior): Call error() when
10529         sim_create_inferior() fails.
10530
10531 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
10532
10533         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
10534
10535 2012-02-16  Tom Tromey  <tromey@redhat.com>
10536
10537         PR c++/13653:
10538         * thread.c (struct current_thread_cleanup) <was_removable>: New
10539         field.
10540         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
10541         (make_cleanup_restore_current_thread): Initialize new field.
10542
10543 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
10544
10545         * MAINTAINERS: Add rl78 to target ISA section.
10546         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
10547         (ALLDEPFILES): Add rl78-tdep.c.
10548         * NEWS: Mention rl78 as a new target.
10549
10550 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
10551
10552         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
10553         data.
10554         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
10555
10556 2012-02-15  Tom Tromey  <tromey@redhat.com>
10557
10558         PR gdb/12659:
10559         * infcmd.c (registers_info): Print just the current register's
10560         name.
10561
10562 2012-02-15  Tom Tromey  <tromey@redhat.com>
10563
10564         * python/py-symbol.c (sympy_value): Use _().
10565
10566 2012-02-15  Pedro Alves  <palves@redhat.com>
10567
10568         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
10569         output to be like native targets'.
10570         (remote_pid_to_str): Special case the null ptid.
10571
10572 2012-02-14  Stan Shebs  <stan@codesourcery.com>
10573
10574         * NEWS: Mention enable count command.
10575         * breakpoint.h (struct breakpoint): New field enable_count.
10576         * breakpoint.c (enable_breakpoint_disp): Add count argument.
10577         (enable_breakpoint): Add arg to call.
10578         (struct disp_data): New struct.
10579         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
10580         (do_map_enable_once_breakpoint): Create a struct and pass it.
10581         (do_map_enable_delete_breakpoint): Ditto.
10582         (do_map_enable_count_breakpoint): New function.
10583         (enable_count_command): New function.
10584         (bpstat_stop_status): Decrement enable_count.
10585         (print_one_breakpoint_location): Report enable count.
10586         (_initialize_breakpoint): Add enable count command.
10587
10588 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
10589
10590         * rl78-tdep.c (reggroups.h): Include.
10591         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
10592         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
10593         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
10594         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
10595         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
10596         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
10597         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
10598         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
10599         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
10600         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
10601         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
10602         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
10603         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
10604         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
10605         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
10606         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
10607         beginning of register list.
10608         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
10609         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
10610         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
10611         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
10612         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
10613         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
10614         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
10615         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
10616         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
10617         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
10618         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
10619         the pseudo registers.  Rearrange other pseudo registers too so
10620         that the bank registers appear at the end.
10621         (rl78_register_type): Account for the fact that the byte sized
10622         bank registers are now pseudo-registers.
10623         (rl78_register_name): Rearrange the register name array.  Make
10624         initial set of raw banked registers inaccessible.
10625         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
10626         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
10627         case for copying bytes back and forth between raw and pseudo
10628         versions of the banked registers.  Update other cases to reflect
10629         the changed names.
10630         (rl78_return_value): Update to account for changed names of
10631         raw registers.
10632         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
10633         rl78_register_sim_regno().
10634
10635 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
10636
10637         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
10638         the name parameter being passed to find_pc_partial_function().
10639
10640 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10641
10642         * MAINTAINERS: Step down from being ia64 target maintainer.
10643
10644 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
10645
10646         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
10647         compilation warning.
10648
10649 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
10650
10651         Fix crash on loaded shlibs without loaded exec_bfd.
10652         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
10653         (set_section_command): Replace exec_bfd by p->bfd.
10654
10655 2012-02-10  Tom Tromey  <tromey@redhat.com>
10656
10657         * linespec.c (decode_line_internal): Skip symtabs_from_filename
10658         when we have a C++ qualified name.
10659
10660 2012-02-10  Pedro Alves  <palves@redhat.com>
10661
10662         * inferior.c (inferior_pid_to_str): New.
10663         (print_inferior, inferior_command): Use it.
10664
10665 2012-02-10  Pedro Alves  <palves@redhat.com>
10666
10667         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
10668         the test CFLAGS.
10669         * configure: Regenerate.
10670
10671 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10672
10673         * linespec.c (decode_line_internal): Fix comment correctness.
10674
10675 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
10676
10677         PR gdb/12953
10678         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
10679         * amd64bsd-nat.c: Add support for debug registers (adapted from
10680         i386bsd-nat.c).
10681         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
10682         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
10683         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
10684         (amd64bsd_dr_get_control): New functions.
10685         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
10686         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
10687         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
10688         watchpoints initialization.
10689         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
10690
10691 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
10692
10693         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
10694         flds_bnds.fields.
10695         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
10696
10697 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
10698
10699         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
10700
10701 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
10702
10703         * language.h (symbol_name_cmp_ftype): Renames
10704         symbol_name_match_p_ftype.
10705         (struct language_defn)[la_get_symbol_name_cmp]: Renames
10706         la_get_symbol_name_match_p.
10707         * ada-lang.c (ada_get_symbol_name_cmp): Renames
10708         ada_get_symbol_name_match_p.  Update comment.
10709         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
10710         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
10711         Renames symbol_name_match_p.  Update field type.
10712         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
10713         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
10714         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
10715         "la_get_symbol_name_cmp" in comments.
10716         * language.c: Likewise.
10717
10718 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10719
10720         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
10721         %eflags offset.
10722         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
10723         (amd64_sol2_gregset32_reg_offs): Likewise.
10724
10725 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
10726
10727         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
10728         of the returned BFD is allocated by GDB.
10729
10730 2012-02-07  Tom Tromey  <tromey@redhat.com>
10731
10732         PR python/12027:
10733         * python/python-internal.h (frame_object_type): Declare.
10734         * python/py-symbol.c (sympy_needs_frame): New function.
10735         (sympy_value): New function.
10736         (symbol_object_getset): Add "needs_frame".
10737         (symbol_object_methods): Add "value".
10738         * python/py-frame.c (frame_object_type): No longer static.
10739
10740 2012-02-07  Tom Tromey  <tromey@redhat.com>
10741
10742         PR python/13599:
10743         * python/py-symbol.c (sympy_line): New function.
10744         (symbol_object_getset): Add "line".
10745
10746 2012-02-07  Tom Tromey  <tromey@redhat.com>
10747
10748         * charset.c (find_charset_names): Check 'in' against NULL.
10749
10750 2012-02-06  Doug Evans  <dje@google.com>
10751
10752         * gdbtypes.h (struct main_type): Change type of name,tag_name,
10753         and fields.name members from char * to const char *.  All uses updated.
10754         (struct cplus_struct_type): Change type of fn_fieldlists.name member
10755         from char * to const char *.  All uses updated.
10756         (type_name_no_tag): Update.
10757         (lookup_unsigned_typename, lookup_signed_typename): Update.
10758         * gdbtypes.c (type_name_no_tag): Change result type
10759         from char * to const char *.  All callers updated.
10760         (lookup_unsigned_typename, lookup_signed_typename): Change type of
10761         name parameter from char * to const char *.
10762         * symtab.h (struct cplus_specific): Change type of demangled_name
10763         member from char * to const char *.  All uses updated.
10764         (struct general_symbol_info): Change type of name and
10765         mangled_lang.demangled_name members from char * to const char *.
10766         All uses updated.
10767         (symbol_get_demangled_name, symbol_natural_name): Update.
10768         (symbol_demangled_name, symbol_search_name): Update.
10769         * symtab.c (symbol_get_demangled_name): Change result type
10770         from char * to const char *.  All callers updated.
10771         (symbol_natural_name, symbol_demangled_name): Ditto.
10772         (symbol_search_name): Ditto.
10773         (completion_list_add_name): Change type of symname,sym_text,
10774         text,word parameters from char * to const char *.
10775         (completion_list_objc_symbol): Change type of sym_text,
10776         text,word parameters from char * to const char *.
10777         * ada-lang.c (find_struct_field): Change type of name parameter
10778         from char * to const char *.
10779         (encoded_ordered_before): Similarly for N0,N1 parameters.
10780         (old_renaming_is_invisible): Similarly for function_name parameter.
10781         (ada_type_name): Change result type from char * to const char *.
10782         All callers updated.
10783         * ada-lang.h (ada_type_name): Update.
10784         * buildsym.c (hashname): Change type of name parameter
10785         from char * to const char *.
10786         * buildsym.h (hashname): Update.
10787         * dbxread.c (end_psymtab): Change type of include_list parameter
10788         from char ** to const char **.
10789         * dwarf2read.c (determine_prefix): Change result type
10790         from char * to const char *.  All callers updated.
10791         * f-lang.c (find_common_for_function): Change type of name, funcname
10792         parameters from char * to const char *.
10793         * f-lang.c (find_common_for_function): Update.
10794         * f-valprint.c (list_all_visible_commons): Change type of funcname
10795         parameters from char * to const char *.
10796         * gdbarch.sh (static_transform_name): Change type of name parameter
10797         and result from char * to const char *.
10798         * gdbarch.c: Regenerate.
10799         * gdbarch.h: Regenerate.
10800         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
10801         of name parameter from char * to const char *.
10802         * jv-lang.c (java_primitive_type_from_name): Ditto.
10803         (java_demangled_signature_length): Similarly for signature parameter.
10804         (java_demangled_signature_copy): Ditto.
10805         (java_demangle_type_signature): Ditto.
10806         * jv-lang.h (java_primitive_type_from_name): Update.
10807         (java_demangle_type_signature): Update.
10808         * objc-lang.c (specialcmp): Change type of a,b parameters
10809         from char * to const char *.
10810         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
10811         from char * to const char *.  All callers updated.
10812         * p-lang.h (is_pascal_string_type): Update.
10813         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
10814         of name parameter from char * to const char *.
10815         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
10816         * utils.c (fprintf_symbol_filtered): Ditto.
10817         * defs.h (fprintf_symbol_filtered): Update.
10818         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
10819         * stabsread.h (end_psymtab): Update.
10820         * stack.c (find_frame_funname): Change type of funname parameter
10821         from char ** to const char **.
10822         * stack.h (find_frame_funname): Update.
10823         * typeprint.c (type_print): Change type of varstring parameter
10824         from char * to const char *.
10825         * value.h (type_print): Update.
10826         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
10827         from char * to const char *.  All callers updated.
10828         (xcoff_end_psymtab): Change type of include_list parameter
10829         from char ** to const char **.  All callers updated.
10830         (swap_sym): Similarly for name parameter.  All callers updated.
10831         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
10832         Use xstrdup.
10833         (process_coff_symbol): Use xstrdup.
10834         * stabsread.c (stabs_method_name_from_physname): Renamed from
10835         update_method_name_from_physname.  Change result type from void
10836         to char *.  All callers updated.
10837         (read_member_functions): In has_destructor case, store name in objfile
10838         obstack instead of malloc space.  In !has_stub case, fix mem leak.
10839
10840 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
10841
10842         * configure: Rebuild.
10843         * configure.ac: Put -L../bfd and -L../libiberty at the front of
10844         LDFLAGS.
10845
10846 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
10847
10848         * configure.tgt (rl78-*-elf): New target.
10849         * rl78-tdep.c: New file.
10850
10851 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
10852
10853         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
10854         and continue the loop.  Add QUIT statement.
10855
10856 2012-02-03  Tom Tromey  <tromey@redhat.com>
10857
10858         PR gdb/13596:
10859         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
10860         bfd_lookup_symbol_from_symtab.
10861         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
10862         gdb_bfd_lookup_symbol_from_symtab.
10863
10864 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
10865
10866         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
10867         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
10868         symbol.  Add assertion that sym2 is never NULL.
10869
10870 2012-02-02  Doug Evans  <dje@google.com>
10871
10872         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
10873         "name" parameter to const char ** from char **.  All callers updated.
10874         (find_pc_partial_function): Ditto.
10875         (cache_pc_function_name): Change type to const char * from char *.
10876         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
10877         (find_pc_partial_function): Update.
10878         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
10879         type of "name" parameter to const char * from char *.
10880         All uses updated.
10881         * arch-utils.c (generic_in_solib_return_trampoline): Change
10882         type of "name" parameter to const char * from char *.
10883         * arch-utils.h (generic_in_solib_return_trampoline): Update.
10884         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
10885         type of "name" parameter to const char * from char *.
10886         * gdbarch.sh (in_solib_return_trampoline): Ditto.
10887         * gdbarch.c: Regenerate.
10888         * gdbarch.h: Regenerate.
10889         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
10890         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
10891         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
10892         type of "name" parameter to const char * from char *.
10893         * skip.c (skip_function_pc): Ditto.
10894         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
10895         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
10896         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
10897         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
10898         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
10899         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
10900         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
10901         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
10902         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
10903
10904 2012-02-02  Pedro Alves  <palves@redhat.com>
10905
10906         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
10907         the current inferior has no execution.  Make sure the current
10908         remote process matches gdb's current inferior.
10909
10910 2012-02-02  Tom Tromey  <tromey@redhat.com>
10911
10912         PR gdb/13405:
10913         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
10914         read-only memory.
10915
10916 2012-02-02  Tom Tromey  <tromey@redhat.com>
10917
10918         PR gdb/9307:
10919         * symtab.c (lookup_language_this): Set block_found.
10920
10921 2012-02-01  Tom Tromey  <tromey@redhat.com>
10922
10923         PR gdb/13431:
10924         * jit.c (struct jit_inferior_data): Rewrite.
10925         (struct jit_objfile_data): New.
10926         (get_jit_objfile_data): New function.
10927         (add_objfile_entry): Update.
10928         (jit_read_descriptor): Return int.  Replace descriptor_addr
10929         argument with inf_data.  Update.  Don't call error.
10930         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
10931         descriptor here.
10932         (jit_inferior_init): Don't look up descriptor.  Don't call error.
10933         (jit_reset_inferior_data_and_breakpoints)
10934         (jit_inferior_created_observer): Remove.
10935         (jit_inferior_exit_hook): Update.
10936         (jit_executable_changed_observer): Remove.
10937         (jit_event_handler): Update.
10938         (free_objfile_data): Reset inferior data if needed.
10939         (_initialize_jit): Update.
10940
10941 2012-02-01  Tom Tromey  <tromey@redhat.com>
10942
10943         * jit.c (bfd_open_from_target_memory): Move higher in file.
10944
10945 2012-02-01  Tristan Gingold  <gingold@adacore.com>
10946
10947         * libunwind-frame.c (libunwind_load): Display message if dlopen
10948         failed.
10949
10950 2012-02-01  Gary Benson  <gbenson@redhat.com>
10951
10952         * symtab.h (symbol_found_callback_ftype): New typedef.
10953         (iterate_over_symbols): Use the above.
10954         * symtab.c (iterate_over_symbols): Likewise.
10955         * language.h (language_defn->la_iterate_over_symbols): Likewise.
10956         * ada-lang.c (ada_iterate_over_symbols): Likewise.
10957         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
10958         (iterate_name_matcher): Document return values.
10959         (collect_one_symbol): Likewise.
10960         (collect_function_symbols): Likewise.
10961         (collect_symbols): Likewise.
10962
10963 2012-02-01  Tom Tromey  <tromey@redhat.com>
10964
10965         * ada-lang.c (resolve_subexp): Update.
10966         (ada_lookup_symbol_list): Add 'full_search' argument.
10967         (ada_iterate_over_symbols): Pass 0 as full_search argument to
10968         ada_lookup_symbol_list.
10969         (ada_lookup_encoded_symbol): Update.
10970         (get_var_value): Update.
10971         * ada-exp.y (block_lookup): Update.
10972         (write_var_or_type): Update.
10973         (write_name_assoc): Update.
10974         * ada-lang.h (ada_lookup_symbol_list): Update.
10975
10976 2012-01-31  Tom Tromey  <tromey@redhat.com>
10977
10978         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
10979         comment.
10980
10981 2012-01-31  Doug Evans  <dje@google.com>
10982
10983         * symtab.h: Remove outdated comment.
10984         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
10985
10986 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
10987
10988         Fix build error in Darwin port.
10989         * i386-darwin-nat.c: Include i386-nat.h.
10990
10991 2012-01-30  Tom Tromey  <tromey@redhat.com>
10992
10993         PR breakpoints/13568:
10994         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
10995         argument.  Check for recursive includes.
10996         (dwarf_decode_macros): Create an include hash.
10997
10998 2012-01-30  Michael Eager  <eager@eagercon.com>
10999
11000         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11001         * ppc-linux-tdep.c: Include glibc-tdep.h.
11002         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11003         (powerpc_linux_in_plt_stub): New function.
11004         (powerpc_linux_in_dynsym_resolve_code): New function.
11005         (ppc_skip_trampoline_code): New function.
11006         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11007         Use glibc_skip_solib_resolver.
11008
11009 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
11010
11011         Code cleanup: Make 1440 bytes of data segment read-only.
11012         * arch-utils.c (endian_enum): Make it const char *const [].
11013         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11014         Likewise.
11015         * breakpoint.c (always_inserted_enums): Likewise.
11016         * cli/cli-cmds.c (script_ext_enums): Likewise.
11017         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11018         enumlist parameter const char *const *.
11019         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11020         const char *const *.
11021         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11022         parameter const char *const *.
11023         * cris-tdep.c (cris_modes): Make it const char *const [].
11024         * filesystem.c (target_file_system_kinds): Likewise.
11025         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11026         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11027         (can_use_displaced_stepping_enum, scheduler_enums)
11028         (exec_direction_names): Likewise.
11029         * language.c (_initialize_language): Make the type_or_range_names and
11030         case_sensitive_names variables const char *const [].
11031         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11032         * python/python.c (python_excp_enums): Likewise.
11033         * remote.c (interrupt_sequence_modes): Likewise.
11034         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11035         * serial.c (logbase_enums): Likewise.
11036         * sh-tdep.c (sh_cc_enum): Likewise.
11037         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11038         Likewise.
11039         * symtab.c (multiple_symbols_modes): Likewise.
11040         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11041         Likewise.
11042         * utils.c (internal_problem_modes): Likewise.
11043
11044 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
11045
11046         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11047         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11048         result.
11049
11050 2012-01-27  Doug Evans  <dje@google.com>
11051
11052         * configure.ac (with_python): Fix absolute path handling for win32.
11053         * configure: Regenerate.
11054
11055 2012-01-26  Doug Evans  <dje@google.com>
11056
11057         * symtab.c: Whitespace cleanup, no code changes.
11058
11059         * symtab.c (lookup_symbol_in_language): Improve comment.
11060         (lookup_symbol_aux): Fix comment.
11061
11062         * psymtab.c (add_psymbol_to_list): Result is now "void".
11063         * psympriv.h (add_psymbol_to_list): Update.
11064
11065         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11066
11067 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11068
11069         Do not open script filenames twice.
11070         * cli/cli-cmds.c (source_script_from_stream): Pass to
11071         source_python_script also STREAM.
11072         * python/py-auto-load.c (source_section_scripts): Pass to
11073         source_python_script_for_objfile also STREAM.
11074         (auto_load_objfile_script): Pass to source_python_script_for_objfile
11075         also INPUT.
11076         * python/python-internal.h (source_python_script_for_objfile): New
11077         parameter file, rename parameter file to filename.
11078         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11079         instead if !_WIN32.  Update the function comment.
11080         (source_python_script, source_python_script_for_objfile)
11081         (source_python_script): New parameter file, rename parameter file to
11082         filename.  Pass FILENAME to python_run_simple_file.
11083         * python/python.h (source_python_script): New parameter file, rename
11084         parameter file to filename.
11085
11086 2012-01-26  Pedro Alves  <palves@redhat.com>
11087
11088         * corelow.c (core_has_fake_pid): Delete.
11089         (core_close): Delete references to `core_has_fake_pid'.
11090         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11091         (core_open): Delete references to `core_has_fake_pid'.
11092         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11093         the removed global.
11094
11095 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11096
11097         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11098         Remove language parameter from name_matcher.  Adjust the comment.
11099         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11100         Remove language parameter.
11101         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11102         * linespec.c (iterate_name_matcher): Likewise.
11103         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11104         name_matcher.  Adjust call accordingly.
11105         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11106         (maintenance_check_symtabs): Adjust type of parameter "fun".
11107         * psymtab.h (maintenance_check_symtabs): Likewise.
11108
11109 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11110
11111         * language.h (symbol_name_match_p_ftype): New typedef.
11112         (struct language_defn): Replace field la_symbol_name_compare
11113         by la_get_symbol_name_match_p.
11114         * ada-lang.c (ada_get_symbol_name_match_p): New function.
11115         (ada_language_defn): Use it.
11116         * linespec.c (struct symbol_matcher_data): New type.
11117         (iterate_name_matcher): Rewrite.
11118         (iterate_over_all_matching_symtabs): Pass a pointer to
11119         a symbol_matcher_data struct to expand_symtabs_matching
11120         instead of just the lookup name.
11121         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11122         opencl-lang.c, p-lang.c, language.c: Delete field
11123         la_symbol_name_compare, and replace by NULL for new field
11124         la_get_symbol_name_match_p.
11125         * symfile.h (struct quick_symbol_functions): Update comment.
11126
11127 2012-01-25  Tom Tromey  <tromey@redhat.com>
11128
11129         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11130         dereferencing.
11131
11132 2012-01-24  Tom Tromey  <tromey@redhat.com>
11133
11134         PR symtab/12406:
11135         * solib.c (update_solib_list): Update the program space's
11136         added_solibs and deleted_solibs fields.
11137         * progspace.h (struct program_space) <added_solibs,
11138         deleted_solibs>: New fields.
11139         (clear_program_space_solib_cache): Declare.
11140         * progspace.c (release_program_space): Call
11141         clear_program_space_solib_cache.
11142         (clear_program_space_solib_cache): New function.
11143         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11144         bpstat_stop_status.  Use handle_solib_event.
11145         * breakpoint.c: Include gdb_regex.h.
11146         (print_solib_event): New function.
11147         (bpstat_print): Use print_solib_event.
11148         (bpstat_stop_status): Add special case for bp_shlib_event.
11149         (handle_solib_event): New function.
11150         (bpstat_what): Use handle_solib_event.
11151         (struct solib_catchpoint): New.
11152         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11153         (breakpoint_hit_catch_solib, check_status_catch_solib)
11154         (print_it_catch_solib, print_one_catch_solib)
11155         (print_mention_catch_solib, print_recreate_catch_solib): New
11156         functions.
11157         (catch_solib_breakpoint_ops): New global.
11158         (catch_load_or_unload, catch_load_command_1)
11159         (catch_unload_command_1): New functions.
11160         (internal_bkpt_check_status): Add special case for
11161         bp_shlib_event.
11162         (internal_bkpt_print_it): Use print_solib_event.
11163         (initialize_breakpoint_ops): Initialize
11164         catch_solib_breakpoint_ops.
11165         (_initialize_breakpoint): Register "catch load" and "catch
11166         unload".
11167         * breakpoint.h (handle_solib_event): Declare.
11168         * NEWS: Add entry for "catch load" and "catch unload".
11169
11170 2012-01-24  Tom Tromey  <tromey@redhat.com>
11171
11172         * ada-lang.c: Include gdb_vecs.h.
11173         * charset.c: Include gdb_vecs.h.
11174         * tracepoint.h: Include gdb_vecs.h.
11175         * gdb_vecs.h: New file.
11176
11177 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
11178
11179         * breakpoint.c (breakpoint_hit_catch_fork)
11180         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11181         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11182         * infrun.c (inferior_has_forked, inferior_has_vforked)
11183         (inferior_has_execd, inferior_has_called_syscall): Delete.
11184         (handle_syscall_event): Get syscall_number from the execution
11185         control state's wait status.
11186         (wait_for_inferior): Don't clear syscall_number.
11187
11188 2012-01-24  Pedro Alves  <palves@redhat.com>
11189
11190         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11191         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11192         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11193         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11194         `ws' parameter.
11195         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
11196         false for events other than TARGET_SIGNAL_TRAP.
11197         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11198         Add `ws' parameter.
11199         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
11200         events other than TARGET_SIGNAL_TRAP.
11201         (tracepoint_breakpoint_hit): Add `ws' parameter.
11202         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11203         parameter.
11204         (bpstat_stop_status): Same.
11205         (pc_at_non_inline_function): Same.
11206         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11207         to pass the current event's waitstatus to bpstat_stop_status
11208         and pc_at_non_inline_function.
11209
11210 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11211
11212         Code cleanup.
11213         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11214         Update the function comment for it.
11215         (source_script_with_search): Call make_cleanup_fclose for STREAM.
11216         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11217         for STREAM.
11218
11219 2012-01-24  Pedro Alves  <palves@redhat.com>
11220
11221         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11222         outside `bs->stop' block.
11223         (bpstat_what): Rework bp_shlib_event handling.
11224         (internal_bkpt_check_status): If the breakpoint is a
11225         bp_shlib_event, then set bs->stop and bs->print if
11226         stop_on_solib_events is set.
11227
11228 2012-01-24  Gary Benson  <gbenson@redhat.com>
11229
11230         Delete #if 0'd out code.
11231         * stack.c (print_frame_label_vars): Remove.
11232         (catch_info): Likewise.
11233         (_initialize_stack): Remove "info catch" command.
11234         * NEWS: Mention the above.
11235
11236 2012-01-24  Pedro Alves  <palves@redhat.com>
11237
11238         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
11239         it.
11240         (remote_notice_new_inferior): If the remote end doesn't support
11241         the multiprocess extensions, then the PID is fake.
11242         (add_current_inferior_and_thread): New.
11243         (remote_start_remote): Use it.
11244         (extended_remote_attach_1): Adjust.
11245         (extended_remote_create_inferior_1): Use
11246         add_current_inferior_and_thread.
11247
11248 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11249
11250         Fix watchpoints to be specific for each inferior.
11251         * breakpoint.c (watchpoint_in_thread_scope): Verify also
11252         current_program_space.
11253         * i386-nat.c (i386_inferior_data_cleanup): New.
11254         (i386_inferior_data_get): Replace variable inf_data_local by an
11255         inferior_data call.
11256         (i386_use_watchpoints): Initialize i386_inferior_data.
11257         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11258         specific iterate_over_lwps.
11259
11260 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11261
11262         Fix watchpoints across inferior fork.
11263         * amd64-linux-nat.c (update_debug_registers_callback): Update the
11264         comment for linux_nat_iterate_watchpoint_lwps.
11265         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11266         linux_nat_iterate_watchpoint_lwps.
11267         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11268         * i386-linux-nat.c (update_debug_registers_callback): Update the
11269         comment for linux_nat_iterate_watchpoint_lwps.
11270         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11271         linux_nat_iterate_watchpoint_lwps.
11272         (i386_linux_prepare_to_resume): New comment on Linux kernel.
11273         * i386-nat.c: Include inferior.h.
11274         (dr_mirror): Remove.
11275         (i386_inferior_data, struct i386_inferior_data)
11276         (i386_inferior_data_get): New.
11277         (i386_debug_reg_state): Use i386_inferior_data_get.
11278         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11279         (i386_insert_watchpoint, i386_remove_watchpoint)
11280         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11281         (i386_remove_hw_breakpoint): New variable state, use
11282         i386_debug_reg_state instead of DR_MIRROR.
11283         * linux-nat.c (delete_lwp): New declaration.
11284         (num_lwps): Move here from downwards.
11285         (delete_lwp_cleanup): New.
11286         (linux_child_follow_fork): Create new child_lp, call
11287         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11288         PTRACE_DETACH.
11289         (num_lwps): Move upwards.
11290         (linux_nat_iterate_watchpoint_lwps): New.
11291         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11292         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11293
11294 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
11295
11296         GDB 7.4 released.
11297
11298 2012-01-23  Pedro Alves  <palves@redhat.com>
11299
11300         * top.c (caution): Rename to ...
11301         (confirm): ... this.
11302         (show_caution): Rename to ...
11303         (show_confirm): ... this.
11304         (quit_cover): Adjust.
11305         (init_main): Adjust.
11306         * top.h (caution): Rename to ...
11307         (confirm): ... this.
11308         * utils.c (internal_vproblem, defaulted_query): Adjust.
11309
11310 2012-01-23  Pedro Alves  <palves@redhat.com>
11311
11312         * top.c (caution): Update comment.
11313         (execute_command): Don't consider the current value of `caution'.
11314
11315 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
11316
11317         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11318
11319 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
11320
11321         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11322         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11323         * target.c (target_fileio_pwrite): Remove buffer address from
11324         debug output.
11325         (target_fileio_pread): Likewise.
11326
11327 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11328
11329         * NEWS: Document remote "info proc" and "generate-core-file".
11330
11331 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11332
11333         * gdbarch.sh (find_memory_regions): New callback.
11334         * gdbarch.c, gdbarch.h: Regenerate.
11335
11336         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11337         callback before falling back to target method.
11338
11339         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11340         (linux_target_install_ops): No longer install it.
11341
11342         * linux-tdep.c (linux_find_memory_regions): New function.
11343         (linux_init_abi): Install it.
11344
11345 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11346
11347         * gdbarch.sh (make_corefile_notes): New architecture callback.
11348         * gdbarch.c: Regenerate.
11349         * gdbarch.h: Likewise.
11350
11351         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11352         before target_make_corefile_notes.  If NULL is returned, the
11353         target does not support core file generation.
11354
11355         * linux-nat.c: Include "linux-tdep.h".
11356         (find_signalled_thread, find_stop_signal): Remove.
11357         (linux_nat_do_thread_registers): Likewise.
11358         (struct linux_nat_corefile_thread_data): Likewise.
11359         (linux_nat_corefile_thread_callback): Likewise.
11360         (iterate_over_spus): Likewise.
11361         (struct linux_spu_corefile_data): Likewise.
11362         (linux_spu_corefile_callback): Likewise.
11363         (linux_spu_make_corefile_notes): Likewise.
11364         (linux_nat_collect_thread_registers): New function.
11365         (linux_nat_make_corefile_notes): Replace contents by call to
11366         linux_make_corefile_notes passing linux_nat_collect_thread_registers
11367         as native-only callback.
11368
11369         * linux-tdep.h: Include "bfd.h".
11370         (struct regcache): Add forward declaration.
11371         (linux_collect_thread_registers_ftype): New typedef.
11372         (linux_make_corefile_notes): Add prototype.
11373         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11374         "regset.h", and "elf-bfd.h".
11375         (find_signalled_thread, find_stop_signal): New functions.
11376         (linux_spu_make_corefile_notes): Likewise.
11377         (linux_collect_thread_registers): Likewise.
11378         (struct linux_corefile_thread_data): New data structure.
11379         (linux_corefile_thread_callback): New funcion.
11380         (linux_make_corefile_notes): Likewise.
11381         (linux_make_corefile_notes_1): Likewise.
11382         (linux_init_abi): Install it.
11383
11384 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11385
11386         * gdbarch.sh (info_proc): New callback.
11387         * gdbarch.c, gdbarch.h: Regenerate.
11388
11389         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11390         before falling back to the target info_proc callback.
11391
11392         * linux-nat.c: Do not include "cli/cli-utils.h".
11393         (linux_nat_info_proc): Remove.
11394         (linux_target_install_ops): No longer install it.
11395
11396         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
11397         (read_mapping): New function.
11398         (linux_info_proc): Likewise.
11399         (linux_init_abi): Install it.
11400
11401 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11402
11403         * defs.h (enum info_proc_what): Moved here from linux-nat.c
11404         * infcmd.c: (info_proc_cmd_1): New function.
11405         (info_proc_cmd): New function, moved here from equivalent routine
11406         orignally in linux-nat.c.
11407         (info_proc_cmd_mappings): Likewise.
11408         (info_proc_cmd_stat): Likewise.
11409         (info_proc_cmd_status): Likewise.
11410         (info_proc_cmd_cwd): Likewise.
11411         (info_proc_cmd_cmdline): Likewise.
11412         (info_proc_cmd_exe): Likewise.
11413         (info_proc_cmd_all): Likewise.
11414         (_initialize_infcmd): Install "info proc" command and subcommands.
11415
11416         * target.h (struct target_ops): Add to_info_proc.
11417         (target_info_proc): Add prototype.
11418         * target.c (target_info_proc): New function.
11419
11420         * procfs.c (procfs_info_proc): Add prototype.
11421         (info_proc_cmd): Rename into ...
11422         (procfs_info_proc): ... this.  Update argument types as appropriate
11423         for a to_info_proc implementation.  Handle "what" argument.
11424         (procfs_target): Install procfs_info_proc.
11425         (_initialize_procfs): No longer install "info proc" command.
11426
11427         * linux-nat.c: (enum info_proc_what): Remove.
11428         (linux_nat_info_proc_cmd_1): Rename into ...
11429         (linux_nat_info_proc): ... this.  Update argument types as appropriate
11430         for a to_info_proc implementation.
11431         (linux_nat_info_proc_cmd): Remove.
11432         (linux_nat_info_proc_cmd_mappings): Likewise.
11433         (linux_nat_info_proc_cmd_stat): Likewise.
11434         (linux_nat_info_proc_cmd_status): Likewise.
11435         (linux_nat_info_proc_cmd_cwd): Likewise.
11436         (linux_nat_info_proc_cmd_cmdline): Likewise.
11437         (linux_nat_info_proc_cmd_exe): Likewise.
11438         (linux_nat_info_proc_cmd_all): Likewise.
11439         (linux_target_install_ops): Install linux_nat_info_proc.
11440         (_initialize_linux_nat): No longer install "info proc" command
11441         and subcommands.
11442
11443 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11444
11445         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
11446         * config.in, configure: Regenerate.
11447
11448         * target.h (struct target_ops): Add to_fileio_readlink.
11449         (target_fileio_readlink): Add prototype.
11450         * target.c (target_fileio_readlink): New function.
11451
11452         * inf-child.c: Conditionally include <sys/param.h>.
11453         (inf_child_fileio_readlink): New function.
11454         (inf_child_target): Install it.
11455
11456         * remote.c (PACKET_vFile_readlink): New enum value.
11457         (remote_hostio_readlink): New function.
11458         (init_remote_ops): Install it.
11459         (_initialize_remote): Handle vFile:readlink packet type.
11460
11461 2012-01-20  Pedro Alves  <palves@redhat.com>
11462             Ulrich Weigand  <ulrich.weigand@linaro.org>
11463
11464         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
11465         * config.in, configure: Regenerate.
11466
11467         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
11468         to_fileio_pread, to_fileio_close, to_fileio_unlink.
11469         (target_fileio_open): Add prototype.
11470         (target_fileio_pwrite): Likewise.
11471         (target_fileio_pread): Likewise.
11472         (target_fileio_close): Likewise.
11473         (target_fileio_unlink): Likewise.
11474         (target_fileio_read_alloc): Likewise.
11475         (target_fileio_read_stralloc): Likewise.
11476
11477         * target.c: Include "gdb/fileio.h".
11478         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
11479         (default_fileio_target): New function.
11480         (target_fileio_open): Likewise.
11481         (target_fileio_pwrite): Likewise.
11482         (target_fileio_pread): Likewise.
11483         (target_fileio_close): Likewise.
11484         (target_fileio_unlink): Likewise.
11485         (target_fileio_close_cleanup): Likewise.
11486         (target_fileio_read_alloc_1): Likewise.
11487         (target_fileio_read_alloc): Likewise.
11488         (target_fileio_read_stralloc): Likewise.
11489
11490         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
11491         <fcntl.h>, and <unistd.h>.
11492         (inf_child_fileio_open_flags_to_host): New function.
11493         (inf_child_errno_to_fileio_error): Likewise.
11494         (inf_child_fileio_open): Likewise.
11495         (inf_child_fileio_pwrite): Likewise.
11496         (inf_child_fileio_pread): Likewise.
11497         (inf_child_fileio_close): Likewise.
11498         (inf_child_fileio_unlink): Likewise.
11499         (inf_child_target): Install to_fileio routines.
11500
11501         * remote.c (init_remote_ops): Install to_fileio routines.
11502
11503 2012-01-20  Pedro Alves  <palves@redhat.com>
11504             Ulrich Weigand  <ulrich.weigand@linaro.org>
11505
11506         * remote.c (remote_multi_process_p): Only check for multi-process
11507         protocol feature, do not check for extended protocol.
11508         (remote_supports_multi_process): Check for extended protocol here.
11509         (set_general_process): Likewise.
11510         (extended_remote_kill): Likewise.
11511         (remote_pid_to_str): Likewise.
11512         (remote_query_supported): Always query multiprocess mode.
11513
11514 2012-01-20  Pedro Alves  <palves@redhat.com>
11515             Ulrich Weigand  <ulrich.weigand@linaro.org>
11516
11517         * inferior.h (struct inferior): Add fake_pid_p.
11518         * inferior.c (exit_inferior_1): Clear fake_pid_p.
11519         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
11520         magic_null_ptid since the remote side doesn't provide a real PID.
11521
11522 2012-01-19  Tom Tromey  <tromey@redhat.com>
11523
11524         * NEWS: Combine the two Python sections.
11525
11526 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
11527
11528         * target.h (target_close): Update comment on the target's unpush state.
11529
11530 2012-01-19  Pedro Alves  <palves@redhat.com>
11531
11532         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
11533         linux_nat_async directly instead of going through the target
11534         vector.
11535         * target.c (unpush_target): Close target after unpushing it, not
11536         before.
11537
11538 2012-01-19  Gary Benson  <gbenson@redhat.com>
11539
11540         * mdebugread.c (sort_blocks): Replace integer constants with ones
11541         derived from FIRST_LOCAL_BLOCK.
11542
11543 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
11544             Jan Kratochvil  <jan.kratochvil@redhat.com>
11545
11546         PR gdb/9538
11547         * symfile.c (find_separate_debug_file): New function.
11548         (terminate_after_last_dir_separator): Likewise.
11549         (find_separate_debug_file_by_debuglink): Also try realpath.
11550         * configure.ac (AC_CHECK_FUNCS): Add lstat.
11551         * configure: Regenerate.
11552         * config.in: Regenerate.
11553
11554 2012-01-18  Doug Evans  <dje@google.com>
11555
11556         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
11557         (main.o): Remove rule.
11558         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
11559         (--with-sysroot): Rewrite.
11560         * configure: Regenerate.
11561         * config.in: Regenerate.
11562
11563 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
11564
11565         * parse.c (initialize_expout): New function.
11566         (reallocate_expout): Likewise.
11567         (parse_exp_in_context): Use `initialize_expout' and
11568         `reallocate_expout' when appropriate.
11569
11570 2012-01-18  Pedro Alves  <palves@redhat.com>
11571
11572         * record.c (struct record_breakpoint, record_breakpoint_p)
11573         (record_breakpoints): New.
11574         (record_insert_breakpoint, record_remove_breakpoint): Manage
11575         record breakpoints list.  Only remove breakpoints from the
11576         inferior if they had been inserted there in the first place.
11577
11578 2012-01-17  Doug Evans  <dje@google.com>
11579
11580         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
11581         if we know we don't have a file name to look for.
11582
11583 2012-01-17  Pedro Alves  <palves@redhat.com>
11584
11585         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
11586         the frame's stop reason is UNWIND_UNAVAILABLE.
11587
11588 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
11589
11590         Fix compilation error.
11591         * m2-exp.y (yyerror): Use ANSI C prototype.
11592
11593 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
11594
11595         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
11596         (growbuf_by_size): Likewise.
11597         (yyerror): Likewise.
11598         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
11599         (modblock): Remove variable (was #if 0'ed).
11600         (parse_number): Convert prototype from K&R to ANSI C.
11601         (yyerror): Likewise.
11602         * objc-exp.y (parse_number): Likewise.
11603         (yyerror): Likewise.
11604         (yylex): Remove #if 0'ed code.
11605         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
11606         (yyerror): Likewise.
11607
11608 2012-01-16  Tom Tromey  <tromey@redhat.com>
11609
11610         * NEWS: Add item.
11611         * symtab.h (compare_filenames_for_search): Declare.
11612         * symtab.c (compare_filenames_for_search): New function.
11613         (iterate_over_some_symtabs): Use it.
11614         * symfile.h (struct quick_symbol_functions)
11615         <map_symtabs_matching_filename>: Change spec.
11616         * psymtab.c (partial_map_symtabs_matching_filename): Use
11617         compare_filenames_for_search.  Update for new spec.
11618         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
11619         compare_filenames_for_search.  Update for new spec.
11620         * breakpoint.c (clear_command): Use compare_filenames_for_search.
11621
11622 2012-01-16  Tom Tromey  <tromey@redhat.com>
11623
11624         PR python/13281:
11625         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
11626         (struct main_type) <flag_flag_enum>: New field.
11627         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
11628         * NEWS: Add entries.
11629         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
11630         enums.
11631         * python/lib/gdb/printing.py (_EnumInstance): New class.
11632         (FlagEnumerationPrinter): Likewise.
11633
11634 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
11635
11636         * breakpoint.c (create_sals_from_address_default): New function.
11637         (create_breakpoints_sal_default): Likewise.
11638         (decode_linespec_default): Likewise.
11639         (is_marker_spec): Removed.
11640         (strace_marker_p): New function.
11641         (init_breakpoint_sal): Using `strace_marker_p' instead of
11642         `is_marker_spec'.
11643         (create_breakpoint): Call method `create_sals_from_address' from
11644         breakpoint_ops, replacing code that created SALs conditionally
11645         on the type of the breakpoint.  Call method `create_breakpoints_sal',
11646         replacing code that created breakpoints conditionally on the type
11647         wanted.
11648         (base_breakpoint_create_sals_from_address): New function.
11649         (base_breakpoint_create_breakpoints_sal): Likewise.
11650         (base_breakpoint_decode_linespec): Likewise.
11651         (base_breakpoint_ops): Add methods
11652         `base_breakpoint_create_sals_from_address',
11653         `base_breakpoint_create_breakpoints_sal' and
11654         `base_breakpoint_decode_linespec'.
11655         (bkpt_create_sals_from_address): New function.
11656         (bkpt_create_breakpoints_sal): Likewise.
11657         (bkpt_decode_linespec): Likewise.
11658         (tracepoint_create_sals_from_address): Likewise.
11659         (tracepoint_create_breakpoints_sal): Likewise.
11660         (tracepoint_decode_linespec): Likewise.
11661         (strace_marker_create_sals_from_address): Likewise.
11662         (strace_marker_create_breakpoints_sal): Likewise.
11663         (strace_marker_decode_linespec): Likewise.
11664         (strace_marker_breakpoint_ops): New variable.
11665         (addr_string_to_sals): Remove `marker_spec'.  Call method
11666         `decode_linespec' from breakpoint_ops, replacing code that decoded
11667         an address string into a SAL.  Use `strace_marker_p' instead of
11668         `marker_spec'.
11669         (strace_command): Decide whether we are dealing with a static
11670         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
11671         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
11672         * breakpoint.h (linespec_result, linespec_sals): New forward
11673         declarations.
11674         (breakpoint_ops) <create_sals_from_address>,
11675         <create_breakpoints_sal>, <decode_linespec>: New methods.
11676
11677 2012-01-14  Doug Evans  <dje@google.com>
11678
11679         * NEWS: Update text for "maint set python print-stack".
11680         It is deprecated in gdb 7.4 and deleted in 7.5.
11681
11682 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
11683
11684         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
11685         including curses.h.
11686
11687 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11688
11689         * configure: Regenerate.
11690         * config.in: Regenerate.
11691
11692 2012-01-12  Keith Seitz  <keiths@redhat.com>
11693
11694         PR mi/10586
11695         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
11696         (ANONYMOUS_UNION_NAME): Define.
11697         (is_path_expr_parent): New function.
11698         (get_path_expr_parent): New function.
11699         (is_anonymous_child): New function.
11700         (create_child_with_value): If the child is anonymous and without
11701         a name, assign an object name to it.
11702         (c_describe_child): Use get_path_expr_parent to determine
11703         the parent expression.
11704         If there field represents an anonymous struct or union and
11705         has no name, set an appropriate display name and expression.
11706         (cplus_describe_child): Likewise.
11707
11708 2012-01-12  Pedro Alves  <palves@redhat.com>
11709
11710         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
11711         available when %ebp is found to be zero (outermost).
11712
11713 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
11714
11715         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
11716         an internal gdb_static_assert.
11717         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
11718
11719 2012-01-11  Tom Tromey  <tromey@redhat.com>
11720
11721         PR gdb/9598:
11722         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
11723         catch" and "catch throw".
11724
11725 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
11726
11727         * blockframe.c (block_innermost_frame): Start search from selected
11728         frame, if present, or otherwise the current frame.
11729
11730         * c-exp.y (variable): Update innermost_block for
11731         'block COLONCOLON NAME' clause.
11732         * m2-exp.y (variable): Ditto.
11733         * objc-exp.y (variable): Ditto.
11734
11735 2012-01-10  Tom Tromey  <tromey@redhat.com>
11736
11737         PR python/13199:
11738         * python/python.c (finish_python_initialization): Set sys.argv.
11739
11740 2012-01-10  Doug Evans  <dje@google.com>
11741
11742         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
11743         "want_line_info".  All callers updated.
11744         (dwarf_decode_lines_1): New function.
11745         (handle_DW_AT_stmt_list): Add function comment.
11746         New arg "want_line_info".  All callers updated.
11747         (read_file_scope,read_type_unit_scope): Move comment from
11748         handle_DW_AT_stmt_list to here.
11749
11750 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11751
11752         Fix regression after libiberty/ update for GCC PR 6057 and others.
11753         * c-exp.y (operator) <OPERATOR DELETE>
11754         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
11755         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
11756         (make_builtin_type, make_name): New variable i, add gdb_assert.
11757         (operator) <OPERATOR NEW>: Update ARGS to 3.
11758         (operator) <OPERATOR DELETE>: Add trailing space.
11759         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
11760         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
11761         * cp-support.c (cp_canonicalize_string): Check NULL from
11762         cp_comp_to_string, call warning and return.
11763
11764 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11765
11766         Fix duplicate .o files after omitting libbfd.a.
11767         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
11768         (SFILES): Add corelow.c.
11769         (COMMON_OBS): Add corelow.o.
11770         (ALLDEPFILES): Remove corelow.c.
11771         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
11772         * config/alpha/alpha-osf3.mh: Likewise.
11773         * config/alpha/fbsd.mh: Likewise.
11774         * config/arm/nbsdaout.mh: Likewise.
11775         * config/arm/nbsdelf.mh: Likewise.
11776         * config/i386/i386gnu.mh: Likewise.
11777         * config/ia64/hpux.mh: Likewise.
11778         * config/ia64/linux.mh: Likewise.
11779         * config/m32r/linux.mh: Likewise.
11780         * config/m68k/linux.mh: Likewise.
11781         * config/mips/irix5.mh: Likewise.
11782         * config/mips/irix6.mh: Likewise.
11783         * config/pa/hpux.mh: Likewise.
11784         * config/pa/linux.mh: Likewise.
11785         * config/powerpc/aix.mh: Likewise.
11786         * config/sparc/linux.mh: Likewise.
11787         * config/sparc/linux64.mh: Likewise.
11788         * config/sparc/sol2.mh: Likewise.
11789         * config/vax/vax.mh: Likewise.
11790         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
11791         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
11792         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
11793         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
11794         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
11795         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
11796         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
11797         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
11798         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
11799         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
11800         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
11801         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
11802         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
11803         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
11804         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
11805         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
11806         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
11807         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
11808         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
11809         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
11810         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
11811         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
11812         corelow.o from gdb_target_obs.
11813         * corefile.c (core_target): Update the comment on NULL value.
11814         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
11815         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
11816         MATCHES.  Drop YUMMY set on NULL.
11817         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
11818         reclaim CORE_DATA if it is already NULL.
11819
11820 2012-01-09  Doug Evans  <dje@google.com>
11821
11822         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
11823         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
11824
11825 2012-01-09  Keith Seitz  <keiths@redhat.com>
11826
11827         * breakpoint.c (wrapper.h): Don't include.
11828
11829 2012-01-09  Keith Seitz  <keiths@redhat.com>
11830
11831         * Makefile.in (SFILES): Remove wrapper.c.
11832         (HFILES_NO_SRCDIR): Remove wrapper.h.
11833         (COMMON_OBS): Remove wrapper.o.
11834         * cli/cli-interp.c: Don't inlude wrapper.h.
11835         * corelow.c: Likewise.
11836         (core_open): Replace gdb_target_find_new_threads with
11837         TRY_CATCH around target_find_new_threads.
11838         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
11839         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
11840         * varobj.c (varobj_create): Likewise for parse_exp_1 and
11841         evaluate_expression.
11842         (varobj_set_value): Likewise for evaluate_expression and
11843         value_assign.
11844         (install_new_variable): Likewise for value_fetch_lazy.
11845         (adjust_value_for_child_access): Likewise for value_ind.
11846         (c_describe_child): Likewise for value_subscript and
11847         value_ind.
11848         (c_value_of_root): Likewise for evaluate_expression.
11849         * wrapper.c: Remove.
11850         * wrapper.h: Remove.
11851
11852 2012-01-09  Doug Evans  <dje@google.com>
11853
11854         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
11855         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
11856         "abfd" args with "section".  All callers updated.
11857         Error checking code moved ...
11858         (error_check_comp_unit_head): ... here.  New function.
11859         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
11860         Delete arg "abfd".  New arg "type_offset".  All callers updated.
11861         (create_debug_types_hash_table): Simplify by using
11862         read_and_check_type_unit_head.
11863
11864         * parser-defs.h (namecopy): Delete.
11865         * parse.c (namecopy, namecopy_size): Move into copy_name.
11866
11867 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11868
11869         Partially fix duplicate .o files after omitting libbfd.a.
11870         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
11871         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11872         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
11873         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11874         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
11875         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
11876         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11877
11878 2012-01-09  Pedro Alves  <palves@redhat.com>
11879
11880         * MAINTAINERS: Update my email address.
11881
11882 2012-01-08  Doug Evans  <dje@google.com>
11883
11884         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
11885         n_type_units.  Rename type_comp_units to all_type_units.
11886         All uses updated.
11887         (add_signatured_type_cu_to_table): Renamed from
11888         add_signatured_type_cu_to_list.  All callers updated.
11889
11890         * gdbtypes.h (struct cplus_struct_type): Delete member
11891         nfn_fields_total.  All uses removed.
11892
11893 2012-01-06  Doug Evans  <dje@google.com>
11894
11895         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
11896         to top of file.
11897         (dwarf2_find_comp_unit): Delete.
11898         (process_psymtab_comp_unit): Make result "void".
11899         Delete args buffer, info_ptr, buffer_size, and replace with
11900         "section".  All callers updated.
11901         (dwarf2_build_psymtabs_hard): Simplify.
11902
11903 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
11904             Thiago Jung Bauermann  <bauerman@br.ibm.com>
11905
11906         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
11907         before `struct gdb_exception'.
11908         * breakpoint.c (update_global_location_list_nothrow)
11909         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
11910         * cp-abi.c (value_rtti_type): Likewise.
11911         * cp-support.c (cp_validate_operator): Likewise.
11912         * infrun.c (insert_exception_resume_breakpoint)
11913         (check_exception_resume, keep_going): Likewise.
11914         * mi-interp.c (mi_breakpoint_created)
11915         (mi_breakpoint_modified): Likewise.
11916         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
11917         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
11918         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
11919
11920 2012-01-05  Doug Evans  <dje@google.com>
11921
11922         * dwarf2read.c (statement_prologue): Delete, unused.
11923
11924         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
11925         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
11926
11927         * dwarf2read.c (comp_unit_header): Delete, unused.
11928
11929 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
11930
11931         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
11932         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
11933
11934 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
11935
11936         * infrun.c (normal_stop): Don't skip calling the normal_stop
11937         observers if the thread was doing a multi-step, but stopped for
11938         some reason other than stepping.
11939
11940 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
11941
11942         * cli/cli-decode.h: Add comments.
11943         (CMD_LIST_AMBIGUOUS): Moved to command.h
11944         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
11945         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
11946         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
11947         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
11948         (add_com, add_com_alias, add_info, add_info_alias)
11949         (complete_on_cmdlist, complete_on_enum, help_list): Remove
11950         declarations.
11951         * command.h: Add and adjust comments.
11952         (CMD_LIST_AMBIGUOUS): Moved here.
11953         (help_cmd, help_cmd_list): Delete declarations.
11954
11955 2012-01-04  Doug Evans  <dje@google.com>
11956
11957         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
11958         All callers updated.
11959         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
11960         Replace all arguments with "per_cu".  All callers updated.
11961
11962         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
11963
11964         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
11965         New arg "per_cu".  All callers updated.
11966
11967         Delete #if 0'd out code.
11968         * language.c (binop_result_type): Delete.
11969         (simple_type, ordered_type, same_type, integral_type): Delete.
11970         (numeric_type, character_type, string_type, boolean_type): Delete.
11971         (float_type, structured_type): Delete.
11972         * language.h: Update.
11973
11974 2012-01-04  Tom Tromey  <tromey@redhat.com>
11975
11976         * python/py-value.c (valpy_binop): Initialize 'res_val'.
11977
11978 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11979
11980         * corefile.c (close_exec_file): Delete.
11981         (reopen_exec_file): Remove commented out code that seems related
11982         to close_exec_file, which is being deleted here.
11983         * inferior.h (close_exec_file): Delete.
11984         * fork-child.c (fork_inferior): Remove call to fork_inferior.
11985
11986 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11987
11988         * ada-lang.c: #include "cli/cli-utils.h".
11989         (get_selections): Use skip_spaces.
11990         (ada_get_next_arg): Use skip_spaces and skip_to_space.
11991         (catch_ada_exception_command_split): Use skip_spaces.
11992         (ada_decode_assert_location): Likewise.
11993
11994 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
11995
11996         * linespec.c (decode_line_internal): Check for C++ or Java
11997         compound constructs only if the current language is C, C++
11998         or Java.
11999
12000 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
12001
12002         Revert:
12003         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12004                     Joel Brobecker  <brobecker@adacore.com>
12005         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12006         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12007         3 times.
12008         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12009         fall through into AT_ENTRY_POINT.
12010         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12011         DUMMY_ADDR with it.
12012         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12013         PPC_INSN_SIZE skip to 3 times.
12014
12015 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12016
12017         * linespec.c (add_minsym): Preserve function descriptors.
12018
12019 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
12020
12021         * breakpoint.c (all_locations_are_pending): Consider locations
12022         in program spaces executing during startup pending as well.
12023
12024 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12025
12026         Copyright year update in most files of the GDB Project.
12027
12028 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12029
12030         * copyright.sh: Delete.
12031         * copyright.py: Rewrite.
12032
12033 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12034
12035         * gnulib/extra/update-copyright: New file, imported from gnulib.
12036
12037 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12038
12039         * README (Copyright and License Notices): New section.
12040
12041 2012-01-03  Tom Tromey  <tromey@redhat.com>
12042
12043         PR python/12533:
12044         * python/py-value.c (valpy_dereference, valpy_get_address
12045         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12046         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12047         (valpy_absolute, valpy_richcompare): Free intermediate values.
12048
12049 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
12050
12051         * ada-lang.c: Reformat the copyright notice.
12052
12053 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12054
12055         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12056         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12057         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12058         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12059         Revert this part of:
12060         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12061         Build gdb directly from *.o files not using libgdb.a.
12062         * Makefile.in (COMMON_OBS): Remove solib-target.o.
12063
12064 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12065
12066         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12067         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12068         Reformat the copyright header.
12069
12070 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12071
12072         Revert this part of:
12073         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12074         Remove the gdbtui binary.
12075         * gdb.c (main): Remove args.interpreter_p initialization.
12076         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12077         * main.h (struct captured_main_args): Remove interpreter_p.
12078
12079 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12080
12081         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12082
12083 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12084
12085         * top.c (print_gdb_version): Update copyright year.
12086
12087 2012-01-02  Yao Qi  <yao@codesourcery.com>
12088
12089         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12090
12091 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12092             Joel Brobecker  <brobecker@adacore.com>
12093
12094         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12095         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12096         3 times.
12097         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12098         fall through into AT_ENTRY_POINT.
12099         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12100         DUMMY_ADDR with it.
12101         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12102         PPC_INSN_SIZE skip to 3 times.
12103
12104 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12105
12106         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12107         the return value.
12108         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12109
12110 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12111
12112         Build gdb directly from *.o files not using libgdb.a.
12113         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12114         (COMMON_OBS): Remove solib-target.o.
12115         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12116         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12117         (LIBGDB_OBS, libgdb.a): Move it above.
12118         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12119         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12120         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12121         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12122         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12123         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12124         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12125         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12126         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12127         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12128         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12129         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12130         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12131         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12132         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12133         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12134         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12135         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12136         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12137         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12138         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12139         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12140         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12141         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12142         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12143         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12144         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12145
12146 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12147
12148         Remove the gdbtui binary.
12149         * .gitignore (/gdbtui): Remove.
12150         * Makefile.in (TUI): Remove.
12151         (SUBDIR_TUI_OBS): Remove tui-main.o.
12152         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12153         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12154         (tui-main.o): Remove.
12155         (all_object_files): Remove tui-main.o.
12156         * NEWS: New note for the gdbtui removal.
12157         * configure: Rebuilt.
12158         * configure.ac: No longer add all-tui, clean-tui, install-tui and
12159         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12160         CONFIG_UNINSTALL respectively.
12161         * gdb.c (main): Remove args.interpreter_p initialization.
12162         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12163         * main.h (struct captured_main_args): Remove interpreter_p.
12164         * tui/tui-main.c: Remove.
12165
12166 2012-01-01  Doug Evans  <dje@google.com>
12167
12168         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12169         (dwarf2_physname, read_import_statement): Ditto.
12170         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12171         (process_structure_scope read_subroutine_type): Ditto.
12172         (read_typedef, load_partial_dies, read_partial_die): Ditto.
12173         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12174         (dwarf2_fetch_die_location_block): Ditto.
12175         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12176
12177         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12178         All callers updated.
12179         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12180         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12181         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12182
12183         * dwarf2read.c (load_cu): Move assert to more useful location.
12184
12185         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12186         All callers updated.
12187
12188         * dwarf2read.c (dwarf2_per_objfile): Add comment.
12189         (dwarf2_elf_names): Minor reformat.
12190         (dwarf2_per_cu_data): Tweak comment.
12191         (dwarf2_read_section): Fix comment.
12192         (create_all_comp_units): Fix comment.
12193         (load_full_comp_unit): Fix comment.
12194         (process_full_comp_unit): Fix comment.
12195         (read_signatured_type): Fix comment.
12196
12197 For older changes see ChangeLog-2011.
12198 \f
12199 Local Variables:
12200 mode: change-log
12201 left-margin: 8
12202 fill-column: 74
12203 version-control: never
12204 coding: utf-8
12205 End: